提交 212738a4 编写于 作者: P Paul Walmsley

omap_hwmod: use a terminator record with omap_hwmod_mpu_irqs arrays

Previously, struct omap_hwmod_mpu_irqs arrays were unterminated; and
users of these arrays used the ARRAY_SIZE() macro to determine the
length of the array.  However, ARRAY_SIZE() only works when the array
is in the same scope as the macro user.

So far this hasn't been a problem.  However, to reduce duplicated
data, a subsequent patch will move common data to a separate, shared
file.  When this is done, ARRAY_SIZE() will no longer be usable.

This patch removes ARRAY_SIZE() usage for struct omap_hwmod_mpu_irqs
arrays and uses a sentinel value (irq == -1) as the array terminator
instead.
Signed-off-by: NPaul Walmsley <paul@pwsan.com>
上级 ded11383
...@@ -678,6 +678,29 @@ static void _disable_optional_clocks(struct omap_hwmod *oh) ...@@ -678,6 +678,29 @@ static void _disable_optional_clocks(struct omap_hwmod *oh)
} }
} }
/**
* _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
* @oh: struct omap_hwmod *oh
*
* Count and return the number of MPU IRQs associated with the hwmod
* @oh. Used to allocate struct resource data. Returns 0 if @oh is
* NULL.
*/
static int _count_mpu_irqs(struct omap_hwmod *oh)
{
struct omap_hwmod_irq_info *ohii;
int i = 0;
if (!oh || !oh->mpu_irqs)
return 0;
do {
ohii = &oh->mpu_irqs[i++];
} while (ohii->irq != -1);
return i;
}
/** /**
* _count_ocp_if_addr_spaces - count the number of address space entries for @oh * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
* @oh: struct omap_hwmod *oh * @oh: struct omap_hwmod *oh
...@@ -1964,7 +1987,7 @@ int omap_hwmod_count_resources(struct omap_hwmod *oh) ...@@ -1964,7 +1987,7 @@ int omap_hwmod_count_resources(struct omap_hwmod *oh)
{ {
int ret, i; int ret, i;
ret = oh->mpu_irqs_cnt + oh->sdma_reqs_cnt; ret = _count_mpu_irqs(oh) + oh->sdma_reqs_cnt;
for (i = 0; i < oh->slaves_cnt; i++) for (i = 0; i < oh->slaves_cnt; i++)
ret += _count_ocp_if_addr_spaces(oh->slaves[i]); ret += _count_ocp_if_addr_spaces(oh->slaves[i]);
...@@ -1984,12 +2007,13 @@ int omap_hwmod_count_resources(struct omap_hwmod *oh) ...@@ -1984,12 +2007,13 @@ int omap_hwmod_count_resources(struct omap_hwmod *oh)
*/ */
int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res) int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
{ {
int i, j; int i, j, mpu_irqs_cnt;
int r = 0; int r = 0;
/* For each IRQ, DMA, memory area, fill in array.*/ /* For each IRQ, DMA, memory area, fill in array.*/
for (i = 0; i < oh->mpu_irqs_cnt; i++) { mpu_irqs_cnt = _count_mpu_irqs(oh);
for (i = 0; i < mpu_irqs_cnt; i++) {
(res + r)->name = (oh->mpu_irqs + i)->name; (res + r)->name = (oh->mpu_irqs + i)->name;
(res + r)->start = (oh->mpu_irqs + i)->irq; (res + r)->start = (oh->mpu_irqs + i)->irq;
(res + r)->end = (oh->mpu_irqs + i)->irq; (res + r)->end = (oh->mpu_irqs + i)->irq;
......
...@@ -296,6 +296,7 @@ static struct omap_hwmod_class omap2420_timer_hwmod_class = { ...@@ -296,6 +296,7 @@ static struct omap_hwmod_class omap2420_timer_hwmod_class = {
static struct omap_hwmod omap2420_timer1_hwmod; static struct omap_hwmod omap2420_timer1_hwmod;
static struct omap_hwmod_irq_info omap2420_timer1_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer1_mpu_irqs[] = {
{ .irq = 37, }, { .irq = 37, },
{ .irq = -1 }
}; };
static struct omap_hwmod_addr_space omap2420_timer1_addrs[] = { static struct omap_hwmod_addr_space omap2420_timer1_addrs[] = {
...@@ -325,7 +326,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer1_slaves[] = { ...@@ -325,7 +326,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer1_slaves[] = {
static struct omap_hwmod omap2420_timer1_hwmod = { static struct omap_hwmod omap2420_timer1_hwmod = {
.name = "timer1", .name = "timer1",
.mpu_irqs = omap2420_timer1_mpu_irqs, .mpu_irqs = omap2420_timer1_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer1_mpu_irqs),
.main_clk = "gpt1_fck", .main_clk = "gpt1_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -346,6 +346,7 @@ static struct omap_hwmod omap2420_timer1_hwmod = { ...@@ -346,6 +346,7 @@ static struct omap_hwmod omap2420_timer1_hwmod = {
static struct omap_hwmod omap2420_timer2_hwmod; static struct omap_hwmod omap2420_timer2_hwmod;
static struct omap_hwmod_irq_info omap2420_timer2_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer2_mpu_irqs[] = {
{ .irq = 38, }, { .irq = 38, },
{ .irq = -1 }
}; };
...@@ -367,7 +368,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer2_slaves[] = { ...@@ -367,7 +368,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer2_slaves[] = {
static struct omap_hwmod omap2420_timer2_hwmod = { static struct omap_hwmod omap2420_timer2_hwmod = {
.name = "timer2", .name = "timer2",
.mpu_irqs = omap2420_timer2_mpu_irqs, .mpu_irqs = omap2420_timer2_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer2_mpu_irqs),
.main_clk = "gpt2_fck", .main_clk = "gpt2_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -388,6 +388,7 @@ static struct omap_hwmod omap2420_timer2_hwmod = { ...@@ -388,6 +388,7 @@ static struct omap_hwmod omap2420_timer2_hwmod = {
static struct omap_hwmod omap2420_timer3_hwmod; static struct omap_hwmod omap2420_timer3_hwmod;
static struct omap_hwmod_irq_info omap2420_timer3_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer3_mpu_irqs[] = {
{ .irq = 39, }, { .irq = 39, },
{ .irq = -1 }
}; };
/* l4_core -> timer3 */ /* l4_core -> timer3 */
...@@ -408,7 +409,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer3_slaves[] = { ...@@ -408,7 +409,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer3_slaves[] = {
static struct omap_hwmod omap2420_timer3_hwmod = { static struct omap_hwmod omap2420_timer3_hwmod = {
.name = "timer3", .name = "timer3",
.mpu_irqs = omap2420_timer3_mpu_irqs, .mpu_irqs = omap2420_timer3_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer3_mpu_irqs),
.main_clk = "gpt3_fck", .main_clk = "gpt3_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -429,6 +429,7 @@ static struct omap_hwmod omap2420_timer3_hwmod = { ...@@ -429,6 +429,7 @@ static struct omap_hwmod omap2420_timer3_hwmod = {
static struct omap_hwmod omap2420_timer4_hwmod; static struct omap_hwmod omap2420_timer4_hwmod;
static struct omap_hwmod_irq_info omap2420_timer4_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer4_mpu_irqs[] = {
{ .irq = 40, }, { .irq = 40, },
{ .irq = -1 }
}; };
/* l4_core -> timer4 */ /* l4_core -> timer4 */
...@@ -449,7 +450,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer4_slaves[] = { ...@@ -449,7 +450,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer4_slaves[] = {
static struct omap_hwmod omap2420_timer4_hwmod = { static struct omap_hwmod omap2420_timer4_hwmod = {
.name = "timer4", .name = "timer4",
.mpu_irqs = omap2420_timer4_mpu_irqs, .mpu_irqs = omap2420_timer4_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer4_mpu_irqs),
.main_clk = "gpt4_fck", .main_clk = "gpt4_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -470,6 +470,7 @@ static struct omap_hwmod omap2420_timer4_hwmod = { ...@@ -470,6 +470,7 @@ static struct omap_hwmod omap2420_timer4_hwmod = {
static struct omap_hwmod omap2420_timer5_hwmod; static struct omap_hwmod omap2420_timer5_hwmod;
static struct omap_hwmod_irq_info omap2420_timer5_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer5_mpu_irqs[] = {
{ .irq = 41, }, { .irq = 41, },
{ .irq = -1 }
}; };
/* l4_core -> timer5 */ /* l4_core -> timer5 */
...@@ -490,7 +491,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer5_slaves[] = { ...@@ -490,7 +491,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer5_slaves[] = {
static struct omap_hwmod omap2420_timer5_hwmod = { static struct omap_hwmod omap2420_timer5_hwmod = {
.name = "timer5", .name = "timer5",
.mpu_irqs = omap2420_timer5_mpu_irqs, .mpu_irqs = omap2420_timer5_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer5_mpu_irqs),
.main_clk = "gpt5_fck", .main_clk = "gpt5_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -512,6 +512,7 @@ static struct omap_hwmod omap2420_timer5_hwmod = { ...@@ -512,6 +512,7 @@ static struct omap_hwmod omap2420_timer5_hwmod = {
static struct omap_hwmod omap2420_timer6_hwmod; static struct omap_hwmod omap2420_timer6_hwmod;
static struct omap_hwmod_irq_info omap2420_timer6_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer6_mpu_irqs[] = {
{ .irq = 42, }, { .irq = 42, },
{ .irq = -1 }
}; };
/* l4_core -> timer6 */ /* l4_core -> timer6 */
...@@ -532,7 +533,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer6_slaves[] = { ...@@ -532,7 +533,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer6_slaves[] = {
static struct omap_hwmod omap2420_timer6_hwmod = { static struct omap_hwmod omap2420_timer6_hwmod = {
.name = "timer6", .name = "timer6",
.mpu_irqs = omap2420_timer6_mpu_irqs, .mpu_irqs = omap2420_timer6_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer6_mpu_irqs),
.main_clk = "gpt6_fck", .main_clk = "gpt6_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -553,6 +553,7 @@ static struct omap_hwmod omap2420_timer6_hwmod = { ...@@ -553,6 +553,7 @@ static struct omap_hwmod omap2420_timer6_hwmod = {
static struct omap_hwmod omap2420_timer7_hwmod; static struct omap_hwmod omap2420_timer7_hwmod;
static struct omap_hwmod_irq_info omap2420_timer7_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer7_mpu_irqs[] = {
{ .irq = 43, }, { .irq = 43, },
{ .irq = -1 }
}; };
/* l4_core -> timer7 */ /* l4_core -> timer7 */
...@@ -573,7 +574,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer7_slaves[] = { ...@@ -573,7 +574,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer7_slaves[] = {
static struct omap_hwmod omap2420_timer7_hwmod = { static struct omap_hwmod omap2420_timer7_hwmod = {
.name = "timer7", .name = "timer7",
.mpu_irqs = omap2420_timer7_mpu_irqs, .mpu_irqs = omap2420_timer7_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer7_mpu_irqs),
.main_clk = "gpt7_fck", .main_clk = "gpt7_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -594,6 +594,7 @@ static struct omap_hwmod omap2420_timer7_hwmod = { ...@@ -594,6 +594,7 @@ static struct omap_hwmod omap2420_timer7_hwmod = {
static struct omap_hwmod omap2420_timer8_hwmod; static struct omap_hwmod omap2420_timer8_hwmod;
static struct omap_hwmod_irq_info omap2420_timer8_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer8_mpu_irqs[] = {
{ .irq = 44, }, { .irq = 44, },
{ .irq = -1 }
}; };
/* l4_core -> timer8 */ /* l4_core -> timer8 */
...@@ -614,7 +615,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer8_slaves[] = { ...@@ -614,7 +615,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer8_slaves[] = {
static struct omap_hwmod omap2420_timer8_hwmod = { static struct omap_hwmod omap2420_timer8_hwmod = {
.name = "timer8", .name = "timer8",
.mpu_irqs = omap2420_timer8_mpu_irqs, .mpu_irqs = omap2420_timer8_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer8_mpu_irqs),
.main_clk = "gpt8_fck", .main_clk = "gpt8_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -635,6 +635,7 @@ static struct omap_hwmod omap2420_timer8_hwmod = { ...@@ -635,6 +635,7 @@ static struct omap_hwmod omap2420_timer8_hwmod = {
static struct omap_hwmod omap2420_timer9_hwmod; static struct omap_hwmod omap2420_timer9_hwmod;
static struct omap_hwmod_irq_info omap2420_timer9_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer9_mpu_irqs[] = {
{ .irq = 45, }, { .irq = 45, },
{ .irq = -1 }
}; };
/* l4_core -> timer9 */ /* l4_core -> timer9 */
...@@ -655,7 +656,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer9_slaves[] = { ...@@ -655,7 +656,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer9_slaves[] = {
static struct omap_hwmod omap2420_timer9_hwmod = { static struct omap_hwmod omap2420_timer9_hwmod = {
.name = "timer9", .name = "timer9",
.mpu_irqs = omap2420_timer9_mpu_irqs, .mpu_irqs = omap2420_timer9_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer9_mpu_irqs),
.main_clk = "gpt9_fck", .main_clk = "gpt9_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -676,6 +676,7 @@ static struct omap_hwmod omap2420_timer9_hwmod = { ...@@ -676,6 +676,7 @@ static struct omap_hwmod omap2420_timer9_hwmod = {
static struct omap_hwmod omap2420_timer10_hwmod; static struct omap_hwmod omap2420_timer10_hwmod;
static struct omap_hwmod_irq_info omap2420_timer10_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer10_mpu_irqs[] = {
{ .irq = 46, }, { .irq = 46, },
{ .irq = -1 }
}; };
/* l4_core -> timer10 */ /* l4_core -> timer10 */
...@@ -696,7 +697,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer10_slaves[] = { ...@@ -696,7 +697,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer10_slaves[] = {
static struct omap_hwmod omap2420_timer10_hwmod = { static struct omap_hwmod omap2420_timer10_hwmod = {
.name = "timer10", .name = "timer10",
.mpu_irqs = omap2420_timer10_mpu_irqs, .mpu_irqs = omap2420_timer10_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer10_mpu_irqs),
.main_clk = "gpt10_fck", .main_clk = "gpt10_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -717,6 +717,7 @@ static struct omap_hwmod omap2420_timer10_hwmod = { ...@@ -717,6 +717,7 @@ static struct omap_hwmod omap2420_timer10_hwmod = {
static struct omap_hwmod omap2420_timer11_hwmod; static struct omap_hwmod omap2420_timer11_hwmod;
static struct omap_hwmod_irq_info omap2420_timer11_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer11_mpu_irqs[] = {
{ .irq = 47, }, { .irq = 47, },
{ .irq = -1 }
}; };
/* l4_core -> timer11 */ /* l4_core -> timer11 */
...@@ -737,7 +738,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer11_slaves[] = { ...@@ -737,7 +738,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer11_slaves[] = {
static struct omap_hwmod omap2420_timer11_hwmod = { static struct omap_hwmod omap2420_timer11_hwmod = {
.name = "timer11", .name = "timer11",
.mpu_irqs = omap2420_timer11_mpu_irqs, .mpu_irqs = omap2420_timer11_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer11_mpu_irqs),
.main_clk = "gpt11_fck", .main_clk = "gpt11_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -758,6 +758,7 @@ static struct omap_hwmod omap2420_timer11_hwmod = { ...@@ -758,6 +758,7 @@ static struct omap_hwmod omap2420_timer11_hwmod = {
static struct omap_hwmod omap2420_timer12_hwmod; static struct omap_hwmod omap2420_timer12_hwmod;
static struct omap_hwmod_irq_info omap2420_timer12_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_timer12_mpu_irqs[] = {
{ .irq = 48, }, { .irq = 48, },
{ .irq = -1 }
}; };
/* l4_core -> timer12 */ /* l4_core -> timer12 */
...@@ -778,7 +779,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer12_slaves[] = { ...@@ -778,7 +779,6 @@ static struct omap_hwmod_ocp_if *omap2420_timer12_slaves[] = {
static struct omap_hwmod omap2420_timer12_hwmod = { static struct omap_hwmod omap2420_timer12_hwmod = {
.name = "timer12", .name = "timer12",
.mpu_irqs = omap2420_timer12_mpu_irqs, .mpu_irqs = omap2420_timer12_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_timer12_mpu_irqs),
.main_clk = "gpt12_fck", .main_clk = "gpt12_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -879,6 +879,7 @@ static struct omap_hwmod_class uart_class = { ...@@ -879,6 +879,7 @@ static struct omap_hwmod_class uart_class = {
static struct omap_hwmod_irq_info uart1_mpu_irqs[] = { static struct omap_hwmod_irq_info uart1_mpu_irqs[] = {
{ .irq = INT_24XX_UART1_IRQ, }, { .irq = INT_24XX_UART1_IRQ, },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info uart1_sdma_reqs[] = { static struct omap_hwmod_dma_info uart1_sdma_reqs[] = {
...@@ -893,7 +894,6 @@ static struct omap_hwmod_ocp_if *omap2420_uart1_slaves[] = { ...@@ -893,7 +894,6 @@ static struct omap_hwmod_ocp_if *omap2420_uart1_slaves[] = {
static struct omap_hwmod omap2420_uart1_hwmod = { static struct omap_hwmod omap2420_uart1_hwmod = {
.name = "uart1", .name = "uart1",
.mpu_irqs = uart1_mpu_irqs, .mpu_irqs = uart1_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(uart1_mpu_irqs),
.sdma_reqs = uart1_sdma_reqs, .sdma_reqs = uart1_sdma_reqs,
.sdma_reqs_cnt = ARRAY_SIZE(uart1_sdma_reqs), .sdma_reqs_cnt = ARRAY_SIZE(uart1_sdma_reqs),
.main_clk = "uart1_fck", .main_clk = "uart1_fck",
...@@ -916,6 +916,7 @@ static struct omap_hwmod omap2420_uart1_hwmod = { ...@@ -916,6 +916,7 @@ static struct omap_hwmod omap2420_uart1_hwmod = {
static struct omap_hwmod_irq_info uart2_mpu_irqs[] = { static struct omap_hwmod_irq_info uart2_mpu_irqs[] = {
{ .irq = INT_24XX_UART2_IRQ, }, { .irq = INT_24XX_UART2_IRQ, },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info uart2_sdma_reqs[] = { static struct omap_hwmod_dma_info uart2_sdma_reqs[] = {
...@@ -930,7 +931,6 @@ static struct omap_hwmod_ocp_if *omap2420_uart2_slaves[] = { ...@@ -930,7 +931,6 @@ static struct omap_hwmod_ocp_if *omap2420_uart2_slaves[] = {
static struct omap_hwmod omap2420_uart2_hwmod = { static struct omap_hwmod omap2420_uart2_hwmod = {
.name = "uart2", .name = "uart2",
.mpu_irqs = uart2_mpu_irqs, .mpu_irqs = uart2_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(uart2_mpu_irqs),
.sdma_reqs = uart2_sdma_reqs, .sdma_reqs = uart2_sdma_reqs,
.sdma_reqs_cnt = ARRAY_SIZE(uart2_sdma_reqs), .sdma_reqs_cnt = ARRAY_SIZE(uart2_sdma_reqs),
.main_clk = "uart2_fck", .main_clk = "uart2_fck",
...@@ -953,6 +953,7 @@ static struct omap_hwmod omap2420_uart2_hwmod = { ...@@ -953,6 +953,7 @@ static struct omap_hwmod omap2420_uart2_hwmod = {
static struct omap_hwmod_irq_info uart3_mpu_irqs[] = { static struct omap_hwmod_irq_info uart3_mpu_irqs[] = {
{ .irq = INT_24XX_UART3_IRQ, }, { .irq = INT_24XX_UART3_IRQ, },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info uart3_sdma_reqs[] = { static struct omap_hwmod_dma_info uart3_sdma_reqs[] = {
...@@ -967,7 +968,6 @@ static struct omap_hwmod_ocp_if *omap2420_uart3_slaves[] = { ...@@ -967,7 +968,6 @@ static struct omap_hwmod_ocp_if *omap2420_uart3_slaves[] = {
static struct omap_hwmod omap2420_uart3_hwmod = { static struct omap_hwmod omap2420_uart3_hwmod = {
.name = "uart3", .name = "uart3",
.mpu_irqs = uart3_mpu_irqs, .mpu_irqs = uart3_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(uart3_mpu_irqs),
.sdma_reqs = uart3_sdma_reqs, .sdma_reqs = uart3_sdma_reqs,
.sdma_reqs_cnt = ARRAY_SIZE(uart3_sdma_reqs), .sdma_reqs_cnt = ARRAY_SIZE(uart3_sdma_reqs),
.main_clk = "uart3_fck", .main_clk = "uart3_fck",
...@@ -1087,6 +1087,7 @@ static struct omap_hwmod_class omap2420_dispc_hwmod_class = { ...@@ -1087,6 +1087,7 @@ static struct omap_hwmod_class omap2420_dispc_hwmod_class = {
static struct omap_hwmod_irq_info omap2420_dispc_irqs[] = { static struct omap_hwmod_irq_info omap2420_dispc_irqs[] = {
{ .irq = 25 }, { .irq = 25 },
{ .irq = -1 }
}; };
/* l4_core -> dss_dispc */ /* l4_core -> dss_dispc */
...@@ -1113,7 +1114,6 @@ static struct omap_hwmod omap2420_dss_dispc_hwmod = { ...@@ -1113,7 +1114,6 @@ static struct omap_hwmod omap2420_dss_dispc_hwmod = {
.name = "dss_dispc", .name = "dss_dispc",
.class = &omap2420_dispc_hwmod_class, .class = &omap2420_dispc_hwmod_class,
.mpu_irqs = omap2420_dispc_irqs, .mpu_irqs = omap2420_dispc_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_dispc_irqs),
.main_clk = "dss1_fck", .main_clk = "dss1_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -1254,6 +1254,7 @@ static struct omap_i2c_dev_attr i2c_dev_attr; ...@@ -1254,6 +1254,7 @@ static struct omap_i2c_dev_attr i2c_dev_attr;
static struct omap_hwmod_irq_info i2c1_mpu_irqs[] = { static struct omap_hwmod_irq_info i2c1_mpu_irqs[] = {
{ .irq = INT_24XX_I2C1_IRQ, }, { .irq = INT_24XX_I2C1_IRQ, },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info i2c1_sdma_reqs[] = { static struct omap_hwmod_dma_info i2c1_sdma_reqs[] = {
...@@ -1268,7 +1269,6 @@ static struct omap_hwmod_ocp_if *omap2420_i2c1_slaves[] = { ...@@ -1268,7 +1269,6 @@ static struct omap_hwmod_ocp_if *omap2420_i2c1_slaves[] = {
static struct omap_hwmod omap2420_i2c1_hwmod = { static struct omap_hwmod omap2420_i2c1_hwmod = {
.name = "i2c1", .name = "i2c1",
.mpu_irqs = i2c1_mpu_irqs, .mpu_irqs = i2c1_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(i2c1_mpu_irqs),
.sdma_reqs = i2c1_sdma_reqs, .sdma_reqs = i2c1_sdma_reqs,
.sdma_reqs_cnt = ARRAY_SIZE(i2c1_sdma_reqs), .sdma_reqs_cnt = ARRAY_SIZE(i2c1_sdma_reqs),
.main_clk = "i2c1_fck", .main_clk = "i2c1_fck",
...@@ -1293,6 +1293,7 @@ static struct omap_hwmod omap2420_i2c1_hwmod = { ...@@ -1293,6 +1293,7 @@ static struct omap_hwmod omap2420_i2c1_hwmod = {
static struct omap_hwmod_irq_info i2c2_mpu_irqs[] = { static struct omap_hwmod_irq_info i2c2_mpu_irqs[] = {
{ .irq = INT_24XX_I2C2_IRQ, }, { .irq = INT_24XX_I2C2_IRQ, },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info i2c2_sdma_reqs[] = { static struct omap_hwmod_dma_info i2c2_sdma_reqs[] = {
...@@ -1307,7 +1308,6 @@ static struct omap_hwmod_ocp_if *omap2420_i2c2_slaves[] = { ...@@ -1307,7 +1308,6 @@ static struct omap_hwmod_ocp_if *omap2420_i2c2_slaves[] = {
static struct omap_hwmod omap2420_i2c2_hwmod = { static struct omap_hwmod omap2420_i2c2_hwmod = {
.name = "i2c2", .name = "i2c2",
.mpu_irqs = i2c2_mpu_irqs, .mpu_irqs = i2c2_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(i2c2_mpu_irqs),
.sdma_reqs = i2c2_sdma_reqs, .sdma_reqs = i2c2_sdma_reqs,
.sdma_reqs_cnt = ARRAY_SIZE(i2c2_sdma_reqs), .sdma_reqs_cnt = ARRAY_SIZE(i2c2_sdma_reqs),
.main_clk = "i2c2_fck", .main_clk = "i2c2_fck",
...@@ -1430,6 +1430,7 @@ static struct omap_hwmod_class omap242x_gpio_hwmod_class = { ...@@ -1430,6 +1430,7 @@ static struct omap_hwmod_class omap242x_gpio_hwmod_class = {
/* gpio1 */ /* gpio1 */
static struct omap_hwmod_irq_info omap242x_gpio1_irqs[] = { static struct omap_hwmod_irq_info omap242x_gpio1_irqs[] = {
{ .irq = 29 }, /* INT_24XX_GPIO_BANK1 */ { .irq = 29 }, /* INT_24XX_GPIO_BANK1 */
{ .irq = -1 }
}; };
static struct omap_hwmod_ocp_if *omap2420_gpio1_slaves[] = { static struct omap_hwmod_ocp_if *omap2420_gpio1_slaves[] = {
...@@ -1440,7 +1441,6 @@ static struct omap_hwmod omap2420_gpio1_hwmod = { ...@@ -1440,7 +1441,6 @@ static struct omap_hwmod omap2420_gpio1_hwmod = {
.name = "gpio1", .name = "gpio1",
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
.mpu_irqs = omap242x_gpio1_irqs, .mpu_irqs = omap242x_gpio1_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap242x_gpio1_irqs),
.main_clk = "gpios_fck", .main_clk = "gpios_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -1461,6 +1461,7 @@ static struct omap_hwmod omap2420_gpio1_hwmod = { ...@@ -1461,6 +1461,7 @@ static struct omap_hwmod omap2420_gpio1_hwmod = {
/* gpio2 */ /* gpio2 */
static struct omap_hwmod_irq_info omap242x_gpio2_irqs[] = { static struct omap_hwmod_irq_info omap242x_gpio2_irqs[] = {
{ .irq = 30 }, /* INT_24XX_GPIO_BANK2 */ { .irq = 30 }, /* INT_24XX_GPIO_BANK2 */
{ .irq = -1 }
}; };
static struct omap_hwmod_ocp_if *omap2420_gpio2_slaves[] = { static struct omap_hwmod_ocp_if *omap2420_gpio2_slaves[] = {
...@@ -1471,7 +1472,6 @@ static struct omap_hwmod omap2420_gpio2_hwmod = { ...@@ -1471,7 +1472,6 @@ static struct omap_hwmod omap2420_gpio2_hwmod = {
.name = "gpio2", .name = "gpio2",
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
.mpu_irqs = omap242x_gpio2_irqs, .mpu_irqs = omap242x_gpio2_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap242x_gpio2_irqs),
.main_clk = "gpios_fck", .main_clk = "gpios_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -1492,6 +1492,7 @@ static struct omap_hwmod omap2420_gpio2_hwmod = { ...@@ -1492,6 +1492,7 @@ static struct omap_hwmod omap2420_gpio2_hwmod = {
/* gpio3 */ /* gpio3 */
static struct omap_hwmod_irq_info omap242x_gpio3_irqs[] = { static struct omap_hwmod_irq_info omap242x_gpio3_irqs[] = {
{ .irq = 31 }, /* INT_24XX_GPIO_BANK3 */ { .irq = 31 }, /* INT_24XX_GPIO_BANK3 */
{ .irq = -1 }
}; };
static struct omap_hwmod_ocp_if *omap2420_gpio3_slaves[] = { static struct omap_hwmod_ocp_if *omap2420_gpio3_slaves[] = {
...@@ -1502,7 +1503,6 @@ static struct omap_hwmod omap2420_gpio3_hwmod = { ...@@ -1502,7 +1503,6 @@ static struct omap_hwmod omap2420_gpio3_hwmod = {
.name = "gpio3", .name = "gpio3",
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
.mpu_irqs = omap242x_gpio3_irqs, .mpu_irqs = omap242x_gpio3_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap242x_gpio3_irqs),
.main_clk = "gpios_fck", .main_clk = "gpios_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -1523,6 +1523,7 @@ static struct omap_hwmod omap2420_gpio3_hwmod = { ...@@ -1523,6 +1523,7 @@ static struct omap_hwmod omap2420_gpio3_hwmod = {
/* gpio4 */ /* gpio4 */
static struct omap_hwmod_irq_info omap242x_gpio4_irqs[] = { static struct omap_hwmod_irq_info omap242x_gpio4_irqs[] = {
{ .irq = 32 }, /* INT_24XX_GPIO_BANK4 */ { .irq = 32 }, /* INT_24XX_GPIO_BANK4 */
{ .irq = -1 }
}; };
static struct omap_hwmod_ocp_if *omap2420_gpio4_slaves[] = { static struct omap_hwmod_ocp_if *omap2420_gpio4_slaves[] = {
...@@ -1533,7 +1534,6 @@ static struct omap_hwmod omap2420_gpio4_hwmod = { ...@@ -1533,7 +1534,6 @@ static struct omap_hwmod omap2420_gpio4_hwmod = {
.name = "gpio4", .name = "gpio4",
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
.mpu_irqs = omap242x_gpio4_irqs, .mpu_irqs = omap242x_gpio4_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap242x_gpio4_irqs),
.main_clk = "gpios_fck", .main_clk = "gpios_fck",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -1580,6 +1580,7 @@ static struct omap_hwmod_irq_info omap2420_dma_system_irqs[] = { ...@@ -1580,6 +1580,7 @@ static struct omap_hwmod_irq_info omap2420_dma_system_irqs[] = {
{ .name = "1", .irq = 13 }, /* INT_24XX_SDMA_IRQ1 */ { .name = "1", .irq = 13 }, /* INT_24XX_SDMA_IRQ1 */
{ .name = "2", .irq = 14 }, /* INT_24XX_SDMA_IRQ2 */ { .name = "2", .irq = 14 }, /* INT_24XX_SDMA_IRQ2 */
{ .name = "3", .irq = 15 }, /* INT_24XX_SDMA_IRQ3 */ { .name = "3", .irq = 15 }, /* INT_24XX_SDMA_IRQ3 */
{ .irq = -1 }
}; };
/* dma_system -> L3 */ /* dma_system -> L3 */
...@@ -1613,7 +1614,6 @@ static struct omap_hwmod omap2420_dma_system_hwmod = { ...@@ -1613,7 +1614,6 @@ static struct omap_hwmod omap2420_dma_system_hwmod = {
.name = "dma", .name = "dma",
.class = &omap2420_dma_hwmod_class, .class = &omap2420_dma_hwmod_class,
.mpu_irqs = omap2420_dma_system_irqs, .mpu_irqs = omap2420_dma_system_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_dma_system_irqs),
.main_clk = "core_l3_ck", .main_clk = "core_l3_ck",
.slaves = omap2420_dma_system_slaves, .slaves = omap2420_dma_system_slaves,
.slaves_cnt = ARRAY_SIZE(omap2420_dma_system_slaves), .slaves_cnt = ARRAY_SIZE(omap2420_dma_system_slaves),
...@@ -1650,6 +1650,7 @@ static struct omap_hwmod omap2420_mailbox_hwmod; ...@@ -1650,6 +1650,7 @@ static struct omap_hwmod omap2420_mailbox_hwmod;
static struct omap_hwmod_irq_info omap2420_mailbox_irqs[] = { static struct omap_hwmod_irq_info omap2420_mailbox_irqs[] = {
{ .name = "dsp", .irq = 26 }, { .name = "dsp", .irq = 26 },
{ .name = "iva", .irq = 34 }, { .name = "iva", .irq = 34 },
{ .irq = -1 }
}; };
/* l4_core -> mailbox */ /* l4_core -> mailbox */
...@@ -1669,7 +1670,6 @@ static struct omap_hwmod omap2420_mailbox_hwmod = { ...@@ -1669,7 +1670,6 @@ static struct omap_hwmod omap2420_mailbox_hwmod = {
.name = "mailbox", .name = "mailbox",
.class = &omap2420_mailbox_hwmod_class, .class = &omap2420_mailbox_hwmod_class,
.mpu_irqs = omap2420_mailbox_irqs, .mpu_irqs = omap2420_mailbox_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_mailbox_irqs),
.main_clk = "mailboxes_ick", .main_clk = "mailboxes_ick",
.prcm = { .prcm = {
.omap2 = { .omap2 = {
...@@ -1711,6 +1711,7 @@ static struct omap_hwmod_class omap2420_mcspi_class = { ...@@ -1711,6 +1711,7 @@ static struct omap_hwmod_class omap2420_mcspi_class = {
/* mcspi1 */ /* mcspi1 */
static struct omap_hwmod_irq_info omap2420_mcspi1_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_mcspi1_mpu_irqs[] = {
{ .irq = 65 }, { .irq = 65 },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info omap2420_mcspi1_sdma_reqs[] = { static struct omap_hwmod_dma_info omap2420_mcspi1_sdma_reqs[] = {
...@@ -1735,7 +1736,6 @@ static struct omap2_mcspi_dev_attr omap_mcspi1_dev_attr = { ...@@ -1735,7 +1736,6 @@ static struct omap2_mcspi_dev_attr omap_mcspi1_dev_attr = {
static struct omap_hwmod omap2420_mcspi1_hwmod = { static struct omap_hwmod omap2420_mcspi1_hwmod = {
.name = "mcspi1_hwmod", .name = "mcspi1_hwmod",
.mpu_irqs = omap2420_mcspi1_mpu_irqs, .mpu_irqs = omap2420_mcspi1_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_mcspi1_mpu_irqs),
.sdma_reqs = omap2420_mcspi1_sdma_reqs, .sdma_reqs = omap2420_mcspi1_sdma_reqs,
.sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcspi1_sdma_reqs), .sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcspi1_sdma_reqs),
.main_clk = "mcspi1_fck", .main_clk = "mcspi1_fck",
...@@ -1758,6 +1758,7 @@ static struct omap_hwmod omap2420_mcspi1_hwmod = { ...@@ -1758,6 +1758,7 @@ static struct omap_hwmod omap2420_mcspi1_hwmod = {
/* mcspi2 */ /* mcspi2 */
static struct omap_hwmod_irq_info omap2420_mcspi2_mpu_irqs[] = { static struct omap_hwmod_irq_info omap2420_mcspi2_mpu_irqs[] = {
{ .irq = 66 }, { .irq = 66 },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info omap2420_mcspi2_sdma_reqs[] = { static struct omap_hwmod_dma_info omap2420_mcspi2_sdma_reqs[] = {
...@@ -1778,7 +1779,6 @@ static struct omap2_mcspi_dev_attr omap_mcspi2_dev_attr = { ...@@ -1778,7 +1779,6 @@ static struct omap2_mcspi_dev_attr omap_mcspi2_dev_attr = {
static struct omap_hwmod omap2420_mcspi2_hwmod = { static struct omap_hwmod omap2420_mcspi2_hwmod = {
.name = "mcspi2_hwmod", .name = "mcspi2_hwmod",
.mpu_irqs = omap2420_mcspi2_mpu_irqs, .mpu_irqs = omap2420_mcspi2_mpu_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_mcspi2_mpu_irqs),
.sdma_reqs = omap2420_mcspi2_sdma_reqs, .sdma_reqs = omap2420_mcspi2_sdma_reqs,
.sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcspi2_sdma_reqs), .sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcspi2_sdma_reqs),
.main_clk = "mcspi2_fck", .main_clk = "mcspi2_fck",
...@@ -1811,6 +1811,7 @@ static struct omap_hwmod_class omap2420_mcbsp_hwmod_class = { ...@@ -1811,6 +1811,7 @@ static struct omap_hwmod_class omap2420_mcbsp_hwmod_class = {
static struct omap_hwmod_irq_info omap2420_mcbsp1_irqs[] = { static struct omap_hwmod_irq_info omap2420_mcbsp1_irqs[] = {
{ .name = "tx", .irq = 59 }, { .name = "tx", .irq = 59 },
{ .name = "rx", .irq = 60 }, { .name = "rx", .irq = 60 },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info omap2420_mcbsp1_sdma_chs[] = { static struct omap_hwmod_dma_info omap2420_mcbsp1_sdma_chs[] = {
...@@ -1836,7 +1837,6 @@ static struct omap_hwmod omap2420_mcbsp1_hwmod = { ...@@ -1836,7 +1837,6 @@ static struct omap_hwmod omap2420_mcbsp1_hwmod = {
.name = "mcbsp1", .name = "mcbsp1",
.class = &omap2420_mcbsp_hwmod_class, .class = &omap2420_mcbsp_hwmod_class,
.mpu_irqs = omap2420_mcbsp1_irqs, .mpu_irqs = omap2420_mcbsp1_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_mcbsp1_irqs),
.sdma_reqs = omap2420_mcbsp1_sdma_chs, .sdma_reqs = omap2420_mcbsp1_sdma_chs,
.sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcbsp1_sdma_chs), .sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcbsp1_sdma_chs),
.main_clk = "mcbsp1_fck", .main_clk = "mcbsp1_fck",
...@@ -1858,6 +1858,7 @@ static struct omap_hwmod omap2420_mcbsp1_hwmod = { ...@@ -1858,6 +1858,7 @@ static struct omap_hwmod omap2420_mcbsp1_hwmod = {
static struct omap_hwmod_irq_info omap2420_mcbsp2_irqs[] = { static struct omap_hwmod_irq_info omap2420_mcbsp2_irqs[] = {
{ .name = "tx", .irq = 62 }, { .name = "tx", .irq = 62 },
{ .name = "rx", .irq = 63 }, { .name = "rx", .irq = 63 },
{ .irq = -1 }
}; };
static struct omap_hwmod_dma_info omap2420_mcbsp2_sdma_chs[] = { static struct omap_hwmod_dma_info omap2420_mcbsp2_sdma_chs[] = {
...@@ -1883,7 +1884,6 @@ static struct omap_hwmod omap2420_mcbsp2_hwmod = { ...@@ -1883,7 +1884,6 @@ static struct omap_hwmod omap2420_mcbsp2_hwmod = {
.name = "mcbsp2", .name = "mcbsp2",
.class = &omap2420_mcbsp_hwmod_class, .class = &omap2420_mcbsp_hwmod_class,
.mpu_irqs = omap2420_mcbsp2_irqs, .mpu_irqs = omap2420_mcbsp2_irqs,
.mpu_irqs_cnt = ARRAY_SIZE(omap2420_mcbsp2_irqs),
.sdma_reqs = omap2420_mcbsp2_sdma_chs, .sdma_reqs = omap2420_mcbsp2_sdma_chs,
.sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcbsp2_sdma_chs), .sdma_reqs_cnt = ARRAY_SIZE(omap2420_mcbsp2_sdma_chs),
.main_clk = "mcbsp2_fck", .main_clk = "mcbsp2_fck",
......
...@@ -98,7 +98,7 @@ struct omap_hwmod_mux_info { ...@@ -98,7 +98,7 @@ struct omap_hwmod_mux_info {
/** /**
* struct omap_hwmod_irq_info - MPU IRQs used by the hwmod * struct omap_hwmod_irq_info - MPU IRQs used by the hwmod
* @name: name of the IRQ channel (module local name) * @name: name of the IRQ channel (module local name)
* @irq_ch: IRQ channel ID * @irq: IRQ channel ID (should be non-negative except -1 = terminator)
* *
* @name should be something short, e.g., "tx" or "rx". It is for use * @name should be something short, e.g., "tx" or "rx". It is for use
* by platform_get_resource_byname(). It is defined locally to the * by platform_get_resource_byname(). It is defined locally to the
...@@ -106,7 +106,7 @@ struct omap_hwmod_mux_info { ...@@ -106,7 +106,7 @@ struct omap_hwmod_mux_info {
*/ */
struct omap_hwmod_irq_info { struct omap_hwmod_irq_info {
const char *name; const char *name;
u16 irq; s16 irq;
}; };
/** /**
...@@ -466,7 +466,7 @@ struct omap_hwmod_class { ...@@ -466,7 +466,7 @@ struct omap_hwmod_class {
* @name: name of the hwmod * @name: name of the hwmod
* @class: struct omap_hwmod_class * to the class of this hwmod * @class: struct omap_hwmod_class * to the class of this hwmod
* @od: struct omap_device currently associated with this hwmod (internal use) * @od: struct omap_device currently associated with this hwmod (internal use)
* @mpu_irqs: ptr to an array of MPU IRQs (see also mpu_irqs_cnt) * @mpu_irqs: ptr to an array of MPU IRQs
* @sdma_reqs: ptr to an array of System DMA request IDs (see sdma_reqs_cnt) * @sdma_reqs: ptr to an array of System DMA request IDs (see sdma_reqs_cnt)
* @prcm: PRCM data pertaining to this hwmod * @prcm: PRCM data pertaining to this hwmod
* @main_clk: main clock: OMAP clock name * @main_clk: main clock: OMAP clock name
...@@ -480,7 +480,6 @@ struct omap_hwmod_class { ...@@ -480,7 +480,6 @@ struct omap_hwmod_class {
* @_sysc_cache: internal-use hwmod flags * @_sysc_cache: internal-use hwmod flags
* @_mpu_rt_va: cached register target start address (internal use) * @_mpu_rt_va: cached register target start address (internal use)
* @_mpu_port_index: cached MPU register target slave ID (internal use) * @_mpu_port_index: cached MPU register target slave ID (internal use)
* @mpu_irqs_cnt: number of @mpu_irqs
* @sdma_reqs_cnt: number of @sdma_reqs * @sdma_reqs_cnt: number of @sdma_reqs
* @opt_clks_cnt: number of @opt_clks * @opt_clks_cnt: number of @opt_clks
* @master_cnt: number of @master entries * @master_cnt: number of @master entries
...@@ -529,7 +528,6 @@ struct omap_hwmod { ...@@ -529,7 +528,6 @@ struct omap_hwmod {
u16 flags; u16 flags;
u8 _mpu_port_index; u8 _mpu_port_index;
u8 response_lat; u8 response_lat;
u8 mpu_irqs_cnt;
u8 sdma_reqs_cnt; u8 sdma_reqs_cnt;
u8 rst_lines_cnt; u8 rst_lines_cnt;
u8 opt_clks_cnt; u8 opt_clks_cnt;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册