summaryrefslogtreecommitdiffstats
path: root/board/freescale/p1022ds/Makefile
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2013-02-18 10:02:19 +0000
committerAndy Fleming <afleming@freescale.com>2013-05-02 16:56:43 -0500
commitf45210d6e7aa600fa0fa96eb67afb37567fd4cce (patch)
tree7f6e8caa9b9cfa68bc61dca3f2f427a3672e9362 /board/freescale/p1022ds/Makefile
parentf5c2623d80d72e397f1d6211b9691f7580461166 (diff)
downloadblackbird-obmc-uboot-f45210d6e7aa600fa0fa96eb67afb37567fd4cce.tar.gz
blackbird-obmc-uboot-f45210d6e7aa600fa0fa96eb67afb37567fd4cce.zip
powerpc/p1022ds: Add support for NAND and NAND boot using SPL
Add defines needed to access NAND, remove second flash bank that is actually connected to NAND. Add nand booting support for P1022DS with hardcoded DDR config using SPL framework from 2011 Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Jerry Huang <Chang-Ming.Huang@freescale.com> Signed-off-by: Jiang Yutang <b14898@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/freescale/p1022ds/Makefile')
-rw-r--r--board/freescale/p1022ds/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/board/freescale/p1022ds/Makefile b/board/freescale/p1022ds/Makefile
index c6d3418c16..0eeef05266 100644
--- a/board/freescale/p1022ds/Makefile
+++ b/board/freescale/p1022ds/Makefile
@@ -11,12 +11,26 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(BOARD).o
+MINIMAL=
+
+ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_SPL_INIT_MINIMAL
+MINIMAL=y
+endif
+endif
+
+ifdef MINIMAL
+
+COBJS-y += spl_minimal.o tlb.o law.o
+
+else
COBJS-y += $(BOARD).o
COBJS-y += ddr.o
COBJS-y += law.o
COBJS-y += tlb.o
COBJS-$(CONFIG_FSL_DIU_FB) += diu.o
+endif
SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS-y))
OpenPOWER on IntegriCloud