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