run.sh 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #!/bin/bash
  2. # SPDX-License-Identifier: GPL-2.0
  3. #
  4. # This test runs on Intel x86 based hardware which support the intel_pstate
  5. # driver. The test checks the frequency settings from the maximum turbo
  6. # state to the minimum supported frequency, in decrements of 100MHz. The
  7. # test runs the aperf.c program to put load on each processor.
  8. #
  9. # The results are displayed in a table which indicate the "Target" state,
  10. # or the requested frequency in MHz, the Actual frequency, as read from
  11. # /proc/cpuinfo, the difference between the Target and Actual frequencies,
  12. # and the value of MSR 0x199 (MSR_IA32_PERF_CTL) which indicates what
  13. # pstate the cpu is in, and the value of
  14. # /sys/devices/system/cpu/intel_pstate/max_perf_pct X maximum turbo state
  15. #
  16. # Notes: In some cases several frequency values may be placed in the
  17. # /tmp/result.X files. This is done on purpose in order to catch cases
  18. # where the pstate driver may not be working at all. There is the case
  19. # where, for example, several "similar" frequencies are in the file:
  20. #
  21. #
  22. #/tmp/result.3100:1:cpu MHz : 2899.980
  23. #/tmp/result.3100:2:cpu MHz : 2900.000
  24. #/tmp/result.3100:3:msr 0x199: 0x1e00
  25. #/tmp/result.3100:4:max_perf_pct 94
  26. #
  27. # and the test will error out in those cases. The result.X file can be checked
  28. # for consistency and modified to remove the extra MHz values. The result.X
  29. # files can be re-evaluated by setting EVALUATE_ONLY to 1 below.
  30. EVALUATE_ONLY=0
  31. # Kselftest framework requirement - SKIP code is 4.
  32. ksft_skip=4
  33. if ! uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ | grep -q x86; then
  34. echo "$0 # Skipped: Test can only run on x86 architectures."
  35. exit $ksft_skip
  36. fi
  37. msg="skip all tests:"
  38. if [ $UID != 0 ] && [ $EVALUATE_ONLY == 0 ]; then
  39. echo $msg please run this as root >&2
  40. exit $ksft_skip
  41. fi
  42. max_cpus=$(($(nproc)-1))
  43. function run_test () {
  44. file_ext=$1
  45. for cpu in `seq 0 $max_cpus`
  46. do
  47. echo "launching aperf load on $cpu"
  48. ./aperf $cpu &
  49. done
  50. echo "sleeping for 5 seconds"
  51. sleep 5
  52. grep MHz /proc/cpuinfo | sort -u > /tmp/result.freqs
  53. num_freqs=$(wc -l /tmp/result.freqs | awk ' { print $1 } ')
  54. if [ $num_freqs -ge 2 ]; then
  55. tail -n 1 /tmp/result.freqs > /tmp/result.$1
  56. else
  57. cp /tmp/result.freqs /tmp/result.$1
  58. fi
  59. ./msr 0 >> /tmp/result.$1
  60. max_perf_pct=$(cat /sys/devices/system/cpu/intel_pstate/max_perf_pct)
  61. echo "max_perf_pct $max_perf_pct" >> /tmp/result.$1
  62. for job in `jobs -p`
  63. do
  64. echo "waiting for job id $job"
  65. wait $job
  66. done
  67. }
  68. #
  69. # MAIN (ALL UNITS IN MHZ)
  70. #
  71. # Get the marketing frequency
  72. _mkt_freq=$(cat /proc/cpuinfo | grep -m 1 "model name" | awk '{print $NF}')
  73. _mkt_freq=$(echo $_mkt_freq | tr -d [:alpha:][:punct:])
  74. mkt_freq=${_mkt_freq}0
  75. # Get the ranges from cpupower
  76. _min_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $1 } ')
  77. min_freq=$(($_min_freq / 1000))
  78. _max_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $2 } ')
  79. max_freq=$(($_max_freq / 1000))
  80. [ $EVALUATE_ONLY -eq 0 ] && for freq in `seq $max_freq -100 $min_freq`
  81. do
  82. echo "Setting maximum frequency to $freq"
  83. cpupower frequency-set -g powersave --max=${freq}MHz >& /dev/null
  84. run_test $freq
  85. done
  86. [ $EVALUATE_ONLY -eq 0 ] && cpupower frequency-set -g powersave --max=${max_freq}MHz >& /dev/null
  87. echo "========================================================================"
  88. echo "The marketing frequency of the cpu is $mkt_freq MHz"
  89. echo "The maximum frequency of the cpu is $max_freq MHz"
  90. echo "The minimum frequency of the cpu is $min_freq MHz"
  91. # make a pretty table
  92. echo "Target Actual Difference MSR(0x199) max_perf_pct" | tr " " "\n" > /tmp/result.tab
  93. for freq in `seq $max_freq -100 $min_freq`
  94. do
  95. result_freq=$(cat /tmp/result.${freq} | grep "cpu MHz" | awk ' { print $4 } ' | awk -F "." ' { print $1 } ')
  96. msr=$(cat /tmp/result.${freq} | grep "msr" | awk ' { print $3 } ')
  97. max_perf_pct=$(cat /tmp/result.${freq} | grep "max_perf_pct" | awk ' { print $2 } ' )
  98. cat >> /tmp/result.tab << EOF
  99. $freq
  100. $result_freq
  101. $((result_freq - freq))
  102. $msr
  103. $((max_perf_pct * max_freq))
  104. EOF
  105. done
  106. # print the table
  107. pr -aTt -5 < /tmp/result.tab
  108. exit 0