diff options
author | Ron Madrid <ron_madrid@sbcglobal.net> | 2009-01-22 15:05:24 -0800 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2009-01-23 11:31:18 -0600 |
commit | 5bb907a4925397789c90d074f4f7e92ce6b39402 (patch) | |
tree | 253d0d413aefbac48c7c9d526ef2d98eac49f108 /Makefile | |
parent | 6677876181cc8772bca8a372479a500d160f3993 (diff) | |
download | u-boot-5bb907a4925397789c90d074f4f7e92ce6b39402.tar.gz u-boot-5bb907a4925397789c90d074f4f7e92ce6b39402.tar.xz u-boot-5bb907a4925397789c90d074f4f7e92ce6b39402.zip |
mpc83xx: New board support for SIMPC8313
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -2328,6 +2328,21 @@ MVBLM7_config: unconfig sbc8349_config: unconfig @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349 +SIMPC8313_LP_config \ +SIMPC8313_SP_config: unconfig + @mkdir -p $(obj)include + @mkdir -p $(obj)board/sheldon/simpc8313 + @if [ "$(findstring _LP_,$@)" ] ; then \ + $(XECHO) -n "...Large Page NAND..." ; \ + echo "#define CONFIG_NAND_LP" >> $(obj)include/config.h ; \ + fi ; \ + if [ "$(findstring _SP_,$@)" ] ; then \ + $(XECHO) -n "...Small Page NAND..." ; \ + echo "#define CONFIG_NAND_SP" >> $(obj)include/config.h ; \ + fi ; + @$(MKCONFIG) -a SIMPC8313 ppc mpc83xx simpc8313 sheldon + @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk + TQM834x_config: unconfig @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x tqc |