* [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock
@ 2014-04-16 18:33 Iain Paton
2014-04-17 5:01 ` Shawn Guo
2014-04-17 12:41 ` Vladimir Zapolskiy
0 siblings, 2 replies; 5+ messages in thread
From: Iain Paton @ 2014-04-16 18:33 UTC (permalink / raw)
To: linux-arm-kernel
Compared to i.MX6 Quad/Dual the CCM_CCGR1 register in the i.MX6 Solo/DualLite
replaces the ecspi5 clock with the i2c4 clock.
Handle this difference using cpu_is_imx6dl().
Signed-off-by: Iain Paton <ipaton0@gmail.com>
---
arch/arm/mach-imx/clk-imx6q.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
index b0e7f9d..2961b16 100644
--- a/arch/arm/mach-imx/clk-imx6q.c
+++ b/arch/arm/mach-imx/clk-imx6q.c
@@ -352,7 +352,13 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
clk[ecspi2] = imx_clk_gate2("ecspi2", "ecspi_root", base + 0x6c, 2);
clk[ecspi3] = imx_clk_gate2("ecspi3", "ecspi_root", base + 0x6c, 4);
clk[ecspi4] = imx_clk_gate2("ecspi4", "ecspi_root", base + 0x6c, 6);
- clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
+ if (cpu_is_imx6dl())
+ /*
+ * ecspi5 is replaced with i2c4 on imx6dl & imx6s
+ */
+ clk[ecspi5] = imx_clk_gate2("i2c4", "ipg_per", base + 0x6c, 8);
+ else
+ clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
clk[enet] = imx_clk_gate2("enet", "ipg", base + 0x6c, 10);
clk[esai] = imx_clk_gate2("esai", "esai_podf", base + 0x6c, 16);
clk[gpt_ipg] = imx_clk_gate2("gpt_ipg", "ipg", base + 0x6c, 20);
--
1.8.5.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock
2014-04-16 18:33 [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock Iain Paton
@ 2014-04-17 5:01 ` Shawn Guo
2014-04-17 12:41 ` Vladimir Zapolskiy
1 sibling, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2014-04-17 5:01 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Apr 16, 2014 at 07:33:24PM +0100, Iain Paton wrote:
> Compared to i.MX6 Quad/Dual the CCM_CCGR1 register in the i.MX6 Solo/DualLite
> replaces the ecspi5 clock with the i2c4 clock.
>
> Handle this difference using cpu_is_imx6dl().
>
> Signed-off-by: Iain Paton <ipaton0@gmail.com>
> ---
> arch/arm/mach-imx/clk-imx6q.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
> index b0e7f9d..2961b16 100644
> --- a/arch/arm/mach-imx/clk-imx6q.c
> +++ b/arch/arm/mach-imx/clk-imx6q.c
> @@ -352,7 +352,13 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
> clk[ecspi2] = imx_clk_gate2("ecspi2", "ecspi_root", base + 0x6c, 2);
> clk[ecspi3] = imx_clk_gate2("ecspi3", "ecspi_root", base + 0x6c, 4);
> clk[ecspi4] = imx_clk_gate2("ecspi4", "ecspi_root", base + 0x6c, 6);
> - clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
> + if (cpu_is_imx6dl())
> + /*
> + * ecspi5 is replaced with i2c4 on imx6dl & imx6s
> + */
Single line comment should be like /* bla ... */.
I fixed it up and applied the patch. Thanks.
Shawn
> + clk[ecspi5] = imx_clk_gate2("i2c4", "ipg_per", base + 0x6c, 8);
> + else
> + clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
> clk[enet] = imx_clk_gate2("enet", "ipg", base + 0x6c, 10);
> clk[esai] = imx_clk_gate2("esai", "esai_podf", base + 0x6c, 16);
> clk[gpt_ipg] = imx_clk_gate2("gpt_ipg", "ipg", base + 0x6c, 20);
> --
> 1.8.5.1
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock
2014-04-16 18:33 [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock Iain Paton
2014-04-17 5:01 ` Shawn Guo
@ 2014-04-17 12:41 ` Vladimir Zapolskiy
2014-04-17 13:00 ` Shawn Guo
1 sibling, 1 reply; 5+ messages in thread
From: Vladimir Zapolskiy @ 2014-04-17 12:41 UTC (permalink / raw)
To: linux-arm-kernel
On 04/16/14 21:33, Iain Paton wrote:
> Compared to i.MX6 Quad/Dual the CCM_CCGR1 register in the i.MX6 Solo/DualLite
> replaces the ecspi5 clock with the i2c4 clock.
>
> Handle this difference using cpu_is_imx6dl().
>
> Signed-off-by: Iain Paton<ipaton0@gmail.com>
> ---
> arch/arm/mach-imx/clk-imx6q.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
> index b0e7f9d..2961b16 100644
> --- a/arch/arm/mach-imx/clk-imx6q.c
> +++ b/arch/arm/mach-imx/clk-imx6q.c
> @@ -352,7 +352,13 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
> clk[ecspi2] = imx_clk_gate2("ecspi2", "ecspi_root", base + 0x6c, 2);
> clk[ecspi3] = imx_clk_gate2("ecspi3", "ecspi_root", base + 0x6c, 4);
> clk[ecspi4] = imx_clk_gate2("ecspi4", "ecspi_root", base + 0x6c, 6);
> - clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
> + if (cpu_is_imx6dl())
> + /*
> + * ecspi5 is replaced with i2c4 on imx6dl& imx6s
> + */
> + clk[ecspi5] = imx_clk_gate2("i2c4", "ipg_per", base + 0x6c, 8);
Is it good enough to reuse ecspi5 enum value here or may it be better to
introduce a new one i2c4 equal to ecspi5?
> + else
> + clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
> clk[enet] = imx_clk_gate2("enet", "ipg", base + 0x6c, 10);
> clk[esai] = imx_clk_gate2("esai", "esai_podf", base + 0x6c, 16);
> clk[gpt_ipg] = imx_clk_gate2("gpt_ipg", "ipg", base + 0x6c, 20);
With best wishes,
Vladimir
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock
2014-04-17 12:41 ` Vladimir Zapolskiy
@ 2014-04-17 13:00 ` Shawn Guo
2014-04-18 13:25 ` Iain Paton
0 siblings, 1 reply; 5+ messages in thread
From: Shawn Guo @ 2014-04-17 13:00 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Apr 17, 2014 at 03:41:11PM +0300, Vladimir Zapolskiy wrote:
> On 04/16/14 21:33, Iain Paton wrote:
> >Compared to i.MX6 Quad/Dual the CCM_CCGR1 register in the i.MX6 Solo/DualLite
> >replaces the ecspi5 clock with the i2c4 clock.
> >
> >Handle this difference using cpu_is_imx6dl().
> >
> >Signed-off-by: Iain Paton<ipaton0@gmail.com>
> >---
> > arch/arm/mach-imx/clk-imx6q.c | 8 +++++++-
> > 1 file changed, 7 insertions(+), 1 deletion(-)
> >
> >diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c
> >index b0e7f9d..2961b16 100644
> >--- a/arch/arm/mach-imx/clk-imx6q.c
> >+++ b/arch/arm/mach-imx/clk-imx6q.c
> >@@ -352,7 +352,13 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
> > clk[ecspi2] = imx_clk_gate2("ecspi2", "ecspi_root", base + 0x6c, 2);
> > clk[ecspi3] = imx_clk_gate2("ecspi3", "ecspi_root", base + 0x6c, 4);
> > clk[ecspi4] = imx_clk_gate2("ecspi4", "ecspi_root", base + 0x6c, 6);
> >- clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
> >+ if (cpu_is_imx6dl())
> >+ /*
> >+ * ecspi5 is replaced with i2c4 on imx6dl& imx6s
> >+ */
> >+ clk[ecspi5] = imx_clk_gate2("i2c4", "ipg_per", base + 0x6c, 8);
>
> Is it good enough to reuse ecspi5 enum value here or may it be
> better to introduce a new one i2c4 equal to ecspi5?
With the comment in there, it's just fine to reuse the enum, I think.
Shawn
>
> >+ else
> >+ clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
> > clk[enet] = imx_clk_gate2("enet", "ipg", base + 0x6c, 10);
> > clk[esai] = imx_clk_gate2("esai", "esai_podf", base + 0x6c, 16);
> > clk[gpt_ipg] = imx_clk_gate2("gpt_ipg", "ipg", base + 0x6c, 20);
>
> With best wishes,
> Vladimir
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock
2014-04-17 13:00 ` Shawn Guo
@ 2014-04-18 13:25 ` Iain Paton
0 siblings, 0 replies; 5+ messages in thread
From: Iain Paton @ 2014-04-18 13:25 UTC (permalink / raw)
To: linux-arm-kernel
On 17/04/14 14:00, Shawn Guo wrote:
> On Thu, Apr 17, 2014 at 03:41:11PM +0300, Vladimir Zapolskiy wrote:
>> On 04/16/14 21:33, Iain Paton wrote:
>>> - clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
>>> + if (cpu_is_imx6dl())
>>> + /*
>>> + * ecspi5 is replaced with i2c4 on imx6dl& imx6s
>>> + */
>>> + clk[ecspi5] = imx_clk_gate2("i2c4", "ipg_per", base + 0x6c, 8);
>>
>> Is it good enough to reuse ecspi5 enum value here or may it be
>> better to introduce a new one i2c4 equal to ecspi5?
>
> With the comment in there, it's just fine to reuse the enum, I think.
I wasn't sure about that, but couldn't find anywhere else the enum was used. In
the dts the clock is simply referenced as <&clks 116> so you have to work that
back manually.
If you think it's worth it to add something to
Documentation/devicetree/bindings/clock/imx6q-clock.txt so that the difference
is documented I can send a patch for that.
Iain
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-04-18 13:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-16 18:33 [PATCH] ARM: imx6: clk: i.MX6 DualLite/Solo i2c4 clock Iain Paton
2014-04-17 5:01 ` Shawn Guo
2014-04-17 12:41 ` Vladimir Zapolskiy
2014-04-17 13:00 ` Shawn Guo
2014-04-18 13:25 ` Iain Paton
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).