[coreboot-gerrit] New patch to review for coreboot: mainboard/asus/kfsn4-dre_k8: Fix ramstage using Family 10h structs

Timothy Pearson (tpearson@raptorengineeringinc.com) gerrit at coreboot.org
Sun Nov 1 09:47:54 CET 2015


Timothy Pearson (tpearson at raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12290

-gerrit

commit 63c5c920230e8642b42c7f59ccee233ff1882899
Author: Timothy Pearson <tpearson at raptorengineeringinc.com>
Date:   Sun Nov 1 02:41:39 2015 -0600

    mainboard/asus/kfsn4-dre_k8: Fix ramstage using Family 10h structs
    
    Several ramstage files were inadvertently using Family 10h-specfic
    structures, causing unstable operation.  Use the K8-specific
    structures instead.
    
    Change-Id: I64066dfdca83557393499b77726051e25b814381
    Signed-off-by: Timothy Pearson <tpearson at raptorengineeringinc.com>
---
 src/mainboard/asus/kfsn4-dre_k8/acpi_tables.c | 2 +-
 src/mainboard/asus/kfsn4-dre_k8/irq_tables.c  | 2 +-
 src/mainboard/asus/kfsn4-dre_k8/mptable.c     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mainboard/asus/kfsn4-dre_k8/acpi_tables.c b/src/mainboard/asus/kfsn4-dre_k8/acpi_tables.c
index 904ad38..c6d2981 100644
--- a/src/mainboard/asus/kfsn4-dre_k8/acpi_tables.c
+++ b/src/mainboard/asus/kfsn4-dre_k8/acpi_tables.c
@@ -19,7 +19,7 @@
 #include <device/pci_ids.h>
 #include <cpu/x86/msr.h>
 #include <cpu/amd/mtrr.h>
-#include <cpu/amd/amdfam10_sysconf.h>
+#include <cpu/amd/amdk8_sysconf.h>
 
 /* APIC */
 unsigned long acpi_fill_madt(unsigned long current)
diff --git a/src/mainboard/asus/kfsn4-dre_k8/irq_tables.c b/src/mainboard/asus/kfsn4-dre_k8/irq_tables.c
index 0a990a7..d06980c 100644
--- a/src/mainboard/asus/kfsn4-dre_k8/irq_tables.c
+++ b/src/mainboard/asus/kfsn4-dre_k8/irq_tables.c
@@ -28,7 +28,7 @@
 #include <string.h>
 #include <stdint.h>
 #include <arch/pirq_routing.h>
-#include <cpu/amd/amdfam10_sysconf.h>
+#include <cpu/amd/amdk8_sysconf.h>
 
 extern unsigned char bus_isa;
 extern unsigned char bus_ck804[6];
diff --git a/src/mainboard/asus/kfsn4-dre_k8/mptable.c b/src/mainboard/asus/kfsn4-dre_k8/mptable.c
index cdf86a1..21a433a 100644
--- a/src/mainboard/asus/kfsn4-dre_k8/mptable.c
+++ b/src/mainboard/asus/kfsn4-dre_k8/mptable.c
@@ -27,7 +27,7 @@
 #include <device/pci.h>
 #include <string.h>
 #include <stdint.h>
-#include <cpu/amd/amdfam10_sysconf.h>
+#include <cpu/amd/amdk8_sysconf.h>
 
 extern unsigned char bus_ck804[6];
 extern unsigned apicid_ck804;



More information about the coreboot-gerrit mailing list