Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 if LANTIQ
0003 
0004 config SOC_TYPE_XWAY
0005         bool
0006         select PINCTRL_XWAY
0007         default n
0008 
0009 choice
0010         prompt "SoC Type"
0011         default SOC_XWAY
0012 
0013 config SOC_AMAZON_SE
0014         bool "Amazon SE"
0015         select SOC_TYPE_XWAY
0016         select MFD_SYSCON
0017         select MFD_CORE
0018 
0019 config SOC_XWAY
0020         bool "XWAY"
0021         select SOC_TYPE_XWAY
0022         select HAVE_PCI
0023         select MFD_SYSCON
0024         select MFD_CORE
0025 
0026 config SOC_FALCON
0027         bool "FALCON"
0028         select PINCTRL_FALCON
0029 
0030 endchoice
0031 
0032 choice
0033         prompt "Built-in device tree"
0034         help
0035           Legacy bootloaders do not pass a DTB pointer to the kernel, so
0036           if a "wrapper" is not being used, the kernel will need to include
0037           a device tree that matches the target board.
0038 
0039           The builtin DTB will only be used if the firmware does not supply
0040           a valid DTB.
0041 
0042 config LANTIQ_DT_NONE
0043         bool "None"
0044 
0045 config DT_EASY50712
0046         bool "Easy50712"
0047         depends on SOC_XWAY
0048         select BUILTIN_DTB
0049 endchoice
0050 
0051 config PCI_LANTIQ
0052         bool "PCI Support"
0053         depends on SOC_XWAY && PCI
0054 
0055 endif