diff options
author | Dave Liu <r63238@freescale.com> | 2007-09-18 12:37:57 +0800 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-01-08 09:55:39 -0600 |
commit | 19580e660cc8da49f16536a8bd78c047c7bc12e5 (patch) | |
tree | 2b0d1681d4b61b0d7bbf5cf886d25fc3d2753ddc /Makefile | |
parent | 555da61702771fe0f76f3de23b4e7590f3704161 (diff) | |
download | u-boot-imx-19580e660cc8da49f16536a8bd78c047c7bc12e5.zip u-boot-imx-19580e660cc8da49f16536a8bd78c047c7bc12e5.tar.gz u-boot-imx-19580e660cc8da49f16536a8bd78c047c7bc12e5.tar.bz2 |
mpc83xx: Add the support of MPC837xEMDS board
The MPC837xEMDS board support:
* DDR2 400MHz hardcoded and SPD init
* Local bus NOR Flash
* I2C, UART, MII and RTC
* eTSEC RGMII
* PCI host
Signed-off-by: Dave Liu <daveliu@freescale.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1922,6 +1922,16 @@ MPC8360EMDS_ATM_config: unconfig fi ; @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds freescale +MPC837XEMDS_config \ +MPC837XEMDS_HOST_config: unconfig + @mkdir -p $(obj)include + @echo "" >$(obj)include/config.h ; \ + if [ "$(findstring _HOST_,$@)" ] ; then \ + echo -n "... PCI HOST " ; \ + echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ + fi ; + @$(MKCONFIG) -a MPC837XEMDS ppc mpc83xx mpc837xemds freescale + sbc8349_config: unconfig @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349 |