- Bug fixes to the P-III support
[coreboot.git] / src / cpu / intel / model_6xx / model_6xx_init.c
1 #include <console/console.h>
2 #include <device/device.h>
3 #include <device/device.h>
4 #include <device/pci.h>
5 #include <string.h>
6 #include <cpu/cpu.h>
7 #include <cpu/x86/mtrr.h>
8 #include <cpu/x86/msr.h>
9 #include <cpu/x86/lapic.h>
10 #include <cpu/intel/microcode.h>
11 #include <cpu/x86/cache.h>
12 #include <cpu/x86/mtrr.h>
13
14 static uint32_t microcode_updates[] = {
15         /* WARNING - Intel has a new data structure that has variable length
16          * microcode update lengths.  They are encoded in int 8 and 9.  A
17          * dummy header of nulls must terminate the list.
18          */
19 #include "microcode_MU16810d.h" 
20 #include "microcode_MU16930c.h"
21         /*  Dummy terminator  */
22         0x0, 0x0, 0x0, 0x0,
23         0x0, 0x0, 0x0, 0x0,
24         0x0, 0x0, 0x0, 0x0,
25         0x0, 0x0, 0x0, 0x0,
26 };
27
28
29 static void model_6xx_init(device_t dev)
30 {
31         /* Turn on caching if we haven't already */
32         x86_enable_cache();
33         x86_mtrr_check();
34         
35         /* Update the microcode */
36         intel_update_microcode(microcode_updates);
37
38         /* Enable the local cpu apics */
39         setup_lapic();
40 };
41
42 static struct device_operations cpu_dev_ops = {
43         .init     = model_6xx_init,
44 };
45 static struct cpu_device_id cpu_table[] = {
46         { X86_VENDOR_INTEL, 0x0672 },
47         { X86_VENDOR_INTEL, 0x0673 },
48         { X86_VENDOR_INTEL, 0x0681 },
49         { X86_VENDOR_INTEL, 0x0683 },
50         { X86_VENDOR_INTEL, 0x0686 },
51         { X86_VENDOR_INTEL, 0x06A0 },
52         { X86_VENDOR_INTEL, 0x06A1 },
53         { X86_VENDOR_INTEL, 0x06A4 },
54         { 0, 0 },
55 };
56
57 static struct cpu_driver driver __cpu_driver = {
58         .ops      = &cpu_dev_ops,
59         .id_table = cpu_table,
60 };