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