Kconfig 1.3 KB
Newer Older
J
John Crispin 已提交
1 2
if RALINK

3 4 5 6 7 8 9
config CLKEVT_RT3352
	bool
	depends on SOC_RT305X || SOC_MT7620
	default y
	select CLKSRC_OF
	select CLKSRC_MMIO

10 11 12 13 14
config RALINK_ILL_ACC
	bool
	depends on SOC_RT305X
	default y

15 16 17
config IRQ_INTC
	bool
	default y
J
John Crispin 已提交
18
	depends on !SOC_MT7621
19

J
John Crispin 已提交
20 21 22 23 24 25
choice
	prompt "Ralink SoC selection"
	default SOC_RT305X
	help
	  Select Ralink MIPS SoC type.

26 27
	config SOC_RT288X
		bool "RT288x"
28
		select MIPS_L1_CACHE_SHIFT_4
J
John Crispin 已提交
29
		select HW_HAS_PCI
30

J
John Crispin 已提交
31 32 33 34
	config SOC_RT305X
		bool "RT305x"
		select USB_ARCH_HAS_HCD

35 36
	config SOC_RT3883
		bool "RT3883"
37
		select HW_HAS_PCI
38

39
	config SOC_MT7620
J
John Crispin 已提交
40
		bool "MT7620/8"
41
		select HW_HAS_PCI
42

J
John Crispin 已提交
43 44 45 46 47 48 49 50 51 52
	config SOC_MT7621
		bool "MT7621"
		select MIPS_CPU_SCACHE
		select SYS_SUPPORTS_MULTITHREADING
		select SYS_SUPPORTS_SMP
		select SYS_SUPPORTS_MIPS_CPS
		select MIPS_GIC
		select COMMON_CLK
		select CLKSRC_MIPS_GIC
		select HW_HAS_PCI
J
John Crispin 已提交
53 54 55 56 57 58 59 60 61 62 63
endchoice

choice
	prompt "Devicetree selection"
	default DTB_RT_NONE
	help
	  Select the devicetree.

	config DTB_RT_NONE
		bool "None"

64 65 66
	config DTB_RT2880_EVAL
		bool "RT2880 eval kit"
		depends on SOC_RT288X
67
		select BUILTIN_DTB
68

J
John Crispin 已提交
69 70 71
	config DTB_RT305X_EVAL
		bool "RT305x eval kit"
		depends on SOC_RT305X
72
		select BUILTIN_DTB
J
John Crispin 已提交
73

74 75 76
	config DTB_RT3883_EVAL
		bool "RT3883 eval kit"
		depends on SOC_RT3883
77
		select BUILTIN_DTB
78

79 80 81
	config DTB_MT7620A_EVAL
		bool "MT7620A eval kit"
		depends on SOC_MT7620
82
		select BUILTIN_DTB
83

J
John Crispin 已提交
84 85 86
endchoice

endif