Merge branch 'uhid' into for-linus
[GitHub/mt8127/android_kernel_alcatel_ttab.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;
1da177e4 15};
fbab976d 16
de477254 17struct module;
1da177e4 18struct device;
fbab976d 19
5658c769
DW
20struct builtin_fw {
21 char *name;
22 void *data;
23 unsigned long size;
24};
25
26/* We have to play tricks here much like stringify() to get the
27 __COUNTER__ macro to be expanded as we want it */
28#define __fw_concat1(x, y) x##y
29#define __fw_concat(x, y) __fw_concat1(x, y)
30
31#define DECLARE_BUILTIN_FIRMWARE(name, blob) \
32 DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob))
33
34#define DECLARE_BUILTIN_FIRMWARE_SIZE(name, blob, size) \
35 static const struct builtin_fw __fw_concat(__builtin_fw,__COUNTER__) \
36 __used __section(.builtin_fw) = { name, blob, size }
37
69d44a18 38#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
1da177e4
LT
39int request_firmware(const struct firmware **fw, const char *name,
40 struct device *device);
41int request_firmware_nowait(
072fc8f0 42 struct module *module, bool uevent,
9ebfbd45 43 const char *name, struct device *device, gfp_t gfp, void *context,
1da177e4
LT
44 void (*cont)(const struct firmware *fw, void *context));
45
46void release_firmware(const struct firmware *fw);
fbab976d
JB
47#else
48static inline int request_firmware(const struct firmware **fw,
49 const char *name,
50 struct device *device)
51{
52 return -EINVAL;
53}
54static inline int request_firmware_nowait(
072fc8f0 55 struct module *module, bool uevent,
9ebfbd45 56 const char *name, struct device *device, gfp_t gfp, void *context,
fbab976d
JB
57 void (*cont)(const struct firmware *fw, void *context))
58{
59 return -EINVAL;
60}
61
62static inline void release_firmware(const struct firmware *fw)
63{
64}
65#endif
66
1da177e4 67#endif