/proc/cpuinfo
根本不显示 CPU 频率。
我自己构建了内核。我是否遗漏了一些内核配置?
pi@raspberrypi ~ $ cat /proc/cpuinfo
processor : 0
model name : ARMv6-compatible processor rev 7 (v6l)
Features : swp half thumb fastmult vfp edsp java tls
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x0
CPU part : 0xb76
CPU revision : 7
Hardware : BCM2708
Revision : 000e
Serial : 000000009b0dee2f
内核版本。
pi@raspberrypi ~ $ uname -a
Linux raspberrypi 3.12.9+ #3 PREEMPT Fri Mar 28 16:20:08 KST 2014 armv6l GNU/Linux
答案1
这是预期行为,它是一种与架构相关的功能。嵌入式 Linux 不提供此信息,很可能是因为 CPU 不提供。
以下是我的路由器的一个示例:
system type : Atheros AR7161 rev 2
machine : NETGEAR WNDR3700/WNDR3800/WNDRMAC
processor : 0
cpu model : MIPS 24Kc V7.4
BogoMIPS : 452.19
wait instruction : yes
microsecond timers : yes
tlb_entries : 16
extra interrupt vector : yes
hardware watchpoint : yes, count: 4, address/irw mask: [0x0000, 0x0f98, 0x0f78, 0x0df8]
ASEs implemented : mips16
shadow register sets : 1
kscratch registers : 0
core : 0
VCED exceptions : not available
VCEI exceptions : not available
答案2
/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq
或者,您也可以在和 中的其他文件中找到 CPU 频率信息/sys/devices/system/cpu/cpu0/cpufreq
。