Merge branch 'for-3.11' of git://linux-nfs.org/~bfields/linux
[linux-2.6.git] / include / linux / firmware.h
blobe154c1005cd10f7390cab3aaf92302cd5eb584f3
1 #ifndef _LINUX_FIRMWARE_H
2 #define _LINUX_FIRMWARE_H
4 #include <linux/types.h>
5 #include <linux/compiler.h>
6 #include <linux/gfp.h>
8 #define FW_ACTION_NOHOTPLUG 0
9 #define FW_ACTION_HOTPLUG 1
11 struct firmware {
12 size_t size;
13 const u8 *data;
14 struct page **pages;
16 /* firmware loader private fields */
17 void *priv;
20 struct module;
21 struct device;
23 struct builtin_fw {
24 char *name;
25 void *data;
26 unsigned long size;
29 /* We have to play tricks here much like stringify() to get the
30 __COUNTER__ macro to be expanded as we want it */
31 #define __fw_concat1(x, y) x##y
32 #define __fw_concat(x, y) __fw_concat1(x, y)
34 #define DECLARE_BUILTIN_FIRMWARE(name, blob) \
35 DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob))
37 #define DECLARE_BUILTIN_FIRMWARE_SIZE(name, blob, size) \
38 static const struct builtin_fw __fw_concat(__builtin_fw,__COUNTER__) \
39 __used __section(.builtin_fw) = { name, blob, size }
41 #if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
42 int request_firmware(const struct firmware **fw, const char *name,
43 struct device *device);
44 int request_firmware_nowait(
45 struct module *module, bool uevent,
46 const char *name, struct device *device, gfp_t gfp, void *context,
47 void (*cont)(const struct firmware *fw, void *context));
49 void release_firmware(const struct firmware *fw);
50 #else
51 static inline int request_firmware(const struct firmware **fw,
52 const char *name,
53 struct device *device)
55 return -EINVAL;
57 static inline int request_firmware_nowait(
58 struct module *module, bool uevent,
59 const char *name, struct device *device, gfp_t gfp, void *context,
60 void (*cont)(const struct firmware *fw, void *context))
62 return -EINVAL;
65 static inline void release_firmware(const struct firmware *fw)
69 #endif
71 #endif