blob: b1f9f0ccb8ac85903dcceb11864e60248105afe9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_FIRMWARE_H
2#define _LINUX_FIRMWARE_H
David Woodhouse5658c762008-05-23 13:52:42 +01003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/types.h>
David Woodhouse5658c762008-05-23 13:52:42 +01005#include <linux/compiler.h>
Johannes Berg9ebfbd42009-10-29 12:36:02 +01006#include <linux/gfp.h>
David Woodhouse5658c762008-05-23 13:52:42 +01007
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07008#define FW_ACTION_NOHOTPLUG 0
9#define FW_ACTION_HOTPLUG 1
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011struct firmware {
12 size_t size;
David Woodhouseb7a39bd2008-05-23 18:38:49 +010013 const u8 *data;
David Woodhousedd336c52010-05-02 11:21:21 +030014 struct page **pages;
Ming Lei1f2b7952012-08-04 12:01:21 +080015
16 /* firmware loader private fields */
17 void *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018};
James Bottomleyfbab9762008-03-07 08:57:54 -060019
Paul Gortmakerde477252011-05-26 13:46:22 -040020struct module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct device;
James Bottomleyfbab9762008-03-07 08:57:54 -060022
David Woodhouse5658c762008-05-23 13:52:42 +010023struct 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
James Bottomley69d44a12008-07-04 09:59:27 -070041#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070042int request_firmware(const struct firmware **fw, const char *name,
43 struct device *device);
44int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080045 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010046 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 void (*cont)(const struct firmware *fw, void *context));
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070048int request_firmware_direct(const struct firmware **fw, const char *name,
49 struct device *device);
Stephen Boyda098ecd2016-08-02 14:04:28 -070050int request_firmware_into_buf(const struct firmware **firmware_p,
51 const char *name, struct device *device, void *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53void release_firmware(const struct firmware *fw);
James Bottomleyfbab9762008-03-07 08:57:54 -060054#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(
Bob Liu072fc8f2011-01-26 18:33:32 +080062 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010063 const char *name, struct device *device, gfp_t gfp, void *context,
James Bottomleyfbab9762008-03-07 08:57:54 -060064 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}
Ming Lei2887b392012-08-04 12:01:22 +080072
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070073static inline int request_firmware_direct(const struct firmware **fw,
74 const char *name,
75 struct device *device)
76{
77 return -EINVAL;
78}
James Bottomleyfbab9762008-03-07 08:57:54 -060079
Stephen Boyda098ecd2016-08-02 14:04:28 -070080static 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
Takashi Iwaibba3a872013-12-02 15:38:16 +010086#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif