xref: /openbmc/linux/arch/mips/ralink/Kconfig (revision 97da55fc)
1if RALINK
2
3choice
4	prompt "Ralink SoC selection"
5	default SOC_RT305X
6	help
7	  Select Ralink MIPS SoC type.
8
9	config SOC_RT305X
10		bool "RT305x"
11		select USB_ARCH_HAS_HCD
12		select USB_ARCH_HAS_OHCI
13		select USB_ARCH_HAS_EHCI
14
15endchoice
16
17choice
18	prompt "Devicetree selection"
19	default DTB_RT_NONE
20	help
21	  Select the devicetree.
22
23	config DTB_RT_NONE
24		bool "None"
25
26	config DTB_RT305X_EVAL
27		bool "RT305x eval kit"
28		depends on SOC_RT305X
29
30endchoice
31
32endif
33