mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 21:24:21 +08:00
ColdFire: Move boards with simple _config rules to boards.cfg
Signed-off-by: Stany MARCEL <stany.marcel@novasys-ingenierie.com>
This commit is contained in:
parent
606667d252
commit
96d94385a7
6
MAKEALL
6
MAKEALL
@ -440,18 +440,12 @@ LIST_microblaze="$(boards_by_arch microblaze)"
|
||||
#########################################################################
|
||||
|
||||
LIST_m68k="$(boards_by_arch m68k)
|
||||
astro_mcf5373l \
|
||||
cobra5272 \
|
||||
EB+MCF-EV123 \
|
||||
EB+MCF-EV123_internal \
|
||||
M52277EVB \
|
||||
M5235EVB \
|
||||
M5329AFEE \
|
||||
M5373EVB \
|
||||
M54451EVB \
|
||||
M54455EVB \
|
||||
M5475AFE \
|
||||
M5485AFE \
|
||||
"
|
||||
LIST_coldfire=${LIST_m68k}
|
||||
|
||||
|
96
Makefile
96
Makefile
@ -622,11 +622,6 @@ ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
|
||||
#########################################################################
|
||||
## Coldfire
|
||||
#########################################################################
|
||||
|
||||
astro_mcf5373l_config \
|
||||
astro_mcf5373l_RAM_config : unconfig
|
||||
@$(MKCONFIG) -n $@ -t $@ astro_mcf5373l m68k mcf532x mcf5373l astro
|
||||
|
||||
M52277EVB_config \
|
||||
M52277EVB_spansion_config \
|
||||
M52277EVB_stmicro_config : unconfig
|
||||
@ -662,9 +657,6 @@ M5235EVB_Flash32_config: unconfig
|
||||
fi
|
||||
@$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale
|
||||
|
||||
cobra5272_config : unconfig
|
||||
@$(MKCONFIG) $@ m68k mcf52x2 cobra5272
|
||||
|
||||
EB+MCF-EV123_config : unconfig
|
||||
@mkdir -p $(obj)include
|
||||
@mkdir -p $(obj)board/BuS/EB+MCF-EV123
|
||||
@ -677,26 +669,6 @@ EB+MCF-EV123_internal_config : unconfig
|
||||
@echo "CONFIG_SYS_TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
|
||||
@$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
|
||||
|
||||
M5329AFEE_config \
|
||||
M5329BFEE_config : unconfig
|
||||
@case "$@" in \
|
||||
M5329AFEE_config) NAND=0;; \
|
||||
M5329BFEE_config) NAND=16;; \
|
||||
esac; \
|
||||
if [ "$${NAND}" != "0" ] ; then \
|
||||
echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
|
||||
fi
|
||||
@$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale
|
||||
|
||||
M5373EVB_config : unconfig
|
||||
@case "$@" in \
|
||||
M5373EVB_config) NAND=16;; \
|
||||
esac; \
|
||||
if [ "$${NAND}" != "0" ] ; then \
|
||||
echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
|
||||
fi
|
||||
@$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale
|
||||
|
||||
M54451EVB_config \
|
||||
M54451EVB_stmicro_config : unconfig
|
||||
@case "$@" in \
|
||||
@ -749,74 +721,6 @@ M54455EVB_stm33_config : unconfig
|
||||
$(XECHO) "... with $${FREQ}Hz input clock"
|
||||
@$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale
|
||||
|
||||
M5475AFE_config \
|
||||
M5475BFE_config \
|
||||
M5475CFE_config \
|
||||
M5475DFE_config \
|
||||
M5475EFE_config \
|
||||
M5475FFE_config \
|
||||
M5475GFE_config : unconfig
|
||||
@case "$@" in \
|
||||
M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
||||
M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
|
||||
M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
|
||||
M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
|
||||
M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
|
||||
M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
|
||||
M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
||||
esac; \
|
||||
echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \
|
||||
echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
|
||||
echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
|
||||
if [ "$${RAM1}" != "0" ] ; then \
|
||||
echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
|
||||
fi; \
|
||||
if [ "$${CODE}" != "0" ] ; then \
|
||||
echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
|
||||
fi; \
|
||||
if [ "$${VID}" == "1" ] ; then \
|
||||
echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
|
||||
fi; \
|
||||
if [ "$${USB}" == "1" ] ; then \
|
||||
echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
|
||||
fi
|
||||
@$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale
|
||||
|
||||
M5485AFE_config \
|
||||
M5485BFE_config \
|
||||
M5485CFE_config \
|
||||
M5485DFE_config \
|
||||
M5485EFE_config \
|
||||
M5485FFE_config \
|
||||
M5485GFE_config \
|
||||
M5485HFE_config : unconfig
|
||||
@case "$@" in \
|
||||
M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
||||
M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
|
||||
M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
|
||||
M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
|
||||
M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
|
||||
M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
|
||||
M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
||||
M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \
|
||||
esac; \
|
||||
echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \
|
||||
echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
|
||||
echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
|
||||
if [ "$${RAM1}" != "0" ] ; then \
|
||||
echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
|
||||
fi; \
|
||||
if [ "$${CODE}" != "0" ] ; then \
|
||||
echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
|
||||
fi; \
|
||||
if [ "$${VID}" == "1" ] ; then \
|
||||
echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
|
||||
fi; \
|
||||
if [ "$${USB}" == "1" ] ; then \
|
||||
echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
|
||||
fi
|
||||
@$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale
|
||||
|
||||
#========================================================================
|
||||
# ARM
|
||||
#========================================================================
|
||||
|
21
boards.cfg
21
boards.cfg
@ -265,6 +265,7 @@ tcm-bf537 blackfin blackfin
|
||||
eNET x86 x86 eNET - sc520 eNET:SYS_TEXT_BASE=0x38040000
|
||||
eNET_SRAM x86 x86 eNET - sc520 eNET:SYS_TEXT_BASE=0x19000000
|
||||
sandbox sandbox sandbox sandbox sandbox -
|
||||
cobra5272 m68k mcf52x2 cobra5272 -
|
||||
idmr m68k mcf52x2
|
||||
TASREG m68k mcf52x2 tasreg esd
|
||||
M5208EVBE m68k mcf52x2 m5208evbe freescale
|
||||
@ -275,8 +276,26 @@ M5271EVB m68k mcf52x2 m5271evb freesca
|
||||
M5272C3 m68k mcf52x2 m5272c3 freescale
|
||||
M5275EVB m68k mcf52x2 m5275evb freescale
|
||||
M5282EVB m68k mcf52x2 m5282evb freescale
|
||||
astro_mcf5373l m68k mcf532x mcf5373l astro
|
||||
M53017EVB m68k mcf532x m53017evb freescale
|
||||
EP2500 m68k mcf52x2 ep2500 Mercury
|
||||
M5329AFEE m68k mcf532x m5329evb freescale - M5329EVB:NANDFLASH_SIZE=0
|
||||
M5329BFEE m68k mcf532x m5329evb freescale - M5329EVB:NANDFLASH_SIZE=16
|
||||
M5373EVB m68k mcf532x m5373evb freescale - M5373EVB:NANDFLASH_SIZE=16
|
||||
M5475AFE m68k mcf547x_8x m547xevb freescale - M5475EVB:SYS_BUSCLK=133333333,SYS_BOOTSZ=2,SYS_DRAMSZ=64
|
||||
M5475BFE m68k mcf547x_8x m547xevb freescale - M5475EVB:SYS_BUSCLK=133333333,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=16
|
||||
M5475CFE m68k mcf547x_8x m547xevb freescale - M5475EVB:SYS_BUSCLK=133333333,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=16,SYS_VIDEO,SYS_USBCTRL
|
||||
M5475DFE m68k mcf547x_8x m547xevb freescale - M5475EVB:SYS_BUSCLK=133333333,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_USBCTRL
|
||||
M5475EFE m68k mcf547x_8x m547xevb freescale - M5475EVB:SYS_BUSCLK=133333333,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_VIDEO,SYS_USBCTRL
|
||||
M5475FFE m68k mcf547x_8x m547xevb freescale - M5475EVB:SYS_BUSCLK=133333333,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=32,SYS_VIDEO,SYS_USBCTRL,SYS_DRAMSZ1=64
|
||||
M5475GFE m68k mcf547x_8x m547xevb freescale - M5475EVB:SYS_BUSCLK=133333333,SYS_BOOTSZ=4,SYS_DRAMSZ=64
|
||||
M5485AFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64
|
||||
M5485BFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=16
|
||||
M5485CFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=16,SYS_VIDEO,SYS_USBCTRL
|
||||
M5485DFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_USBCTRL
|
||||
M5485EFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_VIDEO,SYS_USBCTRL
|
||||
M5485FFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=32,SYS_VIDEO,SYS_USBCTRL,SYS_DRAMSZ1=64
|
||||
M5485GFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=4,SYS_DRAMSZ=64
|
||||
M5485HFE m68k mcf547x_8x m548xevb freescale - M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=16,SYS_VIDEO
|
||||
microblaze-generic microblaze microblaze microblaze-generic xilinx
|
||||
dbau1000 mips mips32 dbau1x00 - au1x00 dbau1x00:DBAU1000
|
||||
dbau1100 mips mips32 dbau1x00 - au1x00 dbau1x00:DBAU1100
|
||||
|
@ -60,7 +60,7 @@
|
||||
#define CONFIG_CMD_PING
|
||||
#define CONFIG_CMD_REGINFO
|
||||
|
||||
#ifdef NANDFLASH_SIZE
|
||||
#ifdef CONFIG_NANDFLASH_SIZE
|
||||
# define CONFIG_CMD_NAND
|
||||
#endif
|
||||
|
||||
@ -209,7 +209,7 @@
|
||||
# define CONFIG_SYS_FLASH_PROTECTION /* "Real" (hardware) sectors protection */
|
||||
#endif
|
||||
|
||||
#ifdef NANDFLASH_SIZE
|
||||
#ifdef CONFIG_NANDFLASH_SIZE
|
||||
# define CONFIG_SYS_MAX_NAND_DEVICE 1
|
||||
# define CONFIG_SYS_NAND_BASE CONFIG_SYS_CS2_BASE
|
||||
# define CONFIG_SYS_NAND_SIZE 1
|
||||
@ -265,9 +265,9 @@
|
||||
#define CONFIG_SYS_CS1_MASK 0x001f0001
|
||||
#define CONFIG_SYS_CS1_CTRL 0x002A3780
|
||||
|
||||
#ifdef NANDFLASH_SIZE
|
||||
#ifdef CONFIG_NANDFLASH_SIZE
|
||||
#define CONFIG_SYS_CS2_BASE 0x20000000
|
||||
#define CONFIG_SYS_CS2_MASK ((NANDFLASH_SIZE << 20) | 1)
|
||||
#define CONFIG_SYS_CS2_MASK ((CONFIG_NANDFLASH_SIZE << 20) | 1)
|
||||
#define CONFIG_SYS_CS2_CTRL 0x00001f60
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user