summaryrefslogtreecommitdiff
path: root/src/mainboard/asus/m5a88-v/Makefile.inc
diff options
context:
space:
mode:
authorQingPei Wang <wangqingpei@gmail.com>2011-09-13 17:54:12 +0800
committerStefan Reinauer <stefan.reinauer@coreboot.org>2011-10-28 22:26:07 +0200
commitcc66d97f505c304e773dea938ac864cd74363292 (patch)
tree2e19f47aa4435b07c4c3e148a3d12adf3558a080 /src/mainboard/asus/m5a88-v/Makefile.inc
parent914377efd61be7b473faca0e6bdfca6f3feb5dc5 (diff)
downloadcoreboot-cc66d97f505c304e773dea938ac864cd74363292.tar.xz
Add ASUS M5A88-V mainboard support
it's a AMD 880+800 mainboard. I port the code based on the AMD reference code. update: 1.use CIMX instead of pmio 2.fix some whitespace 3.fix subsystemid of devicetree.cb Change-Id: I9725ccdbb25365c4007621318efee80b131fec29 Signed-off-by: QingPei Wang <wangqingpei@gmail.com> Reviewed-on: http://review.coreboot.org/205 Tested-by: build bot (Jenkins) Reviewed-by: Kerry Sheh <shekairui@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/asus/m5a88-v/Makefile.inc')
-rw-r--r--src/mainboard/asus/m5a88-v/Makefile.inc16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/asus/m5a88-v/Makefile.inc b/src/mainboard/asus/m5a88-v/Makefile.inc
new file mode 100644
index 0000000000..b55a0c74d0
--- /dev/null
+++ b/src/mainboard/asus/m5a88-v/Makefile.inc
@@ -0,0 +1,16 @@
+ramstage-y += reset.c
+
+#SB800 CIMx share AGESA V5 lib code
+ifneq ($(CONFIG_AMD_AGESA),y)
+ AGESA_ROOT ?= src/vendorcode/amd/agesa/f14
+ romstage-y += ../../../../$(AGESA_ROOT)/Lib/amdlib.c
+ ramstage-y += ../../../../$(AGESA_ROOT)/Lib/amdlib.c
+
+ AGESA_INC := -I$(AGESA_ROOT)/ \
+ -I$(AGESA_ROOT)/Include \
+ -I$(AGESA_ROOT)/Proc/IDS/ \
+ -I$(AGESA_ROOT)/Proc/CPU/ \
+ -I$(AGESA_ROOT)/Proc/CPU/Family
+
+ CFLAGS += $(AGESA_INC)
+endif