Path: blob/master/tools/testing/selftests/intel_pstate/run.sh
26285 views
#!/bin/bash1# SPDX-License-Identifier: GPL-2.02#3# This test runs on Intel x86 based hardware which support the intel_pstate4# driver. The test checks the frequency settings from the maximum turbo5# state to the minimum supported frequency, in decrements of 100MHz. The6# test runs the aperf.c program to put load on each processor.7#8# The results are displayed in a table which indicate the "Target" state,9# or the requested frequency in MHz, the Actual frequency, as read from10# /proc/cpuinfo, the difference between the Target and Actual frequencies,11# and the value of MSR 0x199 (MSR_IA32_PERF_CTL) which indicates what12# pstate the cpu is in, and the value of13# /sys/devices/system/cpu/intel_pstate/max_perf_pct X maximum turbo state14#15# Notes: In some cases several frequency values may be placed in the16# /tmp/result.X files. This is done on purpose in order to catch cases17# where the pstate driver may not be working at all. There is the case18# where, for example, several "similar" frequencies are in the file:19#20#21#/tmp/result.3100:1:cpu MHz : 2899.98022#/tmp/result.3100:2:cpu MHz : 2900.00023#/tmp/result.3100:3:msr 0x199: 0x1e0024#/tmp/result.3100:4:max_perf_pct 9425#26# and the test will error out in those cases. The result.X file can be checked27# for consistency and modified to remove the extra MHz values. The result.X28# files can be re-evaluated by setting EVALUATE_ONLY to 1 below.2930EVALUATE_ONLY=03132# Kselftest framework requirement - SKIP code is 4.33ksft_skip=43435if ! uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ | grep -q x86; then36echo "$0 # Skipped: Test can only run on x86 architectures."37exit $ksft_skip38fi3940msg="skip all tests:"41if [ $UID != 0 ] && [ $EVALUATE_ONLY == 0 ]; then42echo $msg please run this as root >&243exit $ksft_skip44fi4546if ! command -v cpupower &> /dev/null; then47echo $msg cpupower could not be found, please install it >&248exit $ksft_skip49fi5051max_cpus=$(($(nproc)-1))5253function run_test () {5455file_ext=$156for cpu in `seq 0 $max_cpus`57do58echo "launching aperf load on $cpu"59./aperf $cpu &60done6162echo "sleeping for 5 seconds"63sleep 564grep MHz /proc/cpuinfo | sort -u > /tmp/result.freqs65num_freqs=$(wc -l /tmp/result.freqs | awk ' { print $1 } ')66if [ $num_freqs -ge 2 ]; then67tail -n 1 /tmp/result.freqs > /tmp/result.$168else69cp /tmp/result.freqs /tmp/result.$170fi71./msr 0 >> /tmp/result.$17273max_perf_pct=$(cat /sys/devices/system/cpu/intel_pstate/max_perf_pct)74echo "max_perf_pct $max_perf_pct" >> /tmp/result.$17576for job in `jobs -p`77do78echo "waiting for job id $job"79wait $job80done81}8283#84# MAIN (ALL UNITS IN MHZ)85#8687# Get the marketing frequency88_mkt_freq=$(cat /proc/cpuinfo | grep -m 1 "model name" | awk '{print $NF}')89_mkt_freq=$(echo $_mkt_freq | tr -d [:alpha:][:punct:])90mkt_freq=${_mkt_freq}09192# Get the ranges from cpupower93_min_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $1 } ')94min_freq=$((_min_freq / 1000))95_max_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $2 } ')96max_freq=$((_max_freq / 1000))979899[ $EVALUATE_ONLY -eq 0 ] && for freq in `seq $max_freq -100 $min_freq`100do101echo "Setting maximum frequency to $freq"102cpupower frequency-set -g powersave --max=${freq}MHz >& /dev/null103run_test $freq104done105106[ $EVALUATE_ONLY -eq 0 ] && cpupower frequency-set -g powersave --max=${max_freq}MHz >& /dev/null107108echo "========================================================================"109echo "The marketing frequency of the cpu is $mkt_freq MHz"110echo "The maximum frequency of the cpu is $max_freq MHz"111echo "The minimum frequency of the cpu is $min_freq MHz"112113# make a pretty table114echo "Target Actual Difference MSR(0x199) max_perf_pct" | tr " " "\n" > /tmp/result.tab115for freq in `seq $max_freq -100 $min_freq`116do117result_freq=$(cat /tmp/result.${freq} | grep "cpu MHz" | awk ' { print $4 } ' | awk -F "." ' { print $1 } ')118msr=$(cat /tmp/result.${freq} | grep "msr" | awk ' { print $3 } ')119max_perf_pct=$(cat /tmp/result.${freq} | grep "max_perf_pct" | awk ' { print $2 } ' )120cat >> /tmp/result.tab << EOF121$freq122$result_freq123$((result_freq - freq))124$msr125$((max_perf_pct * max_freq))126EOF127done128129# print the table130pr -aTt -5 < /tmp/result.tab131132exit 0133134135