Kconfig 1002 字节
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

J
John Crispin 已提交
10 11 12 13 14 15
choice
	prompt "Ralink SoC selection"
	default SOC_RT305X
	help
	  Select Ralink MIPS SoC type.

16 17
	config SOC_RT288X
		bool "RT288x"
18
		select MIPS_L1_CACHE_SHIFT_4
J
John Crispin 已提交
19
		select HW_HAS_PCI
20

J
John Crispin 已提交
21 22 23 24
	config SOC_RT305X
		bool "RT305x"
		select USB_ARCH_HAS_HCD

25 26
	config SOC_RT3883
		bool "RT3883"
27
		select HW_HAS_PCI
28

29
	config SOC_MT7620
J
John Crispin 已提交
30
		bool "MT7620/8"
31

J
John Crispin 已提交
32 33 34 35 36 37 38 39 40 41 42
endchoice

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

	config DTB_RT_NONE
		bool "None"

43 44 45
	config DTB_RT2880_EVAL
		bool "RT2880 eval kit"
		depends on SOC_RT288X
46
		select BUILTIN_DTB
47

J
John Crispin 已提交
48 49 50
	config DTB_RT305X_EVAL
		bool "RT305x eval kit"
		depends on SOC_RT305X
51
		select BUILTIN_DTB
J
John Crispin 已提交
52

53 54 55
	config DTB_RT3883_EVAL
		bool "RT3883 eval kit"
		depends on SOC_RT3883
56
		select BUILTIN_DTB
57

58 59 60
	config DTB_MT7620A_EVAL
		bool "MT7620A eval kit"
		depends on SOC_MT7620
61
		select BUILTIN_DTB
62

J
John Crispin 已提交
63 64 65
endchoice

endif