From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] mx28: fix clearing of IRQs in power init
Date: Tue, 10 Jan 2012 00:10:59 +0100 [thread overview]
Message-ID: <201201100010.59920.marek.vasut@gmail.com> (raw)
In-Reply-To: <4F0B4C9E.5060306@itwatchdogs.com>
> There are 2 locations in the power init code for the mx28 where IRQs are
> not being cleared because incorrect methods to clear those bits were being
> used. This was causing my board to get stuck waiting for
> POWER_CTRL_VDD5V_DROOP_IRQ to clear. Using the correct method to clear
> the IRQs fixes it.
>
> Signed-off-by: Zach Sadecki <zach@itwatchdogs.com>
> Cc: Wolfgang Denk <wd@denx.de>
> Cc: Stefano Babic <sbabic@denx.de>
> ---
> arch/arm/cpu/arm926ejs/mx28/spl_power_init.c | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/cpu/arm926ejs/mx28/spl_power_init.c
> b/arch/arm/cpu/arm926ejs/mx28/spl_power_init.c index a4dc2a3..380b120
> 100644
> --- a/arch/arm/cpu/arm926ejs/mx28/spl_power_init.c
> +++ b/arch/arm/cpu/arm926ejs/mx28/spl_power_init.c
> @@ -240,8 +240,8 @@ void mx28_enable_4p2_dcdc_input(int xfer)
> clrbits_le32(&power_regs->hw_power_minpwr, POWER_MINPWR_PWD_BO);
>
> while (readl(&power_regs->hw_power_ctrl) & POWER_CTRL_VBUS_VALID_IRQ)
> - clrbits_le32(&power_regs->hw_power_ctrl,
> - POWER_CTRL_VBUS_VALID_IRQ);
> + writel(POWER_CTRL_VBUS_VALID_IRQ,
> + &power_regs->hw_power_ctrl_clr);
>
> if (prev_5v_brnout) {
> writel(POWER_5VCTRL_PWDN_5VBRNOUT,
> @@ -256,8 +256,8 @@ void mx28_enable_4p2_dcdc_input(int xfer)
> }
>
> while (readl(&power_regs->hw_power_ctrl) & POWER_CTRL_VDD5V_DROOP_IRQ)
> - clrbits_le32(&power_regs->hw_power_ctrl,
> - POWER_CTRL_VDD5V_DROOP_IRQ);
> + writel(POWER_CTRL_VDD5V_DROOP_IRQ,
> + &power_regs->hw_power_ctrl_clr);
>
> if (prev_5v_droop)
> clrbits_le32(&power_regs->hw_power_ctrl,
Hello,
this is an impressive catch! I did investigation of the Freescale bootlets code
and found out you're right, it's an SCT register. So:
Acked-by: Marek Vasut <marek.vasut@gmail.com>
M
next prev parent reply other threads:[~2012-01-09 23:10 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-09 20:22 [U-Boot] [PATCH] mx28: fix clearing of IRQs in power init Zach Sadecki
2012-01-09 23:10 ` Marek Vasut [this message]
2012-01-11 8:06 ` Stefano Babic
-- strict thread matches above, loose matches on Subject: below --
2012-01-09 20:22 Zach Sadecki
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=201201100010.59920.marek.vasut@gmail.com \
--to=marek.vasut@gmail.com \
--cc=u-boot@lists.denx.de \
/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