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@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/12290
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
Timothy Pearson 2015-11-01 02:41:39 -06:00 committed by Kyösti Mälkki
parent f6dc544318
commit 70460249fd
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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];

View File

@ -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;