HomeSort by relevance Sort by last modified time
    Searched refs:cpufreq (Results 1 - 25 of 25) sorted by null

  /external/linux-kselftest/tools/testing/selftests/cpufreq/
Makefile 5 TEST_FILES := cpu.sh cpufreq.sh governor.sh module.sh special-tests.sh
cpu.sh 13 source cpufreq.sh
67 # Prints warning for all CPUs with missing cpufreq directory
73 # Counts CPUs with cpufreq directories
79 if [ -d $CPUROOT/$cpu/cpufreq ]; then
main.sh 5 source cpufreq.sh
24 [-t <basic: Basic cpufreq testing
31 sptest4: CPU hotplugs with updates to cpufreq files.>]
57 CPUFREQROOT="$CPUROOT/cpufreq"
64 if ! ls $CPUROOT/cpufreq > /dev/null 2>&1; then
65 echo $msg cpufreq directory not available in sysfs >&2
104 # Check if CPUs are managed by cpufreq or not
108 echo "No cpu is managed by cpufreq core, exiting"
140 echo "No cpu is managed by cpufreq core, exiting"
183 dmesg | grep cpufreq >> $1.dmesg_cpufreq.tx
    [all...]
governor.sh 14 source cpufreq.sh
79 echo $2 > $CPUROOT/$1/cpufreq/scaling_governor
128 # Exit if cpu isn't managed by cpufreq core
cpufreq.sh 17 if [ ! -d $CPUROOT/$1/cpufreq ]; then
18 printf "Warning: No cpufreq directory present for $1\n"
24 if [ -d $CPUROOT/$1/cpufreq ]; then
25 printf "Warning: cpufreq directory present for $1\n"
75 # UPDATE CPUFREQ FILES
173 # Basic cpufreq tests
176 printf "*** RUNNING CPUFREQ SANITY TESTS ***\n"
181 printf "No cpu is managed by cpufreq core, exiting\n"
184 printf "CPUFreq manages: $count CPUs\n\n"
187 # Detect & print which CPUs are not managed by cpufreq
    [all...]
module.sh 14 source cpufreq.sh
42 # Insert cpufreq driver module and perform basic tests
43 # $1: cpufreq-driver module to insert
80 # There shouldn't be any cpufreq directories now.
85 # $1: cpufreq-driver module to insert
155 # Insert cpufreq governor module and perform basic tests
156 # $1: cpufreq-governor module to insert
special-tests.sh 16 source cpufreq.sh
88 local filepath="$CPUROOT/$1/cpufreq"
  /external/ltp/testcases/kernel/device-drivers/
Makefile 23 cpufreq \
  /external/ltp/testcases/kernel/power_management/
runpwtests03.sh 34 cpufiles=$(find /sys/devices/system/cpu/cpu"${cpu}"/cpufreq/ \
63 /sys/devices/system/cpu/cpu${cpu}/cpufreq/scaling_governor
90 /sys/devices/system/cpu/cpu${cpu}/cpufreq/scaling_governor
101 /sys/devices/system/cpu/cpu${cpu}/cpufreq/scaling_setspeed
120 /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor`
153 # Checking cpufreq sysfs interface files
154 if [ ! -d /sys/devices/system/cpu/cpu0/cpufreq ] ; then
159 tst_resm TPASS "CPUFREQ sysfs tests"
161 tst_resm TFAIL "CPUFREQ sysfs tests"
pm_include.sh 70 if [ ! -d /sys/devices/system/cpu/cpu${cpu}/cpufreq ] ; then
71 tst_brkm TCONF "NOSUPPORT: cpufreq support not " \
79 cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_available_frequencies \
84 cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_available_governors \
  /external/u-boot/arch/arm/include/asm/arch-spear/
spr_defs.h 30 int cpufreq; member in struct:chip_data
  /external/v8/tools/
cpu.sh 13 echo "$1" > $CPUPATH/cpu$i/cpufreq/scaling_governor
  /external/autotest/client/profilers/powertop/src/
Makefile 18 OBJS = powertop.o config.o process.o misctips.o bluetooth.o display.o suggestions.o wireless.o cpufreq.o \
  /external/perfetto/test/trace_processor/
synth_common.py 67 cpufreq = ftrace.cpu_frequency
68 cpufreq.state = freq
69 cpufreq.cpu_id = cpu
b120487929.sql 9 where name = 'cpufreq'
  /device/google/bonito/
init.power.rc 31 write /sys/class/devfreq/soc:qcom,mincpubw/governor "cpufreq"
49 write /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq 576000
52 write /sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq 825600
init.hardware.rc 26 write /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor powersave
27 write /sys/devices/system/cpu/cpu6/cpufreq/scaling_governor powersave
105 write /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor schedutil
106 write /sys/devices/system/cpu/cpu0/cpufreq/schedutil/up_rate_limit_us 500
107 write /sys/devices/system/cpu/cpu0/cpufreq/schedutil/down_rate_limit_us 20000
110 write /sys/devices/system/cpu/cpu6/cpufreq/scaling_governor schedutil
111 write /sys/devices/system/cpu/cpu6/cpufreq/schedutil/up_rate_limit_us 500
112 write /sys/devices/system/cpu/cpu6/cpufreq/schedutil/down_rate_limit_us 20000
  /external/autotest/client/site_tests/power_CPUFreq/
power_CPUFreq.py 20 cpufreq_path = '/sys/devices/system/cpu/cpu*/cpufreq'
24 raise error.TestFail('cpufreq not supported')
27 self._cpus = [cpufreq(dirname) for dirname in dirs]
38 # test to account for intel_pstate cpufreq driver
71 # set cpufreq governor to userspace
94 # set cpufreq governor to userspace
120 if cpu.get_driver() == 'acpi-cpufreq':
128 # restore cpufreq state
137 class cpufreq(object): class in inherits:object
146 if self.get_driver() == 'acpi-cpufreq'
    [all...]
  /external/u-boot/arch/arm/cpu/arm1136/mx31/
generic.c 74 u32 cpufreq = mx31_get_mcu_main_clk(); local
75 printf("mx31 cpu clock: %dMHz\n", cpufreq / 1000000);
  /external/linux-kselftest/tools/testing/selftests/
Makefile 7 TARGETS += cpufreq
  /external/u-boot/arch/arm/cpu/arm1136/mx35/
generic.c 382 u32 cpufreq = get_mcu_main_clk(); local
383 printf("mx35 cpu clock: %dMHz\n", cpufreq / 1000000);
  /device/google/crosshatch/
init.hardware.rc 129 write /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor schedutil
130 write /sys/devices/system/cpu/cpu0/cpufreq/schedutil/up_rate_limit_us 500
131 write /sys/devices/system/cpu/cpu0/cpufreq/schedutil/down_rate_limit_us 20000
134 write /sys/devices/system/cpu/cpu4/cpufreq/scaling_governor schedutil
135 write /sys/devices/system/cpu/cpu4/cpufreq/schedutil/up_rate_limit_us 500
136 write /sys/devices/system/cpu/cpu4/cpufreq/schedutil/down_rate_limit_us 20000
    [all...]
  /device/google/wahoo/
init.hardware.rc 78 write /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor "schedutil"
79 write /sys/devices/system/cpu/cpufreq/policy0/schedutil/up_rate_limit_us 500
80 write /sys/devices/system/cpu/cpufreq/policy0/schedutil/down_rate_limit_us 20000
83 write /sys/devices/system/cpu/cpu4/cpufreq/scaling_governor "schedutil"
84 write /sys/devices/system/cpu/cpufreq/policy4/schedutil/up_rate_limit_us 500
85 write /sys/devices/system/cpu/cpufreq/policy4/schedutil/down_rate_limit_us 20000
  /external/toolchain-utils/android_bench_suite/
run.py 115 'cpufreq/scaling_available_frequency file in '
  /external/autotest/client/common_lib/
utils.py     [all...]

Completed in 1266 milliseconds