fix iov_iter_fault_in_readable()
[linux-2.6-block.git] / include / linux / firmware.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_FIRMWARE_H
2#define _LINUX_FIRMWARE_H
5658c769 3
1da177e4 4#include <linux/types.h>
5658c769 5#include <linux/compiler.h>
9ebfbd45 6#include <linux/gfp.h>
5658c769 7
6e3eaab0
AS
8#define FW_ACTION_NOHOTPLUG 0
9#define FW_ACTION_HOTPLUG 1
10
1da177e4
LT
11struct firmware {
12 size_t size;
b7a39bd0 13 const u8 *data;
dd336c55 14 struct page **pages;
1f2b7959
ML
15
16 /* firmware loader private fields */
17 void *priv;
1da177e4 18};
fbab976d 19
de477254 20struct module;
1da177e4 21struct device;
fbab976d 22
5658c769
DW
23struct builtin_fw {
24 char *name;
25 void *data;
26 unsigned long size;
27};
28
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)
33
34#define DECLARE_BUILTIN_FIRMWARE(name, blob) \
35 DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob))
36
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 }
40
69d44a18 41#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
1da177e4
LT
42int request_firmware(const struct firmware **fw, const char *name,
43 struct device *device);
44int request_firmware_nowait(
072fc8f0 45 struct module *module, bool uevent,
9ebfbd45 46 const char *name, struct device *device, gfp_t gfp, void *context,
1da177e4 47 void (*cont)(const struct firmware *fw, void *context));
c868edf4
LR
48int request_firmware_direct(const struct firmware **fw, const char *name,
49 struct device *device);
a098ecd2
SB
50int request_firmware_into_buf(const struct firmware **firmware_p,
51 const char *name, struct device *device, void *buf, size_t size);
1da177e4
LT
52
53void release_firmware(const struct firmware *fw);
fbab976d
JB
54#else
55static inline int request_firmware(const struct firmware **fw,
56 const char *name,
57 struct device *device)
58{
59 return -EINVAL;
60}
61static inline int request_firmware_nowait(
072fc8f0 62 struct module *module, bool uevent,
9ebfbd45 63 const char *name, struct device *device, gfp_t gfp, void *context,
fbab976d
JB
64 void (*cont)(const struct firmware *fw, void *context))
65{
66 return -EINVAL;
67}
68
69static inline void release_firmware(const struct firmware *fw)
70{
71}
2887b395 72
c868edf4
LR
73static inline int request_firmware_direct(const struct firmware **fw,
74 const char *name,
75 struct device *device)
76{
77 return -EINVAL;
78}
fbab976d 79
a098ecd2
SB
80static inline int request_firmware_into_buf(const struct firmware **firmware_p,
81 const char *name, struct device *device, void *buf, size_t size)
82{
83 return -EINVAL;
84}
85
bba3a87e 86#endif
1da177e4 87#endif