web-dev-qa-db-ja.com

/ proc / cpuinfoはCPU周波数をまったく表示しません

/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
4
Younggun Kim

これは予想される動作であり、アーキテクチャに依存する機能です。組み込み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
4
Daniel B

あるいは、CPU周波数情報は/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freqおよび/sys/devices/system/cpu/cpu0/cpufreqの他のファイルにあります。

0
Vortexfive