aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/amd-pstate
diff options
context:
space:
mode:
authorMeng Li <li.meng@amd.com>2022-09-08 08:28:21 +0800
committerShuah Khan <skhan@linuxfoundation.org>2022-10-05 11:05:18 -0600
commitbf6430f8512de304ec95c4558c2a47ad0787f90e (patch)
tree91ec96863b592b5403e809d619c3aef6793148b7 /tools/testing/selftests/amd-pstate
parentselftests/cpu-hotplug: Add log info when test success (diff)
downloadwireguard-linux-bf6430f8512de304ec95c4558c2a47ad0787f90e.tar.xz
wireguard-linux-bf6430f8512de304ec95c4558c2a47ad0787f90e.zip
cpufreq: amd-pstate: Add explanation for X86_AMD_PSTATE_UT
This kernel module is used for testing. It's safe to say M here. It can also be built-in without X86_AMD_PSTATE enabled. Currently, only tests for amd-pstate are supported. If X86_AMD_PSTATE is set disabled, it can tell the users test can only run on amd-pstate driver, please set X86_AMD_PSTATE enabled. In the future, comparison tests will be added. It can set amd-pstate disabled and set acpi-cpufreq enabled to run test cases, then compare the test results. Suggested-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Meng Li <li.meng@amd.com> Acked-by: Huang Rui <ray.huang@amd.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/amd-pstate')
-rwxr-xr-xtools/testing/selftests/amd-pstate/amd-pstate-ut.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/amd-pstate/amd-pstate-ut.sh b/tools/testing/selftests/amd-pstate/amd-pstate-ut.sh
index 273364650285..f8e82d91ffcf 100755
--- a/tools/testing/selftests/amd-pstate/amd-pstate-ut.sh
+++ b/tools/testing/selftests/amd-pstate/amd-pstate-ut.sh
@@ -32,6 +32,7 @@ fi
scaling_driver=$(cat /sys/devices/system/cpu/cpufreq/policy0/scaling_driver)
if [ "$scaling_driver" != "amd-pstate" ]; then
echo "$0 # Skipped: Test can only run on amd-pstate driver."
+ echo "$0 # Please set X86_AMD_PSTATE enabled."
echo "$0 # Current cpufreq scaling drvier is $scaling_driver."
exit $ksft_skip
fi