blob: 4bbd0afd91b788204404aa9b4f6913162fcd599f [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);
Andres Rodriguez7dcc0132018-05-10 13:08:45 -070045int firmware_request_nowarn(const struct firmware **fw, const char *name,
46 struct device *device);
Hans de Goedee4c2c0f2020-01-15 17:35:48 +010047int firmware_request_platform(const struct firmware **fw, const char *name,
48 struct device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080050 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010051 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 void (*cont)(const struct firmware *fw, void *context));
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070053int request_firmware_direct(const struct firmware **fw, const char *name,
54 struct device *device);
Stephen Boyda098ecd2016-08-02 14:04:28 -070055int request_firmware_into_buf(const struct firmware **firmware_p,
56 const char *name, struct device *device, void *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58void release_firmware(const struct firmware *fw);
James Bottomleyfbab9762008-03-07 08:57:54 -060059#else
60static inline int request_firmware(const struct firmware **fw,
61 const char *name,
62 struct device *device)
63{
64 return -EINVAL;
65}
Andres Rodriguez7dcc0132018-05-10 13:08:45 -070066
67static inline int firmware_request_nowarn(const struct firmware **fw,
68 const char *name,
69 struct device *device)
70{
71 return -EINVAL;
72}
73
Hans de Goedee4c2c0f2020-01-15 17:35:48 +010074static inline int firmware_request_platform(const struct firmware **fw,
75 const char *name,
76 struct device *device)
77{
78 return -EINVAL;
79}
80
James Bottomleyfbab9762008-03-07 08:57:54 -060081static inline int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080082 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010083 const char *name, struct device *device, gfp_t gfp, void *context,
James Bottomleyfbab9762008-03-07 08:57:54 -060084 void (*cont)(const struct firmware *fw, void *context))
85{
86 return -EINVAL;
87}
88
89static inline void release_firmware(const struct firmware *fw)
90{
91}
Ming Lei2887b392012-08-04 12:01:22 +080092
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070093static inline int request_firmware_direct(const struct firmware **fw,
94 const char *name,
95 struct device *device)
96{
97 return -EINVAL;
98}
James Bottomleyfbab9762008-03-07 08:57:54 -060099
Stephen Boyda098ecd2016-08-02 14:04:28 -0700100static inline int request_firmware_into_buf(const struct firmware **firmware_p,
101 const char *name, struct device *device, void *buf, size_t size)
102{
103 return -EINVAL;
104}
105
Takashi Iwaibba3a872013-12-02 15:38:16 +0100106#endif
Luis R. Rodriguez5d42c962018-03-21 15:34:29 -0700107
108int firmware_request_cache(struct device *device, const char *name);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif