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_MACH_PIC32

choice
	prompt "Machine Type"

config CONFIG_PIC32MZDA
	bool "Microchip PIC32MZDA Platform"
	select CONFIG_BOOT_ELF32
	select CONFIG_BOOT_RAW
	select CONFIG_CEVT_R4K
	select CONFIG_CSRC_R4K
	select CONFIG_DMA_NONCOHERENT
	select CONFIG_SYS_HAS_CPU_MIPS32_R2
	select CONFIG_SYS_HAS_EARLY_PRINTK
	select CONFIG_SYS_SUPPORTS_32BIT_KERNEL
	select CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN
	select CONFIG_GPIOLIB
	select CONFIG_COMMON_CLK
	select CONFIG_CLKDEV_LOOKUP
	select CONFIG_LIBFDT
	select CONFIG_USE_OF
	select CONFIG_PINCTRL
	select CONFIG_PIC32_EVIC
	help
	  Support for the Microchip CONFIG_PIC32MZDA microcontroller.

	  This is a 32-bit microcontroller with support for external or
	  internally packaged DDR2 memory up to 128MB.

	  For more information, see <http://www.microchip.com/>.

endchoice

choice
	prompt "Devicetree selection"
	default CONFIG_DTB_PIC32_NONE
	help
	  Select the devicetree.

config CONFIG_DTB_PIC32_NONE
	bool "None"

config CONFIG_DTB_PIC32_MZDA_SK
	bool "PIC32MZDA Starter Kit"
	depends on CONFIG_PIC32MZDA
	select CONFIG_BUILTIN_DTB

endchoice

endif # CONFIG_MACH_PIC32