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