blob: 7dd36ace615204c0ecf60ca43aa238b8392d5a3b [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * firmware_class.c - Multi purpose firmware loading support
4 *
Markus Rechberger87d37a42007-06-04 18:45:44 +02005 * Copyright (c) 2003 Manuel Estrada Sainz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Please see Documentation/firmware_class/ for more information.
8 *
9 */
10
Luis R. Rodriguez73da4b42017-07-20 13:13:40 -070011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Randy.Dunlapc59ede72006-01-11 12:17:46 -080013#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/device.h>
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/timer.h>
18#include <linux/vmalloc.h>
19#include <linux/interrupt.h>
20#include <linux/bitops.h>
Laura Garciacad1e552006-05-23 23:22:38 +020021#include <linux/mutex.h>
Stephen Boyda36cf842012-03-28 23:31:00 +020022#include <linux/workqueue.h>
David Woodhouse6e03a202009-04-09 22:04:07 -070023#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/firmware.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Stephen Boyda36cf842012-03-28 23:31:00 +020026#include <linux/sched.h>
Linus Torvaldsabb139e2012-10-03 15:58:32 -070027#include <linux/file.h>
Ming Lei1f2b7952012-08-04 12:01:21 +080028#include <linux/list.h>
Mimi Zohare40ba6d2015-11-19 12:39:22 -050029#include <linux/fs.h>
Ming Lei37276a52012-08-04 12:01:27 +080030#include <linux/async.h>
31#include <linux/pm.h>
Ming Lei07646d92012-08-04 12:01:29 +080032#include <linux/suspend.h>
Ming Leiac39b3e2012-08-20 19:04:16 +080033#include <linux/syscore_ops.h>
Takashi Iwaife304142013-05-22 18:28:38 +020034#include <linux/reboot.h>
Kees Cook6593d922014-02-25 13:06:00 -080035#include <linux/security.h>
Ming Lei37276a52012-08-04 12:01:27 +080036
Linus Torvaldsabb139e2012-10-03 15:58:32 -070037#include <generated/utsrelease.h>
38
Ming Lei37276a52012-08-04 12:01:27 +080039#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Markus Rechberger87d37a42007-06-04 18:45:44 +020041MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042MODULE_DESCRIPTION("Multi purpose firmware loading support");
43MODULE_LICENSE("GPL");
44
Daniel Wagnerf52cc3792016-11-17 11:00:48 +010045enum fw_status {
46 FW_STATUS_UNKNOWN,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 FW_STATUS_LOADING,
48 FW_STATUS_DONE,
Daniel Wagnerf52cc3792016-11-17 11:00:48 +010049 FW_STATUS_ABORTED,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
Daniel Wagnerf52cc3792016-11-17 11:00:48 +010052/*
53 * Concurrent request_firmware() for the same firmware need to be
54 * serialized. struct fw_state is simple state machine which hold the
55 * state of the firmware loading.
56 */
57struct fw_state {
Luis R. Rodrigueze44565f2017-07-20 13:13:09 -070058 struct completion completion;
Daniel Wagner0430caf2016-11-17 11:00:49 +010059 enum fw_status status;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +010060};
61
Takashi Iwai14c4bae2013-12-02 15:38:18 +010062/* firmware behavior options */
63#define FW_OPT_UEVENT (1U << 0)
64#define FW_OPT_NOWAIT (1U << 1)
Takashi Iwai5a1379e2014-06-04 17:48:15 +020065#define FW_OPT_USERHELPER (1U << 2)
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -070066#define FW_OPT_NO_WARN (1U << 3)
Vikram Mulukutla0e742e92016-08-02 14:04:25 -070067#define FW_OPT_NOCACHE (1U << 4)
Luis R. Rodriguez3f722712017-11-20 10:23:58 -080068#define FW_OPT_NOFALLBACK (1U << 5)
Takashi Iwai14c4bae2013-12-02 15:38:18 +010069
Ming Lei1f2b7952012-08-04 12:01:21 +080070struct firmware_cache {
71 /* firmware_buf instance will be added into the below list */
72 spinlock_t lock;
73 struct list_head head;
Ming Leicfe016b2012-09-08 17:32:30 +080074 int state;
Ming Lei37276a52012-08-04 12:01:27 +080075
Ming Leicfe016b2012-09-08 17:32:30 +080076#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +080077 /*
78 * Names of firmware images which have been cached successfully
79 * will be added into the below list so that device uncache
80 * helper can trace which firmware images have been cached
81 * before.
82 */
83 spinlock_t name_lock;
84 struct list_head fw_names;
85
Ming Lei37276a52012-08-04 12:01:27 +080086 struct delayed_work work;
Ming Lei07646d92012-08-04 12:01:29 +080087
88 struct notifier_block pm_notify;
Ming Leicfe016b2012-09-08 17:32:30 +080089#endif
Ming Lei1f2b7952012-08-04 12:01:21 +080090};
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -080092struct fw_priv {
Ming Lei1f2b7952012-08-04 12:01:21 +080093 struct kref ref;
94 struct list_head list;
Ming Lei1f2b7952012-08-04 12:01:21 +080095 struct firmware_cache *fwc;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +010096 struct fw_state fw_st;
Ming Lei65710cb2012-08-04 12:01:16 +080097 void *data;
98 size_t size;
Stephen Boyda098ecd2016-08-02 14:04:28 -070099 size_t allocated_size;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100100#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100101 bool is_paged_buf;
Ming Leiaf5bc112013-05-27 18:30:04 +0800102 bool need_uevent;
David Woodhouse6e03a202009-04-09 22:04:07 -0700103 struct page **pages;
104 int nr_pages;
105 int page_array_size;
Takashi Iwaife304142013-05-22 18:28:38 +0200106 struct list_head pending_list;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100107#endif
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800108 const char *fw_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
Ming Lei37276a52012-08-04 12:01:27 +0800111struct fw_cache_entry {
112 struct list_head list;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700113 const char *name;
Ming Lei37276a52012-08-04 12:01:27 +0800114};
115
Ming Leif531f05a2012-08-04 12:01:25 +0800116struct fw_name_devm {
117 unsigned long magic;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700118 const char *name;
Ming Leif531f05a2012-08-04 12:01:25 +0800119};
120
Luis R. Rodriguez942e7432017-11-20 10:23:55 -0800121static inline struct fw_priv *to_fw_priv(struct kref *ref)
122{
123 return container_of(ref, struct fw_priv, ref);
124}
Ming Lei1f2b7952012-08-04 12:01:21 +0800125
Ming Leiac39b3e2012-08-20 19:04:16 +0800126#define FW_LOADER_NO_CACHE 0
127#define FW_LOADER_START_CACHE 1
128
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800129/* fw_lock could be moved to 'struct fw_sysfs' but since it is just
Ming Lei1f2b7952012-08-04 12:01:21 +0800130 * guarding for corner cases a global lock should be OK */
131static DEFINE_MUTEX(fw_lock);
132
133static struct firmware_cache fw_cache;
134
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800135/* Builtin firmware support */
136
137#ifdef CONFIG_FW_LOADER
138
139extern struct builtin_fw __start_builtin_fw[];
140extern struct builtin_fw __end_builtin_fw[];
141
Luis R. Rodriguez5711ae62017-11-20 10:23:56 -0800142static void fw_copy_to_prealloc_buf(struct firmware *fw,
143 void *buf, size_t size)
144{
145 if (!buf || size < fw->size)
146 return;
147 memcpy(buf, fw->data, fw->size);
148}
149
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800150static bool fw_get_builtin_firmware(struct firmware *fw, const char *name,
151 void *buf, size_t size)
152{
153 struct builtin_fw *b_fw;
154
155 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
156 if (strcmp(name, b_fw->name) == 0) {
157 fw->size = b_fw->size;
158 fw->data = b_fw->data;
Luis R. Rodriguez5711ae62017-11-20 10:23:56 -0800159 fw_copy_to_prealloc_buf(fw, buf, size);
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800160
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800161 return true;
162 }
163 }
164
165 return false;
166}
167
168static bool fw_is_builtin_firmware(const struct firmware *fw)
169{
170 struct builtin_fw *b_fw;
171
172 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
173 if (fw->data == b_fw->data)
174 return true;
175
176 return false;
177}
178
179#else /* Module case - no builtin firmware support */
180
181static inline bool fw_get_builtin_firmware(struct firmware *fw,
182 const char *name, void *buf,
183 size_t size)
184{
185 return false;
186}
187
188static inline bool fw_is_builtin_firmware(const struct firmware *fw)
189{
190 return false;
191}
192#endif
193
194static int loading_timeout = 60; /* In seconds */
195
196static inline long firmware_loading_timeout(void)
197{
198 return loading_timeout > 0 ? loading_timeout * HZ : MAX_JIFFY_OFFSET;
199}
200
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800201static void fw_state_init(struct fw_priv *fw_priv)
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800202{
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800203 struct fw_state *fw_st = &fw_priv->fw_st;
204
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800205 init_completion(&fw_st->completion);
206 fw_st->status = FW_STATUS_UNKNOWN;
207}
208
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800209static int __fw_state_wait_common(struct fw_priv *fw_priv, long timeout)
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800210{
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800211 struct fw_state *fw_st = &fw_priv->fw_st;
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800212 long ret;
213
214 ret = wait_for_completion_killable_timeout(&fw_st->completion, timeout);
215 if (ret != 0 && fw_st->status == FW_STATUS_ABORTED)
216 return -ENOENT;
217 if (!ret)
218 return -ETIMEDOUT;
219
220 return ret < 0 ? ret : 0;
221}
222
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800223static void __fw_state_set(struct fw_priv *fw_priv,
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800224 enum fw_status status)
225{
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800226 struct fw_state *fw_st = &fw_priv->fw_st;
227
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800228 WRITE_ONCE(fw_st->status, status);
229
230 if (status == FW_STATUS_DONE || status == FW_STATUS_ABORTED)
231 complete_all(&fw_st->completion);
232}
233
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800234static inline void fw_state_start(struct fw_priv *fw_priv)
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800235{
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800236 __fw_state_set(fw_priv, FW_STATUS_LOADING);
237}
238
239static inline void fw_state_done(struct fw_priv *fw_priv)
240{
241 __fw_state_set(fw_priv, FW_STATUS_DONE);
242}
243
244static inline void fw_state_aborted(struct fw_priv *fw_priv)
245{
246 __fw_state_set(fw_priv, FW_STATUS_ABORTED);
247}
248
249static inline int fw_state_wait(struct fw_priv *fw_priv)
250{
251 return __fw_state_wait_common(fw_priv, MAX_SCHEDULE_TIMEOUT);
252}
253
254static bool __fw_state_check(struct fw_priv *fw_priv,
255 enum fw_status status)
256{
257 struct fw_state *fw_st = &fw_priv->fw_st;
258
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800259 return fw_st->status == status;
260}
261
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800262static inline bool fw_state_is_aborted(struct fw_priv *fw_priv)
263{
264 return __fw_state_check(fw_priv, FW_STATUS_ABORTED);
265}
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800266
267#ifdef CONFIG_FW_LOADER_USER_HELPER
268
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800269static inline bool fw_sysfs_done(struct fw_priv *fw_priv)
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800270{
271 return __fw_state_check(fw_priv, FW_STATUS_DONE);
272}
273
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800274static inline bool fw_sysfs_loading(struct fw_priv *fw_priv)
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800275{
276 return __fw_state_check(fw_priv, FW_STATUS_LOADING);
277}
278
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800279static inline int fw_sysfs_wait_timeout(struct fw_priv *fw_priv, long timeout)
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800280{
281 return __fw_state_wait_common(fw_priv, timeout);
282}
Luis R. Rodriguezbe8d4622017-11-20 10:23:50 -0800283
284#endif /* CONFIG_FW_LOADER_USER_HELPER */
285
286static int fw_cache_piggyback_on_request(const char *name);
287
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800288static struct fw_priv *__allocate_fw_priv(const char *fw_name,
289 struct firmware_cache *fwc,
290 void *dbuf, size_t size)
Ming Lei1f2b7952012-08-04 12:01:21 +0800291{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800292 struct fw_priv *fw_priv;
Ming Lei1f2b7952012-08-04 12:01:21 +0800293
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800294 fw_priv = kzalloc(sizeof(*fw_priv), GFP_ATOMIC);
295 if (!fw_priv)
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700296 return NULL;
297
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800298 fw_priv->fw_name = kstrdup_const(fw_name, GFP_ATOMIC);
299 if (!fw_priv->fw_name) {
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800300 kfree(fw_priv);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700301 return NULL;
302 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800303
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800304 kref_init(&fw_priv->ref);
305 fw_priv->fwc = fwc;
306 fw_priv->data = dbuf;
307 fw_priv->allocated_size = size;
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800308 fw_state_init(fw_priv);
Takashi Iwaife304142013-05-22 18:28:38 +0200309#ifdef CONFIG_FW_LOADER_USER_HELPER
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800310 INIT_LIST_HEAD(&fw_priv->pending_list);
Takashi Iwaife304142013-05-22 18:28:38 +0200311#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800312
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800313 pr_debug("%s: fw-%s fw_priv=%p\n", __func__, fw_name, fw_priv);
Ming Lei1f2b7952012-08-04 12:01:21 +0800314
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800315 return fw_priv;
Ming Lei1f2b7952012-08-04 12:01:21 +0800316}
317
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800318static struct fw_priv *__lookup_fw_priv(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +0800319{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800320 struct fw_priv *tmp;
Ming Lei2887b392012-08-04 12:01:22 +0800321 struct firmware_cache *fwc = &fw_cache;
322
323 list_for_each_entry(tmp, &fwc->head, list)
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800324 if (!strcmp(tmp->fw_name, fw_name))
Ming Lei2887b392012-08-04 12:01:22 +0800325 return tmp;
326 return NULL;
327}
328
Luis R. Rodriguez30172be2017-07-20 13:13:41 -0700329/* Returns 1 for batching firmware requests with the same name */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800330static int alloc_lookup_fw_priv(const char *fw_name,
331 struct firmware_cache *fwc,
332 struct fw_priv **fw_priv, void *dbuf,
333 size_t size)
Ming Lei1f2b7952012-08-04 12:01:21 +0800334{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800335 struct fw_priv *tmp;
Ming Lei1f2b7952012-08-04 12:01:21 +0800336
337 spin_lock(&fwc->lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800338 tmp = __lookup_fw_priv(fw_name);
Ming Lei2887b392012-08-04 12:01:22 +0800339 if (tmp) {
340 kref_get(&tmp->ref);
341 spin_unlock(&fwc->lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800342 *fw_priv = tmp;
343 pr_debug("batched request - sharing the same struct fw_priv and lookup for multiple requests\n");
Ming Lei2887b392012-08-04 12:01:22 +0800344 return 1;
345 }
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800346 tmp = __allocate_fw_priv(fw_name, fwc, dbuf, size);
Ming Lei1f2b7952012-08-04 12:01:21 +0800347 if (tmp)
348 list_add(&tmp->list, &fwc->head);
349 spin_unlock(&fwc->lock);
350
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800351 *fw_priv = tmp;
Ming Lei1f2b7952012-08-04 12:01:21 +0800352
353 return tmp ? 0 : -ENOMEM;
354}
355
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800356static void __free_fw_priv(struct kref *ref)
Bart Van Assche98233b22014-01-04 14:20:36 +0100357 __releases(&fwc->lock)
Ming Lei1f2b7952012-08-04 12:01:21 +0800358{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800359 struct fw_priv *fw_priv = to_fw_priv(ref);
360 struct firmware_cache *fwc = fw_priv->fwc;
Ming Lei1f2b7952012-08-04 12:01:21 +0800361
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800362 pr_debug("%s: fw-%s fw_priv=%p data=%p size=%u\n",
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800363 __func__, fw_priv->fw_name, fw_priv, fw_priv->data,
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800364 (unsigned int)fw_priv->size);
Ming Lei1f2b7952012-08-04 12:01:21 +0800365
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800366 list_del(&fw_priv->list);
Ming Lei1f2b7952012-08-04 12:01:21 +0800367 spin_unlock(&fwc->lock);
368
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100369#ifdef CONFIG_FW_LOADER_USER_HELPER
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800370 if (fw_priv->is_paged_buf) {
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100371 int i;
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800372 vunmap(fw_priv->data);
373 for (i = 0; i < fw_priv->nr_pages; i++)
374 __free_page(fw_priv->pages[i]);
375 vfree(fw_priv->pages);
Ming Lei746058f2012-10-09 12:01:03 +0800376 } else
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100377#endif
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800378 if (!fw_priv->allocated_size)
379 vfree(fw_priv->data);
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800380 kfree_const(fw_priv->fw_name);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800381 kfree(fw_priv);
Ming Lei1f2b7952012-08-04 12:01:21 +0800382}
383
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800384static void free_fw_priv(struct fw_priv *fw_priv)
Ming Lei1f2b7952012-08-04 12:01:21 +0800385{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800386 struct firmware_cache *fwc = fw_priv->fwc;
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800387 spin_lock(&fwc->lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800388 if (!kref_put(&fw_priv->ref, __free_fw_priv))
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800389 spin_unlock(&fwc->lock);
Ming Lei1f2b7952012-08-04 12:01:21 +0800390}
391
Ming Lei746058f2012-10-09 12:01:03 +0800392/* direct firmware loading support */
Ming Lei27602842012-11-03 17:47:58 +0800393static char fw_path_para[256];
394static const char * const fw_path[] = {
395 fw_path_para,
Ming Lei746058f2012-10-09 12:01:03 +0800396 "/lib/firmware/updates/" UTS_RELEASE,
397 "/lib/firmware/updates",
398 "/lib/firmware/" UTS_RELEASE,
399 "/lib/firmware"
400};
401
Ming Lei27602842012-11-03 17:47:58 +0800402/*
403 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
404 * from kernel command line because firmware_class is generally built in
405 * kernel instead of module.
406 */
407module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
408MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
409
Stephen Boyda098ecd2016-08-02 14:04:28 -0700410static int
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800411fw_get_filesystem_firmware(struct device *device, struct fw_priv *fw_priv)
Ming Lei746058f2012-10-09 12:01:03 +0800412{
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500413 loff_t size;
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700414 int i, len;
Neil Horman3e358ac2013-09-06 15:36:08 -0400415 int rc = -ENOENT;
Luis R. Rodriguezf5727b02015-05-12 14:49:40 -0700416 char *path;
Stephen Boyda098ecd2016-08-02 14:04:28 -0700417 enum kernel_read_file_id id = READING_FIRMWARE;
418 size_t msize = INT_MAX;
419
420 /* Already populated data member means we're loading into a buffer */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800421 if (fw_priv->data) {
Stephen Boyda098ecd2016-08-02 14:04:28 -0700422 id = READING_FIRMWARE_PREALLOC_BUFFER;
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800423 msize = fw_priv->allocated_size;
Stephen Boyda098ecd2016-08-02 14:04:28 -0700424 }
Luis R. Rodriguezf5727b02015-05-12 14:49:40 -0700425
426 path = __getname();
427 if (!path)
428 return -ENOMEM;
Ming Lei746058f2012-10-09 12:01:03 +0800429
430 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
Ming Lei27602842012-11-03 17:47:58 +0800431 /* skip the unset customized path */
432 if (!fw_path[i][0])
433 continue;
434
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700435 len = snprintf(path, PATH_MAX, "%s/%s",
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800436 fw_path[i], fw_priv->fw_name);
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700437 if (len >= PATH_MAX) {
438 rc = -ENAMETOOLONG;
439 break;
440 }
Ming Lei746058f2012-10-09 12:01:03 +0800441
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800442 fw_priv->size = 0;
443 rc = kernel_read_file_from_path(path, &fw_priv->data, &size,
444 msize, id);
Kees Cook4b2530d2016-02-04 13:15:02 -0800445 if (rc) {
Luis R. Rodriguez8e516aa2016-02-28 21:57:55 +0100446 if (rc == -ENOENT)
447 dev_dbg(device, "loading %s failed with error %d\n",
448 path, rc);
449 else
450 dev_warn(device, "loading %s failed with error %d\n",
451 path, rc);
Kees Cook4b2530d2016-02-04 13:15:02 -0800452 continue;
453 }
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800454 dev_dbg(device, "direct-loading %s\n", fw_priv->fw_name);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800455 fw_priv->size = size;
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800456 fw_state_done(fw_priv);
Kees Cook4b2530d2016-02-04 13:15:02 -0800457 break;
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100458 }
Kees Cook4b2530d2016-02-04 13:15:02 -0800459 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100460
Neil Horman3e358ac2013-09-06 15:36:08 -0400461 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800462}
463
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100464/* firmware holds the ownership of pages */
465static void firmware_free_data(const struct firmware *fw)
466{
467 /* Loaded directly? */
468 if (!fw->priv) {
469 vfree(fw->data);
470 return;
471 }
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800472 free_fw_priv(fw->priv);
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100473}
474
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100475/* store the pages buffer info firmware from buf */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800476static void fw_set_page_data(struct fw_priv *fw_priv, struct firmware *fw)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100477{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800478 fw->priv = fw_priv;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100479#ifdef CONFIG_FW_LOADER_USER_HELPER
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800480 fw->pages = fw_priv->pages;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100481#endif
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800482 fw->size = fw_priv->size;
483 fw->data = fw_priv->data;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100484
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800485 pr_debug("%s: fw-%s fw_priv=%p data=%p size=%u\n",
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800486 __func__, fw_priv->fw_name, fw_priv, fw_priv->data,
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800487 (unsigned int)fw_priv->size);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100488}
489
490#ifdef CONFIG_PM_SLEEP
491static void fw_name_devm_release(struct device *dev, void *res)
492{
493 struct fw_name_devm *fwn = res;
494
495 if (fwn->magic == (unsigned long)&fw_cache)
496 pr_debug("%s: fw_name-%s devm-%p released\n",
497 __func__, fwn->name, res);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700498 kfree_const(fwn->name);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100499}
500
501static int fw_devm_match(struct device *dev, void *res,
502 void *match_data)
503{
504 struct fw_name_devm *fwn = res;
505
506 return (fwn->magic == (unsigned long)&fw_cache) &&
507 !strcmp(fwn->name, match_data);
508}
509
510static struct fw_name_devm *fw_find_devm_name(struct device *dev,
511 const char *name)
512{
513 struct fw_name_devm *fwn;
514
515 fwn = devres_find(dev, fw_name_devm_release,
516 fw_devm_match, (void *)name);
517 return fwn;
518}
519
520/* add firmware name into devres list */
521static int fw_add_devm_name(struct device *dev, const char *name)
522{
523 struct fw_name_devm *fwn;
524
525 fwn = fw_find_devm_name(dev, name);
526 if (fwn)
527 return 1;
528
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700529 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm),
530 GFP_KERNEL);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100531 if (!fwn)
532 return -ENOMEM;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700533 fwn->name = kstrdup_const(name, GFP_KERNEL);
534 if (!fwn->name) {
Vladimir Zapolskiya885de62015-07-29 23:26:28 +0300535 devres_free(fwn);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700536 return -ENOMEM;
537 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100538
539 fwn->magic = (unsigned long)&fw_cache;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100540 devres_add(dev, fwn);
541
542 return 0;
543}
544#else
545static int fw_add_devm_name(struct device *dev, const char *name)
546{
547 return 0;
548}
549#endif
550
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800551static int assign_fw(struct firmware *fw, struct device *device,
552 unsigned int opt_flags)
Luis R. Rodriguez8509adc2017-05-02 01:31:06 -0700553{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800554 struct fw_priv *fw_priv = fw->priv;
Luis R. Rodriguez8509adc2017-05-02 01:31:06 -0700555
556 mutex_lock(&fw_lock);
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800557 if (!fw_priv->size || fw_state_is_aborted(fw_priv)) {
Luis R. Rodriguez8509adc2017-05-02 01:31:06 -0700558 mutex_unlock(&fw_lock);
559 return -ENOENT;
560 }
561
562 /*
563 * add firmware name into devres list so that we can auto cache
564 * and uncache firmware for device.
565 *
566 * device may has been deleted already, but the problem
567 * should be fixed in devres or driver core.
568 */
569 /* don't cache firmware handled without uevent */
570 if (device && (opt_flags & FW_OPT_UEVENT) &&
571 !(opt_flags & FW_OPT_NOCACHE))
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800572 fw_add_devm_name(device, fw_priv->fw_name);
Luis R. Rodriguez8509adc2017-05-02 01:31:06 -0700573
574 /*
575 * After caching firmware image is started, let it piggyback
576 * on request firmware.
577 */
578 if (!(opt_flags & FW_OPT_NOCACHE) &&
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800579 fw_priv->fwc->state == FW_LOADER_START_CACHE) {
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800580 if (fw_cache_piggyback_on_request(fw_priv->fw_name))
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800581 kref_get(&fw_priv->ref);
Luis R. Rodriguez8509adc2017-05-02 01:31:06 -0700582 }
583
584 /* pass the pages buffer to driver at the last minute */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800585 fw_set_page_data(fw_priv, fw);
Luis R. Rodriguez8509adc2017-05-02 01:31:06 -0700586 mutex_unlock(&fw_lock);
587 return 0;
588}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100589
590/*
591 * user-mode helper code
592 */
593#ifdef CONFIG_FW_LOADER_USER_HELPER
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800594struct fw_sysfs {
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100595 bool nowait;
596 struct device dev;
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800597 struct fw_priv *fw_priv;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100598 struct firmware *fw;
599};
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100600
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800601static struct fw_sysfs *to_fw_sysfs(struct device *dev)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700602{
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800603 return container_of(dev, struct fw_sysfs, dev);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700604}
605
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800606static void __fw_load_abort(struct fw_priv *fw_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Ming Lei87597932013-06-15 16:36:38 +0800608 /*
609 * There is a small window in which user can write to 'loading'
610 * between loading done and disappearance of 'loading'
611 */
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800612 if (fw_sysfs_done(fw_priv))
Ming Lei87597932013-06-15 16:36:38 +0800613 return;
614
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800615 list_del_init(&fw_priv->pending_list);
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800616 fw_state_aborted(fw_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800619static void fw_load_abort(struct fw_sysfs *fw_sysfs)
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700620{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800621 struct fw_priv *fw_priv = fw_sysfs->fw_priv;
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700622
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800623 __fw_load_abort(fw_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Takashi Iwaife304142013-05-22 18:28:38 +0200626static LIST_HEAD(pending_fw_head);
627
Luis R. Rodriguezc4b76892017-05-02 01:31:03 -0700628static void kill_pending_fw_fallback_reqs(bool only_kill_custom)
Luis R. Rodriguez63833312017-05-02 01:31:02 -0700629{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800630 struct fw_priv *fw_priv;
631 struct fw_priv *next;
Luis R. Rodriguez63833312017-05-02 01:31:02 -0700632
633 mutex_lock(&fw_lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800634 list_for_each_entry_safe(fw_priv, next, &pending_fw_head,
635 pending_list) {
636 if (!fw_priv->need_uevent || !only_kill_custom)
637 __fw_load_abort(fw_priv);
Luis R. Rodriguez63833312017-05-02 01:31:02 -0700638 }
639 mutex_unlock(&fw_lock);
640}
Luis R. Rodriguez63833312017-05-02 01:31:02 -0700641
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700642static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
643 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 return sprintf(buf, "%d\n", loading_timeout);
646}
647
648/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800649 * firmware_timeout_store - set number of seconds to wait for firmware
650 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800651 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800652 * @buf: buffer to scan for timeout value
653 * @count: number of bytes in @buf
654 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800656 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 * firmware will be provided.
658 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800659 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 **/
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700661static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
662 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700665 if (loading_timeout < 0)
666 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return count;
669}
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100670static CLASS_ATTR_RW(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100672static struct attribute *firmware_class_attrs[] = {
673 &class_attr_timeout.attr,
674 NULL,
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800675};
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100676ATTRIBUTE_GROUPS(firmware_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800678static void fw_dev_release(struct device *dev)
679{
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800680 struct fw_sysfs *fw_sysfs = to_fw_sysfs(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800681
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800682 kfree(fw_sysfs);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800683}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800685static int do_firmware_uevent(struct fw_sysfs *fw_sysfs, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Luis R. Rodriguez31034f22017-11-20 10:23:49 -0800687 if (add_uevent_var(env, "FIRMWARE=%s", fw_sysfs->fw_priv->fw_name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200689 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700690 return -ENOMEM;
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800691 if (add_uevent_var(env, "ASYNC=%d", fw_sysfs->nowait))
Johannes Berge9045f92010-03-29 17:57:20 +0200692 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 return 0;
695}
696
Linus Torvalds6f957722015-07-09 11:20:01 -0700697static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
698{
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800699 struct fw_sysfs *fw_sysfs = to_fw_sysfs(dev);
Linus Torvalds6f957722015-07-09 11:20:01 -0700700 int err = 0;
701
702 mutex_lock(&fw_lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800703 if (fw_sysfs->fw_priv)
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800704 err = do_firmware_uevent(fw_sysfs, env);
Linus Torvalds6f957722015-07-09 11:20:01 -0700705 mutex_unlock(&fw_lock);
706 return err;
707}
708
Adrian Bunk1b81d662006-05-20 15:00:16 -0700709static struct class firmware_class = {
710 .name = "firmware",
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100711 .class_groups = firmware_class_groups,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700712 .dev_uevent = firmware_uevent,
713 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700714};
715
Luis R. Rodriguez6bb9cf32017-11-20 09:45:33 -0800716static inline int register_sysfs_loader(void)
717{
718 return class_register(&firmware_class);
719}
720
721static inline void unregister_sysfs_loader(void)
722{
723 class_unregister(&firmware_class);
724}
725
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700726static ssize_t firmware_loading_show(struct device *dev,
727 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800729 struct fw_sysfs *fw_sysfs = to_fw_sysfs(dev);
Ming Lei87597932013-06-15 16:36:38 +0800730 int loading = 0;
731
732 mutex_lock(&fw_lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800733 if (fw_sysfs->fw_priv)
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800734 loading = fw_sysfs_loading(fw_sysfs->fw_priv);
Ming Lei87597932013-06-15 16:36:38 +0800735 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return sprintf(buf, "%d\n", loading);
738}
739
David Woodhouse6e03a202009-04-09 22:04:07 -0700740/* Some architectures don't have PAGE_KERNEL_RO */
741#ifndef PAGE_KERNEL_RO
742#define PAGE_KERNEL_RO PAGE_KERNEL
743#endif
Ming Lei253c9242012-10-09 12:01:02 +0800744
745/* one pages buffer should be mapped/unmapped only once */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800746static int map_fw_priv_pages(struct fw_priv *fw_priv)
Ming Lei253c9242012-10-09 12:01:02 +0800747{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800748 if (!fw_priv->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800749 return 0;
750
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800751 vunmap(fw_priv->data);
752 fw_priv->data = vmap(fw_priv->pages, fw_priv->nr_pages, 0,
753 PAGE_KERNEL_RO);
754 if (!fw_priv->data)
Ming Lei253c9242012-10-09 12:01:02 +0800755 return -ENOMEM;
756 return 0;
757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800760 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700761 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800762 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800763 * @buf: buffer to scan for loading control value
764 * @count: number of bytes in @buf
765 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 * The relevant values are:
767 *
768 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800769 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * -1: Conclude the load with an error and discard any written data.
771 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700772static ssize_t firmware_loading_store(struct device *dev,
773 struct device_attribute *attr,
774 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800776 struct fw_sysfs *fw_sysfs = to_fw_sysfs(dev);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800777 struct fw_priv *fw_priv;
Kees Cook6593d922014-02-25 13:06:00 -0800778 ssize_t written = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700780 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Neil Hormaneea915b2012-01-02 15:31:23 -0500782 mutex_lock(&fw_lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800783 fw_priv = fw_sysfs->fw_priv;
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800784 if (fw_state_is_aborted(fw_priv))
Neil Hormaneea915b2012-01-02 15:31:23 -0500785 goto out;
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 switch (loading) {
788 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800789 /* discarding any previous partial load */
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800790 if (!fw_sysfs_done(fw_priv)) {
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800791 for (i = 0; i < fw_priv->nr_pages; i++)
792 __free_page(fw_priv->pages[i]);
793 vfree(fw_priv->pages);
794 fw_priv->pages = NULL;
795 fw_priv->page_array_size = 0;
796 fw_priv->nr_pages = 0;
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800797 fw_state_start(fw_priv);
Ming Lei28eefa72012-08-04 12:01:17 +0800798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 break;
800 case 0:
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800801 if (fw_sysfs_loading(fw_priv)) {
Kees Cook6593d922014-02-25 13:06:00 -0800802 int rc;
803
Ming Lei253c9242012-10-09 12:01:02 +0800804 /*
805 * Several loading requests may be pending on
806 * one same firmware buf, so let all requests
807 * see the mapped 'buf->data' once the loading
808 * is completed.
809 * */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800810 rc = map_fw_priv_pages(fw_priv);
Kees Cook6593d922014-02-25 13:06:00 -0800811 if (rc)
zhang jun2b1278c2014-02-13 15:18:47 +0800812 dev_err(dev, "%s: map pages failed\n",
813 __func__);
Kees Cook6593d922014-02-25 13:06:00 -0800814 else
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500815 rc = security_kernel_post_read_file(NULL,
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800816 fw_priv->data, fw_priv->size,
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500817 READING_FIRMWARE);
Kees Cook6593d922014-02-25 13:06:00 -0800818
819 /*
820 * Same logic as fw_load_abort, only the DONE bit
821 * is ignored and we set ABORT only on failure.
822 */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800823 list_del_init(&fw_priv->pending_list);
Kees Cook6593d922014-02-25 13:06:00 -0800824 if (rc) {
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800825 fw_state_aborted(fw_priv);
Kees Cook6593d922014-02-25 13:06:00 -0800826 written = rc;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100827 } else {
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -0800828 fw_state_done(fw_priv);
Kees Cook6593d922014-02-25 13:06:00 -0800829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 break;
831 }
832 /* fallthrough */
833 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700834 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 /* fallthrough */
836 case -1:
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800837 fw_load_abort(fw_sysfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500840out:
841 mutex_unlock(&fw_lock);
Kees Cook6593d922014-02-25 13:06:00 -0800842 return written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700845static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800847static void firmware_rw_data(struct fw_priv *fw_priv, char *buffer,
Stephen Boyda098ecd2016-08-02 14:04:28 -0700848 loff_t offset, size_t count, bool read)
849{
850 if (read)
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800851 memcpy(buffer, fw_priv->data + offset, count);
Stephen Boyda098ecd2016-08-02 14:04:28 -0700852 else
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800853 memcpy(fw_priv->data + offset, buffer, count);
Stephen Boyda098ecd2016-08-02 14:04:28 -0700854}
855
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800856static void firmware_rw(struct fw_priv *fw_priv, char *buffer,
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700857 loff_t offset, size_t count, bool read)
858{
859 while (count) {
860 void *page_data;
861 int page_nr = offset >> PAGE_SHIFT;
862 int page_ofs = offset & (PAGE_SIZE-1);
863 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
864
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800865 page_data = kmap(fw_priv->pages[page_nr]);
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700866
867 if (read)
868 memcpy(buffer, page_data + page_ofs, page_cnt);
869 else
870 memcpy(page_data + page_ofs, buffer, page_cnt);
871
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800872 kunmap(fw_priv->pages[page_nr]);
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700873 buffer += page_cnt;
874 offset += page_cnt;
875 count -= page_cnt;
876 }
877}
878
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700879static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
880 struct bin_attribute *bin_attr,
881 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200883 struct device *dev = kobj_to_dev(kobj);
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800884 struct fw_sysfs *fw_sysfs = to_fw_sysfs(dev);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800885 struct fw_priv *fw_priv;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700886 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Laura Garciacad1e552006-05-23 23:22:38 +0200888 mutex_lock(&fw_lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800889 fw_priv = fw_sysfs->fw_priv;
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800890 if (!fw_priv || fw_sysfs_done(fw_priv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 ret_count = -ENODEV;
892 goto out;
893 }
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800894 if (offset > fw_priv->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200895 ret_count = 0;
896 goto out;
897 }
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800898 if (count > fw_priv->size - offset)
899 count = fw_priv->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700900
901 ret_count = count;
902
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800903 if (fw_priv->data)
904 firmware_rw_data(fw_priv, buffer, offset, count, true);
Stephen Boyda098ecd2016-08-02 14:04:28 -0700905 else
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800906 firmware_rw(fw_priv, buffer, offset, count, true);
David Woodhouse6e03a202009-04-09 22:04:07 -0700907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908out:
Laura Garciacad1e552006-05-23 23:22:38 +0200909 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return ret_count;
911}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800912
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800913static int fw_realloc_pages(struct fw_sysfs *fw_sysfs, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800915 struct fw_priv *fw_priv= fw_sysfs->fw_priv;
Fabian Fredericka76040d2014-07-01 21:13:30 +0200916 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
David Woodhouse6e03a202009-04-09 22:04:07 -0700918 /* If the array of pages is too small, grow it... */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800919 if (fw_priv->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700920 int new_array_size = max(pages_needed,
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800921 fw_priv->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700922 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Chen Feng10a3fbf2015-12-16 17:03:15 +0800924 new_pages = vmalloc(new_array_size * sizeof(void *));
David Woodhouse6e03a202009-04-09 22:04:07 -0700925 if (!new_pages) {
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800926 fw_load_abort(fw_sysfs);
David Woodhouse6e03a202009-04-09 22:04:07 -0700927 return -ENOMEM;
928 }
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800929 memcpy(new_pages, fw_priv->pages,
930 fw_priv->page_array_size * sizeof(void *));
931 memset(&new_pages[fw_priv->page_array_size], 0, sizeof(void *) *
932 (new_array_size - fw_priv->page_array_size));
933 vfree(fw_priv->pages);
934 fw_priv->pages = new_pages;
935 fw_priv->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700937
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800938 while (fw_priv->nr_pages < pages_needed) {
939 fw_priv->pages[fw_priv->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700940 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
941
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800942 if (!fw_priv->pages[fw_priv->nr_pages]) {
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800943 fw_load_abort(fw_sysfs);
David Woodhouse6e03a202009-04-09 22:04:07 -0700944 return -ENOMEM;
945 }
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800946 fw_priv->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return 0;
949}
950
951/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800952 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700953 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700954 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700955 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800956 * @buffer: buffer being written
957 * @offset: buffer offset for write in total data store area
958 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800960 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * the driver as a firmware image.
962 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700963static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
964 struct bin_attribute *bin_attr,
965 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200967 struct device *dev = kobj_to_dev(kobj);
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -0800968 struct fw_sysfs *fw_sysfs = to_fw_sysfs(dev);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800969 struct fw_priv *fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 ssize_t retval;
971
972 if (!capable(CAP_SYS_RAWIO))
973 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700974
Laura Garciacad1e552006-05-23 23:22:38 +0200975 mutex_lock(&fw_lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800976 fw_priv = fw_sysfs->fw_priv;
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -0800977 if (!fw_priv || fw_sysfs_done(fw_priv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 retval = -ENODEV;
979 goto out;
980 }
Ming Lei65710cb2012-08-04 12:01:16 +0800981
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800982 if (fw_priv->data) {
983 if (offset + count > fw_priv->allocated_size) {
Stephen Boyda098ecd2016-08-02 14:04:28 -0700984 retval = -ENOMEM;
985 goto out;
986 }
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800987 firmware_rw_data(fw_priv, buffer, offset, count, false);
Stephen Boyda098ecd2016-08-02 14:04:28 -0700988 retval = count;
989 } else {
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800990 retval = fw_realloc_pages(fw_sysfs, offset + count);
Stephen Boyda098ecd2016-08-02 14:04:28 -0700991 if (retval)
992 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Stephen Boyda098ecd2016-08-02 14:04:28 -0700994 retval = count;
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800995 firmware_rw(fw_priv, buffer, offset, count, false);
Stephen Boyda098ecd2016-08-02 14:04:28 -0700996 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700997
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -0800998 fw_priv->size = max_t(size_t, offset + count, fw_priv->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999out:
Laura Garciacad1e552006-05-23 23:22:38 +02001000 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return retval;
1002}
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001003
Dmitry Torokhov0983ca22010-06-04 00:54:37 -07001004static struct bin_attribute firmware_attr_data = {
1005 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 .size = 0,
1007 .read = firmware_data_read,
1008 .write = firmware_data_write,
1009};
1010
Takashi Iwai46239902015-02-04 15:18:07 +01001011static struct attribute *fw_dev_attrs[] = {
1012 &dev_attr_loading.attr,
1013 NULL
1014};
1015
1016static struct bin_attribute *fw_dev_bin_attrs[] = {
1017 &firmware_attr_data,
1018 NULL
1019};
1020
1021static const struct attribute_group fw_dev_attr_group = {
1022 .attrs = fw_dev_attrs,
1023 .bin_attrs = fw_dev_bin_attrs,
1024};
1025
1026static const struct attribute_group *fw_dev_attr_groups[] = {
1027 &fw_dev_attr_group,
1028 NULL
1029};
1030
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001031static struct fw_sysfs *
Stephen Boyddddb5542012-03-28 23:30:43 +02001032fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001033 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001035 struct fw_sysfs *fw_sysfs;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001036 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001038 fw_sysfs = kzalloc(sizeof(*fw_sysfs), GFP_KERNEL);
1039 if (!fw_sysfs) {
1040 fw_sysfs = ERR_PTR(-ENOMEM);
Ming Lei12446912012-08-04 12:01:20 +08001041 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001044 fw_sysfs->nowait = !!(opt_flags & FW_OPT_NOWAIT);
1045 fw_sysfs->fw = firmware;
1046 f_dev = &fw_sysfs->dev;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001047
1048 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +08001049 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -07001050 f_dev->parent = device;
1051 f_dev->class = &firmware_class;
Takashi Iwai46239902015-02-04 15:18:07 +01001052 f_dev->groups = fw_dev_attr_groups;
Ming Lei12446912012-08-04 12:01:20 +08001053exit:
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001054 return fw_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001056
1057/* load a firmware via user helper */
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001058static int _request_firmware_load(struct fw_sysfs *fw_sysfs,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001059 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001060{
1061 int retval = 0;
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001062 struct device *f_dev = &fw_sysfs->dev;
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001063 struct fw_priv *fw_priv = fw_sysfs->fw_priv;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001064
1065 /* fall back on userspace loading */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001066 if (!fw_priv->data)
1067 fw_priv->is_paged_buf = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001068
1069 dev_set_uevent_suppress(f_dev, true);
1070
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001071 retval = device_add(f_dev);
1072 if (retval) {
1073 dev_err(f_dev, "%s: device_register failed\n", __func__);
1074 goto err_put_dev;
1075 }
1076
Maxime Bizon1eeeef12013-08-29 20:28:13 +02001077 mutex_lock(&fw_lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001078 list_add(&fw_priv->pending_list, &pending_fw_head);
Maxime Bizon1eeeef12013-08-29 20:28:13 +02001079 mutex_unlock(&fw_lock);
1080
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001081 if (opt_flags & FW_OPT_UEVENT) {
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001082 fw_priv->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001083 dev_set_uevent_suppress(f_dev, false);
Luis R. Rodriguez31034f22017-11-20 10:23:49 -08001084 dev_dbg(f_dev, "firmware: requesting %s\n", fw_priv->fw_name);
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001085 kobject_uevent(&fw_sysfs->dev.kobj, KOBJ_ADD);
Ming Lei68ff2a02015-01-13 00:02:01 +08001086 } else {
1087 timeout = MAX_JIFFY_OFFSET;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001088 }
1089
Luis R. Rodriguez33a5b182017-11-20 10:23:54 -08001090 retval = fw_sysfs_wait_timeout(fw_priv, timeout);
Bjorn Andersson5d47ec02016-12-06 17:01:45 -08001091 if (retval < 0) {
Ming Lei0cb64242015-01-13 00:01:35 +08001092 mutex_lock(&fw_lock);
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001093 fw_load_abort(fw_sysfs);
Ming Lei0cb64242015-01-13 00:01:35 +08001094 mutex_unlock(&fw_lock);
1095 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001096
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -08001097 if (fw_state_is_aborted(fw_priv)) {
Luis R. Rodriguez76098b32017-07-20 13:13:39 -07001098 if (retval == -ERESTARTSYS)
1099 retval = -EINTR;
1100 else
1101 retval = -EAGAIN;
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001102 } else if (fw_priv->is_paged_buf && !fw_priv->data)
zhang jun2b1278c2014-02-13 15:18:47 +08001103 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001104
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001105 device_del(f_dev);
1106err_put_dev:
1107 put_device(f_dev);
1108 return retval;
1109}
1110
1111static int fw_load_from_user_helper(struct firmware *firmware,
1112 const char *name, struct device *device,
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001113 unsigned int opt_flags)
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001114{
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001115 struct fw_sysfs *fw_sysfs;
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001116 long timeout;
1117 int ret;
1118
1119 timeout = firmware_loading_timeout();
1120 if (opt_flags & FW_OPT_NOWAIT) {
1121 timeout = usermodehelper_read_lock_wait(timeout);
1122 if (!timeout) {
1123 dev_dbg(device, "firmware: %s loading timed out\n",
1124 name);
1125 return -EBUSY;
1126 }
1127 } else {
1128 ret = usermodehelper_read_trylock();
1129 if (WARN_ON(ret)) {
1130 dev_err(device, "firmware: %s will not be loaded\n",
1131 name);
1132 return ret;
1133 }
1134 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001135
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001136 fw_sysfs = fw_create_instance(firmware, name, device, opt_flags);
1137 if (IS_ERR(fw_sysfs)) {
1138 ret = PTR_ERR(fw_sysfs);
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001139 goto out_unlock;
1140 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001141
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001142 fw_sysfs->fw_priv = firmware->priv;
Luis R. Rodriguezaa6969c2017-11-20 10:23:47 -08001143 ret = _request_firmware_load(fw_sysfs, opt_flags, timeout);
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001144
1145 if (!ret)
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001146 ret = assign_fw(firmware, device, opt_flags);
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001147
1148out_unlock:
1149 usermodehelper_read_unlock();
1150
1151 return ret;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001152}
Ming Leiddf1f062013-06-04 10:01:13 +08001153
Luis R. Rodriguez3f722712017-11-20 10:23:58 -08001154#ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
1155static bool fw_force_sysfs_fallback(unsigned int opt_flags)
1156{
1157 return true;
1158}
1159#else
1160static bool fw_force_sysfs_fallback(unsigned int opt_flags)
1161{
1162 if (!(opt_flags & FW_OPT_USERHELPER))
1163 return false;
1164 return true;
1165}
1166#endif
1167
1168static bool fw_run_sysfs_fallback(unsigned int opt_flags)
1169{
1170 if ((opt_flags & FW_OPT_NOFALLBACK))
1171 return false;
1172
1173 return fw_force_sysfs_fallback(opt_flags);
1174}
1175
Luis R. Rodriguez25d39132017-11-20 10:23:57 -08001176static int fw_sysfs_fallback(struct firmware *fw, const char *name,
1177 struct device *device,
1178 unsigned int opt_flags,
1179 int ret)
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001180{
Luis R. Rodriguez3f722712017-11-20 10:23:58 -08001181 if (!fw_run_sysfs_fallback(opt_flags))
Luis R. Rodriguez25d39132017-11-20 10:23:57 -08001182 return ret;
1183
1184 dev_warn(device, "Falling back to user helper\n");
1185 return fw_load_from_user_helper(fw, name, device, opt_flags);
1186}
1187#else /* CONFIG_FW_LOADER_USER_HELPER */
1188static int fw_sysfs_fallback(struct firmware *fw, const char *name,
1189 struct device *device,
1190 unsigned int opt_flags,
1191 int ret)
1192{
1193 /* Keep carrying over the same error */
1194 return ret;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001195}
Takashi Iwai807be032013-01-31 11:13:57 +01001196
Luis R. Rodriguezc4b76892017-05-02 01:31:03 -07001197static inline void kill_pending_fw_fallback_reqs(bool only_kill_custom) { }
Ming Leiddf1f062013-06-04 10:01:13 +08001198
Luis R. Rodriguez6bb9cf32017-11-20 09:45:33 -08001199static inline int register_sysfs_loader(void)
1200{
1201 return 0;
1202}
1203
1204static inline void unregister_sysfs_loader(void)
1205{
1206}
1207
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001208#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001210/* prepare firmware and firmware_buf structs;
1211 * return 0 if a firmware is already assigned, 1 if need to load one,
1212 * or a negative error code
1213 */
1214static int
1215_request_firmware_prepare(struct firmware **firmware_p, const char *name,
Stephen Boyda098ecd2016-08-02 14:04:28 -07001216 struct device *device, void *dbuf, size_t size)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001217{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 struct firmware *firmware;
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001219 struct fw_priv *fw_priv;
Ming Lei1f2b7952012-08-04 12:01:21 +08001220 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Jiri Slaby4aed0642005-09-13 01:25:01 -07001222 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001224 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1225 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001226 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Stephen Boyda098ecd2016-08-02 14:04:28 -07001229 if (fw_get_builtin_firmware(firmware, name, dbuf, size)) {
Luis R. Rodriguezed046302015-04-29 16:30:43 -07001230 dev_dbg(device, "using built-in %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001231 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001232 }
1233
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001234 ret = alloc_lookup_fw_priv(name, &fw_cache, &fw_priv, dbuf, size);
Ming Lei1f2b7952012-08-04 12:01:21 +08001235
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001236 /*
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001237 * bind with 'priv' now to avoid warning in failure path
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001238 * of requesting firmware.
1239 */
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001240 firmware->priv = fw_priv;
Ming Lei1f2b7952012-08-04 12:01:21 +08001241
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001242 if (ret > 0) {
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -08001243 ret = fw_state_wait(fw_priv);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001244 if (!ret) {
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001245 fw_set_page_data(fw_priv, firmware);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001246 return 0; /* assigned */
1247 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001248 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001249
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001250 if (ret < 0)
1251 return ret;
1252 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001253}
1254
Luis R. Rodriguez90d41e72017-07-20 13:13:10 -07001255/*
1256 * Batched requests need only one wake, we need to do this step last due to the
1257 * fallback mechanism. The buf is protected with kref_get(), and it won't be
1258 * released until the last user calls release_firmware().
1259 *
1260 * Failed batched requests are possible as well, in such cases we just share
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001261 * the struct fw_priv and won't release it until all requests are woken
Luis R. Rodriguez90d41e72017-07-20 13:13:10 -07001262 * and have gone through this same path.
1263 */
1264static void fw_abort_batch_reqs(struct firmware *fw)
1265{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001266 struct fw_priv *fw_priv;
Luis R. Rodriguez90d41e72017-07-20 13:13:10 -07001267
1268 /* Loaded directly? */
1269 if (!fw || !fw->priv)
1270 return;
1271
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001272 fw_priv = fw->priv;
Luis R. Rodriguezf1b9cf32017-11-20 10:23:53 -08001273 if (!fw_state_is_aborted(fw_priv))
1274 fw_state_aborted(fw_priv);
Luis R. Rodriguez90d41e72017-07-20 13:13:10 -07001275}
1276
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001277/* called from request_firmware() and request_firmware_work_func() */
1278static int
1279_request_firmware(const struct firmware **firmware_p, const char *name,
Stephen Boyda098ecd2016-08-02 14:04:28 -07001280 struct device *device, void *buf, size_t size,
1281 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001282{
Brian Norris715780a2015-12-09 14:50:28 -08001283 struct firmware *fw = NULL;
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001284 int ret;
1285
1286 if (!firmware_p)
1287 return -EINVAL;
1288
Brian Norris715780a2015-12-09 14:50:28 -08001289 if (!name || name[0] == '\0') {
1290 ret = -EINVAL;
1291 goto out;
1292 }
Kees Cook471b0952014-09-18 11:25:37 -07001293
Stephen Boyda098ecd2016-08-02 14:04:28 -07001294 ret = _request_firmware_prepare(&fw, name, device, buf, size);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001295 if (ret <= 0) /* error or already assigned */
1296 goto out;
1297
Neil Horman3e358ac2013-09-06 15:36:08 -04001298 ret = fw_get_filesystem_firmware(device, fw->priv);
1299 if (ret) {
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001300 if (!(opt_flags & FW_OPT_NO_WARN))
Takashi Iwaibba3a872013-12-02 15:38:16 +01001301 dev_warn(device,
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001302 "Direct firmware load for %s failed with error %d\n",
1303 name, ret);
Luis R. Rodriguez25d39132017-11-20 10:23:57 -08001304 ret = fw_sysfs_fallback(fw, name, device, opt_flags, ret);
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001305 } else
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001306 ret = assign_fw(fw, device, opt_flags);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001307
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001308 out:
1309 if (ret < 0) {
Luis R. Rodriguez90d41e72017-07-20 13:13:10 -07001310 fw_abort_batch_reqs(fw);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001311 release_firmware(fw);
1312 fw = NULL;
1313 }
1314
1315 *firmware_p = fw;
1316 return ret;
1317}
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319/**
Kay Sievers312c0042005-11-16 09:00:00 +01001320 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001321 * @firmware_p: pointer to firmware image
1322 * @name: name of firmware file
1323 * @device: device for which firmware is being loaded
1324 *
1325 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001326 * of @name for device @device.
1327 *
1328 * Should be called from user context where sleeping is allowed.
1329 *
Kay Sievers312c0042005-11-16 09:00:00 +01001330 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001331 * should be distinctive enough not to be confused with any other
1332 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +08001333 *
1334 * Caller must hold the reference count of @device.
Ming Lei6a927852012-11-03 17:48:16 +08001335 *
1336 * The function can be called safely inside device's suspend and
1337 * resume callback.
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001338 **/
1339int
1340request_firmware(const struct firmware **firmware_p, const char *name,
Andrei Opreaea310032015-03-08 12:41:15 +02001341 struct device *device)
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001342{
Ming Leid6c8aa32013-06-06 20:01:48 +08001343 int ret;
1344
1345 /* Need to pin this module until return */
1346 __module_get(THIS_MODULE);
Stephen Boyda098ecd2016-08-02 14:04:28 -07001347 ret = _request_firmware(firmware_p, name, device, NULL, 0,
Luis R. Rodriguez3f722712017-11-20 10:23:58 -08001348 FW_OPT_UEVENT);
Ming Leid6c8aa32013-06-06 20:01:48 +08001349 module_put(THIS_MODULE);
1350 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001351}
Daniel Mackf4945132013-05-23 22:17:18 +02001352EXPORT_SYMBOL(request_firmware);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001353
Takashi Iwaibba3a872013-12-02 15:38:16 +01001354/**
Borislav Petkov3c1556b2014-12-03 22:46:37 +01001355 * request_firmware_direct: - load firmware directly without usermode helper
Takashi Iwaibba3a872013-12-02 15:38:16 +01001356 * @firmware_p: pointer to firmware image
1357 * @name: name of firmware file
1358 * @device: device for which firmware is being loaded
1359 *
1360 * This function works pretty much like request_firmware(), but this doesn't
1361 * fall back to usermode helper even if the firmware couldn't be loaded
1362 * directly from fs. Hence it's useful for loading optional firmwares, which
1363 * aren't always present, without extra long timeouts of udev.
1364 **/
1365int request_firmware_direct(const struct firmware **firmware_p,
1366 const char *name, struct device *device)
1367{
1368 int ret;
Andrei Opreaea310032015-03-08 12:41:15 +02001369
Takashi Iwaibba3a872013-12-02 15:38:16 +01001370 __module_get(THIS_MODULE);
Stephen Boyda098ecd2016-08-02 14:04:28 -07001371 ret = _request_firmware(firmware_p, name, device, NULL, 0,
Luis R. Rodriguez3f722712017-11-20 10:23:58 -08001372 FW_OPT_UEVENT | FW_OPT_NO_WARN |
1373 FW_OPT_NOFALLBACK);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001374 module_put(THIS_MODULE);
1375 return ret;
1376}
1377EXPORT_SYMBOL_GPL(request_firmware_direct);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001378
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001379/**
Stephen Boyda098ecd2016-08-02 14:04:28 -07001380 * request_firmware_into_buf - load firmware into a previously allocated buffer
1381 * @firmware_p: pointer to firmware image
1382 * @name: name of firmware file
1383 * @device: device for which firmware is being loaded and DMA region allocated
1384 * @buf: address of buffer to load firmware into
1385 * @size: size of buffer
1386 *
1387 * This function works pretty much like request_firmware(), but it doesn't
1388 * allocate a buffer to hold the firmware data. Instead, the firmware
1389 * is loaded directly into the buffer pointed to by @buf and the @firmware_p
1390 * data member is pointed at @buf.
1391 *
1392 * This function doesn't cache firmware either.
1393 */
1394int
1395request_firmware_into_buf(const struct firmware **firmware_p, const char *name,
1396 struct device *device, void *buf, size_t size)
1397{
1398 int ret;
1399
1400 __module_get(THIS_MODULE);
1401 ret = _request_firmware(firmware_p, name, device, buf, size,
Luis R. Rodriguez3f722712017-11-20 10:23:58 -08001402 FW_OPT_UEVENT | FW_OPT_NOCACHE);
Stephen Boyda098ecd2016-08-02 14:04:28 -07001403 module_put(THIS_MODULE);
1404 return ret;
1405}
1406EXPORT_SYMBOL(request_firmware_into_buf);
1407
1408/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001410 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001412void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001415 if (!fw_is_builtin_firmware(fw))
1416 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 kfree(fw);
1418 }
1419}
Daniel Mackf4945132013-05-23 22:17:18 +02001420EXPORT_SYMBOL(release_firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422/* Async support */
1423struct firmware_work {
1424 struct work_struct work;
1425 struct module *module;
1426 const char *name;
1427 struct device *device;
1428 void *context;
1429 void (*cont)(const struct firmware *fw, void *context);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001430 unsigned int opt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431};
1432
Stephen Boyda36cf842012-03-28 23:31:00 +02001433static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Stephen Boyda36cf842012-03-28 23:31:00 +02001435 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 const struct firmware *fw;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001437
Stephen Boyda36cf842012-03-28 23:31:00 +02001438 fw_work = container_of(work, struct firmware_work, work);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001439
Stephen Boyda098ecd2016-08-02 14:04:28 -07001440 _request_firmware(&fw, fw_work->name, fw_work->device, NULL, 0,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001441 fw_work->opt_flags);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001442 fw_work->cont(fw, fw_work->context);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001443 put_device(fw_work->device); /* taken in request_firmware_nowait() */
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 module_put(fw_work->module);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001446 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001451 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001452 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001453 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001454 * is non-zero else the firmware copy must be done manually.
1455 * @name: name of firmware file
1456 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001457 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001458 * @context: will be passed over to @cont, and
1459 * @fw may be %NULL if firmware request fails.
1460 * @cont: function will be called asynchronously when the firmware
1461 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001463 * Caller must hold the reference count of @device.
1464 *
Ming Lei6f21a622012-08-04 12:01:24 +08001465 * Asynchronous variant of request_firmware() for user contexts:
1466 * - sleep for as small periods as possible since it may
Silvio Fricke88bcef52016-11-25 15:59:47 +01001467 * increase kernel boot time of built-in device drivers
1468 * requesting firmware in their ->probe() methods, if
1469 * @gfp is GFP_KERNEL.
Ming Lei6f21a622012-08-04 12:01:24 +08001470 *
1471 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 **/
1473int
1474request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001475 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001476 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 void (*cont)(const struct firmware *fw, void *context))
1478{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001479 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Andrei Opreaea310032015-03-08 12:41:15 +02001481 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (!fw_work)
1483 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001484
1485 fw_work->module = module;
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001486 fw_work->name = kstrdup_const(name, gfp);
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001487 if (!fw_work->name) {
1488 kfree(fw_work);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001489 return -ENOMEM;
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001490 }
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001491 fw_work->device = device;
1492 fw_work->context = context;
1493 fw_work->cont = cont;
Luis R. Rodriguez3f722712017-11-20 10:23:58 -08001494 fw_work->opt_flags = FW_OPT_NOWAIT |
Takashi Iwai5a1379e2014-06-04 17:48:15 +02001495 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (!try_module_get(module)) {
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001498 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 kfree(fw_work);
1500 return -EFAULT;
1501 }
1502
Ming Lei0cfc1e12012-08-04 12:01:23 +08001503 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001504 INIT_WORK(&fw_work->work, request_firmware_work_func);
1505 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return 0;
1507}
Daniel Mackf4945132013-05-23 22:17:18 +02001508EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Ming Lei90f890812013-06-20 12:30:16 +08001510#ifdef CONFIG_PM_SLEEP
1511static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1512
Ming Lei2887b392012-08-04 12:01:22 +08001513/**
1514 * cache_firmware - cache one firmware image in kernel memory space
1515 * @fw_name: the firmware image name
1516 *
1517 * Cache firmware in kernel memory so that drivers can use it when
1518 * system isn't ready for them to request firmware image from userspace.
1519 * Once it returns successfully, driver can use request_firmware or its
1520 * nowait version to get the cached firmware without any interacting
1521 * with userspace
1522 *
1523 * Return 0 if the firmware image has been cached successfully
1524 * Return !0 otherwise
1525 *
1526 */
Ming Lei93232e42013-06-06 20:01:47 +08001527static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001528{
1529 int ret;
1530 const struct firmware *fw;
1531
1532 pr_debug("%s: %s\n", __func__, fw_name);
1533
1534 ret = request_firmware(&fw, fw_name, NULL);
1535 if (!ret)
1536 kfree(fw);
1537
1538 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1539
1540 return ret;
1541}
1542
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001543static struct fw_priv *lookup_fw_priv(const char *fw_name)
Ming Lei6a2c1232013-06-26 09:28:17 +08001544{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001545 struct fw_priv *tmp;
Ming Lei6a2c1232013-06-26 09:28:17 +08001546 struct firmware_cache *fwc = &fw_cache;
1547
1548 spin_lock(&fwc->lock);
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001549 tmp = __lookup_fw_priv(fw_name);
Ming Lei6a2c1232013-06-26 09:28:17 +08001550 spin_unlock(&fwc->lock);
1551
1552 return tmp;
1553}
1554
Ming Lei2887b392012-08-04 12:01:22 +08001555/**
1556 * uncache_firmware - remove one cached firmware image
1557 * @fw_name: the firmware image name
1558 *
1559 * Uncache one firmware image which has been cached successfully
1560 * before.
1561 *
1562 * Return 0 if the firmware cache has been removed successfully
1563 * Return !0 otherwise
1564 *
1565 */
Ming Lei93232e42013-06-06 20:01:47 +08001566static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001567{
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001568 struct fw_priv *fw_priv;
Ming Lei2887b392012-08-04 12:01:22 +08001569 struct firmware fw;
1570
1571 pr_debug("%s: %s\n", __func__, fw_name);
1572
Stephen Boyda098ecd2016-08-02 14:04:28 -07001573 if (fw_get_builtin_firmware(&fw, fw_name, NULL, 0))
Ming Lei2887b392012-08-04 12:01:22 +08001574 return 0;
1575
Luis R. Rodriguezcd5322b2017-11-20 10:23:48 -08001576 fw_priv = lookup_fw_priv(fw_name);
1577 if (fw_priv) {
1578 free_fw_priv(fw_priv);
Ming Lei2887b392012-08-04 12:01:22 +08001579 return 0;
1580 }
1581
1582 return -EINVAL;
1583}
1584
Ming Lei37276a52012-08-04 12:01:27 +08001585static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1586{
1587 struct fw_cache_entry *fce;
1588
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001589 fce = kzalloc(sizeof(*fce), GFP_ATOMIC);
Ming Lei37276a52012-08-04 12:01:27 +08001590 if (!fce)
1591 goto exit;
1592
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001593 fce->name = kstrdup_const(name, GFP_ATOMIC);
1594 if (!fce->name) {
1595 kfree(fce);
1596 fce = NULL;
1597 goto exit;
1598 }
Ming Lei37276a52012-08-04 12:01:27 +08001599exit:
1600 return fce;
1601}
1602
Ming Lei373304f2012-10-09 12:01:01 +08001603static int __fw_entry_found(const char *name)
1604{
1605 struct firmware_cache *fwc = &fw_cache;
1606 struct fw_cache_entry *fce;
1607
1608 list_for_each_entry(fce, &fwc->fw_names, list) {
1609 if (!strcmp(fce->name, name))
1610 return 1;
1611 }
1612 return 0;
1613}
1614
Ming Leiac39b3e2012-08-20 19:04:16 +08001615static int fw_cache_piggyback_on_request(const char *name)
1616{
1617 struct firmware_cache *fwc = &fw_cache;
1618 struct fw_cache_entry *fce;
1619 int ret = 0;
1620
1621 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001622 if (__fw_entry_found(name))
1623 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001624
1625 fce = alloc_fw_cache_entry(name);
1626 if (fce) {
1627 ret = 1;
1628 list_add(&fce->list, &fwc->fw_names);
1629 pr_debug("%s: fw: %s\n", __func__, name);
1630 }
1631found:
1632 spin_unlock(&fwc->name_lock);
1633 return ret;
1634}
1635
Ming Lei37276a52012-08-04 12:01:27 +08001636static void free_fw_cache_entry(struct fw_cache_entry *fce)
1637{
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001638 kfree_const(fce->name);
Ming Lei37276a52012-08-04 12:01:27 +08001639 kfree(fce);
1640}
1641
1642static void __async_dev_cache_fw_image(void *fw_entry,
1643 async_cookie_t cookie)
1644{
1645 struct fw_cache_entry *fce = fw_entry;
1646 struct firmware_cache *fwc = &fw_cache;
1647 int ret;
1648
1649 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001650 if (ret) {
1651 spin_lock(&fwc->name_lock);
1652 list_del(&fce->list);
1653 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001654
Ming Leiac39b3e2012-08-20 19:04:16 +08001655 free_fw_cache_entry(fce);
1656 }
Ming Lei37276a52012-08-04 12:01:27 +08001657}
1658
1659/* called with dev->devres_lock held */
1660static void dev_create_fw_entry(struct device *dev, void *res,
1661 void *data)
1662{
1663 struct fw_name_devm *fwn = res;
1664 const char *fw_name = fwn->name;
1665 struct list_head *head = data;
1666 struct fw_cache_entry *fce;
1667
1668 fce = alloc_fw_cache_entry(fw_name);
1669 if (fce)
1670 list_add(&fce->list, head);
1671}
1672
1673static int devm_name_match(struct device *dev, void *res,
1674 void *match_data)
1675{
1676 struct fw_name_devm *fwn = res;
1677 return (fwn->magic == (unsigned long)match_data);
1678}
1679
Ming Leiab6dd8e2012-08-17 22:07:00 +08001680static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001681{
1682 LIST_HEAD(todo);
1683 struct fw_cache_entry *fce;
1684 struct fw_cache_entry *fce_next;
1685 struct firmware_cache *fwc = &fw_cache;
1686
1687 devres_for_each_res(dev, fw_name_devm_release,
1688 devm_name_match, &fw_cache,
1689 dev_create_fw_entry, &todo);
1690
1691 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1692 list_del(&fce->list);
1693
1694 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001695 /* only one cache entry for one firmware */
1696 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001697 list_add(&fce->list, &fwc->fw_names);
1698 } else {
1699 free_fw_cache_entry(fce);
1700 fce = NULL;
1701 }
Ming Lei37276a52012-08-04 12:01:27 +08001702 spin_unlock(&fwc->name_lock);
1703
Ming Lei373304f2012-10-09 12:01:01 +08001704 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001705 async_schedule_domain(__async_dev_cache_fw_image,
1706 (void *)fce,
1707 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001708 }
1709}
1710
1711static void __device_uncache_fw_images(void)
1712{
1713 struct firmware_cache *fwc = &fw_cache;
1714 struct fw_cache_entry *fce;
1715
1716 spin_lock(&fwc->name_lock);
1717 while (!list_empty(&fwc->fw_names)) {
1718 fce = list_entry(fwc->fw_names.next,
1719 struct fw_cache_entry, list);
1720 list_del(&fce->list);
1721 spin_unlock(&fwc->name_lock);
1722
1723 uncache_firmware(fce->name);
1724 free_fw_cache_entry(fce);
1725
1726 spin_lock(&fwc->name_lock);
1727 }
1728 spin_unlock(&fwc->name_lock);
1729}
1730
1731/**
1732 * device_cache_fw_images - cache devices' firmware
1733 *
1734 * If one device called request_firmware or its nowait version
1735 * successfully before, the firmware names are recored into the
1736 * device's devres link list, so device_cache_fw_images can call
1737 * cache_firmware() to cache these firmwares for the device,
1738 * then the device driver can load its firmwares easily at
1739 * time when system is not ready to complete loading firmware.
1740 */
1741static void device_cache_fw_images(void)
1742{
1743 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001744 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001745 DEFINE_WAIT(wait);
1746
1747 pr_debug("%s\n", __func__);
1748
Ming Lei373304f2012-10-09 12:01:01 +08001749 /* cancel uncache work */
1750 cancel_delayed_work_sync(&fwc->work);
1751
Ming Leiffe53f62012-08-04 12:01:28 +08001752 /*
1753 * use small loading timeout for caching devices' firmware
1754 * because all these firmware images have been loaded
1755 * successfully at lease once, also system is ready for
1756 * completing firmware loading now. The maximum size of
1757 * firmware in current distributions is about 2M bytes,
1758 * so 10 secs should be enough.
1759 */
1760 old_timeout = loading_timeout;
1761 loading_timeout = 10;
1762
Ming Leiac39b3e2012-08-20 19:04:16 +08001763 mutex_lock(&fw_lock);
1764 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001765 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001766 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001767
1768 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001769 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001770
1771 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001772}
1773
1774/**
1775 * device_uncache_fw_images - uncache devices' firmware
1776 *
1777 * uncache all firmwares which have been cached successfully
1778 * by device_uncache_fw_images earlier
1779 */
1780static void device_uncache_fw_images(void)
1781{
1782 pr_debug("%s\n", __func__);
1783 __device_uncache_fw_images();
1784}
1785
1786static void device_uncache_fw_images_work(struct work_struct *work)
1787{
1788 device_uncache_fw_images();
1789}
1790
1791/**
1792 * device_uncache_fw_images_delay - uncache devices firmwares
1793 * @delay: number of milliseconds to delay uncache device firmwares
1794 *
1795 * uncache all devices's firmwares which has been cached successfully
1796 * by device_cache_fw_images after @delay milliseconds.
1797 */
1798static void device_uncache_fw_images_delay(unsigned long delay)
1799{
Shaibal Duttabce66182014-01-31 15:44:58 -08001800 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1801 msecs_to_jiffies(delay));
Ming Lei37276a52012-08-04 12:01:27 +08001802}
1803
Ming Lei07646d92012-08-04 12:01:29 +08001804static int fw_pm_notify(struct notifier_block *notify_block,
1805 unsigned long mode, void *unused)
1806{
1807 switch (mode) {
1808 case PM_HIBERNATION_PREPARE:
1809 case PM_SUSPEND_PREPARE:
Sebastian Capellaf8d5b9e2014-02-18 17:52:08 -08001810 case PM_RESTORE_PREPARE:
Luis R. Rodriguezc4b76892017-05-02 01:31:03 -07001811 /*
1812 * kill pending fallback requests with a custom fallback
1813 * to avoid stalling suspend.
1814 */
1815 kill_pending_fw_fallback_reqs(true);
Ming Lei07646d92012-08-04 12:01:29 +08001816 device_cache_fw_images();
1817 break;
1818
1819 case PM_POST_SUSPEND:
1820 case PM_POST_HIBERNATION:
1821 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001822 /*
1823 * In case that system sleep failed and syscore_suspend is
1824 * not called.
1825 */
1826 mutex_lock(&fw_lock);
1827 fw_cache.state = FW_LOADER_NO_CACHE;
1828 mutex_unlock(&fw_lock);
1829
Ming Lei07646d92012-08-04 12:01:29 +08001830 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1831 break;
1832 }
1833
1834 return 0;
1835}
Ming Lei07646d92012-08-04 12:01:29 +08001836
Ming Leiac39b3e2012-08-20 19:04:16 +08001837/* stop caching firmware once syscore_suspend is reached */
1838static int fw_suspend(void)
1839{
1840 fw_cache.state = FW_LOADER_NO_CACHE;
1841 return 0;
1842}
1843
1844static struct syscore_ops fw_syscore_ops = {
1845 .suspend = fw_suspend,
1846};
Luis R. Rodrigueza67e5032017-11-20 09:45:31 -08001847
Luis R. Rodriguez59b6d852017-11-20 09:45:32 -08001848static int __init register_fw_pm_ops(void)
1849{
1850 int ret;
1851
1852 spin_lock_init(&fw_cache.name_lock);
1853 INIT_LIST_HEAD(&fw_cache.fw_names);
1854
1855 INIT_DELAYED_WORK(&fw_cache.work,
1856 device_uncache_fw_images_work);
1857
1858 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1859 ret = register_pm_notifier(&fw_cache.pm_notify);
1860 if (ret)
1861 return ret;
1862
1863 register_syscore_ops(&fw_syscore_ops);
1864
1865 return ret;
1866}
1867
Luis R. Rodrigueza67e5032017-11-20 09:45:31 -08001868static inline void unregister_fw_pm_ops(void)
1869{
1870 unregister_syscore_ops(&fw_syscore_ops);
1871 unregister_pm_notifier(&fw_cache.pm_notify);
1872}
Ming Leicfe016b2012-09-08 17:32:30 +08001873#else
1874static int fw_cache_piggyback_on_request(const char *name)
1875{
1876 return 0;
1877}
Luis R. Rodriguez59b6d852017-11-20 09:45:32 -08001878static inline int register_fw_pm_ops(void)
1879{
1880 return 0;
1881}
Luis R. Rodrigueza67e5032017-11-20 09:45:31 -08001882static inline void unregister_fw_pm_ops(void)
1883{
1884}
Ming Leicfe016b2012-09-08 17:32:30 +08001885#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001886
Ming Lei37276a52012-08-04 12:01:27 +08001887static void __init fw_cache_init(void)
1888{
1889 spin_lock_init(&fw_cache.lock);
1890 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001891 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001892}
1893
Luis R. Rodrigueza669f042017-05-02 01:31:04 -07001894static int fw_shutdown_notify(struct notifier_block *unused1,
1895 unsigned long unused2, void *unused3)
1896{
1897 /*
1898 * Kill all pending fallback requests to avoid both stalling shutdown,
1899 * and avoid a deadlock with the usermode_lock.
1900 */
1901 kill_pending_fw_fallback_reqs(false);
1902
1903 return NOTIFY_DONE;
1904}
1905
1906static struct notifier_block fw_shutdown_nb = {
1907 .notifier_call = fw_shutdown_notify,
1908};
1909
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001910static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Luis R. Rodriguez59b6d852017-11-20 09:45:32 -08001912 int ret;
1913
1914 /* No need to unfold these on exit */
Ming Lei1f2b7952012-08-04 12:01:21 +08001915 fw_cache_init();
Luis R. Rodriguez59b6d852017-11-20 09:45:32 -08001916
1917 ret = register_fw_pm_ops();
1918 if (ret)
1919 return ret;
1920
Luis R. Rodriguez561a10b2017-11-20 09:45:34 -08001921 ret = register_reboot_notifier(&fw_shutdown_nb);
1922 if (ret)
1923 goto out;
1924
Luis R. Rodriguez6bb9cf32017-11-20 09:45:33 -08001925 return register_sysfs_loader();
Luis R. Rodriguez561a10b2017-11-20 09:45:34 -08001926
1927out:
1928 unregister_fw_pm_ops();
1929 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001931
1932static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Luis R. Rodrigueza67e5032017-11-20 09:45:31 -08001934 unregister_fw_pm_ops();
Takashi Iwaife304142013-05-22 18:28:38 +02001935 unregister_reboot_notifier(&fw_shutdown_nb);
Luis R. Rodriguez6bb9cf32017-11-20 09:45:33 -08001936 unregister_sysfs_loader();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937}
1938
Shaohua Lia30a6a22006-09-27 01:50:52 -07001939fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940module_exit(firmware_class_exit);