9
0
Fork 0

Using correct board names all over the place

Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
This commit is contained in:
Juergen Beisert 2007-11-08 18:23:44 +01:00
parent e5eba4cf3a
commit a7d96488e5
27 changed files with 34 additions and 27 deletions

View File

@ -1,15 +1,15 @@
/** @page supported_boards Supported Boards /** @page supported_boards Supported Boards
This is a list of boards that are currently supported by U-Bootv2. This is a list of boards that are currently supported by U-Boot-v2.
PowerPC type: PowerPC type:
- @subpage phycore_pcm030 - @subpage pcm030
ARM type: ARM type:
- @subpage phycore_imx31 - @subpage pcm037
- @subpage phycore_pcm038 - @subpage pcm038
- @subpage scb9328 - @subpage scb9328
- @subpage netx - @subpage netx

7
TODO
View File

@ -40,6 +40,13 @@ TODO
but for memory mapped devices like nor flash we could provide a pointer to but for memory mapped devices like nor flash we could provide a pointer to
it. With this we would not have to copy uimages to memory. it. With this we would not have to copy uimages to memory.
[ ] setting a variable:
bla=500 -> OK
bla = 500 -> Unknown command 'bla' - try 'help'
bla= 500 -> Unknown command '500' - try 'help'
[ ] command line editing is somewhat broken
DONE DONE
---- ----

View File

@ -8,7 +8,7 @@ config ARCH_TEXT_BASE
default 0x81f00000 if MACH_NXDB500 default 0x81f00000 if MACH_NXDB500
default 0x21e00000 if MACH_ECO920 default 0x21e00000 if MACH_ECO920
default 0xa0000000 if MACH_PCM038 default 0xa0000000 if MACH_PCM038
default 0x87f00000 if MACH_IMX31 default 0x87f00000 if MACH_PCM037
# #
# #
# #
@ -19,10 +19,10 @@ config BOARDINFO
default "Hilscher Netx nxdb500" if MACH_NXDB500 default "Hilscher Netx nxdb500" if MACH_NXDB500
config BOARDINFO config BOARDINFO
default "Phytec Phycore MX27" if MACH_PCM038 default "Phytec phyCORE-i.MX27" if MACH_PCM038
config BOARDINFO config BOARDINFO
default "Phytec Phycore i.MX31" if MACH_IMX31 default "Phytec phyCORE-i.MX31" if MACH_PCM037
config BOARD_LINKER_SCRIPT config BOARD_LINKER_SCRIPT
bool bool
@ -91,11 +91,11 @@ config MACH_SCB9328
Say Y here if you are using the Synertronixx scb9328 board Say Y here if you are using the Synertronixx scb9328 board
config MACH_PCM038 config MACH_PCM038
bool "Phytec pcm038" bool "phyCORE-i.MX27"
select HAS_CFI select HAS_CFI
select ARCH_IMX27 select ARCH_IMX27
help help
Say Y here if you are using the Phytec Phycore pcm038 equipped Say Y here if you are using Phytec's phyCORE-i.MX27 (pcm038) equipped
with a Freescale i.MX27 Processor with a Freescale i.MX27 Processor
config MACH_ECO920 config MACH_ECO920
@ -114,11 +114,11 @@ config MACH_NXDB500
help help
Say Y here if you are using the Hilscher Netx nxdb500 board Say Y here if you are using the Hilscher Netx nxdb500 board
config MACH_IMX31 config MACH_PCM037
bool "Phytec i.MX31" bool "phyCORE-i.MX31"
select ARCH_IMX31 select ARCH_IMX31
help help
Say Y here if your are using Phytec's pcm-mx31 equipped Say Y here if your are using Phytec's phyCORE-i.MX31 (pcm037) equipped
with a Freescale i.MX31 Processor with a Freescale i.MX31 Processor
endchoice endchoice

View File

@ -10,9 +10,9 @@ machine-$(CONFIG_ARCH_AT91RM9200) := at91rm9200
board-$(CONFIG_MACH_MX1ADS) := mx1ads board-$(CONFIG_MACH_MX1ADS) := mx1ads
board-$(CONFIG_MACH_ECO920) := eco920 board-$(CONFIG_MACH_ECO920) := eco920
board-$(CONFIG_MACH_SCB9328) := scb9328 board-$(CONFIG_MACH_SCB9328) := scb9328
board-$(CONFIG_MACH_PCM038) := phycore_pcm038 board-$(CONFIG_MACH_PCM038) := pcm038
board-$(CONFIG_MACH_NXDB500) := netx board-$(CONFIG_MACH_NXDB500) := netx
board-$(CONFIG_MACH_IMX31) := phycore_imx31 board-$(CONFIG_MACH_PCM037) := pcm037
# FIXME "cpu-y" never used on ARM! # FIXME "cpu-y" never used on ARM!
cpu-$(CONFIG_ARM920T) := arm920t cpu-$(CONFIG_ARM920T) := arm920t
cpu-$(CONFIG_ARM926EJS) := arm926ejs cpu-$(CONFIG_ARM926EJS) := arm926ejs

View File

@ -4,7 +4,7 @@
# Thu Oct 18 19:32:40 2007 # Thu Oct 18 19:32:40 2007
# #
CONFIG_ARCH_TEXT_BASE=0x87f00000 CONFIG_ARCH_TEXT_BASE=0x87f00000
CONFIG_BOARDINFO="Phytec Phycore i.MX31" CONFIG_BOARDINFO="Phytec phyCORE-i.MX31"
# CONFIG_BOARD_LINKER_SCRIPT is not set # CONFIG_BOARD_LINKER_SCRIPT is not set
CONFIG_GENERIC_LINKER_SCRIPT=y CONFIG_GENERIC_LINKER_SCRIPT=y
CONFIG_ARM=y CONFIG_ARM=y
@ -15,7 +15,7 @@ CONFIG_ARCH_IMX31=y
# CONFIG_MACH_PCM038 is not set # CONFIG_MACH_PCM038 is not set
# CONFIG_MACH_ECO920 is not set # CONFIG_MACH_ECO920 is not set
# CONFIG_MACH_NXDB500 is not set # CONFIG_MACH_NXDB500 is not set
CONFIG_MACH_IMX31=y CONFIG_MACH_PCM037=y
# #
# Arm specific settings # Arm specific settings
@ -49,7 +49,7 @@ CONFIG_TIMESTAMP=y
CONFIG_CONSOLE_ACTIVATE_FIRST=y CONFIG_CONSOLE_ACTIVATE_FIRST=y
# CONFIG_OF_FLAT_TREE is not set # CONFIG_OF_FLAT_TREE is not set
CONFIG_DEFAULT_ENVIRONMENT=y CONFIG_DEFAULT_ENVIRONMENT=y
CONFIG_DEFAULT_ENVIRONMENT_PATH="board/phycore_imx31/env" CONFIG_DEFAULT_ENVIRONMENT_PATH="board/pcm037/env"
# #
# Debugging # Debugging

View File

@ -4,7 +4,7 @@
# Thu Nov 8 16:52:09 2007 # Thu Nov 8 16:52:09 2007
# #
CONFIG_ARCH_TEXT_BASE=0xa0000000 CONFIG_ARCH_TEXT_BASE=0xa0000000
CONFIG_BOARDINFO="Phytec Phycore MX27" CONFIG_BOARDINFO="Phytec phyCORE-i.MX27"
# CONFIG_BOARD_LINKER_SCRIPT is not set # CONFIG_BOARD_LINKER_SCRIPT is not set
CONFIG_GENERIC_LINKER_SCRIPT=y CONFIG_GENERIC_LINKER_SCRIPT=y
CONFIG_ARM=y CONFIG_ARM=y
@ -16,7 +16,7 @@ CONFIG_ARCH_IMX27=y
CONFIG_MACH_PCM038=y CONFIG_MACH_PCM038=y
# CONFIG_MACH_ECO920 is not set # CONFIG_MACH_ECO920 is not set
# CONFIG_MACH_NXDB500 is not set # CONFIG_MACH_NXDB500 is not set
# CONFIG_MACH_IMX31 is not set # CONFIG_MACH_PCM037 is not set
# #
# Arm specific settings # Arm specific settings

View File

@ -16,7 +16,7 @@ CONFIG_MACH_SCB9328=y
# CONFIG_MACH_PCM038 is not set # CONFIG_MACH_PCM038 is not set
# CONFIG_MACH_ECO920 is not set # CONFIG_MACH_ECO920 is not set
# CONFIG_MACH_NXDB500 is not set # CONFIG_MACH_NXDB500 is not set
# CONFIG_MACH_IMX31 is not set # CONFIG_MACH_PCM037 is not set
# #
# Arm specific settings # Arm specific settings

View File

@ -9,7 +9,7 @@ endif
machine-$(CONFIG_ARCH_MPC5200) := mpc5200 machine-$(CONFIG_ARCH_MPC5200) := mpc5200
board-$(CONFIG_MACH_PHYCORE_MPC5200B_TINY) := phycore_mpc5200b_tiny board-$(CONFIG_MACH_PHYCORE_MPC5200B_TINY) := pcm030
cpu-$(CONFIG_ARCH_MPC5200) := mpc5xxx cpu-$(CONFIG_ARCH_MPC5200) := mpc5xxx
TEXT_BASE = $(CONFIG_TEXT_BASE) TEXT_BASE = $(CONFIG_TEXT_BASE)

2
board/pcm030/Makefile Normal file
View File

@ -0,0 +1,2 @@
obj-y += pcm030.o
extra-y += u-boot.lds

View File

@ -1,4 +1,4 @@
/** @page phycore_pcm030 Phytec's phyCORE-pcm030 /** @page pcm030 Phytec's phyCORE-MPC5200B-tiny
This CPU card is based on a Freescale MPC5200B CPU. The card is shipped with: This CPU card is based on a Freescale MPC5200B CPU. The card is shipped with:

View File

@ -21,4 +21,4 @@
# #
obj-y += lowlevel_init.o obj-y += lowlevel_init.o
obj-y += phycore_imx31.o obj-y += pcm037.o

View File

@ -1,4 +1,4 @@
/** @page phycore_imx31 Phytec's phyCORE-pcm037 /** @page pcm037 Phytec's phyCORE-i.MX31
This CPU card is based on a Freescale i.MX31 CPU. The card is shipped with: This CPU card is based on a Freescale i.MX31 CPU. The card is shipped with:

View File

@ -1,4 +1,4 @@
/** @page phycore_pcm038 Phytec's phyCORE-pcm038 /** @page pcm038 Phytec's phyCORE-i.MX27
This CPU card is based on a Freescale i.MX27 CPU. The card is shipped with: This CPU card is based on a Freescale i.MX27 CPU. The card is shipped with:

View File

@ -1,2 +0,0 @@
obj-y += phycore_mpc5200b_tiny.o
extra-y += u-boot.lds