blob: e9bc8c96174e227a8d9cf730bcc4bfb0ff0fb1cf [file] [log] [blame]
John Newlinb744f442016-06-21 10:48:09 -07001if 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
Petri Gynthera37a38b2016-06-21 18:00:07 -070010config RALINK_ILL_ACC
11 bool
12 depends on SOC_RT305X
13 default y
14
John Newlinb744f442016-06-21 10:48:09 -070015choice
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
Petri Gynthera37a38b2016-06-21 18:00:07 -070024 select HW_HAS_PCI
John Newlinb744f442016-06-21 10:48:09 -070025
26 config SOC_RT305X
27 bool "RT305x"
28 select USB_ARCH_HAS_HCD
John Newlinb744f442016-06-21 10:48:09 -070029
30 config SOC_RT3883
31 bool "RT3883"
John Newlinb744f442016-06-21 10:48:09 -070032 select HW_HAS_PCI
33
34 config SOC_MT7620
Petri Gynthera37a38b2016-06-21 18:00:07 -070035 bool "MT7620/8"
John Newlinb744f442016-06-21 10:48:09 -070036
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
Petri Gynthera37a38b2016-06-21 18:00:07 -070051 select BUILTIN_DTB
John Newlinb744f442016-06-21 10:48:09 -070052
53 config DTB_RT305X_EVAL
54 bool "RT305x eval kit"
55 depends on SOC_RT305X
Petri Gynthera37a38b2016-06-21 18:00:07 -070056 select BUILTIN_DTB
John Newlinb744f442016-06-21 10:48:09 -070057
58 config DTB_RT3883_EVAL
59 bool "RT3883 eval kit"
60 depends on SOC_RT3883
Petri Gynthera37a38b2016-06-21 18:00:07 -070061 select BUILTIN_DTB
John Newlinb744f442016-06-21 10:48:09 -070062
63 config DTB_MT7620A_EVAL
64 bool "MT7620A eval kit"
65 depends on SOC_MT7620
Petri Gynthera37a38b2016-06-21 18:00:07 -070066 select BUILTIN_DTB
John Newlinb744f442016-06-21 10:48:09 -070067
68endchoice
69
70endif