Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
John Crispin | 8ec6d93 | 2011-03-30 09:27:48 +0200 | [diff] [blame] | 2 | if LANTIQ |
| 3 | |
| 4 | config SOC_TYPE_XWAY |
| 5 | bool |
John Crispin | 3f8c50c | 2012-08-28 12:44:59 +0200 | [diff] [blame] | 6 | select PINCTRL_XWAY |
John Crispin | 8ec6d93 | 2011-03-30 09:27:48 +0200 | [diff] [blame] | 7 | default n |
| 8 | |
| 9 | choice |
| 10 | prompt "SoC Type" |
| 11 | default SOC_XWAY |
| 12 | |
| 13 | config SOC_AMAZON_SE |
| 14 | bool "Amazon SE" |
| 15 | select SOC_TYPE_XWAY |
Mathias Kresin | a821328 | 2018-03-16 21:27:30 +0100 | [diff] [blame] | 16 | select MFD_SYSCON |
| 17 | select MFD_CORE |
John Crispin | 8ec6d93 | 2011-03-30 09:27:48 +0200 | [diff] [blame] | 18 | |
| 19 | config SOC_XWAY |
| 20 | bool "XWAY" |
| 21 | select SOC_TYPE_XWAY |
Christoph Hellwig | eb01d42 | 2018-11-15 20:05:32 +0100 | [diff] [blame] | 22 | select HAVE_PCI |
Martin Blumenstingl | 2b6639d | 2017-08-20 00:18:13 +0200 | [diff] [blame] | 23 | select MFD_SYSCON |
Martin Blumenstingl | d9a46c1 | 2017-08-20 00:18:23 +0200 | [diff] [blame] | 24 | select MFD_CORE |
John Crispin | d41ced0 | 2012-04-19 16:16:11 +0200 | [diff] [blame] | 25 | |
| 26 | config SOC_FALCON |
| 27 | bool "FALCON" |
John Crispin | e316cb2 | 2012-05-20 00:33:56 +0200 | [diff] [blame] | 28 | select PINCTRL_FALCON |
John Crispin | d41ced0 | 2012-04-19 16:16:11 +0200 | [diff] [blame] | 29 | |
John Crispin | 8ec6d93 | 2011-03-30 09:27:48 +0200 | [diff] [blame] | 30 | endchoice |
| 31 | |
John Crispin | a039222 | 2012-04-13 20:56:13 +0200 | [diff] [blame] | 32 | choice |
Hauke Mehrtens | e791dfb | 2016-03-19 18:28:52 +0100 | [diff] [blame] | 33 | prompt "Built-in device tree" |
| 34 | help |
| 35 | Legacy bootloaders do not pass a DTB pointer to the kernel, so |
| 36 | if a "wrapper" is not being used, the kernel will need to include |
| 37 | a device tree that matches the target board. |
| 38 | |
| 39 | The builtin DTB will only be used if the firmware does not supply |
| 40 | a valid DTB. |
| 41 | |
| 42 | config LANTIQ_DT_NONE |
| 43 | bool "None" |
John Crispin | a039222 | 2012-04-13 20:56:13 +0200 | [diff] [blame] | 44 | |
| 45 | config DT_EASY50712 |
| 46 | bool "Easy50712" |
| 47 | depends on SOC_XWAY |
Andrew Bresticker | 3229a6d | 2014-08-21 13:04:23 -0700 | [diff] [blame] | 48 | select BUILTIN_DTB |
John Crispin | a039222 | 2012-04-13 20:56:13 +0200 | [diff] [blame] | 49 | endchoice |
| 50 | |
John Crispin | 57c8cb8 | 2012-05-11 18:47:30 +0200 | [diff] [blame] | 51 | config PCI_LANTIQ |
| 52 | bool "PCI Support" |
| 53 | depends on SOC_XWAY && PCI |
| 54 | |
John Crispin | 8ec6d93 | 2011-03-30 09:27:48 +0200 | [diff] [blame] | 55 | endif |