blob: b9f907eedbf770ee32359468d2b8d07e57bde667 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * firmware_class.c - Multi purpose firmware loading support
3 *
Markus Rechberger87d37a42007-06-04 18:45:44 +02004 * Copyright (c) 2003 Manuel Estrada Sainz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Please see Documentation/firmware_class/ for more information.
7 *
8 */
9
Randy.Dunlapc59ede72006-01-11 12:17:46 -080010#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/device.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/timer.h>
15#include <linux/vmalloc.h>
16#include <linux/interrupt.h>
17#include <linux/bitops.h>
Laura Garciacad1e552006-05-23 23:22:38 +020018#include <linux/mutex.h>
Stephen Boyda36cf842012-03-28 23:31:00 +020019#include <linux/workqueue.h>
David Woodhouse6e03a202009-04-09 22:04:07 -070020#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/firmware.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Stephen Boyda36cf842012-03-28 23:31:00 +020023#include <linux/sched.h>
Linus Torvaldsabb139e2012-10-03 15:58:32 -070024#include <linux/file.h>
Ming Lei1f2b7952012-08-04 12:01:21 +080025#include <linux/list.h>
Mimi Zohare40ba6d2015-11-19 12:39:22 -050026#include <linux/fs.h>
Ming Lei37276a52012-08-04 12:01:27 +080027#include <linux/async.h>
28#include <linux/pm.h>
Ming Lei07646d92012-08-04 12:01:29 +080029#include <linux/suspend.h>
Ming Leiac39b3e2012-08-20 19:04:16 +080030#include <linux/syscore_ops.h>
Takashi Iwaife304142013-05-22 18:28:38 +020031#include <linux/reboot.h>
Kees Cook6593d922014-02-25 13:06:00 -080032#include <linux/security.h>
Daniel Wagner5b029622016-11-17 11:00:50 +010033#include <linux/swait.h>
Ming Lei37276a52012-08-04 12:01:27 +080034
Linus Torvaldsabb139e2012-10-03 15:58:32 -070035#include <generated/utsrelease.h>
36
Ming Lei37276a52012-08-04 12:01:27 +080037#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Markus Rechberger87d37a42007-06-04 18:45:44 +020039MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070040MODULE_DESCRIPTION("Multi purpose firmware loading support");
41MODULE_LICENSE("GPL");
42
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080043/* Builtin firmware support */
44
45#ifdef CONFIG_FW_LOADER
46
47extern struct builtin_fw __start_builtin_fw[];
48extern struct builtin_fw __end_builtin_fw[];
49
Stephen Boyda098ecd2016-08-02 14:04:28 -070050static bool fw_get_builtin_firmware(struct firmware *fw, const char *name,
51 void *buf, size_t size)
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080052{
53 struct builtin_fw *b_fw;
54
55 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
56 if (strcmp(name, b_fw->name) == 0) {
57 fw->size = b_fw->size;
58 fw->data = b_fw->data;
Stephen Boyda098ecd2016-08-02 14:04:28 -070059
60 if (buf && fw->size <= size)
61 memcpy(buf, fw->data, fw->size);
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080062 return true;
63 }
64 }
65
66 return false;
67}
68
69static bool fw_is_builtin_firmware(const struct firmware *fw)
70{
71 struct builtin_fw *b_fw;
72
73 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
74 if (fw->data == b_fw->data)
75 return true;
76
77 return false;
78}
79
80#else /* Module case - no builtin firmware support */
81
Stephen Boyda098ecd2016-08-02 14:04:28 -070082static inline bool fw_get_builtin_firmware(struct firmware *fw,
83 const char *name, void *buf,
84 size_t size)
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080085{
86 return false;
87}
88
89static inline bool fw_is_builtin_firmware(const struct firmware *fw)
90{
91 return false;
92}
93#endif
94
Daniel Wagnerf52cc3792016-11-17 11:00:48 +010095enum fw_status {
96 FW_STATUS_UNKNOWN,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 FW_STATUS_LOADING,
98 FW_STATUS_DONE,
Daniel Wagnerf52cc3792016-11-17 11:00:48 +010099 FW_STATUS_ABORTED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
Dave Jones2f651682007-01-25 15:56:15 -0500102static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200104static inline long firmware_loading_timeout(void)
105{
Ming Lei68ff2a02015-01-13 00:02:01 +0800106 return loading_timeout > 0 ? loading_timeout * HZ : MAX_JIFFY_OFFSET;
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200107}
108
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100109/*
110 * Concurrent request_firmware() for the same firmware need to be
111 * serialized. struct fw_state is simple state machine which hold the
112 * state of the firmware loading.
113 */
114struct fw_state {
Daniel Wagner5b029622016-11-17 11:00:50 +0100115 struct swait_queue_head wq;
Daniel Wagner0430caf2016-11-17 11:00:49 +0100116 enum fw_status status;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100117};
118
119static void fw_state_init(struct fw_state *fw_st)
120{
Daniel Wagner5b029622016-11-17 11:00:50 +0100121 init_swait_queue_head(&fw_st->wq);
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100122 fw_st->status = FW_STATUS_UNKNOWN;
123}
124
Daniel Wagner5b029622016-11-17 11:00:50 +0100125static inline bool __fw_state_is_done(enum fw_status status)
126{
127 return status == FW_STATUS_DONE || status == FW_STATUS_ABORTED;
128}
129
Bjorn Andersson5d47ec02016-12-06 17:01:45 -0800130static int __fw_state_wait_common(struct fw_state *fw_st, long timeout)
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100131{
132 long ret;
133
Daniel Wagner5b029622016-11-17 11:00:50 +0100134 ret = swait_event_interruptible_timeout(fw_st->wq,
135 __fw_state_is_done(READ_ONCE(fw_st->status)),
136 timeout);
137 if (ret != 0 && fw_st->status == FW_STATUS_ABORTED)
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100138 return -ENOENT;
Bjorn Andersson5d47ec02016-12-06 17:01:45 -0800139 if (!ret)
140 return -ETIMEDOUT;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100141
Bjorn Andersson5d47ec02016-12-06 17:01:45 -0800142 return ret < 0 ? ret : 0;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100143}
144
145static void __fw_state_set(struct fw_state *fw_st,
146 enum fw_status status)
147{
Daniel Wagner0430caf2016-11-17 11:00:49 +0100148 WRITE_ONCE(fw_st->status, status);
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100149
Daniel Wagner0430caf2016-11-17 11:00:49 +0100150 if (status == FW_STATUS_DONE || status == FW_STATUS_ABORTED)
Daniel Wagner5b029622016-11-17 11:00:50 +0100151 swake_up(&fw_st->wq);
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100152}
153
154#define fw_state_start(fw_st) \
155 __fw_state_set(fw_st, FW_STATUS_LOADING)
156#define fw_state_done(fw_st) \
157 __fw_state_set(fw_st, FW_STATUS_DONE)
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100158#define fw_state_wait(fw_st) \
159 __fw_state_wait_common(fw_st, MAX_SCHEDULE_TIMEOUT)
160
161#ifndef CONFIG_FW_LOADER_USER_HELPER
162
163#define fw_state_is_aborted(fw_st) false
164
165#else /* CONFIG_FW_LOADER_USER_HELPER */
166
Daniel Wagnerfab82cb2016-11-17 11:00:51 +0100167static int __fw_state_check(struct fw_state *fw_st, enum fw_status status)
168{
169 return fw_st->status == status;
170}
171
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100172#define fw_state_aborted(fw_st) \
173 __fw_state_set(fw_st, FW_STATUS_ABORTED)
Daniel Wagnerfab82cb2016-11-17 11:00:51 +0100174#define fw_state_is_done(fw_st) \
175 __fw_state_check(fw_st, FW_STATUS_DONE)
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100176#define fw_state_is_loading(fw_st) \
177 __fw_state_check(fw_st, FW_STATUS_LOADING)
178#define fw_state_is_aborted(fw_st) \
179 __fw_state_check(fw_st, FW_STATUS_ABORTED)
180#define fw_state_wait_timeout(fw_st, timeout) \
181 __fw_state_wait_common(fw_st, timeout)
182
183#endif /* CONFIG_FW_LOADER_USER_HELPER */
184
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100185/* firmware behavior options */
186#define FW_OPT_UEVENT (1U << 0)
187#define FW_OPT_NOWAIT (1U << 1)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100188#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200189#define FW_OPT_USERHELPER (1U << 2)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100190#else
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200191#define FW_OPT_USERHELPER 0
192#endif
193#ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
194#define FW_OPT_FALLBACK FW_OPT_USERHELPER
195#else
196#define FW_OPT_FALLBACK 0
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100197#endif
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -0700198#define FW_OPT_NO_WARN (1U << 3)
Vikram Mulukutla0e742e92016-08-02 14:04:25 -0700199#define FW_OPT_NOCACHE (1U << 4)
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100200
Ming Lei1f2b7952012-08-04 12:01:21 +0800201struct firmware_cache {
202 /* firmware_buf instance will be added into the below list */
203 spinlock_t lock;
204 struct list_head head;
Ming Leicfe016b2012-09-08 17:32:30 +0800205 int state;
Ming Lei37276a52012-08-04 12:01:27 +0800206
Ming Leicfe016b2012-09-08 17:32:30 +0800207#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +0800208 /*
209 * Names of firmware images which have been cached successfully
210 * will be added into the below list so that device uncache
211 * helper can trace which firmware images have been cached
212 * before.
213 */
214 spinlock_t name_lock;
215 struct list_head fw_names;
216
Ming Lei37276a52012-08-04 12:01:27 +0800217 struct delayed_work work;
Ming Lei07646d92012-08-04 12:01:29 +0800218
219 struct notifier_block pm_notify;
Ming Leicfe016b2012-09-08 17:32:30 +0800220#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800221};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Ming Lei12446912012-08-04 12:01:20 +0800223struct firmware_buf {
Ming Lei1f2b7952012-08-04 12:01:21 +0800224 struct kref ref;
225 struct list_head list;
Ming Lei1f2b7952012-08-04 12:01:21 +0800226 struct firmware_cache *fwc;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100227 struct fw_state fw_st;
Ming Lei65710cb2012-08-04 12:01:16 +0800228 void *data;
229 size_t size;
Stephen Boyda098ecd2016-08-02 14:04:28 -0700230 size_t allocated_size;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100231#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100232 bool is_paged_buf;
Ming Leiaf5bc112013-05-27 18:30:04 +0800233 bool need_uevent;
David Woodhouse6e03a202009-04-09 22:04:07 -0700234 struct page **pages;
235 int nr_pages;
236 int page_array_size;
Takashi Iwaife304142013-05-22 18:28:38 +0200237 struct list_head pending_list;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100238#endif
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700239 const char *fw_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Ming Lei37276a52012-08-04 12:01:27 +0800242struct fw_cache_entry {
243 struct list_head list;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700244 const char *name;
Ming Lei37276a52012-08-04 12:01:27 +0800245};
246
Ming Leif531f05a2012-08-04 12:01:25 +0800247struct fw_name_devm {
248 unsigned long magic;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700249 const char *name;
Ming Leif531f05a2012-08-04 12:01:25 +0800250};
251
Ming Lei1f2b7952012-08-04 12:01:21 +0800252#define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
253
Ming Leiac39b3e2012-08-20 19:04:16 +0800254#define FW_LOADER_NO_CACHE 0
255#define FW_LOADER_START_CACHE 1
256
257static int fw_cache_piggyback_on_request(const char *name);
258
Ming Lei1f2b7952012-08-04 12:01:21 +0800259/* fw_lock could be moved to 'struct firmware_priv' but since it is just
260 * guarding for corner cases a global lock should be OK */
261static DEFINE_MUTEX(fw_lock);
262
Luis R. Rodriguez81f95072017-05-02 01:31:05 -0700263static bool __enable_firmware = false;
264
265static void enable_firmware(void)
266{
267 mutex_lock(&fw_lock);
268 __enable_firmware = true;
269 mutex_unlock(&fw_lock);
270}
271
272static void disable_firmware(void)
273{
274 mutex_lock(&fw_lock);
275 __enable_firmware = false;
276 mutex_unlock(&fw_lock);
277}
278
279/*
280 * When disabled only the built-in firmware and the firmware cache will be
281 * used to look for firmware.
282 */
283static bool firmware_enabled(void)
284{
285 bool enabled = false;
286
287 mutex_lock(&fw_lock);
288 if (__enable_firmware)
289 enabled = true;
290 mutex_unlock(&fw_lock);
291
292 return enabled;
293}
294
Ming Lei1f2b7952012-08-04 12:01:21 +0800295static struct firmware_cache fw_cache;
296
297static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
Stephen Boyda098ecd2016-08-02 14:04:28 -0700298 struct firmware_cache *fwc,
299 void *dbuf, size_t size)
Ming Lei1f2b7952012-08-04 12:01:21 +0800300{
301 struct firmware_buf *buf;
302
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700303 buf = kzalloc(sizeof(*buf), GFP_ATOMIC);
Ming Lei1f2b7952012-08-04 12:01:21 +0800304 if (!buf)
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700305 return NULL;
306
307 buf->fw_id = kstrdup_const(fw_name, GFP_ATOMIC);
308 if (!buf->fw_id) {
309 kfree(buf);
310 return NULL;
311 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800312
313 kref_init(&buf->ref);
Ming Lei1f2b7952012-08-04 12:01:21 +0800314 buf->fwc = fwc;
Stephen Boyda098ecd2016-08-02 14:04:28 -0700315 buf->data = dbuf;
316 buf->allocated_size = size;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100317 fw_state_init(&buf->fw_st);
Takashi Iwaife304142013-05-22 18:28:38 +0200318#ifdef CONFIG_FW_LOADER_USER_HELPER
319 INIT_LIST_HEAD(&buf->pending_list);
320#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800321
322 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
323
324 return buf;
325}
326
Ming Lei2887b392012-08-04 12:01:22 +0800327static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
328{
329 struct firmware_buf *tmp;
330 struct firmware_cache *fwc = &fw_cache;
331
332 list_for_each_entry(tmp, &fwc->head, list)
333 if (!strcmp(tmp->fw_id, fw_name))
334 return tmp;
335 return NULL;
336}
337
Ming Lei1f2b7952012-08-04 12:01:21 +0800338static int fw_lookup_and_allocate_buf(const char *fw_name,
339 struct firmware_cache *fwc,
Stephen Boyda098ecd2016-08-02 14:04:28 -0700340 struct firmware_buf **buf, void *dbuf,
341 size_t size)
Ming Lei1f2b7952012-08-04 12:01:21 +0800342{
343 struct firmware_buf *tmp;
344
345 spin_lock(&fwc->lock);
Ming Lei2887b392012-08-04 12:01:22 +0800346 tmp = __fw_lookup_buf(fw_name);
347 if (tmp) {
348 kref_get(&tmp->ref);
349 spin_unlock(&fwc->lock);
350 *buf = tmp;
351 return 1;
352 }
Stephen Boyda098ecd2016-08-02 14:04:28 -0700353 tmp = __allocate_fw_buf(fw_name, fwc, dbuf, size);
Ming Lei1f2b7952012-08-04 12:01:21 +0800354 if (tmp)
355 list_add(&tmp->list, &fwc->head);
356 spin_unlock(&fwc->lock);
357
358 *buf = tmp;
359
360 return tmp ? 0 : -ENOMEM;
361}
362
363static void __fw_free_buf(struct kref *ref)
Bart Van Assche98233b22014-01-04 14:20:36 +0100364 __releases(&fwc->lock)
Ming Lei1f2b7952012-08-04 12:01:21 +0800365{
366 struct firmware_buf *buf = to_fwbuf(ref);
367 struct firmware_cache *fwc = buf->fwc;
Ming Lei1f2b7952012-08-04 12:01:21 +0800368
369 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
370 __func__, buf->fw_id, buf, buf->data,
371 (unsigned int)buf->size);
372
Ming Lei1f2b7952012-08-04 12:01:21 +0800373 list_del(&buf->list);
374 spin_unlock(&fwc->lock);
375
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100376#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100377 if (buf->is_paged_buf) {
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100378 int i;
Ming Lei746058f2012-10-09 12:01:03 +0800379 vunmap(buf->data);
380 for (i = 0; i < buf->nr_pages; i++)
381 __free_page(buf->pages[i]);
Chen Feng10a3fbf2015-12-16 17:03:15 +0800382 vfree(buf->pages);
Ming Lei746058f2012-10-09 12:01:03 +0800383 } else
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100384#endif
Stephen Boyda098ecd2016-08-02 14:04:28 -0700385 if (!buf->allocated_size)
Ming Lei746058f2012-10-09 12:01:03 +0800386 vfree(buf->data);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700387 kfree_const(buf->fw_id);
Ming Lei1f2b7952012-08-04 12:01:21 +0800388 kfree(buf);
389}
390
391static void fw_free_buf(struct firmware_buf *buf)
392{
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800393 struct firmware_cache *fwc = buf->fwc;
394 spin_lock(&fwc->lock);
395 if (!kref_put(&buf->ref, __fw_free_buf))
396 spin_unlock(&fwc->lock);
Ming Lei1f2b7952012-08-04 12:01:21 +0800397}
398
Ming Lei746058f2012-10-09 12:01:03 +0800399/* direct firmware loading support */
Ming Lei27602842012-11-03 17:47:58 +0800400static char fw_path_para[256];
401static const char * const fw_path[] = {
402 fw_path_para,
Ming Lei746058f2012-10-09 12:01:03 +0800403 "/lib/firmware/updates/" UTS_RELEASE,
404 "/lib/firmware/updates",
405 "/lib/firmware/" UTS_RELEASE,
406 "/lib/firmware"
407};
408
Ming Lei27602842012-11-03 17:47:58 +0800409/*
410 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
411 * from kernel command line because firmware_class is generally built in
412 * kernel instead of module.
413 */
414module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
415MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
416
Stephen Boyda098ecd2016-08-02 14:04:28 -0700417static int
418fw_get_filesystem_firmware(struct device *device, struct firmware_buf *buf)
Ming Lei746058f2012-10-09 12:01:03 +0800419{
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500420 loff_t size;
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700421 int i, len;
Neil Horman3e358ac2013-09-06 15:36:08 -0400422 int rc = -ENOENT;
Luis R. Rodriguezf5727b02015-05-12 14:49:40 -0700423 char *path;
Stephen Boyda098ecd2016-08-02 14:04:28 -0700424 enum kernel_read_file_id id = READING_FIRMWARE;
425 size_t msize = INT_MAX;
426
427 /* Already populated data member means we're loading into a buffer */
428 if (buf->data) {
429 id = READING_FIRMWARE_PREALLOC_BUFFER;
430 msize = buf->allocated_size;
431 }
Luis R. Rodriguezf5727b02015-05-12 14:49:40 -0700432
433 path = __getname();
434 if (!path)
435 return -ENOMEM;
Ming Lei746058f2012-10-09 12:01:03 +0800436
437 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
Ming Lei27602842012-11-03 17:47:58 +0800438 /* skip the unset customized path */
439 if (!fw_path[i][0])
440 continue;
441
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700442 len = snprintf(path, PATH_MAX, "%s/%s",
443 fw_path[i], buf->fw_id);
444 if (len >= PATH_MAX) {
445 rc = -ENAMETOOLONG;
446 break;
447 }
Ming Lei746058f2012-10-09 12:01:03 +0800448
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500449 buf->size = 0;
Stephen Boyda098ecd2016-08-02 14:04:28 -0700450 rc = kernel_read_file_from_path(path, &buf->data, &size, msize,
451 id);
Kees Cook4b2530d2016-02-04 13:15:02 -0800452 if (rc) {
Luis R. Rodriguez8e516aa2016-02-28 21:57:55 +0100453 if (rc == -ENOENT)
454 dev_dbg(device, "loading %s failed with error %d\n",
455 path, rc);
456 else
457 dev_warn(device, "loading %s failed with error %d\n",
458 path, rc);
Kees Cook4b2530d2016-02-04 13:15:02 -0800459 continue;
460 }
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500461 dev_dbg(device, "direct-loading %s\n", buf->fw_id);
462 buf->size = size;
Daniel Wagner5b029622016-11-17 11:00:50 +0100463 fw_state_done(&buf->fw_st);
Kees Cook4b2530d2016-02-04 13:15:02 -0800464 break;
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100465 }
Kees Cook4b2530d2016-02-04 13:15:02 -0800466 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100467
Neil Horman3e358ac2013-09-06 15:36:08 -0400468 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800469}
470
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100471/* firmware holds the ownership of pages */
472static void firmware_free_data(const struct firmware *fw)
473{
474 /* Loaded directly? */
475 if (!fw->priv) {
476 vfree(fw->data);
477 return;
478 }
479 fw_free_buf(fw->priv);
480}
481
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100482/* store the pages buffer info firmware from buf */
483static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
484{
485 fw->priv = buf;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100486#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100487 fw->pages = buf->pages;
488#endif
489 fw->size = buf->size;
490 fw->data = buf->data;
491
492 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
493 __func__, buf->fw_id, buf, buf->data,
494 (unsigned int)buf->size);
495}
496
497#ifdef CONFIG_PM_SLEEP
498static void fw_name_devm_release(struct device *dev, void *res)
499{
500 struct fw_name_devm *fwn = res;
501
502 if (fwn->magic == (unsigned long)&fw_cache)
503 pr_debug("%s: fw_name-%s devm-%p released\n",
504 __func__, fwn->name, res);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700505 kfree_const(fwn->name);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100506}
507
508static int fw_devm_match(struct device *dev, void *res,
509 void *match_data)
510{
511 struct fw_name_devm *fwn = res;
512
513 return (fwn->magic == (unsigned long)&fw_cache) &&
514 !strcmp(fwn->name, match_data);
515}
516
517static struct fw_name_devm *fw_find_devm_name(struct device *dev,
518 const char *name)
519{
520 struct fw_name_devm *fwn;
521
522 fwn = devres_find(dev, fw_name_devm_release,
523 fw_devm_match, (void *)name);
524 return fwn;
525}
526
527/* add firmware name into devres list */
528static int fw_add_devm_name(struct device *dev, const char *name)
529{
530 struct fw_name_devm *fwn;
531
532 fwn = fw_find_devm_name(dev, name);
533 if (fwn)
534 return 1;
535
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700536 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm),
537 GFP_KERNEL);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100538 if (!fwn)
539 return -ENOMEM;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700540 fwn->name = kstrdup_const(name, GFP_KERNEL);
541 if (!fwn->name) {
Vladimir Zapolskiya885de62015-07-29 23:26:28 +0300542 devres_free(fwn);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700543 return -ENOMEM;
544 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100545
546 fwn->magic = (unsigned long)&fw_cache;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100547 devres_add(dev, fwn);
548
549 return 0;
550}
551#else
552static int fw_add_devm_name(struct device *dev, const char *name)
553{
554 return 0;
555}
556#endif
557
Luis R. Rodriguez8509adc2017-05-02 01:31:06 -0700558static int assign_firmware_buf(struct firmware *fw, struct device *device,
559 unsigned int opt_flags)
560{
561 struct firmware_buf *buf = fw->priv;
562
563 mutex_lock(&fw_lock);
564 if (!buf->size || fw_state_is_aborted(&buf->fw_st)) {
565 mutex_unlock(&fw_lock);
566 return -ENOENT;
567 }
568
569 /*
570 * add firmware name into devres list so that we can auto cache
571 * and uncache firmware for device.
572 *
573 * device may has been deleted already, but the problem
574 * should be fixed in devres or driver core.
575 */
576 /* don't cache firmware handled without uevent */
577 if (device && (opt_flags & FW_OPT_UEVENT) &&
578 !(opt_flags & FW_OPT_NOCACHE))
579 fw_add_devm_name(device, buf->fw_id);
580
581 /*
582 * After caching firmware image is started, let it piggyback
583 * on request firmware.
584 */
585 if (!(opt_flags & FW_OPT_NOCACHE) &&
586 buf->fwc->state == FW_LOADER_START_CACHE) {
587 if (fw_cache_piggyback_on_request(buf->fw_id))
588 kref_get(&buf->ref);
589 }
590
591 /* pass the pages buffer to driver at the last minute */
592 fw_set_page_data(buf, fw);
593 mutex_unlock(&fw_lock);
594 return 0;
595}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100596
597/*
598 * user-mode helper code
599 */
600#ifdef CONFIG_FW_LOADER_USER_HELPER
601struct firmware_priv {
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100602 bool nowait;
603 struct device dev;
604 struct firmware_buf *buf;
605 struct firmware *fw;
606};
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100607
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700608static struct firmware_priv *to_firmware_priv(struct device *dev)
609{
610 return container_of(dev, struct firmware_priv, dev);
611}
612
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700613static void __fw_load_abort(struct firmware_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Ming Lei87597932013-06-15 16:36:38 +0800615 /*
616 * There is a small window in which user can write to 'loading'
617 * between loading done and disappearance of 'loading'
618 */
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100619 if (fw_state_is_done(&buf->fw_st))
Ming Lei87597932013-06-15 16:36:38 +0800620 return;
621
Takashi Iwaife304142013-05-22 18:28:38 +0200622 list_del_init(&buf->pending_list);
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100623 fw_state_aborted(&buf->fw_st);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700626static void fw_load_abort(struct firmware_priv *fw_priv)
627{
628 struct firmware_buf *buf = fw_priv->buf;
629
630 __fw_load_abort(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
Takashi Iwaife304142013-05-22 18:28:38 +0200633static LIST_HEAD(pending_fw_head);
634
Luis R. Rodriguezc4b76892017-05-02 01:31:03 -0700635static void kill_pending_fw_fallback_reqs(bool only_kill_custom)
Luis R. Rodriguez63833312017-05-02 01:31:02 -0700636{
637 struct firmware_buf *buf;
638 struct firmware_buf *next;
639
640 mutex_lock(&fw_lock);
641 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
Luis R. Rodriguezc4b76892017-05-02 01:31:03 -0700642 if (!buf->need_uevent || !only_kill_custom)
Luis R. Rodriguez63833312017-05-02 01:31:02 -0700643 __fw_load_abort(buf);
644 }
645 mutex_unlock(&fw_lock);
646}
Luis R. Rodriguez63833312017-05-02 01:31:02 -0700647
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700648static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
649 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 return sprintf(buf, "%d\n", loading_timeout);
652}
653
654/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800655 * firmware_timeout_store - set number of seconds to wait for firmware
656 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800657 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800658 * @buf: buffer to scan for timeout value
659 * @count: number of bytes in @buf
660 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800662 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * firmware will be provided.
664 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800665 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 **/
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700667static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
668 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700671 if (loading_timeout < 0)
672 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return count;
675}
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100676static CLASS_ATTR_RW(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100678static struct attribute *firmware_class_attrs[] = {
679 &class_attr_timeout.attr,
680 NULL,
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800681};
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100682ATTRIBUTE_GROUPS(firmware_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800684static void fw_dev_release(struct device *dev)
685{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700686 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800687
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800688 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800689}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Linus Torvalds6f957722015-07-09 11:20:01 -0700691static int do_firmware_uevent(struct firmware_priv *fw_priv, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Ming Lei12446912012-08-04 12:01:20 +0800693 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200695 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700696 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200697 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
698 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 return 0;
701}
702
Linus Torvalds6f957722015-07-09 11:20:01 -0700703static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
704{
705 struct firmware_priv *fw_priv = to_firmware_priv(dev);
706 int err = 0;
707
708 mutex_lock(&fw_lock);
709 if (fw_priv->buf)
710 err = do_firmware_uevent(fw_priv, env);
711 mutex_unlock(&fw_lock);
712 return err;
713}
714
Adrian Bunk1b81d662006-05-20 15:00:16 -0700715static struct class firmware_class = {
716 .name = "firmware",
Greg Kroah-Hartman3f214cf2016-11-28 16:42:30 +0100717 .class_groups = firmware_class_groups,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700718 .dev_uevent = firmware_uevent,
719 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700720};
721
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700722static ssize_t firmware_loading_show(struct device *dev,
723 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700725 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800726 int loading = 0;
727
728 mutex_lock(&fw_lock);
729 if (fw_priv->buf)
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100730 loading = fw_state_is_loading(&fw_priv->buf->fw_st);
Ming Lei87597932013-06-15 16:36:38 +0800731 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return sprintf(buf, "%d\n", loading);
734}
735
David Woodhouse6e03a202009-04-09 22:04:07 -0700736/* Some architectures don't have PAGE_KERNEL_RO */
737#ifndef PAGE_KERNEL_RO
738#define PAGE_KERNEL_RO PAGE_KERNEL
739#endif
Ming Lei253c9242012-10-09 12:01:02 +0800740
741/* one pages buffer should be mapped/unmapped only once */
742static int fw_map_pages_buf(struct firmware_buf *buf)
743{
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100744 if (!buf->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800745 return 0;
746
Markus Elfringdaa3d672014-11-19 11:38:38 +0100747 vunmap(buf->data);
Ming Lei253c9242012-10-09 12:01:02 +0800748 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
749 if (!buf->data)
750 return -ENOMEM;
751 return 0;
752}
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800755 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700756 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800757 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800758 * @buf: buffer to scan for loading control value
759 * @count: number of bytes in @buf
760 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * The relevant values are:
762 *
763 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800764 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * -1: Conclude the load with an error and discard any written data.
766 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700767static ssize_t firmware_loading_store(struct device *dev,
768 struct device_attribute *attr,
769 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700771 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800772 struct firmware_buf *fw_buf;
Kees Cook6593d922014-02-25 13:06:00 -0800773 ssize_t written = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700775 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Neil Hormaneea915b2012-01-02 15:31:23 -0500777 mutex_lock(&fw_lock);
Ming Lei87597932013-06-15 16:36:38 +0800778 fw_buf = fw_priv->buf;
Luis R. Rodriguez191e8852017-01-25 10:31:52 -0800779 if (fw_state_is_aborted(&fw_buf->fw_st))
Neil Hormaneea915b2012-01-02 15:31:23 -0500780 goto out;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 switch (loading) {
783 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800784 /* discarding any previous partial load */
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100785 if (!fw_state_is_done(&fw_buf->fw_st)) {
Ming Lei12446912012-08-04 12:01:20 +0800786 for (i = 0; i < fw_buf->nr_pages; i++)
787 __free_page(fw_buf->pages[i]);
Chen Feng10a3fbf2015-12-16 17:03:15 +0800788 vfree(fw_buf->pages);
Ming Lei12446912012-08-04 12:01:20 +0800789 fw_buf->pages = NULL;
790 fw_buf->page_array_size = 0;
791 fw_buf->nr_pages = 0;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100792 fw_state_start(&fw_buf->fw_st);
Ming Lei28eefa72012-08-04 12:01:17 +0800793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
795 case 0:
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100796 if (fw_state_is_loading(&fw_buf->fw_st)) {
Kees Cook6593d922014-02-25 13:06:00 -0800797 int rc;
798
Ming Lei253c9242012-10-09 12:01:02 +0800799 /*
800 * Several loading requests may be pending on
801 * one same firmware buf, so let all requests
802 * see the mapped 'buf->data' once the loading
803 * is completed.
804 * */
Kees Cook6593d922014-02-25 13:06:00 -0800805 rc = fw_map_pages_buf(fw_buf);
806 if (rc)
zhang jun2b1278c2014-02-13 15:18:47 +0800807 dev_err(dev, "%s: map pages failed\n",
808 __func__);
Kees Cook6593d922014-02-25 13:06:00 -0800809 else
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500810 rc = security_kernel_post_read_file(NULL,
811 fw_buf->data, fw_buf->size,
812 READING_FIRMWARE);
Kees Cook6593d922014-02-25 13:06:00 -0800813
814 /*
815 * Same logic as fw_load_abort, only the DONE bit
816 * is ignored and we set ABORT only on failure.
817 */
Takashi Iwaife304142013-05-22 18:28:38 +0200818 list_del_init(&fw_buf->pending_list);
Kees Cook6593d922014-02-25 13:06:00 -0800819 if (rc) {
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100820 fw_state_aborted(&fw_buf->fw_st);
Kees Cook6593d922014-02-25 13:06:00 -0800821 written = rc;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100822 } else {
823 fw_state_done(&fw_buf->fw_st);
Kees Cook6593d922014-02-25 13:06:00 -0800824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 break;
826 }
827 /* fallthrough */
828 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700829 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* fallthrough */
831 case -1:
832 fw_load_abort(fw_priv);
833 break;
834 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500835out:
836 mutex_unlock(&fw_lock);
Kees Cook6593d922014-02-25 13:06:00 -0800837 return written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700840static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Stephen Boyda098ecd2016-08-02 14:04:28 -0700842static void firmware_rw_buf(struct firmware_buf *buf, char *buffer,
843 loff_t offset, size_t count, bool read)
844{
845 if (read)
846 memcpy(buffer, buf->data + offset, count);
847 else
848 memcpy(buf->data + offset, buffer, count);
849}
850
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700851static void firmware_rw(struct firmware_buf *buf, char *buffer,
852 loff_t offset, size_t count, bool read)
853{
854 while (count) {
855 void *page_data;
856 int page_nr = offset >> PAGE_SHIFT;
857 int page_ofs = offset & (PAGE_SIZE-1);
858 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
859
860 page_data = kmap(buf->pages[page_nr]);
861
862 if (read)
863 memcpy(buffer, page_data + page_ofs, page_cnt);
864 else
865 memcpy(page_data + page_ofs, buffer, page_cnt);
866
867 kunmap(buf->pages[page_nr]);
868 buffer += page_cnt;
869 offset += page_cnt;
870 count -= page_cnt;
871 }
872}
873
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700874static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
875 struct bin_attribute *bin_attr,
876 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200878 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700879 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800880 struct firmware_buf *buf;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700881 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Laura Garciacad1e552006-05-23 23:22:38 +0200883 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800884 buf = fw_priv->buf;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100885 if (!buf || fw_state_is_done(&buf->fw_st)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 ret_count = -ENODEV;
887 goto out;
888 }
Ming Lei12446912012-08-04 12:01:20 +0800889 if (offset > buf->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200890 ret_count = 0;
891 goto out;
892 }
Ming Lei12446912012-08-04 12:01:20 +0800893 if (count > buf->size - offset)
894 count = buf->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700895
896 ret_count = count;
897
Stephen Boyda098ecd2016-08-02 14:04:28 -0700898 if (buf->data)
899 firmware_rw_buf(buf, buffer, offset, count, true);
900 else
901 firmware_rw(buf, buffer, offset, count, true);
David Woodhouse6e03a202009-04-09 22:04:07 -0700902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903out:
Laura Garciacad1e552006-05-23 23:22:38 +0200904 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return ret_count;
906}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800907
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700908static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Ming Lei12446912012-08-04 12:01:20 +0800910 struct firmware_buf *buf = fw_priv->buf;
Fabian Fredericka76040d2014-07-01 21:13:30 +0200911 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
David Woodhouse6e03a202009-04-09 22:04:07 -0700913 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800914 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700915 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800916 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700917 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Chen Feng10a3fbf2015-12-16 17:03:15 +0800919 new_pages = vmalloc(new_array_size * sizeof(void *));
David Woodhouse6e03a202009-04-09 22:04:07 -0700920 if (!new_pages) {
921 fw_load_abort(fw_priv);
922 return -ENOMEM;
923 }
Ming Lei12446912012-08-04 12:01:20 +0800924 memcpy(new_pages, buf->pages,
925 buf->page_array_size * sizeof(void *));
926 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
927 (new_array_size - buf->page_array_size));
Chen Feng10a3fbf2015-12-16 17:03:15 +0800928 vfree(buf->pages);
Ming Lei12446912012-08-04 12:01:20 +0800929 buf->pages = new_pages;
930 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700932
Ming Lei12446912012-08-04 12:01:20 +0800933 while (buf->nr_pages < pages_needed) {
934 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700935 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
936
Ming Lei12446912012-08-04 12:01:20 +0800937 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700938 fw_load_abort(fw_priv);
939 return -ENOMEM;
940 }
Ming Lei12446912012-08-04 12:01:20 +0800941 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
944}
945
946/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800947 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700948 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700949 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700950 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800951 * @buffer: buffer being written
952 * @offset: buffer offset for write in total data store area
953 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800955 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 * the driver as a firmware image.
957 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700958static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
959 struct bin_attribute *bin_attr,
960 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200962 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700963 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800964 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 ssize_t retval;
966
967 if (!capable(CAP_SYS_RAWIO))
968 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700969
Laura Garciacad1e552006-05-23 23:22:38 +0200970 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800971 buf = fw_priv->buf;
Daniel Wagnerf52cc3792016-11-17 11:00:48 +0100972 if (!buf || fw_state_is_done(&buf->fw_st)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 retval = -ENODEV;
974 goto out;
975 }
Ming Lei65710cb2012-08-04 12:01:16 +0800976
Stephen Boyda098ecd2016-08-02 14:04:28 -0700977 if (buf->data) {
978 if (offset + count > buf->allocated_size) {
979 retval = -ENOMEM;
980 goto out;
981 }
982 firmware_rw_buf(buf, buffer, offset, count, false);
983 retval = count;
984 } else {
985 retval = fw_realloc_buffer(fw_priv, offset + count);
986 if (retval)
987 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Stephen Boyda098ecd2016-08-02 14:04:28 -0700989 retval = count;
990 firmware_rw(buf, buffer, offset, count, false);
991 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700992
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700993 buf->size = max_t(size_t, offset + count, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994out:
Laura Garciacad1e552006-05-23 23:22:38 +0200995 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return retval;
997}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800998
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700999static struct bin_attribute firmware_attr_data = {
1000 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 .size = 0,
1002 .read = firmware_data_read,
1003 .write = firmware_data_write,
1004};
1005
Takashi Iwai46239902015-02-04 15:18:07 +01001006static struct attribute *fw_dev_attrs[] = {
1007 &dev_attr_loading.attr,
1008 NULL
1009};
1010
1011static struct bin_attribute *fw_dev_bin_attrs[] = {
1012 &firmware_attr_data,
1013 NULL
1014};
1015
1016static const struct attribute_group fw_dev_attr_group = {
1017 .attrs = fw_dev_attrs,
1018 .bin_attrs = fw_dev_bin_attrs,
1019};
1020
1021static const struct attribute_group *fw_dev_attr_groups[] = {
1022 &fw_dev_attr_group,
1023 NULL
1024};
1025
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001026static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +02001027fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001028 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001030 struct firmware_priv *fw_priv;
1031 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Ming Lei12446912012-08-04 12:01:20 +08001033 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001034 if (!fw_priv) {
Ming Lei12446912012-08-04 12:01:20 +08001035 fw_priv = ERR_PTR(-ENOMEM);
1036 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001039 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
Ming Lei1f2b7952012-08-04 12:01:21 +08001040 fw_priv->fw = firmware;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001041 f_dev = &fw_priv->dev;
1042
1043 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +08001044 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -07001045 f_dev->parent = device;
1046 f_dev->class = &firmware_class;
Takashi Iwai46239902015-02-04 15:18:07 +01001047 f_dev->groups = fw_dev_attr_groups;
Ming Lei12446912012-08-04 12:01:20 +08001048exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001049 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001051
1052/* load a firmware via user helper */
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001053static int _request_firmware_load(struct firmware_priv *fw_priv,
1054 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001055{
1056 int retval = 0;
1057 struct device *f_dev = &fw_priv->dev;
1058 struct firmware_buf *buf = fw_priv->buf;
1059
1060 /* fall back on userspace loading */
Stephen Boyda098ecd2016-08-02 14:04:28 -07001061 if (!buf->data)
1062 buf->is_paged_buf = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001063
1064 dev_set_uevent_suppress(f_dev, true);
1065
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001066 retval = device_add(f_dev);
1067 if (retval) {
1068 dev_err(f_dev, "%s: device_register failed\n", __func__);
1069 goto err_put_dev;
1070 }
1071
Maxime Bizon1eeeef12013-08-29 20:28:13 +02001072 mutex_lock(&fw_lock);
1073 list_add(&buf->pending_list, &pending_fw_head);
1074 mutex_unlock(&fw_lock);
1075
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001076 if (opt_flags & FW_OPT_UEVENT) {
Ming Leiaf5bc112013-05-27 18:30:04 +08001077 buf->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001078 dev_set_uevent_suppress(f_dev, false);
1079 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001080 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
Ming Lei68ff2a02015-01-13 00:02:01 +08001081 } else {
1082 timeout = MAX_JIFFY_OFFSET;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001083 }
1084
Bjorn Andersson5d47ec02016-12-06 17:01:45 -08001085 retval = fw_state_wait_timeout(&buf->fw_st, timeout);
1086 if (retval < 0) {
Ming Lei0cb64242015-01-13 00:01:35 +08001087 mutex_lock(&fw_lock);
1088 fw_load_abort(fw_priv);
1089 mutex_unlock(&fw_lock);
1090 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001091
Daniel Wagnerf52cc3792016-11-17 11:00:48 +01001092 if (fw_state_is_aborted(&buf->fw_st))
Shuah Khan0542ad82014-07-22 18:10:38 -06001093 retval = -EAGAIN;
Stephen Boyda098ecd2016-08-02 14:04:28 -07001094 else if (buf->is_paged_buf && !buf->data)
zhang jun2b1278c2014-02-13 15:18:47 +08001095 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001096
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001097 device_del(f_dev);
1098err_put_dev:
1099 put_device(f_dev);
1100 return retval;
1101}
1102
1103static int fw_load_from_user_helper(struct firmware *firmware,
1104 const char *name, struct device *device,
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001105 unsigned int opt_flags)
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001106{
1107 struct firmware_priv *fw_priv;
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001108 long timeout;
1109 int ret;
1110
1111 timeout = firmware_loading_timeout();
1112 if (opt_flags & FW_OPT_NOWAIT) {
1113 timeout = usermodehelper_read_lock_wait(timeout);
1114 if (!timeout) {
1115 dev_dbg(device, "firmware: %s loading timed out\n",
1116 name);
1117 return -EBUSY;
1118 }
1119 } else {
1120 ret = usermodehelper_read_trylock();
1121 if (WARN_ON(ret)) {
1122 dev_err(device, "firmware: %s will not be loaded\n",
1123 name);
1124 return ret;
1125 }
1126 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001127
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001128 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001129 if (IS_ERR(fw_priv)) {
1130 ret = PTR_ERR(fw_priv);
1131 goto out_unlock;
1132 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001133
1134 fw_priv->buf = firmware->priv;
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001135 ret = _request_firmware_load(fw_priv, opt_flags, timeout);
1136
1137 if (!ret)
1138 ret = assign_firmware_buf(firmware, device, opt_flags);
1139
1140out_unlock:
1141 usermodehelper_read_unlock();
1142
1143 return ret;
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001144}
Ming Leiddf1f062013-06-04 10:01:13 +08001145
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001146#else /* CONFIG_FW_LOADER_USER_HELPER */
1147static inline int
1148fw_load_from_user_helper(struct firmware *firmware, const char *name,
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001149 struct device *device, unsigned int opt_flags)
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001150{
1151 return -ENOENT;
1152}
Takashi Iwai807be032013-01-31 11:13:57 +01001153
Luis R. Rodriguezc4b76892017-05-02 01:31:03 -07001154static inline void kill_pending_fw_fallback_reqs(bool only_kill_custom) { }
Ming Leiddf1f062013-06-04 10:01:13 +08001155
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001156#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001158/* prepare firmware and firmware_buf structs;
1159 * return 0 if a firmware is already assigned, 1 if need to load one,
1160 * or a negative error code
1161 */
1162static int
1163_request_firmware_prepare(struct firmware **firmware_p, const char *name,
Stephen Boyda098ecd2016-08-02 14:04:28 -07001164 struct device *device, void *dbuf, size_t size)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001165{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +08001167 struct firmware_buf *buf;
1168 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Jiri Slaby4aed0642005-09-13 01:25:01 -07001170 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001172 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1173 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001174 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Stephen Boyda098ecd2016-08-02 14:04:28 -07001177 if (fw_get_builtin_firmware(firmware, name, dbuf, size)) {
Luis R. Rodriguezed046302015-04-29 16:30:43 -07001178 dev_dbg(device, "using built-in %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001179 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001180 }
1181
Stephen Boyda098ecd2016-08-02 14:04:28 -07001182 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf, dbuf, size);
Ming Lei1f2b7952012-08-04 12:01:21 +08001183
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001184 /*
1185 * bind with 'buf' now to avoid warning in failure path
1186 * of requesting firmware.
1187 */
1188 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +08001189
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001190 if (ret > 0) {
Daniel Wagner5b029622016-11-17 11:00:50 +01001191 ret = fw_state_wait(&buf->fw_st);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001192 if (!ret) {
1193 fw_set_page_data(buf, firmware);
1194 return 0; /* assigned */
1195 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001196 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001197
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001198 if (ret < 0)
1199 return ret;
1200 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001201}
1202
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001203/* called from request_firmware() and request_firmware_work_func() */
1204static int
1205_request_firmware(const struct firmware **firmware_p, const char *name,
Stephen Boyda098ecd2016-08-02 14:04:28 -07001206 struct device *device, void *buf, size_t size,
1207 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001208{
Brian Norris715780a2015-12-09 14:50:28 -08001209 struct firmware *fw = NULL;
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001210 int ret;
1211
1212 if (!firmware_p)
1213 return -EINVAL;
1214
Brian Norris715780a2015-12-09 14:50:28 -08001215 if (!name || name[0] == '\0') {
1216 ret = -EINVAL;
1217 goto out;
1218 }
Kees Cook471b0952014-09-18 11:25:37 -07001219
Stephen Boyda098ecd2016-08-02 14:04:28 -07001220 ret = _request_firmware_prepare(&fw, name, device, buf, size);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001221 if (ret <= 0) /* error or already assigned */
1222 goto out;
1223
Luis R. Rodriguez81f95072017-05-02 01:31:05 -07001224 if (!firmware_enabled()) {
1225 WARN(1, "firmware request while host is not available\n");
1226 ret = -EHOSTDOWN;
1227 goto out;
1228 }
1229
Neil Horman3e358ac2013-09-06 15:36:08 -04001230 ret = fw_get_filesystem_firmware(device, fw->priv);
1231 if (ret) {
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001232 if (!(opt_flags & FW_OPT_NO_WARN))
Takashi Iwaibba3a872013-12-02 15:38:16 +01001233 dev_warn(device,
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001234 "Direct firmware load for %s failed with error %d\n",
1235 name, ret);
1236 if (opt_flags & FW_OPT_USERHELPER) {
Takashi Iwaibba3a872013-12-02 15:38:16 +01001237 dev_warn(device, "Falling back to user helper\n");
1238 ret = fw_load_from_user_helper(fw, name, device,
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001239 opt_flags);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001240 }
Luis R. Rodriguez06a45a92017-05-02 01:31:07 -07001241 } else
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001242 ret = assign_firmware_buf(fw, device, opt_flags);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001243
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001244 out:
1245 if (ret < 0) {
1246 release_firmware(fw);
1247 fw = NULL;
1248 }
1249
1250 *firmware_p = fw;
1251 return ret;
1252}
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254/**
Kay Sievers312c0042005-11-16 09:00:00 +01001255 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001256 * @firmware_p: pointer to firmware image
1257 * @name: name of firmware file
1258 * @device: device for which firmware is being loaded
1259 *
1260 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001261 * of @name for device @device.
1262 *
1263 * Should be called from user context where sleeping is allowed.
1264 *
Kay Sievers312c0042005-11-16 09:00:00 +01001265 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001266 * should be distinctive enough not to be confused with any other
1267 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +08001268 *
1269 * Caller must hold the reference count of @device.
Ming Lei6a927852012-11-03 17:48:16 +08001270 *
1271 * The function can be called safely inside device's suspend and
1272 * resume callback.
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001273 **/
1274int
1275request_firmware(const struct firmware **firmware_p, const char *name,
Andrei Opreaea310032015-03-08 12:41:15 +02001276 struct device *device)
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001277{
Ming Leid6c8aa32013-06-06 20:01:48 +08001278 int ret;
1279
1280 /* Need to pin this module until return */
1281 __module_get(THIS_MODULE);
Stephen Boyda098ecd2016-08-02 14:04:28 -07001282 ret = _request_firmware(firmware_p, name, device, NULL, 0,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001283 FW_OPT_UEVENT | FW_OPT_FALLBACK);
Ming Leid6c8aa32013-06-06 20:01:48 +08001284 module_put(THIS_MODULE);
1285 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001286}
Daniel Mackf4945132013-05-23 22:17:18 +02001287EXPORT_SYMBOL(request_firmware);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001288
Takashi Iwaibba3a872013-12-02 15:38:16 +01001289/**
Borislav Petkov3c1556b2014-12-03 22:46:37 +01001290 * request_firmware_direct: - load firmware directly without usermode helper
Takashi Iwaibba3a872013-12-02 15:38:16 +01001291 * @firmware_p: pointer to firmware image
1292 * @name: name of firmware file
1293 * @device: device for which firmware is being loaded
1294 *
1295 * This function works pretty much like request_firmware(), but this doesn't
1296 * fall back to usermode helper even if the firmware couldn't be loaded
1297 * directly from fs. Hence it's useful for loading optional firmwares, which
1298 * aren't always present, without extra long timeouts of udev.
1299 **/
1300int request_firmware_direct(const struct firmware **firmware_p,
1301 const char *name, struct device *device)
1302{
1303 int ret;
Andrei Opreaea310032015-03-08 12:41:15 +02001304
Takashi Iwaibba3a872013-12-02 15:38:16 +01001305 __module_get(THIS_MODULE);
Stephen Boyda098ecd2016-08-02 14:04:28 -07001306 ret = _request_firmware(firmware_p, name, device, NULL, 0,
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001307 FW_OPT_UEVENT | FW_OPT_NO_WARN);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001308 module_put(THIS_MODULE);
1309 return ret;
1310}
1311EXPORT_SYMBOL_GPL(request_firmware_direct);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001312
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001313/**
Stephen Boyda098ecd2016-08-02 14:04:28 -07001314 * request_firmware_into_buf - load firmware into a previously allocated buffer
1315 * @firmware_p: pointer to firmware image
1316 * @name: name of firmware file
1317 * @device: device for which firmware is being loaded and DMA region allocated
1318 * @buf: address of buffer to load firmware into
1319 * @size: size of buffer
1320 *
1321 * This function works pretty much like request_firmware(), but it doesn't
1322 * allocate a buffer to hold the firmware data. Instead, the firmware
1323 * is loaded directly into the buffer pointed to by @buf and the @firmware_p
1324 * data member is pointed at @buf.
1325 *
1326 * This function doesn't cache firmware either.
1327 */
1328int
1329request_firmware_into_buf(const struct firmware **firmware_p, const char *name,
1330 struct device *device, void *buf, size_t size)
1331{
1332 int ret;
1333
1334 __module_get(THIS_MODULE);
1335 ret = _request_firmware(firmware_p, name, device, buf, size,
1336 FW_OPT_UEVENT | FW_OPT_FALLBACK |
1337 FW_OPT_NOCACHE);
1338 module_put(THIS_MODULE);
1339 return ret;
1340}
1341EXPORT_SYMBOL(request_firmware_into_buf);
1342
1343/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001345 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001347void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001350 if (!fw_is_builtin_firmware(fw))
1351 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 kfree(fw);
1353 }
1354}
Daniel Mackf4945132013-05-23 22:17:18 +02001355EXPORT_SYMBOL(release_firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357/* Async support */
1358struct firmware_work {
1359 struct work_struct work;
1360 struct module *module;
1361 const char *name;
1362 struct device *device;
1363 void *context;
1364 void (*cont)(const struct firmware *fw, void *context);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001365 unsigned int opt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366};
1367
Stephen Boyda36cf842012-03-28 23:31:00 +02001368static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Stephen Boyda36cf842012-03-28 23:31:00 +02001370 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 const struct firmware *fw;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001372
Stephen Boyda36cf842012-03-28 23:31:00 +02001373 fw_work = container_of(work, struct firmware_work, work);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001374
Stephen Boyda098ecd2016-08-02 14:04:28 -07001375 _request_firmware(&fw, fw_work->name, fw_work->device, NULL, 0,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001376 fw_work->opt_flags);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001377 fw_work->cont(fw, fw_work->context);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001378 put_device(fw_work->device); /* taken in request_firmware_nowait() */
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 module_put(fw_work->module);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001381 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
1385/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001386 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001387 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001388 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001389 * is non-zero else the firmware copy must be done manually.
1390 * @name: name of firmware file
1391 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001392 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001393 * @context: will be passed over to @cont, and
1394 * @fw may be %NULL if firmware request fails.
1395 * @cont: function will be called asynchronously when the firmware
1396 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001398 * Caller must hold the reference count of @device.
1399 *
Ming Lei6f21a622012-08-04 12:01:24 +08001400 * Asynchronous variant of request_firmware() for user contexts:
1401 * - sleep for as small periods as possible since it may
Silvio Fricke88bcef52016-11-25 15:59:47 +01001402 * increase kernel boot time of built-in device drivers
1403 * requesting firmware in their ->probe() methods, if
1404 * @gfp is GFP_KERNEL.
Ming Lei6f21a622012-08-04 12:01:24 +08001405 *
1406 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 **/
1408int
1409request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001410 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001411 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 void (*cont)(const struct firmware *fw, void *context))
1413{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001414 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Andrei Opreaea310032015-03-08 12:41:15 +02001416 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (!fw_work)
1418 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001419
1420 fw_work->module = module;
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001421 fw_work->name = kstrdup_const(name, gfp);
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001422 if (!fw_work->name) {
1423 kfree(fw_work);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001424 return -ENOMEM;
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001425 }
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001426 fw_work->device = device;
1427 fw_work->context = context;
1428 fw_work->cont = cont;
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001429 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
Takashi Iwai5a1379e2014-06-04 17:48:15 +02001430 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (!try_module_get(module)) {
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001433 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 kfree(fw_work);
1435 return -EFAULT;
1436 }
1437
Ming Lei0cfc1e12012-08-04 12:01:23 +08001438 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001439 INIT_WORK(&fw_work->work, request_firmware_work_func);
1440 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return 0;
1442}
Daniel Mackf4945132013-05-23 22:17:18 +02001443EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Ming Lei90f890812013-06-20 12:30:16 +08001445#ifdef CONFIG_PM_SLEEP
1446static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1447
Ming Lei2887b392012-08-04 12:01:22 +08001448/**
1449 * cache_firmware - cache one firmware image in kernel memory space
1450 * @fw_name: the firmware image name
1451 *
1452 * Cache firmware in kernel memory so that drivers can use it when
1453 * system isn't ready for them to request firmware image from userspace.
1454 * Once it returns successfully, driver can use request_firmware or its
1455 * nowait version to get the cached firmware without any interacting
1456 * with userspace
1457 *
1458 * Return 0 if the firmware image has been cached successfully
1459 * Return !0 otherwise
1460 *
1461 */
Ming Lei93232e42013-06-06 20:01:47 +08001462static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001463{
1464 int ret;
1465 const struct firmware *fw;
1466
1467 pr_debug("%s: %s\n", __func__, fw_name);
1468
1469 ret = request_firmware(&fw, fw_name, NULL);
1470 if (!ret)
1471 kfree(fw);
1472
1473 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1474
1475 return ret;
1476}
1477
Ming Lei6a2c1232013-06-26 09:28:17 +08001478static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1479{
1480 struct firmware_buf *tmp;
1481 struct firmware_cache *fwc = &fw_cache;
1482
1483 spin_lock(&fwc->lock);
1484 tmp = __fw_lookup_buf(fw_name);
1485 spin_unlock(&fwc->lock);
1486
1487 return tmp;
1488}
1489
Ming Lei2887b392012-08-04 12:01:22 +08001490/**
1491 * uncache_firmware - remove one cached firmware image
1492 * @fw_name: the firmware image name
1493 *
1494 * Uncache one firmware image which has been cached successfully
1495 * before.
1496 *
1497 * Return 0 if the firmware cache has been removed successfully
1498 * Return !0 otherwise
1499 *
1500 */
Ming Lei93232e42013-06-06 20:01:47 +08001501static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001502{
1503 struct firmware_buf *buf;
1504 struct firmware fw;
1505
1506 pr_debug("%s: %s\n", __func__, fw_name);
1507
Stephen Boyda098ecd2016-08-02 14:04:28 -07001508 if (fw_get_builtin_firmware(&fw, fw_name, NULL, 0))
Ming Lei2887b392012-08-04 12:01:22 +08001509 return 0;
1510
1511 buf = fw_lookup_buf(fw_name);
1512 if (buf) {
1513 fw_free_buf(buf);
1514 return 0;
1515 }
1516
1517 return -EINVAL;
1518}
1519
Ming Lei37276a52012-08-04 12:01:27 +08001520static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1521{
1522 struct fw_cache_entry *fce;
1523
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001524 fce = kzalloc(sizeof(*fce), GFP_ATOMIC);
Ming Lei37276a52012-08-04 12:01:27 +08001525 if (!fce)
1526 goto exit;
1527
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001528 fce->name = kstrdup_const(name, GFP_ATOMIC);
1529 if (!fce->name) {
1530 kfree(fce);
1531 fce = NULL;
1532 goto exit;
1533 }
Ming Lei37276a52012-08-04 12:01:27 +08001534exit:
1535 return fce;
1536}
1537
Ming Lei373304f2012-10-09 12:01:01 +08001538static int __fw_entry_found(const char *name)
1539{
1540 struct firmware_cache *fwc = &fw_cache;
1541 struct fw_cache_entry *fce;
1542
1543 list_for_each_entry(fce, &fwc->fw_names, list) {
1544 if (!strcmp(fce->name, name))
1545 return 1;
1546 }
1547 return 0;
1548}
1549
Ming Leiac39b3e2012-08-20 19:04:16 +08001550static int fw_cache_piggyback_on_request(const char *name)
1551{
1552 struct firmware_cache *fwc = &fw_cache;
1553 struct fw_cache_entry *fce;
1554 int ret = 0;
1555
1556 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001557 if (__fw_entry_found(name))
1558 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001559
1560 fce = alloc_fw_cache_entry(name);
1561 if (fce) {
1562 ret = 1;
1563 list_add(&fce->list, &fwc->fw_names);
1564 pr_debug("%s: fw: %s\n", __func__, name);
1565 }
1566found:
1567 spin_unlock(&fwc->name_lock);
1568 return ret;
1569}
1570
Ming Lei37276a52012-08-04 12:01:27 +08001571static void free_fw_cache_entry(struct fw_cache_entry *fce)
1572{
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001573 kfree_const(fce->name);
Ming Lei37276a52012-08-04 12:01:27 +08001574 kfree(fce);
1575}
1576
1577static void __async_dev_cache_fw_image(void *fw_entry,
1578 async_cookie_t cookie)
1579{
1580 struct fw_cache_entry *fce = fw_entry;
1581 struct firmware_cache *fwc = &fw_cache;
1582 int ret;
1583
1584 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001585 if (ret) {
1586 spin_lock(&fwc->name_lock);
1587 list_del(&fce->list);
1588 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001589
Ming Leiac39b3e2012-08-20 19:04:16 +08001590 free_fw_cache_entry(fce);
1591 }
Ming Lei37276a52012-08-04 12:01:27 +08001592}
1593
1594/* called with dev->devres_lock held */
1595static void dev_create_fw_entry(struct device *dev, void *res,
1596 void *data)
1597{
1598 struct fw_name_devm *fwn = res;
1599 const char *fw_name = fwn->name;
1600 struct list_head *head = data;
1601 struct fw_cache_entry *fce;
1602
1603 fce = alloc_fw_cache_entry(fw_name);
1604 if (fce)
1605 list_add(&fce->list, head);
1606}
1607
1608static int devm_name_match(struct device *dev, void *res,
1609 void *match_data)
1610{
1611 struct fw_name_devm *fwn = res;
1612 return (fwn->magic == (unsigned long)match_data);
1613}
1614
Ming Leiab6dd8e2012-08-17 22:07:00 +08001615static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001616{
1617 LIST_HEAD(todo);
1618 struct fw_cache_entry *fce;
1619 struct fw_cache_entry *fce_next;
1620 struct firmware_cache *fwc = &fw_cache;
1621
1622 devres_for_each_res(dev, fw_name_devm_release,
1623 devm_name_match, &fw_cache,
1624 dev_create_fw_entry, &todo);
1625
1626 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1627 list_del(&fce->list);
1628
1629 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001630 /* only one cache entry for one firmware */
1631 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001632 list_add(&fce->list, &fwc->fw_names);
1633 } else {
1634 free_fw_cache_entry(fce);
1635 fce = NULL;
1636 }
Ming Lei37276a52012-08-04 12:01:27 +08001637 spin_unlock(&fwc->name_lock);
1638
Ming Lei373304f2012-10-09 12:01:01 +08001639 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001640 async_schedule_domain(__async_dev_cache_fw_image,
1641 (void *)fce,
1642 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001643 }
1644}
1645
1646static void __device_uncache_fw_images(void)
1647{
1648 struct firmware_cache *fwc = &fw_cache;
1649 struct fw_cache_entry *fce;
1650
1651 spin_lock(&fwc->name_lock);
1652 while (!list_empty(&fwc->fw_names)) {
1653 fce = list_entry(fwc->fw_names.next,
1654 struct fw_cache_entry, list);
1655 list_del(&fce->list);
1656 spin_unlock(&fwc->name_lock);
1657
1658 uncache_firmware(fce->name);
1659 free_fw_cache_entry(fce);
1660
1661 spin_lock(&fwc->name_lock);
1662 }
1663 spin_unlock(&fwc->name_lock);
1664}
1665
1666/**
1667 * device_cache_fw_images - cache devices' firmware
1668 *
1669 * If one device called request_firmware or its nowait version
1670 * successfully before, the firmware names are recored into the
1671 * device's devres link list, so device_cache_fw_images can call
1672 * cache_firmware() to cache these firmwares for the device,
1673 * then the device driver can load its firmwares easily at
1674 * time when system is not ready to complete loading firmware.
1675 */
1676static void device_cache_fw_images(void)
1677{
1678 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001679 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001680 DEFINE_WAIT(wait);
1681
1682 pr_debug("%s\n", __func__);
1683
Ming Lei373304f2012-10-09 12:01:01 +08001684 /* cancel uncache work */
1685 cancel_delayed_work_sync(&fwc->work);
1686
Ming Leiffe53f62012-08-04 12:01:28 +08001687 /*
1688 * use small loading timeout for caching devices' firmware
1689 * because all these firmware images have been loaded
1690 * successfully at lease once, also system is ready for
1691 * completing firmware loading now. The maximum size of
1692 * firmware in current distributions is about 2M bytes,
1693 * so 10 secs should be enough.
1694 */
1695 old_timeout = loading_timeout;
1696 loading_timeout = 10;
1697
Ming Leiac39b3e2012-08-20 19:04:16 +08001698 mutex_lock(&fw_lock);
1699 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001700 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001701 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001702
1703 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001704 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001705
1706 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001707}
1708
1709/**
1710 * device_uncache_fw_images - uncache devices' firmware
1711 *
1712 * uncache all firmwares which have been cached successfully
1713 * by device_uncache_fw_images earlier
1714 */
1715static void device_uncache_fw_images(void)
1716{
1717 pr_debug("%s\n", __func__);
1718 __device_uncache_fw_images();
1719}
1720
1721static void device_uncache_fw_images_work(struct work_struct *work)
1722{
1723 device_uncache_fw_images();
1724}
1725
1726/**
1727 * device_uncache_fw_images_delay - uncache devices firmwares
1728 * @delay: number of milliseconds to delay uncache device firmwares
1729 *
1730 * uncache all devices's firmwares which has been cached successfully
1731 * by device_cache_fw_images after @delay milliseconds.
1732 */
1733static void device_uncache_fw_images_delay(unsigned long delay)
1734{
Shaibal Duttabce66182014-01-31 15:44:58 -08001735 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1736 msecs_to_jiffies(delay));
Ming Lei37276a52012-08-04 12:01:27 +08001737}
1738
Luis R. Rodriguez81f95072017-05-02 01:31:05 -07001739/**
1740 * fw_pm_notify - notifier for suspend/resume
1741 * @notify_block: unused
1742 * @mode: mode we are switching to
1743 * @unused: unused
1744 *
1745 * Used to modify the firmware_class state as we move in between states.
1746 * The firmware_class implements a firmware cache to enable device driver
1747 * to fetch firmware upon resume before the root filesystem is ready. We
1748 * disable API calls which do not use the built-in firmware or the firmware
1749 * cache when we know these calls will not work.
1750 *
1751 * The inner logic behind all this is a bit complex so it is worth summarizing
1752 * the kernel's own suspend/resume process with context and focus on how this
1753 * can impact the firmware API.
1754 *
1755 * First a review on how we go to suspend::
1756 *
1757 * pm_suspend() --> enter_state() -->
1758 * sys_sync()
1759 * suspend_prepare() -->
1760 * __pm_notifier_call_chain(PM_SUSPEND_PREPARE, ...);
1761 * suspend_freeze_processes() -->
1762 * freeze_processes() -->
1763 * __usermodehelper_set_disable_depth(UMH_DISABLED);
1764 * freeze all tasks ...
1765 * freeze_kernel_threads()
1766 * suspend_devices_and_enter() -->
1767 * dpm_suspend_start() -->
1768 * dpm_prepare()
1769 * dpm_suspend()
1770 * suspend_enter() -->
1771 * platform_suspend_prepare()
1772 * dpm_suspend_late()
1773 * freeze_enter()
1774 * syscore_suspend()
1775 *
1776 * When we resume we bail out of a loop from suspend_devices_and_enter() and
1777 * unwind back out to the caller enter_state() where we were before as follows::
1778 *
1779 * enter_state() -->
1780 * suspend_devices_and_enter() --> (bail from loop)
1781 * dpm_resume_end() -->
1782 * dpm_resume()
1783 * dpm_complete()
1784 * suspend_finish() -->
1785 * suspend_thaw_processes() -->
1786 * thaw_processes() -->
1787 * __usermodehelper_set_disable_depth(UMH_FREEZING);
1788 * thaw_workqueues();
1789 * thaw all processes ...
1790 * usermodehelper_enable();
1791 * pm_notifier_call_chain(PM_POST_SUSPEND);
1792 *
1793 * fw_pm_notify() works through pm_notifier_call_chain().
1794 */
Ming Lei07646d92012-08-04 12:01:29 +08001795static int fw_pm_notify(struct notifier_block *notify_block,
1796 unsigned long mode, void *unused)
1797{
1798 switch (mode) {
1799 case PM_HIBERNATION_PREPARE:
1800 case PM_SUSPEND_PREPARE:
Sebastian Capellaf8d5b9e2014-02-18 17:52:08 -08001801 case PM_RESTORE_PREPARE:
Luis R. Rodriguezc4b76892017-05-02 01:31:03 -07001802 /*
1803 * kill pending fallback requests with a custom fallback
1804 * to avoid stalling suspend.
1805 */
1806 kill_pending_fw_fallback_reqs(true);
Ming Lei07646d92012-08-04 12:01:29 +08001807 device_cache_fw_images();
Luis R. Rodriguez81f95072017-05-02 01:31:05 -07001808 disable_firmware();
Ming Lei07646d92012-08-04 12:01:29 +08001809 break;
1810
1811 case PM_POST_SUSPEND:
1812 case PM_POST_HIBERNATION:
1813 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001814 /*
1815 * In case that system sleep failed and syscore_suspend is
1816 * not called.
1817 */
1818 mutex_lock(&fw_lock);
1819 fw_cache.state = FW_LOADER_NO_CACHE;
1820 mutex_unlock(&fw_lock);
Luis R. Rodriguez81f95072017-05-02 01:31:05 -07001821 enable_firmware();
Ming Leiac39b3e2012-08-20 19:04:16 +08001822
Ming Lei07646d92012-08-04 12:01:29 +08001823 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1824 break;
1825 }
1826
1827 return 0;
1828}
Ming Lei07646d92012-08-04 12:01:29 +08001829
Ming Leiac39b3e2012-08-20 19:04:16 +08001830/* stop caching firmware once syscore_suspend is reached */
1831static int fw_suspend(void)
1832{
1833 fw_cache.state = FW_LOADER_NO_CACHE;
1834 return 0;
1835}
1836
1837static struct syscore_ops fw_syscore_ops = {
1838 .suspend = fw_suspend,
1839};
Ming Leicfe016b2012-09-08 17:32:30 +08001840#else
1841static int fw_cache_piggyback_on_request(const char *name)
1842{
1843 return 0;
1844}
1845#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001846
Ming Lei37276a52012-08-04 12:01:27 +08001847static void __init fw_cache_init(void)
1848{
1849 spin_lock_init(&fw_cache.lock);
1850 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001851 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001852
Ming Leicfe016b2012-09-08 17:32:30 +08001853#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001854 spin_lock_init(&fw_cache.name_lock);
1855 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001856
Ming Lei37276a52012-08-04 12:01:27 +08001857 INIT_DELAYED_WORK(&fw_cache.work,
1858 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001859
1860 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1861 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001862
1863 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001864#endif
Ming Lei37276a52012-08-04 12:01:27 +08001865}
1866
Luis R. Rodrigueza669f042017-05-02 01:31:04 -07001867static int fw_shutdown_notify(struct notifier_block *unused1,
1868 unsigned long unused2, void *unused3)
1869{
Luis R. Rodriguez81f95072017-05-02 01:31:05 -07001870 disable_firmware();
Luis R. Rodrigueza669f042017-05-02 01:31:04 -07001871 /*
1872 * Kill all pending fallback requests to avoid both stalling shutdown,
1873 * and avoid a deadlock with the usermode_lock.
1874 */
1875 kill_pending_fw_fallback_reqs(false);
1876
1877 return NOTIFY_DONE;
1878}
1879
1880static struct notifier_block fw_shutdown_nb = {
1881 .notifier_call = fw_shutdown_notify,
1882};
1883
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001884static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Luis R. Rodriguez81f95072017-05-02 01:31:05 -07001886 enable_firmware();
Ming Lei1f2b7952012-08-04 12:01:21 +08001887 fw_cache_init();
Takashi Iwaife304142013-05-22 18:28:38 +02001888 register_reboot_notifier(&fw_shutdown_nb);
Luis R. Rodrigueza669f042017-05-02 01:31:04 -07001889#ifdef CONFIG_FW_LOADER_USER_HELPER
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001890 return class_register(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001891#else
1892 return 0;
1893#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001895
1896static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Luis R. Rodriguez81f95072017-05-02 01:31:05 -07001898 disable_firmware();
Ming Leicfe016b2012-09-08 17:32:30 +08001899#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001900 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001901 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001902#endif
Takashi Iwaife304142013-05-22 18:28:38 +02001903 unregister_reboot_notifier(&fw_shutdown_nb);
Luis R. Rodrigueza669f042017-05-02 01:31:04 -07001904#ifdef CONFIG_FW_LOADER_USER_HELPER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 class_unregister(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001906#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
Shaohua Lia30a6a22006-09-27 01:50:52 -07001909fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910module_exit(firmware_class_exit);