From: Tony Lindgren Date: Mon, 7 Nov 2005 23:57:40 +0000 (-0800) Subject: ARM: OMAP: Skip reset check for DSP domain clocks as they need api_ck X-Git-Tag: v2.6.15-omap2~106 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=0411d0c5e41ed9af44e869c8c8d6d5c521ce94c8;p=linux-2.6-omap-h63xx.git ARM: OMAP: Skip reset check for DSP domain clocks as they need api_ck Skip reset check for DSP domain clocks as they need api_ck --- diff --git a/arch/arm/mach-omap1/clock.c b/arch/arm/mach-omap1/clock.c index 1cbd1e1e888..2184234fa3a 100644 --- a/arch/arm/mach-omap1/clock.c +++ b/arch/arm/mach-omap1/clock.c @@ -605,6 +605,14 @@ static int __init omap1_late_clk_reset(void) p->enable_reg == 0) continue; + /* Clocks in the DSP domain need api_ck. Just assume bootloader + * has not enabled any DSP clocks */ + if (p->enable_reg == DSP_IDLECT2) { + printk(KERN_INFO "Skipping reset check for DSP domain clock \"%s\"\n", + p->name); + continue; + } + /* Is the clock already disabled? */ if (p->flags & ENABLE_REG_32BIT) { if (p->flags & VIRTUAL_IO_ADDRESS)