xref: /openbmc/linux/arch/mips/ralink/Kconfig (revision 94c7b6fc)
1if RALINK
2
3config CLKEVT_RT3352
4	bool
5	depends on SOC_RT305X || SOC_MT7620
6	default y
7	select CLKSRC_OF
8	select CLKSRC_MMIO
9
10choice
11	prompt "Ralink SoC selection"
12	default SOC_RT305X
13	help
14	  Select Ralink MIPS SoC type.
15
16	config SOC_RT288X
17		bool "RT288x"
18		select MIPS_L1_CACHE_SHIFT_4
19
20	config SOC_RT305X
21		bool "RT305x"
22		select USB_ARCH_HAS_HCD
23
24	config SOC_RT3883
25		bool "RT3883"
26		select HW_HAS_PCI
27
28	config SOC_MT7620
29		bool "MT7620"
30
31endchoice
32
33choice
34	prompt "Devicetree selection"
35	default DTB_RT_NONE
36	help
37	  Select the devicetree.
38
39	config DTB_RT_NONE
40		bool "None"
41
42	config DTB_RT2880_EVAL
43		bool "RT2880 eval kit"
44		depends on SOC_RT288X
45
46	config DTB_RT305X_EVAL
47		bool "RT305x eval kit"
48		depends on SOC_RT305X
49
50	config DTB_RT3883_EVAL
51		bool "RT3883 eval kit"
52		depends on SOC_RT3883
53
54	config DTB_MT7620A_EVAL
55		bool "MT7620A eval kit"
56		depends on SOC_MT7620
57
58endchoice
59
60endif
61