mirror of
https://github.com/apache/nuttx.git
synced 2026-03-27 02:29:15 +08:00
* arch: risc-v: Remove unused typedef for irqstate_t
NOTE: irqstate_t is defined in arch/risc-v/include/types.h
* arch: risc-v: Add typedef irqstate_t for __LP64__
* arch: risc-v: Add SMP support to K210 (RV64GC) processor
* boards: maxi-bit: Update READMEs and add smp/defconfig
37 lines
659 B
Plaintext
37 lines
659 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
comment "K210 Configuration Options"
|
|
|
|
menu "K210 Peripheral Support"
|
|
|
|
# These "hidden" settings determine is a peripheral option is available for the
|
|
# selection MCU
|
|
|
|
config K210_HAVE_UART0
|
|
bool
|
|
default y
|
|
select UART0_SERIALDRIVER
|
|
select ARCH_HAVE_SERIAL_TERMIOS
|
|
|
|
# These are the peripheral selections proper
|
|
|
|
config K210_UART0
|
|
bool "UART0"
|
|
default y
|
|
select ARCH_HAVE_UART0
|
|
select ARCH_HAVE_SERIAL_TERMIOS
|
|
select K210_UART
|
|
|
|
endmenu
|
|
|
|
menu "K210 Others"
|
|
|
|
config K210_WITH_QEMU
|
|
bool "qemu support"
|
|
default n
|
|
|
|
endmenu
|