mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
93145335fb
The way that we use this file currently means that we have to guard it in every platform Kconfig. But it is also required in all NXP platforms, including non-reference platforms. Make all options in it have appropriate dependencies so that we can include it a single time under arch/Kconfig Signed-off-by: Tom Rini <trini@konsulko.com>
91 lines
1.5 KiB
Text
91 lines
1.5 KiB
Text
if TARGET_LS1012AFRDM
|
|
|
|
config SYS_BOARD
|
|
default "ls1012afrdm"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls1012afrdm"
|
|
|
|
config SYS_LS_PFE_FW_ADDR
|
|
hex "Flash address of PFE firmware"
|
|
default 0x40a00000
|
|
|
|
config SYS_LS_PFE_FW_LENGTH
|
|
hex "length of PFE firmware"
|
|
default 0x40000
|
|
|
|
config SYS_LS_PPA_FW_ADDR
|
|
hex "PPA Firmware Addr"
|
|
default 0x40400000
|
|
endif
|
|
|
|
if FSL_PFE
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select PHYLIB
|
|
imply PHY_REALTEK
|
|
imply PHY_ATHEROS
|
|
|
|
config DDR_PFE_PHYS_BASEADDR
|
|
hex "PFE DDR physical base address"
|
|
default 0x03800000
|
|
|
|
config DDR_PFE_BASEADDR
|
|
hex "PFE DDR base address"
|
|
default 0x83800000
|
|
|
|
config PFE_EMAC1_PHY_ADDR
|
|
hex "PFE DDR base address"
|
|
default 0x2
|
|
|
|
config PFE_EMAC2_PHY_ADDR
|
|
hex "PFE DDR base address"
|
|
default 0x1
|
|
|
|
endif
|
|
|
|
if TARGET_LS1012AFRWY
|
|
|
|
config SYS_BOARD
|
|
default "ls1012afrdm"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls1012afrwy"
|
|
|
|
config SYS_LS_PFE_FW_ADDR
|
|
hex "Flash address of PFE firmware"
|
|
default 0x40020000
|
|
|
|
config SYS_LS_PFE_FW_LENGTH
|
|
hex "length of PFE firmware"
|
|
default 0x40000
|
|
|
|
config SYS_LS_PPA_FW_ADDR
|
|
hex "PPA Firmware Addr"
|
|
default 0x40060000
|
|
|
|
config SYS_LS_PPA_ESBC_ADDR
|
|
hex "PPA Firmware HDR Addr"
|
|
default 0x401f4000
|
|
|
|
config SYS_LS_PFE_ESBC_ADDR
|
|
hex "PFE Firmware HDR Addr"
|
|
default 0x401f8000
|
|
|
|
config SYS_LS_PFE_ESBC_LENGTH
|
|
hex "length of PFE Firmware HDR"
|
|
default 0xc00
|
|
endif
|