rk3399_cru.h revision 1.1 1 1.1 jmcneill /* $NetBSD: rk3399_cru.h,v 1.1 2018/08/12 16:48:05 jmcneill Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 2018 Jared McNeill <jmcneill (at) invisible.ca>
5 1.1 jmcneill * All rights reserved.
6 1.1 jmcneill *
7 1.1 jmcneill * Redistribution and use in source and binary forms, with or without
8 1.1 jmcneill * modification, are permitted provided that the following conditions
9 1.1 jmcneill * are met:
10 1.1 jmcneill * 1. Redistributions of source code must retain the above copyright
11 1.1 jmcneill * notice, this list of conditions and the following disclaimer.
12 1.1 jmcneill * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jmcneill * notice, this list of conditions and the following disclaimer in the
14 1.1 jmcneill * documentation and/or other materials provided with the distribution.
15 1.1 jmcneill *
16 1.1 jmcneill * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 jmcneill * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 jmcneill * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 jmcneill * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 jmcneill * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 1.1 jmcneill * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 1.1 jmcneill * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 1.1 jmcneill * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 1.1 jmcneill * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 jmcneill * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 jmcneill * SUCH DAMAGE.
27 1.1 jmcneill */
28 1.1 jmcneill
29 1.1 jmcneill #ifndef _RK3399_CRU_H
30 1.1 jmcneill #define _RK3399_CRU_H
31 1.1 jmcneill
32 1.1 jmcneill /*
33 1.1 jmcneill * Clocks
34 1.1 jmcneill */
35 1.1 jmcneill
36 1.1 jmcneill #define RK3399_PLL_APLLL 1
37 1.1 jmcneill #define RK3399_PLL_APLLB 2
38 1.1 jmcneill #define RK3399_PLL_DPLL 3
39 1.1 jmcneill #define RK3399_PLL_CPLL 4
40 1.1 jmcneill #define RK3399_PLL_GPLL 5
41 1.1 jmcneill #define RK3399_PLL_NPLL 6
42 1.1 jmcneill #define RK3399_PLL_VPLL 7
43 1.1 jmcneill #define RK3399_ARMCLKL 8
44 1.1 jmcneill #define RK3399_ARMCLKB 9
45 1.1 jmcneill #define RK3399_SCLK_I2C1 65
46 1.1 jmcneill #define RK3399_SCLK_I2C2 66
47 1.1 jmcneill #define RK3399_SCLK_I2C3 67
48 1.1 jmcneill #define RK3399_SCLK_I2C5 68
49 1.1 jmcneill #define RK3399_SCLK_I2C6 69
50 1.1 jmcneill #define RK3399_SCLK_I2C7 70
51 1.1 jmcneill #define RK3399_SCLK_SPI0 71
52 1.1 jmcneill #define RK3399_SCLK_SPI1 72
53 1.1 jmcneill #define RK3399_SCLK_SPI2 73
54 1.1 jmcneill #define RK3399_SCLK_SPI4 74
55 1.1 jmcneill #define RK3399_SCLK_SPI5 75
56 1.1 jmcneill #define RK3399_SCLK_SDMMC 76
57 1.1 jmcneill #define RK3399_SCLK_SDIO 77
58 1.1 jmcneill #define RK3399_SCLK_EMMC 78
59 1.1 jmcneill #define RK3399_SCLK_TSADC 79
60 1.1 jmcneill #define RK3399_SCLK_SARADC 80
61 1.1 jmcneill #define RK3399_SCLK_UART0 81
62 1.1 jmcneill #define RK3399_SCLK_UART1 82
63 1.1 jmcneill #define RK3399_SCLK_UART2 83
64 1.1 jmcneill #define RK3399_SCLK_UART3 84
65 1.1 jmcneill #define RK3399_SCLK_SPDIF_8CH 85
66 1.1 jmcneill #define RK3399_SCLK_I2S0_8CH 86
67 1.1 jmcneill #define RK3399_SCLK_I2S1_8CH 87
68 1.1 jmcneill #define RK3399_SCLK_I2S2_8CH 88
69 1.1 jmcneill #define RK3399_SCLK_I2S_8CH_OUT 89
70 1.1 jmcneill #define RK3399_SCLK_TIMER00 90
71 1.1 jmcneill #define RK3399_SCLK_TIMER01 91
72 1.1 jmcneill #define RK3399_SCLK_TIMER02 92
73 1.1 jmcneill #define RK3399_SCLK_TIMER03 93
74 1.1 jmcneill #define RK3399_SCLK_TIMER04 94
75 1.1 jmcneill #define RK3399_SCLK_TIMER05 95
76 1.1 jmcneill #define RK3399_SCLK_TIMER06 96
77 1.1 jmcneill #define RK3399_SCLK_TIMER07 97
78 1.1 jmcneill #define RK3399_SCLK_TIMER08 98
79 1.1 jmcneill #define RK3399_SCLK_TIMER09 99
80 1.1 jmcneill #define RK3399_SCLK_TIMER10 100
81 1.1 jmcneill #define RK3399_SCLK_TIMER11 101
82 1.1 jmcneill #define RK3399_SCLK_MACREF 102
83 1.1 jmcneill #define RK3399_SCLK_MAC_RX 103
84 1.1 jmcneill #define RK3399_SCLK_MAC_TX 104
85 1.1 jmcneill #define RK3399_SCLK_MAC 105
86 1.1 jmcneill #define RK3399_SCLK_MACREF_OUT 106
87 1.1 jmcneill #define RK3399_SCLK_VOP0_PWM 107
88 1.1 jmcneill #define RK3399_SCLK_VOP1_PWM 108
89 1.1 jmcneill #define RK3399_SCLK_RGA_CORE 109
90 1.1 jmcneill #define RK3399_SCLK_ISP0 110
91 1.1 jmcneill #define RK3399_SCLK_ISP1 111
92 1.1 jmcneill #define RK3399_SCLK_HDMI_CEC 112
93 1.1 jmcneill #define RK3399_SCLK_HDMI_SFR 113
94 1.1 jmcneill #define RK3399_SCLK_DP_CORE 114
95 1.1 jmcneill #define RK3399_SCLK_PVTM_CORE_L 115
96 1.1 jmcneill #define RK3399_SCLK_PVTM_CORE_B 116
97 1.1 jmcneill #define RK3399_SCLK_PVTM_GPU 117
98 1.1 jmcneill #define RK3399_SCLK_PVTM_DDR 118
99 1.1 jmcneill #define RK3399_SCLK_MIPIDPHY_REF 119
100 1.1 jmcneill #define RK3399_SCLK_MIPIDPHY_CFG 120
101 1.1 jmcneill #define RK3399_SCLK_HSICPHY 121
102 1.1 jmcneill #define RK3399_SCLK_USBPHY480M 122
103 1.1 jmcneill #define RK3399_SCLK_USB2PHY0_REF 123
104 1.1 jmcneill #define RK3399_SCLK_USB2PHY1_REF 124
105 1.1 jmcneill #define RK3399_SCLK_UPHY0_TCPDPHY_REF 125
106 1.1 jmcneill #define RK3399_SCLK_UPHY0_TCPDCORE 126
107 1.1 jmcneill #define RK3399_SCLK_UPHY1_TCPDPHY_REF 127
108 1.1 jmcneill #define RK3399_SCLK_UPHY1_TCPDCORE 128
109 1.1 jmcneill #define RK3399_SCLK_USB3OTG0_REF 129
110 1.1 jmcneill #define RK3399_SCLK_USB3OTG1_REF 130
111 1.1 jmcneill #define RK3399_SCLK_USB3OTG0_SUSPEND 131
112 1.1 jmcneill #define RK3399_SCLK_USB3OTG1_SUSPEND 132
113 1.1 jmcneill #define RK3399_SCLK_CRYPTO0 133
114 1.1 jmcneill #define RK3399_SCLK_CRYPTO1 134
115 1.1 jmcneill #define RK3399_SCLK_CCI_TRACE 135
116 1.1 jmcneill #define RK3399_SCLK_CS 136
117 1.1 jmcneill #define RK3399_SCLK_CIF_OUT 137
118 1.1 jmcneill #define RK3399_SCLK_PCIEPHY_REF 138
119 1.1 jmcneill #define RK3399_SCLK_PCIE_CORE 139
120 1.1 jmcneill #define RK3399_SCLK_M0_PERILP 140
121 1.1 jmcneill #define RK3399_SCLK_M0_PERILP_DEC 141
122 1.1 jmcneill #define RK3399_SCLK_CM0S 142
123 1.1 jmcneill #define RK3399_SCLK_DBG_NOC 143
124 1.1 jmcneill #define RK3399_SCLK_DBG_PD_CORE_B 144
125 1.1 jmcneill #define RK3399_SCLK_DBG_PD_CORE_L 145
126 1.1 jmcneill #define RK3399_SCLK_DFIMON0_TIMER 146
127 1.1 jmcneill #define RK3399_SCLK_DFIMON1_TIMER 147
128 1.1 jmcneill #define RK3399_SCLK_INTMEM0 148
129 1.1 jmcneill #define RK3399_SCLK_INTMEM1 149
130 1.1 jmcneill #define RK3399_SCLK_INTMEM2 150
131 1.1 jmcneill #define RK3399_SCLK_INTMEM3 151
132 1.1 jmcneill #define RK3399_SCLK_INTMEM4 152
133 1.1 jmcneill #define RK3399_SCLK_INTMEM5 153
134 1.1 jmcneill #define RK3399_SCLK_SDMMC_DRV 154
135 1.1 jmcneill #define RK3399_SCLK_SDMMC_SAMPLE 155
136 1.1 jmcneill #define RK3399_SCLK_SDIO_DRV 156
137 1.1 jmcneill #define RK3399_SCLK_SDIO_SAMPLE 157
138 1.1 jmcneill #define RK3399_SCLK_VDU_CORE 158
139 1.1 jmcneill #define RK3399_SCLK_VDU_CA 159
140 1.1 jmcneill #define RK3399_SCLK_PCIE_PM 160
141 1.1 jmcneill #define RK3399_SCLK_SPDIF_REC_DPTX 161
142 1.1 jmcneill #define RK3399_SCLK_DPHY_PLL 162
143 1.1 jmcneill #define RK3399_SCLK_DPHY_TX0_CFG 163
144 1.1 jmcneill #define RK3399_SCLK_DPHY_TX1RX1_CFG 164
145 1.1 jmcneill #define RK3399_SCLK_DPHY_RX0_CFG 165
146 1.1 jmcneill #define RK3399_SCLK_RMII_SRC 166
147 1.1 jmcneill #define RK3399_SCLK_PCIEPHY_REF100M 167
148 1.1 jmcneill #define RK3399_SCLK_DDRC 168
149 1.1 jmcneill #define RK3399_SCLK_TESTCLKOUT1 169
150 1.1 jmcneill #define RK3399_SCLK_TESTCLKOUT2 170
151 1.1 jmcneill #define RK3399_DCLK_VOP0 180
152 1.1 jmcneill #define RK3399_DCLK_VOP1 181
153 1.1 jmcneill #define RK3399_DCLK_VOP0_DIV 182
154 1.1 jmcneill #define RK3399_DCLK_VOP1_DIV 183
155 1.1 jmcneill #define RK3399_DCLK_M0_PERILP 184
156 1.1 jmcneill #define RK3399_DCLK_VOP0_FRAC 185
157 1.1 jmcneill #define RK3399_DCLK_VOP1_FRAC 186
158 1.1 jmcneill #define RK3399_FCLK_CM0S 190
159 1.1 jmcneill #define RK3399_ACLK_PERIHP 192
160 1.1 jmcneill #define RK3399_ACLK_PERIHP_NOC 193
161 1.1 jmcneill #define RK3399_ACLK_PERILP0 194
162 1.1 jmcneill #define RK3399_ACLK_PERILP0_NOC 195
163 1.1 jmcneill #define RK3399_ACLK_PERF_PCIE 196
164 1.1 jmcneill #define RK3399_ACLK_PCIE 197
165 1.1 jmcneill #define RK3399_ACLK_INTMEM 198
166 1.1 jmcneill #define RK3399_ACLK_TZMA 199
167 1.1 jmcneill #define RK3399_ACLK_DCF 200
168 1.1 jmcneill #define RK3399_ACLK_CCI 201
169 1.1 jmcneill #define RK3399_ACLK_CCI_NOC0 202
170 1.1 jmcneill #define RK3399_ACLK_CCI_NOC1 203
171 1.1 jmcneill #define RK3399_ACLK_CCI_GRF 204
172 1.1 jmcneill #define RK3399_ACLK_CENTER 205
173 1.1 jmcneill #define RK3399_ACLK_CENTER_MAIN_NOC 206
174 1.1 jmcneill #define RK3399_ACLK_CENTER_PERI_NOC 207
175 1.1 jmcneill #define RK3399_ACLK_GPU 208
176 1.1 jmcneill #define RK3399_ACLK_PERF_GPU 209
177 1.1 jmcneill #define RK3399_ACLK_GPU_GRF 210
178 1.1 jmcneill #define RK3399_ACLK_DMAC0_PERILP 211
179 1.1 jmcneill #define RK3399_ACLK_DMAC1_PERILP 212
180 1.1 jmcneill #define RK3399_ACLK_GMAC 213
181 1.1 jmcneill #define RK3399_ACLK_GMAC_NOC 214
182 1.1 jmcneill #define RK3399_ACLK_PERF_GMAC 215
183 1.1 jmcneill #define RK3399_ACLK_VOP0_NOC 216
184 1.1 jmcneill #define RK3399_ACLK_VOP0 217
185 1.1 jmcneill #define RK3399_ACLK_VOP1_NOC 218
186 1.1 jmcneill #define RK3399_ACLK_VOP1 219
187 1.1 jmcneill #define RK3399_ACLK_RGA 220
188 1.1 jmcneill #define RK3399_ACLK_RGA_NOC 221
189 1.1 jmcneill #define RK3399_ACLK_HDCP 222
190 1.1 jmcneill #define RK3399_ACLK_HDCP_NOC 223
191 1.1 jmcneill #define RK3399_ACLK_HDCP22 224
192 1.1 jmcneill #define RK3399_ACLK_IEP 225
193 1.1 jmcneill #define RK3399_ACLK_IEP_NOC 226
194 1.1 jmcneill #define RK3399_ACLK_VIO 227
195 1.1 jmcneill #define RK3399_ACLK_VIO_NOC 228
196 1.1 jmcneill #define RK3399_ACLK_ISP0 229
197 1.1 jmcneill #define RK3399_ACLK_ISP1 230
198 1.1 jmcneill #define RK3399_ACLK_ISP0_NOC 231
199 1.1 jmcneill #define RK3399_ACLK_ISP1_NOC 232
200 1.1 jmcneill #define RK3399_ACLK_ISP0_WRAPPER 233
201 1.1 jmcneill #define RK3399_ACLK_ISP1_WRAPPER 234
202 1.1 jmcneill #define RK3399_ACLK_VCODEC 235
203 1.1 jmcneill #define RK3399_ACLK_VCODEC_NOC 236
204 1.1 jmcneill #define RK3399_ACLK_VDU 237
205 1.1 jmcneill #define RK3399_ACLK_VDU_NOC 238
206 1.1 jmcneill #define RK3399_ACLK_PERI 239
207 1.1 jmcneill #define RK3399_ACLK_EMMC 240
208 1.1 jmcneill #define RK3399_ACLK_EMMC_CORE 241
209 1.1 jmcneill #define RK3399_ACLK_EMMC_NOC 242
210 1.1 jmcneill #define RK3399_ACLK_EMMC_GRF 243
211 1.1 jmcneill #define RK3399_ACLK_USB3 244
212 1.1 jmcneill #define RK3399_ACLK_USB3_NOC 245
213 1.1 jmcneill #define RK3399_ACLK_USB3OTG0 246
214 1.1 jmcneill #define RK3399_ACLK_USB3OTG1 247
215 1.1 jmcneill #define RK3399_ACLK_USB3_RKSOC_AXI_PERF 248
216 1.1 jmcneill #define RK3399_ACLK_USB3_GRF 249
217 1.1 jmcneill #define RK3399_ACLK_GIC 250
218 1.1 jmcneill #define RK3399_ACLK_GIC_NOC 251
219 1.1 jmcneill #define RK3399_ACLK_GIC_ADB400_CORE_L_2_GIC 252
220 1.1 jmcneill #define RK3399_ACLK_GIC_ADB400_CORE_B_2_GIC 253
221 1.1 jmcneill #define RK3399_ACLK_GIC_ADB400_GIC_2_CORE_L 254
222 1.1 jmcneill #define RK3399_ACLK_GIC_ADB400_GIC_2_CORE_B 255
223 1.1 jmcneill #define RK3399_ACLK_CORE_ADB400_CORE_L_2_CCI500 256
224 1.1 jmcneill #define RK3399_ACLK_CORE_ADB400_CORE_B_2_CCI500 257
225 1.1 jmcneill #define RK3399_ACLK_ADB400M_PD_CORE_L 258
226 1.1 jmcneill #define RK3399_ACLK_ADB400M_PD_CORE_B 259
227 1.1 jmcneill #define RK3399_ACLK_PERF_CORE_L 260
228 1.1 jmcneill #define RK3399_ACLK_PERF_CORE_B 261
229 1.1 jmcneill #define RK3399_ACLK_GIC_PRE 262
230 1.1 jmcneill #define RK3399_ACLK_VOP0_PRE 263
231 1.1 jmcneill #define RK3399_ACLK_VOP1_PRE 264
232 1.1 jmcneill #define RK3399_PCLK_PERIHP 320
233 1.1 jmcneill #define RK3399_PCLK_PERIHP_NOC 321
234 1.1 jmcneill #define RK3399_PCLK_PERILP0 322
235 1.1 jmcneill #define RK3399_PCLK_PERILP1 323
236 1.1 jmcneill #define RK3399_PCLK_PERILP1_NOC 324
237 1.1 jmcneill #define RK3399_PCLK_PERILP_SGRF 325
238 1.1 jmcneill #define RK3399_PCLK_PERIHP_GRF 326
239 1.1 jmcneill #define RK3399_PCLK_PCIE 327
240 1.1 jmcneill #define RK3399_PCLK_SGRF 328
241 1.1 jmcneill #define RK3399_PCLK_INTR_ARB 329
242 1.1 jmcneill #define RK3399_PCLK_CENTER_MAIN_NOC 330
243 1.1 jmcneill #define RK3399_PCLK_CIC 331
244 1.1 jmcneill #define RK3399_PCLK_COREDBG_B 332
245 1.1 jmcneill #define RK3399_PCLK_COREDBG_L 333
246 1.1 jmcneill #define RK3399_PCLK_DBG_CXCS_PD_CORE_B 334
247 1.1 jmcneill #define RK3399_PCLK_DCF 335
248 1.1 jmcneill #define RK3399_PCLK_GPIO2 336
249 1.1 jmcneill #define RK3399_PCLK_GPIO3 337
250 1.1 jmcneill #define RK3399_PCLK_GPIO4 338
251 1.1 jmcneill #define RK3399_PCLK_GRF 339
252 1.1 jmcneill #define RK3399_PCLK_HSICPHY 340
253 1.1 jmcneill #define RK3399_PCLK_I2C1 341
254 1.1 jmcneill #define RK3399_PCLK_I2C2 342
255 1.1 jmcneill #define RK3399_PCLK_I2C3 343
256 1.1 jmcneill #define RK3399_PCLK_I2C5 344
257 1.1 jmcneill #define RK3399_PCLK_I2C6 345
258 1.1 jmcneill #define RK3399_PCLK_I2C7 346
259 1.1 jmcneill #define RK3399_PCLK_SPI0 347
260 1.1 jmcneill #define RK3399_PCLK_SPI1 348
261 1.1 jmcneill #define RK3399_PCLK_SPI2 349
262 1.1 jmcneill #define RK3399_PCLK_SPI4 350
263 1.1 jmcneill #define RK3399_PCLK_SPI5 351
264 1.1 jmcneill #define RK3399_PCLK_UART0 352
265 1.1 jmcneill #define RK3399_PCLK_UART1 353
266 1.1 jmcneill #define RK3399_PCLK_UART2 354
267 1.1 jmcneill #define RK3399_PCLK_UART3 355
268 1.1 jmcneill #define RK3399_PCLK_TSADC 356
269 1.1 jmcneill #define RK3399_PCLK_SARADC 357
270 1.1 jmcneill #define RK3399_PCLK_GMAC 358
271 1.1 jmcneill #define RK3399_PCLK_GMAC_NOC 359
272 1.1 jmcneill #define RK3399_PCLK_TIMER0 360
273 1.1 jmcneill #define RK3399_PCLK_TIMER1 361
274 1.1 jmcneill #define RK3399_PCLK_EDP 362
275 1.1 jmcneill #define RK3399_PCLK_EDP_NOC 363
276 1.1 jmcneill #define RK3399_PCLK_EDP_CTRL 364
277 1.1 jmcneill #define RK3399_PCLK_VIO 365
278 1.1 jmcneill #define RK3399_PCLK_VIO_NOC 366
279 1.1 jmcneill #define RK3399_PCLK_VIO_GRF 367
280 1.1 jmcneill #define RK3399_PCLK_MIPI_DSI0 368
281 1.1 jmcneill #define RK3399_PCLK_MIPI_DSI1 369
282 1.1 jmcneill #define RK3399_PCLK_HDCP 370
283 1.1 jmcneill #define RK3399_PCLK_HDCP_NOC 371
284 1.1 jmcneill #define RK3399_PCLK_HDMI_CTRL 372
285 1.1 jmcneill #define RK3399_PCLK_DP_CTRL 373
286 1.1 jmcneill #define RK3399_PCLK_HDCP22 374
287 1.1 jmcneill #define RK3399_PCLK_GASKET 375
288 1.1 jmcneill #define RK3399_PCLK_DDR 376
289 1.1 jmcneill #define RK3399_PCLK_DDR_MON 377
290 1.1 jmcneill #define RK3399_PCLK_DDR_SGRF 378
291 1.1 jmcneill #define RK3399_PCLK_ISP1_WRAPPER 379
292 1.1 jmcneill #define RK3399_PCLK_WDT 380
293 1.1 jmcneill #define RK3399_PCLK_EFUSE1024NS 381
294 1.1 jmcneill #define RK3399_PCLK_EFUSE1024S 382
295 1.1 jmcneill #define RK3399_PCLK_PMU_INTR_ARB 383
296 1.1 jmcneill #define RK3399_PCLK_MAILBOX0 384
297 1.1 jmcneill #define RK3399_PCLK_USBPHY_MUX_G 385
298 1.1 jmcneill #define RK3399_PCLK_UPHY0_TCPHY_G 386
299 1.1 jmcneill #define RK3399_PCLK_UPHY0_TCPD_G 387
300 1.1 jmcneill #define RK3399_PCLK_UPHY1_TCPHY_G 388
301 1.1 jmcneill #define RK3399_PCLK_UPHY1_TCPD_G 389
302 1.1 jmcneill #define RK3399_PCLK_ALIVE 390
303 1.1 jmcneill #define RK3399_HCLK_PERIHP 448
304 1.1 jmcneill #define RK3399_HCLK_PERILP0 449
305 1.1 jmcneill #define RK3399_HCLK_PERILP1 450
306 1.1 jmcneill #define RK3399_HCLK_PERILP0_NOC 451
307 1.1 jmcneill #define RK3399_HCLK_PERILP1_NOC 452
308 1.1 jmcneill #define RK3399_HCLK_M0_PERILP 453
309 1.1 jmcneill #define RK3399_HCLK_M0_PERILP_NOC 454
310 1.1 jmcneill #define RK3399_HCLK_AHB1TOM 455
311 1.1 jmcneill #define RK3399_HCLK_HOST0 456
312 1.1 jmcneill #define RK3399_HCLK_HOST0_ARB 457
313 1.1 jmcneill #define RK3399_HCLK_HOST1 458
314 1.1 jmcneill #define RK3399_HCLK_HOST1_ARB 459
315 1.1 jmcneill #define RK3399_HCLK_HSIC 460
316 1.1 jmcneill #define RK3399_HCLK_SD 461
317 1.1 jmcneill #define RK3399_HCLK_SDMMC 462
318 1.1 jmcneill #define RK3399_HCLK_SDMMC_NOC 463
319 1.1 jmcneill #define RK3399_HCLK_M_CRYPTO0 464
320 1.1 jmcneill #define RK3399_HCLK_M_CRYPTO1 465
321 1.1 jmcneill #define RK3399_HCLK_S_CRYPTO0 466
322 1.1 jmcneill #define RK3399_HCLK_S_CRYPTO1 467
323 1.1 jmcneill #define RK3399_HCLK_I2S0_8CH 468
324 1.1 jmcneill #define RK3399_HCLK_I2S1_8CH 469
325 1.1 jmcneill #define RK3399_HCLK_I2S2_8CH 470
326 1.1 jmcneill #define RK3399_HCLK_SPDIF 471
327 1.1 jmcneill #define RK3399_HCLK_VOP0_NOC 472
328 1.1 jmcneill #define RK3399_HCLK_VOP0 473
329 1.1 jmcneill #define RK3399_HCLK_VOP1_NOC 474
330 1.1 jmcneill #define RK3399_HCLK_VOP1 475
331 1.1 jmcneill #define RK3399_HCLK_ROM 476
332 1.1 jmcneill #define RK3399_HCLK_IEP 477
333 1.1 jmcneill #define RK3399_HCLK_IEP_NOC 478
334 1.1 jmcneill #define RK3399_HCLK_ISP0 479
335 1.1 jmcneill #define RK3399_HCLK_ISP1 480
336 1.1 jmcneill #define RK3399_HCLK_ISP0_NOC 481
337 1.1 jmcneill #define RK3399_HCLK_ISP1_NOC 482
338 1.1 jmcneill #define RK3399_HCLK_ISP0_WRAPPER 483
339 1.1 jmcneill #define RK3399_HCLK_ISP1_WRAPPER 484
340 1.1 jmcneill #define RK3399_HCLK_RGA 485
341 1.1 jmcneill #define RK3399_HCLK_RGA_NOC 486
342 1.1 jmcneill #define RK3399_HCLK_HDCP 487
343 1.1 jmcneill #define RK3399_HCLK_HDCP_NOC 488
344 1.1 jmcneill #define RK3399_HCLK_HDCP22 489
345 1.1 jmcneill #define RK3399_HCLK_VCODEC 490
346 1.1 jmcneill #define RK3399_HCLK_VCODEC_NOC 491
347 1.1 jmcneill #define RK3399_HCLK_VDU 492
348 1.1 jmcneill #define RK3399_HCLK_VDU_NOC 493
349 1.1 jmcneill #define RK3399_HCLK_SDIO 494
350 1.1 jmcneill #define RK3399_HCLK_SDIO_NOC 495
351 1.1 jmcneill #define RK3399_HCLK_SDIOAUDIO_NOC 496
352 1.1 jmcneill
353 1.1 jmcneill #endif /* !_RK3399_CRU_H */
354