mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
58008cbab5
Another round of sorting Kconfig entries aplhabetically. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Tom Rini <trini@konsulko.com> Acked-by: Alexey Brodkin <abrodkin@synopsys.com> Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
36 lines
726 B
Text
36 lines
726 B
Text
menu "Microchip PIC32 platforms"
|
|
depends on MACH_PIC32
|
|
|
|
config SYS_SOC
|
|
default "pic32mzda" if SOC_PIC32MZDA
|
|
|
|
choice
|
|
prompt "PIC32 SoC select"
|
|
|
|
config SOC_PIC32MZDA
|
|
bool "Microchip PIC32MZ[DA] family"
|
|
select MIPS_L1_CACHE_SHIFT_4
|
|
select ROM_EXCEPTION_VECTORS
|
|
select SUPPORTS_CPU_MIPS32_R1
|
|
select SUPPORTS_CPU_MIPS32_R2
|
|
select SUPPORTS_LITTLE_ENDIAN
|
|
select SYS_MIPS_CACHE_INIT_RAM_LOAD
|
|
help
|
|
This supports Microchip PIC32MZ[DA] family of microcontrollers.
|
|
|
|
endchoice
|
|
|
|
choice
|
|
prompt "Board select"
|
|
|
|
config TARGET_PIC32MZDASK
|
|
bool "Microchip PIC32MZ[DA] Starter Kit"
|
|
depends on SOC_PIC32MZDA
|
|
help
|
|
This supports Microchip PIC32MZ[DA] Starter Kit.
|
|
|
|
endchoice
|
|
|
|
source "board/microchip/pic32mzda/Kconfig"
|
|
|
|
endmenu
|