1 // SPDX-License-Identifier: GPL-2.0
3 * main.c - Multi purpose firmware loading support
5 * Copyright (c) 2003 Manuel Estrada Sainz
7 * Please see Documentation/firmware_class/ for more information.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/capability.h>
14 #include <linux/device.h>
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/timer.h>
18 #include <linux/vmalloc.h>
19 #include <linux/interrupt.h>
20 #include <linux/bitops.h>
21 #include <linux/mutex.h>
22 #include <linux/workqueue.h>
23 #include <linux/highmem.h>
24 #include <linux/firmware.h>
25 #include <linux/slab.h>
26 #include <linux/sched.h>
27 #include <linux/file.h>
28 #include <linux/list.h>
30 #include <linux/async.h>
32 #include <linux/suspend.h>
33 #include <linux/syscore_ops.h>
34 #include <linux/reboot.h>
35 #include <linux/security.h>
37 #include <generated/utsrelease.h>
43 MODULE_AUTHOR("Manuel Estrada Sainz");
44 MODULE_DESCRIPTION("Multi purpose firmware loading support");
45 MODULE_LICENSE("GPL");
47 struct firmware_cache
{
48 /* firmware_buf instance will be added into the below list */
50 struct list_head head
;
53 #ifdef CONFIG_PM_SLEEP
55 * Names of firmware images which have been cached successfully
56 * will be added into the below list so that device uncache
57 * helper can trace which firmware images have been cached
61 struct list_head fw_names
;
63 struct delayed_work work
;
65 struct notifier_block pm_notify
;
69 struct fw_cache_entry
{
70 struct list_head list
;
79 static inline struct fw_priv
*to_fw_priv(struct kref
*ref
)
81 return container_of(ref
, struct fw_priv
, ref
);
84 #define FW_LOADER_NO_CACHE 0
85 #define FW_LOADER_START_CACHE 1
87 /* fw_lock could be moved to 'struct fw_sysfs' but since it is just
88 * guarding for corner cases a global lock should be OK */
89 DEFINE_MUTEX(fw_lock
);
91 static struct firmware_cache fw_cache
;
93 /* Builtin firmware support */
95 #ifdef CONFIG_FW_LOADER
97 extern struct builtin_fw __start_builtin_fw
[];
98 extern struct builtin_fw __end_builtin_fw
[];
100 static void fw_copy_to_prealloc_buf(struct firmware
*fw
,
101 void *buf
, size_t size
)
103 if (!buf
|| size
< fw
->size
)
105 memcpy(buf
, fw
->data
, fw
->size
);
108 static bool fw_get_builtin_firmware(struct firmware
*fw
, const char *name
,
109 void *buf
, size_t size
)
111 struct builtin_fw
*b_fw
;
113 for (b_fw
= __start_builtin_fw
; b_fw
!= __end_builtin_fw
; b_fw
++) {
114 if (strcmp(name
, b_fw
->name
) == 0) {
115 fw
->size
= b_fw
->size
;
116 fw
->data
= b_fw
->data
;
117 fw_copy_to_prealloc_buf(fw
, buf
, size
);
126 static bool fw_is_builtin_firmware(const struct firmware
*fw
)
128 struct builtin_fw
*b_fw
;
130 for (b_fw
= __start_builtin_fw
; b_fw
!= __end_builtin_fw
; b_fw
++)
131 if (fw
->data
== b_fw
->data
)
137 #else /* Module case - no builtin firmware support */
139 static inline bool fw_get_builtin_firmware(struct firmware
*fw
,
140 const char *name
, void *buf
,
146 static inline bool fw_is_builtin_firmware(const struct firmware
*fw
)
152 static void fw_state_init(struct fw_priv
*fw_priv
)
154 struct fw_state
*fw_st
= &fw_priv
->fw_st
;
156 init_completion(&fw_st
->completion
);
157 fw_st
->status
= FW_STATUS_UNKNOWN
;
160 static inline int fw_state_wait(struct fw_priv
*fw_priv
)
162 return __fw_state_wait_common(fw_priv
, MAX_SCHEDULE_TIMEOUT
);
165 static int fw_cache_piggyback_on_request(const char *name
);
167 static struct fw_priv
*__allocate_fw_priv(const char *fw_name
,
168 struct firmware_cache
*fwc
,
169 void *dbuf
, size_t size
)
171 struct fw_priv
*fw_priv
;
173 fw_priv
= kzalloc(sizeof(*fw_priv
), GFP_ATOMIC
);
177 fw_priv
->fw_name
= kstrdup_const(fw_name
, GFP_ATOMIC
);
178 if (!fw_priv
->fw_name
) {
183 kref_init(&fw_priv
->ref
);
185 fw_priv
->data
= dbuf
;
186 fw_priv
->allocated_size
= size
;
187 fw_state_init(fw_priv
);
188 #ifdef CONFIG_FW_LOADER_USER_HELPER
189 INIT_LIST_HEAD(&fw_priv
->pending_list
);
192 pr_debug("%s: fw-%s fw_priv=%p\n", __func__
, fw_name
, fw_priv
);
197 static struct fw_priv
*__lookup_fw_priv(const char *fw_name
)
200 struct firmware_cache
*fwc
= &fw_cache
;
202 list_for_each_entry(tmp
, &fwc
->head
, list
)
203 if (!strcmp(tmp
->fw_name
, fw_name
))
208 /* Returns 1 for batching firmware requests with the same name */
209 static int alloc_lookup_fw_priv(const char *fw_name
,
210 struct firmware_cache
*fwc
,
211 struct fw_priv
**fw_priv
, void *dbuf
,
212 size_t size
, enum fw_opt opt_flags
)
216 spin_lock(&fwc
->lock
);
217 if (!(opt_flags
& FW_OPT_NOCACHE
)) {
218 tmp
= __lookup_fw_priv(fw_name
);
221 spin_unlock(&fwc
->lock
);
223 pr_debug("batched request - sharing the same struct fw_priv and lookup for multiple requests\n");
228 tmp
= __allocate_fw_priv(fw_name
, fwc
, dbuf
, size
);
230 INIT_LIST_HEAD(&tmp
->list
);
231 if (!(opt_flags
& FW_OPT_NOCACHE
))
232 list_add(&tmp
->list
, &fwc
->head
);
234 spin_unlock(&fwc
->lock
);
238 return tmp
? 0 : -ENOMEM
;
241 static void __free_fw_priv(struct kref
*ref
)
242 __releases(&fwc
->lock
)
244 struct fw_priv
*fw_priv
= to_fw_priv(ref
);
245 struct firmware_cache
*fwc
= fw_priv
->fwc
;
247 pr_debug("%s: fw-%s fw_priv=%p data=%p size=%u\n",
248 __func__
, fw_priv
->fw_name
, fw_priv
, fw_priv
->data
,
249 (unsigned int)fw_priv
->size
);
251 list_del(&fw_priv
->list
);
252 spin_unlock(&fwc
->lock
);
254 #ifdef CONFIG_FW_LOADER_USER_HELPER
255 if (fw_priv
->is_paged_buf
) {
257 vunmap(fw_priv
->data
);
258 for (i
= 0; i
< fw_priv
->nr_pages
; i
++)
259 __free_page(fw_priv
->pages
[i
]);
260 vfree(fw_priv
->pages
);
263 if (!fw_priv
->allocated_size
)
264 vfree(fw_priv
->data
);
265 kfree_const(fw_priv
->fw_name
);
269 static void free_fw_priv(struct fw_priv
*fw_priv
)
271 struct firmware_cache
*fwc
= fw_priv
->fwc
;
272 spin_lock(&fwc
->lock
);
273 if (!kref_put(&fw_priv
->ref
, __free_fw_priv
))
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");
296 fw_get_filesystem_firmware(struct device
*device
, struct fw_priv
*fw_priv
)
302 enum kernel_read_file_id id
= READING_FIRMWARE
;
303 size_t msize
= INT_MAX
;
305 /* Already populated data member means we're loading into a buffer */
307 id
= READING_FIRMWARE_PREALLOC_BUFFER
;
308 msize
= fw_priv
->allocated_size
;
315 for (i
= 0; i
< ARRAY_SIZE(fw_path
); i
++) {
316 /* skip the unset customized path */
320 len
= snprintf(path
, PATH_MAX
, "%s/%s",
321 fw_path
[i
], fw_priv
->fw_name
);
322 if (len
>= PATH_MAX
) {
328 rc
= kernel_read_file_from_path(path
, &fw_priv
->data
, &size
,
332 dev_warn(device
, "loading %s failed with error %d\n",
335 dev_dbg(device
, "loading %s failed for no such file or directory.\n",
339 dev_dbg(device
, "direct-loading %s\n", fw_priv
->fw_name
);
340 fw_priv
->size
= size
;
341 fw_state_done(fw_priv
);
349 /* firmware holds the ownership of pages */
350 static void firmware_free_data(const struct firmware
*fw
)
352 /* Loaded directly? */
357 free_fw_priv(fw
->priv
);
360 /* store the pages buffer info firmware from buf */
361 static void fw_set_page_data(struct fw_priv
*fw_priv
, struct firmware
*fw
)
364 #ifdef CONFIG_FW_LOADER_USER_HELPER
365 fw
->pages
= fw_priv
->pages
;
367 fw
->size
= fw_priv
->size
;
368 fw
->data
= fw_priv
->data
;
370 pr_debug("%s: fw-%s fw_priv=%p data=%p size=%u\n",
371 __func__
, fw_priv
->fw_name
, fw_priv
, fw_priv
->data
,
372 (unsigned int)fw_priv
->size
);
375 #ifdef CONFIG_PM_SLEEP
376 static void fw_name_devm_release(struct device
*dev
, void *res
)
378 struct fw_name_devm
*fwn
= res
;
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 kfree_const(fwn
->name
);
386 static int fw_devm_match(struct device
*dev
, void *res
,
389 struct fw_name_devm
*fwn
= res
;
391 return (fwn
->magic
== (unsigned long)&fw_cache
) &&
392 !strcmp(fwn
->name
, match_data
);
395 static struct fw_name_devm
*fw_find_devm_name(struct device
*dev
,
398 struct fw_name_devm
*fwn
;
400 fwn
= devres_find(dev
, fw_name_devm_release
,
401 fw_devm_match
, (void *)name
);
405 static bool fw_cache_is_setup(struct device
*dev
, const char *name
)
407 struct fw_name_devm
*fwn
;
409 fwn
= fw_find_devm_name(dev
, name
);
416 /* add firmware name into devres list */
417 static int fw_add_devm_name(struct device
*dev
, const char *name
)
419 struct fw_name_devm
*fwn
;
421 if (fw_cache_is_setup(dev
, name
))
424 fwn
= devres_alloc(fw_name_devm_release
, sizeof(struct fw_name_devm
),
428 fwn
->name
= kstrdup_const(name
, GFP_KERNEL
);
434 fwn
->magic
= (unsigned long)&fw_cache
;
435 devres_add(dev
, fwn
);
440 static bool fw_cache_is_setup(struct device
*dev
, const char *name
)
445 static int fw_add_devm_name(struct device
*dev
, const char *name
)
451 int assign_fw(struct firmware
*fw
, struct device
*device
,
452 enum fw_opt opt_flags
)
454 struct fw_priv
*fw_priv
= fw
->priv
;
457 mutex_lock(&fw_lock
);
458 if (!fw_priv
->size
|| fw_state_is_aborted(fw_priv
)) {
459 mutex_unlock(&fw_lock
);
464 * add firmware name into devres list so that we can auto cache
465 * and uncache firmware for device.
467 * device may has been deleted already, but the problem
468 * should be fixed in devres or driver core.
470 /* don't cache firmware handled without uevent */
471 if (device
&& (opt_flags
& FW_OPT_UEVENT
) &&
472 !(opt_flags
& FW_OPT_NOCACHE
)) {
473 ret
= fw_add_devm_name(device
, fw_priv
->fw_name
);
475 mutex_unlock(&fw_lock
);
481 * After caching firmware image is started, let it piggyback
482 * on request firmware.
484 if (!(opt_flags
& FW_OPT_NOCACHE
) &&
485 fw_priv
->fwc
->state
== FW_LOADER_START_CACHE
) {
486 if (fw_cache_piggyback_on_request(fw_priv
->fw_name
))
487 kref_get(&fw_priv
->ref
);
490 /* pass the pages buffer to driver at the last minute */
491 fw_set_page_data(fw_priv
, fw
);
492 mutex_unlock(&fw_lock
);
496 /* prepare firmware and firmware_buf structs;
497 * return 0 if a firmware is already assigned, 1 if need to load one,
498 * or a negative error code
501 _request_firmware_prepare(struct firmware
**firmware_p
, const char *name
,
502 struct device
*device
, void *dbuf
, size_t size
,
503 enum fw_opt opt_flags
)
505 struct firmware
*firmware
;
506 struct fw_priv
*fw_priv
;
509 *firmware_p
= firmware
= kzalloc(sizeof(*firmware
), GFP_KERNEL
);
511 dev_err(device
, "%s: kmalloc(struct firmware) failed\n",
516 if (fw_get_builtin_firmware(firmware
, name
, dbuf
, size
)) {
517 dev_dbg(device
, "using built-in %s\n", name
);
518 return 0; /* assigned */
521 ret
= alloc_lookup_fw_priv(name
, &fw_cache
, &fw_priv
, dbuf
, size
,
525 * bind with 'priv' now to avoid warning in failure path
526 * of requesting firmware.
528 firmware
->priv
= fw_priv
;
531 ret
= fw_state_wait(fw_priv
);
533 fw_set_page_data(fw_priv
, firmware
);
534 return 0; /* assigned */
540 return 1; /* need to load */
544 * Batched requests need only one wake, we need to do this step last due to the
545 * fallback mechanism. The buf is protected with kref_get(), and it won't be
546 * released until the last user calls release_firmware().
548 * Failed batched requests are possible as well, in such cases we just share
549 * the struct fw_priv and won't release it until all requests are woken
550 * and have gone through this same path.
552 static void fw_abort_batch_reqs(struct firmware
*fw
)
554 struct fw_priv
*fw_priv
;
556 /* Loaded directly? */
557 if (!fw
|| !fw
->priv
)
561 if (!fw_state_is_aborted(fw_priv
))
562 fw_state_aborted(fw_priv
);
565 /* called from request_firmware() and request_firmware_work_func() */
567 _request_firmware(const struct firmware
**firmware_p
, const char *name
,
568 struct device
*device
, void *buf
, size_t size
,
569 enum fw_opt opt_flags
)
571 struct firmware
*fw
= NULL
;
577 if (!name
|| name
[0] == '\0') {
582 ret
= _request_firmware_prepare(&fw
, name
, device
, buf
, size
,
584 if (ret
<= 0) /* error or already assigned */
587 ret
= fw_get_filesystem_firmware(device
, fw
->priv
);
589 if (!(opt_flags
& FW_OPT_NO_WARN
))
591 "Direct firmware load for %s failed with error %d\n",
593 ret
= firmware_fallback_sysfs(fw
, name
, device
, opt_flags
, ret
);
595 ret
= assign_fw(fw
, device
, opt_flags
);
599 fw_abort_batch_reqs(fw
);
600 release_firmware(fw
);
609 * request_firmware() - send firmware request and wait for it
610 * @firmware_p: pointer to firmware image
611 * @name: name of firmware file
612 * @device: device for which firmware is being loaded
614 * @firmware_p will be used to return a firmware image by the name
615 * of @name for device @device.
617 * Should be called from user context where sleeping is allowed.
619 * @name will be used as $FIRMWARE in the uevent environment and
620 * should be distinctive enough not to be confused with any other
621 * firmware image for this or any other device.
623 * Caller must hold the reference count of @device.
625 * The function can be called safely inside device's suspend and
629 request_firmware(const struct firmware
**firmware_p
, const char *name
,
630 struct device
*device
)
634 /* Need to pin this module until return */
635 __module_get(THIS_MODULE
);
636 ret
= _request_firmware(firmware_p
, name
, device
, NULL
, 0,
638 module_put(THIS_MODULE
);
641 EXPORT_SYMBOL(request_firmware
);
644 * firmware_request_nowarn() - request for an optional fw module
645 * @firmware: pointer to firmware image
646 * @name: name of firmware file
647 * @device: device for which firmware is being loaded
649 * This function is similar in behaviour to request_firmware(), except
650 * it doesn't produce warning messages when the file is not found.
651 * The sysfs fallback mechanism is enabled if direct filesystem lookup fails,
652 * however, however failures to find the firmware file with it are still
653 * suppressed. It is therefore up to the driver to check for the return value
654 * of this call and to decide when to inform the users of errors.
656 int firmware_request_nowarn(const struct firmware
**firmware
, const char *name
,
657 struct device
*device
)
661 /* Need to pin this module until return */
662 __module_get(THIS_MODULE
);
663 ret
= _request_firmware(firmware
, name
, device
, NULL
, 0,
664 FW_OPT_UEVENT
| FW_OPT_NO_WARN
);
665 module_put(THIS_MODULE
);
668 EXPORT_SYMBOL_GPL(firmware_request_nowarn
);
671 * request_firmware_direct() - load firmware directly without usermode helper
672 * @firmware_p: pointer to firmware image
673 * @name: name of firmware file
674 * @device: device for which firmware is being loaded
676 * This function works pretty much like request_firmware(), but this doesn't
677 * fall back to usermode helper even if the firmware couldn't be loaded
678 * directly from fs. Hence it's useful for loading optional firmwares, which
679 * aren't always present, without extra long timeouts of udev.
681 int request_firmware_direct(const struct firmware
**firmware_p
,
682 const char *name
, struct device
*device
)
686 __module_get(THIS_MODULE
);
687 ret
= _request_firmware(firmware_p
, name
, device
, NULL
, 0,
688 FW_OPT_UEVENT
| FW_OPT_NO_WARN
|
690 module_put(THIS_MODULE
);
693 EXPORT_SYMBOL_GPL(request_firmware_direct
);
696 * firmware_request_cache() - cache firmware for suspend so resume can use it
697 * @name: name of firmware file
698 * @device: device for which firmware should be cached for
700 * There are some devices with an optimization that enables the device to not
701 * require loading firmware on system reboot. This optimization may still
702 * require the firmware present on resume from suspend. This routine can be
703 * used to ensure the firmware is present on resume from suspend in these
704 * situations. This helper is not compatible with drivers which use
705 * request_firmware_into_buf() or request_firmware_nowait() with no uevent set.
707 int firmware_request_cache(struct device
*device
, const char *name
)
711 mutex_lock(&fw_lock
);
712 ret
= fw_add_devm_name(device
, name
);
713 mutex_unlock(&fw_lock
);
717 EXPORT_SYMBOL_GPL(firmware_request_cache
);
720 * request_firmware_into_buf() - load firmware into a previously allocated buffer
721 * @firmware_p: pointer to firmware image
722 * @name: name of firmware file
723 * @device: device for which firmware is being loaded and DMA region allocated
724 * @buf: address of buffer to load firmware into
725 * @size: size of buffer
727 * This function works pretty much like request_firmware(), but it doesn't
728 * allocate a buffer to hold the firmware data. Instead, the firmware
729 * is loaded directly into the buffer pointed to by @buf and the @firmware_p
730 * data member is pointed at @buf.
732 * This function doesn't cache firmware either.
735 request_firmware_into_buf(const struct firmware
**firmware_p
, const char *name
,
736 struct device
*device
, void *buf
, size_t size
)
740 if (fw_cache_is_setup(device
, name
))
743 __module_get(THIS_MODULE
);
744 ret
= _request_firmware(firmware_p
, name
, device
, buf
, size
,
745 FW_OPT_UEVENT
| FW_OPT_NOCACHE
);
746 module_put(THIS_MODULE
);
749 EXPORT_SYMBOL(request_firmware_into_buf
);
752 * release_firmware() - release the resource associated with a firmware image
753 * @fw: firmware resource to release
755 void release_firmware(const struct firmware
*fw
)
758 if (!fw_is_builtin_firmware(fw
))
759 firmware_free_data(fw
);
763 EXPORT_SYMBOL(release_firmware
);
766 struct firmware_work
{
767 struct work_struct work
;
768 struct module
*module
;
770 struct device
*device
;
772 void (*cont
)(const struct firmware
*fw
, void *context
);
773 enum fw_opt opt_flags
;
776 static void request_firmware_work_func(struct work_struct
*work
)
778 struct firmware_work
*fw_work
;
779 const struct firmware
*fw
;
781 fw_work
= container_of(work
, struct firmware_work
, work
);
783 _request_firmware(&fw
, fw_work
->name
, fw_work
->device
, NULL
, 0,
785 fw_work
->cont(fw
, fw_work
->context
);
786 put_device(fw_work
->device
); /* taken in request_firmware_nowait() */
788 module_put(fw_work
->module
);
789 kfree_const(fw_work
->name
);
794 * request_firmware_nowait() - asynchronous version of request_firmware
795 * @module: module requesting the firmware
796 * @uevent: sends uevent to copy the firmware image if this flag
797 * is non-zero else the firmware copy must be done manually.
798 * @name: name of firmware file
799 * @device: device for which firmware is being loaded
800 * @gfp: allocation flags
801 * @context: will be passed over to @cont, and
802 * @fw may be %NULL if firmware request fails.
803 * @cont: function will be called asynchronously when the firmware
806 * Caller must hold the reference count of @device.
808 * Asynchronous variant of request_firmware() for user contexts:
809 * - sleep for as small periods as possible since it may
810 * increase kernel boot time of built-in device drivers
811 * requesting firmware in their ->probe() methods, if
812 * @gfp is GFP_KERNEL.
814 * - can't sleep at all if @gfp is GFP_ATOMIC.
817 request_firmware_nowait(
818 struct module
*module
, bool uevent
,
819 const char *name
, struct device
*device
, gfp_t gfp
, void *context
,
820 void (*cont
)(const struct firmware
*fw
, void *context
))
822 struct firmware_work
*fw_work
;
824 fw_work
= kzalloc(sizeof(struct firmware_work
), gfp
);
828 fw_work
->module
= module
;
829 fw_work
->name
= kstrdup_const(name
, gfp
);
830 if (!fw_work
->name
) {
834 fw_work
->device
= device
;
835 fw_work
->context
= context
;
836 fw_work
->cont
= cont
;
837 fw_work
->opt_flags
= FW_OPT_NOWAIT
|
838 (uevent
? FW_OPT_UEVENT
: FW_OPT_USERHELPER
);
840 if (!uevent
&& fw_cache_is_setup(device
, name
)) {
841 kfree_const(fw_work
->name
);
846 if (!try_module_get(module
)) {
847 kfree_const(fw_work
->name
);
852 get_device(fw_work
->device
);
853 INIT_WORK(&fw_work
->work
, request_firmware_work_func
);
854 schedule_work(&fw_work
->work
);
857 EXPORT_SYMBOL(request_firmware_nowait
);
859 #ifdef CONFIG_PM_SLEEP
860 static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain
);
863 * cache_firmware() - cache one firmware image in kernel memory space
864 * @fw_name: the firmware image name
866 * Cache firmware in kernel memory so that drivers can use it when
867 * system isn't ready for them to request firmware image from userspace.
868 * Once it returns successfully, driver can use request_firmware or its
869 * nowait version to get the cached firmware without any interacting
872 * Return 0 if the firmware image has been cached successfully
873 * Return !0 otherwise
876 static int cache_firmware(const char *fw_name
)
879 const struct firmware
*fw
;
881 pr_debug("%s: %s\n", __func__
, fw_name
);
883 ret
= request_firmware(&fw
, fw_name
, NULL
);
887 pr_debug("%s: %s ret=%d\n", __func__
, fw_name
, ret
);
892 static struct fw_priv
*lookup_fw_priv(const char *fw_name
)
895 struct firmware_cache
*fwc
= &fw_cache
;
897 spin_lock(&fwc
->lock
);
898 tmp
= __lookup_fw_priv(fw_name
);
899 spin_unlock(&fwc
->lock
);
905 * uncache_firmware() - remove one cached firmware image
906 * @fw_name: the firmware image name
908 * Uncache one firmware image which has been cached successfully
911 * Return 0 if the firmware cache has been removed successfully
912 * Return !0 otherwise
915 static int uncache_firmware(const char *fw_name
)
917 struct fw_priv
*fw_priv
;
920 pr_debug("%s: %s\n", __func__
, fw_name
);
922 if (fw_get_builtin_firmware(&fw
, fw_name
, NULL
, 0))
925 fw_priv
= lookup_fw_priv(fw_name
);
927 free_fw_priv(fw_priv
);
934 static struct fw_cache_entry
*alloc_fw_cache_entry(const char *name
)
936 struct fw_cache_entry
*fce
;
938 fce
= kzalloc(sizeof(*fce
), GFP_ATOMIC
);
942 fce
->name
= kstrdup_const(name
, GFP_ATOMIC
);
952 static int __fw_entry_found(const char *name
)
954 struct firmware_cache
*fwc
= &fw_cache
;
955 struct fw_cache_entry
*fce
;
957 list_for_each_entry(fce
, &fwc
->fw_names
, list
) {
958 if (!strcmp(fce
->name
, name
))
964 static int fw_cache_piggyback_on_request(const char *name
)
966 struct firmware_cache
*fwc
= &fw_cache
;
967 struct fw_cache_entry
*fce
;
970 spin_lock(&fwc
->name_lock
);
971 if (__fw_entry_found(name
))
974 fce
= alloc_fw_cache_entry(name
);
977 list_add(&fce
->list
, &fwc
->fw_names
);
978 pr_debug("%s: fw: %s\n", __func__
, name
);
981 spin_unlock(&fwc
->name_lock
);
985 static void free_fw_cache_entry(struct fw_cache_entry
*fce
)
987 kfree_const(fce
->name
);
991 static void __async_dev_cache_fw_image(void *fw_entry
,
992 async_cookie_t cookie
)
994 struct fw_cache_entry
*fce
= fw_entry
;
995 struct firmware_cache
*fwc
= &fw_cache
;
998 ret
= cache_firmware(fce
->name
);
1000 spin_lock(&fwc
->name_lock
);
1001 list_del(&fce
->list
);
1002 spin_unlock(&fwc
->name_lock
);
1004 free_fw_cache_entry(fce
);
1008 /* called with dev->devres_lock held */
1009 static void dev_create_fw_entry(struct device
*dev
, void *res
,
1012 struct fw_name_devm
*fwn
= res
;
1013 const char *fw_name
= fwn
->name
;
1014 struct list_head
*head
= data
;
1015 struct fw_cache_entry
*fce
;
1017 fce
= alloc_fw_cache_entry(fw_name
);
1019 list_add(&fce
->list
, head
);
1022 static int devm_name_match(struct device
*dev
, void *res
,
1025 struct fw_name_devm
*fwn
= res
;
1026 return (fwn
->magic
== (unsigned long)match_data
);
1029 static void dev_cache_fw_image(struct device
*dev
, void *data
)
1032 struct fw_cache_entry
*fce
;
1033 struct fw_cache_entry
*fce_next
;
1034 struct firmware_cache
*fwc
= &fw_cache
;
1036 devres_for_each_res(dev
, fw_name_devm_release
,
1037 devm_name_match
, &fw_cache
,
1038 dev_create_fw_entry
, &todo
);
1040 list_for_each_entry_safe(fce
, fce_next
, &todo
, list
) {
1041 list_del(&fce
->list
);
1043 spin_lock(&fwc
->name_lock
);
1044 /* only one cache entry for one firmware */
1045 if (!__fw_entry_found(fce
->name
)) {
1046 list_add(&fce
->list
, &fwc
->fw_names
);
1048 free_fw_cache_entry(fce
);
1051 spin_unlock(&fwc
->name_lock
);
1054 async_schedule_domain(__async_dev_cache_fw_image
,
1060 static void __device_uncache_fw_images(void)
1062 struct firmware_cache
*fwc
= &fw_cache
;
1063 struct fw_cache_entry
*fce
;
1065 spin_lock(&fwc
->name_lock
);
1066 while (!list_empty(&fwc
->fw_names
)) {
1067 fce
= list_entry(fwc
->fw_names
.next
,
1068 struct fw_cache_entry
, list
);
1069 list_del(&fce
->list
);
1070 spin_unlock(&fwc
->name_lock
);
1072 uncache_firmware(fce
->name
);
1073 free_fw_cache_entry(fce
);
1075 spin_lock(&fwc
->name_lock
);
1077 spin_unlock(&fwc
->name_lock
);
1081 * device_cache_fw_images() - cache devices' firmware
1083 * If one device called request_firmware or its nowait version
1084 * successfully before, the firmware names are recored into the
1085 * device's devres link list, so device_cache_fw_images can call
1086 * cache_firmware() to cache these firmwares for the device,
1087 * then the device driver can load its firmwares easily at
1088 * time when system is not ready to complete loading firmware.
1090 static void device_cache_fw_images(void)
1092 struct firmware_cache
*fwc
= &fw_cache
;
1095 pr_debug("%s\n", __func__
);
1097 /* cancel uncache work */
1098 cancel_delayed_work_sync(&fwc
->work
);
1100 fw_fallback_set_cache_timeout();
1102 mutex_lock(&fw_lock
);
1103 fwc
->state
= FW_LOADER_START_CACHE
;
1104 dpm_for_each_dev(NULL
, dev_cache_fw_image
);
1105 mutex_unlock(&fw_lock
);
1107 /* wait for completion of caching firmware for all devices */
1108 async_synchronize_full_domain(&fw_cache_domain
);
1110 fw_fallback_set_default_timeout();
1114 * device_uncache_fw_images() - uncache devices' firmware
1116 * uncache all firmwares which have been cached successfully
1117 * by device_uncache_fw_images earlier
1119 static void device_uncache_fw_images(void)
1121 pr_debug("%s\n", __func__
);
1122 __device_uncache_fw_images();
1125 static void device_uncache_fw_images_work(struct work_struct
*work
)
1127 device_uncache_fw_images();
1131 * device_uncache_fw_images_delay() - uncache devices firmwares
1132 * @delay: number of milliseconds to delay uncache device firmwares
1134 * uncache all devices's firmwares which has been cached successfully
1135 * by device_cache_fw_images after @delay milliseconds.
1137 static void device_uncache_fw_images_delay(unsigned long delay
)
1139 queue_delayed_work(system_power_efficient_wq
, &fw_cache
.work
,
1140 msecs_to_jiffies(delay
));
1143 static int fw_pm_notify(struct notifier_block
*notify_block
,
1144 unsigned long mode
, void *unused
)
1147 case PM_HIBERNATION_PREPARE
:
1148 case PM_SUSPEND_PREPARE
:
1149 case PM_RESTORE_PREPARE
:
1151 * kill pending fallback requests with a custom fallback
1152 * to avoid stalling suspend.
1154 kill_pending_fw_fallback_reqs(true);
1155 device_cache_fw_images();
1158 case PM_POST_SUSPEND
:
1159 case PM_POST_HIBERNATION
:
1160 case PM_POST_RESTORE
:
1162 * In case that system sleep failed and syscore_suspend is
1165 mutex_lock(&fw_lock
);
1166 fw_cache
.state
= FW_LOADER_NO_CACHE
;
1167 mutex_unlock(&fw_lock
);
1169 device_uncache_fw_images_delay(10 * MSEC_PER_SEC
);
1176 /* stop caching firmware once syscore_suspend is reached */
1177 static int fw_suspend(void)
1179 fw_cache
.state
= FW_LOADER_NO_CACHE
;
1183 static struct syscore_ops fw_syscore_ops
= {
1184 .suspend
= fw_suspend
,
1187 static int __init
register_fw_pm_ops(void)
1191 spin_lock_init(&fw_cache
.name_lock
);
1192 INIT_LIST_HEAD(&fw_cache
.fw_names
);
1194 INIT_DELAYED_WORK(&fw_cache
.work
,
1195 device_uncache_fw_images_work
);
1197 fw_cache
.pm_notify
.notifier_call
= fw_pm_notify
;
1198 ret
= register_pm_notifier(&fw_cache
.pm_notify
);
1202 register_syscore_ops(&fw_syscore_ops
);
1207 static inline void unregister_fw_pm_ops(void)
1209 unregister_syscore_ops(&fw_syscore_ops
);
1210 unregister_pm_notifier(&fw_cache
.pm_notify
);
1213 static int fw_cache_piggyback_on_request(const char *name
)
1217 static inline int register_fw_pm_ops(void)
1221 static inline void unregister_fw_pm_ops(void)
1226 static void __init
fw_cache_init(void)
1228 spin_lock_init(&fw_cache
.lock
);
1229 INIT_LIST_HEAD(&fw_cache
.head
);
1230 fw_cache
.state
= FW_LOADER_NO_CACHE
;
1233 static int fw_shutdown_notify(struct notifier_block
*unused1
,
1234 unsigned long unused2
, void *unused3
)
1237 * Kill all pending fallback requests to avoid both stalling shutdown,
1238 * and avoid a deadlock with the usermode_lock.
1240 kill_pending_fw_fallback_reqs(false);
1245 static struct notifier_block fw_shutdown_nb
= {
1246 .notifier_call
= fw_shutdown_notify
,
1249 static int __init
firmware_class_init(void)
1253 /* No need to unfold these on exit */
1256 ret
= register_fw_pm_ops();
1260 ret
= register_reboot_notifier(&fw_shutdown_nb
);
1264 return register_sysfs_loader();
1267 unregister_fw_pm_ops();
1271 static void __exit
firmware_class_exit(void)
1273 unregister_fw_pm_ops();
1274 unregister_reboot_notifier(&fw_shutdown_nb
);
1275 unregister_sysfs_loader();
1278 fs_initcall(firmware_class_init
);
1279 module_exit(firmware_class_exit
);