blob: cafdca8b3b15967e9cb5c4caaff149fce0c2fd07 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 request_firmware() hotplug interface:
3 ------------------------------------
Markus Rechberger87d37a42007-06-04 18:45:44 +02004 Copyright (C) 2003 Manuel Estrada Sainz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6 Why:
7 ---
8
9 Today, the most extended way to use firmware in the Linux kernel is linking
10 it statically in a header file. Which has political and technical issues:
11
12 1) Some firmware is not legal to redistribute.
13 2) The firmware occupies memory permanently, even though it often is just
14 used once.
15 3) Some people, like the Debian crowd, don't consider some firmware free
16 enough and remove entire drivers (e.g.: keyspan).
17
18 High level behavior (mixed):
19 ============================
20
Ming Lei10bd4c72012-10-24 10:49:33 +080021 1), kernel(driver):
22 - calls request_firmware(&fw_entry, $FIRMWARE, device)
Kees Cook08559652016-04-26 16:41:21 -070023 - kernel searches the firmware image with name $FIRMWARE directly
Ming Lei10bd4c72012-10-24 10:49:33 +080024 in the below search path of root filesystem:
Ming Lei27602842012-11-03 17:47:58 +080025 User customized search path by module parameter 'path'[1]
Ming Lei10bd4c72012-10-24 10:49:33 +080026 "/lib/firmware/updates/" UTS_RELEASE,
27 "/lib/firmware/updates",
28 "/lib/firmware/" UTS_RELEASE,
29 "/lib/firmware"
30 - If found, goto 7), else goto 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Ming Lei27602842012-11-03 17:47:58 +080032 [1], the 'path' is a string parameter which length should be less
33 than 256, user should pass 'firmware_class.path=$CUSTOMIZED_PATH'
34 if firmware_class is built in kernel(the general situation)
35
Ming Lei10bd4c72012-10-24 10:49:33 +080036 2), userspace:
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 - /sys/class/firmware/xxx/{loading,data} appear.
38 - hotplug gets called with a firmware identifier in $FIRMWARE
39 and the usual hotplug environment.
40 - hotplug: echo 1 > /sys/class/firmware/xxx/loading
41
Ming Lei10bd4c72012-10-24 10:49:33 +080042 3), kernel: Discard any previous partial load.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Ming Lei10bd4c72012-10-24 10:49:33 +080044 4), userspace:
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 - hotplug: cat appropriate_firmware_image > \
46 /sys/class/firmware/xxx/data
47
Ming Lei10bd4c72012-10-24 10:49:33 +080048 5), kernel: grows a buffer in PAGE_SIZE increments to hold the image as it
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 comes in.
50
Ming Lei10bd4c72012-10-24 10:49:33 +080051 6), userspace:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 - hotplug: echo 0 > /sys/class/firmware/xxx/loading
53
Ming Lei10bd4c72012-10-24 10:49:33 +080054 7), kernel: request_firmware() returns and the driver has the firmware
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 image in fw_entry->{data,size}. If something went wrong
56 request_firmware() returns non-zero and fw_entry is set to
57 NULL.
58
Ming Lei10bd4c72012-10-24 10:49:33 +080059 8), kernel(driver): Driver code calls release_firmware(fw_entry) releasing
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 the firmware image and any related resource.
61
62 High level behavior (driver code):
63 ==================================
64
65 if(request_firmware(&fw_entry, $FIRMWARE, device) == 0)
66 copy_fw_to_device(fw_entry->data, fw_entry->size);
Kees Cookb1425182014-07-14 14:38:11 -070067 release_firmware(fw_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 Sample/simple hotplug script:
70 ============================
71
72 # Both $DEVPATH and $FIRMWARE are already provided in the environment.
73
74 HOTPLUG_FW_DIR=/usr/lib/hotplug/firmware/
75
76 echo 1 > /sys/$DEVPATH/loading
Kees Cookb1425182014-07-14 14:38:11 -070077 cat $HOTPLUG_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 echo 0 > /sys/$DEVPATH/loading
79
80 Random notes:
81 ============
82
83 - "echo -1 > /sys/class/firmware/xxx/loading" will cancel the load at
84 once and make request_firmware() return with error.
85
86 - firmware_data_read() and firmware_loading_show() are just provided
87 for testing and completeness, they are not called in normal use.
88
89 - There is also /sys/class/firmware/timeout which holds a timeout in
90 seconds for the whole load operation.
91
92 - request_firmware_nowait() is also provided for convenience in
Ming Lei7fcab092009-05-29 11:33:19 +080093 user contexts to request firmware asynchronously, but can't be called
94 in atomic contexts.
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96
97 about in-kernel persistence:
98 ---------------------------
99 Under some circumstances, as explained below, it would be interesting to keep
100 firmware images in non-swappable kernel memory or even in the kernel image
101 (probably within initramfs).
102
103 Note that this functionality has not been implemented.
104
105 - Why OPTIONAL in-kernel persistence may be a good idea sometimes:
106
107 - If the device that needs the firmware is needed to access the
108 filesystem. When upon some error the device has to be reset and the
109 firmware reloaded, it won't be possible to get it from userspace.
110 e.g.:
111 - A diskless client with a network card that needs firmware.
112 - The filesystem is stored in a disk behind an scsi device
113 that needs firmware.
114 - Replacing buggy DSDT/SSDT ACPI tables on boot.
115 Note: this would require the persistent objects to be included
116 within the kernel image, probably within initramfs.
117
118 And the same device can be needed to access the filesystem or not depending
119 on the setup, so I think that the choice on what firmware to make
120 persistent should be left to userspace.
121
Ming Lei6a927852012-11-03 17:48:16 +0800122 about firmware cache:
123 --------------------
124 After firmware cache mechanism is introduced during system sleep,
125 request_firmware can be called safely inside device's suspend and
Kees Cookb1425182014-07-14 14:38:11 -0700126 resume callback, and callers needn't cache the firmware by
Ming Lei6a927852012-11-03 17:48:16 +0800127 themselves any more for dealing with firmware loss during system
128 resume.