From: p.zabel@pengutronix.de (Philipp Zabel)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 6/7] ARM i.MX5: Add System Reset Controller (SRC) support for i.MX51 and i.MX53
Date: Thu, 17 Jan 2013 11:45:25 +0100 [thread overview]
Message-ID: <1358419525.2411.127.camel@pizza.hi.pengutronix.de> (raw)
In-Reply-To: <20130117061200.GK26179@S2101-09.ap.freescale.net>
Hi Shawn,
thank you for your comments.
Am Donnerstag, den 17.01.2013, 14:12 +0800 schrieb Shawn Guo:
> On Wed, Jan 16, 2013 at 05:13:06PM +0100, Philipp Zabel wrote:
> > The SRC in i.MX51 and i.MX53 is similar to the one in i.MX6q minus
> > the IPU2 reset line and multi core CPU reset/enable bits.
> >
> > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> > ---
> > arch/arm/mach-imx/Kconfig | 1 +
> > arch/arm/mach-imx/common.h | 3 ++-
> > arch/arm/mach-imx/mach-imx6q.c | 2 +-
> > arch/arm/mach-imx/mm-imx5.c | 2 ++
> > arch/arm/mach-imx/src.c | 14 +++++++++++++-
> > 5 files changed, 19 insertions(+), 3 deletions(-)
> >
> > diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
> > index 3e628fd..d7924e5 100644
> > --- a/arch/arm/mach-imx/Kconfig
> > +++ b/arch/arm/mach-imx/Kconfig
> > @@ -829,6 +829,7 @@ config SOC_IMX53
> > select ARCH_MX53
> > select HAVE_CAN_FLEXCAN if CAN
> > select IMX_HAVE_PLATFORM_IMX2_WDT
> > + select HAVE_IMX_SRC
>
> Please sort it in name. Should we manage to have it selected for imx51
> too, since you have code added for imx51 below?
Yes, I'll add that.
> > select PINCTRL
> > select PINCTRL_IMX53
> > select SOC_IMX5
> > diff --git a/arch/arm/mach-imx/common.h b/arch/arm/mach-imx/common.h
> > index 7191ab4..f36be3c 100644
> > --- a/arch/arm/mach-imx/common.h
> > +++ b/arch/arm/mach-imx/common.h
> > @@ -133,7 +133,8 @@ static inline void imx_smp_prepare(void) {}
> > #endif
> > extern void imx_enable_cpu(int cpu, bool enable);
> > extern void imx_set_cpu_jump(int cpu, void *jump_addr);
> > -extern void imx_src_init(void);
> > +extern void imx5_src_init(void);
> > +extern void imx6q_src_init(void);
> > extern void imx_src_prepare_restart(void);
> > extern void imx_gpc_init(void);
> > extern void imx_gpc_pre_suspend(void);
> > diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c
> > index cd277a0..b1e076c 100644
> > --- a/arch/arm/mach-imx/mach-imx6q.c
> > +++ b/arch/arm/mach-imx/mach-imx6q.c
> > @@ -229,7 +229,7 @@ static const struct of_device_id imx6q_irq_match[] __initconst = {
> > static void __init imx6q_init_irq(void)
> > {
> > l2x0_of_init(0, ~0UL);
> > - imx_src_init();
> > + imx6q_src_init();
>
> I'm not sure this is necessary. See below ...
>
> > imx_gpc_init();
> > of_irq_init(imx6q_irq_match);
> > }
> > diff --git a/arch/arm/mach-imx/mm-imx5.c b/arch/arm/mach-imx/mm-imx5.c
> > index 79d71cf..53f87be 100644
> > --- a/arch/arm/mach-imx/mm-imx5.c
> > +++ b/arch/arm/mach-imx/mm-imx5.c
> > @@ -106,6 +106,7 @@ void __init imx51_init_early(void)
> > mxc_set_cpu_type(MXC_CPU_MX51);
> > mxc_iomux_v3_init(MX51_IO_ADDRESS(MX51_IOMUXC_BASE_ADDR));
> > mxc_arch_reset_init(MX51_IO_ADDRESS(MX51_WDOG1_BASE_ADDR));
> > + imx5_src_init();
> > }
> >
> > void __init imx53_init_early(void)
> > @@ -113,6 +114,7 @@ void __init imx53_init_early(void)
> > mxc_set_cpu_type(MXC_CPU_MX53);
> > mxc_iomux_v3_init(MX53_IO_ADDRESS(MX53_IOMUXC_BASE_ADDR));
> > mxc_arch_reset_init(MX53_IO_ADDRESS(MX53_WDOG1_BASE_ADDR));
> > + imx5_src_init();
> > }
> >
> > void __init mx50_init_irq(void)
> > diff --git a/arch/arm/mach-imx/src.c b/arch/arm/mach-imx/src.c
> > index 41687c6..e350250 100644
> > --- a/arch/arm/mach-imx/src.c
> > +++ b/arch/arm/mach-imx/src.c
> > @@ -125,7 +125,19 @@ void imx_src_prepare_restart(void)
> > writel_relaxed(0, src_base + SRC_GPR1);
> > }
> >
> > -void __init imx_src_init(void)
> > +void __init imx5_src_init(void)
> > +{
> > + struct device_node *np;
> > +
> > + np = of_find_compatible_node(NULL, NULL, "fsl,imx5-src");
>
> In fsl,imx-src.txt, we have
>
> compatible: Should be "fsl,<chip>-src"
>
> But imx5 is not a chip name. I would suggest we have the imx-src driver
> only look for compatible "fsl,imx51-src", and for dts
>
> imx51: compatible = "fsl,imx51-src";
> imx53: compatible = "fsl,imx53-src", "fsl,imx51-src";
> imx6q: compatible = "fsl,imx6q-src", "fsl,imx51-src";
>
> so that we do not need imx5_src_init and imx6q_src_init which are
> basically doing the same thing.
So we should unconditionally clear the BP_SRC_SCR_WARM_RESET_ENABLE bit
on i.MX5, too? I'll try that.
> > + src_base = of_iomap(np, 0);
> > + WARN_ON(!src_base);
>
> As imx51 still supports non-DT boot, we should have a check on np.
> If np is NULL, mostly likely it's a non-DT boot on imx51, and we
> should bail out instead of giving a fat warning.
Ok. I'll apply this and the comments from your other mails before
sending the next version.
regards
Philipp
next prev parent reply other threads:[~2013-01-17 10:45 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-16 16:13 [RFC PATCH 0/5] Reset controller API to reset IP modules on i.MX5 and i.MX6 Philipp Zabel
2013-01-16 16:13 ` [PATCH 1/7] dt: describe base reset signal binding Philipp Zabel
2013-01-16 22:06 ` Stephen Warren
2013-01-16 16:13 ` [PATCH 2/7] reset: Add reset controller API Philipp Zabel
2013-01-16 20:15 ` Sascha Hauer
2013-01-16 22:15 ` Stephen Warren
2013-01-17 10:45 ` Philipp Zabel
2013-01-17 16:55 ` Stephen Warren
2013-01-17 5:16 ` Shawn Guo
2013-01-16 16:13 ` [PATCH 3/7] ARM i.MX6q: Add GPU, VPU, IPU, and OpenVG resets to System Reset Controller (SRC) Philipp Zabel
2013-01-17 5:31 ` Shawn Guo
2013-01-18 19:57 ` Matt Sealey
2013-01-21 9:52 ` Philipp Zabel
2013-01-21 17:47 ` Matt Sealey
2013-01-22 7:50 ` Shawn Guo
2013-01-16 16:13 ` [PATCH 4/7] ARM i.MX6q: Link system reset controller (SRC) to IPU in DT Philipp Zabel
2013-01-17 5:34 ` Shawn Guo
2013-01-16 16:13 ` [PATCH 5/7] staging: drm/imx: Use SRC to reset IPU Philipp Zabel
2013-01-16 16:13 ` [PATCH 6/7] ARM i.MX5: Add System Reset Controller (SRC) support for i.MX51 and i.MX53 Philipp Zabel
2013-01-17 6:12 ` Shawn Guo
2013-01-17 10:45 ` Philipp Zabel [this message]
2013-01-16 16:13 ` [PATCH 7/7] ARM i.MX5: Add system reset controller (SRC) to i.MX51 and i.MX53 device tree Philipp Zabel
2013-01-16 22:19 ` Stephen Warren
2013-01-17 6:37 ` Shawn Guo
2013-01-17 10:45 ` Philipp Zabel
2013-01-16 18:46 ` [RFC PATCH 0/5] Reset controller API to reset IP modules on i.MX5 and i.MX6 Marek Vasut
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=1358419525.2411.127.camel@pizza.hi.pengutronix.de \
--to=p.zabel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).