blob: d31544628436cb717b88079f7f99bf6e9b775b68 [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/module.h>
5#include <linux/types.h>
David Woodhouse5658c762008-05-23 13:52:42 +01006#include <linux/compiler.h>
7
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014};
James Bottomleyfbab9762008-03-07 08:57:54 -060015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016struct device;
James Bottomleyfbab9762008-03-07 08:57:54 -060017
David Woodhouse5658c762008-05-23 13:52:42 +010018struct builtin_fw {
19 char *name;
20 void *data;
21 unsigned long size;
22};
23
24/* We have to play tricks here much like stringify() to get the
25 __COUNTER__ macro to be expanded as we want it */
26#define __fw_concat1(x, y) x##y
27#define __fw_concat(x, y) __fw_concat1(x, y)
28
29#define DECLARE_BUILTIN_FIRMWARE(name, blob) \
30 DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob))
31
32#define DECLARE_BUILTIN_FIRMWARE_SIZE(name, blob, size) \
33 static const struct builtin_fw __fw_concat(__builtin_fw,__COUNTER__) \
34 __used __section(.builtin_fw) = { name, blob, size }
35
James Bottomley69d44a12008-07-04 09:59:27 -070036#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070037int request_firmware(const struct firmware **fw, const char *name,
38 struct device *device);
39int request_firmware_nowait(
Kay Sievers312c0042005-11-16 09:00:00 +010040 struct module *module, int uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 const char *name, struct device *device, void *context,
42 void (*cont)(const struct firmware *fw, void *context));
43
44void release_firmware(const struct firmware *fw);
James Bottomleyfbab9762008-03-07 08:57:54 -060045#else
46static inline int request_firmware(const struct firmware **fw,
47 const char *name,
48 struct device *device)
49{
50 return -EINVAL;
51}
52static inline int request_firmware_nowait(
53 struct module *module, int uevent,
54 const char *name, struct device *device, void *context,
55 void (*cont)(const struct firmware *fw, void *context))
56{
57 return -EINVAL;
58}
59
60static inline void release_firmware(const struct firmware *fw)
61{
62}
63#endif
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif