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