Make fam10 build (but not boot due to bootblock size problems.)
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Marc Jones <marcj303@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4762 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
b106f9bdbd
commit
3db199c00a
10 changed files with 128 additions and 51 deletions
|
|
@ -26,4 +26,14 @@ config AGP_APERTURE_SIZE
|
|||
default 0x4000000
|
||||
depends on NORTHBRIDGE_AMD_AMDFAM10
|
||||
|
||||
config HYPERTRANSPORT_PLUGIN_SUPPORT
|
||||
bool
|
||||
default y
|
||||
depends on NORTHBRIDGE_AMD_AMDFAM10
|
||||
|
||||
config HT3_SUPPORT
|
||||
bool
|
||||
default y
|
||||
depends on NORTHBRIDGE_AMD_AMDFAM10
|
||||
|
||||
source src/northbridge/amd/amdfam10/root_complex/Kconfig
|
||||
|
|
|
|||
|
|
@ -10,3 +10,36 @@ obj-$(CONFIG_HAVE_ACPI_TABLES) += sspr4.o
|
|||
obj-$(CONFIG_HAVE_ACPI_TABLES) += sspr5.o
|
||||
|
||||
obj-y += get_pci1234.o
|
||||
|
||||
ifdef POST_EVALUATION
|
||||
$(obj)/northbridge/amd/amdfam10/ssdt.c: $(src)/northbridge/amd/amdfam10/ssdt.dsl
|
||||
iasl -p $(CURDIR)/ssdt -tc $<
|
||||
perl -pi -e 's/AmlCode/AmlCode_ssdt/g' ssdt.hex
|
||||
mv ssdt.hex $@
|
||||
|
||||
$(obj)/northbridge/amd/amdfam10/sspr1.c: $(src)/northbridge/amd/amdfam10/sspr1.dsl
|
||||
iasl -p $(CURDIR)/sspr1 -tc $<
|
||||
perl -pi -e 's/AmlCode/AmlCode_sspr1/g' sspr1.hex
|
||||
mv sspr1.hex $@
|
||||
|
||||
$(obj)/northbridge/amd/amdfam10/sspr2.c: $(src)/northbridge/amd/amdfam10/sspr2.dsl
|
||||
iasl -p $(CURDIR)/sspr2 -tc $<
|
||||
perl -pi -e 's/AmlCode/AmlCode_sspr2/g' sspr2.hex
|
||||
mv sspr2.hex $@
|
||||
|
||||
$(obj)/northbridge/amd/amdfam10/sspr3.c: $(src)/northbridge/amd/amdfam10/sspr3.dsl
|
||||
iasl -p $(CURDIR)/sspr3 -tc $<
|
||||
perl -pi -e 's/AmlCode/AmlCode_sspr3/g' sspr3.hex
|
||||
mv sspr3.hex $@
|
||||
|
||||
$(obj)/northbridge/amd/amdfam10/sspr4.c: $(src)/northbridge/amd/amdfam10/sspr4.dsl
|
||||
iasl -p $(CURDIR)/sspr4 -tc $<
|
||||
perl -pi -e 's/AmlCode/AmlCode_sspr4/g' sspr4.hex
|
||||
mv sspr4.hex $@
|
||||
|
||||
$(obj)/northbridge/amd/amdfam10/sspr5.c: $(src)/northbridge/amd/amdfam10/sspr5.dsl
|
||||
iasl -p $(CURDIR)/sspr5 -tc $<
|
||||
perl -pi -e 's/AmlCode/AmlCode_sspr5/g' sspr5.hex
|
||||
mv sspr5.hex $@
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue