Remove some duplicate #include files (trivial).
[coreboot.git] / src / cpu / intel / model_6fx / model_6fx_init.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #include <console/console.h>
23 #include <device/device.h>
24 #include <device/pci.h>
25 #include <string.h>
26 #include <cpu/cpu.h>
27 #include <cpu/x86/mtrr.h>
28 #include <cpu/x86/msr.h>
29 #include <cpu/x86/lapic.h>
30 #include <cpu/intel/microcode.h>
31 #include <cpu/intel/hyperthreading.h>
32 #include <cpu/x86/cache.h>
33 #include <cpu/x86/name.h>
34 #include <usbdebug.h>
35
36 static const uint32_t microcode_updates[] = {
37         #include "microcode-2129-m206f257.h"
38         #include "microcode-2334-m016fbB6.h"
39         #include "microcode-2336-m106fbB6.h"
40         #include "microcode-2337-m806fbB6.h"
41         #include "microcode-2346-m16fda3.h"
42         #include "microcode-2347-m206fda3.h"
43         #include "microcode-2348-m806fda3.h"
44         #include "microcode-2374-m16f6cb.h"
45         #include "microcode-2375-m206f6cc.h"
46         #include "microcode-2376-m46f6cd.h"
47         #include "microcode-2380-m106f768.h"
48         #include "microcode-2381-m406f769.h"
49         #include "microcode-2385-m806fa94.h"
50         #include "microcode-2389-m16f25a.h"
51         #include "microcode-2986-m086fbB8.h"
52         #include "microcode-2990-m046fbB9.h"
53         #include "microcode-2991-m406fbB9.h"
54         /*  Dummy terminator  */
55         0x0, 0x0, 0x0, 0x0,
56         0x0, 0x0, 0x0, 0x0,
57         0x0, 0x0, 0x0, 0x0,
58         0x0, 0x0, 0x0, 0x0,
59 };
60
61 #define IA32_FEATURE_CONTROL 0x003a
62
63 #define CPUID_VMX (1 << 5)
64 #define CPUID_SMX (1 << 6)
65 static void enable_vmx(void)
66 {
67         struct cpuid_result regs;
68         msr_t msr;
69
70         msr = rdmsr(IA32_FEATURE_CONTROL);
71
72         if (msr.lo & (1 << 0)) {
73                 /* VMX locked. If we set it again we get an illegal
74                  * instruction
75                  */
76                 return;
77         }
78
79         regs = cpuid(1);
80         if (regs.ecx & CPUID_VMX) {
81                 msr.lo |= (1 << 2);
82                 if (regs.ecx & CPUID_SMX)
83                         msr.lo |= (1 << 1);
84         }
85
86         wrmsr(IA32_FEATURE_CONTROL, msr);
87
88         msr.lo |= (1 << 0); /* Set lock bit */
89
90         wrmsr(IA32_FEATURE_CONTROL, msr);
91 }
92
93 #define PMG_CST_CONFIG_CONTROL  0xe2
94 #define PMG_IO_BASE_ADDR        0xe3
95 #define PMG_IO_CAPTURE_ADDR     0xe4
96
97 /* MWAIT coordination I/O base address. This must match
98  * the \_PR_.CPU0 PM base address.
99  */
100 #define PMB0_BASE               0x510
101
102 /* PMB1: I/O port that triggers SMI once cores are in the same state.
103  * See CSM Trigger, at PMG_CST_CONFIG_CONTROL[6:4]
104  */
105 #define PMB1_BASE               0x800
106 #define HIGHEST_CLEVEL          3
107 static void configure_c_states(void)
108 {
109         msr_t msr;
110
111         msr = rdmsr(PMG_CST_CONFIG_CONTROL);
112
113         msr.lo |= (1 << 15); // config lock until next reset
114         msr.lo |= (1 << 14); // Deeper Sleep
115         msr.lo |= (1 << 10); // Enable IO MWAIT redirection
116         msr.lo &= ~(1 << 9); // Issue a  single stop grant cycle upon stpclk
117         msr.lo |= (1 << 3); // Dynamic L2
118
119         /* Number of supported C-States */
120         msr.lo &= ~7;
121         msr.lo |= HIGHEST_CLEVEL; // support at most C3
122
123         wrmsr(PMG_CST_CONFIG_CONTROL, msr);
124
125         /* Set Processor MWAIT IO BASE */
126         msr.hi = 0;
127         msr.lo = ((PMB0_BASE + 4) & 0xffff) | (((PMB1_BASE + 9) & 0xffff) << 16);
128         wrmsr(PMG_IO_BASE_ADDR, msr);
129
130         /* Set C_LVL controls and IO Capture Address */
131         msr.hi = 0;
132         msr.lo = (PMB0_BASE + 4) | ((HIGHEST_CLEVEL - 2) << 16); // -2 because LVL0+1 aren't counted
133         wrmsr(PMG_IO_CAPTURE_ADDR, msr);
134 }
135
136 #define IA32_MISC_ENABLE        0x1a0
137 static void configure_misc(void)
138 {
139         msr_t msr;
140
141         msr = rdmsr(IA32_MISC_ENABLE);
142         msr.lo |= (1 << 3);     /* TM1 enable */
143         msr.lo |= (1 << 13);    /* TM2 enable */
144         msr.lo |= (1 << 17);    /* Bidirectional PROCHOT# */
145
146         msr.lo |= (1 << 10);    /* FERR# multiplexing */
147
148         // TODO: Only if  IA32_PLATFORM_ID[17] = 0 and IA32_PLATFORM_ID[50] = 1
149         msr.lo |= (1 << 16);    /* Enhanced SpeedStep Enable */
150
151         /* Enable C2E */
152         msr.lo |= (1 << 26);
153
154         /* Enable C4E */
155         /* TODO This should only be done on mobile CPUs, see cpuid 5 */
156         msr.hi |= (1 << (32 - 32)); // C4E
157         msr.hi |= (1 << (33 - 32)); // Hard C4E
158
159         /* Enable EMTTM. */
160         /* NOTE: We leave the EMTTM_CR_TABLE0-5 at their default values */
161         msr.hi |= (1 << (36 - 32));
162
163         wrmsr(IA32_MISC_ENABLE, msr);
164
165         msr.lo |= (1 << 20);    /* Lock Enhanced SpeedStep Enable */
166         wrmsr(IA32_MISC_ENABLE, msr);
167 }
168
169 #define PIC_SENS_CFG    0x1aa
170 static void configure_pic_thermal_sensors(void)
171 {
172         msr_t msr;
173
174         msr = rdmsr(PIC_SENS_CFG);
175
176         msr.lo |= (1 << 21); // inter-core lock TM1
177         msr.lo |= (1 << 4); // Enable bypass filter
178
179         wrmsr(PIC_SENS_CFG, msr);
180 }
181
182 #if CONFIG_USBDEBUG
183 static unsigned ehci_debug_addr;
184 #endif
185
186 static void model_6fx_init(device_t cpu)
187 {
188         char processor_name[49];
189
190         /* Turn on caching if we haven't already */
191         x86_enable_cache();
192
193         /* Update the microcode */
194         intel_update_microcode(microcode_updates);
195
196         /* Print processor name */
197         fill_processor_name(processor_name);
198         printk(BIOS_INFO, "CPU: %s.\n", processor_name);
199
200 #if CONFIG_USBDEBUG
201         // Is this caution really needed?
202         if(!ehci_debug_addr)
203                 ehci_debug_addr = get_ehci_debug();
204         set_ehci_debug(0);
205 #endif
206
207         /* Setup MTRRs */
208         x86_setup_mtrrs(36);
209         x86_mtrr_check();
210
211         /* Setup Page Attribute Tables (PAT) */
212         // TODO set up PAT
213
214 #if CONFIG_USBDEBUG
215         set_ehci_debug(ehci_debug_addr);
216 #endif
217
218         /* Enable the local cpu apics */
219         setup_lapic();
220
221         /* Enable virtualization */
222         enable_vmx();
223
224         /* Configure C States */
225         configure_c_states();
226
227         /* Configure Enhanced SpeedStep and Thermal Sensors */
228         configure_misc();
229
230         /* PIC thermal sensor control */
231         configure_pic_thermal_sensors();
232
233         /* Start up my cpu siblings */
234         intel_sibling_init(cpu);
235 }
236
237 static struct device_operations cpu_dev_ops = {
238         .init     = model_6fx_init,
239 };
240
241 static struct cpu_device_id cpu_table[] = {
242         { X86_VENDOR_INTEL, 0x06f0 }, /* Intel Core 2 Solo/Core Duo */
243         { X86_VENDOR_INTEL, 0x06f2 }, /* Intel Core 2 Solo/Core Duo */
244         { X86_VENDOR_INTEL, 0x06f6 }, /* Intel Core 2 Solo/Core Duo */
245         { X86_VENDOR_INTEL, 0x06f7 }, /* Intel Core 2 Solo/Core Duo */
246         { X86_VENDOR_INTEL, 0x06fa }, /* Intel Core 2 Solo/Core Duo */
247         { X86_VENDOR_INTEL, 0x06fb }, /* Intel Core 2 Solo/Core Duo */
248         { X86_VENDOR_INTEL, 0x06fd }, /* Intel Core 2 Solo/Core Duo */
249         { X86_VENDOR_INTEL, 0x10676 }, /* Core2 Duo E8200 */
250         { 0, 0 },
251 };
252
253 static const struct cpu_driver driver __cpu_driver = {
254         .ops      = &cpu_dev_ops,
255         .id_table = cpu_table,
256 };
257