Gentoo Archives: gentoo-user

From: Todd Goodman <tsg@×××××××××.net>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] The meaning of number in brackets in /proc/cpuinfo "power management"?
Date: Fri, 20 Sep 2013 13:18:04
Message-Id: 20130920131755.GA3102@ns1.bonedaddy.net
In Reply to: [gentoo-user] The meaning of number in brackets in /proc/cpuinfo "power management"? by Pandu Poluan
1 * Pandu Poluan <pandu@××××××.info> [130920 03:45]:
2 > Hello list!
3 >
4 > Does anyone know the meaning of the 'number between brackets' in the
5 > "power management" line of /proc/cpuinfo?
6 >
7 > For instance (I snipped the "flags" line to not clutter the email:
8 >
9 > processor : 0
10 > vendor_id : AuthenticAMD
11 > cpu family : 21
12 > model : 2
13 > model name : AMD Opteron(tm) Processor 6386 SE
14 > stepping : 0
15 > cpu MHz : 2800.110
16 > cache size : 2048 KB
17 > fdiv_bug : no
18 > hlt_bug : no
19 > f00f_bug : no
20 > coma_bug : no
21 > fpu : yes
22 > fpu_exception : yes
23 > cpuid level : 13
24 > wp : yes
25 > flags : --snip--
26 > bogomips : 5631.71
27 > clflush size : 64
28 > cache_alignment : 64
29 > address sizes : 48 bits physical, 48 bits virtual
30 > power management: ts ttp tm 100mhzsteps hwpstate [9] [10]
31 >
32 > What's "[9]" and "[10]" supposed to mean?
33 >
34 > (Note: The OS is not actually Gentoo, but this list is sooo
35 > knowledgeable, and methinks the output of /proc/cpuinfo is quite
36 > universal...)
37
38 I don't know for sure but looking in arch/x86/cpu/{powerflags,proc}.c it
39 looks like your kernel doesn't have a text description for power flag
40 bits 9 and 10.
41
42 In Linux 3.11.1 they are:
43
44 [9] - "cpb", /* core performance boost */
45 [10] - "eff_freq_ro", /* Readonly aperf/mperf */
46
47 Todd