All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Sripathy, Vishwanath" <vishwanath.bs@ti.com>
To: "Cousson, Benoit" <b-cousson@ti.com>,
	"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>
Subject: RE: [PATCH]OMAP3 PM: Fix for DSP Crash at OPP 1 and 2 under DVFS+SR operation
Date: Fri, 4 Dec 2009 15:58:43 +0530	[thread overview]
Message-ID: <FCCFB4CDC6E5564B9182F639FC35608702FAA0C845@dbde02.ent.ti.com> (raw)
In-Reply-To: <74583B8642AB8841B30447520659FCA9DE3E8952@dnce01.ent.ti.com>

Benoit

> -----Original Message-----
> From: Cousson, Benoit
> Sent: Friday, December 04, 2009 3:46 PM
> To: Sripathy, Vishwanath; linux-omap@vger.kernel.org
> Subject: RE: [PATCH]OMAP3 PM: Fix for DSP Crash at OPP 1 and 2 under DVFS+SR
> operation
> 
> Hi Vishwanath,
> 
> >From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
> >owner@vger.kernel.org] On Behalf Of Sripathy, Vishwanath
> >
> >From: Shweta Gulati <shweta.gulati@ti.com>
> >
> >DSP usage at VDD1 OPP1 and OPP2 with Smartreflex enabled and any MM UCs
> >running DSP codec was earlier restricted as DSP crashed.
> >The root cause is wrong DPLL1/DPLL2 Bypass clock at VDD1 OPP1 and OPP2.
> >The workaround is:
> >	For DPLL2 (DSP) select CORECLK/4 as DPLL2 bypass clock for 3430.
> >	Select CORECLK/2 as DPLL2 bypass clock for 3630.
> >During DPLL2 relock phase, DSP clock will be 83MHz/200MHz which is always
> >OK
> >irrespective of Vdd1 voltage.
> >
> >For DPLL1 (MPU), prior to any DVFS transition to OPP1, select CORECLK/4
> >	(CORECLK/2 for 3630) as DPLL1 bypass clock.
> >	For other OPPs select CORECLK/2 (CORECLK/1 for 3630) as DPLL1 bypass
> >	clock.
> 
> I think that you should not rely on the OMAP version to select the correct
> bypass freq. Both 3430 and 3630 can support CORECLK/2 at OPP50. CORECLK/4
> should be used only if OPP25 is selected. The fact that OPP25 will not be
> used on 3630 should not be captured here.
> The divider selection should be only based on the OPP. It will work the same
> way for all OMAP3 variants.
>

The problem is in 3430, OPP1 is OPP25 where as in 3630 OPP1 is OPP50 (as OPP25 is removed). So in the code, we still have to distinguish between 3430 and 3630.

> Regards,
> Benoit
> 
> >These configurations are typically set in bootloader. However bootloaders
> >may
> >mess up configuration and kernel with this chang ensures that system is in
> >a
> >known state.
> >
> >Signed-off-by: Vishwanath BS <vishwanath.bs@ti.com>
> >---
> > arch/arm/mach-omap2/cm-regbits-34xx.h |    4 ++--
> > arch/arm/mach-omap2/pm34xx.c          |   19 +++++++++++++++++++
> > arch/arm/mach-omap2/resource34xx.c    |   20 ++++++++++++++++++++
> > 3 files changed, 41 insertions(+), 2 deletions(-)
> > mode change 100644 => 100755 arch/arm/mach-omap2/cm-regbits-34xx.h
> > mode change 100644 => 100755 arch/arm/mach-omap2/pm34xx.c
> > mode change 100644 => 100755 arch/arm/mach-omap2/resource34xx.c
> >
> >diff --git a/arch/arm/mach-omap2/cm-regbits-34xx.h b/arch/arm/mach-
> >omap2/cm-regbits-34xx.h
> >index 6f2802b..0cf9a5d
> >--- a/arch/arm/mach-omap2/cm-regbits-34xx.h
> >+++ b/arch/arm/mach-omap2/cm-regbits-34xx.h
> >@@ -81,7 +81,7 @@
> >
> > /* CM_CLKSEL1_PLL_IVA2 */
> > #define OMAP3430_IVA2_CLK_SRC_SHIFT			19
> >-#define OMAP3430_IVA2_CLK_SRC_MASK			(0x3 << 19)
> >+#define OMAP3430_IVA2_CLK_SRC_MASK			(0x7 << 19)
> > #define OMAP3430_IVA2_DPLL_MULT_SHIFT			8
> > #define OMAP3430_IVA2_DPLL_MULT_MASK			(0x7ff << 8)
> > #define OMAP3430_IVA2_DPLL_DIV_SHIFT			0
> >@@ -126,7 +126,7 @@
> >
> > /* CM_CLKSEL1_PLL_MPU */
> > #define OMAP3430_MPU_CLK_SRC_SHIFT			19
> >-#define OMAP3430_MPU_CLK_SRC_MASK			(0x3 << 19)
> >+#define OMAP3430_MPU_CLK_SRC_MASK			(0x7 << 19)
> > #define OMAP3430_MPU_DPLL_MULT_SHIFT			8
> > #define OMAP3430_MPU_DPLL_MULT_MASK			(0x7ff << 8)
> > #define OMAP3430_MPU_DPLL_DIV_SHIFT			0
> >diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c
> >index c328164..f260072
> >--- a/arch/arm/mach-omap2/pm34xx.c
> >+++ b/arch/arm/mach-omap2/pm34xx.c
> >@@ -802,6 +802,25 @@ static void __init omap3_d2d_idle(void)
> >
> > static void __init prcm_setup_regs(void)
> > {
> >+	u32 cm_clksel1_mpu, cm_clksel1_iva2;
> >+
> >+	/*set Bypass clock dividers for MPU and IVA */
> >+	cm_clksel1_mpu = cm_read_mod_reg(MPU_MOD, CM_CLKSEL1);
> >+	cm_clksel1_iva2 = cm_read_mod_reg(OMAP3430_IVA2_MOD, CM_CLKSEL1);
> >+	if (cpu_is_omap3630()) {
> >+		cm_clksel1_iva2 = (cm_clksel1_iva2 &
> >~(OMAP3430_IVA2_CLK_SRC_MASK)) |
> >+					(0x2 << OMAP3430_IVA2_CLK_SRC_SHIFT);
> >+		cm_clksel1_mpu = (cm_clksel1_mpu &
> >~(OMAP3430_MPU_CLK_SRC_MASK)) |
> >+					(0x1 << OMAP3430_MPU_CLK_SRC_SHIFT);
> >+	} else if (cpu_is_omap34xx()) {
> >+		cm_clksel1_iva2 = (cm_clksel1_iva2 &
> >~(OMAP3430_IVA2_CLK_SRC_MASK)) |
> >+					(0x4 << OMAP3430_IVA2_CLK_SRC_SHIFT);
> >+		cm_clksel1_mpu = (cm_clksel1_mpu &
> >~(OMAP3430_MPU_CLK_SRC_MASK)) |
> >+					(0x2 << OMAP3430_MPU_CLK_SRC_SHIFT);
> >+		}
> >+	cm_write_mod_reg(cm_clksel1_iva2, OMAP3430_IVA2_MOD, CM_CLKSEL1);
> >+	cm_write_mod_reg(cm_clksel1_mpu, MPU_MOD, CM_CLKSEL1);
> >+
> > 	/* XXX Reset all wkdeps. This should be done when initializing
> > 	 * powerdomains */
> > 	prm_write_mod_reg(0, OMAP3430_IVA2_MOD, PM_WKDEP);
> >diff --git a/arch/arm/mach-omap2/resource34xx.c b/arch/arm/mach-
> >omap2/resource34xx.c
> >index 04be4d2..8c3f2b3
> >--- a/arch/arm/mach-omap2/resource34xx.c
> >+++ b/arch/arm/mach-omap2/resource34xx.c
> >@@ -242,9 +242,29 @@ static int program_opp_freq(int res, int target_level,
> >int current_level)
> > {
> > 	int ret = 0, l3_div;
> > 	int *curr_opp;
> >+	u32 cm_clksel1_mpu;
> >
> > 	lock_scratchpad_sem();
> > 	if (res == VDD1_OPP) {
> >+		if (target_level == VDD1_OPP1) {
> >+			cm_clksel1_mpu = cm_read_mod_reg(MPU_MOD,
> CM_CLKSEL1);
> >+			if (cpu_is_omap3630())
> >+				cm_clksel1_mpu = (cm_clksel1_mpu &
> >~(OMAP3430_MPU_CLK_SRC_MASK)) |
> >+							(0x2 <<
> >OMAP3430_MPU_CLK_SRC_SHIFT);
> >+			else if (cpu_is_omap34xx())
> >+				cm_clksel1_mpu = (cm_clksel1_mpu &
> >~(OMAP3430_MPU_CLK_SRC_MASK)) |
> >+							(0x4 <<
> >OMAP3430_MPU_CLK_SRC_SHIFT);
> >+			cm_write_mod_reg(cm_clksel1_mpu, MPU_MOD, CM_CLKSEL1);
> >+		} else if ((current_level == VDD1_OPP1) && (target_level !=
> >VDD1_OPP1)) {
> >+			cm_clksel1_mpu = cm_read_mod_reg(MPU_MOD,
> CM_CLKSEL1);
> >+			if (cpu_is_omap3630())
> >+				cm_clksel1_mpu = (cm_clksel1_mpu &
> >~(OMAP3430_MPU_CLK_SRC_MASK)) |
> >+							(0x1 <<
> >OMAP3430_MPU_CLK_SRC_SHIFT);
> >+			else if (cpu_is_omap34xx())
> >+				cm_clksel1_mpu = (cm_clksel1_mpu &
> >~(OMAP3430_MPU_CLK_SRC_MASK)) |
> >+							(0x2 <<
> >OMAP3430_MPU_CLK_SRC_SHIFT);
> >+			cm_write_mod_reg(cm_clksel1_mpu, MPU_MOD, CM_CLKSEL1);
> >+		}
> > 		curr_opp = &curr_vdd1_opp;
> > 		clk_set_rate(dpll1_clk, mpu_opps[target_level].rate);
> > 		clk_set_rate(dpll2_clk, dsp_opps[target_level].rate);
> >--
> >1.5.6.3
> >
> >--
> >To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> >the body of a message to majordomo@vger.kernel.org
> >More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> Texas Instruments France SA, 821 Avenue Jack Kilby, 06270 Villeneuve Loubet. 036
> 420 040 R.C.S Antibes. Capital de EUR 753.920
> 


  reply	other threads:[~2009-12-04 10:28 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-04  9:22 [PATCH]OMAP3 PM: Fix for DSP Crash at OPP 1 and 2 under DVFS+SR operation Vishwanath BS
2009-12-04 10:16 ` Cousson, Benoit
2009-12-04 10:28   ` Sripathy, Vishwanath [this message]
2009-12-04 10:57     ` Cousson, Benoit
2009-12-04 11:35       ` Sripathy, Vishwanath
2009-12-04 11:46         ` Cousson, Benoit
2009-12-04 19:06 ` Tony Lindgren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=FCCFB4CDC6E5564B9182F639FC35608702FAA0C845@dbde02.ent.ti.com \
    --to=vishwanath.bs@ti.com \
    --cc=b-cousson@ti.com \
    --cc=linux-omap@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.