mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
5bb907a492
This patch will create a new board, SIMPC8313, from Sheldon Instruments. This board boots from NAND devices and is configureable for either large or small page devices. The board supports non-soldered DDR2, one ethernet port, a Marvell 88E1118 PHY, and PCI host support. The board also has a FPGA connected to the eLBC providing glue logic to a TMS320C67xx DSP. Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net> Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13 lines
191 B
Makefile
13 lines
191 B
Makefile
ifndef NAND_SPL
|
|
sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp
|
|
endif
|
|
|
|
ifndef TEXT_BASE
|
|
TEXT_BASE = 0x00100000
|
|
endif
|
|
|
|
ifdef CONFIG_NAND_LP
|
|
PAD_TO = 0xFFF20000
|
|
else
|
|
PAD_TO = 0xFFF04000
|
|
endif
|