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