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