blob: c838bda40da0c128ac156671c0760ec0bc266552 [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);
Albert Tang87d7d5732022-11-26 18:06:03 -060057#if IS_ENABLED(CONFIG_OPLUS_FEATURE_WIFI_BDF)
58//Add for: reload wlan bdf without using cache
59int request_firmware_no_cache(const struct firmware **firmware_p, const char *name,
60 struct device *device);
61#endif /* CONFIG_OPLUS_FEATURE_WIFI_BDF */
James Bottomleyfbab9762008-03-07 08:57:54 -060062#else
63static inline int request_firmware(const struct firmware **fw,
64 const char *name,
65 struct device *device)
66{
67 return -EINVAL;
68}
Andres Rodriguez7dcc0132018-05-10 13:08:45 -070069
70static inline int firmware_request_nowarn(const struct firmware **fw,
71 const char *name,
72 struct device *device)
73{
74 return -EINVAL;
75}
76
James Bottomleyfbab9762008-03-07 08:57:54 -060077static inline int request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +080078 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +010079 const char *name, struct device *device, gfp_t gfp, void *context,
James Bottomleyfbab9762008-03-07 08:57:54 -060080 void (*cont)(const struct firmware *fw, void *context))
81{
82 return -EINVAL;
83}
84
85static inline void release_firmware(const struct firmware *fw)
86{
87}
Ming Lei2887b392012-08-04 12:01:22 +080088
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070089static inline int request_firmware_direct(const struct firmware **fw,
90 const char *name,
91 struct device *device)
92{
93 return -EINVAL;
94}
James Bottomleyfbab9762008-03-07 08:57:54 -060095
Stephen Boyda098ecd2016-08-02 14:04:28 -070096static inline int request_firmware_into_buf(const struct firmware **firmware_p,
97 const char *name, struct device *device, void *buf, size_t size)
98{
99 return -EINVAL;
100}
101
Takashi Iwaibba3a872013-12-02 15:38:16 +0100102#endif
Luis R. Rodriguez5d42c962018-03-21 15:34:29 -0700103
104int firmware_request_cache(struct device *device, const char *name);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#endif