2012-04-06 15:49:35 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-06 16:45:52 +00:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
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
|
|
|
|
select ARCH_IRQPRIO
|
2013-01-14 22:06:19 +00:00
|
|
|
select ARCH_VECNOTIRQ
|
|
|
|
select ARCH_HAVE_RAMFUNCS
|
2012-04-17 13:48:39 +00:00
|
|
|
---help---
|
|
|
|
Microchip PIC32MX320F032H (MIPS32)
|
|
|
|
|
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
|
|
|
|
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
|
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
|
2012-04-17 13:48:39 +00:00
|
|
|
|
|
|
|
endif
|