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> |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #define FIRMWARE_NAME_MAX 30 |
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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | }; |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | struct device; |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 18 | |
David Woodhouse | 5658c76 | 2008-05-23 13:52:42 +0100 | [diff] [blame] | 19 | struct builtin_fw { |
| 20 | char *name; |
| 21 | void *data; |
| 22 | unsigned long size; |
| 23 | }; |
| 24 | |
| 25 | /* We have to play tricks here much like stringify() to get the |
| 26 | __COUNTER__ macro to be expanded as we want it */ |
| 27 | #define __fw_concat1(x, y) x##y |
| 28 | #define __fw_concat(x, y) __fw_concat1(x, y) |
| 29 | |
| 30 | #define DECLARE_BUILTIN_FIRMWARE(name, blob) \ |
| 31 | DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob)) |
| 32 | |
| 33 | #define DECLARE_BUILTIN_FIRMWARE_SIZE(name, blob, size) \ |
| 34 | static const struct builtin_fw __fw_concat(__builtin_fw,__COUNTER__) \ |
| 35 | __used __section(.builtin_fw) = { name, blob, size } |
| 36 | |
James Bottomley | 69d44a1 | 2008-07-04 09:59:27 -0700 | [diff] [blame] | 37 | #if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | int request_firmware(const struct firmware **fw, const char *name, |
| 39 | struct device *device); |
| 40 | int request_firmware_nowait( |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 41 | struct module *module, int uevent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | const char *name, struct device *device, void *context, |
| 43 | void (*cont)(const struct firmware *fw, void *context)); |
| 44 | |
| 45 | void release_firmware(const struct firmware *fw); |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 46 | #else |
| 47 | static inline int request_firmware(const struct firmware **fw, |
| 48 | const char *name, |
| 49 | struct device *device) |
| 50 | { |
| 51 | return -EINVAL; |
| 52 | } |
| 53 | static inline int request_firmware_nowait( |
| 54 | struct module *module, int uevent, |
| 55 | const char *name, struct device *device, void *context, |
| 56 | void (*cont)(const struct firmware *fw, void *context)) |
| 57 | { |
| 58 | return -EINVAL; |
| 59 | } |
| 60 | |
| 61 | static inline void release_firmware(const struct firmware *fw) |
| 62 | { |
| 63 | } |
| 64 | #endif |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #endif |