if ARCH_MOZART

menu "MOZART Options"

#config ARCH_BACH
#	bool "Support Bach platforms"
#	help
#	  Include support for the Vivotek Bach platforms.

# ----------------------------------------------------------
comment "clock/oscillator"

config SYS_CLK
    int "System (AHB) clock"
    default "20000000"
    help
        Set system clock in Hz.


menu "UART Options"
config UART_CLK
    int "UART clock"
    default "18432000"
    help
        Set External UART clock in Hz.

config UART_BAUDRATE_VALUE
    int "UART baudrate value setting"
    default "38400"
	
choice
    prompt "UART Console Port number"
    default UART_PORT_NUM_2

config UART_PORT_NUM_0
        bool "Port#0"

config UART_PORT_NUM_1
        bool "Port#1"

config UART_PORT_NUM_2
        bool "Port#2"

config UART_PORT_NUM_3
        bool "Port#3"

endchoice
endmenu


# ----------------------------------------------------------
comment "timer"

	choice
    		prompt "System timer"
    		default MOZART_TMR0
    		config MOZART_TMR0
        	bool "timer 0"
    		config MOZART_TMR1
        	bool "timer 1"
    		config MOZART_TMR2
        	bool "timer 2"
    		config MOZART_TMR3
        	bool "timer 3"

	endchoice
# ----------------------------------------------------------
comment "gpio/agpo"

config MOZART_GPIO
	tristate "GPIOC"
	depends on GENERIC_GPIO
	help
		This is Vatics GPIOC driver

# ----------------------------------------------------------

config MOZART_AGPO
	tristate "AGPOC"
	depends on MOZART_GPIO
	depends on GENERIC_GPIO
	help
		This is Vatics AGPOC driver

# ----------------------------------------------------------
endmenu

endif
