2 # SPDX-License-Identifier: GPL-2.0
3 # This validates that the kernel will load firmware out of its list of
4 # firmware locations on disk. Since the user helper does similar work,
5 # we reset the custom load directory to a location the user helper doesn't
6 # know so we can be sure we're not accidentally testing the user helper.
9 DIR
=/sys
/devices
/virtual
/misc
/test_firmware
10 TEST_DIR
=$
(dirname $0)
14 if [ ! -d $DIR ]; then
15 echo "$0: $DIR not present"
16 echo "You must have the following enabled in your kernel:"
22 trap "test_modprobe" EXIT
24 if [ ! -d $DIR ]; then
25 modprobe test_firmware
28 # CONFIG_FW_LOADER_USER_HELPER has a sysfs class under /sys/class/firmware/
29 # These days most distros enable CONFIG_FW_LOADER_USER_HELPER but disable
30 # CONFIG_FW_LOADER_USER_HELPER_FALLBACK. We use /sys/class/firmware/ as an
31 # indicator for CONFIG_FW_LOADER_USER_HELPER.
32 HAS_FW_LOADER_USER_HELPER
=$
(if [ -d /sys
/class
/firmware
/ ]; then echo yes; else echo no
; fi)
34 if [ "$HAS_FW_LOADER_USER_HELPER" = "yes" ]; then
35 OLD_TIMEOUT
=$
(cat /sys
/class
/firmware
/timeout
)
38 OLD_FWPATH
=$
(cat /sys
/module
/firmware_class
/parameters
/path
)
41 FW
="$FWPATH/test-firmware.bin"
45 if [ "$HAS_FW_LOADER_USER_HELPER" = "yes" ]; then
46 echo "$OLD_TIMEOUT" >/sys
/class
/firmware
/timeout
48 if [ "$OLD_FWPATH" = "" ]; then
51 echo -n "$OLD_FWPATH" >/sys
/module
/firmware_class
/parameters
/path
56 trap "test_finish" EXIT
58 if [ "$HAS_FW_LOADER_USER_HELPER" = "yes" ]; then
59 # Turn down the timeout so failures don't take so long.
60 echo 1 >/sys
/class
/firmware
/timeout
63 # Set the kernel search path.
64 echo -n "$FWPATH" >/sys
/module
/firmware_class
/parameters
/path
66 # This is an unlikely real-world firmware content. :)
67 echo "ABCD0123" >"$FW"
69 NAME
=$
(basename "$FW")
71 if printf '\000' >"$DIR"/trigger_request
2> /dev
/null
; then
72 echo "$0: empty filename should not succeed" >&2
76 if [ ! -e "$DIR"/trigger_async_request
]; then
77 echo "$0: empty filename: async trigger not present, ignoring test" >&2
79 if printf '\000' >"$DIR"/trigger_async_request
2> /dev
/null
; then
80 echo "$0: empty filename should not succeed (async)" >&2
85 # Request a firmware that doesn't exist, it should fail.
86 if echo -n "nope-$NAME" >"$DIR"/trigger_request
2> /dev
/null
; then
87 echo "$0: firmware shouldn't have loaded" >&2
90 if diff -q "$FW" /dev
/test_firmware
>/dev
/null
; then
91 echo "$0: firmware was not expected to match" >&2
94 if [ "$HAS_FW_LOADER_USER_HELPER" = "yes" ]; then
95 echo "$0: timeout works"
99 # This should succeed via kernel load or will fail after 1 second after
100 # being handed over to the user helper, which won't find the fw either.
101 if ! echo -n "$NAME" >"$DIR"/trigger_request
; then
102 echo "$0: could not trigger request" >&2
106 # Verify the contents are what we expect.
107 if ! diff -q "$FW" /dev
/test_firmware
>/dev
/null
; then
108 echo "$0: firmware was not loaded" >&2
111 echo "$0: filesystem loading works"
114 # Try the asynchronous version too
115 if [ ! -e "$DIR"/trigger_async_request
]; then
116 echo "$0: firmware loading: async trigger not present, ignoring test" >&2
118 if ! echo -n "$NAME" >"$DIR"/trigger_async_request
; then
119 echo "$0: could not trigger async request" >&2
123 # Verify the contents are what we expect.
124 if ! diff -q "$FW" /dev
/test_firmware
>/dev
/null
; then
125 echo "$0: firmware was not loaded (async)" >&2
128 echo "$0: async filesystem loading works"
132 ### Batched requests tests
133 test_config_present
()
135 if [ ! -f $DIR/reset ]; then
136 echo "Configuration triggers not present, ignoring test"
145 # name: test-firmware.bin
152 release_all_firmware
()
154 echo 1 > $DIR/release_all_firmware
159 echo -n $1 > $DIR/config_name
162 config_set_sync_direct
()
164 echo 1 > $DIR/config_sync_direct
167 config_unset_sync_direct
()
169 echo 0 > $DIR/config_sync_direct
174 echo 1 > $DIR/config_send_uevent
177 config_unset_uevent
()
179 echo 0 > $DIR/config_send_uevent
182 config_trigger_sync
()
184 echo -n 1 > $DIR/trigger_batched_requests
2>/dev
/null
187 config_trigger_async
()
189 echo -n 1 > $DIR/trigger_batched_requests_async
2> /dev
/null
192 config_set_read_fw_idx
()
194 echo -n $1 > $DIR/config_read_fw_idx
2> /dev
/null
199 for i
in $
(seq 0 3); do
200 config_set_read_fw_idx
$i
201 # Verify the contents are what we expect.
202 # -Z required for now -- check for yourself, md5sum
203 # on $FW and DIR/read_firmware will yield the same. Even
204 # cmp agrees, so something is off.
205 if ! diff -q -Z "$FW" $DIR/read_firmware
2>/dev
/null
; then
206 echo "request #$i: firmware was not loaded" >&2
212 read_firmwares_expect_nofile
()
214 for i
in $
(seq 0 3); do
215 config_set_read_fw_idx
$i
216 # Ensures contents differ
217 if diff -q -Z "$FW" $DIR/read_firmware
2>/dev
/null
; then
218 echo "request $i: file was not expected to match" >&2
224 test_batched_request_firmware_nofile
()
226 echo -n "Batched request_firmware() nofile try #$1: "
228 config_set_name nope-test-firmware.bin
230 read_firmwares_expect_nofile
235 test_batched_request_firmware_direct_nofile
()
237 echo -n "Batched request_firmware_direct() nofile try #$1: "
239 config_set_name nope-test-firmware.bin
240 config_set_sync_direct
246 test_request_firmware_nowait_uevent_nofile
()
248 echo -n "Batched request_firmware_nowait(uevent=true) nofile try #$1: "
250 config_set_name nope-test-firmware.bin
256 test_wait_and_cancel_custom_load
()
258 if [ "$HAS_FW_LOADER_USER_HELPER" != "yes" ]; then
263 while [ ! -e "$DIR"/"$name"/loading
]; do
265 timeout
=$
(( $timeout - 1 ))
266 if [ "$timeout" -eq 0 ]; then
267 echo "firmware interface never appeared:" >&2
268 echo "$DIR/$name/loading" >&2
272 echo -1 >"$DIR"/"$name"/loading
275 test_request_firmware_nowait_custom_nofile
()
277 echo -n "Batched request_firmware_nowait(uevent=false) nofile try #$1: "
279 config_set_name nope-test-firmware.bin
280 config_trigger_async
&
281 test_wait_and_cancel_custom_load nope-test-firmware.bin
287 test_batched_request_firmware
()
289 echo -n "Batched request_firmware() try #$1: "
297 test_batched_request_firmware_direct
()
299 echo -n "Batched request_firmware_direct() try #$1: "
301 config_set_sync_direct
307 test_request_firmware_nowait_uevent
()
309 echo -n "Batched request_firmware_nowait(uevent=true) try #$1: "
316 test_request_firmware_nowait_custom
()
318 echo -n "Batched request_firmware_nowait(uevent=false) try #$1: "
325 # Only continue if batched request triggers are present on the
326 # test-firmware driver
329 # test with the file present
331 echo "Testing with the file present..."
332 for i
in $
(seq 1 5); do
333 test_batched_request_firmware
$i
336 for i
in $
(seq 1 5); do
337 test_batched_request_firmware_direct
$i
340 for i
in $
(seq 1 5); do
341 test_request_firmware_nowait_uevent
$i
344 for i
in $
(seq 1 5); do
345 test_request_firmware_nowait_custom
$i
348 # Test for file not found, errors are expected, the failure would be
349 # a hung task, which would require a hard reset.
351 echo "Testing with the file missing..."
352 for i
in $
(seq 1 5); do
353 test_batched_request_firmware_nofile
$i
356 for i
in $
(seq 1 5); do
357 test_batched_request_firmware_direct_nofile
$i
360 for i
in $
(seq 1 5); do
361 test_request_firmware_nowait_uevent_nofile
$i
364 for i
in $
(seq 1 5); do
365 test_request_firmware_nowait_custom_nofile
$i