Kconfig 1.1 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 18
config IRQ_INTC
	bool
	default y

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

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

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

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

38
	config SOC_MT7620
J
John Crispin 已提交
39
		bool "MT7620/8"
40

J
John Crispin 已提交
41 42 43 44 45 46 47 48 49 50 51
endchoice

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

	config DTB_RT_NONE
		bool "None"

52 53 54
	config DTB_RT2880_EVAL
		bool "RT2880 eval kit"
		depends on SOC_RT288X
55
		select BUILTIN_DTB
56

J
John Crispin 已提交
57 58 59
	config DTB_RT305X_EVAL
		bool "RT305x eval kit"
		depends on SOC_RT305X
60
		select BUILTIN_DTB
J
John Crispin 已提交
61

62 63 64
	config DTB_RT3883_EVAL
		bool "RT3883 eval kit"
		depends on SOC_RT3883
65
		select BUILTIN_DTB
66

67 68 69
	config DTB_MT7620A_EVAL
		bool "MT7620A eval kit"
		depends on SOC_MT7620
70
		select BUILTIN_DTB
71

J
John Crispin 已提交
72 73 74
endchoice

endif