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