1 #if defined(__i386__) || defined(__x86_64__)
9 #include "helpers/helpers.h"
11 #define MSR_AMD_PSTATE_STATUS 0xc0010063
12 #define MSR_AMD_PSTATE 0xc0010064
13 #define MSR_AMD_PSTATE_LIMIT 0xc0010061
29 unsigned long long val
;
32 static int get_did(int family
, union msr_pstate pstate
)
44 static int get_cof(int family
, union msr_pstate pstate
)
49 did
= get_did(family
, pstate
);
52 fid
= pstate
.bits
.fid
;
56 return (100 * (fid
+ t
)) >> did
;
60 * cpu -> the cpu that gets evaluated
61 * cpu_family -> The cpu's family (0x10, 0x12,...)
62 * boots_states -> how much boost states the machines support
65 * pstates -> a pointer to an array of size MAX_HW_PSTATES
66 * must be initialized with zeros.
67 * All available HW pstates (including boost states)
68 * no -> amount of pstates above array got filled up with
70 * returns zero on success, -1 on failure
72 int decode_pstates(unsigned int cpu
, unsigned int cpu_family
,
73 int boost_states
, unsigned long *pstates
, int *no
)
76 union msr_pstate pstate
;
77 unsigned long long val
;
79 /* Only read out frequencies from HW when CPU might be boostable
80 to keep the code as short and clean as possible.
81 Otherwise frequencies are exported via ACPI tables.
83 if (cpu_family
< 0x10 || cpu_family
== 0x14)
86 if (read_msr(cpu
, MSR_AMD_PSTATE_LIMIT
, &val
))
89 psmax
= (val
>> 4) & 0x7;
91 if (read_msr(cpu
, MSR_AMD_PSTATE_STATUS
, &val
))
96 pscur
+= boost_states
;
97 psmax
+= boost_states
;
98 for (i
= 0; i
<= psmax
; i
++) {
99 if (i
>= MAX_HW_PSTATES
) {
100 fprintf(stderr
, "HW pstates [%d] exceeding max [%d]\n",
101 psmax
, MAX_HW_PSTATES
);
104 if (read_msr(cpu
, MSR_AMD_PSTATE
+ i
, &pstate
.val
))
106 pstates
[i
] = get_cof(cpu_family
, pstate
);
112 int amd_pci_get_num_boost_states(int *active
, int *states
)
114 struct pci_access
*pci_acc
;
115 int vendor_id
= 0x1022;
116 int boost_dev_ids
[4] = {0x1204, 0x1604, 0x1704, 0};
117 struct pci_dev
*device
;
120 *active
= *states
= 0;
122 device
= pci_acc_init(&pci_acc
, vendor_id
, boost_dev_ids
);
127 val
= pci_read_byte(device
, 0x15c);
132 *states
= (val
>> 2) & 7;
134 pci_cleanup(pci_acc
);
137 #endif /* defined(__i386__) || defined(__x86_64__) */