a77fe1ccd1eeaacec7406272d7153b91e2e284a7
[coreboot.git] / src / cpu / intel / model_f2x / model_f2x_init.c
1 #include <console/console.h>
2 #include <device/device.h>
3 #include <device/pci.h>
4 #include <string.h>
5 #include <cpu/cpu.h>
6 #include <cpu/x86/mtrr.h>
7 #include <cpu/x86/msr.h>
8 #include <cpu/x86/lapic.h>
9 #include <cpu/intel/microcode.h>
10 #include <cpu/intel/hyperthreading.h>
11 #include <cpu/x86/cache.h>
12 #include <cpu/x86/mtrr.h>
13
14 /* 512KB 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 #include "microcode_m02f2203.h"
21 #include "microcode_m02f2410.h"
22 //#include "microcode_m02f2728.h"
23 #include "microcode_m02f2734.h"
24 #include "microcode_m02f2918.h"
25         /*  Dummy terminator  */
26         0x0, 0x0, 0x0, 0x0,
27         0x0, 0x0, 0x0, 0x0,
28         0x0, 0x0, 0x0, 0x0,
29         0x0, 0x0, 0x0, 0x0,
30 };
31
32 static void model_f2x_init(device_t cpu)
33 {
34         /* Turn on caching if we haven't already */
35         x86_enable_cache();
36         x86_setup_mtrrs(36);
37         x86_mtrr_check();
38
39         /* Update the microcode */
40         intel_update_microcode(microcode_updates);
41
42         /* Enable the local cpu apics */
43         setup_lapic();
44
45         /* Start up my cpu siblings */
46         intel_sibling_init(cpu);
47 };
48
49 static struct device_operations cpu_dev_ops = {
50         .init     = model_f2x_init,
51 };
52 static struct cpu_device_id cpu_table[] = {
53         { X86_VENDOR_INTEL, 0x0f22 },
54         { X86_VENDOR_INTEL, 0x0f24 },
55         { X86_VENDOR_INTEL, 0x0f27 },
56         { X86_VENDOR_INTEL, 0x0f29 },
57 //      { X86_VENDOR_INTEL, 0x0f25 }, /* I don't have a microcode update for this cpu */
58         { 0, 0 },
59 };
60
61 static const struct cpu_driver driver __cpu_driver = {
62         .ops      = &cpu_dev_ops,
63         .id_table = cpu_table,
64 };