1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <device/device.h>
6 #include <cpu/x86/msr.h>
7 #include <cpu/intel/speedstep.h>
8 #include <cpu/x86/cache.h>
9 #include <cpu/x86/name.h>
11 #define HIGHEST_CLEVEL 3
12 static void configure_c_states(void)
16 msr
= rdmsr(MSR_PKG_CST_CONFIG_CONTROL
);
17 msr
.lo
|= (1 << 15); // config lock until next reset
18 msr
.lo
|= (1 << 14); // Deeper Sleep
19 msr
.lo
|= (1 << 10); // Enable I/O MWAIT redirection for C-States
20 msr
.lo
&= ~(1 << 9); // Issue a single stop grant cycle upon stpclk
21 msr
.lo
|= (1 << 3); // dynamic L2
23 /* Number of supported C-States */
25 msr
.lo
|= HIGHEST_CLEVEL
; // support at most C3
27 wrmsr(MSR_PKG_CST_CONFIG_CONTROL
, msr
);
29 /* Set Processor MWAIT IO BASE (P_BLK) */
31 msr
.lo
= ((PMB0_BASE
+ 4) & 0xffff) | (((PMB1_BASE
+ 9) & 0xffff)
33 wrmsr(MSR_PMG_IO_BASE_ADDR
, msr
);
35 /* Set C_LVL controls and IO Capture Address */
37 // -2 because LVL0+1 aren't counted
38 msr
.lo
= (PMB0_BASE
+ 4) | ((HIGHEST_CLEVEL
- 2) << 16);
39 wrmsr(MSR_PMG_IO_CAPTURE_ADDR
, msr
);
42 #define IA32_PECI_CTL 0x5a0
44 static void configure_misc(void)
48 msr
= rdmsr(IA32_MISC_ENABLE
);
49 msr
.lo
|= (1 << 3); /* TM1 enable */
50 msr
.lo
|= (1 << 13); /* TM2 enable */
51 msr
.lo
|= (1 << 17); /* Bidirectional PROCHOT# */
53 msr
.lo
|= (1 << 10); /* FERR# multiplexing */
55 // TODO: Only if IA32_PLATFORM_ID[17] = 0 and IA32_PLATFORM_ID[50] = 1
56 msr
.lo
|= (1 << 16); /* Enhanced SpeedStep Enable */
62 /* TODO This should only be done on mobile CPUs, see cpuid 5 */
63 msr
.hi
|= (1 << (32 - 32)); // C4E
64 msr
.hi
|= (1 << (33 - 32)); // Hard C4E
67 /* NOTE: We leave the EMTTM_CR_TABLE0-5 at their default values */
68 msr
.hi
|= (1 << (36 - 32));
70 wrmsr(IA32_MISC_ENABLE
, msr
);
72 msr
.lo
|= (1 << 20); /* Lock Enhanced SpeedStep Enable */
73 wrmsr(IA32_MISC_ENABLE
, msr
);
75 // set maximum CPU speed
76 msr
= rdmsr(IA32_PERF_STATUS
);
77 int busratio_max
= (msr
.hi
>> (40-32)) & 0x1f;
79 msr
= rdmsr(IA32_PLATFORM_ID
);
80 int vid_max
= msr
.lo
& 0x3f;
83 msr
.lo
|= busratio_max
<< 8;
86 wrmsr(IA32_PERF_CTL
, msr
);
89 msr
= rdmsr(IA32_PECI_CTL
);
91 wrmsr(IA32_PECI_CTL
, msr
);
94 #define PIC_SENS_CFG 0x1aa
95 static void configure_pic_thermal_sensors(void)
99 msr
= rdmsr(PIC_SENS_CFG
);
101 msr
.lo
|= (1 << 21); // inter-core lock TM1
102 msr
.lo
|= (1 << 4); // Enable bypass filter
104 wrmsr(PIC_SENS_CFG
, msr
);
107 static void model_6fx_init(struct device
*cpu
)
109 char processor_name
[49];
111 /* Turn on caching if we haven't already */
114 /* Print processor name */
115 fill_processor_name(processor_name
);
116 printk(BIOS_INFO
, "CPU: %s.\n", processor_name
);
118 /* Setup Page Attribute Tables (PAT) */
121 /* Configure C States */
122 configure_c_states();
124 /* Configure Enhanced SpeedStep and Thermal Sensors */
127 /* PIC thermal sensor control */
128 configure_pic_thermal_sensors();
131 static struct device_operations cpu_dev_ops
= {
132 .init
= model_6fx_init
,
135 static const struct cpu_device_id cpu_table
[] = {
136 { X86_VENDOR_INTEL
, 0x06f0, CPUID_EXACT_MATCH_MASK
}, /* Intel Core 2 Solo/Core Duo */
137 { X86_VENDOR_INTEL
, 0x06f2, CPUID_EXACT_MATCH_MASK
}, /* Intel Core 2 Solo/Core Duo */
138 { X86_VENDOR_INTEL
, 0x06f6, CPUID_EXACT_MATCH_MASK
}, /* Intel Core 2 Solo/Core Duo */
139 { X86_VENDOR_INTEL
, 0x06f7, CPUID_EXACT_MATCH_MASK
}, /* Intel Core 2 Solo/Core Duo */
140 { X86_VENDOR_INTEL
, 0x06fa, CPUID_EXACT_MATCH_MASK
}, /* Intel Core 2 Solo/Core Duo */
141 { X86_VENDOR_INTEL
, 0x06fb, CPUID_EXACT_MATCH_MASK
}, /* Intel Core 2 Solo/Core Duo */
142 { X86_VENDOR_INTEL
, 0x06fd, CPUID_EXACT_MATCH_MASK
}, /* Intel Core 2 Solo/Core Duo */
143 /* Intel Core 2 Celeron Conroe-L */
144 { X86_VENDOR_INTEL
, 0x10661, CPUID_EXACT_MATCH_MASK
},
148 static const struct cpu_driver driver __cpu_driver
= {
150 .id_table
= cpu_table
,