1if LANTIQ 2 3config SOC_TYPE_XWAY 4 bool 5 select PINCTRL_XWAY 6 default n 7 8choice 9 prompt "SoC Type" 10 default SOC_XWAY 11 12config SOC_AMAZON_SE 13 bool "Amazon SE" 14 select SOC_TYPE_XWAY 15 16config SOC_XWAY 17 bool "XWAY" 18 select SOC_TYPE_XWAY 19 select HW_HAS_PCI 20 select MFD_SYSCON 21 22config SOC_FALCON 23 bool "FALCON" 24 select PINCTRL_FALCON 25 26endchoice 27 28choice 29 prompt "Built-in device tree" 30 help 31 Legacy bootloaders do not pass a DTB pointer to the kernel, so 32 if a "wrapper" is not being used, the kernel will need to include 33 a device tree that matches the target board. 34 35 The builtin DTB will only be used if the firmware does not supply 36 a valid DTB. 37 38config LANTIQ_DT_NONE 39 bool "None" 40 41config DT_EASY50712 42 bool "Easy50712" 43 depends on SOC_XWAY 44 select BUILTIN_DTB 45endchoice 46 47config PCI_LANTIQ 48 bool "PCI Support" 49 depends on SOC_XWAY && PCI 50 51config XRX200_PHY_FW 52 bool "XRX200 PHY firmware loader" 53 depends on SOC_XWAY 54 55endif 56