Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_FIRMWARE_H |
| 2 | #define _LINUX_FIRMWARE_H |
David Woodhouse | 5658c76 | 2008-05-23 13:52:42 +0100 | [diff] [blame] | 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/module.h> |
| 5 | #include <linux/types.h> |
David Woodhouse | 5658c76 | 2008-05-23 13:52:42 +0100 | [diff] [blame] | 6 | #include <linux/compiler.h> |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 7 | #include <linux/gfp.h> |
David Woodhouse | 5658c76 | 2008-05-23 13:52:42 +0100 | [diff] [blame] | 8 | |
Abhay Salunke | 6e3eaab | 2005-09-06 15:17:13 -0700 | [diff] [blame] | 9 | #define FW_ACTION_NOHOTPLUG 0 |
| 10 | #define FW_ACTION_HOTPLUG 1 |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | struct firmware { |
| 13 | size_t size; |
David Woodhouse | b7a39bd | 2008-05-23 18:38:49 +0100 | [diff] [blame] | 14 | const u8 *data; |
David Woodhouse | dd336c5 | 2010-05-02 11:21:21 +0300 | [diff] [blame] | 15 | struct page **pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | }; |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | struct device; |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 19 | |
David Woodhouse | 5658c76 | 2008-05-23 13:52:42 +0100 | [diff] [blame] | 20 | struct 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 | |
James Bottomley | 69d44a1 | 2008-07-04 09:59:27 -0700 | [diff] [blame] | 38 | #if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | int request_firmware(const struct firmware **fw, const char *name, |
| 40 | struct device *device); |
| 41 | int request_firmware_nowait( |
Bob Liu | 072fc8f | 2011-01-26 18:33:32 +0800 | [diff] [blame] | 42 | struct module *module, bool uevent, |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 43 | const char *name, struct device *device, gfp_t gfp, void *context, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | void (*cont)(const struct firmware *fw, void *context)); |
| 45 | |
| 46 | void release_firmware(const struct firmware *fw); |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 47 | #else |
| 48 | static inline int request_firmware(const struct firmware **fw, |
| 49 | const char *name, |
| 50 | struct device *device) |
| 51 | { |
| 52 | return -EINVAL; |
| 53 | } |
| 54 | static inline int request_firmware_nowait( |
Bob Liu | 072fc8f | 2011-01-26 18:33:32 +0800 | [diff] [blame] | 55 | struct module *module, bool uevent, |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 56 | const char *name, struct device *device, gfp_t gfp, void *context, |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 57 | void (*cont)(const struct firmware *fw, void *context)) |
| 58 | { |
| 59 | return -EINVAL; |
| 60 | } |
| 61 | |
| 62 | static inline void release_firmware(const struct firmware *fw) |
| 63 | { |
| 64 | } |
| 65 | #endif |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #endif |