1if TARGET_LS1012AQDS 2 3config SYS_BOARD 4 default "ls1012aqds" 5 6config SYS_VENDOR 7 default "freescale" 8 9config SYS_SOC 10 default "fsl-layerscape" 11 12config SYS_CONFIG_NAME 13 default "ls1012aqds" 14 15config SYS_LS_PPA_FW_ADDR 16 hex "PPA Firmware Addr" 17 default 0x40400000 18 19if CHAIN_OF_TRUST 20config SYS_LS_PPA_ESBC_ADDR 21 hex "PPA Firmware HDR Addr" 22 default 0x40680000 23 24config SYS_LS_PFE_ESBC_ADDR 25 hex "PFE Firmware HDR Addr" 26 default 0x40700000 27 28config SYS_LS_PFE_ESBC_LENGTH 29 hex "length of PFE Firmware HDR" 30 default 0xc00 31endif 32 33if FSL_PFE 34 35config BOARD_SPECIFIC_OPTIONS # dummy 36 def_bool y 37 select PHYLIB 38 imply PHY_VITESSE 39 imply PHY_REALTEK 40 imply PHY_AQUANTIA 41 imply PHYLIB_10G 42 43config PFE_RGMII_RESET_WA 44 def_bool y 45 46config SYS_LS_PFE_FW_ADDR 47 hex "Flash address of PFE firmware" 48 default 0x40a00000 49 50config SYS_LS_PFE_FW_LENGTH 51 hex "length of PFE firmware" 52 default 0x300000 53 54config DDR_PFE_PHYS_BASEADDR 55 hex "PFE DDR physical base address" 56 default 0x03800000 57 58config DDR_PFE_BASEADDR 59 hex "PFE DDR base address" 60 default 0x83800000 61 62config PFE_EMAC1_PHY_ADDR 63 hex "PFE DDR base address" 64 default 0x1e 65 66config PFE_EMAC2_PHY_ADDR 67 hex "PFE DDR base address" 68 default 0x1 69 70config PFE_SGMII_2500_PHY1_ADDR 71 hex "PFE DDR base address" 72 default 0x1 73 74config PFE_SGMII_2500_PHY2_ADDR 75 hex "PFE DDR base address" 76 default 0x2 77 78endif 79 80 81source "board/freescale/common/Kconfig" 82 83endif 84