Skip to content

Commit 82f4fe7

Browse files
committed
Merge tag 'for-v3.13-rc/hwmod-fixes-b' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into debug-ll-and-ldp-backlight-fix
A few OMAP hwmod fixes for v3.13-rc. One patch fixes some IRQ problems with GPMC, RNG, and ISP/IVA MMUs on OMAP2/3. The other fixes some problems with DEBUG_LL on DRA7xx. Basic build, boot, and PM test logs are available here: http://www.pwsan.com/omap/testlogs/hwmod_fixes_b_v3.13-rc/20131226021920/
2 parents 7e367c1 + 6d4c883 commit 82f4fe7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ struct omap_hwmod omap2xxx_counter_32k_hwmod = {
796796

797797
/* gpmc */
798798
static struct omap_hwmod_irq_info omap2xxx_gpmc_irqs[] = {
799-
{ .irq = 20 },
799+
{ .irq = 20 + OMAP_INTC_START, },
800800
{ .irq = -1 }
801801
};
802802

@@ -841,7 +841,7 @@ static struct omap_hwmod_class omap2_rng_hwmod_class = {
841841
};
842842

843843
static struct omap_hwmod_irq_info omap2_rng_mpu_irqs[] = {
844-
{ .irq = 52 },
844+
{ .irq = 52 + OMAP_INTC_START, },
845845
{ .irq = -1 }
846846
};
847847

arch/arm/mach-omap2/omap_hwmod_3xxx_data.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2165,7 +2165,7 @@ static struct omap_hwmod_class omap3xxx_gpmc_hwmod_class = {
21652165
};
21662166

21672167
static struct omap_hwmod_irq_info omap3xxx_gpmc_irqs[] = {
2168-
{ .irq = 20 },
2168+
{ .irq = 20 + OMAP_INTC_START, },
21692169
{ .irq = -1 }
21702170
};
21712171

@@ -2999,7 +2999,7 @@ static struct omap_mmu_dev_attr mmu_isp_dev_attr = {
29992999

30003000
static struct omap_hwmod omap3xxx_mmu_isp_hwmod;
30013001
static struct omap_hwmod_irq_info omap3xxx_mmu_isp_irqs[] = {
3002-
{ .irq = 24 },
3002+
{ .irq = 24 + OMAP_INTC_START, },
30033003
{ .irq = -1 }
30043004
};
30053005

@@ -3041,7 +3041,7 @@ static struct omap_mmu_dev_attr mmu_iva_dev_attr = {
30413041

30423042
static struct omap_hwmod omap3xxx_mmu_iva_hwmod;
30433043
static struct omap_hwmod_irq_info omap3xxx_mmu_iva_irqs[] = {
3044-
{ .irq = 28 },
3044+
{ .irq = 28 + OMAP_INTC_START, },
30453045
{ .irq = -1 }
30463046
};
30473047

arch/arm/mach-omap2/omap_hwmod_7xx_data.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1637,7 +1637,7 @@ static struct omap_hwmod dra7xx_uart1_hwmod = {
16371637
.class = &dra7xx_uart_hwmod_class,
16381638
.clkdm_name = "l4per_clkdm",
16391639
.main_clk = "uart1_gfclk_mux",
1640-
.flags = HWMOD_SWSUP_SIDLE_ACT,
1640+
.flags = HWMOD_SWSUP_SIDLE_ACT | DEBUG_OMAP2UART1_FLAGS,
16411641
.prcm = {
16421642
.omap4 = {
16431643
.clkctrl_offs = DRA7XX_CM_L4PER_UART1_CLKCTRL_OFFSET,

0 commit comments

Comments
 (0)