mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
7a8df8ba33
This patch enables ethernet support for ls1012aqds. Signed-off-by: Calvin Johnson <calvin.johnson@nxp.com> Signed-off-by: Anjaneyulu Jagarlmudi <anji.jagarlmudi@nxp.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
62 lines
968 B
Text
62 lines
968 B
Text
if TARGET_LS1012AQDS
|
|
|
|
config SYS_BOARD
|
|
default "ls1012aqds"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls1012aqds"
|
|
|
|
|
|
if FSL_PFE
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select PHYLIB
|
|
imply PHY_VITESSE
|
|
imply PHY_REALTEK
|
|
imply PHY_AQUANTIA
|
|
imply PHYLIB_10G
|
|
|
|
config PFE_RGMII_RESET_WA
|
|
def_bool y
|
|
|
|
config SYS_LS_PFE_FW_ADDR
|
|
hex "Flash address of PFE firmware"
|
|
default 0x40a00000
|
|
|
|
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 0x1e
|
|
|
|
config PFE_EMAC2_PHY_ADDR
|
|
hex "PFE DDR base address"
|
|
default 0x1
|
|
|
|
config PFE_SGMII_2500_PHY1_ADDR
|
|
hex "PFE DDR base address"
|
|
default 0x1
|
|
|
|
config PFE_SGMII_2500_PHY2_ADDR
|
|
hex "PFE DDR base address"
|
|
default 0x2
|
|
|
|
endif
|
|
|
|
|
|
source "board/freescale/common/Kconfig"
|
|
|
|
endif
|