Linux 3.14.51
[linux/fpc-iii.git] / drivers / base / firmware_class.c
blobf0c15f9c2b2f1309928790f8517ff1817f0ccee5
1 /*
2 * firmware_class.c - Multi purpose firmware loading support
4 * Copyright (c) 2003 Manuel Estrada Sainz
6 * Please see Documentation/firmware_class/ for more information.
8 */
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 #include <linux/reboot.h>
32 #include <generated/utsrelease.h>
34 #include "base.h"
36 MODULE_AUTHOR("Manuel Estrada Sainz");
37 MODULE_DESCRIPTION("Multi purpose firmware loading support");
38 MODULE_LICENSE("GPL");
40 /* Builtin firmware support */
42 #ifdef CONFIG_FW_LOADER
44 extern struct builtin_fw __start_builtin_fw[];
45 extern struct builtin_fw __end_builtin_fw[];
47 static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
49 struct builtin_fw *b_fw;
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;
59 return false;
62 static bool fw_is_builtin_firmware(const struct firmware *fw)
64 struct builtin_fw *b_fw;
66 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
67 if (fw->data == b_fw->data)
68 return true;
70 return false;
73 #else /* Module case - no builtin firmware support */
75 static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
77 return false;
80 static inline bool fw_is_builtin_firmware(const struct firmware *fw)
82 return false;
84 #endif
86 enum {
87 FW_STATUS_LOADING,
88 FW_STATUS_DONE,
89 FW_STATUS_ABORT,
92 static int loading_timeout = 60; /* In seconds */
94 static inline long firmware_loading_timeout(void)
96 return loading_timeout > 0 ? loading_timeout * HZ : MAX_SCHEDULE_TIMEOUT;
99 /* firmware behavior options */
100 #define FW_OPT_UEVENT (1U << 0)
101 #define FW_OPT_NOWAIT (1U << 1)
102 #ifdef CONFIG_FW_LOADER_USER_HELPER
103 #define FW_OPT_FALLBACK (1U << 2)
104 #else
105 #define FW_OPT_FALLBACK 0
106 #endif
108 struct firmware_cache {
109 /* firmware_buf instance will be added into the below list */
110 spinlock_t lock;
111 struct list_head head;
112 int state;
114 #ifdef CONFIG_PM_SLEEP
116 * Names of firmware images which have been cached successfully
117 * will be added into the below list so that device uncache
118 * helper can trace which firmware images have been cached
119 * before.
121 spinlock_t name_lock;
122 struct list_head fw_names;
124 struct delayed_work work;
126 struct notifier_block pm_notify;
127 #endif
130 struct firmware_buf {
131 struct kref ref;
132 struct list_head list;
133 struct completion completion;
134 struct firmware_cache *fwc;
135 unsigned long status;
136 void *data;
137 size_t size;
138 #ifdef CONFIG_FW_LOADER_USER_HELPER
139 bool is_paged_buf;
140 bool need_uevent;
141 struct page **pages;
142 int nr_pages;
143 int page_array_size;
144 struct list_head pending_list;
145 #endif
146 char fw_id[];
149 struct fw_cache_entry {
150 struct list_head list;
151 char name[];
154 struct fw_name_devm {
155 unsigned long magic;
156 char name[];
159 #define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
161 #define FW_LOADER_NO_CACHE 0
162 #define FW_LOADER_START_CACHE 1
164 static int fw_cache_piggyback_on_request(const char *name);
166 /* fw_lock could be moved to 'struct firmware_priv' but since it is just
167 * guarding for corner cases a global lock should be OK */
168 static DEFINE_MUTEX(fw_lock);
170 static struct firmware_cache fw_cache;
172 static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
173 struct firmware_cache *fwc)
175 struct firmware_buf *buf;
177 buf = kzalloc(sizeof(*buf) + strlen(fw_name) + 1 , GFP_ATOMIC);
179 if (!buf)
180 return buf;
182 kref_init(&buf->ref);
183 strcpy(buf->fw_id, fw_name);
184 buf->fwc = fwc;
185 init_completion(&buf->completion);
186 #ifdef CONFIG_FW_LOADER_USER_HELPER
187 INIT_LIST_HEAD(&buf->pending_list);
188 #endif
190 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
192 return buf;
195 static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
197 struct firmware_buf *tmp;
198 struct firmware_cache *fwc = &fw_cache;
200 list_for_each_entry(tmp, &fwc->head, list)
201 if (!strcmp(tmp->fw_id, fw_name))
202 return tmp;
203 return NULL;
206 static int fw_lookup_and_allocate_buf(const char *fw_name,
207 struct firmware_cache *fwc,
208 struct firmware_buf **buf)
210 struct firmware_buf *tmp;
212 spin_lock(&fwc->lock);
213 tmp = __fw_lookup_buf(fw_name);
214 if (tmp) {
215 kref_get(&tmp->ref);
216 spin_unlock(&fwc->lock);
217 *buf = tmp;
218 return 1;
220 tmp = __allocate_fw_buf(fw_name, fwc);
221 if (tmp)
222 list_add(&tmp->list, &fwc->head);
223 spin_unlock(&fwc->lock);
225 *buf = tmp;
227 return tmp ? 0 : -ENOMEM;
230 static void __fw_free_buf(struct kref *ref)
231 __releases(&fwc->lock)
233 struct firmware_buf *buf = to_fwbuf(ref);
234 struct firmware_cache *fwc = buf->fwc;
236 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
237 __func__, buf->fw_id, buf, buf->data,
238 (unsigned int)buf->size);
240 list_del(&buf->list);
241 spin_unlock(&fwc->lock);
243 #ifdef CONFIG_FW_LOADER_USER_HELPER
244 if (buf->is_paged_buf) {
245 int i;
246 vunmap(buf->data);
247 for (i = 0; i < buf->nr_pages; i++)
248 __free_page(buf->pages[i]);
249 kfree(buf->pages);
250 } else
251 #endif
252 vfree(buf->data);
253 kfree(buf);
256 static void fw_free_buf(struct firmware_buf *buf)
258 struct firmware_cache *fwc = buf->fwc;
259 spin_lock(&fwc->lock);
260 if (!kref_put(&buf->ref, __fw_free_buf))
261 spin_unlock(&fwc->lock);
264 /* direct firmware loading support */
265 static char fw_path_para[256];
266 static const char * const fw_path[] = {
267 fw_path_para,
268 "/lib/firmware/updates/" UTS_RELEASE,
269 "/lib/firmware/updates",
270 "/lib/firmware/" UTS_RELEASE,
271 "/lib/firmware"
275 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
276 * from kernel command line because firmware_class is generally built in
277 * kernel instead of module.
279 module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
280 MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
282 /* Don't inline this: 'struct kstat' is biggish */
283 static noinline_for_stack int fw_file_size(struct file *file)
285 struct kstat st;
286 if (vfs_getattr(&file->f_path, &st))
287 return -1;
288 if (!S_ISREG(st.mode))
289 return -1;
290 if (st.size != (int)st.size)
291 return -1;
292 return st.size;
295 static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
297 int size;
298 char *buf;
299 int rc;
301 size = fw_file_size(file);
302 if (size <= 0)
303 return -EINVAL;
304 buf = vmalloc(size);
305 if (!buf)
306 return -ENOMEM;
307 rc = kernel_read(file, 0, buf, size);
308 if (rc != size) {
309 if (rc > 0)
310 rc = -EIO;
311 vfree(buf);
312 return rc;
314 fw_buf->data = buf;
315 fw_buf->size = size;
316 return 0;
319 static int fw_get_filesystem_firmware(struct device *device,
320 struct firmware_buf *buf)
322 int i;
323 int rc = -ENOENT;
324 char *path = __getname();
326 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
327 struct file *file;
329 /* skip the unset customized path */
330 if (!fw_path[i][0])
331 continue;
333 snprintf(path, PATH_MAX, "%s/%s", fw_path[i], buf->fw_id);
335 file = filp_open(path, O_RDONLY, 0);
336 if (IS_ERR(file))
337 continue;
338 rc = fw_read_file_contents(file, buf);
339 fput(file);
340 if (rc)
341 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
342 path, rc);
343 else
344 break;
346 __putname(path);
348 if (!rc) {
349 dev_dbg(device, "firmware: direct-loading firmware %s\n",
350 buf->fw_id);
351 mutex_lock(&fw_lock);
352 set_bit(FW_STATUS_DONE, &buf->status);
353 complete_all(&buf->completion);
354 mutex_unlock(&fw_lock);
357 return rc;
360 /* firmware holds the ownership of pages */
361 static void firmware_free_data(const struct firmware *fw)
363 /* Loaded directly? */
364 if (!fw->priv) {
365 vfree(fw->data);
366 return;
368 fw_free_buf(fw->priv);
371 /* store the pages buffer info firmware from buf */
372 static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
374 fw->priv = buf;
375 #ifdef CONFIG_FW_LOADER_USER_HELPER
376 fw->pages = buf->pages;
377 #endif
378 fw->size = buf->size;
379 fw->data = buf->data;
381 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
382 __func__, buf->fw_id, buf, buf->data,
383 (unsigned int)buf->size);
386 #ifdef CONFIG_PM_SLEEP
387 static void fw_name_devm_release(struct device *dev, void *res)
389 struct fw_name_devm *fwn = res;
391 if (fwn->magic == (unsigned long)&fw_cache)
392 pr_debug("%s: fw_name-%s devm-%p released\n",
393 __func__, fwn->name, res);
396 static int fw_devm_match(struct device *dev, void *res,
397 void *match_data)
399 struct fw_name_devm *fwn = res;
401 return (fwn->magic == (unsigned long)&fw_cache) &&
402 !strcmp(fwn->name, match_data);
405 static struct fw_name_devm *fw_find_devm_name(struct device *dev,
406 const char *name)
408 struct fw_name_devm *fwn;
410 fwn = devres_find(dev, fw_name_devm_release,
411 fw_devm_match, (void *)name);
412 return fwn;
415 /* add firmware name into devres list */
416 static int fw_add_devm_name(struct device *dev, const char *name)
418 struct fw_name_devm *fwn;
420 fwn = fw_find_devm_name(dev, name);
421 if (fwn)
422 return 1;
424 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm) +
425 strlen(name) + 1, GFP_KERNEL);
426 if (!fwn)
427 return -ENOMEM;
429 fwn->magic = (unsigned long)&fw_cache;
430 strcpy(fwn->name, name);
431 devres_add(dev, fwn);
433 return 0;
435 #else
436 static int fw_add_devm_name(struct device *dev, const char *name)
438 return 0;
440 #endif
444 * user-mode helper code
446 #ifdef CONFIG_FW_LOADER_USER_HELPER
447 struct firmware_priv {
448 struct delayed_work timeout_work;
449 bool nowait;
450 struct device dev;
451 struct firmware_buf *buf;
452 struct firmware *fw;
455 static struct firmware_priv *to_firmware_priv(struct device *dev)
457 return container_of(dev, struct firmware_priv, dev);
460 static void __fw_load_abort(struct firmware_buf *buf)
463 * There is a small window in which user can write to 'loading'
464 * between loading done and disappearance of 'loading'
466 if (test_bit(FW_STATUS_DONE, &buf->status))
467 return;
469 list_del_init(&buf->pending_list);
470 set_bit(FW_STATUS_ABORT, &buf->status);
471 complete_all(&buf->completion);
474 static void fw_load_abort(struct firmware_priv *fw_priv)
476 struct firmware_buf *buf = fw_priv->buf;
478 __fw_load_abort(buf);
480 /* avoid user action after loading abort */
481 fw_priv->buf = NULL;
484 #define is_fw_load_aborted(buf) \
485 test_bit(FW_STATUS_ABORT, &(buf)->status)
487 static LIST_HEAD(pending_fw_head);
489 /* reboot notifier for avoid deadlock with usermode_lock */
490 static int fw_shutdown_notify(struct notifier_block *unused1,
491 unsigned long unused2, void *unused3)
493 mutex_lock(&fw_lock);
494 while (!list_empty(&pending_fw_head))
495 __fw_load_abort(list_first_entry(&pending_fw_head,
496 struct firmware_buf,
497 pending_list));
498 mutex_unlock(&fw_lock);
499 return NOTIFY_DONE;
502 static struct notifier_block fw_shutdown_nb = {
503 .notifier_call = fw_shutdown_notify,
506 static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
507 char *buf)
509 return sprintf(buf, "%d\n", loading_timeout);
513 * firmware_timeout_store - set number of seconds to wait for firmware
514 * @class: device class pointer
515 * @attr: device attribute pointer
516 * @buf: buffer to scan for timeout value
517 * @count: number of bytes in @buf
519 * Sets the number of seconds to wait for the firmware. Once
520 * this expires an error will be returned to the driver and no
521 * firmware will be provided.
523 * Note: zero means 'wait forever'.
525 static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
526 const char *buf, size_t count)
528 loading_timeout = simple_strtol(buf, NULL, 10);
529 if (loading_timeout < 0)
530 loading_timeout = 0;
532 return count;
535 static struct class_attribute firmware_class_attrs[] = {
536 __ATTR_RW(timeout),
537 __ATTR_NULL
540 static void fw_dev_release(struct device *dev)
542 struct firmware_priv *fw_priv = to_firmware_priv(dev);
544 kfree(fw_priv);
547 static int do_firmware_uevent(struct firmware_priv *fw_priv, struct kobj_uevent_env *env)
549 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
550 return -ENOMEM;
551 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
552 return -ENOMEM;
553 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
554 return -ENOMEM;
556 return 0;
559 static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
561 struct firmware_priv *fw_priv = to_firmware_priv(dev);
562 int err = 0;
564 mutex_lock(&fw_lock);
565 if (fw_priv->buf)
566 err = do_firmware_uevent(fw_priv, env);
567 mutex_unlock(&fw_lock);
568 return err;
571 static struct class firmware_class = {
572 .name = "firmware",
573 .class_attrs = firmware_class_attrs,
574 .dev_uevent = firmware_uevent,
575 .dev_release = fw_dev_release,
578 static ssize_t firmware_loading_show(struct device *dev,
579 struct device_attribute *attr, char *buf)
581 struct firmware_priv *fw_priv = to_firmware_priv(dev);
582 int loading = 0;
584 mutex_lock(&fw_lock);
585 if (fw_priv->buf)
586 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
587 mutex_unlock(&fw_lock);
589 return sprintf(buf, "%d\n", loading);
592 /* Some architectures don't have PAGE_KERNEL_RO */
593 #ifndef PAGE_KERNEL_RO
594 #define PAGE_KERNEL_RO PAGE_KERNEL
595 #endif
597 /* one pages buffer should be mapped/unmapped only once */
598 static int fw_map_pages_buf(struct firmware_buf *buf)
600 if (!buf->is_paged_buf)
601 return 0;
603 if (buf->data)
604 vunmap(buf->data);
605 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
606 if (!buf->data)
607 return -ENOMEM;
608 return 0;
612 * firmware_loading_store - set value in the 'loading' control file
613 * @dev: device pointer
614 * @attr: device attribute pointer
615 * @buf: buffer to scan for loading control value
616 * @count: number of bytes in @buf
618 * The relevant values are:
620 * 1: Start a load, discarding any previous partial load.
621 * 0: Conclude the load and hand the data to the driver code.
622 * -1: Conclude the load with an error and discard any written data.
624 static ssize_t firmware_loading_store(struct device *dev,
625 struct device_attribute *attr,
626 const char *buf, size_t count)
628 struct firmware_priv *fw_priv = to_firmware_priv(dev);
629 struct firmware_buf *fw_buf;
630 int loading = simple_strtol(buf, NULL, 10);
631 int i;
633 mutex_lock(&fw_lock);
634 fw_buf = fw_priv->buf;
635 if (!fw_buf)
636 goto out;
638 switch (loading) {
639 case 1:
640 /* discarding any previous partial load */
641 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
642 for (i = 0; i < fw_buf->nr_pages; i++)
643 __free_page(fw_buf->pages[i]);
644 kfree(fw_buf->pages);
645 fw_buf->pages = NULL;
646 fw_buf->page_array_size = 0;
647 fw_buf->nr_pages = 0;
648 set_bit(FW_STATUS_LOADING, &fw_buf->status);
650 break;
651 case 0:
652 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
653 set_bit(FW_STATUS_DONE, &fw_buf->status);
654 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
657 * Several loading requests may be pending on
658 * one same firmware buf, so let all requests
659 * see the mapped 'buf->data' once the loading
660 * is completed.
661 * */
662 fw_map_pages_buf(fw_buf);
663 list_del_init(&fw_buf->pending_list);
664 complete_all(&fw_buf->completion);
665 break;
667 /* fallthrough */
668 default:
669 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
670 /* fallthrough */
671 case -1:
672 fw_load_abort(fw_priv);
673 break;
675 out:
676 mutex_unlock(&fw_lock);
677 return count;
680 static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
682 static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
683 struct bin_attribute *bin_attr,
684 char *buffer, loff_t offset, size_t count)
686 struct device *dev = kobj_to_dev(kobj);
687 struct firmware_priv *fw_priv = to_firmware_priv(dev);
688 struct firmware_buf *buf;
689 ssize_t ret_count;
691 mutex_lock(&fw_lock);
692 buf = fw_priv->buf;
693 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
694 ret_count = -ENODEV;
695 goto out;
697 if (offset > buf->size) {
698 ret_count = 0;
699 goto out;
701 if (count > buf->size - offset)
702 count = buf->size - offset;
704 ret_count = count;
706 while (count) {
707 void *page_data;
708 int page_nr = offset >> PAGE_SHIFT;
709 int page_ofs = offset & (PAGE_SIZE-1);
710 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
712 page_data = kmap(buf->pages[page_nr]);
714 memcpy(buffer, page_data + page_ofs, page_cnt);
716 kunmap(buf->pages[page_nr]);
717 buffer += page_cnt;
718 offset += page_cnt;
719 count -= page_cnt;
721 out:
722 mutex_unlock(&fw_lock);
723 return ret_count;
726 static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
728 struct firmware_buf *buf = fw_priv->buf;
729 int pages_needed = ALIGN(min_size, PAGE_SIZE) >> PAGE_SHIFT;
731 /* If the array of pages is too small, grow it... */
732 if (buf->page_array_size < pages_needed) {
733 int new_array_size = max(pages_needed,
734 buf->page_array_size * 2);
735 struct page **new_pages;
737 new_pages = kmalloc(new_array_size * sizeof(void *),
738 GFP_KERNEL);
739 if (!new_pages) {
740 fw_load_abort(fw_priv);
741 return -ENOMEM;
743 memcpy(new_pages, buf->pages,
744 buf->page_array_size * sizeof(void *));
745 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
746 (new_array_size - buf->page_array_size));
747 kfree(buf->pages);
748 buf->pages = new_pages;
749 buf->page_array_size = new_array_size;
752 while (buf->nr_pages < pages_needed) {
753 buf->pages[buf->nr_pages] =
754 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
756 if (!buf->pages[buf->nr_pages]) {
757 fw_load_abort(fw_priv);
758 return -ENOMEM;
760 buf->nr_pages++;
762 return 0;
766 * firmware_data_write - write method for firmware
767 * @filp: open sysfs file
768 * @kobj: kobject for the device
769 * @bin_attr: bin_attr structure
770 * @buffer: buffer being written
771 * @offset: buffer offset for write in total data store area
772 * @count: buffer size
774 * Data written to the 'data' attribute will be later handed to
775 * the driver as a firmware image.
777 static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
778 struct bin_attribute *bin_attr,
779 char *buffer, loff_t offset, size_t count)
781 struct device *dev = kobj_to_dev(kobj);
782 struct firmware_priv *fw_priv = to_firmware_priv(dev);
783 struct firmware_buf *buf;
784 ssize_t retval;
786 if (!capable(CAP_SYS_RAWIO))
787 return -EPERM;
789 mutex_lock(&fw_lock);
790 buf = fw_priv->buf;
791 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
792 retval = -ENODEV;
793 goto out;
796 retval = fw_realloc_buffer(fw_priv, offset + count);
797 if (retval)
798 goto out;
800 retval = count;
802 while (count) {
803 void *page_data;
804 int page_nr = offset >> PAGE_SHIFT;
805 int page_ofs = offset & (PAGE_SIZE - 1);
806 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
808 page_data = kmap(buf->pages[page_nr]);
810 memcpy(page_data + page_ofs, buffer, page_cnt);
812 kunmap(buf->pages[page_nr]);
813 buffer += page_cnt;
814 offset += page_cnt;
815 count -= page_cnt;
818 buf->size = max_t(size_t, offset, buf->size);
819 out:
820 mutex_unlock(&fw_lock);
821 return retval;
824 static struct bin_attribute firmware_attr_data = {
825 .attr = { .name = "data", .mode = 0644 },
826 .size = 0,
827 .read = firmware_data_read,
828 .write = firmware_data_write,
831 static void firmware_class_timeout_work(struct work_struct *work)
833 struct firmware_priv *fw_priv = container_of(work,
834 struct firmware_priv, timeout_work.work);
836 mutex_lock(&fw_lock);
837 fw_load_abort(fw_priv);
838 mutex_unlock(&fw_lock);
841 static struct firmware_priv *
842 fw_create_instance(struct firmware *firmware, const char *fw_name,
843 struct device *device, unsigned int opt_flags)
845 struct firmware_priv *fw_priv;
846 struct device *f_dev;
848 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
849 if (!fw_priv) {
850 dev_err(device, "%s: kmalloc failed\n", __func__);
851 fw_priv = ERR_PTR(-ENOMEM);
852 goto exit;
855 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
856 fw_priv->fw = firmware;
857 INIT_DELAYED_WORK(&fw_priv->timeout_work,
858 firmware_class_timeout_work);
860 f_dev = &fw_priv->dev;
862 device_initialize(f_dev);
863 dev_set_name(f_dev, "%s", fw_name);
864 f_dev->parent = device;
865 f_dev->class = &firmware_class;
866 exit:
867 return fw_priv;
870 /* load a firmware via user helper */
871 static int _request_firmware_load(struct firmware_priv *fw_priv,
872 unsigned int opt_flags, long timeout)
874 int retval = 0;
875 struct device *f_dev = &fw_priv->dev;
876 struct firmware_buf *buf = fw_priv->buf;
878 /* fall back on userspace loading */
879 buf->is_paged_buf = true;
881 dev_set_uevent_suppress(f_dev, true);
883 retval = device_add(f_dev);
884 if (retval) {
885 dev_err(f_dev, "%s: device_register failed\n", __func__);
886 goto err_put_dev;
889 retval = device_create_bin_file(f_dev, &firmware_attr_data);
890 if (retval) {
891 dev_err(f_dev, "%s: sysfs_create_bin_file failed\n", __func__);
892 goto err_del_dev;
895 mutex_lock(&fw_lock);
896 list_add(&buf->pending_list, &pending_fw_head);
897 mutex_unlock(&fw_lock);
899 retval = device_create_file(f_dev, &dev_attr_loading);
900 if (retval) {
901 mutex_lock(&fw_lock);
902 list_del_init(&buf->pending_list);
903 mutex_unlock(&fw_lock);
904 dev_err(f_dev, "%s: device_create_file failed\n", __func__);
905 goto err_del_bin_attr;
908 if (opt_flags & FW_OPT_UEVENT) {
909 buf->need_uevent = true;
910 dev_set_uevent_suppress(f_dev, false);
911 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
912 if (timeout != MAX_SCHEDULE_TIMEOUT)
913 schedule_delayed_work(&fw_priv->timeout_work, timeout);
915 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
918 wait_for_completion(&buf->completion);
920 cancel_delayed_work_sync(&fw_priv->timeout_work);
922 device_remove_file(f_dev, &dev_attr_loading);
923 err_del_bin_attr:
924 device_remove_bin_file(f_dev, &firmware_attr_data);
925 err_del_dev:
926 device_del(f_dev);
927 err_put_dev:
928 put_device(f_dev);
929 return retval;
932 static int fw_load_from_user_helper(struct firmware *firmware,
933 const char *name, struct device *device,
934 unsigned int opt_flags, long timeout)
936 struct firmware_priv *fw_priv;
938 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
939 if (IS_ERR(fw_priv))
940 return PTR_ERR(fw_priv);
942 fw_priv->buf = firmware->priv;
943 return _request_firmware_load(fw_priv, opt_flags, timeout);
946 #ifdef CONFIG_PM_SLEEP
947 /* kill pending requests without uevent to avoid blocking suspend */
948 static void kill_requests_without_uevent(void)
950 struct firmware_buf *buf;
951 struct firmware_buf *next;
953 mutex_lock(&fw_lock);
954 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
955 if (!buf->need_uevent)
956 __fw_load_abort(buf);
958 mutex_unlock(&fw_lock);
960 #endif
962 #else /* CONFIG_FW_LOADER_USER_HELPER */
963 static inline int
964 fw_load_from_user_helper(struct firmware *firmware, const char *name,
965 struct device *device, unsigned int opt_flags,
966 long timeout)
968 return -ENOENT;
971 /* No abort during direct loading */
972 #define is_fw_load_aborted(buf) false
974 #ifdef CONFIG_PM_SLEEP
975 static inline void kill_requests_without_uevent(void) { }
976 #endif
978 #endif /* CONFIG_FW_LOADER_USER_HELPER */
981 /* wait until the shared firmware_buf becomes ready (or error) */
982 static int sync_cached_firmware_buf(struct firmware_buf *buf)
984 int ret = 0;
986 mutex_lock(&fw_lock);
987 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
988 if (is_fw_load_aborted(buf)) {
989 ret = -ENOENT;
990 break;
992 mutex_unlock(&fw_lock);
993 wait_for_completion(&buf->completion);
994 mutex_lock(&fw_lock);
996 mutex_unlock(&fw_lock);
997 return ret;
1000 /* prepare firmware and firmware_buf structs;
1001 * return 0 if a firmware is already assigned, 1 if need to load one,
1002 * or a negative error code
1004 static int
1005 _request_firmware_prepare(struct firmware **firmware_p, const char *name,
1006 struct device *device)
1008 struct firmware *firmware;
1009 struct firmware_buf *buf;
1010 int ret;
1012 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
1013 if (!firmware) {
1014 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1015 __func__);
1016 return -ENOMEM;
1019 if (fw_get_builtin_firmware(firmware, name)) {
1020 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
1021 return 0; /* assigned */
1024 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
1027 * bind with 'buf' now to avoid warning in failure path
1028 * of requesting firmware.
1030 firmware->priv = buf;
1032 if (ret > 0) {
1033 ret = sync_cached_firmware_buf(buf);
1034 if (!ret) {
1035 fw_set_page_data(buf, firmware);
1036 return 0; /* assigned */
1040 if (ret < 0)
1041 return ret;
1042 return 1; /* need to load */
1045 static int assign_firmware_buf(struct firmware *fw, struct device *device,
1046 unsigned int opt_flags)
1048 struct firmware_buf *buf = fw->priv;
1050 mutex_lock(&fw_lock);
1051 if (!buf->size || is_fw_load_aborted(buf)) {
1052 mutex_unlock(&fw_lock);
1053 return -ENOENT;
1057 * add firmware name into devres list so that we can auto cache
1058 * and uncache firmware for device.
1060 * device may has been deleted already, but the problem
1061 * should be fixed in devres or driver core.
1063 /* don't cache firmware handled without uevent */
1064 if (device && (opt_flags & FW_OPT_UEVENT))
1065 fw_add_devm_name(device, buf->fw_id);
1068 * After caching firmware image is started, let it piggyback
1069 * on request firmware.
1071 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1072 if (fw_cache_piggyback_on_request(buf->fw_id))
1073 kref_get(&buf->ref);
1076 /* pass the pages buffer to driver at the last minute */
1077 fw_set_page_data(buf, fw);
1078 mutex_unlock(&fw_lock);
1079 return 0;
1082 /* called from request_firmware() and request_firmware_work_func() */
1083 static int
1084 _request_firmware(const struct firmware **firmware_p, const char *name,
1085 struct device *device, unsigned int opt_flags)
1087 struct firmware *fw;
1088 long timeout;
1089 int ret;
1091 if (!firmware_p)
1092 return -EINVAL;
1094 if (!name || name[0] == '\0')
1095 return -EINVAL;
1097 ret = _request_firmware_prepare(&fw, name, device);
1098 if (ret <= 0) /* error or already assigned */
1099 goto out;
1101 ret = 0;
1102 timeout = firmware_loading_timeout();
1103 if (opt_flags & FW_OPT_NOWAIT) {
1104 timeout = usermodehelper_read_lock_wait(timeout);
1105 if (!timeout) {
1106 dev_dbg(device, "firmware: %s loading timed out\n",
1107 name);
1108 ret = -EBUSY;
1109 goto out;
1111 } else {
1112 ret = usermodehelper_read_trylock();
1113 if (WARN_ON(ret)) {
1114 dev_err(device, "firmware: %s will not be loaded\n",
1115 name);
1116 goto out;
1120 ret = fw_get_filesystem_firmware(device, fw->priv);
1121 if (ret) {
1122 if (opt_flags & FW_OPT_FALLBACK) {
1123 dev_warn(device,
1124 "Direct firmware load failed with error %d\n",
1125 ret);
1126 dev_warn(device, "Falling back to user helper\n");
1127 ret = fw_load_from_user_helper(fw, name, device,
1128 opt_flags, timeout);
1132 if (!ret)
1133 ret = assign_firmware_buf(fw, device, opt_flags);
1135 usermodehelper_read_unlock();
1137 out:
1138 if (ret < 0) {
1139 release_firmware(fw);
1140 fw = NULL;
1143 *firmware_p = fw;
1144 return ret;
1148 * request_firmware: - send firmware request and wait for it
1149 * @firmware_p: pointer to firmware image
1150 * @name: name of firmware file
1151 * @device: device for which firmware is being loaded
1153 * @firmware_p will be used to return a firmware image by the name
1154 * of @name for device @device.
1156 * Should be called from user context where sleeping is allowed.
1158 * @name will be used as $FIRMWARE in the uevent environment and
1159 * should be distinctive enough not to be confused with any other
1160 * firmware image for this or any other device.
1162 * Caller must hold the reference count of @device.
1164 * The function can be called safely inside device's suspend and
1165 * resume callback.
1168 request_firmware(const struct firmware **firmware_p, const char *name,
1169 struct device *device)
1171 int ret;
1173 /* Need to pin this module until return */
1174 __module_get(THIS_MODULE);
1175 ret = _request_firmware(firmware_p, name, device,
1176 FW_OPT_UEVENT | FW_OPT_FALLBACK);
1177 module_put(THIS_MODULE);
1178 return ret;
1180 EXPORT_SYMBOL(request_firmware);
1182 #ifdef CONFIG_FW_LOADER_USER_HELPER
1184 * request_firmware: - load firmware directly without usermode helper
1185 * @firmware_p: pointer to firmware image
1186 * @name: name of firmware file
1187 * @device: device for which firmware is being loaded
1189 * This function works pretty much like request_firmware(), but this doesn't
1190 * fall back to usermode helper even if the firmware couldn't be loaded
1191 * directly from fs. Hence it's useful for loading optional firmwares, which
1192 * aren't always present, without extra long timeouts of udev.
1194 int request_firmware_direct(const struct firmware **firmware_p,
1195 const char *name, struct device *device)
1197 int ret;
1198 __module_get(THIS_MODULE);
1199 ret = _request_firmware(firmware_p, name, device, FW_OPT_UEVENT);
1200 module_put(THIS_MODULE);
1201 return ret;
1203 EXPORT_SYMBOL_GPL(request_firmware_direct);
1204 #endif
1207 * release_firmware: - release the resource associated with a firmware image
1208 * @fw: firmware resource to release
1210 void release_firmware(const struct firmware *fw)
1212 if (fw) {
1213 if (!fw_is_builtin_firmware(fw))
1214 firmware_free_data(fw);
1215 kfree(fw);
1218 EXPORT_SYMBOL(release_firmware);
1220 /* Async support */
1221 struct firmware_work {
1222 struct work_struct work;
1223 struct module *module;
1224 const char *name;
1225 struct device *device;
1226 void *context;
1227 void (*cont)(const struct firmware *fw, void *context);
1228 unsigned int opt_flags;
1231 static void request_firmware_work_func(struct work_struct *work)
1233 struct firmware_work *fw_work;
1234 const struct firmware *fw;
1236 fw_work = container_of(work, struct firmware_work, work);
1238 _request_firmware(&fw, fw_work->name, fw_work->device,
1239 fw_work->opt_flags);
1240 fw_work->cont(fw, fw_work->context);
1241 put_device(fw_work->device); /* taken in request_firmware_nowait() */
1243 module_put(fw_work->module);
1244 kfree(fw_work);
1248 * request_firmware_nowait - asynchronous version of request_firmware
1249 * @module: module requesting the firmware
1250 * @uevent: sends uevent to copy the firmware image if this flag
1251 * is non-zero else the firmware copy must be done manually.
1252 * @name: name of firmware file
1253 * @device: device for which firmware is being loaded
1254 * @gfp: allocation flags
1255 * @context: will be passed over to @cont, and
1256 * @fw may be %NULL if firmware request fails.
1257 * @cont: function will be called asynchronously when the firmware
1258 * request is over.
1260 * Caller must hold the reference count of @device.
1262 * Asynchronous variant of request_firmware() for user contexts:
1263 * - sleep for as small periods as possible since it may
1264 * increase kernel boot time of built-in device drivers
1265 * requesting firmware in their ->probe() methods, if
1266 * @gfp is GFP_KERNEL.
1268 * - can't sleep at all if @gfp is GFP_ATOMIC.
1271 request_firmware_nowait(
1272 struct module *module, bool uevent,
1273 const char *name, struct device *device, gfp_t gfp, void *context,
1274 void (*cont)(const struct firmware *fw, void *context))
1276 struct firmware_work *fw_work;
1278 fw_work = kzalloc(sizeof (struct firmware_work), gfp);
1279 if (!fw_work)
1280 return -ENOMEM;
1282 fw_work->module = module;
1283 fw_work->name = name;
1284 fw_work->device = device;
1285 fw_work->context = context;
1286 fw_work->cont = cont;
1287 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
1288 (uevent ? FW_OPT_UEVENT : 0);
1290 if (!try_module_get(module)) {
1291 kfree(fw_work);
1292 return -EFAULT;
1295 get_device(fw_work->device);
1296 INIT_WORK(&fw_work->work, request_firmware_work_func);
1297 schedule_work(&fw_work->work);
1298 return 0;
1300 EXPORT_SYMBOL(request_firmware_nowait);
1302 #ifdef CONFIG_PM_SLEEP
1303 static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1306 * cache_firmware - cache one firmware image in kernel memory space
1307 * @fw_name: the firmware image name
1309 * Cache firmware in kernel memory so that drivers can use it when
1310 * system isn't ready for them to request firmware image from userspace.
1311 * Once it returns successfully, driver can use request_firmware or its
1312 * nowait version to get the cached firmware without any interacting
1313 * with userspace
1315 * Return 0 if the firmware image has been cached successfully
1316 * Return !0 otherwise
1319 static int cache_firmware(const char *fw_name)
1321 int ret;
1322 const struct firmware *fw;
1324 pr_debug("%s: %s\n", __func__, fw_name);
1326 ret = request_firmware(&fw, fw_name, NULL);
1327 if (!ret)
1328 kfree(fw);
1330 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1332 return ret;
1335 static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1337 struct firmware_buf *tmp;
1338 struct firmware_cache *fwc = &fw_cache;
1340 spin_lock(&fwc->lock);
1341 tmp = __fw_lookup_buf(fw_name);
1342 spin_unlock(&fwc->lock);
1344 return tmp;
1348 * uncache_firmware - remove one cached firmware image
1349 * @fw_name: the firmware image name
1351 * Uncache one firmware image which has been cached successfully
1352 * before.
1354 * Return 0 if the firmware cache has been removed successfully
1355 * Return !0 otherwise
1358 static int uncache_firmware(const char *fw_name)
1360 struct firmware_buf *buf;
1361 struct firmware fw;
1363 pr_debug("%s: %s\n", __func__, fw_name);
1365 if (fw_get_builtin_firmware(&fw, fw_name))
1366 return 0;
1368 buf = fw_lookup_buf(fw_name);
1369 if (buf) {
1370 fw_free_buf(buf);
1371 return 0;
1374 return -EINVAL;
1377 static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1379 struct fw_cache_entry *fce;
1381 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC);
1382 if (!fce)
1383 goto exit;
1385 strcpy(fce->name, name);
1386 exit:
1387 return fce;
1390 static int __fw_entry_found(const char *name)
1392 struct firmware_cache *fwc = &fw_cache;
1393 struct fw_cache_entry *fce;
1395 list_for_each_entry(fce, &fwc->fw_names, list) {
1396 if (!strcmp(fce->name, name))
1397 return 1;
1399 return 0;
1402 static int fw_cache_piggyback_on_request(const char *name)
1404 struct firmware_cache *fwc = &fw_cache;
1405 struct fw_cache_entry *fce;
1406 int ret = 0;
1408 spin_lock(&fwc->name_lock);
1409 if (__fw_entry_found(name))
1410 goto found;
1412 fce = alloc_fw_cache_entry(name);
1413 if (fce) {
1414 ret = 1;
1415 list_add(&fce->list, &fwc->fw_names);
1416 pr_debug("%s: fw: %s\n", __func__, name);
1418 found:
1419 spin_unlock(&fwc->name_lock);
1420 return ret;
1423 static void free_fw_cache_entry(struct fw_cache_entry *fce)
1425 kfree(fce);
1428 static void __async_dev_cache_fw_image(void *fw_entry,
1429 async_cookie_t cookie)
1431 struct fw_cache_entry *fce = fw_entry;
1432 struct firmware_cache *fwc = &fw_cache;
1433 int ret;
1435 ret = cache_firmware(fce->name);
1436 if (ret) {
1437 spin_lock(&fwc->name_lock);
1438 list_del(&fce->list);
1439 spin_unlock(&fwc->name_lock);
1441 free_fw_cache_entry(fce);
1445 /* called with dev->devres_lock held */
1446 static void dev_create_fw_entry(struct device *dev, void *res,
1447 void *data)
1449 struct fw_name_devm *fwn = res;
1450 const char *fw_name = fwn->name;
1451 struct list_head *head = data;
1452 struct fw_cache_entry *fce;
1454 fce = alloc_fw_cache_entry(fw_name);
1455 if (fce)
1456 list_add(&fce->list, head);
1459 static int devm_name_match(struct device *dev, void *res,
1460 void *match_data)
1462 struct fw_name_devm *fwn = res;
1463 return (fwn->magic == (unsigned long)match_data);
1466 static void dev_cache_fw_image(struct device *dev, void *data)
1468 LIST_HEAD(todo);
1469 struct fw_cache_entry *fce;
1470 struct fw_cache_entry *fce_next;
1471 struct firmware_cache *fwc = &fw_cache;
1473 devres_for_each_res(dev, fw_name_devm_release,
1474 devm_name_match, &fw_cache,
1475 dev_create_fw_entry, &todo);
1477 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1478 list_del(&fce->list);
1480 spin_lock(&fwc->name_lock);
1481 /* only one cache entry for one firmware */
1482 if (!__fw_entry_found(fce->name)) {
1483 list_add(&fce->list, &fwc->fw_names);
1484 } else {
1485 free_fw_cache_entry(fce);
1486 fce = NULL;
1488 spin_unlock(&fwc->name_lock);
1490 if (fce)
1491 async_schedule_domain(__async_dev_cache_fw_image,
1492 (void *)fce,
1493 &fw_cache_domain);
1497 static void __device_uncache_fw_images(void)
1499 struct firmware_cache *fwc = &fw_cache;
1500 struct fw_cache_entry *fce;
1502 spin_lock(&fwc->name_lock);
1503 while (!list_empty(&fwc->fw_names)) {
1504 fce = list_entry(fwc->fw_names.next,
1505 struct fw_cache_entry, list);
1506 list_del(&fce->list);
1507 spin_unlock(&fwc->name_lock);
1509 uncache_firmware(fce->name);
1510 free_fw_cache_entry(fce);
1512 spin_lock(&fwc->name_lock);
1514 spin_unlock(&fwc->name_lock);
1518 * device_cache_fw_images - cache devices' firmware
1520 * If one device called request_firmware or its nowait version
1521 * successfully before, the firmware names are recored into the
1522 * device's devres link list, so device_cache_fw_images can call
1523 * cache_firmware() to cache these firmwares for the device,
1524 * then the device driver can load its firmwares easily at
1525 * time when system is not ready to complete loading firmware.
1527 static void device_cache_fw_images(void)
1529 struct firmware_cache *fwc = &fw_cache;
1530 int old_timeout;
1531 DEFINE_WAIT(wait);
1533 pr_debug("%s\n", __func__);
1535 /* cancel uncache work */
1536 cancel_delayed_work_sync(&fwc->work);
1539 * use small loading timeout for caching devices' firmware
1540 * because all these firmware images have been loaded
1541 * successfully at lease once, also system is ready for
1542 * completing firmware loading now. The maximum size of
1543 * firmware in current distributions is about 2M bytes,
1544 * so 10 secs should be enough.
1546 old_timeout = loading_timeout;
1547 loading_timeout = 10;
1549 mutex_lock(&fw_lock);
1550 fwc->state = FW_LOADER_START_CACHE;
1551 dpm_for_each_dev(NULL, dev_cache_fw_image);
1552 mutex_unlock(&fw_lock);
1554 /* wait for completion of caching firmware for all devices */
1555 async_synchronize_full_domain(&fw_cache_domain);
1557 loading_timeout = old_timeout;
1561 * device_uncache_fw_images - uncache devices' firmware
1563 * uncache all firmwares which have been cached successfully
1564 * by device_uncache_fw_images earlier
1566 static void device_uncache_fw_images(void)
1568 pr_debug("%s\n", __func__);
1569 __device_uncache_fw_images();
1572 static void device_uncache_fw_images_work(struct work_struct *work)
1574 device_uncache_fw_images();
1578 * device_uncache_fw_images_delay - uncache devices firmwares
1579 * @delay: number of milliseconds to delay uncache device firmwares
1581 * uncache all devices's firmwares which has been cached successfully
1582 * by device_cache_fw_images after @delay milliseconds.
1584 static void device_uncache_fw_images_delay(unsigned long delay)
1586 schedule_delayed_work(&fw_cache.work,
1587 msecs_to_jiffies(delay));
1590 static int fw_pm_notify(struct notifier_block *notify_block,
1591 unsigned long mode, void *unused)
1593 switch (mode) {
1594 case PM_HIBERNATION_PREPARE:
1595 case PM_SUSPEND_PREPARE:
1596 case PM_RESTORE_PREPARE:
1597 kill_requests_without_uevent();
1598 device_cache_fw_images();
1599 break;
1601 case PM_POST_SUSPEND:
1602 case PM_POST_HIBERNATION:
1603 case PM_POST_RESTORE:
1605 * In case that system sleep failed and syscore_suspend is
1606 * not called.
1608 mutex_lock(&fw_lock);
1609 fw_cache.state = FW_LOADER_NO_CACHE;
1610 mutex_unlock(&fw_lock);
1612 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1613 break;
1616 return 0;
1619 /* stop caching firmware once syscore_suspend is reached */
1620 static int fw_suspend(void)
1622 fw_cache.state = FW_LOADER_NO_CACHE;
1623 return 0;
1626 static struct syscore_ops fw_syscore_ops = {
1627 .suspend = fw_suspend,
1629 #else
1630 static int fw_cache_piggyback_on_request(const char *name)
1632 return 0;
1634 #endif
1636 static void __init fw_cache_init(void)
1638 spin_lock_init(&fw_cache.lock);
1639 INIT_LIST_HEAD(&fw_cache.head);
1640 fw_cache.state = FW_LOADER_NO_CACHE;
1642 #ifdef CONFIG_PM_SLEEP
1643 spin_lock_init(&fw_cache.name_lock);
1644 INIT_LIST_HEAD(&fw_cache.fw_names);
1646 INIT_DELAYED_WORK(&fw_cache.work,
1647 device_uncache_fw_images_work);
1649 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1650 register_pm_notifier(&fw_cache.pm_notify);
1652 register_syscore_ops(&fw_syscore_ops);
1653 #endif
1656 static int __init firmware_class_init(void)
1658 fw_cache_init();
1659 #ifdef CONFIG_FW_LOADER_USER_HELPER
1660 register_reboot_notifier(&fw_shutdown_nb);
1661 return class_register(&firmware_class);
1662 #else
1663 return 0;
1664 #endif
1667 static void __exit firmware_class_exit(void)
1669 #ifdef CONFIG_PM_SLEEP
1670 unregister_syscore_ops(&fw_syscore_ops);
1671 unregister_pm_notifier(&fw_cache.pm_notify);
1672 #endif
1673 #ifdef CONFIG_FW_LOADER_USER_HELPER
1674 unregister_reboot_notifier(&fw_shutdown_nb);
1675 class_unregister(&firmware_class);
1676 #endif
1679 fs_initcall(firmware_class_init);
1680 module_exit(firmware_class_exit);