Remove a few more warnings from fam10.
[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 #endif
27
28 #ifndef __ROMCC__
29 #include <cpu/amd/microcode.h>
30 #endif
31
32 static const u8 microcode_updates[] __attribute__ ((aligned(16))) = {
33
34 #ifdef __PRE_RAM__
35
36 /* From the Revision Guide :
37  * Equivalent Processor Table for AMD Family 10h Processors
38  *
39  * Installed Processor   Equivalent Processor   Patch Level
40  * Revision ID           Revision ID
41  * 00100F00h             1000h                  01000020h
42  * 00100F01h             1000h                  01000020h
43  * 00100F02h             1000h                  01000020h
44  * 00100F20h             1020h                  01000096h
45  * 00100F21h (DR-B1)     1020h                  01000096h
46  * 00100F2Ah (DR-BA)     1020h                  01000096h
47  * 00100F22h (DR-B2)     1022h                  01000095h
48  * 00100F23h (DR-B3)     1022h                  01000095h
49  * 00100F42h (RB-C2)     1041h                  01000086h
50  * 00100F62h (DA-C2)     1062h                  0100009Fh
51  */
52
53 #include CONFIG_AMD_UCODE_PATCH_FILE
54
55 #endif
56         /*  Dummy terminator  */
57         0x0, 0x0, 0x0, 0x0,
58         0x0, 0x0, 0x0, 0x0,
59         0x0, 0x0, 0x0, 0x0,
60         0x0, 0x0, 0x0, 0x0,
61 };
62
63 static u32 get_equivalent_processor_rev_id(u32 orig_id) {
64         static unsigned id_mapping_table[] = {
65                 0x100f00, 0x1000,
66                 0x100f01, 0x1000,
67                 0x100f02, 0x1000,
68                 0x100f20, 0x1020,
69                 0x100f21, 0x1020,
70                 0x100f2A, 0x1020,
71                 0x100f22, 0x1022,
72                 0x100f23, 0x1022,
73                 0x100f42, 0x1041,
74                 0x100f62, 0x1062,
75         };
76
77         u32 new_id;
78         int i;
79
80         new_id = 0;
81
82         for (i = 0; i < sizeof(id_mapping_table); i += 2 ) {
83                 if(id_mapping_table[i]==orig_id) {
84                         new_id = id_mapping_table[i + 1];
85                         break;
86                 }
87         }
88
89         return new_id;
90
91 }
92
93 void update_microcode(u32 cpu_deviceid)
94 {
95         u32 equivalent_processor_rev_id;
96
97         /* Update the microcode */
98         equivalent_processor_rev_id = get_equivalent_processor_rev_id(cpu_deviceid );
99         if (equivalent_processor_rev_id != 0) {
100                 amd_update_microcode((void *) microcode_updates, equivalent_processor_rev_id);
101         } else {
102                 printk(BIOS_DEBUG, "microcode: rev id not found. Skipping microcode patch!\n");
103         }
104
105 }