From: Thara Gopinath <thara@ti.com>
To: linux-omap@vger.kernel.org
Cc: khilman@deeprootsystems.com, paul@pwsan.com, nm@ti.com,
b-cousson@ti.com, vishwanath.bs@ti.com, sawant@ti.com,
Thara Gopinath <thara@ti.com>
Subject: [PATCHv2 1/3] OMAP3: PM: Fix crash when enabling SmartReflex on non-supported OMAPs.
Date: Wed, 31 Mar 2010 12:00:12 +0530 [thread overview]
Message-ID: <1270017014-27704-2-git-send-email-thara@ti.com> (raw)
In-Reply-To: <1270017014-27704-1-git-send-email-thara@ti.com>
This patch sets and unsets is_sr_reset is appropriate places so that
trying to enable smart reflex in a non-supported OMAP chip does not
lead to unnecessary crash. Basically today if sr_enable fails,
sr_disable will crash due to accessing sr registers when sr clocks
are not turned on. By checking on is_sr_reset flag and setting and
unsetting this flag appropriately this crash is fixed in this
patch.
Signed-off-by: Thara Gopinath <thara@ti.com>
---
arch/arm/mach-omap2/smartreflex.c | 31 +++++++++++++++++++++----------
1 files changed, 21 insertions(+), 10 deletions(-)
diff --git a/arch/arm/mach-omap2/smartreflex.c b/arch/arm/mach-omap2/smartreflex.c
index 1d7d2e6..3f4b47b 100644
--- a/arch/arm/mach-omap2/smartreflex.c
+++ b/arch/arm/mach-omap2/smartreflex.c
@@ -115,9 +115,14 @@ static int sr_clk_enable(struct omap_sr *sr)
{
struct omap_smartreflex_data *pdata = sr->pdev->dev.platform_data;
+ if (!sr->is_sr_reset)
+ return 0;
+
if (pdata->device_enable)
pdata->device_enable(sr->pdev);
+ sr->is_sr_reset = 0;
+
return 0;
}
@@ -125,6 +130,9 @@ static void sr_clk_disable(struct omap_sr *sr)
{
struct omap_smartreflex_data *pdata = sr->pdev->dev.platform_data;
+ if (sr->is_sr_reset)
+ return;
+
if (pdata->device_idle)
pdata->device_idle(sr->pdev);
@@ -308,7 +316,6 @@ static void sr_configure(struct omap_sr *sr)
ERRCONFIG_MCUVALIDINTEN | ERRCONFIG_MCUVALIDINTST |
ERRCONFIG_MCUBOUNDINTEN | ERRCONFIG_MCUBOUNDINTST));
}
- sr->is_sr_reset = 0;
}
static void sr_start_vddautocomp(int srid)
@@ -329,8 +336,7 @@ static void sr_start_vddautocomp(int srid)
sr->is_autocomp_active = 1;
if (!sr_class->enable(srid)) {
sr->is_autocomp_active = 0;
- if (sr->is_sr_reset == 1)
- sr_clk_disable(sr);
+ sr_clk_disable(sr);
}
}
@@ -350,8 +356,10 @@ static void sr_stop_vddautocomp(int srid)
}
if (sr->is_autocomp_active == 1) {
- sr_class->disable(srid);
- sr_clk_disable(sr);
+ if (!sr->is_sr_reset) {
+ sr_class->disable(srid);
+ sr_clk_disable(sr);
+ }
sr->is_autocomp_active = 0;
}
}
@@ -431,6 +439,11 @@ int sr_enable(int srid, unsigned long volt)
/* Enable the clocks and configure SR */
sr_clk_enable(sr);
+
+ /* Check if SR is already enabled. If yes do nothing */
+ if (sr_read_reg(sr, SRCONFIG) & SRCONFIG_SRENABLE)
+ return true;
+
sr_configure(sr);
sr_write_reg(sr, NVALUERECIPROCAL, nvalue_reciprocal);
@@ -518,10 +531,8 @@ void omap_smartreflex_enable(int srid)
}
if (sr->is_autocomp_active == 1) {
- if (sr->is_sr_reset == 1) {
- if (!sr_class->enable(srid))
- sr_clk_disable(sr);
- }
+ if (!sr_class->enable(srid))
+ sr_clk_disable(sr);
}
}
@@ -550,7 +561,7 @@ void omap_smartreflex_disable(int srid)
}
if (sr->is_autocomp_active == 1) {
- if (sr->is_sr_reset == 0) {
+ if (!sr->is_sr_reset) {
sr_class->disable(srid);
/* Disable SR clk */
sr_clk_disable(sr);
--
1.7.0.rc1.33.g07cf0f
next prev parent reply other threads:[~2010-03-31 6:30 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-31 6:30 [PATCHv2 0/3] OMAP3: PM: OMAP3630 support for smartreflex driver Thara Gopinath
2010-03-31 6:30 ` Thara Gopinath [this message]
2010-03-31 6:30 ` [PATCHv2 2/3] OMAP3: PM: Smartreflex IP update changes for OMAP3630 Thara Gopinath
2010-03-31 6:30 ` [PATCHv2 3/3] OMAP3: PM: Adding OMAP3630 support in smartreflex driver Thara Gopinath
2010-03-31 11:05 ` Nishanth Menon
2010-03-31 11:07 ` [PATCHv2 1/3] OMAP3: PM: Fix crash when enabling SmartReflex on non-supported OMAPs Nishanth Menon
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=1270017014-27704-2-git-send-email-thara@ti.com \
--to=thara@ti.com \
--cc=b-cousson@ti.com \
--cc=khilman@deeprootsystems.com \
--cc=linux-omap@vger.kernel.org \
--cc=nm@ti.com \
--cc=paul@pwsan.com \
--cc=sawant@ti.com \
--cc=vishwanath.bs@ti.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox