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.
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>
27 #include <linux/async.h>
29 #include <linux/suspend.h>
30 #include <linux/syscore_ops.h>
31 #include <linux/reboot.h>
32 #include <linux/security.h>
34 #include <generated/utsrelease.h>
38 MODULE_AUTHOR("Manuel Estrada Sainz");
39 MODULE_DESCRIPTION("Multi purpose firmware loading support");
40 MODULE_LICENSE("GPL");
42 /* Builtin firmware support */
44 #ifdef CONFIG_FW_LOADER
46 extern struct builtin_fw __start_builtin_fw
[];
47 extern struct builtin_fw __end_builtin_fw
[];
49 static bool fw_get_builtin_firmware(struct firmware
*fw
, const char *name
)
51 struct builtin_fw
*b_fw
;
53 for (b_fw
= __start_builtin_fw
; b_fw
!= __end_builtin_fw
; b_fw
++) {
54 if (strcmp(name
, b_fw
->name
) == 0) {
55 fw
->size
= b_fw
->size
;
56 fw
->data
= b_fw
->data
;
64 static bool fw_is_builtin_firmware(const struct firmware
*fw
)
66 struct builtin_fw
*b_fw
;
68 for (b_fw
= __start_builtin_fw
; b_fw
!= __end_builtin_fw
; b_fw
++)
69 if (fw
->data
== b_fw
->data
)
75 #else /* Module case - no builtin firmware support */
77 static inline bool fw_get_builtin_firmware(struct firmware
*fw
, const char *name
)
82 static inline bool fw_is_builtin_firmware(const struct firmware
*fw
)
94 static int loading_timeout
= 60; /* In seconds */
96 static inline long firmware_loading_timeout(void)
98 return loading_timeout
> 0 ? loading_timeout
* HZ
: MAX_JIFFY_OFFSET
;
101 /* firmware behavior options */
102 #define FW_OPT_UEVENT (1U << 0)
103 #define FW_OPT_NOWAIT (1U << 1)
104 #ifdef CONFIG_FW_LOADER_USER_HELPER
105 #define FW_OPT_USERHELPER (1U << 2)
107 #define FW_OPT_USERHELPER 0
109 #ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
110 #define FW_OPT_FALLBACK FW_OPT_USERHELPER
112 #define FW_OPT_FALLBACK 0
114 #define FW_OPT_NO_WARN (1U << 3)
116 struct firmware_cache
{
117 /* firmware_buf instance will be added into the below list */
119 struct list_head head
;
122 #ifdef CONFIG_PM_SLEEP
124 * Names of firmware images which have been cached successfully
125 * will be added into the below list so that device uncache
126 * helper can trace which firmware images have been cached
129 spinlock_t name_lock
;
130 struct list_head fw_names
;
132 struct delayed_work work
;
134 struct notifier_block pm_notify
;
138 struct firmware_buf
{
140 struct list_head list
;
141 struct completion completion
;
142 struct firmware_cache
*fwc
;
143 unsigned long status
;
146 #ifdef CONFIG_FW_LOADER_USER_HELPER
152 struct list_head pending_list
;
157 struct fw_cache_entry
{
158 struct list_head list
;
162 struct fw_name_devm
{
167 #define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
169 #define FW_LOADER_NO_CACHE 0
170 #define FW_LOADER_START_CACHE 1
172 static int fw_cache_piggyback_on_request(const char *name
);
174 /* fw_lock could be moved to 'struct firmware_priv' but since it is just
175 * guarding for corner cases a global lock should be OK */
176 static DEFINE_MUTEX(fw_lock
);
178 static struct firmware_cache fw_cache
;
180 static struct firmware_buf
*__allocate_fw_buf(const char *fw_name
,
181 struct firmware_cache
*fwc
)
183 struct firmware_buf
*buf
;
185 buf
= kzalloc(sizeof(*buf
), GFP_ATOMIC
);
189 buf
->fw_id
= kstrdup_const(fw_name
, GFP_ATOMIC
);
195 kref_init(&buf
->ref
);
197 init_completion(&buf
->completion
);
198 #ifdef CONFIG_FW_LOADER_USER_HELPER
199 INIT_LIST_HEAD(&buf
->pending_list
);
202 pr_debug("%s: fw-%s buf=%p\n", __func__
, fw_name
, buf
);
207 static struct firmware_buf
*__fw_lookup_buf(const char *fw_name
)
209 struct firmware_buf
*tmp
;
210 struct firmware_cache
*fwc
= &fw_cache
;
212 list_for_each_entry(tmp
, &fwc
->head
, list
)
213 if (!strcmp(tmp
->fw_id
, fw_name
))
218 static int fw_lookup_and_allocate_buf(const char *fw_name
,
219 struct firmware_cache
*fwc
,
220 struct firmware_buf
**buf
)
222 struct firmware_buf
*tmp
;
224 spin_lock(&fwc
->lock
);
225 tmp
= __fw_lookup_buf(fw_name
);
228 spin_unlock(&fwc
->lock
);
232 tmp
= __allocate_fw_buf(fw_name
, fwc
);
234 list_add(&tmp
->list
, &fwc
->head
);
235 spin_unlock(&fwc
->lock
);
239 return tmp
? 0 : -ENOMEM
;
242 static void __fw_free_buf(struct kref
*ref
)
243 __releases(&fwc
->lock
)
245 struct firmware_buf
*buf
= to_fwbuf(ref
);
246 struct firmware_cache
*fwc
= buf
->fwc
;
248 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
249 __func__
, buf
->fw_id
, buf
, buf
->data
,
250 (unsigned int)buf
->size
);
252 list_del(&buf
->list
);
253 spin_unlock(&fwc
->lock
);
255 #ifdef CONFIG_FW_LOADER_USER_HELPER
256 if (buf
->is_paged_buf
) {
259 for (i
= 0; i
< buf
->nr_pages
; i
++)
260 __free_page(buf
->pages
[i
]);
265 kfree_const(buf
->fw_id
);
269 static void fw_free_buf(struct firmware_buf
*buf
)
271 struct firmware_cache
*fwc
= buf
->fwc
;
272 spin_lock(&fwc
->lock
);
273 if (!kref_put(&buf
->ref
, __fw_free_buf
))
274 spin_unlock(&fwc
->lock
);
277 /* direct firmware loading support */
278 static char fw_path_para
[256];
279 static const char * const fw_path
[] = {
281 "/lib/firmware/updates/" UTS_RELEASE
,
282 "/lib/firmware/updates",
283 "/lib/firmware/" UTS_RELEASE
,
288 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
289 * from kernel command line because firmware_class is generally built in
290 * kernel instead of module.
292 module_param_string(path
, fw_path_para
, sizeof(fw_path_para
), 0644);
293 MODULE_PARM_DESC(path
, "customized firmware image search path with a higher priority than default path");
295 static void fw_finish_direct_load(struct device
*device
,
296 struct firmware_buf
*buf
)
298 mutex_lock(&fw_lock
);
299 set_bit(FW_STATUS_DONE
, &buf
->status
);
300 complete_all(&buf
->completion
);
301 mutex_unlock(&fw_lock
);
304 static int fw_get_filesystem_firmware(struct device
*device
,
305 struct firmware_buf
*buf
)
316 for (i
= 0; i
< ARRAY_SIZE(fw_path
); i
++) {
317 /* skip the unset customized path */
321 len
= snprintf(path
, PATH_MAX
, "%s/%s",
322 fw_path
[i
], buf
->fw_id
);
323 if (len
>= PATH_MAX
) {
329 rc
= kernel_read_file_from_path(path
, &buf
->data
, &size
,
330 INT_MAX
, READING_FIRMWARE
);
333 dev_dbg(device
, "loading %s failed with error %d\n",
336 dev_warn(device
, "loading %s failed with error %d\n",
340 dev_dbg(device
, "direct-loading %s\n", buf
->fw_id
);
342 fw_finish_direct_load(device
, buf
);
350 /* firmware holds the ownership of pages */
351 static void firmware_free_data(const struct firmware
*fw
)
353 /* Loaded directly? */
358 fw_free_buf(fw
->priv
);
361 /* store the pages buffer info firmware from buf */
362 static void fw_set_page_data(struct firmware_buf
*buf
, struct firmware
*fw
)
365 #ifdef CONFIG_FW_LOADER_USER_HELPER
366 fw
->pages
= buf
->pages
;
368 fw
->size
= buf
->size
;
369 fw
->data
= buf
->data
;
371 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
372 __func__
, buf
->fw_id
, buf
, buf
->data
,
373 (unsigned int)buf
->size
);
376 #ifdef CONFIG_PM_SLEEP
377 static void fw_name_devm_release(struct device
*dev
, void *res
)
379 struct fw_name_devm
*fwn
= res
;
381 if (fwn
->magic
== (unsigned long)&fw_cache
)
382 pr_debug("%s: fw_name-%s devm-%p released\n",
383 __func__
, fwn
->name
, res
);
384 kfree_const(fwn
->name
);
387 static int fw_devm_match(struct device
*dev
, void *res
,
390 struct fw_name_devm
*fwn
= res
;
392 return (fwn
->magic
== (unsigned long)&fw_cache
) &&
393 !strcmp(fwn
->name
, match_data
);
396 static struct fw_name_devm
*fw_find_devm_name(struct device
*dev
,
399 struct fw_name_devm
*fwn
;
401 fwn
= devres_find(dev
, fw_name_devm_release
,
402 fw_devm_match
, (void *)name
);
406 /* add firmware name into devres list */
407 static int fw_add_devm_name(struct device
*dev
, const char *name
)
409 struct fw_name_devm
*fwn
;
411 fwn
= fw_find_devm_name(dev
, name
);
415 fwn
= devres_alloc(fw_name_devm_release
, sizeof(struct fw_name_devm
),
419 fwn
->name
= kstrdup_const(name
, GFP_KERNEL
);
425 fwn
->magic
= (unsigned long)&fw_cache
;
426 devres_add(dev
, fwn
);
431 static int fw_add_devm_name(struct device
*dev
, const char *name
)
439 * user-mode helper code
441 #ifdef CONFIG_FW_LOADER_USER_HELPER
442 struct firmware_priv
{
445 struct firmware_buf
*buf
;
449 static struct firmware_priv
*to_firmware_priv(struct device
*dev
)
451 return container_of(dev
, struct firmware_priv
, dev
);
454 static void __fw_load_abort(struct firmware_buf
*buf
)
457 * There is a small window in which user can write to 'loading'
458 * between loading done and disappearance of 'loading'
460 if (test_bit(FW_STATUS_DONE
, &buf
->status
))
463 list_del_init(&buf
->pending_list
);
464 set_bit(FW_STATUS_ABORT
, &buf
->status
);
465 complete_all(&buf
->completion
);
468 static void fw_load_abort(struct firmware_priv
*fw_priv
)
470 struct firmware_buf
*buf
= fw_priv
->buf
;
472 __fw_load_abort(buf
);
474 /* avoid user action after loading abort */
478 #define is_fw_load_aborted(buf) \
479 test_bit(FW_STATUS_ABORT, &(buf)->status)
481 static LIST_HEAD(pending_fw_head
);
483 /* reboot notifier for avoid deadlock with usermode_lock */
484 static int fw_shutdown_notify(struct notifier_block
*unused1
,
485 unsigned long unused2
, void *unused3
)
487 mutex_lock(&fw_lock
);
488 while (!list_empty(&pending_fw_head
))
489 __fw_load_abort(list_first_entry(&pending_fw_head
,
492 mutex_unlock(&fw_lock
);
496 static struct notifier_block fw_shutdown_nb
= {
497 .notifier_call
= fw_shutdown_notify
,
500 static ssize_t
timeout_show(struct class *class, struct class_attribute
*attr
,
503 return sprintf(buf
, "%d\n", loading_timeout
);
507 * firmware_timeout_store - set number of seconds to wait for firmware
508 * @class: device class pointer
509 * @attr: device attribute pointer
510 * @buf: buffer to scan for timeout value
511 * @count: number of bytes in @buf
513 * Sets the number of seconds to wait for the firmware. Once
514 * this expires an error will be returned to the driver and no
515 * firmware will be provided.
517 * Note: zero means 'wait forever'.
519 static ssize_t
timeout_store(struct class *class, struct class_attribute
*attr
,
520 const char *buf
, size_t count
)
522 loading_timeout
= simple_strtol(buf
, NULL
, 10);
523 if (loading_timeout
< 0)
529 static struct class_attribute firmware_class_attrs
[] = {
534 static void fw_dev_release(struct device
*dev
)
536 struct firmware_priv
*fw_priv
= to_firmware_priv(dev
);
541 static int do_firmware_uevent(struct firmware_priv
*fw_priv
, struct kobj_uevent_env
*env
)
543 if (add_uevent_var(env
, "FIRMWARE=%s", fw_priv
->buf
->fw_id
))
545 if (add_uevent_var(env
, "TIMEOUT=%i", loading_timeout
))
547 if (add_uevent_var(env
, "ASYNC=%d", fw_priv
->nowait
))
553 static int firmware_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
555 struct firmware_priv
*fw_priv
= to_firmware_priv(dev
);
558 mutex_lock(&fw_lock
);
560 err
= do_firmware_uevent(fw_priv
, env
);
561 mutex_unlock(&fw_lock
);
565 static struct class firmware_class
= {
567 .class_attrs
= firmware_class_attrs
,
568 .dev_uevent
= firmware_uevent
,
569 .dev_release
= fw_dev_release
,
572 static ssize_t
firmware_loading_show(struct device
*dev
,
573 struct device_attribute
*attr
, char *buf
)
575 struct firmware_priv
*fw_priv
= to_firmware_priv(dev
);
578 mutex_lock(&fw_lock
);
580 loading
= test_bit(FW_STATUS_LOADING
, &fw_priv
->buf
->status
);
581 mutex_unlock(&fw_lock
);
583 return sprintf(buf
, "%d\n", loading
);
586 /* Some architectures don't have PAGE_KERNEL_RO */
587 #ifndef PAGE_KERNEL_RO
588 #define PAGE_KERNEL_RO PAGE_KERNEL
591 /* one pages buffer should be mapped/unmapped only once */
592 static int fw_map_pages_buf(struct firmware_buf
*buf
)
594 if (!buf
->is_paged_buf
)
598 buf
->data
= vmap(buf
->pages
, buf
->nr_pages
, 0, PAGE_KERNEL_RO
);
605 * firmware_loading_store - set value in the 'loading' control file
606 * @dev: device pointer
607 * @attr: device attribute pointer
608 * @buf: buffer to scan for loading control value
609 * @count: number of bytes in @buf
611 * The relevant values are:
613 * 1: Start a load, discarding any previous partial load.
614 * 0: Conclude the load and hand the data to the driver code.
615 * -1: Conclude the load with an error and discard any written data.
617 static ssize_t
firmware_loading_store(struct device
*dev
,
618 struct device_attribute
*attr
,
619 const char *buf
, size_t count
)
621 struct firmware_priv
*fw_priv
= to_firmware_priv(dev
);
622 struct firmware_buf
*fw_buf
;
623 ssize_t written
= count
;
624 int loading
= simple_strtol(buf
, NULL
, 10);
627 mutex_lock(&fw_lock
);
628 fw_buf
= fw_priv
->buf
;
634 /* discarding any previous partial load */
635 if (!test_bit(FW_STATUS_DONE
, &fw_buf
->status
)) {
636 for (i
= 0; i
< fw_buf
->nr_pages
; i
++)
637 __free_page(fw_buf
->pages
[i
]);
638 vfree(fw_buf
->pages
);
639 fw_buf
->pages
= NULL
;
640 fw_buf
->page_array_size
= 0;
641 fw_buf
->nr_pages
= 0;
642 set_bit(FW_STATUS_LOADING
, &fw_buf
->status
);
646 if (test_bit(FW_STATUS_LOADING
, &fw_buf
->status
)) {
649 set_bit(FW_STATUS_DONE
, &fw_buf
->status
);
650 clear_bit(FW_STATUS_LOADING
, &fw_buf
->status
);
653 * Several loading requests may be pending on
654 * one same firmware buf, so let all requests
655 * see the mapped 'buf->data' once the loading
658 rc
= fw_map_pages_buf(fw_buf
);
660 dev_err(dev
, "%s: map pages failed\n",
663 rc
= security_kernel_post_read_file(NULL
,
664 fw_buf
->data
, fw_buf
->size
,
668 * Same logic as fw_load_abort, only the DONE bit
669 * is ignored and we set ABORT only on failure.
671 list_del_init(&fw_buf
->pending_list
);
673 set_bit(FW_STATUS_ABORT
, &fw_buf
->status
);
676 complete_all(&fw_buf
->completion
);
681 dev_err(dev
, "%s: unexpected value (%d)\n", __func__
, loading
);
684 fw_load_abort(fw_priv
);
688 mutex_unlock(&fw_lock
);
692 static DEVICE_ATTR(loading
, 0644, firmware_loading_show
, firmware_loading_store
);
694 static ssize_t
firmware_data_read(struct file
*filp
, struct kobject
*kobj
,
695 struct bin_attribute
*bin_attr
,
696 char *buffer
, loff_t offset
, size_t count
)
698 struct device
*dev
= kobj_to_dev(kobj
);
699 struct firmware_priv
*fw_priv
= to_firmware_priv(dev
);
700 struct firmware_buf
*buf
;
703 mutex_lock(&fw_lock
);
705 if (!buf
|| test_bit(FW_STATUS_DONE
, &buf
->status
)) {
709 if (offset
> buf
->size
) {
713 if (count
> buf
->size
- offset
)
714 count
= buf
->size
- offset
;
720 int page_nr
= offset
>> PAGE_SHIFT
;
721 int page_ofs
= offset
& (PAGE_SIZE
-1);
722 int page_cnt
= min_t(size_t, PAGE_SIZE
- page_ofs
, count
);
724 page_data
= kmap(buf
->pages
[page_nr
]);
726 memcpy(buffer
, page_data
+ page_ofs
, page_cnt
);
728 kunmap(buf
->pages
[page_nr
]);
734 mutex_unlock(&fw_lock
);
738 static int fw_realloc_buffer(struct firmware_priv
*fw_priv
, int min_size
)
740 struct firmware_buf
*buf
= fw_priv
->buf
;
741 int pages_needed
= PAGE_ALIGN(min_size
) >> PAGE_SHIFT
;
743 /* If the array of pages is too small, grow it... */
744 if (buf
->page_array_size
< pages_needed
) {
745 int new_array_size
= max(pages_needed
,
746 buf
->page_array_size
* 2);
747 struct page
**new_pages
;
749 new_pages
= vmalloc(new_array_size
* sizeof(void *));
751 fw_load_abort(fw_priv
);
754 memcpy(new_pages
, buf
->pages
,
755 buf
->page_array_size
* sizeof(void *));
756 memset(&new_pages
[buf
->page_array_size
], 0, sizeof(void *) *
757 (new_array_size
- buf
->page_array_size
));
759 buf
->pages
= new_pages
;
760 buf
->page_array_size
= new_array_size
;
763 while (buf
->nr_pages
< pages_needed
) {
764 buf
->pages
[buf
->nr_pages
] =
765 alloc_page(GFP_KERNEL
| __GFP_HIGHMEM
);
767 if (!buf
->pages
[buf
->nr_pages
]) {
768 fw_load_abort(fw_priv
);
777 * firmware_data_write - write method for firmware
778 * @filp: open sysfs file
779 * @kobj: kobject for the device
780 * @bin_attr: bin_attr structure
781 * @buffer: buffer being written
782 * @offset: buffer offset for write in total data store area
783 * @count: buffer size
785 * Data written to the 'data' attribute will be later handed to
786 * the driver as a firmware image.
788 static ssize_t
firmware_data_write(struct file
*filp
, struct kobject
*kobj
,
789 struct bin_attribute
*bin_attr
,
790 char *buffer
, loff_t offset
, size_t count
)
792 struct device
*dev
= kobj_to_dev(kobj
);
793 struct firmware_priv
*fw_priv
= to_firmware_priv(dev
);
794 struct firmware_buf
*buf
;
797 if (!capable(CAP_SYS_RAWIO
))
800 mutex_lock(&fw_lock
);
802 if (!buf
|| test_bit(FW_STATUS_DONE
, &buf
->status
)) {
807 retval
= fw_realloc_buffer(fw_priv
, offset
+ count
);
815 int page_nr
= offset
>> PAGE_SHIFT
;
816 int page_ofs
= offset
& (PAGE_SIZE
- 1);
817 int page_cnt
= min_t(size_t, PAGE_SIZE
- page_ofs
, count
);
819 page_data
= kmap(buf
->pages
[page_nr
]);
821 memcpy(page_data
+ page_ofs
, buffer
, page_cnt
);
823 kunmap(buf
->pages
[page_nr
]);
829 buf
->size
= max_t(size_t, offset
, buf
->size
);
831 mutex_unlock(&fw_lock
);
835 static struct bin_attribute firmware_attr_data
= {
836 .attr
= { .name
= "data", .mode
= 0644 },
838 .read
= firmware_data_read
,
839 .write
= firmware_data_write
,
842 static struct attribute
*fw_dev_attrs
[] = {
843 &dev_attr_loading
.attr
,
847 static struct bin_attribute
*fw_dev_bin_attrs
[] = {
852 static const struct attribute_group fw_dev_attr_group
= {
853 .attrs
= fw_dev_attrs
,
854 .bin_attrs
= fw_dev_bin_attrs
,
857 static const struct attribute_group
*fw_dev_attr_groups
[] = {
862 static struct firmware_priv
*
863 fw_create_instance(struct firmware
*firmware
, const char *fw_name
,
864 struct device
*device
, unsigned int opt_flags
)
866 struct firmware_priv
*fw_priv
;
867 struct device
*f_dev
;
869 fw_priv
= kzalloc(sizeof(*fw_priv
), GFP_KERNEL
);
871 fw_priv
= ERR_PTR(-ENOMEM
);
875 fw_priv
->nowait
= !!(opt_flags
& FW_OPT_NOWAIT
);
876 fw_priv
->fw
= firmware
;
877 f_dev
= &fw_priv
->dev
;
879 device_initialize(f_dev
);
880 dev_set_name(f_dev
, "%s", fw_name
);
881 f_dev
->parent
= device
;
882 f_dev
->class = &firmware_class
;
883 f_dev
->groups
= fw_dev_attr_groups
;
888 /* load a firmware via user helper */
889 static int _request_firmware_load(struct firmware_priv
*fw_priv
,
890 unsigned int opt_flags
, long timeout
)
893 struct device
*f_dev
= &fw_priv
->dev
;
894 struct firmware_buf
*buf
= fw_priv
->buf
;
896 /* fall back on userspace loading */
897 buf
->is_paged_buf
= true;
899 dev_set_uevent_suppress(f_dev
, true);
901 retval
= device_add(f_dev
);
903 dev_err(f_dev
, "%s: device_register failed\n", __func__
);
907 mutex_lock(&fw_lock
);
908 list_add(&buf
->pending_list
, &pending_fw_head
);
909 mutex_unlock(&fw_lock
);
911 if (opt_flags
& FW_OPT_UEVENT
) {
912 buf
->need_uevent
= true;
913 dev_set_uevent_suppress(f_dev
, false);
914 dev_dbg(f_dev
, "firmware: requesting %s\n", buf
->fw_id
);
915 kobject_uevent(&fw_priv
->dev
.kobj
, KOBJ_ADD
);
917 timeout
= MAX_JIFFY_OFFSET
;
920 retval
= wait_for_completion_interruptible_timeout(&buf
->completion
,
922 if (retval
== -ERESTARTSYS
|| !retval
) {
923 mutex_lock(&fw_lock
);
924 fw_load_abort(fw_priv
);
925 mutex_unlock(&fw_lock
);
926 } else if (retval
> 0) {
930 if (is_fw_load_aborted(buf
))
941 static int fw_load_from_user_helper(struct firmware
*firmware
,
942 const char *name
, struct device
*device
,
943 unsigned int opt_flags
, long timeout
)
945 struct firmware_priv
*fw_priv
;
947 fw_priv
= fw_create_instance(firmware
, name
, device
, opt_flags
);
949 return PTR_ERR(fw_priv
);
951 fw_priv
->buf
= firmware
->priv
;
952 return _request_firmware_load(fw_priv
, opt_flags
, timeout
);
955 #ifdef CONFIG_PM_SLEEP
956 /* kill pending requests without uevent to avoid blocking suspend */
957 static void kill_requests_without_uevent(void)
959 struct firmware_buf
*buf
;
960 struct firmware_buf
*next
;
962 mutex_lock(&fw_lock
);
963 list_for_each_entry_safe(buf
, next
, &pending_fw_head
, pending_list
) {
964 if (!buf
->need_uevent
)
965 __fw_load_abort(buf
);
967 mutex_unlock(&fw_lock
);
971 #else /* CONFIG_FW_LOADER_USER_HELPER */
973 fw_load_from_user_helper(struct firmware
*firmware
, const char *name
,
974 struct device
*device
, unsigned int opt_flags
,
980 /* No abort during direct loading */
981 #define is_fw_load_aborted(buf) false
983 #ifdef CONFIG_PM_SLEEP
984 static inline void kill_requests_without_uevent(void) { }
987 #endif /* CONFIG_FW_LOADER_USER_HELPER */
990 /* wait until the shared firmware_buf becomes ready (or error) */
991 static int sync_cached_firmware_buf(struct firmware_buf
*buf
)
995 mutex_lock(&fw_lock
);
996 while (!test_bit(FW_STATUS_DONE
, &buf
->status
)) {
997 if (is_fw_load_aborted(buf
)) {
1001 mutex_unlock(&fw_lock
);
1002 ret
= wait_for_completion_interruptible(&buf
->completion
);
1003 mutex_lock(&fw_lock
);
1005 mutex_unlock(&fw_lock
);
1009 /* prepare firmware and firmware_buf structs;
1010 * return 0 if a firmware is already assigned, 1 if need to load one,
1011 * or a negative error code
1014 _request_firmware_prepare(struct firmware
**firmware_p
, const char *name
,
1015 struct device
*device
)
1017 struct firmware
*firmware
;
1018 struct firmware_buf
*buf
;
1021 *firmware_p
= firmware
= kzalloc(sizeof(*firmware
), GFP_KERNEL
);
1023 dev_err(device
, "%s: kmalloc(struct firmware) failed\n",
1028 if (fw_get_builtin_firmware(firmware
, name
)) {
1029 dev_dbg(device
, "using built-in %s\n", name
);
1030 return 0; /* assigned */
1033 ret
= fw_lookup_and_allocate_buf(name
, &fw_cache
, &buf
);
1036 * bind with 'buf' now to avoid warning in failure path
1037 * of requesting firmware.
1039 firmware
->priv
= buf
;
1042 ret
= sync_cached_firmware_buf(buf
);
1044 fw_set_page_data(buf
, firmware
);
1045 return 0; /* assigned */
1051 return 1; /* need to load */
1054 static int assign_firmware_buf(struct firmware
*fw
, struct device
*device
,
1055 unsigned int opt_flags
)
1057 struct firmware_buf
*buf
= fw
->priv
;
1059 mutex_lock(&fw_lock
);
1060 if (!buf
->size
|| is_fw_load_aborted(buf
)) {
1061 mutex_unlock(&fw_lock
);
1066 * add firmware name into devres list so that we can auto cache
1067 * and uncache firmware for device.
1069 * device may has been deleted already, but the problem
1070 * should be fixed in devres or driver core.
1072 /* don't cache firmware handled without uevent */
1073 if (device
&& (opt_flags
& FW_OPT_UEVENT
))
1074 fw_add_devm_name(device
, buf
->fw_id
);
1077 * After caching firmware image is started, let it piggyback
1078 * on request firmware.
1080 if (buf
->fwc
->state
== FW_LOADER_START_CACHE
) {
1081 if (fw_cache_piggyback_on_request(buf
->fw_id
))
1082 kref_get(&buf
->ref
);
1085 /* pass the pages buffer to driver at the last minute */
1086 fw_set_page_data(buf
, fw
);
1087 mutex_unlock(&fw_lock
);
1091 /* called from request_firmware() and request_firmware_work_func() */
1093 _request_firmware(const struct firmware
**firmware_p
, const char *name
,
1094 struct device
*device
, unsigned int opt_flags
)
1096 struct firmware
*fw
= NULL
;
1103 if (!name
|| name
[0] == '\0') {
1108 ret
= _request_firmware_prepare(&fw
, name
, device
);
1109 if (ret
<= 0) /* error or already assigned */
1113 timeout
= firmware_loading_timeout();
1114 if (opt_flags
& FW_OPT_NOWAIT
) {
1115 timeout
= usermodehelper_read_lock_wait(timeout
);
1117 dev_dbg(device
, "firmware: %s loading timed out\n",
1123 ret
= usermodehelper_read_trylock();
1125 dev_err(device
, "firmware: %s will not be loaded\n",
1131 ret
= fw_get_filesystem_firmware(device
, fw
->priv
);
1133 if (!(opt_flags
& FW_OPT_NO_WARN
))
1135 "Direct firmware load for %s failed with error %d\n",
1137 if (opt_flags
& FW_OPT_USERHELPER
) {
1138 dev_warn(device
, "Falling back to user helper\n");
1139 ret
= fw_load_from_user_helper(fw
, name
, device
,
1140 opt_flags
, timeout
);
1145 ret
= assign_firmware_buf(fw
, device
, opt_flags
);
1147 usermodehelper_read_unlock();
1151 release_firmware(fw
);
1160 * request_firmware: - send firmware request and wait for it
1161 * @firmware_p: pointer to firmware image
1162 * @name: name of firmware file
1163 * @device: device for which firmware is being loaded
1165 * @firmware_p will be used to return a firmware image by the name
1166 * of @name for device @device.
1168 * Should be called from user context where sleeping is allowed.
1170 * @name will be used as $FIRMWARE in the uevent environment and
1171 * should be distinctive enough not to be confused with any other
1172 * firmware image for this or any other device.
1174 * Caller must hold the reference count of @device.
1176 * The function can be called safely inside device's suspend and
1180 request_firmware(const struct firmware
**firmware_p
, const char *name
,
1181 struct device
*device
)
1185 /* Need to pin this module until return */
1186 __module_get(THIS_MODULE
);
1187 ret
= _request_firmware(firmware_p
, name
, device
,
1188 FW_OPT_UEVENT
| FW_OPT_FALLBACK
);
1189 module_put(THIS_MODULE
);
1192 EXPORT_SYMBOL(request_firmware
);
1195 * request_firmware_direct: - load firmware directly without usermode helper
1196 * @firmware_p: pointer to firmware image
1197 * @name: name of firmware file
1198 * @device: device for which firmware is being loaded
1200 * This function works pretty much like request_firmware(), but this doesn't
1201 * fall back to usermode helper even if the firmware couldn't be loaded
1202 * directly from fs. Hence it's useful for loading optional firmwares, which
1203 * aren't always present, without extra long timeouts of udev.
1205 int request_firmware_direct(const struct firmware
**firmware_p
,
1206 const char *name
, struct device
*device
)
1210 __module_get(THIS_MODULE
);
1211 ret
= _request_firmware(firmware_p
, name
, device
,
1212 FW_OPT_UEVENT
| FW_OPT_NO_WARN
);
1213 module_put(THIS_MODULE
);
1216 EXPORT_SYMBOL_GPL(request_firmware_direct
);
1219 * release_firmware: - release the resource associated with a firmware image
1220 * @fw: firmware resource to release
1222 void release_firmware(const struct firmware
*fw
)
1225 if (!fw_is_builtin_firmware(fw
))
1226 firmware_free_data(fw
);
1230 EXPORT_SYMBOL(release_firmware
);
1233 struct firmware_work
{
1234 struct work_struct work
;
1235 struct module
*module
;
1237 struct device
*device
;
1239 void (*cont
)(const struct firmware
*fw
, void *context
);
1240 unsigned int opt_flags
;
1243 static void request_firmware_work_func(struct work_struct
*work
)
1245 struct firmware_work
*fw_work
;
1246 const struct firmware
*fw
;
1248 fw_work
= container_of(work
, struct firmware_work
, work
);
1250 _request_firmware(&fw
, fw_work
->name
, fw_work
->device
,
1251 fw_work
->opt_flags
);
1252 fw_work
->cont(fw
, fw_work
->context
);
1253 put_device(fw_work
->device
); /* taken in request_firmware_nowait() */
1255 module_put(fw_work
->module
);
1256 kfree_const(fw_work
->name
);
1261 * request_firmware_nowait - asynchronous version of request_firmware
1262 * @module: module requesting the firmware
1263 * @uevent: sends uevent to copy the firmware image if this flag
1264 * is non-zero else the firmware copy must be done manually.
1265 * @name: name of firmware file
1266 * @device: device for which firmware is being loaded
1267 * @gfp: allocation flags
1268 * @context: will be passed over to @cont, and
1269 * @fw may be %NULL if firmware request fails.
1270 * @cont: function will be called asynchronously when the firmware
1273 * Caller must hold the reference count of @device.
1275 * Asynchronous variant of request_firmware() for user contexts:
1276 * - sleep for as small periods as possible since it may
1277 * increase kernel boot time of built-in device drivers
1278 * requesting firmware in their ->probe() methods, if
1279 * @gfp is GFP_KERNEL.
1281 * - can't sleep at all if @gfp is GFP_ATOMIC.
1284 request_firmware_nowait(
1285 struct module
*module
, bool uevent
,
1286 const char *name
, struct device
*device
, gfp_t gfp
, void *context
,
1287 void (*cont
)(const struct firmware
*fw
, void *context
))
1289 struct firmware_work
*fw_work
;
1291 fw_work
= kzalloc(sizeof(struct firmware_work
), gfp
);
1295 fw_work
->module
= module
;
1296 fw_work
->name
= kstrdup_const(name
, gfp
);
1297 if (!fw_work
->name
) {
1301 fw_work
->device
= device
;
1302 fw_work
->context
= context
;
1303 fw_work
->cont
= cont
;
1304 fw_work
->opt_flags
= FW_OPT_NOWAIT
| FW_OPT_FALLBACK
|
1305 (uevent
? FW_OPT_UEVENT
: FW_OPT_USERHELPER
);
1307 if (!try_module_get(module
)) {
1308 kfree_const(fw_work
->name
);
1313 get_device(fw_work
->device
);
1314 INIT_WORK(&fw_work
->work
, request_firmware_work_func
);
1315 schedule_work(&fw_work
->work
);
1318 EXPORT_SYMBOL(request_firmware_nowait
);
1320 #ifdef CONFIG_PM_SLEEP
1321 static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain
);
1324 * cache_firmware - cache one firmware image in kernel memory space
1325 * @fw_name: the firmware image name
1327 * Cache firmware in kernel memory so that drivers can use it when
1328 * system isn't ready for them to request firmware image from userspace.
1329 * Once it returns successfully, driver can use request_firmware or its
1330 * nowait version to get the cached firmware without any interacting
1333 * Return 0 if the firmware image has been cached successfully
1334 * Return !0 otherwise
1337 static int cache_firmware(const char *fw_name
)
1340 const struct firmware
*fw
;
1342 pr_debug("%s: %s\n", __func__
, fw_name
);
1344 ret
= request_firmware(&fw
, fw_name
, NULL
);
1348 pr_debug("%s: %s ret=%d\n", __func__
, fw_name
, ret
);
1353 static struct firmware_buf
*fw_lookup_buf(const char *fw_name
)
1355 struct firmware_buf
*tmp
;
1356 struct firmware_cache
*fwc
= &fw_cache
;
1358 spin_lock(&fwc
->lock
);
1359 tmp
= __fw_lookup_buf(fw_name
);
1360 spin_unlock(&fwc
->lock
);
1366 * uncache_firmware - remove one cached firmware image
1367 * @fw_name: the firmware image name
1369 * Uncache one firmware image which has been cached successfully
1372 * Return 0 if the firmware cache has been removed successfully
1373 * Return !0 otherwise
1376 static int uncache_firmware(const char *fw_name
)
1378 struct firmware_buf
*buf
;
1381 pr_debug("%s: %s\n", __func__
, fw_name
);
1383 if (fw_get_builtin_firmware(&fw
, fw_name
))
1386 buf
= fw_lookup_buf(fw_name
);
1395 static struct fw_cache_entry
*alloc_fw_cache_entry(const char *name
)
1397 struct fw_cache_entry
*fce
;
1399 fce
= kzalloc(sizeof(*fce
), GFP_ATOMIC
);
1403 fce
->name
= kstrdup_const(name
, GFP_ATOMIC
);
1413 static int __fw_entry_found(const char *name
)
1415 struct firmware_cache
*fwc
= &fw_cache
;
1416 struct fw_cache_entry
*fce
;
1418 list_for_each_entry(fce
, &fwc
->fw_names
, list
) {
1419 if (!strcmp(fce
->name
, name
))
1425 static int fw_cache_piggyback_on_request(const char *name
)
1427 struct firmware_cache
*fwc
= &fw_cache
;
1428 struct fw_cache_entry
*fce
;
1431 spin_lock(&fwc
->name_lock
);
1432 if (__fw_entry_found(name
))
1435 fce
= alloc_fw_cache_entry(name
);
1438 list_add(&fce
->list
, &fwc
->fw_names
);
1439 pr_debug("%s: fw: %s\n", __func__
, name
);
1442 spin_unlock(&fwc
->name_lock
);
1446 static void free_fw_cache_entry(struct fw_cache_entry
*fce
)
1448 kfree_const(fce
->name
);
1452 static void __async_dev_cache_fw_image(void *fw_entry
,
1453 async_cookie_t cookie
)
1455 struct fw_cache_entry
*fce
= fw_entry
;
1456 struct firmware_cache
*fwc
= &fw_cache
;
1459 ret
= cache_firmware(fce
->name
);
1461 spin_lock(&fwc
->name_lock
);
1462 list_del(&fce
->list
);
1463 spin_unlock(&fwc
->name_lock
);
1465 free_fw_cache_entry(fce
);
1469 /* called with dev->devres_lock held */
1470 static void dev_create_fw_entry(struct device
*dev
, void *res
,
1473 struct fw_name_devm
*fwn
= res
;
1474 const char *fw_name
= fwn
->name
;
1475 struct list_head
*head
= data
;
1476 struct fw_cache_entry
*fce
;
1478 fce
= alloc_fw_cache_entry(fw_name
);
1480 list_add(&fce
->list
, head
);
1483 static int devm_name_match(struct device
*dev
, void *res
,
1486 struct fw_name_devm
*fwn
= res
;
1487 return (fwn
->magic
== (unsigned long)match_data
);
1490 static void dev_cache_fw_image(struct device
*dev
, void *data
)
1493 struct fw_cache_entry
*fce
;
1494 struct fw_cache_entry
*fce_next
;
1495 struct firmware_cache
*fwc
= &fw_cache
;
1497 devres_for_each_res(dev
, fw_name_devm_release
,
1498 devm_name_match
, &fw_cache
,
1499 dev_create_fw_entry
, &todo
);
1501 list_for_each_entry_safe(fce
, fce_next
, &todo
, list
) {
1502 list_del(&fce
->list
);
1504 spin_lock(&fwc
->name_lock
);
1505 /* only one cache entry for one firmware */
1506 if (!__fw_entry_found(fce
->name
)) {
1507 list_add(&fce
->list
, &fwc
->fw_names
);
1509 free_fw_cache_entry(fce
);
1512 spin_unlock(&fwc
->name_lock
);
1515 async_schedule_domain(__async_dev_cache_fw_image
,
1521 static void __device_uncache_fw_images(void)
1523 struct firmware_cache
*fwc
= &fw_cache
;
1524 struct fw_cache_entry
*fce
;
1526 spin_lock(&fwc
->name_lock
);
1527 while (!list_empty(&fwc
->fw_names
)) {
1528 fce
= list_entry(fwc
->fw_names
.next
,
1529 struct fw_cache_entry
, list
);
1530 list_del(&fce
->list
);
1531 spin_unlock(&fwc
->name_lock
);
1533 uncache_firmware(fce
->name
);
1534 free_fw_cache_entry(fce
);
1536 spin_lock(&fwc
->name_lock
);
1538 spin_unlock(&fwc
->name_lock
);
1542 * device_cache_fw_images - cache devices' firmware
1544 * If one device called request_firmware or its nowait version
1545 * successfully before, the firmware names are recored into the
1546 * device's devres link list, so device_cache_fw_images can call
1547 * cache_firmware() to cache these firmwares for the device,
1548 * then the device driver can load its firmwares easily at
1549 * time when system is not ready to complete loading firmware.
1551 static void device_cache_fw_images(void)
1553 struct firmware_cache
*fwc
= &fw_cache
;
1557 pr_debug("%s\n", __func__
);
1559 /* cancel uncache work */
1560 cancel_delayed_work_sync(&fwc
->work
);
1563 * use small loading timeout for caching devices' firmware
1564 * because all these firmware images have been loaded
1565 * successfully at lease once, also system is ready for
1566 * completing firmware loading now. The maximum size of
1567 * firmware in current distributions is about 2M bytes,
1568 * so 10 secs should be enough.
1570 old_timeout
= loading_timeout
;
1571 loading_timeout
= 10;
1573 mutex_lock(&fw_lock
);
1574 fwc
->state
= FW_LOADER_START_CACHE
;
1575 dpm_for_each_dev(NULL
, dev_cache_fw_image
);
1576 mutex_unlock(&fw_lock
);
1578 /* wait for completion of caching firmware for all devices */
1579 async_synchronize_full_domain(&fw_cache_domain
);
1581 loading_timeout
= old_timeout
;
1585 * device_uncache_fw_images - uncache devices' firmware
1587 * uncache all firmwares which have been cached successfully
1588 * by device_uncache_fw_images earlier
1590 static void device_uncache_fw_images(void)
1592 pr_debug("%s\n", __func__
);
1593 __device_uncache_fw_images();
1596 static void device_uncache_fw_images_work(struct work_struct
*work
)
1598 device_uncache_fw_images();
1602 * device_uncache_fw_images_delay - uncache devices firmwares
1603 * @delay: number of milliseconds to delay uncache device firmwares
1605 * uncache all devices's firmwares which has been cached successfully
1606 * by device_cache_fw_images after @delay milliseconds.
1608 static void device_uncache_fw_images_delay(unsigned long delay
)
1610 queue_delayed_work(system_power_efficient_wq
, &fw_cache
.work
,
1611 msecs_to_jiffies(delay
));
1614 static int fw_pm_notify(struct notifier_block
*notify_block
,
1615 unsigned long mode
, void *unused
)
1618 case PM_HIBERNATION_PREPARE
:
1619 case PM_SUSPEND_PREPARE
:
1620 case PM_RESTORE_PREPARE
:
1621 kill_requests_without_uevent();
1622 device_cache_fw_images();
1625 case PM_POST_SUSPEND
:
1626 case PM_POST_HIBERNATION
:
1627 case PM_POST_RESTORE
:
1629 * In case that system sleep failed and syscore_suspend is
1632 mutex_lock(&fw_lock
);
1633 fw_cache
.state
= FW_LOADER_NO_CACHE
;
1634 mutex_unlock(&fw_lock
);
1636 device_uncache_fw_images_delay(10 * MSEC_PER_SEC
);
1643 /* stop caching firmware once syscore_suspend is reached */
1644 static int fw_suspend(void)
1646 fw_cache
.state
= FW_LOADER_NO_CACHE
;
1650 static struct syscore_ops fw_syscore_ops
= {
1651 .suspend
= fw_suspend
,
1654 static int fw_cache_piggyback_on_request(const char *name
)
1660 static void __init
fw_cache_init(void)
1662 spin_lock_init(&fw_cache
.lock
);
1663 INIT_LIST_HEAD(&fw_cache
.head
);
1664 fw_cache
.state
= FW_LOADER_NO_CACHE
;
1666 #ifdef CONFIG_PM_SLEEP
1667 spin_lock_init(&fw_cache
.name_lock
);
1668 INIT_LIST_HEAD(&fw_cache
.fw_names
);
1670 INIT_DELAYED_WORK(&fw_cache
.work
,
1671 device_uncache_fw_images_work
);
1673 fw_cache
.pm_notify
.notifier_call
= fw_pm_notify
;
1674 register_pm_notifier(&fw_cache
.pm_notify
);
1676 register_syscore_ops(&fw_syscore_ops
);
1680 static int __init
firmware_class_init(void)
1683 #ifdef CONFIG_FW_LOADER_USER_HELPER
1684 register_reboot_notifier(&fw_shutdown_nb
);
1685 return class_register(&firmware_class
);
1691 static void __exit
firmware_class_exit(void)
1693 #ifdef CONFIG_PM_SLEEP
1694 unregister_syscore_ops(&fw_syscore_ops
);
1695 unregister_pm_notifier(&fw_cache
.pm_notify
);
1697 #ifdef CONFIG_FW_LOADER_USER_HELPER
1698 unregister_reboot_notifier(&fw_shutdown_nb
);
1699 class_unregister(&firmware_class
);
1703 fs_initcall(firmware_class_init
);
1704 module_exit(firmware_class_exit
);