fs: sysfs: don't pass count == 0 to bin file readers
[linux-2.6-block.git] / drivers / base / firmware_class.c
CommitLineData
1da177e4
LT
1/*
2 * firmware_class.c - Multi purpose firmware loading support
3 *
87d37a4f 4 * Copyright (c) 2003 Manuel Estrada Sainz
1da177e4
LT
5 *
6 * Please see Documentation/firmware_class/ for more information.
7 *
8 */
9
c59ede7b 10#include <linux/capability.h>
1da177e4
LT
11#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>
cad1e55d 18#include <linux/mutex.h>
a36cf844 19#include <linux/workqueue.h>
6e03a201 20#include <linux/highmem.h>
1da177e4 21#include <linux/firmware.h>
5a0e3ad6 22#include <linux/slab.h>
a36cf844 23#include <linux/sched.h>
abb139e7 24#include <linux/file.h>
1f2b7959 25#include <linux/list.h>
37276a51
ML
26#include <linux/async.h>
27#include <linux/pm.h>
07646d9c 28#include <linux/suspend.h>
ac39b3ea 29#include <linux/syscore_ops.h>
fe304143 30#include <linux/reboot.h>
6593d924 31#include <linux/security.h>
37276a51 32
abb139e7
LT
33#include <generated/utsrelease.h>
34
37276a51 35#include "base.h"
1da177e4 36
87d37a4f 37MODULE_AUTHOR("Manuel Estrada Sainz");
1da177e4
LT
38MODULE_DESCRIPTION("Multi purpose firmware loading support");
39MODULE_LICENSE("GPL");
40
bcb9bd18
DT
41/* Builtin firmware support */
42
43#ifdef CONFIG_FW_LOADER
44
45extern struct builtin_fw __start_builtin_fw[];
46extern struct builtin_fw __end_builtin_fw[];
47
48static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
49{
50 struct builtin_fw *b_fw;
51
52 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
53 if (strcmp(name, b_fw->name) == 0) {
54 fw->size = b_fw->size;
55 fw->data = b_fw->data;
56 return true;
57 }
58 }
59
60 return false;
61}
62
63static bool fw_is_builtin_firmware(const struct firmware *fw)
64{
65 struct builtin_fw *b_fw;
66
67 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
68 if (fw->data == b_fw->data)
69 return true;
70
71 return false;
72}
73
74#else /* Module case - no builtin firmware support */
75
76static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
77{
78 return false;
79}
80
81static inline bool fw_is_builtin_firmware(const struct firmware *fw)
82{
83 return false;
84}
85#endif
86
1da177e4
LT
87enum {
88 FW_STATUS_LOADING,
89 FW_STATUS_DONE,
90 FW_STATUS_ABORT,
1da177e4
LT
91};
92
2f65168d 93static int loading_timeout = 60; /* In seconds */
1da177e4 94
9b78c1da
RW
95static inline long firmware_loading_timeout(void)
96{
68ff2a00 97 return loading_timeout > 0 ? loading_timeout * HZ : MAX_JIFFY_OFFSET;
9b78c1da
RW
98}
99
14c4bae7
TI
100/* firmware behavior options */
101#define FW_OPT_UEVENT (1U << 0)
102#define FW_OPT_NOWAIT (1U << 1)
68aeeaaa 103#ifdef CONFIG_FW_LOADER_USER_HELPER
5a1379e8 104#define FW_OPT_USERHELPER (1U << 2)
68aeeaaa 105#else
5a1379e8
TI
106#define FW_OPT_USERHELPER 0
107#endif
108#ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
109#define FW_OPT_FALLBACK FW_OPT_USERHELPER
110#else
111#define FW_OPT_FALLBACK 0
68aeeaaa 112#endif
c868edf4 113#define FW_OPT_NO_WARN (1U << 3)
14c4bae7 114
1f2b7959
ML
115struct firmware_cache {
116 /* firmware_buf instance will be added into the below list */
117 spinlock_t lock;
118 struct list_head head;
cfe016b1 119 int state;
37276a51 120
cfe016b1 121#ifdef CONFIG_PM_SLEEP
37276a51
ML
122 /*
123 * Names of firmware images which have been cached successfully
124 * will be added into the below list so that device uncache
125 * helper can trace which firmware images have been cached
126 * before.
127 */
128 spinlock_t name_lock;
129 struct list_head fw_names;
130
37276a51 131 struct delayed_work work;
07646d9c
ML
132
133 struct notifier_block pm_notify;
cfe016b1 134#endif
1f2b7959 135};
1da177e4 136
1244691c 137struct firmware_buf {
1f2b7959
ML
138 struct kref ref;
139 struct list_head list;
1da177e4 140 struct completion completion;
1f2b7959 141 struct firmware_cache *fwc;
1da177e4 142 unsigned long status;
65710cb6
ML
143 void *data;
144 size_t size;
7b1269f7 145#ifdef CONFIG_FW_LOADER_USER_HELPER
cd7239fa 146 bool is_paged_buf;
af5bc11e 147 bool need_uevent;
6e03a201
DW
148 struct page **pages;
149 int nr_pages;
150 int page_array_size;
fe304143 151 struct list_head pending_list;
7b1269f7 152#endif
e0fd9b1d 153 const char *fw_id;
1244691c
ML
154};
155
37276a51
ML
156struct fw_cache_entry {
157 struct list_head list;
e0fd9b1d 158 const char *name;
37276a51
ML
159};
160
f531f05a
ML
161struct fw_name_devm {
162 unsigned long magic;
e0fd9b1d 163 const char *name;
f531f05a
ML
164};
165
1f2b7959
ML
166#define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
167
ac39b3ea
ML
168#define FW_LOADER_NO_CACHE 0
169#define FW_LOADER_START_CACHE 1
170
171static int fw_cache_piggyback_on_request(const char *name);
172
1f2b7959
ML
173/* fw_lock could be moved to 'struct firmware_priv' but since it is just
174 * guarding for corner cases a global lock should be OK */
175static DEFINE_MUTEX(fw_lock);
176
177static struct firmware_cache fw_cache;
178
179static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
180 struct firmware_cache *fwc)
181{
182 struct firmware_buf *buf;
183
e0fd9b1d 184 buf = kzalloc(sizeof(*buf), GFP_ATOMIC);
1f2b7959 185 if (!buf)
e0fd9b1d
LR
186 return NULL;
187
188 buf->fw_id = kstrdup_const(fw_name, GFP_ATOMIC);
189 if (!buf->fw_id) {
190 kfree(buf);
191 return NULL;
192 }
1f2b7959
ML
193
194 kref_init(&buf->ref);
1f2b7959
ML
195 buf->fwc = fwc;
196 init_completion(&buf->completion);
fe304143
TI
197#ifdef CONFIG_FW_LOADER_USER_HELPER
198 INIT_LIST_HEAD(&buf->pending_list);
199#endif
1f2b7959
ML
200
201 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
202
203 return buf;
204}
205
2887b395
ML
206static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
207{
208 struct firmware_buf *tmp;
209 struct firmware_cache *fwc = &fw_cache;
210
211 list_for_each_entry(tmp, &fwc->head, list)
212 if (!strcmp(tmp->fw_id, fw_name))
213 return tmp;
214 return NULL;
215}
216
1f2b7959
ML
217static int fw_lookup_and_allocate_buf(const char *fw_name,
218 struct firmware_cache *fwc,
219 struct firmware_buf **buf)
220{
221 struct firmware_buf *tmp;
222
223 spin_lock(&fwc->lock);
2887b395
ML
224 tmp = __fw_lookup_buf(fw_name);
225 if (tmp) {
226 kref_get(&tmp->ref);
227 spin_unlock(&fwc->lock);
228 *buf = tmp;
229 return 1;
230 }
1f2b7959
ML
231 tmp = __allocate_fw_buf(fw_name, fwc);
232 if (tmp)
233 list_add(&tmp->list, &fwc->head);
234 spin_unlock(&fwc->lock);
235
236 *buf = tmp;
237
238 return tmp ? 0 : -ENOMEM;
239}
240
241static void __fw_free_buf(struct kref *ref)
98233b21 242 __releases(&fwc->lock)
1f2b7959
ML
243{
244 struct firmware_buf *buf = to_fwbuf(ref);
245 struct firmware_cache *fwc = buf->fwc;
1f2b7959
ML
246
247 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
248 __func__, buf->fw_id, buf, buf->data,
249 (unsigned int)buf->size);
250
1f2b7959
ML
251 list_del(&buf->list);
252 spin_unlock(&fwc->lock);
253
7b1269f7 254#ifdef CONFIG_FW_LOADER_USER_HELPER
cd7239fa 255 if (buf->is_paged_buf) {
7b1269f7 256 int i;
746058f4
ML
257 vunmap(buf->data);
258 for (i = 0; i < buf->nr_pages; i++)
259 __free_page(buf->pages[i]);
260 kfree(buf->pages);
261 } else
7b1269f7 262#endif
746058f4 263 vfree(buf->data);
e0fd9b1d 264 kfree_const(buf->fw_id);
1f2b7959
ML
265 kfree(buf);
266}
267
268static void fw_free_buf(struct firmware_buf *buf)
269{
bd9eb7fb
CL
270 struct firmware_cache *fwc = buf->fwc;
271 spin_lock(&fwc->lock);
272 if (!kref_put(&buf->ref, __fw_free_buf))
273 spin_unlock(&fwc->lock);
1f2b7959
ML
274}
275
746058f4 276/* direct firmware loading support */
27602842
ML
277static char fw_path_para[256];
278static const char * const fw_path[] = {
279 fw_path_para,
746058f4
ML
280 "/lib/firmware/updates/" UTS_RELEASE,
281 "/lib/firmware/updates",
282 "/lib/firmware/" UTS_RELEASE,
283 "/lib/firmware"
284};
285
27602842
ML
286/*
287 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
288 * from kernel command line because firmware_class is generally built in
289 * kernel instead of module.
290 */
291module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
292MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
293
3e358ac2 294static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
746058f4 295{
08da2012 296 int size;
746058f4 297 char *buf;
3e358ac2 298 int rc;
746058f4 299
6af6b163
DK
300 if (!S_ISREG(file_inode(file)->i_mode))
301 return -EINVAL;
302 size = i_size_read(file_inode(file));
4adf07fb 303 if (size <= 0)
3e358ac2 304 return -EINVAL;
746058f4
ML
305 buf = vmalloc(size);
306 if (!buf)
3e358ac2
NH
307 return -ENOMEM;
308 rc = kernel_read(file, 0, buf, size);
309 if (rc != size) {
310 if (rc > 0)
311 rc = -EIO;
6593d924 312 goto fail;
746058f4 313 }
6593d924
KC
314 rc = security_kernel_fw_from_file(file, buf, size);
315 if (rc)
316 goto fail;
746058f4
ML
317 fw_buf->data = buf;
318 fw_buf->size = size;
3e358ac2 319 return 0;
6593d924
KC
320fail:
321 vfree(buf);
322 return rc;
746058f4
ML
323}
324
3e358ac2 325static int fw_get_filesystem_firmware(struct device *device,
4e0c92d0 326 struct firmware_buf *buf)
746058f4 327{
1ba4de17 328 int i, len;
3e358ac2 329 int rc = -ENOENT;
f5727b05
LR
330 char *path;
331
332 path = __getname();
333 if (!path)
334 return -ENOMEM;
746058f4
ML
335
336 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
337 struct file *file;
27602842
ML
338
339 /* skip the unset customized path */
340 if (!fw_path[i][0])
341 continue;
342
1ba4de17
LR
343 len = snprintf(path, PATH_MAX, "%s/%s",
344 fw_path[i], buf->fw_id);
345 if (len >= PATH_MAX) {
346 rc = -ENAMETOOLONG;
347 break;
348 }
746058f4
ML
349
350 file = filp_open(path, O_RDONLY, 0);
351 if (IS_ERR(file))
352 continue;
3e358ac2 353 rc = fw_read_file_contents(file, buf);
746058f4 354 fput(file);
3e358ac2
NH
355 if (rc)
356 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
357 path, rc);
358 else
746058f4
ML
359 break;
360 }
361 __putname(path);
4e0c92d0 362
3e358ac2 363 if (!rc) {
4e0c92d0
TI
364 dev_dbg(device, "firmware: direct-loading firmware %s\n",
365 buf->fw_id);
366 mutex_lock(&fw_lock);
367 set_bit(FW_STATUS_DONE, &buf->status);
368 complete_all(&buf->completion);
369 mutex_unlock(&fw_lock);
370 }
371
3e358ac2 372 return rc;
746058f4
ML
373}
374
7b1269f7
TI
375/* firmware holds the ownership of pages */
376static void firmware_free_data(const struct firmware *fw)
377{
378 /* Loaded directly? */
379 if (!fw->priv) {
380 vfree(fw->data);
381 return;
382 }
383 fw_free_buf(fw->priv);
384}
385
cd7239fa
TI
386/* store the pages buffer info firmware from buf */
387static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
388{
389 fw->priv = buf;
390#ifdef CONFIG_FW_LOADER_USER_HELPER
391 fw->pages = buf->pages;
392#endif
393 fw->size = buf->size;
394 fw->data = buf->data;
395
396 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
397 __func__, buf->fw_id, buf, buf->data,
398 (unsigned int)buf->size);
399}
400
401#ifdef CONFIG_PM_SLEEP
402static void fw_name_devm_release(struct device *dev, void *res)
403{
404 struct fw_name_devm *fwn = res;
405
406 if (fwn->magic == (unsigned long)&fw_cache)
407 pr_debug("%s: fw_name-%s devm-%p released\n",
408 __func__, fwn->name, res);
e0fd9b1d 409 kfree_const(fwn->name);
cd7239fa
TI
410}
411
412static int fw_devm_match(struct device *dev, void *res,
413 void *match_data)
414{
415 struct fw_name_devm *fwn = res;
416
417 return (fwn->magic == (unsigned long)&fw_cache) &&
418 !strcmp(fwn->name, match_data);
419}
420
421static struct fw_name_devm *fw_find_devm_name(struct device *dev,
422 const char *name)
423{
424 struct fw_name_devm *fwn;
425
426 fwn = devres_find(dev, fw_name_devm_release,
427 fw_devm_match, (void *)name);
428 return fwn;
429}
430
431/* add firmware name into devres list */
432static int fw_add_devm_name(struct device *dev, const char *name)
433{
434 struct fw_name_devm *fwn;
435
436 fwn = fw_find_devm_name(dev, name);
437 if (fwn)
438 return 1;
439
e0fd9b1d
LR
440 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm),
441 GFP_KERNEL);
cd7239fa
TI
442 if (!fwn)
443 return -ENOMEM;
e0fd9b1d
LR
444 fwn->name = kstrdup_const(name, GFP_KERNEL);
445 if (!fwn->name) {
446 kfree(fwn);
447 return -ENOMEM;
448 }
cd7239fa
TI
449
450 fwn->magic = (unsigned long)&fw_cache;
cd7239fa
TI
451 devres_add(dev, fwn);
452
453 return 0;
454}
455#else
456static int fw_add_devm_name(struct device *dev, const char *name)
457{
458 return 0;
459}
460#endif
461
462
463/*
464 * user-mode helper code
465 */
7b1269f7 466#ifdef CONFIG_FW_LOADER_USER_HELPER
cd7239fa 467struct firmware_priv {
cd7239fa
TI
468 bool nowait;
469 struct device dev;
470 struct firmware_buf *buf;
471 struct firmware *fw;
472};
7b1269f7 473
f8a4bd34
DT
474static struct firmware_priv *to_firmware_priv(struct device *dev)
475{
476 return container_of(dev, struct firmware_priv, dev);
477}
478
7068cb07 479static void __fw_load_abort(struct firmware_buf *buf)
1da177e4 480{
87597936
ML
481 /*
482 * There is a small window in which user can write to 'loading'
483 * between loading done and disappearance of 'loading'
484 */
485 if (test_bit(FW_STATUS_DONE, &buf->status))
486 return;
487
fe304143 488 list_del_init(&buf->pending_list);
1244691c 489 set_bit(FW_STATUS_ABORT, &buf->status);
1f2b7959 490 complete_all(&buf->completion);
1da177e4
LT
491}
492
7068cb07
GKH
493static void fw_load_abort(struct firmware_priv *fw_priv)
494{
495 struct firmware_buf *buf = fw_priv->buf;
496
497 __fw_load_abort(buf);
87597936
ML
498
499 /* avoid user action after loading abort */
500 fw_priv->buf = NULL;
1da177e4
LT
501}
502
807be03c
TI
503#define is_fw_load_aborted(buf) \
504 test_bit(FW_STATUS_ABORT, &(buf)->status)
505
fe304143
TI
506static LIST_HEAD(pending_fw_head);
507
508/* reboot notifier for avoid deadlock with usermode_lock */
509static int fw_shutdown_notify(struct notifier_block *unused1,
510 unsigned long unused2, void *unused3)
511{
512 mutex_lock(&fw_lock);
513 while (!list_empty(&pending_fw_head))
7068cb07 514 __fw_load_abort(list_first_entry(&pending_fw_head,
fe304143
TI
515 struct firmware_buf,
516 pending_list));
517 mutex_unlock(&fw_lock);
518 return NOTIFY_DONE;
519}
520
521static struct notifier_block fw_shutdown_nb = {
522 .notifier_call = fw_shutdown_notify,
523};
524
14adbe53
GKH
525static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
526 char *buf)
1da177e4
LT
527{
528 return sprintf(buf, "%d\n", loading_timeout);
529}
530
531/**
eb8e3179
RD
532 * firmware_timeout_store - set number of seconds to wait for firmware
533 * @class: device class pointer
e59817bf 534 * @attr: device attribute pointer
eb8e3179
RD
535 * @buf: buffer to scan for timeout value
536 * @count: number of bytes in @buf
537 *
1da177e4 538 * Sets the number of seconds to wait for the firmware. Once
eb8e3179 539 * this expires an error will be returned to the driver and no
1da177e4
LT
540 * firmware will be provided.
541 *
eb8e3179 542 * Note: zero means 'wait forever'.
1da177e4 543 **/
14adbe53
GKH
544static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
545 const char *buf, size_t count)
1da177e4
LT
546{
547 loading_timeout = simple_strtol(buf, NULL, 10);
b92eac01
SG
548 if (loading_timeout < 0)
549 loading_timeout = 0;
f8a4bd34 550
1da177e4
LT
551 return count;
552}
553
673fae90 554static struct class_attribute firmware_class_attrs[] = {
14adbe53 555 __ATTR_RW(timeout),
673fae90
DT
556 __ATTR_NULL
557};
1da177e4 558
1244691c
ML
559static void fw_dev_release(struct device *dev)
560{
561 struct firmware_priv *fw_priv = to_firmware_priv(dev);
65710cb6 562
673fae90 563 kfree(fw_priv);
673fae90 564}
1da177e4 565
7eff2e7a 566static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4 567{
f8a4bd34 568 struct firmware_priv *fw_priv = to_firmware_priv(dev);
1da177e4 569
1244691c 570 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
1da177e4 571 return -ENOMEM;
7eff2e7a 572 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
6897089c 573 return -ENOMEM;
e9045f91
JB
574 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
575 return -ENOMEM;
1da177e4
LT
576
577 return 0;
578}
579
1b81d663
AB
580static struct class firmware_class = {
581 .name = "firmware",
673fae90 582 .class_attrs = firmware_class_attrs,
e55c8790
GKH
583 .dev_uevent = firmware_uevent,
584 .dev_release = fw_dev_release,
1b81d663
AB
585};
586
e55c8790
GKH
587static ssize_t firmware_loading_show(struct device *dev,
588 struct device_attribute *attr, char *buf)
1da177e4 589{
f8a4bd34 590 struct firmware_priv *fw_priv = to_firmware_priv(dev);
87597936
ML
591 int loading = 0;
592
593 mutex_lock(&fw_lock);
594 if (fw_priv->buf)
595 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
596 mutex_unlock(&fw_lock);
f8a4bd34 597
1da177e4
LT
598 return sprintf(buf, "%d\n", loading);
599}
600
6e03a201
DW
601/* Some architectures don't have PAGE_KERNEL_RO */
602#ifndef PAGE_KERNEL_RO
603#define PAGE_KERNEL_RO PAGE_KERNEL
604#endif
253c9240
ML
605
606/* one pages buffer should be mapped/unmapped only once */
607static int fw_map_pages_buf(struct firmware_buf *buf)
608{
cd7239fa 609 if (!buf->is_paged_buf)
746058f4
ML
610 return 0;
611
daa3d67f 612 vunmap(buf->data);
253c9240
ML
613 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
614 if (!buf->data)
615 return -ENOMEM;
616 return 0;
617}
618
1da177e4 619/**
eb8e3179 620 * firmware_loading_store - set value in the 'loading' control file
e55c8790 621 * @dev: device pointer
af9997e4 622 * @attr: device attribute pointer
eb8e3179
RD
623 * @buf: buffer to scan for loading control value
624 * @count: number of bytes in @buf
625 *
1da177e4
LT
626 * The relevant values are:
627 *
628 * 1: Start a load, discarding any previous partial load.
eb8e3179 629 * 0: Conclude the load and hand the data to the driver code.
1da177e4
LT
630 * -1: Conclude the load with an error and discard any written data.
631 **/
e55c8790
GKH
632static ssize_t firmware_loading_store(struct device *dev,
633 struct device_attribute *attr,
634 const char *buf, size_t count)
1da177e4 635{
f8a4bd34 636 struct firmware_priv *fw_priv = to_firmware_priv(dev);
87597936 637 struct firmware_buf *fw_buf;
6593d924 638 ssize_t written = count;
1da177e4 639 int loading = simple_strtol(buf, NULL, 10);
6e03a201 640 int i;
1da177e4 641
eea915bb 642 mutex_lock(&fw_lock);
87597936 643 fw_buf = fw_priv->buf;
1244691c 644 if (!fw_buf)
eea915bb
NH
645 goto out;
646
1da177e4
LT
647 switch (loading) {
648 case 1:
65710cb6 649 /* discarding any previous partial load */
1244691c
ML
650 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
651 for (i = 0; i < fw_buf->nr_pages; i++)
652 __free_page(fw_buf->pages[i]);
653 kfree(fw_buf->pages);
654 fw_buf->pages = NULL;
655 fw_buf->page_array_size = 0;
656 fw_buf->nr_pages = 0;
657 set_bit(FW_STATUS_LOADING, &fw_buf->status);
28eefa75 658 }
1da177e4
LT
659 break;
660 case 0:
1244691c 661 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
6593d924
KC
662 int rc;
663
1244691c
ML
664 set_bit(FW_STATUS_DONE, &fw_buf->status);
665 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
253c9240
ML
666
667 /*
668 * Several loading requests may be pending on
669 * one same firmware buf, so let all requests
670 * see the mapped 'buf->data' once the loading
671 * is completed.
672 * */
6593d924
KC
673 rc = fw_map_pages_buf(fw_buf);
674 if (rc)
2b1278cb 675 dev_err(dev, "%s: map pages failed\n",
676 __func__);
6593d924
KC
677 else
678 rc = security_kernel_fw_from_file(NULL,
679 fw_buf->data, fw_buf->size);
680
681 /*
682 * Same logic as fw_load_abort, only the DONE bit
683 * is ignored and we set ABORT only on failure.
684 */
fe304143 685 list_del_init(&fw_buf->pending_list);
6593d924
KC
686 if (rc) {
687 set_bit(FW_STATUS_ABORT, &fw_buf->status);
688 written = rc;
689 }
1f2b7959 690 complete_all(&fw_buf->completion);
1da177e4
LT
691 break;
692 }
693 /* fallthrough */
694 default:
266a813c 695 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
1da177e4
LT
696 /* fallthrough */
697 case -1:
698 fw_load_abort(fw_priv);
699 break;
700 }
eea915bb
NH
701out:
702 mutex_unlock(&fw_lock);
6593d924 703 return written;
1da177e4
LT
704}
705
e55c8790 706static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
1da177e4 707
f8a4bd34
DT
708static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
709 struct bin_attribute *bin_attr,
710 char *buffer, loff_t offset, size_t count)
1da177e4 711{
b0d1f807 712 struct device *dev = kobj_to_dev(kobj);
f8a4bd34 713 struct firmware_priv *fw_priv = to_firmware_priv(dev);
1244691c 714 struct firmware_buf *buf;
f37e6617 715 ssize_t ret_count;
1da177e4 716
cad1e55d 717 mutex_lock(&fw_lock);
1244691c
ML
718 buf = fw_priv->buf;
719 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
1da177e4
LT
720 ret_count = -ENODEV;
721 goto out;
722 }
1244691c 723 if (offset > buf->size) {
308975fa
JS
724 ret_count = 0;
725 goto out;
726 }
1244691c
ML
727 if (count > buf->size - offset)
728 count = buf->size - offset;
6e03a201
DW
729
730 ret_count = count;
731
732 while (count) {
733 void *page_data;
734 int page_nr = offset >> PAGE_SHIFT;
735 int page_ofs = offset & (PAGE_SIZE-1);
736 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
737
1244691c 738 page_data = kmap(buf->pages[page_nr]);
6e03a201
DW
739
740 memcpy(buffer, page_data + page_ofs, page_cnt);
741
1244691c 742 kunmap(buf->pages[page_nr]);
6e03a201
DW
743 buffer += page_cnt;
744 offset += page_cnt;
745 count -= page_cnt;
746 }
1da177e4 747out:
cad1e55d 748 mutex_unlock(&fw_lock);
1da177e4
LT
749 return ret_count;
750}
eb8e3179 751
f8a4bd34 752static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
1da177e4 753{
1244691c 754 struct firmware_buf *buf = fw_priv->buf;
a76040d8 755 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
6e03a201
DW
756
757 /* If the array of pages is too small, grow it... */
1244691c 758 if (buf->page_array_size < pages_needed) {
6e03a201 759 int new_array_size = max(pages_needed,
1244691c 760 buf->page_array_size * 2);
6e03a201
DW
761 struct page **new_pages;
762
763 new_pages = kmalloc(new_array_size * sizeof(void *),
764 GFP_KERNEL);
765 if (!new_pages) {
766 fw_load_abort(fw_priv);
767 return -ENOMEM;
768 }
1244691c
ML
769 memcpy(new_pages, buf->pages,
770 buf->page_array_size * sizeof(void *));
771 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
772 (new_array_size - buf->page_array_size));
773 kfree(buf->pages);
774 buf->pages = new_pages;
775 buf->page_array_size = new_array_size;
6e03a201 776 }
1da177e4 777
1244691c
ML
778 while (buf->nr_pages < pages_needed) {
779 buf->pages[buf->nr_pages] =
6e03a201 780 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1da177e4 781
1244691c 782 if (!buf->pages[buf->nr_pages]) {
6e03a201
DW
783 fw_load_abort(fw_priv);
784 return -ENOMEM;
785 }
1244691c 786 buf->nr_pages++;
1da177e4 787 }
1da177e4
LT
788 return 0;
789}
790
791/**
eb8e3179 792 * firmware_data_write - write method for firmware
2c3c8bea 793 * @filp: open sysfs file
e55c8790 794 * @kobj: kobject for the device
42e61f4a 795 * @bin_attr: bin_attr structure
eb8e3179
RD
796 * @buffer: buffer being written
797 * @offset: buffer offset for write in total data store area
798 * @count: buffer size
1da177e4 799 *
eb8e3179 800 * Data written to the 'data' attribute will be later handed to
1da177e4
LT
801 * the driver as a firmware image.
802 **/
f8a4bd34
DT
803static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
804 struct bin_attribute *bin_attr,
805 char *buffer, loff_t offset, size_t count)
1da177e4 806{
b0d1f807 807 struct device *dev = kobj_to_dev(kobj);
f8a4bd34 808 struct firmware_priv *fw_priv = to_firmware_priv(dev);
1244691c 809 struct firmware_buf *buf;
1da177e4
LT
810 ssize_t retval;
811
812 if (!capable(CAP_SYS_RAWIO))
813 return -EPERM;
b92eac01 814
cad1e55d 815 mutex_lock(&fw_lock);
1244691c
ML
816 buf = fw_priv->buf;
817 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
1da177e4
LT
818 retval = -ENODEV;
819 goto out;
820 }
65710cb6 821
1da177e4
LT
822 retval = fw_realloc_buffer(fw_priv, offset + count);
823 if (retval)
824 goto out;
825
1da177e4 826 retval = count;
6e03a201
DW
827
828 while (count) {
829 void *page_data;
830 int page_nr = offset >> PAGE_SHIFT;
831 int page_ofs = offset & (PAGE_SIZE - 1);
832 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
833
1244691c 834 page_data = kmap(buf->pages[page_nr]);
6e03a201
DW
835
836 memcpy(page_data + page_ofs, buffer, page_cnt);
837
1244691c 838 kunmap(buf->pages[page_nr]);
6e03a201
DW
839 buffer += page_cnt;
840 offset += page_cnt;
841 count -= page_cnt;
842 }
843
1244691c 844 buf->size = max_t(size_t, offset, buf->size);
1da177e4 845out:
cad1e55d 846 mutex_unlock(&fw_lock);
1da177e4
LT
847 return retval;
848}
eb8e3179 849
0983ca2d
DT
850static struct bin_attribute firmware_attr_data = {
851 .attr = { .name = "data", .mode = 0644 },
1da177e4
LT
852 .size = 0,
853 .read = firmware_data_read,
854 .write = firmware_data_write,
855};
856
46239902
TI
857static struct attribute *fw_dev_attrs[] = {
858 &dev_attr_loading.attr,
859 NULL
860};
861
862static struct bin_attribute *fw_dev_bin_attrs[] = {
863 &firmware_attr_data,
864 NULL
865};
866
867static const struct attribute_group fw_dev_attr_group = {
868 .attrs = fw_dev_attrs,
869 .bin_attrs = fw_dev_bin_attrs,
870};
871
872static const struct attribute_group *fw_dev_attr_groups[] = {
873 &fw_dev_attr_group,
874 NULL
875};
876
f8a4bd34 877static struct firmware_priv *
dddb5549 878fw_create_instance(struct firmware *firmware, const char *fw_name,
14c4bae7 879 struct device *device, unsigned int opt_flags)
1da177e4 880{
f8a4bd34
DT
881 struct firmware_priv *fw_priv;
882 struct device *f_dev;
1da177e4 883
1244691c 884 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
f8a4bd34 885 if (!fw_priv) {
1244691c
ML
886 fw_priv = ERR_PTR(-ENOMEM);
887 goto exit;
888 }
889
14c4bae7 890 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
1f2b7959 891 fw_priv->fw = firmware;
f8a4bd34
DT
892 f_dev = &fw_priv->dev;
893
894 device_initialize(f_dev);
99c2aa72 895 dev_set_name(f_dev, "%s", fw_name);
e55c8790
GKH
896 f_dev->parent = device;
897 f_dev->class = &firmware_class;
46239902 898 f_dev->groups = fw_dev_attr_groups;
1244691c 899exit:
f8a4bd34 900 return fw_priv;
1da177e4
LT
901}
902
cd7239fa 903/* load a firmware via user helper */
14c4bae7
TI
904static int _request_firmware_load(struct firmware_priv *fw_priv,
905 unsigned int opt_flags, long timeout)
1f2b7959 906{
cd7239fa
TI
907 int retval = 0;
908 struct device *f_dev = &fw_priv->dev;
909 struct firmware_buf *buf = fw_priv->buf;
1f2b7959 910
cd7239fa
TI
911 /* fall back on userspace loading */
912 buf->is_paged_buf = true;
1f2b7959 913
cd7239fa 914 dev_set_uevent_suppress(f_dev, true);
f531f05a 915
cd7239fa
TI
916 retval = device_add(f_dev);
917 if (retval) {
918 dev_err(f_dev, "%s: device_register failed\n", __func__);
919 goto err_put_dev;
920 }
f531f05a 921
1eeeef15
MB
922 mutex_lock(&fw_lock);
923 list_add(&buf->pending_list, &pending_fw_head);
924 mutex_unlock(&fw_lock);
925
14c4bae7 926 if (opt_flags & FW_OPT_UEVENT) {
af5bc11e 927 buf->need_uevent = true;
cd7239fa
TI
928 dev_set_uevent_suppress(f_dev, false);
929 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
cd7239fa 930 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
68ff2a00
ML
931 } else {
932 timeout = MAX_JIFFY_OFFSET;
cd7239fa 933 }
f531f05a 934
68ff2a00
ML
935 retval = wait_for_completion_interruptible_timeout(&buf->completion,
936 timeout);
937 if (retval == -ERESTARTSYS || !retval) {
0cb64249
ML
938 mutex_lock(&fw_lock);
939 fw_load_abort(fw_priv);
940 mutex_unlock(&fw_lock);
ef518cc8
ZD
941 } else if (retval > 0) {
942 retval = 0;
0cb64249 943 }
f531f05a 944
0542ad88
SK
945 if (is_fw_load_aborted(buf))
946 retval = -EAGAIN;
947 else if (!buf->data)
2b1278cb 948 retval = -ENOMEM;
f531f05a 949
cd7239fa
TI
950 device_del(f_dev);
951err_put_dev:
952 put_device(f_dev);
953 return retval;
f531f05a 954}
cd7239fa
TI
955
956static int fw_load_from_user_helper(struct firmware *firmware,
957 const char *name, struct device *device,
14c4bae7 958 unsigned int opt_flags, long timeout)
cfe016b1 959{
cd7239fa
TI
960 struct firmware_priv *fw_priv;
961
14c4bae7 962 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
cd7239fa
TI
963 if (IS_ERR(fw_priv))
964 return PTR_ERR(fw_priv);
965
966 fw_priv->buf = firmware->priv;
14c4bae7 967 return _request_firmware_load(fw_priv, opt_flags, timeout);
cfe016b1 968}
ddf1f064 969
5b7cb7a1 970#ifdef CONFIG_PM_SLEEP
ddf1f064
ML
971/* kill pending requests without uevent to avoid blocking suspend */
972static void kill_requests_without_uevent(void)
973{
974 struct firmware_buf *buf;
975 struct firmware_buf *next;
976
977 mutex_lock(&fw_lock);
978 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
979 if (!buf->need_uevent)
7068cb07 980 __fw_load_abort(buf);
ddf1f064
ML
981 }
982 mutex_unlock(&fw_lock);
983}
5b7cb7a1 984#endif
ddf1f064 985
cd7239fa
TI
986#else /* CONFIG_FW_LOADER_USER_HELPER */
987static inline int
988fw_load_from_user_helper(struct firmware *firmware, const char *name,
14c4bae7 989 struct device *device, unsigned int opt_flags,
cd7239fa
TI
990 long timeout)
991{
992 return -ENOENT;
993}
807be03c
TI
994
995/* No abort during direct loading */
996#define is_fw_load_aborted(buf) false
997
5b7cb7a1 998#ifdef CONFIG_PM_SLEEP
ddf1f064 999static inline void kill_requests_without_uevent(void) { }
5b7cb7a1 1000#endif
ddf1f064 1001
cd7239fa
TI
1002#endif /* CONFIG_FW_LOADER_USER_HELPER */
1003
f531f05a 1004
4e0c92d0
TI
1005/* wait until the shared firmware_buf becomes ready (or error) */
1006static int sync_cached_firmware_buf(struct firmware_buf *buf)
1f2b7959 1007{
4e0c92d0
TI
1008 int ret = 0;
1009
1010 mutex_lock(&fw_lock);
1011 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
807be03c 1012 if (is_fw_load_aborted(buf)) {
4e0c92d0
TI
1013 ret = -ENOENT;
1014 break;
1015 }
1016 mutex_unlock(&fw_lock);
000deba7 1017 ret = wait_for_completion_interruptible(&buf->completion);
4e0c92d0
TI
1018 mutex_lock(&fw_lock);
1019 }
1020 mutex_unlock(&fw_lock);
1021 return ret;
1f2b7959
ML
1022}
1023
4e0c92d0
TI
1024/* prepare firmware and firmware_buf structs;
1025 * return 0 if a firmware is already assigned, 1 if need to load one,
1026 * or a negative error code
1027 */
1028static int
1029_request_firmware_prepare(struct firmware **firmware_p, const char *name,
1030 struct device *device)
1da177e4 1031{
1da177e4 1032 struct firmware *firmware;
1f2b7959
ML
1033 struct firmware_buf *buf;
1034 int ret;
1da177e4 1035
4aed0644 1036 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
1da177e4 1037 if (!firmware) {
266a813c
BH
1038 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1039 __func__);
4e0c92d0 1040 return -ENOMEM;
1da177e4 1041 }
1da177e4 1042
bcb9bd18 1043 if (fw_get_builtin_firmware(firmware, name)) {
6f18ff91 1044 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
4e0c92d0 1045 return 0; /* assigned */
5658c769
DW
1046 }
1047
1f2b7959 1048 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
4e0c92d0
TI
1049
1050 /*
1051 * bind with 'buf' now to avoid warning in failure path
1052 * of requesting firmware.
1053 */
1054 firmware->priv = buf;
1055
1056 if (ret > 0) {
1057 ret = sync_cached_firmware_buf(buf);
1058 if (!ret) {
1059 fw_set_page_data(buf, firmware);
1060 return 0; /* assigned */
1061 }
dddb5549 1062 }
811fa400 1063
4e0c92d0
TI
1064 if (ret < 0)
1065 return ret;
1066 return 1; /* need to load */
1067}
1068
e771d1aa 1069static int assign_firmware_buf(struct firmware *fw, struct device *device,
14c4bae7 1070 unsigned int opt_flags)
4e0c92d0
TI
1071{
1072 struct firmware_buf *buf = fw->priv;
1073
1f2b7959 1074 mutex_lock(&fw_lock);
807be03c 1075 if (!buf->size || is_fw_load_aborted(buf)) {
4e0c92d0
TI
1076 mutex_unlock(&fw_lock);
1077 return -ENOENT;
1f2b7959 1078 }
65710cb6 1079
4e0c92d0
TI
1080 /*
1081 * add firmware name into devres list so that we can auto cache
1082 * and uncache firmware for device.
1083 *
1084 * device may has been deleted already, but the problem
1085 * should be fixed in devres or driver core.
1086 */
14c4bae7
TI
1087 /* don't cache firmware handled without uevent */
1088 if (device && (opt_flags & FW_OPT_UEVENT))
4e0c92d0
TI
1089 fw_add_devm_name(device, buf->fw_id);
1090
1091 /*
1092 * After caching firmware image is started, let it piggyback
1093 * on request firmware.
1094 */
1095 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1096 if (fw_cache_piggyback_on_request(buf->fw_id))
1097 kref_get(&buf->ref);
1098 }
1099
1100 /* pass the pages buffer to driver at the last minute */
1101 fw_set_page_data(buf, fw);
1f2b7959 1102 mutex_unlock(&fw_lock);
4e0c92d0 1103 return 0;
65710cb6
ML
1104}
1105
4e0c92d0
TI
1106/* called from request_firmware() and request_firmware_work_func() */
1107static int
1108_request_firmware(const struct firmware **firmware_p, const char *name,
14c4bae7 1109 struct device *device, unsigned int opt_flags)
4e0c92d0
TI
1110{
1111 struct firmware *fw;
1112 long timeout;
1113 int ret;
1114
1115 if (!firmware_p)
1116 return -EINVAL;
1117
471b095d
KC
1118 if (!name || name[0] == '\0')
1119 return -EINVAL;
1120
4e0c92d0
TI
1121 ret = _request_firmware_prepare(&fw, name, device);
1122 if (ret <= 0) /* error or already assigned */
1123 goto out;
1124
1125 ret = 0;
1126 timeout = firmware_loading_timeout();
14c4bae7 1127 if (opt_flags & FW_OPT_NOWAIT) {
4e0c92d0
TI
1128 timeout = usermodehelper_read_lock_wait(timeout);
1129 if (!timeout) {
1130 dev_dbg(device, "firmware: %s loading timed out\n",
1131 name);
1132 ret = -EBUSY;
1133 goto out;
1134 }
1135 } else {
1136 ret = usermodehelper_read_trylock();
1137 if (WARN_ON(ret)) {
1138 dev_err(device, "firmware: %s will not be loaded\n",
1139 name);
1140 goto out;
1141 }
1142 }
1143
3e358ac2
NH
1144 ret = fw_get_filesystem_firmware(device, fw->priv);
1145 if (ret) {
c868edf4 1146 if (!(opt_flags & FW_OPT_NO_WARN))
bba3a87e 1147 dev_warn(device,
c868edf4
LR
1148 "Direct firmware load for %s failed with error %d\n",
1149 name, ret);
1150 if (opt_flags & FW_OPT_USERHELPER) {
bba3a87e
TI
1151 dev_warn(device, "Falling back to user helper\n");
1152 ret = fw_load_from_user_helper(fw, name, device,
14c4bae7 1153 opt_flags, timeout);
bba3a87e 1154 }
3e358ac2 1155 }
e771d1aa 1156
4e0c92d0 1157 if (!ret)
14c4bae7 1158 ret = assign_firmware_buf(fw, device, opt_flags);
4e0c92d0
TI
1159
1160 usermodehelper_read_unlock();
1161
1162 out:
1163 if (ret < 0) {
1164 release_firmware(fw);
1165 fw = NULL;
1166 }
1167
1168 *firmware_p = fw;
1169 return ret;
1170}
1171
6e3eaab0 1172/**
312c004d 1173 * request_firmware: - send firmware request and wait for it
eb8e3179
RD
1174 * @firmware_p: pointer to firmware image
1175 * @name: name of firmware file
1176 * @device: device for which firmware is being loaded
1177 *
1178 * @firmware_p will be used to return a firmware image by the name
6e3eaab0
AS
1179 * of @name for device @device.
1180 *
1181 * Should be called from user context where sleeping is allowed.
1182 *
312c004d 1183 * @name will be used as $FIRMWARE in the uevent environment and
6e3eaab0
AS
1184 * should be distinctive enough not to be confused with any other
1185 * firmware image for this or any other device.
0cfc1e1e
ML
1186 *
1187 * Caller must hold the reference count of @device.
6a927857
ML
1188 *
1189 * The function can be called safely inside device's suspend and
1190 * resume callback.
6e3eaab0
AS
1191 **/
1192int
1193request_firmware(const struct firmware **firmware_p, const char *name,
ea31003c 1194 struct device *device)
6e3eaab0 1195{
d6c8aa39
ML
1196 int ret;
1197
1198 /* Need to pin this module until return */
1199 __module_get(THIS_MODULE);
14c4bae7
TI
1200 ret = _request_firmware(firmware_p, name, device,
1201 FW_OPT_UEVENT | FW_OPT_FALLBACK);
d6c8aa39
ML
1202 module_put(THIS_MODULE);
1203 return ret;
6e3eaab0 1204}
f494513f 1205EXPORT_SYMBOL(request_firmware);
6e3eaab0 1206
bba3a87e 1207/**
3c1556b2 1208 * request_firmware_direct: - load firmware directly without usermode helper
bba3a87e
TI
1209 * @firmware_p: pointer to firmware image
1210 * @name: name of firmware file
1211 * @device: device for which firmware is being loaded
1212 *
1213 * This function works pretty much like request_firmware(), but this doesn't
1214 * fall back to usermode helper even if the firmware couldn't be loaded
1215 * directly from fs. Hence it's useful for loading optional firmwares, which
1216 * aren't always present, without extra long timeouts of udev.
1217 **/
1218int request_firmware_direct(const struct firmware **firmware_p,
1219 const char *name, struct device *device)
1220{
1221 int ret;
ea31003c 1222
bba3a87e 1223 __module_get(THIS_MODULE);
c868edf4
LR
1224 ret = _request_firmware(firmware_p, name, device,
1225 FW_OPT_UEVENT | FW_OPT_NO_WARN);
bba3a87e
TI
1226 module_put(THIS_MODULE);
1227 return ret;
1228}
1229EXPORT_SYMBOL_GPL(request_firmware_direct);
bba3a87e 1230
1da177e4
LT
1231/**
1232 * release_firmware: - release the resource associated with a firmware image
eb8e3179 1233 * @fw: firmware resource to release
1da177e4 1234 **/
bcb9bd18 1235void release_firmware(const struct firmware *fw)
1da177e4
LT
1236{
1237 if (fw) {
bcb9bd18
DT
1238 if (!fw_is_builtin_firmware(fw))
1239 firmware_free_data(fw);
1da177e4
LT
1240 kfree(fw);
1241 }
1242}
f494513f 1243EXPORT_SYMBOL(release_firmware);
1da177e4 1244
1da177e4
LT
1245/* Async support */
1246struct firmware_work {
1247 struct work_struct work;
1248 struct module *module;
1249 const char *name;
1250 struct device *device;
1251 void *context;
1252 void (*cont)(const struct firmware *fw, void *context);
14c4bae7 1253 unsigned int opt_flags;
1da177e4
LT
1254};
1255
a36cf844 1256static void request_firmware_work_func(struct work_struct *work)
1da177e4 1257{
a36cf844 1258 struct firmware_work *fw_work;
1da177e4 1259 const struct firmware *fw;
f8a4bd34 1260
a36cf844 1261 fw_work = container_of(work, struct firmware_work, work);
811fa400 1262
4e0c92d0 1263 _request_firmware(&fw, fw_work->name, fw_work->device,
14c4bae7 1264 fw_work->opt_flags);
9ebfbd45 1265 fw_work->cont(fw, fw_work->context);
4e0c92d0 1266 put_device(fw_work->device); /* taken in request_firmware_nowait() */
9ebfbd45 1267
1da177e4 1268 module_put(fw_work->module);
f9692b26 1269 kfree_const(fw_work->name);
1da177e4 1270 kfree(fw_work);
1da177e4
LT
1271}
1272
1273/**
3c31f07a 1274 * request_firmware_nowait - asynchronous version of request_firmware
eb8e3179 1275 * @module: module requesting the firmware
312c004d 1276 * @uevent: sends uevent to copy the firmware image if this flag
eb8e3179
RD
1277 * is non-zero else the firmware copy must be done manually.
1278 * @name: name of firmware file
1279 * @device: device for which firmware is being loaded
9ebfbd45 1280 * @gfp: allocation flags
eb8e3179
RD
1281 * @context: will be passed over to @cont, and
1282 * @fw may be %NULL if firmware request fails.
1283 * @cont: function will be called asynchronously when the firmware
1284 * request is over.
1da177e4 1285 *
0cfc1e1e
ML
1286 * Caller must hold the reference count of @device.
1287 *
6f21a62a
ML
1288 * Asynchronous variant of request_firmware() for user contexts:
1289 * - sleep for as small periods as possible since it may
1290 * increase kernel boot time of built-in device drivers
1291 * requesting firmware in their ->probe() methods, if
1292 * @gfp is GFP_KERNEL.
1293 *
1294 * - can't sleep at all if @gfp is GFP_ATOMIC.
1da177e4
LT
1295 **/
1296int
1297request_firmware_nowait(
072fc8f0 1298 struct module *module, bool uevent,
9ebfbd45 1299 const char *name, struct device *device, gfp_t gfp, void *context,
1da177e4
LT
1300 void (*cont)(const struct firmware *fw, void *context))
1301{
f8a4bd34 1302 struct firmware_work *fw_work;
1da177e4 1303
ea31003c 1304 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
1da177e4
LT
1305 if (!fw_work)
1306 return -ENOMEM;
f8a4bd34
DT
1307
1308 fw_work->module = module;
f9692b26
LR
1309 fw_work->name = kstrdup_const(name, gfp);
1310 if (!fw_work->name)
1311 return -ENOMEM;
f8a4bd34
DT
1312 fw_work->device = device;
1313 fw_work->context = context;
1314 fw_work->cont = cont;
14c4bae7 1315 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
5a1379e8 1316 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
f8a4bd34 1317
1da177e4 1318 if (!try_module_get(module)) {
f9692b26 1319 kfree_const(fw_work->name);
1da177e4
LT
1320 kfree(fw_work);
1321 return -EFAULT;
1322 }
1323
0cfc1e1e 1324 get_device(fw_work->device);
a36cf844
SB
1325 INIT_WORK(&fw_work->work, request_firmware_work_func);
1326 schedule_work(&fw_work->work);
1da177e4
LT
1327 return 0;
1328}
f494513f 1329EXPORT_SYMBOL(request_firmware_nowait);
1da177e4 1330
90f89081
ML
1331#ifdef CONFIG_PM_SLEEP
1332static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1333
2887b395
ML
1334/**
1335 * cache_firmware - cache one firmware image in kernel memory space
1336 * @fw_name: the firmware image name
1337 *
1338 * Cache firmware in kernel memory so that drivers can use it when
1339 * system isn't ready for them to request firmware image from userspace.
1340 * Once it returns successfully, driver can use request_firmware or its
1341 * nowait version to get the cached firmware without any interacting
1342 * with userspace
1343 *
1344 * Return 0 if the firmware image has been cached successfully
1345 * Return !0 otherwise
1346 *
1347 */
93232e46 1348static int cache_firmware(const char *fw_name)
2887b395
ML
1349{
1350 int ret;
1351 const struct firmware *fw;
1352
1353 pr_debug("%s: %s\n", __func__, fw_name);
1354
1355 ret = request_firmware(&fw, fw_name, NULL);
1356 if (!ret)
1357 kfree(fw);
1358
1359 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1360
1361 return ret;
1362}
1363
6a2c1234
ML
1364static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1365{
1366 struct firmware_buf *tmp;
1367 struct firmware_cache *fwc = &fw_cache;
1368
1369 spin_lock(&fwc->lock);
1370 tmp = __fw_lookup_buf(fw_name);
1371 spin_unlock(&fwc->lock);
1372
1373 return tmp;
1374}
1375
2887b395
ML
1376/**
1377 * uncache_firmware - remove one cached firmware image
1378 * @fw_name: the firmware image name
1379 *
1380 * Uncache one firmware image which has been cached successfully
1381 * before.
1382 *
1383 * Return 0 if the firmware cache has been removed successfully
1384 * Return !0 otherwise
1385 *
1386 */
93232e46 1387static int uncache_firmware(const char *fw_name)
2887b395
ML
1388{
1389 struct firmware_buf *buf;
1390 struct firmware fw;
1391
1392 pr_debug("%s: %s\n", __func__, fw_name);
1393
1394 if (fw_get_builtin_firmware(&fw, fw_name))
1395 return 0;
1396
1397 buf = fw_lookup_buf(fw_name);
1398 if (buf) {
1399 fw_free_buf(buf);
1400 return 0;
1401 }
1402
1403 return -EINVAL;
1404}
1405
37276a51
ML
1406static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1407{
1408 struct fw_cache_entry *fce;
1409
e0fd9b1d 1410 fce = kzalloc(sizeof(*fce), GFP_ATOMIC);
37276a51
ML
1411 if (!fce)
1412 goto exit;
1413
e0fd9b1d
LR
1414 fce->name = kstrdup_const(name, GFP_ATOMIC);
1415 if (!fce->name) {
1416 kfree(fce);
1417 fce = NULL;
1418 goto exit;
1419 }
37276a51
ML
1420exit:
1421 return fce;
1422}
1423
373304fe 1424static int __fw_entry_found(const char *name)
ac39b3ea
ML
1425{
1426 struct firmware_cache *fwc = &fw_cache;
1427 struct fw_cache_entry *fce;
ac39b3ea 1428
ac39b3ea
ML
1429 list_for_each_entry(fce, &fwc->fw_names, list) {
1430 if (!strcmp(fce->name, name))
373304fe 1431 return 1;
ac39b3ea 1432 }
373304fe
ML
1433 return 0;
1434}
1435
1436static int fw_cache_piggyback_on_request(const char *name)
1437{
1438 struct firmware_cache *fwc = &fw_cache;
1439 struct fw_cache_entry *fce;
1440 int ret = 0;
1441
1442 spin_lock(&fwc->name_lock);
1443 if (__fw_entry_found(name))
1444 goto found;
ac39b3ea
ML
1445
1446 fce = alloc_fw_cache_entry(name);
1447 if (fce) {
1448 ret = 1;
1449 list_add(&fce->list, &fwc->fw_names);
1450 pr_debug("%s: fw: %s\n", __func__, name);
1451 }
1452found:
1453 spin_unlock(&fwc->name_lock);
1454 return ret;
1455}
1456
37276a51
ML
1457static void free_fw_cache_entry(struct fw_cache_entry *fce)
1458{
e0fd9b1d 1459 kfree_const(fce->name);
37276a51
ML
1460 kfree(fce);
1461}
1462
1463static void __async_dev_cache_fw_image(void *fw_entry,
1464 async_cookie_t cookie)
1465{
1466 struct fw_cache_entry *fce = fw_entry;
1467 struct firmware_cache *fwc = &fw_cache;
1468 int ret;
1469
1470 ret = cache_firmware(fce->name);
ac39b3ea
ML
1471 if (ret) {
1472 spin_lock(&fwc->name_lock);
1473 list_del(&fce->list);
1474 spin_unlock(&fwc->name_lock);
37276a51 1475
ac39b3ea
ML
1476 free_fw_cache_entry(fce);
1477 }
37276a51
ML
1478}
1479
1480/* called with dev->devres_lock held */
1481static void dev_create_fw_entry(struct device *dev, void *res,
1482 void *data)
1483{
1484 struct fw_name_devm *fwn = res;
1485 const char *fw_name = fwn->name;
1486 struct list_head *head = data;
1487 struct fw_cache_entry *fce;
1488
1489 fce = alloc_fw_cache_entry(fw_name);
1490 if (fce)
1491 list_add(&fce->list, head);
1492}
1493
1494static int devm_name_match(struct device *dev, void *res,
1495 void *match_data)
1496{
1497 struct fw_name_devm *fwn = res;
1498 return (fwn->magic == (unsigned long)match_data);
1499}
1500
ab6dd8e5 1501static void dev_cache_fw_image(struct device *dev, void *data)
37276a51
ML
1502{
1503 LIST_HEAD(todo);
1504 struct fw_cache_entry *fce;
1505 struct fw_cache_entry *fce_next;
1506 struct firmware_cache *fwc = &fw_cache;
1507
1508 devres_for_each_res(dev, fw_name_devm_release,
1509 devm_name_match, &fw_cache,
1510 dev_create_fw_entry, &todo);
1511
1512 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1513 list_del(&fce->list);
1514
1515 spin_lock(&fwc->name_lock);
373304fe
ML
1516 /* only one cache entry for one firmware */
1517 if (!__fw_entry_found(fce->name)) {
373304fe
ML
1518 list_add(&fce->list, &fwc->fw_names);
1519 } else {
1520 free_fw_cache_entry(fce);
1521 fce = NULL;
1522 }
37276a51
ML
1523 spin_unlock(&fwc->name_lock);
1524
373304fe 1525 if (fce)
d28d3882
ML
1526 async_schedule_domain(__async_dev_cache_fw_image,
1527 (void *)fce,
1528 &fw_cache_domain);
37276a51
ML
1529 }
1530}
1531
1532static void __device_uncache_fw_images(void)
1533{
1534 struct firmware_cache *fwc = &fw_cache;
1535 struct fw_cache_entry *fce;
1536
1537 spin_lock(&fwc->name_lock);
1538 while (!list_empty(&fwc->fw_names)) {
1539 fce = list_entry(fwc->fw_names.next,
1540 struct fw_cache_entry, list);
1541 list_del(&fce->list);
1542 spin_unlock(&fwc->name_lock);
1543
1544 uncache_firmware(fce->name);
1545 free_fw_cache_entry(fce);
1546
1547 spin_lock(&fwc->name_lock);
1548 }
1549 spin_unlock(&fwc->name_lock);
1550}
1551
1552/**
1553 * device_cache_fw_images - cache devices' firmware
1554 *
1555 * If one device called request_firmware or its nowait version
1556 * successfully before, the firmware names are recored into the
1557 * device's devres link list, so device_cache_fw_images can call
1558 * cache_firmware() to cache these firmwares for the device,
1559 * then the device driver can load its firmwares easily at
1560 * time when system is not ready to complete loading firmware.
1561 */
1562static void device_cache_fw_images(void)
1563{
1564 struct firmware_cache *fwc = &fw_cache;
ffe53f6f 1565 int old_timeout;
37276a51
ML
1566 DEFINE_WAIT(wait);
1567
1568 pr_debug("%s\n", __func__);
1569
373304fe
ML
1570 /* cancel uncache work */
1571 cancel_delayed_work_sync(&fwc->work);
1572
ffe53f6f
ML
1573 /*
1574 * use small loading timeout for caching devices' firmware
1575 * because all these firmware images have been loaded
1576 * successfully at lease once, also system is ready for
1577 * completing firmware loading now. The maximum size of
1578 * firmware in current distributions is about 2M bytes,
1579 * so 10 secs should be enough.
1580 */
1581 old_timeout = loading_timeout;
1582 loading_timeout = 10;
1583
ac39b3ea
ML
1584 mutex_lock(&fw_lock);
1585 fwc->state = FW_LOADER_START_CACHE;
ab6dd8e5 1586 dpm_for_each_dev(NULL, dev_cache_fw_image);
ac39b3ea 1587 mutex_unlock(&fw_lock);
37276a51
ML
1588
1589 /* wait for completion of caching firmware for all devices */
d28d3882 1590 async_synchronize_full_domain(&fw_cache_domain);
ffe53f6f
ML
1591
1592 loading_timeout = old_timeout;
37276a51
ML
1593}
1594
1595/**
1596 * device_uncache_fw_images - uncache devices' firmware
1597 *
1598 * uncache all firmwares which have been cached successfully
1599 * by device_uncache_fw_images earlier
1600 */
1601static void device_uncache_fw_images(void)
1602{
1603 pr_debug("%s\n", __func__);
1604 __device_uncache_fw_images();
1605}
1606
1607static void device_uncache_fw_images_work(struct work_struct *work)
1608{
1609 device_uncache_fw_images();
1610}
1611
1612/**
1613 * device_uncache_fw_images_delay - uncache devices firmwares
1614 * @delay: number of milliseconds to delay uncache device firmwares
1615 *
1616 * uncache all devices's firmwares which has been cached successfully
1617 * by device_cache_fw_images after @delay milliseconds.
1618 */
1619static void device_uncache_fw_images_delay(unsigned long delay)
1620{
bce6618a
SD
1621 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1622 msecs_to_jiffies(delay));
37276a51
ML
1623}
1624
07646d9c
ML
1625static int fw_pm_notify(struct notifier_block *notify_block,
1626 unsigned long mode, void *unused)
1627{
1628 switch (mode) {
1629 case PM_HIBERNATION_PREPARE:
1630 case PM_SUSPEND_PREPARE:
f8d5b9e9 1631 case PM_RESTORE_PREPARE:
af5bc11e 1632 kill_requests_without_uevent();
07646d9c
ML
1633 device_cache_fw_images();
1634 break;
1635
1636 case PM_POST_SUSPEND:
1637 case PM_POST_HIBERNATION:
1638 case PM_POST_RESTORE:
ac39b3ea
ML
1639 /*
1640 * In case that system sleep failed and syscore_suspend is
1641 * not called.
1642 */
1643 mutex_lock(&fw_lock);
1644 fw_cache.state = FW_LOADER_NO_CACHE;
1645 mutex_unlock(&fw_lock);
1646
07646d9c
ML
1647 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1648 break;
1649 }
1650
1651 return 0;
1652}
07646d9c 1653
ac39b3ea
ML
1654/* stop caching firmware once syscore_suspend is reached */
1655static int fw_suspend(void)
1656{
1657 fw_cache.state = FW_LOADER_NO_CACHE;
1658 return 0;
1659}
1660
1661static struct syscore_ops fw_syscore_ops = {
1662 .suspend = fw_suspend,
1663};
cfe016b1
ML
1664#else
1665static int fw_cache_piggyback_on_request(const char *name)
1666{
1667 return 0;
1668}
1669#endif
ac39b3ea 1670
37276a51
ML
1671static void __init fw_cache_init(void)
1672{
1673 spin_lock_init(&fw_cache.lock);
1674 INIT_LIST_HEAD(&fw_cache.head);
cfe016b1 1675 fw_cache.state = FW_LOADER_NO_CACHE;
37276a51 1676
cfe016b1 1677#ifdef CONFIG_PM_SLEEP
37276a51
ML
1678 spin_lock_init(&fw_cache.name_lock);
1679 INIT_LIST_HEAD(&fw_cache.fw_names);
37276a51 1680
37276a51
ML
1681 INIT_DELAYED_WORK(&fw_cache.work,
1682 device_uncache_fw_images_work);
07646d9c
ML
1683
1684 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1685 register_pm_notifier(&fw_cache.pm_notify);
ac39b3ea
ML
1686
1687 register_syscore_ops(&fw_syscore_ops);
cfe016b1 1688#endif
37276a51
ML
1689}
1690
673fae90 1691static int __init firmware_class_init(void)
1da177e4 1692{
1f2b7959 1693 fw_cache_init();
7b1269f7 1694#ifdef CONFIG_FW_LOADER_USER_HELPER
fe304143 1695 register_reboot_notifier(&fw_shutdown_nb);
673fae90 1696 return class_register(&firmware_class);
7b1269f7
TI
1697#else
1698 return 0;
1699#endif
1da177e4 1700}
673fae90
DT
1701
1702static void __exit firmware_class_exit(void)
1da177e4 1703{
cfe016b1 1704#ifdef CONFIG_PM_SLEEP
ac39b3ea 1705 unregister_syscore_ops(&fw_syscore_ops);
07646d9c 1706 unregister_pm_notifier(&fw_cache.pm_notify);
cfe016b1 1707#endif
7b1269f7 1708#ifdef CONFIG_FW_LOADER_USER_HELPER
fe304143 1709 unregister_reboot_notifier(&fw_shutdown_nb);
1da177e4 1710 class_unregister(&firmware_class);
7b1269f7 1711#endif
1da177e4
LT
1712}
1713
a30a6a2c 1714fs_initcall(firmware_class_init);
1da177e4 1715module_exit(firmware_class_exit);