summaryrefslogtreecommitdiffstats
path: root/arch/mips/mach-xburst/Kconfig
blob: e3db61e8848bc8c0eba9ca66f248cb87c74a805f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
if MACH_MIPS_XBURST

config ARCH_TEXT_BASE
	hex
	default 0xa0800000

config CPU_JZ4755
	bool
	select SYS_HAS_CPU_MIPS32_R1
	select WATCHDOG
	select WATCHDOG_JZ4740

config CPU_JZ4780
	bool
	select SYS_HAS_CPU_MIPS32_R2
	select WATCHDOG
	select WATCHDOG_JZ4740

choice
	prompt "Board type"

config BOARD_RZX50
	bool "Ritmix RZX-50"
	select HAS_POWEROFF
	select CPU_JZ4755

endchoice

if DEBUG_LL
choice
	prompt "DEBUG_LL port"

config JZ47XX_DEBUG_LL_UART0
	depends on CPU_JZ4755 || CPU_JZ4780
	bool "UART0"

config JZ47XX_DEBUG_LL_UART1
	depends on CPU_JZ4755 || CPU_JZ4780
	bool "UART1"

config JZ47XX_DEBUG_LL_UART2
	depends on CPU_JZ4755 || CPU_JZ4780
	bool "UART2"

config JZ47XX_DEBUG_LL_UART3
	depends on CPU_JZ4780
	bool "UART3"

config JZ47XX_DEBUG_LL_UART4
	depends on CPU_JZ4780
	bool "UART4"

endchoice
endif # DEBUG_LL

endif