accel/qaic: Add AIC200 support
[drm/drm-misc.git] / tools / testing / selftests / cpufreq / module.sh
blob7f2667e0ae2da518eb61c70ec9698aea5783b680
1 #!/bin/bash
2 # SPDX-License-Identifier: GPL-2.0
4 # Modules specific tests cases
6 # protect against multiple inclusion
7 if [ $FILE_MODULE ]; then
8 return 0
9 else
10 FILE_MODULE=DONE
13 source cpu.sh
14 source cpufreq.sh
15 source governor.sh
17 # Check basic insmod/rmmod
18 # $1: module
19 test_basic_insmod_rmmod()
21 printf "** Test: Running ${FUNCNAME[0]} **\n\n"
23 printf "Inserting $1 module\n"
24 # insert module
25 insmod $1
26 if [ $? != 0 ]; then
27 ktap_exit_fail_msg "Insmod $1 failed\n"
30 printf "Removing $1 module\n"
31 # remove module
32 rmmod $1
33 if [ $? != 0 ]; then
34 ktap_exit_fail_msg "rmmod $1 failed\n"
37 printf "\n"
40 # Insert cpufreq driver module and perform basic tests
41 # $1: cpufreq-driver module to insert
42 # $2: If we want to play with CPUs (1) or not (0)
43 module_driver_test_single()
45 printf "** Test: Running ${FUNCNAME[0]} for driver $1 and cpus_hotplug=$2 **\n\n"
47 if [ $2 -eq 1 ]; then
48 # offline all non-boot CPUs
49 for_each_non_boot_cpu offline_cpu
50 printf "\n"
53 # insert module
54 printf "Inserting $1 module\n\n"
55 insmod $1
56 if [ $? != 0 ]; then
57 printf "Insmod $1 failed\n"
58 return;
61 if [ $2 -eq 1 ]; then
62 # online all non-boot CPUs
63 for_each_non_boot_cpu online_cpu
64 printf "\n"
67 # run basic tests
68 cpufreq_basic_tests
70 # remove module
71 printf "Removing $1 module\n\n"
72 rmmod $1
73 if [ $? != 0 ]; then
74 printf "rmmod $1 failed\n"
75 return;
78 # There shouldn't be any cpufreq directories now.
79 for_each_cpu cpu_should_not_have_cpufreq_directory
80 printf "\n"
83 # $1: cpufreq-driver module to insert
84 module_driver_test()
86 printf "** Test: Running ${FUNCNAME[0]} **\n\n"
88 # check if module is present or not
89 ls $1 > /dev/null
90 if [ $? != 0 ]; then
91 printf "$1: not present in `pwd` folder\n"
92 return;
95 # test basic module tests
96 test_basic_insmod_rmmod $1
98 # Do simple module test
99 module_driver_test_single $1 0
101 # Remove CPUs before inserting module and then bring them back
102 module_driver_test_single $1 1
103 printf "\n"
106 # find governor name based on governor module name
107 # $1: governor module name
108 find_gov_name()
110 if [ $1 = "cpufreq_ondemand.ko" ]; then
111 printf "ondemand"
112 elif [ $1 = "cpufreq_conservative.ko" ]; then
113 printf "conservative"
114 elif [ $1 = "cpufreq_userspace.ko" ]; then
115 printf "userspace"
116 elif [ $1 = "cpufreq_performance.ko" ]; then
117 printf "performance"
118 elif [ $1 = "cpufreq_powersave.ko" ]; then
119 printf "powersave"
120 elif [ $1 = "cpufreq_schedutil.ko" ]; then
121 printf "schedutil"
125 # $1: governor string, $2: governor module, $3: policy
126 # example: module_governor_test_single "ondemand" "cpufreq_ondemand.ko" 2
127 module_governor_test_single()
129 printf "** Test: Running ${FUNCNAME[0]} for $3 **\n\n"
131 backup_governor $3
133 # switch to new governor
134 printf "Switch from $CUR_GOV to $1\n"
135 switch_show_governor $3 $1
137 # try removing module, it should fail as governor is used
138 printf "Removing $2 module\n\n"
139 rmmod $2
140 if [ $? = 0 ]; then
141 printf "WARN: rmmod $2 succeeded even if governor is used\n"
142 insmod $2
143 else
144 printf "Pass: unable to remove $2 while it is being used\n\n"
147 # switch back to old governor
148 printf "Switchback to $CUR_GOV from $1\n"
149 restore_governor $3
150 printf "\n"
153 # Insert cpufreq governor module and perform basic tests
154 # $1: cpufreq-governor module to insert
155 module_governor_test()
157 printf "** Test: Running ${FUNCNAME[0]} **\n\n"
159 # check if module is present or not
160 ls $1 > /dev/null
161 if [ $? != 0 ]; then
162 printf "$1: not present in `pwd` folder\n"
163 return;
166 # test basic module tests
167 test_basic_insmod_rmmod $1
169 # insert module
170 printf "Inserting $1 module\n\n"
171 insmod $1
172 if [ $? != 0 ]; then
173 printf "Insmod $1 failed\n"
174 return;
177 # switch to new governor for each cpu
178 for_each_policy module_governor_test_single $(find_gov_name $1) $1
180 # remove module
181 printf "Removing $1 module\n\n"
182 rmmod $1
183 if [ $? != 0 ]; then
184 printf "rmmod $1 failed\n"
185 return;
187 printf "\n"
190 # test modules: driver and governor
191 # $1: driver module, $2: governor module
192 module_test()
194 printf "** Test: Running ${FUNCNAME[0]} **\n\n"
196 # check if modules are present or not
197 ls $1 $2 > /dev/null
198 if [ $? != 0 ]; then
199 printf "$1 or $2: is not present in `pwd` folder\n"
200 return;
203 # TEST1: Insert gov after driver
204 # insert driver module
205 printf "Inserting $1 module\n\n"
206 insmod $1
207 if [ $? != 0 ]; then
208 printf "Insmod $1 failed\n"
209 return;
212 # run governor tests
213 module_governor_test $2
215 # remove driver module
216 printf "Removing $1 module\n\n"
217 rmmod $1
218 if [ $? != 0 ]; then
219 printf "rmmod $1 failed\n"
220 return;
223 # TEST2: Insert driver after governor
224 # insert governor module
225 printf "Inserting $2 module\n\n"
226 insmod $2
227 if [ $? != 0 ]; then
228 printf "Insmod $2 failed\n"
229 return;
232 # run governor tests
233 module_driver_test $1
235 # remove driver module
236 printf "Removing $2 module\n\n"
237 rmmod $2
238 if [ $? != 0 ]; then
239 printf "rmmod $2 failed\n"
240 return;