]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/firmware.h
regulator: ab8500: Remove AB8505 USB regulator
[mirror_ubuntu-bionic-kernel.git] / include / linux / firmware.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_FIRMWARE_H
3#define _LINUX_FIRMWARE_H
5658c769 4
1da177e4 5#include <linux/types.h>
5658c769 6#include <linux/compiler.h>
9ebfbd45 7#include <linux/gfp.h>
5658c769 8
6e3eaab0
AS
9#define FW_ACTION_NOHOTPLUG 0
10#define FW_ACTION_HOTPLUG 1
11
1da177e4
LT
12struct firmware {
13 size_t size;
b7a39bd0 14 const u8 *data;
dd336c55 15 struct page **pages;
1f2b7959
ML
16
17 /* firmware loader private fields */
18 void *priv;
1da177e4 19};
fbab976d 20
de477254 21struct module;
1da177e4 22struct device;
fbab976d 23
5658c769
DW
24struct builtin_fw {
25 char *name;
26 void *data;
27 unsigned long size;
28};
29
30/* We have to play tricks here much like stringify() to get the
31 __COUNTER__ macro to be expanded as we want it */
32#define __fw_concat1(x, y) x##y
33#define __fw_concat(x, y) __fw_concat1(x, y)
34
35#define DECLARE_BUILTIN_FIRMWARE(name, blob) \
36 DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob))
37
38#define DECLARE_BUILTIN_FIRMWARE_SIZE(name, blob, size) \
39 static const struct builtin_fw __fw_concat(__builtin_fw,__COUNTER__) \
40 __used __section(.builtin_fw) = { name, blob, size }
41
69d44a18 42#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
1da177e4
LT
43int request_firmware(const struct firmware **fw, const char *name,
44 struct device *device);
45int request_firmware_nowait(
072fc8f0 46 struct module *module, bool uevent,
9ebfbd45 47 const char *name, struct device *device, gfp_t gfp, void *context,
1da177e4 48 void (*cont)(const struct firmware *fw, void *context));
c868edf4
LR
49int request_firmware_direct(const struct firmware **fw, const char *name,
50 struct device *device);
a098ecd2
SB
51int request_firmware_into_buf(const struct firmware **firmware_p,
52 const char *name, struct device *device, void *buf, size_t size);
1da177e4
LT
53
54void release_firmware(const struct firmware *fw);
fbab976d
JB
55#else
56static inline int request_firmware(const struct firmware **fw,
57 const char *name,
58 struct device *device)
59{
60 return -EINVAL;
61}
62static inline int request_firmware_nowait(
072fc8f0 63 struct module *module, bool uevent,
9ebfbd45 64 const char *name, struct device *device, gfp_t gfp, void *context,
fbab976d
JB
65 void (*cont)(const struct firmware *fw, void *context))
66{
67 return -EINVAL;
68}
69
70static inline void release_firmware(const struct firmware *fw)
71{
72}
2887b395 73
c868edf4
LR
74static inline int request_firmware_direct(const struct firmware **fw,
75 const char *name,
76 struct device *device)
77{
78 return -EINVAL;
79}
fbab976d 80
a098ecd2
SB
81static inline int request_firmware_into_buf(const struct firmware **firmware_p,
82 const char *name, struct device *device, void *buf, size_t size)
83{
84 return -EINVAL;
85}
86
bba3a87e 87#endif
1da177e4 88#endif