xref: /openbmc/linux/arch/mips/ralink/Kconfig (revision 2b9dbb15)
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
19	config SOC_RT305X
20		bool "RT305x"
21		select USB_ARCH_HAS_HCD
22		select USB_ARCH_HAS_OHCI
23		select USB_ARCH_HAS_EHCI
24
25	config SOC_RT3883
26		bool "RT3883"
27		select USB_ARCH_HAS_OHCI
28		select USB_ARCH_HAS_EHCI
29
30	config SOC_MT7620
31		bool "MT7620"
32		select USB_ARCH_HAS_OHCI
33		select USB_ARCH_HAS_EHCI
34
35endchoice
36
37choice
38	prompt "Devicetree selection"
39	default DTB_RT_NONE
40	help
41	  Select the devicetree.
42
43	config DTB_RT_NONE
44		bool "None"
45
46	config DTB_RT2880_EVAL
47		bool "RT2880 eval kit"
48		depends on SOC_RT288X
49
50	config DTB_RT305X_EVAL
51		bool "RT305x eval kit"
52		depends on SOC_RT305X
53
54	config DTB_RT3883_EVAL
55		bool "RT3883 eval kit"
56		depends on SOC_RT3883
57
58	config DTB_MT7620A_EVAL
59		bool "MT7620A eval kit"
60		depends on SOC_MT7620
61
62endchoice
63
64endif
65