Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / tools / testing / selftests / firmware / fw_filesystem.sh
blobf9508e1a4058995098df7cea4b70bc65418a1d34
1 #!/bin/sh
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.
7 set -e
9 DIR=/sys/devices/virtual/misc/test_firmware
10 TEST_DIR=$(dirname $0)
12 test_modprobe()
14 if [ ! -d $DIR ]; then
15 echo "$0: $DIR not present"
16 echo "You must have the following enabled in your kernel:"
17 cat $TEST_DIR/config
18 exit 1
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)
40 FWPATH=$(mktemp -d)
41 FW="$FWPATH/test-firmware.bin"
43 test_finish()
45 if [ "$HAS_FW_LOADER_USER_HELPER" = "yes" ]; then
46 echo "$OLD_TIMEOUT" >/sys/class/firmware/timeout
48 if [ "$OLD_FWPATH" = "" ]; then
49 OLD_FWPATH=" "
51 echo -n "$OLD_FWPATH" >/sys/module/firmware_class/parameters/path
52 rm -f "$FW"
53 rmdir "$FWPATH"
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
73 exit 1
76 if [ ! -e "$DIR"/trigger_async_request ]; then
77 echo "$0: empty filename: async trigger not present, ignoring test" >&2
78 else
79 if printf '\000' >"$DIR"/trigger_async_request 2> /dev/null; then
80 echo "$0: empty filename should not succeed (async)" >&2
81 exit 1
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
88 exit 1
90 if diff -q "$FW" /dev/test_firmware >/dev/null ; then
91 echo "$0: firmware was not expected to match" >&2
92 exit 1
93 else
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
103 exit 1
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
109 exit 1
110 else
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
117 else
118 if ! echo -n "$NAME" >"$DIR"/trigger_async_request ; then
119 echo "$0: could not trigger async request" >&2
120 exit 1
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
126 exit 1
127 else
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"
137 exit 0
141 # Defaults :
143 # send_uevent: 1
144 # sync_direct: 0
145 # name: test-firmware.bin
146 # num_requests: 4
147 config_reset()
149 echo 1 > $DIR/reset
152 release_all_firmware()
154 echo 1 > $DIR/release_all_firmware
157 config_set_name()
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
172 config_set_uevent()
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
197 read_firmwares()
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
207 exit 1
209 done
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
219 exit 1
221 done
224 test_batched_request_firmware_nofile()
226 echo -n "Batched request_firmware() nofile try #$1: "
227 config_reset
228 config_set_name nope-test-firmware.bin
229 config_trigger_sync
230 read_firmwares_expect_nofile
231 release_all_firmware
232 echo "OK"
235 test_batched_request_firmware_direct_nofile()
237 echo -n "Batched request_firmware_direct() nofile try #$1: "
238 config_reset
239 config_set_name nope-test-firmware.bin
240 config_set_sync_direct
241 config_trigger_sync
242 release_all_firmware
243 echo "OK"
246 test_request_firmware_nowait_uevent_nofile()
248 echo -n "Batched request_firmware_nowait(uevent=true) nofile try #$1: "
249 config_reset
250 config_set_name nope-test-firmware.bin
251 config_trigger_async
252 release_all_firmware
253 echo "OK"
256 test_wait_and_cancel_custom_load()
258 if [ "$HAS_FW_LOADER_USER_HELPER" != "yes" ]; then
259 return
261 local timeout=10
262 name=$1
263 while [ ! -e "$DIR"/"$name"/loading ]; do
264 sleep 0.1
265 timeout=$(( $timeout - 1 ))
266 if [ "$timeout" -eq 0 ]; then
267 echo "firmware interface never appeared:" >&2
268 echo "$DIR/$name/loading" >&2
269 exit 1
271 done
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: "
278 config_unset_uevent
279 config_set_name nope-test-firmware.bin
280 config_trigger_async &
281 test_wait_and_cancel_custom_load nope-test-firmware.bin
282 wait
283 release_all_firmware
284 echo "OK"
287 test_batched_request_firmware()
289 echo -n "Batched request_firmware() try #$1: "
290 config_reset
291 config_trigger_sync
292 read_firmwares
293 release_all_firmware
294 echo "OK"
297 test_batched_request_firmware_direct()
299 echo -n "Batched request_firmware_direct() try #$1: "
300 config_reset
301 config_set_sync_direct
302 config_trigger_sync
303 release_all_firmware
304 echo "OK"
307 test_request_firmware_nowait_uevent()
309 echo -n "Batched request_firmware_nowait(uevent=true) try #$1: "
310 config_reset
311 config_trigger_async
312 release_all_firmware
313 echo "OK"
316 test_request_firmware_nowait_custom()
318 echo -n "Batched request_firmware_nowait(uevent=false) try #$1: "
319 config_unset_uevent
320 config_trigger_async
321 release_all_firmware
322 echo "OK"
325 # Only continue if batched request triggers are present on the
326 # test-firmware driver
327 test_config_present
329 # test with the file present
330 echo
331 echo "Testing with the file present..."
332 for i in $(seq 1 5); do
333 test_batched_request_firmware $i
334 done
336 for i in $(seq 1 5); do
337 test_batched_request_firmware_direct $i
338 done
340 for i in $(seq 1 5); do
341 test_request_firmware_nowait_uevent $i
342 done
344 for i in $(seq 1 5); do
345 test_request_firmware_nowait_custom $i
346 done
348 # Test for file not found, errors are expected, the failure would be
349 # a hung task, which would require a hard reset.
350 echo
351 echo "Testing with the file missing..."
352 for i in $(seq 1 5); do
353 test_batched_request_firmware_nofile $i
354 done
356 for i in $(seq 1 5); do
357 test_batched_request_firmware_direct_nofile $i
358 done
360 for i in $(seq 1 5); do
361 test_request_firmware_nowait_uevent_nofile $i
362 done
364 for i in $(seq 1 5); do
365 test_request_firmware_nowait_custom_nofile $i
366 done
368 exit 0