printk_foo -> printk(BIOS_FOO, ...)
[coreboot.git] / src / cpu / amd / model_10xxx / update_microcode.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20
21 #ifndef __PRE_RAM__
22 #include <console/console.h>
23 #include <device/device.h>
24 #include <device/pci.h>
25 #include <string.h>
26
27 #include <cpu/amd/microcode.h>
28 #endif
29
30 static const u8 microcode_updates[] __attribute__ ((aligned(16))) = {
31
32 #ifdef __PRE_RAM__
33
34 /* From the Revision Guide :
35  * Equivalent Processor Table for AMD Family 10h Processors
36  *
37  * Installed Processor   Equivalent Processor   Patch Level
38  * Revision ID           Revision ID
39  * 00100F00h             1000h                  01000020h
40  * 00100F01h             1000h                  01000020h
41  * 00100F02h             1000h                  01000020h
42  * 00100F20h             1020h                  01000096h
43  * 00100F21h (DR-B1)     1020h                  01000096h
44  * 00100F2Ah (DR-BA)     1020h                  01000096h
45  * 00100F22h (DR-B2)     1022h                  01000095h
46  * 00100F23h (DR-B3)     1022h                  01000095h
47  * 00100F42h (RB-C2)     1041h                  01000086h
48  * 00100F62h (DA-C2)     1062h                  0100009Fh
49  */
50
51 #include CONFIG_AMD_UCODE_PATCH_FILE
52
53 #endif
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 static u32 get_equivalent_processor_rev_id(u32 orig_id) {
62         static unsigned id_mapping_table[] = {
63                 0x100f00, 0x1000,
64                 0x100f01, 0x1000,
65                 0x100f02, 0x1000,
66                 0x100f20, 0x1020,
67                 0x100f21, 0x1020,
68                 0x100f2A, 0x1020,
69                 0x100f22, 0x1022,
70                 0x100f23, 0x1022,
71                 0x100f42, 0x1041,
72                 0x100f62, 0x1062,
73         };
74
75         u32 new_id;
76         int i;
77
78         new_id = 0;
79
80         for (i = 0; i < sizeof(id_mapping_table); i += 2 ) {
81                 if(id_mapping_table[i]==orig_id) {
82                         new_id = id_mapping_table[i + 1];
83                         break;
84                 }
85         }
86
87         return new_id;
88
89 }
90
91 void update_microcode(u32 cpu_deviceid)
92 {
93         u32 equivalent_processor_rev_id;
94
95         /* Update the microcode */
96         equivalent_processor_rev_id = get_equivalent_processor_rev_id(cpu_deviceid );
97         if (equivalent_processor_rev_id != 0) {
98                 amd_update_microcode((void *) microcode_updates, equivalent_processor_rev_id);
99         } else {
100                 printk(BIOS_DEBUG, "microcode: rev id not found. Skipping microcode patch!\n");
101         }
102
103 }