#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

comment "C906 Configuration Options"

config C906_ENABLE_DPFPU
	bool "C906 DP_FPU Support"
	default n
	select ARCH_HAVE_FPU
	select ARCH_HAVE_DPFPU
	---help---
		Enable the RISC-V Double-Precision Floating Point Unit (DP-FPU).

menu "C906 Peripheral Support"

# These "hidden" settings determine whether a peripheral option is available
# for the selected MCU

config C906_HAVE_UART0
	bool
	default y
	select UART0_SERIALDRIVER
	select ARCH_HAVE_SERIAL_TERMIOS

# These are the peripheral selections proper

config C906_UART0
	bool "UART0"
	default y
	select ARCH_HAVE_UART0
	select ARCH_HAVE_SERIAL_TERMIOS
	select C906_UART

endmenu

menu "C906 Others"

config C906_WITH_QEMU
	bool "qemu support"
	default n

endmenu
