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 33endchoice 34 35choice 36 prompt "Devicetree selection" 37 default DTB_RT_NONE 38 help 39 Select the devicetree. 40 41 config DTB_RT_NONE 42 bool "None" 43 44 config DTB_RT2880_EVAL 45 bool "RT2880 eval kit" 46 depends on SOC_RT288X 47 48 config DTB_RT305X_EVAL 49 bool "RT305x eval kit" 50 depends on SOC_RT305X 51 52 config DTB_RT3883_EVAL 53 bool "RT3883 eval kit" 54 depends on SOC_RT3883 55 56 config DTB_MT7620A_EVAL 57 bool "MT7620A eval kit" 58 depends on SOC_MT7620 59 60endchoice 61 62endif 63