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