blob: 2dd566c91d448fa8975d777e41041fd808fe400f [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080048 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010049 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 void (*cont)(const struct firmware *fw, void *context));
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070051int request_firmware_direct(const struct firmware **fw, const char *name,
52 struct device *device);
Stephen Boyda098ecd2016-08-02 14:04:28 -070053int request_firmware_into_buf(const struct firmware **firmware_p,
54 const char *name, struct device *device, void *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56void release_firmware(const struct firmware *fw);
James Bottomleyfbab9762008-03-07 08:57:54 -060057#else
58static inline int request_firmware(const struct firmware **fw,
59 const char *name,
60 struct device *device)
61{
62 return -EINVAL;
63}
Andres Rodriguez7dcc0132018-05-10 13:08:45 -070064
65static inline int firmware_request_nowarn(const struct firmware **fw,
66 const char *name,
67 struct device *device)
68{
69 return -EINVAL;
70}
71
James Bottomleyfbab9762008-03-07 08:57:54 -060072static inline int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080073 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010074 const char *name, struct device *device, gfp_t gfp, void *context,
James Bottomleyfbab9762008-03-07 08:57:54 -060075 void (*cont)(const struct firmware *fw, void *context))
76{
77 return -EINVAL;
78}
79
80static inline void release_firmware(const struct firmware *fw)
81{
82}
Ming Lei2887b392012-08-04 12:01:22 +080083
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070084static inline int request_firmware_direct(const struct firmware **fw,
85 const char *name,
86 struct device *device)
87{
88 return -EINVAL;
89}
James Bottomleyfbab9762008-03-07 08:57:54 -060090
Stephen Boyda098ecd2016-08-02 14:04:28 -070091static inline int request_firmware_into_buf(const struct firmware **firmware_p,
92 const char *name, struct device *device, void *buf, size_t size)
93{
94 return -EINVAL;
95}
96
Takashi Iwaibba3a872013-12-02 15:38:16 +010097#endif
Luis R. Rodriguez5d42c962018-03-21 15:34:29 -070098
99int firmware_request_cache(struct device *device, const char *name);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif