Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0
if CONFIG_LANTIQ

config CONFIG_SOC_TYPE_XWAY
	bool
	select CONFIG_PINCTRL_XWAY
	default n

choice
	prompt "SoC Type"
	default CONFIG_SOC_XWAY

config CONFIG_SOC_AMAZON_SE
	bool "Amazon SE"
	select CONFIG_SOC_TYPE_XWAY
	select CONFIG_MFD_SYSCON
	select CONFIG_MFD_CORE

config CONFIG_SOC_XWAY
	bool "XWAY"
	select CONFIG_SOC_TYPE_XWAY
	select CONFIG_HAVE_PCI
	select CONFIG_MFD_SYSCON
	select CONFIG_MFD_CORE

config CONFIG_SOC_FALCON
	bool "FALCON"
	select CONFIG_PINCTRL_FALCON

endchoice

choice
	prompt "Built-in device tree"
	help
	  Legacy bootloaders do not pass a DTB pointer to the kernel, so
	  if a "wrapper" is not being used, the kernel will need to include
	  a device tree that matches the target board.

	  The builtin DTB will only be used if the firmware does not supply
	  a valid DTB.

config CONFIG_LANTIQ_DT_NONE
	bool "None"

config CONFIG_DT_EASY50712
	bool "Easy50712"
	depends on CONFIG_SOC_XWAY
	select CONFIG_BUILTIN_DTB
endchoice

config CONFIG_PCI_LANTIQ
	bool "PCI Support"
	depends on CONFIG_SOC_XWAY && CONFIG_PCI

endif