Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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 select HW_HAS_PCI
25
26 config SOC_RT305X
27 bool "RT305x"
28 select USB_ARCH_HAS_HCD
29
30 config SOC_RT3883
31 bool "RT3883"
32 select HW_HAS_PCI
33
34 config SOC_MT7620
35 bool "MT7620/8"
36
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
51 select BUILTIN_DTB
52
53 config DTB_RT305X_EVAL
54 bool "RT305x eval kit"
55 depends on SOC_RT305X
56 select BUILTIN_DTB
57
58 config DTB_RT3883_EVAL
59 bool "RT3883 eval kit"
60 depends on SOC_RT3883
61 select BUILTIN_DTB
62
63 config DTB_MT7620A_EVAL
64 bool "MT7620A eval kit"
65 depends on SOC_MT7620
66 select BUILTIN_DTB
67
68endchoice
69
70endif