This is what I got:
Code:
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpufreq/policy*/cpuinfo_max_freq
cat: /sys/devices/system/cpu/cpufreq/policy*/cpuinfo_max_freq: No such file or directory
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpufreq/policy*/cpuinfo_min_freq
cat: /sys/devices/system/cpu/cpufreq/policy*/cpuinfo_min_freq: No such file or directory
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpufreq/policy*/scaling_max_freq
cat: /sys/devices/system/cpu/cpufreq/policy*/scaling_max_freq: No such file or directory
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpufreq/policy*/scaling_min_freq
cat: /sys/devices/system/cpu/cpufreq/policy*/scaling_min_freq: No such file or directory
timmy@unicorn:~$ grep . /sys/devices/system/cpu/intel_pstate/*
/sys/devices/system/cpu/intel_pstate/max_perf_pct:80
/sys/devices/system/cpu/intel_pstate/min_perf_pct:25
/sys/devices/system/cpu/intel_pstate/no_turbo:0
/sys/devices/system/cpu/intel_pstate/num_pstates:24
/sys/devices/system/cpu/intel_pstate/turbo_pct:25
timmy@unicorn:~$ sudo modprobe msr
[sudo] password for timmy:
timmy@unicorn:~$ sudo rdmsr -a 0x19a
8
8
8
8
timmy@unicorn:~$
After poking around looking for the missing files, I discovered I have no /sys/devices/system/cpu/cpufreq/policy* folders. Inside /sys/devices/system/cpu/ I find what seems to be a directory for each virtual core (amoung other things,) but none of those have policy directories. The closest I could come to matching what you asked for was:
Code:
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_max_freq
3100000
3100000
3100000
3100000
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_min_freq
800000
800000
800000
800000
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_max_freq
2480000
2480000
2480000
2480000
timmy@unicorn:~$ cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_min_freq
800000
800000
800000
800000
timmy@unicorn:~$
Bookmarks