linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4] clk: qoriq: add support for lx2160a
@ 2019-04-26  6:53 Vabhav Sharma
  2019-05-21  5:43 ` Vabhav Sharma
  2019-06-25 22:58 ` Stephen Boyd
  0 siblings, 2 replies; 5+ messages in thread
From: Vabhav Sharma @ 2019-04-26  6:53 UTC (permalink / raw)
  To: linux-kernel, linux-clk
  Cc: sboyd, mturquette, Vabhav Sharma, Andy Tang, Yogesh Narayan Gaur

Add clockgen support and configuration for NXP SoC lx2160a
with compatible property as "fsl,lx2160a-clockgen".

Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
Signed-off-by: Vabhav Sharma <vabhav.sharma@nxp.com>
Acked-by: Scott Wood <oss@buserror.net>
Acked-by: Stephen Boyd <sboyd@kernel.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
---
Changes for v4:
- Incorporated review comments from Stephen Boyd
 
Changes for v3:
- Incorporated review comments of Rafael J. Wysocki
- Updated commit message

Changes for v2:
- Subject line updated

 drivers/clk/clk-qoriq.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c
index 3d51d7c..1a15201 100644
--- a/drivers/clk/clk-qoriq.c
+++ b/drivers/clk/clk-qoriq.c
@@ -570,6 +570,17 @@ static const struct clockgen_chipinfo chipinfo[] = {
 		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
 	},
 	{
+		.compat = "fsl,lx2160a-clockgen",
+		.cmux_groups = {
+			&clockgen2_cmux_cga12, &clockgen2_cmux_cgb
+		},
+		.cmux_to_group = {
+			0, 0, 0, 0, 1, 1, 1, 1, -1
+		},
+		.pll_mask = 0x37,
+		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
+	},
+	{
 		.compat = "fsl,p2041-clockgen",
 		.guts_compat = "fsl,qoriq-device-config-1.0",
 		.init_periph = p2041_init_periph,
@@ -1427,6 +1438,7 @@ CLK_OF_DECLARE(qoriq_clockgen_ls1043a, "fsl,ls1043a-clockgen", clockgen_init);
 CLK_OF_DECLARE(qoriq_clockgen_ls1046a, "fsl,ls1046a-clockgen", clockgen_init);
 CLK_OF_DECLARE(qoriq_clockgen_ls1088a, "fsl,ls1088a-clockgen", clockgen_init);
 CLK_OF_DECLARE(qoriq_clockgen_ls2080a, "fsl,ls2080a-clockgen", clockgen_init);
+CLK_OF_DECLARE(qoriq_clockgen_lx2160a, "fsl,lx2160a-clockgen", clockgen_init);
 CLK_OF_DECLARE(qoriq_clockgen_p2041, "fsl,p2041-clockgen", clockgen_init);
 CLK_OF_DECLARE(qoriq_clockgen_p3041, "fsl,p3041-clockgen", clockgen_init);
 CLK_OF_DECLARE(qoriq_clockgen_p4080, "fsl,p4080-clockgen", clockgen_init);
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* RE: [PATCH v4] clk: qoriq: add support for lx2160a
  2019-04-26  6:53 [PATCH v4] clk: qoriq: add support for lx2160a Vabhav Sharma
@ 2019-05-21  5:43 ` Vabhav Sharma
  2019-05-23 14:05   ` Vabhav Sharma
  2019-06-25 22:58 ` Stephen Boyd
  1 sibling, 1 reply; 5+ messages in thread
From: Vabhav Sharma @ 2019-05-21  5:43 UTC (permalink / raw)
  To: linux-kernel, linux-clk, sboyd; +Cc: mturquette, Andy Tang, Yogesh Narayan Gaur

Hello Stephen, 
I have incorporated review comments from https://patchwork.kernel.org/patch/10917171/

A gentle reminder to apply the patch https://patchwork.kernel.org/patch/10918407/.

Regards,
Vabhav

> -----Original Message-----
> From: Vabhav Sharma <vabhav.sharma@nxp.com>
> Sent: Friday, April 26, 2019 12:24 PM
> To: linux-kernel@vger.kernel.org; linux-clk@vger.kernel.org
> Cc: sboyd@kernel.org; mturquette@baylibre.com; Vabhav Sharma
> <vabhav.sharma@nxp.com>; Andy Tang <andy.tang@nxp.com>; Yogesh
> Narayan Gaur <yogeshnarayan.gaur@nxp.com>
> Subject: [PATCH v4] clk: qoriq: add support for lx2160a
> 
> Add clockgen support and configuration for NXP SoC lx2160a with
> compatible property as "fsl,lx2160a-clockgen".
> 
> Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
> Signed-off-by: Vabhav Sharma <vabhav.sharma@nxp.com>
> Acked-by: Scott Wood <oss@buserror.net>
> Acked-by: Stephen Boyd <sboyd@kernel.org>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> ---
> Changes for v4:
> - Incorporated review comments from Stephen Boyd
> 
> Changes for v3:
> - Incorporated review comments of Rafael J. Wysocki
> - Updated commit message
> 
> Changes for v2:
> - Subject line updated
> 
>  drivers/clk/clk-qoriq.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c index
> 3d51d7c..1a15201 100644
> --- a/drivers/clk/clk-qoriq.c
> +++ b/drivers/clk/clk-qoriq.c
> @@ -570,6 +570,17 @@ static const struct clockgen_chipinfo chipinfo[] = {
>  		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
>  	},
>  	{
> +		.compat = "fsl,lx2160a-clockgen",
> +		.cmux_groups = {
> +			&clockgen2_cmux_cga12, &clockgen2_cmux_cgb
> +		},
> +		.cmux_to_group = {
> +			0, 0, 0, 0, 1, 1, 1, 1, -1
> +		},
> +		.pll_mask = 0x37,
> +		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
> +	},
> +	{
>  		.compat = "fsl,p2041-clockgen",
>  		.guts_compat = "fsl,qoriq-device-config-1.0",
>  		.init_periph = p2041_init_periph,
> @@ -1427,6 +1438,7 @@ CLK_OF_DECLARE(qoriq_clockgen_ls1043a,
> "fsl,ls1043a-clockgen", clockgen_init);
> CLK_OF_DECLARE(qoriq_clockgen_ls1046a, "fsl,ls1046a-clockgen",
> clockgen_init);  CLK_OF_DECLARE(qoriq_clockgen_ls1088a, "fsl,ls1088a-
> clockgen", clockgen_init);  CLK_OF_DECLARE(qoriq_clockgen_ls2080a,
> "fsl,ls2080a-clockgen", clockgen_init);
> +CLK_OF_DECLARE(qoriq_clockgen_lx2160a, "fsl,lx2160a-clockgen",
> +clockgen_init);
>  CLK_OF_DECLARE(qoriq_clockgen_p2041, "fsl,p2041-clockgen", clockgen_init);
> CLK_OF_DECLARE(qoriq_clockgen_p3041, "fsl,p3041-clockgen", clockgen_init);
> CLK_OF_DECLARE(qoriq_clockgen_p4080, "fsl,p4080-clockgen", clockgen_init);
> --
> 2.7.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH v4] clk: qoriq: add support for lx2160a
  2019-05-21  5:43 ` Vabhav Sharma
@ 2019-05-23 14:05   ` Vabhav Sharma
  2019-06-13  6:47     ` Andy Tang
  0 siblings, 1 reply; 5+ messages in thread
From: Vabhav Sharma @ 2019-05-23 14:05 UTC (permalink / raw)
  To: linux-kernel, linux-clk, mturquette, sboyd
  Cc: mturquette, sboyd, Andy Tang, Yogesh Narayan Gaur

> -----Original Message-----
> From: Vabhav Sharma
> Sent: Tuesday, May 21, 2019 11:14 AM
> To: linux-kernel@vger.kernel.org; linux-clk@vger.kernel.org;
> sboyd@kernel.org
> Cc: mturquette@baylibre.com; Andy Tang <andy.tang@nxp.com>; Yogesh
> Narayan Gaur <yogeshnarayan.gaur@nxp.com>
> Subject: RE: [PATCH v4] clk: qoriq: add support for lx2160a
> 
> Hello Stephen,
> I have incorporated review comments from
> https://patchwork.kernel.org/patch/10917171/
Hello Maintainers,
All the comments are addressed, Can you please take the patch?
Please see this is essential for new hardware support.

Regards,
Vabhav
> 
> A gentle reminder to apply the patch
> https://patchwork.kernel.org/patch/10918407/.
> 
> Regards,
> Vabhav
> 
> > -----Original Message-----
> > From: Vabhav Sharma <vabhav.sharma@nxp.com>
> > Sent: Friday, April 26, 2019 12:24 PM
> > To: linux-kernel@vger.kernel.org; linux-clk@vger.kernel.org
> > Cc: sboyd@kernel.org; mturquette@baylibre.com; Vabhav Sharma
> > <vabhav.sharma@nxp.com>; Andy Tang <andy.tang@nxp.com>; Yogesh
> Narayan
> > Gaur <yogeshnarayan.gaur@nxp.com>
> > Subject: [PATCH v4] clk: qoriq: add support for lx2160a
> >
> > Add clockgen support and configuration for NXP SoC lx2160a with
> > compatible property as "fsl,lx2160a-clockgen".
> >
> > Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> > Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
> > Signed-off-by: Vabhav Sharma <vabhav.sharma@nxp.com>
> > Acked-by: Scott Wood <oss@buserror.net>
> > Acked-by: Stephen Boyd <sboyd@kernel.org>
> > Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> > ---
> > Changes for v4:
> > - Incorporated review comments from Stephen Boyd
> >
> > Changes for v3:
> > - Incorporated review comments of Rafael J. Wysocki
> > - Updated commit message
> >
> > Changes for v2:
> > - Subject line updated
> >
> >  drivers/clk/clk-qoriq.c | 12 ++++++++++++
> >  1 file changed, 12 insertions(+)
> >
> > diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c index
> > 3d51d7c..1a15201 100644
> > --- a/drivers/clk/clk-qoriq.c
> > +++ b/drivers/clk/clk-qoriq.c
> > @@ -570,6 +570,17 @@ static const struct clockgen_chipinfo chipinfo[] = {
> >  		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
> >  	},
> >  	{
> > +		.compat = "fsl,lx2160a-clockgen",
> > +		.cmux_groups = {
> > +			&clockgen2_cmux_cga12, &clockgen2_cmux_cgb
> > +		},
> > +		.cmux_to_group = {
> > +			0, 0, 0, 0, 1, 1, 1, 1, -1
> > +		},
> > +		.pll_mask = 0x37,
> > +		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
> > +	},
> > +	{
> >  		.compat = "fsl,p2041-clockgen",
> >  		.guts_compat = "fsl,qoriq-device-config-1.0",
> >  		.init_periph = p2041_init_periph,
> > @@ -1427,6 +1438,7 @@ CLK_OF_DECLARE(qoriq_clockgen_ls1043a,
> > "fsl,ls1043a-clockgen", clockgen_init);
> > CLK_OF_DECLARE(qoriq_clockgen_ls1046a, "fsl,ls1046a-clockgen",
> > clockgen_init);  CLK_OF_DECLARE(qoriq_clockgen_ls1088a, "fsl,ls1088a-
> > clockgen", clockgen_init);  CLK_OF_DECLARE(qoriq_clockgen_ls2080a,
> > "fsl,ls2080a-clockgen", clockgen_init);
> > +CLK_OF_DECLARE(qoriq_clockgen_lx2160a, "fsl,lx2160a-clockgen",
> > +clockgen_init);
> >  CLK_OF_DECLARE(qoriq_clockgen_p2041, "fsl,p2041-clockgen",
> > clockgen_init); CLK_OF_DECLARE(qoriq_clockgen_p3041,
> > "fsl,p3041-clockgen", clockgen_init);
> > CLK_OF_DECLARE(qoriq_clockgen_p4080, "fsl,p4080-clockgen",
> > clockgen_init);
> > --
> > 2.7.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH v4] clk: qoriq: add support for lx2160a
  2019-05-23 14:05   ` Vabhav Sharma
@ 2019-06-13  6:47     ` Andy Tang
  0 siblings, 0 replies; 5+ messages in thread
From: Andy Tang @ 2019-06-13  6:47 UTC (permalink / raw)
  To: mturquette, sboyd
  Cc: Yogesh Narayan Gaur, Vabhav Sharma, linux-clk, linux-kernel

Hi Stephen, Mturquette,

Who will apply this patch? https://patchwork.kernel.org/patch/10918407/
All the comments are addressed and got acked by:
Acked-by: Scott Wood <oss@buserror.net>
Acked-by: Stephen Boyd <sboyd@kernel.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

Could you please apply it?

BR,
Andy


> -----Original Message-----
> From: Vabhav Sharma
> Sent: 2019年5月23日 22:05
> To: linux-kernel@vger.kernel.org; linux-clk@vger.kernel.org;
> mturquette@baylibre.com; sboyd@kernel.org
> Cc: mturquette@baylibre.com; sboyd@kernel.org; Andy Tang
> <andy.tang@nxp.com>; Yogesh Narayan Gaur
> <yogeshnarayan.gaur@nxp.com>
> Subject: RE: [PATCH v4] clk: qoriq: add support for lx2160a
> 
> > -----Original Message-----
> > From: Vabhav Sharma
> > Sent: Tuesday, May 21, 2019 11:14 AM
> > To: linux-kernel@vger.kernel.org; linux-clk@vger.kernel.org;
> > sboyd@kernel.org
> > Cc: mturquette@baylibre.com; Andy Tang <andy.tang@nxp.com>; Yogesh
> > Narayan Gaur <yogeshnarayan.gaur@nxp.com>
> > Subject: RE: [PATCH v4] clk: qoriq: add support for lx2160a
> >
> > Hello Stephen,
> > I have incorporated review comments from
> > https://patchwork.kernel.org/patch/10917171/
> Hello Maintainers,
> All the comments are addressed, Can you please take the patch?
> Please see this is essential for new hardware support.
> 
> Regards,
> Vabhav
> >
> > A gentle reminder to apply the patch
> > https://patchwork.kernel.org/patch/10918407/.
> >
> > Regards,
> > Vabhav
> >
> > > -----Original Message-----
> > > From: Vabhav Sharma <vabhav.sharma@nxp.com>
> > > Sent: Friday, April 26, 2019 12:24 PM
> > > To: linux-kernel@vger.kernel.org; linux-clk@vger.kernel.org
> > > Cc: sboyd@kernel.org; mturquette@baylibre.com; Vabhav Sharma
> > > <vabhav.sharma@nxp.com>; Andy Tang <andy.tang@nxp.com>; Yogesh
> > Narayan
> > > Gaur <yogeshnarayan.gaur@nxp.com>
> > > Subject: [PATCH v4] clk: qoriq: add support for lx2160a
> > >
> > > Add clockgen support and configuration for NXP SoC lx2160a with
> > > compatible property as "fsl,lx2160a-clockgen".
> > >
> > > Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> > > Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
> > > Signed-off-by: Vabhav Sharma <vabhav.sharma@nxp.com>
> > > Acked-by: Scott Wood <oss@buserror.net>
> > > Acked-by: Stephen Boyd <sboyd@kernel.org>
> > > Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> > > ---
> > > Changes for v4:
> > > - Incorporated review comments from Stephen Boyd
> > >
> > > Changes for v3:
> > > - Incorporated review comments of Rafael J. Wysocki
> > > - Updated commit message
> > >
> > > Changes for v2:
> > > - Subject line updated
> > >
> > >  drivers/clk/clk-qoriq.c | 12 ++++++++++++
> > >  1 file changed, 12 insertions(+)
> > >
> > > diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c index
> > > 3d51d7c..1a15201 100644
> > > --- a/drivers/clk/clk-qoriq.c
> > > +++ b/drivers/clk/clk-qoriq.c
> > > @@ -570,6 +570,17 @@ static const struct clockgen_chipinfo chipinfo[] =
> {
> > >  		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
> > >  	},
> > >  	{
> > > +		.compat = "fsl,lx2160a-clockgen",
> > > +		.cmux_groups = {
> > > +			&clockgen2_cmux_cga12, &clockgen2_cmux_cgb
> > > +		},
> > > +		.cmux_to_group = {
> > > +			0, 0, 0, 0, 1, 1, 1, 1, -1
> > > +		},
> > > +		.pll_mask = 0x37,
> > > +		.flags = CG_VER3 | CG_LITTLE_ENDIAN,
> > > +	},
> > > +	{
> > >  		.compat = "fsl,p2041-clockgen",
> > >  		.guts_compat = "fsl,qoriq-device-config-1.0",
> > >  		.init_periph = p2041_init_periph, @@ -1427,6 +1438,7 @@
> > > CLK_OF_DECLARE(qoriq_clockgen_ls1043a,
> > > "fsl,ls1043a-clockgen", clockgen_init);
> > > CLK_OF_DECLARE(qoriq_clockgen_ls1046a, "fsl,ls1046a-clockgen",
> > > clockgen_init);  CLK_OF_DECLARE(qoriq_clockgen_ls1088a,
> > > "fsl,ls1088a- clockgen", clockgen_init);
> > > CLK_OF_DECLARE(qoriq_clockgen_ls2080a,
> > > "fsl,ls2080a-clockgen", clockgen_init);
> > > +CLK_OF_DECLARE(qoriq_clockgen_lx2160a, "fsl,lx2160a-clockgen",
> > > +clockgen_init);
> > >  CLK_OF_DECLARE(qoriq_clockgen_p2041, "fsl,p2041-clockgen",
> > > clockgen_init); CLK_OF_DECLARE(qoriq_clockgen_p3041,
> > > "fsl,p3041-clockgen", clockgen_init);
> > > CLK_OF_DECLARE(qoriq_clockgen_p4080, "fsl,p4080-clockgen",
> > > clockgen_init);
> > > --
> > > 2.7.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v4] clk: qoriq: add support for lx2160a
  2019-04-26  6:53 [PATCH v4] clk: qoriq: add support for lx2160a Vabhav Sharma
  2019-05-21  5:43 ` Vabhav Sharma
@ 2019-06-25 22:58 ` Stephen Boyd
  1 sibling, 0 replies; 5+ messages in thread
From: Stephen Boyd @ 2019-06-25 22:58 UTC (permalink / raw)
  To: linux-clk, linux-kernel, Vabhav Sharma
  Cc: mturquette, Vabhav Sharma, Andy Tang, Yogesh Narayan Gaur

Quoting Vabhav Sharma (2019-04-25 23:53:38)
> Add clockgen support and configuration for NXP SoC lx2160a
> with compatible property as "fsl,lx2160a-clockgen".
> 
> Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
> Signed-off-by: Vabhav Sharma <vabhav.sharma@nxp.com>
> Acked-by: Scott Wood <oss@buserror.net>
> Acked-by: Stephen Boyd <sboyd@kernel.org>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> ---

Applied to clk-next


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-06-25 22:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-26  6:53 [PATCH v4] clk: qoriq: add support for lx2160a Vabhav Sharma
2019-05-21  5:43 ` Vabhav Sharma
2019-05-23 14:05   ` Vabhav Sharma
2019-06-13  6:47     ` Andy Tang
2019-06-25 22:58 ` Stephen Boyd

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).