~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/driver-api/firmware/fallback-mechanisms.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/driver-api/firmware/fallback-mechanisms.rst (Version linux-6.12-rc7) and /Documentation/driver-api/firmware/fallback-mechanisms.rst (Version linux-5.9.16)


  1 ===================                                 1 ===================
  2 Fallback mechanisms                                 2 Fallback mechanisms
  3 ===================                                 3 ===================
  4                                                     4 
  5 A fallback mechanism is supported to allow to       5 A fallback mechanism is supported to allow to overcome failures to do a direct
  6 filesystem lookup on the root filesystem or wh      6 filesystem lookup on the root filesystem or when the firmware simply cannot be
  7 installed for practical reasons on the root fi      7 installed for practical reasons on the root filesystem. The kernel
  8 configuration options related to supporting th      8 configuration options related to supporting the firmware fallback mechanism are:
  9                                                     9 
 10   * CONFIG_FW_LOADER_USER_HELPER: enables buil     10   * CONFIG_FW_LOADER_USER_HELPER: enables building the firmware fallback
 11     mechanism. Most distributions enable this      11     mechanism. Most distributions enable this option today. If enabled but
 12     CONFIG_FW_LOADER_USER_HELPER_FALLBACK is d     12     CONFIG_FW_LOADER_USER_HELPER_FALLBACK is disabled, only the custom fallback
 13     mechanism is available and for the request     13     mechanism is available and for the request_firmware_nowait() call.
 14   * CONFIG_FW_LOADER_USER_HELPER_FALLBACK: for     14   * CONFIG_FW_LOADER_USER_HELPER_FALLBACK: force enables each request to
 15     enable the kobject uevent fallback mechani     15     enable the kobject uevent fallback mechanism on all firmware API calls
 16     except request_firmware_direct(). Most dis     16     except request_firmware_direct(). Most distributions disable this option
 17     today. The call request_firmware_nowait()      17     today. The call request_firmware_nowait() allows for one alternative
 18     fallback mechanism: if this kconfig option     18     fallback mechanism: if this kconfig option is enabled and your second
 19     argument to request_firmware_nowait(), uev     19     argument to request_firmware_nowait(), uevent, is set to false you are
 20     informing the kernel that you have a custo     20     informing the kernel that you have a custom fallback mechanism and it will
 21     manually load the firmware. Read below for     21     manually load the firmware. Read below for more details.
 22                                                    22 
 23 Note that this means when having this configur     23 Note that this means when having this configuration:
 24                                                    24 
 25 CONFIG_FW_LOADER_USER_HELPER=y                     25 CONFIG_FW_LOADER_USER_HELPER=y
 26 CONFIG_FW_LOADER_USER_HELPER_FALLBACK=n            26 CONFIG_FW_LOADER_USER_HELPER_FALLBACK=n
 27                                                    27 
 28 the kobject uevent fallback mechanism will nev     28 the kobject uevent fallback mechanism will never take effect even
 29 for request_firmware_nowait() when uevent is s     29 for request_firmware_nowait() when uevent is set to true.
 30                                                    30 
 31 Justifying the firmware fallback mechanism         31 Justifying the firmware fallback mechanism
 32 ==========================================         32 ==========================================
 33                                                    33 
 34 Direct filesystem lookups may fail for a varie     34 Direct filesystem lookups may fail for a variety of reasons. Known reasons for
 35 this are worth itemizing and documenting as it     35 this are worth itemizing and documenting as it justifies the need for the
 36 fallback mechanism:                                36 fallback mechanism:
 37                                                    37 
 38 * Race against access with the root filesystem     38 * Race against access with the root filesystem upon bootup.
 39                                                    39 
 40 * Races upon resume from suspend. This is reso     40 * Races upon resume from suspend. This is resolved by the firmware cache, but
 41   the firmware cache is only supported if you      41   the firmware cache is only supported if you use uevents, and its not
 42   supported for request_firmware_into_buf().       42   supported for request_firmware_into_buf().
 43                                                    43 
 44 * Firmware is not accessible through typical m     44 * Firmware is not accessible through typical means:
 45                                                << 
 46         * It cannot be installed into the root     45         * It cannot be installed into the root filesystem
 47         * The firmware provides very unique de     46         * The firmware provides very unique device specific data tailored for
 48           the unit gathered with local informa     47           the unit gathered with local information. An example is calibration
 49           data for WiFi chipsets for mobile de     48           data for WiFi chipsets for mobile devices. This calibration data is
 50           not common to all units, but tailore     49           not common to all units, but tailored per unit.  Such information may
 51           be installed on a separate flash par     50           be installed on a separate flash partition other than where the root
 52           filesystem is provided.                  51           filesystem is provided.
 53                                                    52 
 54 Types of fallback mechanisms                       53 Types of fallback mechanisms
 55 ============================                       54 ============================
 56                                                    55 
 57 There are really two fallback mechanisms avail     56 There are really two fallback mechanisms available using one shared sysfs
 58 interface as a loading facility:                   57 interface as a loading facility:
 59                                                    58 
 60 * Kobject uevent fallback mechanism                59 * Kobject uevent fallback mechanism
 61 * Custom fallback mechanism                        60 * Custom fallback mechanism
 62                                                    61 
 63 First lets document the shared sysfs loading f     62 First lets document the shared sysfs loading facility.
 64                                                    63 
 65 Firmware sysfs loading facility                    64 Firmware sysfs loading facility
 66 ===============================                    65 ===============================
 67                                                    66 
 68 In order to help device drivers upload firmwar     67 In order to help device drivers upload firmware using a fallback mechanism
 69 the firmware infrastructure creates a sysfs in     68 the firmware infrastructure creates a sysfs interface to enable userspace
 70 to load and indicate when firmware is ready. T     69 to load and indicate when firmware is ready. The sysfs directory is created
 71 via fw_create_instance(). This call creates a      70 via fw_create_instance(). This call creates a new struct device named after
 72 the firmware requested, and establishes it in      71 the firmware requested, and establishes it in the device hierarchy by
 73 associating the device used to make the reques     72 associating the device used to make the request as the device's parent.
 74 The sysfs directory's file attributes are defi     73 The sysfs directory's file attributes are defined and controlled through
 75 the new device's class (firmware_class) and gr     74 the new device's class (firmware_class) and group (fw_dev_attr_groups).
 76 This is actually where the original firmware_c     75 This is actually where the original firmware_class module name came from,
 77 given that originally the only firmware loadin     76 given that originally the only firmware loading mechanism available was the
 78 mechanism we now use as a fallback mechanism,      77 mechanism we now use as a fallback mechanism, which registers a struct class
 79 firmware_class. Because the attributes exposed     78 firmware_class. Because the attributes exposed are part of the module name, the
 80 module name firmware_class cannot be renamed i     79 module name firmware_class cannot be renamed in the future, to ensure backward
 81 compatibility with old userspace.                  80 compatibility with old userspace.
 82                                                    81 
 83 To load firmware using the sysfs interface we      82 To load firmware using the sysfs interface we expose a loading indicator,
 84 and a file upload firmware into:                   83 and a file upload firmware into:
 85                                                    84 
 86   * /sys/$DEVPATH/loading                          85   * /sys/$DEVPATH/loading
 87   * /sys/$DEVPATH/data                             86   * /sys/$DEVPATH/data
 88                                                    87 
 89 To upload firmware you will echo 1 onto the lo     88 To upload firmware you will echo 1 onto the loading file to indicate
 90 you are loading firmware. You then write the f     89 you are loading firmware. You then write the firmware into the data file,
 91 and you notify the kernel the firmware is read     90 and you notify the kernel the firmware is ready by echo'ing 0 onto
 92 the loading file.                                  91 the loading file.
 93                                                    92 
 94 The firmware device used to help load firmware     93 The firmware device used to help load firmware using sysfs is only created if
 95 direct firmware loading fails and if the fallb     94 direct firmware loading fails and if the fallback mechanism is enabled for your
 96 firmware request, this is set up with :c:func:     95 firmware request, this is set up with :c:func:`firmware_fallback_sysfs`. It is
 97 important to re-iterate that no device is crea     96 important to re-iterate that no device is created if a direct filesystem lookup
 98 succeeded.                                         97 succeeded.
 99                                                    98 
100 Using::                                            99 Using::
101                                                   100 
102         echo 1 > /sys/$DEVPATH/loading            101         echo 1 > /sys/$DEVPATH/loading
103                                                   102 
104 Will clean any previous partial load at once a    103 Will clean any previous partial load at once and make the firmware API
105 return an error. When loading firmware the fir    104 return an error. When loading firmware the firmware_class grows a buffer
106 for the firmware in PAGE_SIZE increments to ho    105 for the firmware in PAGE_SIZE increments to hold the image as it comes in.
107                                                   106 
108 firmware_data_read() and firmware_loading_show    107 firmware_data_read() and firmware_loading_show() are just provided for the
109 test_firmware driver for testing, they are not    108 test_firmware driver for testing, they are not called in normal use or
110 expected to be used regularly by userspace.       109 expected to be used regularly by userspace.
111                                                   110 
112 firmware_fallback_sysfs                           111 firmware_fallback_sysfs
113 -----------------------                           112 -----------------------
114 .. kernel-doc:: drivers/base/firmware_loader/f    113 .. kernel-doc:: drivers/base/firmware_loader/fallback.c
115    :functions: firmware_fallback_sysfs            114    :functions: firmware_fallback_sysfs
116                                                   115 
117 Firmware kobject uevent fallback mechanism        116 Firmware kobject uevent fallback mechanism
118 ==========================================        117 ==========================================
119                                                   118 
120 Since a device is created for the sysfs interf    119 Since a device is created for the sysfs interface to help load firmware as a
121 fallback mechanism userspace can be informed o    120 fallback mechanism userspace can be informed of the addition of the device by
122 relying on kobject uevents. The addition of th    121 relying on kobject uevents. The addition of the device into the device
123 hierarchy means the fallback mechanism for fir    122 hierarchy means the fallback mechanism for firmware loading has been initiated.
124 For details of implementation refer to fw_load    123 For details of implementation refer to fw_load_sysfs_fallback(), in particular
125 on the use of dev_set_uevent_suppress() and ko    124 on the use of dev_set_uevent_suppress() and kobject_uevent().
126                                                   125 
127 The kernel's kobject uevent mechanism is imple    126 The kernel's kobject uevent mechanism is implemented in lib/kobject_uevent.c,
128 it issues uevents to userspace. As a supplemen    127 it issues uevents to userspace. As a supplement to kobject uevents Linux
129 distributions could also enable CONFIG_UEVENT_    128 distributions could also enable CONFIG_UEVENT_HELPER_PATH, which makes use of
130 core kernel's usermode helper (UMH) functional    129 core kernel's usermode helper (UMH) functionality to call out to a userspace
131 helper for kobject uevents. In practice though    130 helper for kobject uevents. In practice though no standard distribution has
132 ever used the CONFIG_UEVENT_HELPER_PATH. If CO    131 ever used the CONFIG_UEVENT_HELPER_PATH. If CONFIG_UEVENT_HELPER_PATH is
133 enabled this binary would be called each time     132 enabled this binary would be called each time kobject_uevent_env() gets called
134 in the kernel for each kobject uevent triggere    133 in the kernel for each kobject uevent triggered.
135                                                   134 
136 Different implementations have been supported     135 Different implementations have been supported in userspace to take advantage of
137 this fallback mechanism. When firmware loading    136 this fallback mechanism. When firmware loading was only possible using the
138 sysfs mechanism the userspace component "hotpl    137 sysfs mechanism the userspace component "hotplug" provided the functionality of
139 monitoring for kobject events. Historically th    138 monitoring for kobject events. Historically this was superseded be systemd's
140 udev, however firmware loading support was rem    139 udev, however firmware loading support was removed from udev as of systemd
141 commit be2ea723b1d0 ("udev: remove userspace f    140 commit be2ea723b1d0 ("udev: remove userspace firmware loading support")
142 as of v217 on August, 2014. This means most Li    141 as of v217 on August, 2014. This means most Linux distributions today are
143 not using or taking advantage of the firmware     142 not using or taking advantage of the firmware fallback mechanism provided
144 by kobject uevents. This is specially exacerba    143 by kobject uevents. This is specially exacerbated due to the fact that most
145 distributions today disable CONFIG_FW_LOADER_U    144 distributions today disable CONFIG_FW_LOADER_USER_HELPER_FALLBACK.
146                                                   145 
147 Refer to do_firmware_uevent() for details of t    146 Refer to do_firmware_uevent() for details of the kobject event variables
148 setup. The variables currently passed to users    147 setup. The variables currently passed to userspace with a "kobject add"
149 event are:                                        148 event are:
150                                                   149 
151 * FIRMWARE=firmware name                          150 * FIRMWARE=firmware name
152 * TIMEOUT=timeout value                           151 * TIMEOUT=timeout value
153 * ASYNC=whether or not the API request was asy    152 * ASYNC=whether or not the API request was asynchronous
154                                                   153 
155 By default DEVPATH is set by the internal kern    154 By default DEVPATH is set by the internal kernel kobject infrastructure.
156 Below is an example simple kobject uevent scri    155 Below is an example simple kobject uevent script::
157                                                   156 
158         # Both $DEVPATH and $FIRMWARE are alre    157         # Both $DEVPATH and $FIRMWARE are already provided in the environment.
159         MY_FW_DIR=/lib/firmware/                  158         MY_FW_DIR=/lib/firmware/
160         echo 1 > /sys/$DEVPATH/loading            159         echo 1 > /sys/$DEVPATH/loading
161         cat $MY_FW_DIR/$FIRMWARE > /sys/$DEVPA    160         cat $MY_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data
162         echo 0 > /sys/$DEVPATH/loading            161         echo 0 > /sys/$DEVPATH/loading
163                                                   162 
164 Firmware custom fallback mechanism                163 Firmware custom fallback mechanism
165 ==================================                164 ==================================
166                                                   165 
167 Users of the request_firmware_nowait() call ha    166 Users of the request_firmware_nowait() call have yet another option available
168 at their disposal: rely on the sysfs fallback     167 at their disposal: rely on the sysfs fallback mechanism but request that no
169 kobject uevents be issued to userspace. The or    168 kobject uevents be issued to userspace. The original logic behind this
170 was that utilities other than udev might be re    169 was that utilities other than udev might be required to lookup firmware
171 in non-traditional paths -- paths outside of t    170 in non-traditional paths -- paths outside of the listing documented in the
172 section 'Direct filesystem lookup'. This optio    171 section 'Direct filesystem lookup'. This option is not available to any of
173 the other API calls as uevents are always forc    172 the other API calls as uevents are always forced for them.
174                                                   173 
175 Since uevents are only meaningful if the fallb    174 Since uevents are only meaningful if the fallback mechanism is enabled
176 in your kernel it would seem odd to enable uev    175 in your kernel it would seem odd to enable uevents with kernels that do not
177 have the fallback mechanism enabled in their k    176 have the fallback mechanism enabled in their kernels. Unfortunately we also
178 rely on the uevent flag which can be disabled     177 rely on the uevent flag which can be disabled by request_firmware_nowait() to
179 also setup the firmware cache for firmware req    178 also setup the firmware cache for firmware requests. As documented above,
180 the firmware cache is only set up if uevent is    179 the firmware cache is only set up if uevent is enabled for an API call.
181 Although this can disable the firmware cache f    180 Although this can disable the firmware cache for request_firmware_nowait()
182 calls, users of this API should not use it for    181 calls, users of this API should not use it for the purposes of disabling
183 the cache as that was not the original purpose    182 the cache as that was not the original purpose of the flag. Not setting
184 the uevent flag means you want to opt-in for t    183 the uevent flag means you want to opt-in for the firmware fallback mechanism
185 but you want to suppress kobject uevents, as y    184 but you want to suppress kobject uevents, as you have a custom solution which
186 will monitor for your device addition into the    185 will monitor for your device addition into the device hierarchy somehow and
187 load firmware for you through a custom path.      186 load firmware for you through a custom path.
188                                                   187 
189 Firmware fallback timeout                         188 Firmware fallback timeout
190 =========================                         189 =========================
191                                                   190 
192 The firmware fallback mechanism has a timeout.    191 The firmware fallback mechanism has a timeout. If firmware is not loaded
193 onto the sysfs interface by the timeout value     192 onto the sysfs interface by the timeout value an error is sent to the
194 driver. By default the timeout is set to 60 se    193 driver. By default the timeout is set to 60 seconds if uevents are
195 desirable, otherwise MAX_JIFFY_OFFSET is used     194 desirable, otherwise MAX_JIFFY_OFFSET is used (max timeout possible).
196 The logic behind using MAX_JIFFY_OFFSET for no    195 The logic behind using MAX_JIFFY_OFFSET for non-uevents is that a custom
197 solution will have as much time as it needs to    196 solution will have as much time as it needs to load firmware.
198                                                   197 
199 You can customize the firmware timeout by echo    198 You can customize the firmware timeout by echo'ing your desired timeout into
200 the following file:                               199 the following file:
201                                                   200 
202 * /sys/class/firmware/timeout                     201 * /sys/class/firmware/timeout
203                                                   202 
204 If you echo 0 into it means MAX_JIFFY_OFFSET w    203 If you echo 0 into it means MAX_JIFFY_OFFSET will be used. The data type
205 for the timeout is an int.                        204 for the timeout is an int.
206                                                   205 
207 EFI embedded firmware fallback mechanism          206 EFI embedded firmware fallback mechanism
208 ========================================          207 ========================================
209                                                   208 
210 On some devices the system's EFI code / ROM ma    209 On some devices the system's EFI code / ROM may contain an embedded copy
211 of firmware for some of the system's integrate    210 of firmware for some of the system's integrated peripheral devices and
212 the peripheral's Linux device-driver needs to     211 the peripheral's Linux device-driver needs to access this firmware.
213                                                   212 
214 Device drivers which need such firmware can us    213 Device drivers which need such firmware can use the
215 firmware_request_platform() function for this,    214 firmware_request_platform() function for this, note that this is a
216 separate fallback mechanism from the other fal    215 separate fallback mechanism from the other fallback mechanisms and
217 this does not use the sysfs interface.            216 this does not use the sysfs interface.
218                                                   217 
219 A device driver which needs this can describe     218 A device driver which needs this can describe the firmware it needs
220 using an efi_embedded_fw_desc struct:             219 using an efi_embedded_fw_desc struct:
221                                                   220 
222 .. kernel-doc:: include/linux/efi_embedded_fw.    221 .. kernel-doc:: include/linux/efi_embedded_fw.h
223    :functions: efi_embedded_fw_desc               222    :functions: efi_embedded_fw_desc
224                                                   223 
225 The EFI embedded-fw code works by scanning all    224 The EFI embedded-fw code works by scanning all EFI_BOOT_SERVICES_CODE memory
226 segments for an eight byte sequence matching p    225 segments for an eight byte sequence matching prefix; if the prefix is found it
227 then does a sha256 over length bytes and if th    226 then does a sha256 over length bytes and if that matches makes a copy of length
228 bytes and adds that to its list with found fir    227 bytes and adds that to its list with found firmwares.
229                                                   228 
230 To avoid doing this somewhat expensive scan on    229 To avoid doing this somewhat expensive scan on all systems, dmi matching is
231 used. Drivers are expected to export a dmi_sys    230 used. Drivers are expected to export a dmi_system_id array, with each entries'
232 driver_data pointing to an efi_embedded_fw_des    231 driver_data pointing to an efi_embedded_fw_desc.
233                                                   232 
234 To register this array with the efi-embedded-f    233 To register this array with the efi-embedded-fw code, a driver needs to:
235                                                   234 
236 1. Always be builtin to the kernel or store th    235 1. Always be builtin to the kernel or store the dmi_system_id array in a
237    separate object file which always gets buil    236    separate object file which always gets builtin.
238                                                   237 
239 2. Add an extern declaration for the dmi_syste    238 2. Add an extern declaration for the dmi_system_id array to
240    include/linux/efi_embedded_fw.h.               239    include/linux/efi_embedded_fw.h.
241                                                   240 
242 3. Add the dmi_system_id array to the embedded    241 3. Add the dmi_system_id array to the embedded_fw_table in
243    drivers/firmware/efi/embedded-firmware.c wr    242    drivers/firmware/efi/embedded-firmware.c wrapped in a #ifdef testing that
244    the driver is being builtin.                   243    the driver is being builtin.
245                                                   244 
246 4. Add "select EFI_EMBEDDED_FIRMWARE if EFI_ST    245 4. Add "select EFI_EMBEDDED_FIRMWARE if EFI_STUB" to its Kconfig entry.
247                                                   246 
248 The firmware_request_platform() function will     247 The firmware_request_platform() function will always first try to load firmware
249 with the specified name directly from the disk    248 with the specified name directly from the disk, so the EFI embedded-fw can
250 always be overridden by placing a file under /    249 always be overridden by placing a file under /lib/firmware.
251                                                   250 
252 Note that:                                        251 Note that:
253                                                   252 
254 1. The code scanning for EFI embedded-firmware    253 1. The code scanning for EFI embedded-firmware runs near the end
255    of start_kernel(), just before calling rest    254    of start_kernel(), just before calling rest_init(). For normal drivers and
256    subsystems using subsys_initcall() to regis    255    subsystems using subsys_initcall() to register themselves this does not
257    matter. This means that code running earlie    256    matter. This means that code running earlier cannot use EFI
258    embedded-firmware.                             257    embedded-firmware.
259                                                   258 
260 2. At the moment the EFI embedded-fw code assu    259 2. At the moment the EFI embedded-fw code assumes that firmwares always start at
261    an offset which is a multiple of 8 bytes, i    260    an offset which is a multiple of 8 bytes, if this is not true for your case
262    send in a patch to fix this.                   261    send in a patch to fix this.
263                                                   262 
264 3. At the moment the EFI embedded-fw code only    263 3. At the moment the EFI embedded-fw code only works on x86 because other archs
265    free EFI_BOOT_SERVICES_CODE before the EFI     264    free EFI_BOOT_SERVICES_CODE before the EFI embedded-fw code gets a chance to
266    scan it.                                       265    scan it.
267                                                   266 
268 4. The current brute-force scanning of EFI_BOO    267 4. The current brute-force scanning of EFI_BOOT_SERVICES_CODE is an ad-hoc
269    brute-force solution. There has been discus    268    brute-force solution. There has been discussion to use the UEFI Platform
270    Initialization (PI) spec's Firmware Volume     269    Initialization (PI) spec's Firmware Volume protocol. This has been rejected
271    because the FV Protocol relies on *internal    270    because the FV Protocol relies on *internal* interfaces of the PI spec, and:
272    1. The PI spec does not define peripheral f    271    1. The PI spec does not define peripheral firmware at all
273    2. The internal interfaces of the PI spec d    272    2. The internal interfaces of the PI spec do not guarantee any backward
274    compatibility. Any implementation details i    273    compatibility. Any implementation details in FV may be subject to change,
275    and may vary system to system. Supporting t    274    and may vary system to system. Supporting the FV Protocol would be
276    difficult as it is purposely ambiguous.        275    difficult as it is purposely ambiguous.
277                                                   276 
278 Example how to check for and extract embedded     277 Example how to check for and extract embedded firmware
279 ----------------------------------------------    278 ------------------------------------------------------
280                                                   279 
281 To check for, for example Silead touchscreen c    280 To check for, for example Silead touchscreen controller embedded firmware,
282 do the following:                                 281 do the following:
283                                                   282 
284 1. Boot the system with efi=debug on the kerne    283 1. Boot the system with efi=debug on the kernel commandline
285                                                   284 
286 2. cp /sys/kernel/debug/efi/boot_services_code    285 2. cp /sys/kernel/debug/efi/boot_services_code? to your home dir
287                                                   286 
288 3. Open the boot_services_code? files in a hex    287 3. Open the boot_services_code? files in a hex-editor, search for the
289    magic prefix for Silead firmware: F0 00 00     288    magic prefix for Silead firmware: F0 00 00 00 02 00 00 00, this gives you
290    the beginning address of the firmware insid    289    the beginning address of the firmware inside the boot_services_code? file.
291                                                   290 
292 4. The firmware has a specific pattern, it sta    291 4. The firmware has a specific pattern, it starts with a 8 byte page-address,
293    typically F0 00 00 00 02 00 00 00 for the f    292    typically F0 00 00 00 02 00 00 00 for the first page followed by 32-bit
294    word-address + 32-bit value pairs. With the    293    word-address + 32-bit value pairs. With the word-address incrementing 4
295    bytes (1 word) for each pair until a page i    294    bytes (1 word) for each pair until a page is complete. A complete page is
296    followed by a new page-address, followed by    295    followed by a new page-address, followed by more word + value pairs. This
297    leads to a very distinct pattern. Scroll do    296    leads to a very distinct pattern. Scroll down until this pattern stops,
298    this gives you the end of the firmware insi    297    this gives you the end of the firmware inside the boot_services_code? file.
299                                                   298 
300 5. "dd if=boot_services_code? of=firmware bs=1    299 5. "dd if=boot_services_code? of=firmware bs=1 skip=<begin-addr> count=<len>"
301    will extract the firmware for you. Inspect     300    will extract the firmware for you. Inspect the firmware file in a
302    hexeditor to make sure you got the dd param    301    hexeditor to make sure you got the dd parameters correct.
303                                                   302 
304 6. Copy it to /lib/firmware under the expected    303 6. Copy it to /lib/firmware under the expected name to test it.
305                                                   304 
306 7. If the extracted firmware works, you can us    305 7. If the extracted firmware works, you can use the found info to fill an
307    efi_embedded_fw_desc struct to describe it,    306    efi_embedded_fw_desc struct to describe it, run "sha256sum firmware"
308    to get the sha256sum to put in the sha256 f    307    to get the sha256sum to put in the sha256 field.
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php