]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/mach-omap2/omap_hwmod_2430_data.c
Linux 2.6.37-rc1
[mirror_ubuntu-bionic-kernel.git] / arch / arm / mach-omap2 / omap_hwmod_2430_data.c
CommitLineData
02bfc030 1/*
7359154e 2 * omap_hwmod_2430_data.c - hardware modules present on the OMAP2430 chips
02bfc030 3 *
7359154e 4 * Copyright (C) 2009-2010 Nokia Corporation
02bfc030
PW
5 * Paul Walmsley
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * XXX handle crossbar/shared link difference for L3?
7359154e 12 * XXX these should be marked initdata for multi-OMAP kernels
02bfc030 13 */
ce491cf8 14#include <plat/omap_hwmod.h>
02bfc030 15#include <mach/irqs.h>
ce491cf8
TL
16#include <plat/cpu.h>
17#include <plat/dma.h>
046465b7 18#include <plat/serial.h>
02bfc030 19
43b40992
PW
20#include "omap_hwmod_common_data.h"
21
02bfc030 22#include "prm-regbits-24xx.h"
165e2161 23#include "cm-regbits-24xx.h"
02bfc030 24
7359154e
PW
25/*
26 * OMAP2430 hardware module integration data
27 *
28 * ALl of the data in this section should be autogeneratable from the
29 * TI hardware database or other technical documentation. Data that
30 * is driver-specific or driver-kernel integration-specific belongs
31 * elsewhere.
32 */
33
02bfc030 34static struct omap_hwmod omap2430_mpu_hwmod;
08072acf 35static struct omap_hwmod omap2430_iva_hwmod;
4a7cf90a 36static struct omap_hwmod omap2430_l3_main_hwmod;
02bfc030 37static struct omap_hwmod omap2430_l4_core_hwmod;
165e2161 38static struct omap_hwmod omap2430_wd_timer2_hwmod;
02bfc030
PW
39
40/* L3 -> L4_CORE interface */
4a7cf90a
KH
41static struct omap_hwmod_ocp_if omap2430_l3_main__l4_core = {
42 .master = &omap2430_l3_main_hwmod,
02bfc030
PW
43 .slave = &omap2430_l4_core_hwmod,
44 .user = OCP_USER_MPU | OCP_USER_SDMA,
45};
46
47/* MPU -> L3 interface */
4a7cf90a 48static struct omap_hwmod_ocp_if omap2430_mpu__l3_main = {
02bfc030 49 .master = &omap2430_mpu_hwmod,
4a7cf90a 50 .slave = &omap2430_l3_main_hwmod,
02bfc030
PW
51 .user = OCP_USER_MPU,
52};
53
54/* Slave interfaces on the L3 interconnect */
4a7cf90a
KH
55static struct omap_hwmod_ocp_if *omap2430_l3_main_slaves[] = {
56 &omap2430_mpu__l3_main,
02bfc030
PW
57};
58
59/* Master interfaces on the L3 interconnect */
4a7cf90a
KH
60static struct omap_hwmod_ocp_if *omap2430_l3_main_masters[] = {
61 &omap2430_l3_main__l4_core,
02bfc030
PW
62};
63
64/* L3 */
4a7cf90a 65static struct omap_hwmod omap2430_l3_main_hwmod = {
fa98347e 66 .name = "l3_main",
43b40992 67 .class = &l3_hwmod_class,
4a7cf90a
KH
68 .masters = omap2430_l3_main_masters,
69 .masters_cnt = ARRAY_SIZE(omap2430_l3_main_masters),
70 .slaves = omap2430_l3_main_slaves,
71 .slaves_cnt = ARRAY_SIZE(omap2430_l3_main_slaves),
2eb1875d
KH
72 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
73 .flags = HWMOD_NO_IDLEST,
02bfc030
PW
74};
75
76static struct omap_hwmod omap2430_l4_wkup_hwmod;
046465b7
KH
77static struct omap_hwmod omap2430_uart1_hwmod;
78static struct omap_hwmod omap2430_uart2_hwmod;
79static struct omap_hwmod omap2430_uart3_hwmod;
02bfc030
PW
80
81/* L4_CORE -> L4_WKUP interface */
82static struct omap_hwmod_ocp_if omap2430_l4_core__l4_wkup = {
83 .master = &omap2430_l4_core_hwmod,
84 .slave = &omap2430_l4_wkup_hwmod,
85 .user = OCP_USER_MPU | OCP_USER_SDMA,
86};
87
046465b7
KH
88/* L4 CORE -> UART1 interface */
89static struct omap_hwmod_addr_space omap2430_uart1_addr_space[] = {
90 {
91 .pa_start = OMAP2_UART1_BASE,
92 .pa_end = OMAP2_UART1_BASE + SZ_8K - 1,
93 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
94 },
95};
96
97static struct omap_hwmod_ocp_if omap2_l4_core__uart1 = {
98 .master = &omap2430_l4_core_hwmod,
99 .slave = &omap2430_uart1_hwmod,
100 .clk = "uart1_ick",
101 .addr = omap2430_uart1_addr_space,
102 .addr_cnt = ARRAY_SIZE(omap2430_uart1_addr_space),
103 .user = OCP_USER_MPU | OCP_USER_SDMA,
104};
105
106/* L4 CORE -> UART2 interface */
107static struct omap_hwmod_addr_space omap2430_uart2_addr_space[] = {
108 {
109 .pa_start = OMAP2_UART2_BASE,
110 .pa_end = OMAP2_UART2_BASE + SZ_1K - 1,
111 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
112 },
113};
114
115static struct omap_hwmod_ocp_if omap2_l4_core__uart2 = {
116 .master = &omap2430_l4_core_hwmod,
117 .slave = &omap2430_uart2_hwmod,
118 .clk = "uart2_ick",
119 .addr = omap2430_uart2_addr_space,
120 .addr_cnt = ARRAY_SIZE(omap2430_uart2_addr_space),
121 .user = OCP_USER_MPU | OCP_USER_SDMA,
122};
123
124/* L4 PER -> UART3 interface */
125static struct omap_hwmod_addr_space omap2430_uart3_addr_space[] = {
126 {
127 .pa_start = OMAP2_UART3_BASE,
128 .pa_end = OMAP2_UART3_BASE + SZ_1K - 1,
129 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
130 },
131};
132
133static struct omap_hwmod_ocp_if omap2_l4_core__uart3 = {
134 .master = &omap2430_l4_core_hwmod,
135 .slave = &omap2430_uart3_hwmod,
136 .clk = "uart3_ick",
137 .addr = omap2430_uart3_addr_space,
138 .addr_cnt = ARRAY_SIZE(omap2430_uart3_addr_space),
139 .user = OCP_USER_MPU | OCP_USER_SDMA,
140};
141
02bfc030
PW
142/* Slave interfaces on the L4_CORE interconnect */
143static struct omap_hwmod_ocp_if *omap2430_l4_core_slaves[] = {
4a7cf90a 144 &omap2430_l3_main__l4_core,
02bfc030
PW
145};
146
147/* Master interfaces on the L4_CORE interconnect */
148static struct omap_hwmod_ocp_if *omap2430_l4_core_masters[] = {
149 &omap2430_l4_core__l4_wkup,
150};
151
152/* L4 CORE */
153static struct omap_hwmod omap2430_l4_core_hwmod = {
fa98347e 154 .name = "l4_core",
43b40992 155 .class = &l4_hwmod_class,
02bfc030
PW
156 .masters = omap2430_l4_core_masters,
157 .masters_cnt = ARRAY_SIZE(omap2430_l4_core_masters),
158 .slaves = omap2430_l4_core_slaves,
159 .slaves_cnt = ARRAY_SIZE(omap2430_l4_core_slaves),
2eb1875d
KH
160 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
161 .flags = HWMOD_NO_IDLEST,
02bfc030
PW
162};
163
164/* Slave interfaces on the L4_WKUP interconnect */
165static struct omap_hwmod_ocp_if *omap2430_l4_wkup_slaves[] = {
166 &omap2430_l4_core__l4_wkup,
046465b7
KH
167 &omap2_l4_core__uart1,
168 &omap2_l4_core__uart2,
169 &omap2_l4_core__uart3,
02bfc030
PW
170};
171
172/* Master interfaces on the L4_WKUP interconnect */
173static struct omap_hwmod_ocp_if *omap2430_l4_wkup_masters[] = {
174};
175
176/* L4 WKUP */
177static struct omap_hwmod omap2430_l4_wkup_hwmod = {
fa98347e 178 .name = "l4_wkup",
43b40992 179 .class = &l4_hwmod_class,
02bfc030
PW
180 .masters = omap2430_l4_wkup_masters,
181 .masters_cnt = ARRAY_SIZE(omap2430_l4_wkup_masters),
182 .slaves = omap2430_l4_wkup_slaves,
183 .slaves_cnt = ARRAY_SIZE(omap2430_l4_wkup_slaves),
2eb1875d
KH
184 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
185 .flags = HWMOD_NO_IDLEST,
02bfc030
PW
186};
187
188/* Master interfaces on the MPU device */
189static struct omap_hwmod_ocp_if *omap2430_mpu_masters[] = {
4a7cf90a 190 &omap2430_mpu__l3_main,
02bfc030
PW
191};
192
193/* MPU */
194static struct omap_hwmod omap2430_mpu_hwmod = {
5c2c0296 195 .name = "mpu",
43b40992 196 .class = &mpu_hwmod_class,
50ebdac2 197 .main_clk = "mpu_ck",
02bfc030
PW
198 .masters = omap2430_mpu_masters,
199 .masters_cnt = ARRAY_SIZE(omap2430_mpu_masters),
200 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
201};
202
08072acf
PW
203/*
204 * IVA2_1 interface data
205 */
206
207/* IVA2 <- L3 interface */
208static struct omap_hwmod_ocp_if omap2430_l3__iva = {
209 .master = &omap2430_l3_main_hwmod,
210 .slave = &omap2430_iva_hwmod,
211 .clk = "dsp_fck",
212 .user = OCP_USER_MPU | OCP_USER_SDMA,
213};
214
215static struct omap_hwmod_ocp_if *omap2430_iva_masters[] = {
216 &omap2430_l3__iva,
217};
218
219/*
220 * IVA2 (IVA2)
221 */
222
223static struct omap_hwmod omap2430_iva_hwmod = {
224 .name = "iva",
225 .class = &iva_hwmod_class,
226 .masters = omap2430_iva_masters,
227 .masters_cnt = ARRAY_SIZE(omap2430_iva_masters),
228 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430)
229};
230
165e2161
VC
231/* l4_wkup -> wd_timer2 */
232static struct omap_hwmod_addr_space omap2430_wd_timer2_addrs[] = {
233 {
234 .pa_start = 0x49016000,
235 .pa_end = 0x4901607f,
236 .flags = ADDR_TYPE_RT
237 },
238};
239
240static struct omap_hwmod_ocp_if omap2430_l4_wkup__wd_timer2 = {
241 .master = &omap2430_l4_wkup_hwmod,
242 .slave = &omap2430_wd_timer2_hwmod,
243 .clk = "mpu_wdt_ick",
244 .addr = omap2430_wd_timer2_addrs,
245 .addr_cnt = ARRAY_SIZE(omap2430_wd_timer2_addrs),
246 .user = OCP_USER_MPU | OCP_USER_SDMA,
247};
248
249/*
250 * 'wd_timer' class
251 * 32-bit watchdog upward counter that generates a pulse on the reset pin on
252 * overflow condition
253 */
254
255static struct omap_hwmod_class_sysconfig omap2430_wd_timer_sysc = {
256 .rev_offs = 0x0,
257 .sysc_offs = 0x0010,
258 .syss_offs = 0x0014,
259 .sysc_flags = (SYSC_HAS_EMUFREE | SYSC_HAS_SOFTRESET |
260 SYSC_HAS_AUTOIDLE),
261 .sysc_fields = &omap_hwmod_sysc_type1,
262};
263
264static struct omap_hwmod_class omap2430_wd_timer_hwmod_class = {
265 .name = "wd_timer",
266 .sysc = &omap2430_wd_timer_sysc,
267};
268
269/* wd_timer2 */
270static struct omap_hwmod_ocp_if *omap2430_wd_timer2_slaves[] = {
271 &omap2430_l4_wkup__wd_timer2,
272};
273
274static struct omap_hwmod omap2430_wd_timer2_hwmod = {
275 .name = "wd_timer2",
276 .class = &omap2430_wd_timer_hwmod_class,
277 .main_clk = "mpu_wdt_fck",
278 .prcm = {
279 .omap2 = {
280 .prcm_reg_id = 1,
281 .module_bit = OMAP24XX_EN_MPU_WDT_SHIFT,
282 .module_offs = WKUP_MOD,
283 .idlest_reg_id = 1,
284 .idlest_idle_bit = OMAP24XX_ST_MPU_WDT_SHIFT,
285 },
286 },
287 .slaves = omap2430_wd_timer2_slaves,
288 .slaves_cnt = ARRAY_SIZE(omap2430_wd_timer2_slaves),
289 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
290};
291
046465b7
KH
292/* UART */
293
294static struct omap_hwmod_class_sysconfig uart_sysc = {
295 .rev_offs = 0x50,
296 .sysc_offs = 0x54,
297 .syss_offs = 0x58,
298 .sysc_flags = (SYSC_HAS_SIDLEMODE |
299 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
300 SYSC_HAS_AUTOIDLE),
301 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
302 .sysc_fields = &omap_hwmod_sysc_type1,
303};
304
305static struct omap_hwmod_class uart_class = {
306 .name = "uart",
307 .sysc = &uart_sysc,
308};
309
310/* UART1 */
311
312static struct omap_hwmod_irq_info uart1_mpu_irqs[] = {
313 { .irq = INT_24XX_UART1_IRQ, },
314};
315
316static struct omap_hwmod_dma_info uart1_sdma_reqs[] = {
317 { .name = "rx", .dma_req = OMAP24XX_DMA_UART1_RX, },
318 { .name = "tx", .dma_req = OMAP24XX_DMA_UART1_TX, },
319};
320
321static struct omap_hwmod_ocp_if *omap2430_uart1_slaves[] = {
322 &omap2_l4_core__uart1,
323};
324
325static struct omap_hwmod omap2430_uart1_hwmod = {
326 .name = "uart1",
327 .mpu_irqs = uart1_mpu_irqs,
328 .mpu_irqs_cnt = ARRAY_SIZE(uart1_mpu_irqs),
329 .sdma_reqs = uart1_sdma_reqs,
330 .sdma_reqs_cnt = ARRAY_SIZE(uart1_sdma_reqs),
331 .main_clk = "uart1_fck",
332 .prcm = {
333 .omap2 = {
334 .module_offs = CORE_MOD,
335 .prcm_reg_id = 1,
336 .module_bit = OMAP24XX_EN_UART1_SHIFT,
337 .idlest_reg_id = 1,
338 .idlest_idle_bit = OMAP24XX_EN_UART1_SHIFT,
339 },
340 },
341 .slaves = omap2430_uart1_slaves,
342 .slaves_cnt = ARRAY_SIZE(omap2430_uart1_slaves),
343 .class = &uart_class,
344 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
345};
346
347/* UART2 */
348
349static struct omap_hwmod_irq_info uart2_mpu_irqs[] = {
350 { .irq = INT_24XX_UART2_IRQ, },
351};
352
353static struct omap_hwmod_dma_info uart2_sdma_reqs[] = {
354 { .name = "rx", .dma_req = OMAP24XX_DMA_UART2_RX, },
355 { .name = "tx", .dma_req = OMAP24XX_DMA_UART2_TX, },
356};
357
358static struct omap_hwmod_ocp_if *omap2430_uart2_slaves[] = {
359 &omap2_l4_core__uart2,
360};
361
362static struct omap_hwmod omap2430_uart2_hwmod = {
363 .name = "uart2",
364 .mpu_irqs = uart2_mpu_irqs,
365 .mpu_irqs_cnt = ARRAY_SIZE(uart2_mpu_irqs),
366 .sdma_reqs = uart2_sdma_reqs,
367 .sdma_reqs_cnt = ARRAY_SIZE(uart2_sdma_reqs),
368 .main_clk = "uart2_fck",
369 .prcm = {
370 .omap2 = {
371 .module_offs = CORE_MOD,
372 .prcm_reg_id = 1,
373 .module_bit = OMAP24XX_EN_UART2_SHIFT,
374 .idlest_reg_id = 1,
375 .idlest_idle_bit = OMAP24XX_EN_UART2_SHIFT,
376 },
377 },
378 .slaves = omap2430_uart2_slaves,
379 .slaves_cnt = ARRAY_SIZE(omap2430_uart2_slaves),
380 .class = &uart_class,
381 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
382};
383
384/* UART3 */
385
386static struct omap_hwmod_irq_info uart3_mpu_irqs[] = {
387 { .irq = INT_24XX_UART3_IRQ, },
388};
389
390static struct omap_hwmod_dma_info uart3_sdma_reqs[] = {
391 { .name = "rx", .dma_req = OMAP24XX_DMA_UART3_RX, },
392 { .name = "tx", .dma_req = OMAP24XX_DMA_UART3_TX, },
393};
394
395static struct omap_hwmod_ocp_if *omap2430_uart3_slaves[] = {
396 &omap2_l4_core__uart3,
397};
398
399static struct omap_hwmod omap2430_uart3_hwmod = {
400 .name = "uart3",
401 .mpu_irqs = uart3_mpu_irqs,
402 .mpu_irqs_cnt = ARRAY_SIZE(uart3_mpu_irqs),
403 .sdma_reqs = uart3_sdma_reqs,
404 .sdma_reqs_cnt = ARRAY_SIZE(uart3_sdma_reqs),
405 .main_clk = "uart3_fck",
406 .prcm = {
407 .omap2 = {
408 .module_offs = CORE_MOD,
409 .prcm_reg_id = 2,
410 .module_bit = OMAP24XX_EN_UART3_SHIFT,
411 .idlest_reg_id = 2,
412 .idlest_idle_bit = OMAP24XX_EN_UART3_SHIFT,
413 },
414 },
415 .slaves = omap2430_uart3_slaves,
416 .slaves_cnt = ARRAY_SIZE(omap2430_uart3_slaves),
417 .class = &uart_class,
418 .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP2430),
419};
420
02bfc030 421static __initdata struct omap_hwmod *omap2430_hwmods[] = {
4a7cf90a 422 &omap2430_l3_main_hwmod,
02bfc030
PW
423 &omap2430_l4_core_hwmod,
424 &omap2430_l4_wkup_hwmod,
425 &omap2430_mpu_hwmod,
08072acf 426 &omap2430_iva_hwmod,
165e2161 427 &omap2430_wd_timer2_hwmod,
046465b7
KH
428 &omap2430_uart1_hwmod,
429 &omap2430_uart2_hwmod,
430 &omap2430_uart3_hwmod,
02bfc030
PW
431 NULL,
432};
433
7359154e
PW
434int __init omap2430_hwmod_init(void)
435{
436 return omap_hwmod_init(omap2430_hwmods);
437}
02bfc030
PW
438
439