• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
10config RALINK_ILL_ACC
11	bool
12	depends on SOC_RT305X
13	default y
14
15choice
16	prompt "Ralink SoC selection"
17	default SOC_RT305X
18	help
19	  Select Ralink MIPS SoC type.
20
21	config SOC_RT288X
22		bool "RT288x"
23		select MIPS_L1_CACHE_SHIFT_4
24
25	config SOC_RT305X
26		bool "RT305x"
27		select USB_ARCH_HAS_HCD
28
29	config SOC_RT3883
30		bool "RT3883"
31		select HW_HAS_PCI
32
33	config SOC_MT7620
34		bool "MT7620"
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		select BUILTIN_DTB
51
52	config DTB_RT305X_EVAL
53		bool "RT305x eval kit"
54		depends on SOC_RT305X
55		select BUILTIN_DTB
56
57	config DTB_RT3883_EVAL
58		bool "RT3883 eval kit"
59		depends on SOC_RT3883
60		select BUILTIN_DTB
61
62	config DTB_MT7620A_EVAL
63		bool "MT7620A eval kit"
64		depends on SOC_MT7620
65		select BUILTIN_DTB
66
67endchoice
68
69endif
70