Nicolas Reinecke (nr@das-labor.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8355
-gerrit
commit c8df9459b165cc9efc2d47669bb975354a6524ea Author: Nicolas Reinecke nr@das-labor.org Date: Wed Feb 4 22:10:09 2015 +0100
cpu/amd/model_10xxx: add Propus (00100F52h BL-C2) equivalent id
Change-Id: I32eccfb4eae176e0155c53efaf463258653eefc2 Signed-off-by: Nicolas Reinecke nr@das-labor.org --- src/cpu/amd/model_10xxx/update_microcode.c | 32 ++++++++++++++++-------------- 1 file changed, 17 insertions(+), 15 deletions(-)
diff --git a/src/cpu/amd/model_10xxx/update_microcode.c b/src/cpu/amd/model_10xxx/update_microcode.c index 8dcd90d..12b9230 100644 --- a/src/cpu/amd/model_10xxx/update_microcode.c +++ b/src/cpu/amd/model_10xxx/update_microcode.c @@ -24,22 +24,23 @@ /* From the Revision Guide : * Equivalent Processor Table for AMD Family 10h Processors * - * Installed Processor Equivalent Processor Patch Level + * Installed Processor Equivalent Processor * Revision ID Revision ID - * 00100F00h 1000h 01000020h - * 00100F01h 1000h 01000020h - * 00100F02h 1000h 01000020h - * 00100F20h 1020h 01000096h - * 00100F21h (DR-B1) 1020h 01000096h - * 00100F2Ah (DR-BA) 1020h 01000096h - * 00100F22h (DR-B2) 1022h 01000095h - * 00100F23h (DR-B3) 1022h 01000095h - * 00100F42h (RB-C2) 1041h 01000086h - * 00100F43h (RB-C3) 1043h 010000b6h - * 00100F62h (DA-C2) 1062h 0100009Fh - * 00100F63h (DA-C3) 1043h 010000b6h - * 00100F81h (HY-D1) 1081h 010000c4h - * 00100FA0h (PH-E0) 10A0h 010000bfh + * 00100F00h 1000h + * 00100F01h 1000h + * 00100F02h 1000h + * 00100F20h 1020h + * 00100F21h (DR-B1) 1020h + * 00100F2Ah (DR-BA) 1020h + * 00100F22h (DR-B2) 1022h + * 00100F23h (DR-B3) 1022h + * 00100F42h (RB-C2) 1041h + * 00100F43h (RB-C3) 1043h + * 00100F52h (BL-C2) 1041h + * 00100F62h (DA-C2) 1062h + * 00100F63h (DA-C3) 1043h + * 00100F81h (HY-D1) 1081h + * 00100FA0h (PH-E0) 10A0h */
struct id_mapping { @@ -59,6 +60,7 @@ static u16 get_equivalent_processor_rev_id(u32 orig_id) { { 0x100f23, 0x1022 }, { 0x100f42, 0x1041 }, { 0x100f43, 0x1043 }, + { 0x100f52, 0x1041 }, { 0x100f62, 0x1062 }, { 0x100f63, 0x1043 }, { 0x100f81, 0x1081 },