blob: 4f6fffb8cff2e92af2fc20fa5696814e70e87605 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015};
James Bottomleyfbab9762008-03-07 08:57:54 -060016
Paul Gortmakerde477252011-05-26 13:46:22 -040017struct module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018struct device;
James Bottomleyfbab9762008-03-07 08:57:54 -060019
David Woodhouse5658c762008-05-23 13:52:42 +010020struct 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 Bottomley69d44a12008-07-04 09:59:27 -070038#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
Vikram Mulukutlaf5e5aa82013-05-14 11:26:37 -070039int request_firmware_direct(const char *name, struct device *device,
40 phys_addr_t addr, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041int request_firmware(const struct firmware **fw, const char *name,
42 struct device *device);
43int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080044 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010045 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 void (*cont)(const struct firmware *fw, void *context));
47
48void release_firmware(const struct firmware *fw);
James Bottomleyfbab9762008-03-07 08:57:54 -060049#else
Vikram Mulukutlaf5e5aa82013-05-14 11:26:37 -070050static inline int request_firmware_direct(const char *name,
51 struct device *device,
52 phys_addr_t addr, size_t size)
53{
54 return -EINVAL;
55}
James Bottomleyfbab9762008-03-07 08:57:54 -060056static inline int request_firmware(const struct firmware **fw,
57 const char *name,
58 struct device *device)
59{
60 return -EINVAL;
61}
62static inline int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080063 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010064 const char *name, struct device *device, gfp_t gfp, void *context,
James Bottomleyfbab9762008-03-07 08:57:54 -060065 void (*cont)(const struct firmware *fw, void *context))
66{
67 return -EINVAL;
68}
69
70static inline void release_firmware(const struct firmware *fw)
71{
72}
73#endif
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif