Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_FIRMWARE_H |
| 3 | #define _LINUX_FIRMWARE_H |
David Woodhouse | 5658c76 | 2008-05-23 13:52:42 +0100 | [diff] [blame] | 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Ming Lei | 1f2b795 | 2012-08-04 12:01:21 +0800 | [diff] [blame] | 16 | |
| 17 | /* firmware loader private fields */ |
| 18 | void *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | }; |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 20 | |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 21 | struct module; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | struct device; |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 23 | |
David Woodhouse | 5658c76 | 2008-05-23 13:52:42 +0100 | [diff] [blame] | 24 | struct builtin_fw { |
| 25 | char *name; |
| 26 | void *data; |
| 27 | unsigned long size; |
| 28 | }; |
| 29 | |
| 30 | /* We have to play tricks here much like stringify() to get the |
| 31 | __COUNTER__ macro to be expanded as we want it */ |
| 32 | #define __fw_concat1(x, y) x##y |
| 33 | #define __fw_concat(x, y) __fw_concat1(x, y) |
| 34 | |
| 35 | #define DECLARE_BUILTIN_FIRMWARE(name, blob) \ |
| 36 | DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob)) |
| 37 | |
| 38 | #define DECLARE_BUILTIN_FIRMWARE_SIZE(name, blob, size) \ |
| 39 | static const struct builtin_fw __fw_concat(__builtin_fw,__COUNTER__) \ |
| 40 | __used __section(.builtin_fw) = { name, blob, size } |
| 41 | |
James Bottomley | 69d44a1 | 2008-07-04 09:59:27 -0700 | [diff] [blame] | 42 | #if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | int request_firmware(const struct firmware **fw, const char *name, |
| 44 | struct device *device); |
| 45 | int request_firmware_nowait( |
Bob Liu | 072fc8f | 2011-01-26 18:33:32 +0800 | [diff] [blame] | 46 | struct module *module, bool uevent, |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 47 | const char *name, struct device *device, gfp_t gfp, void *context, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | void (*cont)(const struct firmware *fw, void *context)); |
Luis R. Rodriguez | c868edf | 2014-07-02 09:55:05 -0700 | [diff] [blame] | 49 | int request_firmware_direct(const struct firmware **fw, const char *name, |
| 50 | struct device *device); |
Stephen Boyd | a098ecd | 2016-08-02 14:04:28 -0700 | [diff] [blame] | 51 | int request_firmware_into_buf(const struct firmware **firmware_p, |
| 52 | const char *name, struct device *device, void *buf, size_t size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | void release_firmware(const struct firmware *fw); |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 55 | #else |
| 56 | static inline int request_firmware(const struct firmware **fw, |
| 57 | const char *name, |
| 58 | struct device *device) |
| 59 | { |
| 60 | return -EINVAL; |
| 61 | } |
| 62 | static inline int request_firmware_nowait( |
Bob Liu | 072fc8f | 2011-01-26 18:33:32 +0800 | [diff] [blame] | 63 | struct module *module, bool uevent, |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 64 | const char *name, struct device *device, gfp_t gfp, void *context, |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 65 | void (*cont)(const struct firmware *fw, void *context)) |
| 66 | { |
| 67 | return -EINVAL; |
| 68 | } |
| 69 | |
| 70 | static inline void release_firmware(const struct firmware *fw) |
| 71 | { |
| 72 | } |
Ming Lei | 2887b39 | 2012-08-04 12:01:22 +0800 | [diff] [blame] | 73 | |
Luis R. Rodriguez | c868edf | 2014-07-02 09:55:05 -0700 | [diff] [blame] | 74 | static inline int request_firmware_direct(const struct firmware **fw, |
| 75 | const char *name, |
| 76 | struct device *device) |
| 77 | { |
| 78 | return -EINVAL; |
| 79 | } |
James Bottomley | fbab976 | 2008-03-07 08:57:54 -0600 | [diff] [blame] | 80 | |
Stephen Boyd | a098ecd | 2016-08-02 14:04:28 -0700 | [diff] [blame] | 81 | static inline int request_firmware_into_buf(const struct firmware **firmware_p, |
| 82 | const char *name, struct device *device, void *buf, size_t size) |
| 83 | { |
| 84 | return -EINVAL; |
| 85 | } |
| 86 | |
Takashi Iwai | bba3a87 | 2013-12-02 15:38:16 +0100 | [diff] [blame] | 87 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #endif |