1if TARGET_LS1012ARDB 2 3config SYS_BOARD 4 default "ls1012ardb" 5 6config SYS_VENDOR 7 default "freescale" 8 9config SYS_SOC 10 default "fsl-layerscape" 11 12config SYS_CONFIG_NAME 13 default "ls1012ardb" 14 15if FSL_PFE 16 17config BOARD_SPECIFIC_OPTIONS # dummy 18 def_bool y 19 select PHYLIB 20 imply PHY_REALTEK 21 22config SYS_LS_PFE_FW_ADDR 23 hex "Flash address of PFE firmware" 24 default 0x40a00000 25 26config DDR_PFE_PHYS_BASEADDR 27 hex "PFE DDR physical base address" 28 default 0x03800000 29 30config DDR_PFE_BASEADDR 31 hex "PFE DDR base address" 32 default 0x83800000 33 34config PFE_EMAC1_PHY_ADDR 35 hex "PFE DDR base address" 36 default 0x2 37 38config PFE_EMAC2_PHY_ADDR 39 hex "PFE DDR base address" 40 default 0x1 41 42endif 43 44source "board/freescale/common/Kconfig" 45 46endif 47 48if TARGET_LS1012A2G5RDB 49 50config SYS_BOARD 51 default "ls1012ardb" 52 53config SYS_VENDOR 54 default "freescale" 55 56config SYS_SOC 57 default "fsl-layerscape" 58 59config SYS_CONFIG_NAME 60 default "ls1012a2g5rdb" 61 62if FSL_PFE 63 64config BOARD_SPECIFIC_OPTIONS # dummy 65 def_bool y 66 select PHYLIB 67 imply CONFIG_PHYLIB_10G 68 imply CONFIG_PHY_AQUANTIA 69 70config SYS_LS_PFE_FW_ADDR 71 hex "Flash address of PFE firmware" 72 default 0x40a00000 73 74config DDR_PFE_PHYS_BASEADDR 75 hex "PFE DDR physical base address" 76 default 0x03800000 77 78config DDR_PFE_BASEADDR 79 hex "PFE DDR base address" 80 default 0x83800000 81 82config PFE_EMAC1_PHY_ADDR 83 hex "PFE DDR base address" 84 default 0x2 85 86config PFE_EMAC2_PHY_ADDR 87 hex "PFE DDR base address" 88 default 0x1 89 90endif 91 92source "board/freescale/common/Kconfig" 93 94endif 95