diff options
author | Purna Chandra Mandal <purna.mandal@microchip.com> | 2016-01-28 15:30:16 +0530 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-02-01 22:14:01 +0100 |
commit | be961fa15bcb01c5a50c184e3dcc3ab0379edddb (patch) | |
tree | 6f32741beefece410941c1f18514b957df91a2d0 /arch/mips/mach-pic32/Kconfig | |
parent | 9ffa7a35ef940b27813c11f68eb28a6b82696915 (diff) | |
download | u-boot-imx-be961fa15bcb01c5a50c184e3dcc3ab0379edddb.zip u-boot-imx-be961fa15bcb01c5a50c184e3dcc3ab0379edddb.tar.gz u-boot-imx-be961fa15bcb01c5a50c184e3dcc3ab0379edddb.tar.bz2 |
MIPS: Add support for Microchip PIC32MZ[DA] SoC family.
Add Microchip PIC32MZ[DA] SoC family support.
Signed-off-by: Purna Chandra Mandal <purna.mandal@microchip.com>
Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'arch/mips/mach-pic32/Kconfig')
-rw-r--r-- | arch/mips/mach-pic32/Kconfig | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/arch/mips/mach-pic32/Kconfig b/arch/mips/mach-pic32/Kconfig index c1cc5e3..f636266 100644 --- a/arch/mips/mach-pic32/Kconfig +++ b/arch/mips/mach-pic32/Kconfig @@ -2,6 +2,21 @@ menu "Microchip PIC32 platforms" depends on MACH_PIC32 config SYS_SOC - default "none" + default "pic32mzda" if SOC_PIC32MZDA + +choice + prompt "PIC32 SoC select" + +config SOC_PIC32MZDA + bool "Microchip PIC32MZ[DA] family" + select SUPPORTS_LITTLE_ENDIAN + select SUPPORTS_CPU_MIPS32_R1 + select SUPPORTS_CPU_MIPS32_R2 + select MIPS_L1_CACHE_SHIFT_4 + select SYS_MIPS_CACHE_INIT_RAM_LOAD + help + This supports Microchip PIC32MZ[DA] family of microcontrollers. + +endchoice endmenu |