blob: d4508080348d301444a50cfadf6947ac363147a5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_FIRMWARE_H
3#define _LINUX_FIRMWARE_H
David Woodhouse5658c762008-05-23 13:52:42 +01004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/types.h>
David Woodhouse5658c762008-05-23 13:52:42 +01006#include <linux/compiler.h>
Johannes Berg9ebfbd42009-10-29 12:36:02 +01007#include <linux/gfp.h>
David Woodhouse5658c762008-05-23 13:52:42 +01008
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07009#define FW_ACTION_NOHOTPLUG 0
10#define FW_ACTION_HOTPLUG 1
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012struct firmware {
13 size_t size;
David Woodhouseb7a39bd2008-05-23 18:38:49 +010014 const u8 *data;
David Woodhousedd336c52010-05-02 11:21:21 +030015 struct page **pages;
Ming Lei1f2b7952012-08-04 12:01:21 +080016
17 /* firmware loader private fields */
18 void *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019};
James Bottomleyfbab9762008-03-07 08:57:54 -060020
Paul Gortmakerde477252011-05-26 13:46:22 -040021struct module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022struct device;
James Bottomleyfbab9762008-03-07 08:57:54 -060023
David Woodhouse5658c762008-05-23 13:52:42 +010024struct 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 Bottomley69d44a12008-07-04 09:59:27 -070042#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043int request_firmware(const struct firmware **fw, const char *name,
44 struct device *device);
45int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080046 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010047 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 void (*cont)(const struct firmware *fw, void *context));
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070049int request_firmware_direct(const struct firmware **fw, const char *name,
50 struct device *device);
Stephen Boyda098ecd2016-08-02 14:04:28 -070051int request_firmware_into_buf(const struct firmware **firmware_p,
52 const char *name, struct device *device, void *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54void release_firmware(const struct firmware *fw);
James Bottomleyfbab9762008-03-07 08:57:54 -060055#else
56static 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}
Ming Lei2887b392012-08-04 12:01:22 +080073
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070074static inline int request_firmware_direct(const struct firmware **fw,
75 const char *name,
76 struct device *device)
77{
78 return -EINVAL;
79}
James Bottomleyfbab9762008-03-07 08:57:54 -060080
Stephen Boyda098ecd2016-08-02 14:04:28 -070081static 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 Iwaibba3a872013-12-02 15:38:16 +010087#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif