aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2
diff options
context:
space:
mode:
authorPaul Walmsley <paul@pwsan.com>2009-01-28 14:35:31 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-02-08 12:50:47 -0500
commit883992bd8f6924c9aa849f2dac381075e2e55a9d (patch)
tree30440178d023c8e1334e4e46aa0965906044792d /arch/arm/mach-omap2
parent8263e5b31eae2bbf689ff08a7da334329c9f353b (diff)
[ARM] OMAP2/3 clock: don't tinker with hardirqs when they are supposed to be disabled
Clock rate change code executes inside a spinlock with hardirqs disabled. The only code that should be messing around with the hardirq state should be the plat-omap/clock.c code. In the omap2_reprogram_dpllcore() case, this probably just wastes cycles, but in the omap3_core_dpll_m2_set_rate() case, this is a nasty bug. linux-omap source commit is b9b6208dadb5e0d8b290900a3ffa911673ca97ed. Signed-off-by: Paul Walmsley <paul@pwsan.com> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r--arch/arm/mach-omap2/clock24xx.c12
-rw-r--r--arch/arm/mach-omap2/clock34xx.c2
2 files changed, 3 insertions, 11 deletions
diff --git a/arch/arm/mach-omap2/clock24xx.c b/arch/arm/mach-omap2/clock24xx.c
index 1a885976c257..069f3e1827a6 100644
--- a/arch/arm/mach-omap2/clock24xx.c
+++ b/arch/arm/mach-omap2/clock24xx.c
@@ -380,10 +380,7 @@ static int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate)
380 u32 bypass = 0; 380 u32 bypass = 0;
381 struct prcm_config tmpset; 381 struct prcm_config tmpset;
382 const struct dpll_data *dd; 382 const struct dpll_data *dd;
383 unsigned long flags;
384 int ret = -EINVAL;
385 383
386 local_irq_save(flags);
387 cur_rate = omap2_get_dpll_rate_24xx(&dpll_ck); 384 cur_rate = omap2_get_dpll_rate_24xx(&dpll_ck);
388 mult = cm_read_mod_reg(PLL_MOD, CM_CLKSEL2); 385 mult = cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
389 mult &= OMAP24XX_CORE_CLK_SRC_MASK; 386 mult &= OMAP24XX_CORE_CLK_SRC_MASK;
@@ -395,7 +392,7 @@ static int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate)
395 } else if (rate != cur_rate) { 392 } else if (rate != cur_rate) {
396 valid_rate = omap2_dpllcore_round_rate(rate); 393 valid_rate = omap2_dpllcore_round_rate(rate);
397 if (valid_rate != rate) 394 if (valid_rate != rate)
398 goto dpll_exit; 395 return -EINVAL;
399 396
400 if (mult == 1) 397 if (mult == 1)
401 low = curr_prcm_set->dpll_speed; 398 low = curr_prcm_set->dpll_speed;
@@ -404,7 +401,7 @@ static int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate)
404 401
405 dd = clk->dpll_data; 402 dd = clk->dpll_data;
406 if (!dd) 403 if (!dd)
407 goto dpll_exit; 404 return -EINVAL;
408 405
409 tmpset.cm_clksel1_pll = __raw_readl(dd->mult_div1_reg); 406 tmpset.cm_clksel1_pll = __raw_readl(dd->mult_div1_reg);
410 tmpset.cm_clksel1_pll &= ~(dd->mult_mask | 407 tmpset.cm_clksel1_pll &= ~(dd->mult_mask |
@@ -441,11 +438,8 @@ static int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate)
441 omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked()); 438 omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
442 omap2xxx_sdrc_reprogram(done_rate, 0); 439 omap2xxx_sdrc_reprogram(done_rate, 0);
443 } 440 }
444 ret = 0;
445 441
446dpll_exit: 442 return 0;
447 local_irq_restore(flags);
448 return(ret);
449} 443}
450 444
451/** 445/**
diff --git a/arch/arm/mach-omap2/clock34xx.c b/arch/arm/mach-omap2/clock34xx.c
index a853b1e149ee..3b6e27bc9fe3 100644
--- a/arch/arm/mach-omap2/clock34xx.c
+++ b/arch/arm/mach-omap2/clock34xx.c
@@ -686,10 +686,8 @@ static int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate)
686 WARN_ON(new_div != 1 && new_div != 2); 686 WARN_ON(new_div != 1 && new_div != 2);
687 687
688 /* REVISIT: Add SDRC_MR changing to this code also */ 688 /* REVISIT: Add SDRC_MR changing to this code also */
689 local_irq_disable();
690 omap3_configure_core_dpll(sp->rfr_ctrl, sp->actim_ctrla, 689 omap3_configure_core_dpll(sp->rfr_ctrl, sp->actim_ctrla,
691 sp->actim_ctrlb, new_div); 690 sp->actim_ctrlb, new_div);
692 local_irq_enable();
693 691
694 return 0; 692 return 0;
695} 693}