568d4d70ee987dc0aa1b7479a5e98c173d8aebc1
[coreboot.git] / src / cpu / intel / model_f0x / model_f0x_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 /* 256KB cache */
15 static uint32_t microcode_updates[] = {
16         /* WARNING - Intel has a new data structure that has variable length
17          * microcode update lengths.  They are encoded in int 8 and 9.  A
18          * dummy header of nulls must terminate the list.
19          */
20
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_f0x_init(device_t dev)
30 {
31         /* Turn on caching if we haven't already */
32         x86_enable_cache();
33         x86_setup_mtrrs(36);
34         x86_mtrr_check();
35
36         /* Update the microcode */
37         intel_update_microcode(microcode_updates);
38
39         /* Enable the local cpu apics */
40         setup_lapic();
41 };
42
43 static struct device_operations cpu_dev_ops = {
44         .init     = model_f0x_init,
45 };
46 static struct cpu_device_id cpu_table[] = {
47         { X86_VENDOR_INTEL, 0x0f0A },
48         { 0, 0 },
49 };
50
51 static const struct cpu_driver driver __cpu_driver = {
52         .ops      = &cpu_dev_ops,
53         .id_table = cpu_table,
54 };