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