2012-04-06 15:49:35 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:08:57 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 15:49:35 +00:00
|
|
|
#
|
2012-04-17 13:48:39 +00:00
|
|
|
|
|
|
|
if ARCH_MIPS
|
|
|
|
choice
|
|
|
|
prompt "MIPS chip selection"
|
2012-04-19 22:51:42 +00:00
|
|
|
default ARCH_CHIP_PIC32MX
|
2012-04-17 13:48:39 +00:00
|
|
|
|
2012-04-19 22:51:42 +00:00
|
|
|
config ARCH_CHIP_PIC32MX
|
|
|
|
bool "PIC32MX"
|
2012-11-29 18:44:02 +00:00
|
|
|
select ARCH_MIPS32
|
2020-02-01 20:51:10 +00:00
|
|
|
select ARCH_HAVE_EIC
|
2013-12-20 08:42:54 -06:00
|
|
|
select ARCH_HAVE_IRQPRIO
|
2013-01-14 22:06:19 +00:00
|
|
|
select ARCH_VECNOTIRQ
|
|
|
|
select ARCH_HAVE_RAMFUNCS
|
2014-10-27 11:31:16 -06:00
|
|
|
select ARCH_HAVE_SERIAL_TERMIOS
|
2012-04-17 13:48:39 +00:00
|
|
|
---help---
|
2015-02-22 10:53:24 -06:00
|
|
|
Microchip PIC32MX (MIPS32)
|
|
|
|
|
|
|
|
config ARCH_CHIP_PIC32MZ
|
|
|
|
bool "PIC32MZ"
|
|
|
|
select ARCH_MIPS32
|
2020-02-01 20:51:10 +00:00
|
|
|
select ARCH_HAVE_EIC
|
2015-02-22 10:53:24 -06:00
|
|
|
select ARCH_HAVE_IRQPRIO
|
|
|
|
select ARCH_VECNOTIRQ
|
|
|
|
select ARCH_HAVE_RAMFUNCS
|
|
|
|
select ARCH_HAVE_SERIAL_TERMIOS
|
|
|
|
---help---
|
|
|
|
Microchip PIC32MZ (MIPS32)
|
2012-04-17 13:48:39 +00:00
|
|
|
|
2012-04-19 22:51:42 +00:00
|
|
|
endchoice
|
2012-04-17 13:48:39 +00:00
|
|
|
|
2012-04-19 22:51:42 +00:00
|
|
|
config ARCH_MIPS32
|
|
|
|
bool
|
2012-11-29 18:44:02 +00:00
|
|
|
default n
|
2013-01-15 15:40:18 +00:00
|
|
|
select ARCH_HAVE_VFORK
|
2012-04-17 13:48:39 +00:00
|
|
|
|
2020-02-10 16:24:37 +00:00
|
|
|
config ARCH_MIPS_M4K
|
2015-02-22 13:45:59 -06:00
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2020-02-10 16:24:37 +00:00
|
|
|
config ARCH_MIPS_MICROAPTIV
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
select ARCH_HAVE_MICROMIPS
|
|
|
|
|
|
|
|
config ARCH_MIPS_M5150
|
2015-02-22 13:45:59 -06:00
|
|
|
bool
|
|
|
|
default n
|
2015-02-28 08:22:37 -06:00
|
|
|
select ARCH_HAVE_MICROMIPS
|
2015-02-23 12:09:34 -06:00
|
|
|
|
2020-02-01 20:51:10 +00:00
|
|
|
config ARCH_HAVE_EIC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2015-02-28 08:22:37 -06:00
|
|
|
config ARCH_HAVE_MICROMIPS
|
2015-02-23 12:09:34 -06:00
|
|
|
bool
|
|
|
|
default n
|
2015-02-22 13:45:59 -06:00
|
|
|
|
2015-02-28 08:22:37 -06:00
|
|
|
config MIPS_MICROMIPS
|
|
|
|
bool "Use microMIPS ISA"
|
|
|
|
default n
|
|
|
|
depends on ARCH_HAVE_MICROMIPS
|
|
|
|
---help---
|
|
|
|
The processor supports both the MIPS32 ISA and the microMIPS ISA.
|
|
|
|
If this option is selected, the microMIPS ISA will be used.
|
|
|
|
Otherwise, the MIPS32 ISA will be used.
|
|
|
|
|
2012-04-19 22:51:42 +00:00
|
|
|
config ARCH_FAMILY
|
|
|
|
string
|
|
|
|
default "mips32" if ARCH_MIPS32
|
2012-04-17 13:48:39 +00:00
|
|
|
|
2012-04-19 22:51:42 +00:00
|
|
|
config ARCH_CHIP
|
|
|
|
string
|
|
|
|
default "pic32mx" if ARCH_CHIP_PIC32MX
|
2015-02-22 10:53:24 -06:00
|
|
|
default "pic32mz" if ARCH_CHIP_PIC32MZ
|
2012-04-17 13:48:39 +00:00
|
|
|
|
2012-04-17 22:54:31 +00:00
|
|
|
source arch/mips/src/common/Kconfig
|
|
|
|
source arch/mips/src/mips32/Kconfig
|
|
|
|
source arch/mips/src/pic32mx/Kconfig
|
2015-02-22 10:53:24 -06:00
|
|
|
source arch/mips/src/pic32mz/Kconfig
|
2012-04-17 13:48:39 +00:00
|
|
|
|
|
|
|
endif
|