2019-02-26 10:12:46

by Vabhav Sharma

[permalink] [raw]
Subject: [PATCH v1 0/4] arm64: dts: NXP: add basic dts file for LX2160A SoC

These patches were reviewed and acked but dropped during merge window.
Patchwork link was https://lore.kernel.org/patchwork/cover/1004155/

Changes for v1:
- Updated lx2160a clockgen in alphabetical order

Vabhav Sharma (2):
dt-bindings: arm64: add compatible for LX2160A
soc/fsl/guts: Add definition for LX2160A

Yogesh Gaur (2):
clk: qoriq: increase array size of cmux_to_group
clk: qoriq: Add clockgen support for lx2160a

.../bindings/arm/freescale/fsl,layerscape-dcfg.txt | 2 +-
Documentation/devicetree/bindings/arm/fsl.txt | 12 ++++++++++++
Documentation/devicetree/bindings/clock/qoriq-clock.txt | 1 +
drivers/clk/clk-qoriq.c | 16 ++++++++++++++--
drivers/cpufreq/qoriq-cpufreq.c | 1 +
drivers/soc/fsl/guts.c | 6 ++++++
6 files changed, 35 insertions(+), 3 deletions(-)

--
2.7.4



2019-02-26 10:12:25

by Vabhav Sharma

[permalink] [raw]
Subject: [PATCH v1 3/4] clk: qoriq: increase array size of cmux_to_group

From: Yogesh Gaur <[email protected]>

Increase size of cmux_to_group array, to accomdate entry of
-1 termination.

Added -1, terminated, entry for 4080_cmux_grpX.

Signed-off-by: Yogesh Gaur <[email protected]>
Signed-off-by: Vabhav Sharma <[email protected]>
Acked-by: Stephen Boyd <[email protected]>
---
drivers/clk/clk-qoriq.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c
index 5baa9e0..e75194a 100644
--- a/drivers/clk/clk-qoriq.c
+++ b/drivers/clk/clk-qoriq.c
@@ -79,7 +79,7 @@ struct clockgen_chipinfo {
const struct clockgen_muxinfo *cmux_groups[2];
const struct clockgen_muxinfo *hwaccel[NUM_HWACCEL];
void (*init_periph)(struct clockgen *cg);
- int cmux_to_group[NUM_CMUX]; /* -1 terminates if fewer than NUM_CMUX */
+ int cmux_to_group[NUM_CMUX+1]; /* array should be -1 terminated */
u32 pll_mask; /* 1 << n bit set if PLL n is valid */
u32 flags; /* CG_xxx */
};
@@ -601,7 +601,7 @@ static const struct clockgen_chipinfo chipinfo[] = {
&p4080_cmux_grp1, &p4080_cmux_grp2
},
.cmux_to_group = {
- 0, 0, 0, 0, 1, 1, 1, 1
+ 0, 0, 0, 0, 1, 1, 1, 1, -1
},
.pll_mask = 0x1f,
},
--
2.7.4


2019-02-26 10:12:56

by Vabhav Sharma

[permalink] [raw]
Subject: [PATCH v1 2/4] soc/fsl/guts: Add definition for LX2160A

Adding compatible string "lx2160a-dcfg" to
initialize guts driver for lx2160 and SoC die
attribute definition for LX2160A

Signed-off-by: Vabhav Sharma <[email protected]>
Signed-off-by: Yinbo Zhu <[email protected]>
Acked-by: Li Yang <[email protected]>
---
drivers/soc/fsl/guts.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
index 302e0c8..bcab1ee 100644
--- a/drivers/soc/fsl/guts.c
+++ b/drivers/soc/fsl/guts.c
@@ -100,6 +100,11 @@ static const struct fsl_soc_die_attr fsl_soc_die[] = {
.svr = 0x87000000,
.mask = 0xfff70000,
},
+ /* Die: LX2160A, SoC: LX2160A/LX2120A/LX2080A */
+ { .die = "LX2160A",
+ .svr = 0x87360000,
+ .mask = 0xff3f0000,
+ },
{ },
};

@@ -222,6 +227,7 @@ static const struct of_device_id fsl_guts_of_match[] = {
{ .compatible = "fsl,ls1088a-dcfg", },
{ .compatible = "fsl,ls1012a-dcfg", },
{ .compatible = "fsl,ls1046a-dcfg", },
+ { .compatible = "fsl,lx2160a-dcfg", },
{}
};
MODULE_DEVICE_TABLE(of, fsl_guts_of_match);
--
2.7.4


2019-02-26 10:13:10

by Vabhav Sharma

[permalink] [raw]
Subject: [PATCH v1 4/4] clk: qoriq: Add clockgen support for lx2160a

From: Yogesh Gaur <[email protected]>

Add clockgen support for lx2160a.
Added entry for compat 'fsl,lx2160a-clockgen'.

Signed-off-by: Tang Yuantian <[email protected]>
Signed-off-by: Yogesh Gaur <[email protected]>
Signed-off-by: Vabhav Sharma <[email protected]>
Acked-by: Stephen Boyd <[email protected]>
Acked-by: Viresh Kumar <[email protected]>
---
drivers/clk/clk-qoriq.c | 12 ++++++++++++
drivers/cpufreq/qoriq-cpufreq.c | 1 +
2 files changed, 13 insertions(+)

diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c
index e75194a..288e8f0c 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,
@@ -1426,6 +1437,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);
diff --git a/drivers/cpufreq/qoriq-cpufreq.c b/drivers/cpufreq/qoriq-cpufreq.c
index 3d773f6..83921b7 100644
--- a/drivers/cpufreq/qoriq-cpufreq.c
+++ b/drivers/cpufreq/qoriq-cpufreq.c
@@ -295,6 +295,7 @@ static const struct of_device_id node_matches[] __initconst = {
{ .compatible = "fsl,ls1046a-clockgen", },
{ .compatible = "fsl,ls1088a-clockgen", },
{ .compatible = "fsl,ls2080a-clockgen", },
+ { .compatible = "fsl,lx2160a-clockgen", },
{ .compatible = "fsl,p4080-clockgen", },
{ .compatible = "fsl,qoriq-clockgen-1.0", },
{ .compatible = "fsl,qoriq-clockgen-2.0", },
--
2.7.4


2019-02-26 10:13:17

by Vabhav Sharma

[permalink] [raw]
Subject: [PATCH v1 1/4] dt-bindings: arm64: add compatible for LX2160A

Add compatible for LX2160A SoC,QDS and RDB board
Add lx2160a compatible for clockgen and dcfg

Signed-off-by: Vabhav Sharma <[email protected]>
Reviewed-by: Rob Herring <[email protected]>
---
.../bindings/arm/freescale/fsl,layerscape-dcfg.txt | 2 +-
Documentation/devicetree/bindings/arm/fsl.txt | 12 ++++++++++++
Documentation/devicetree/bindings/clock/qoriq-clock.txt | 1 +
3 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-dcfg.txt b/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-dcfg.txt
index b5cb374..dc76046 100644
--- a/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-dcfg.txt
+++ b/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-dcfg.txt
@@ -8,7 +8,7 @@ Required properties:
- compatible: Should contain a chip-specific compatible string,
Chip-specific strings are of the form "fsl,<chip>-dcfg",
The following <chip>s are known to be supported:
- ls1012a, ls1021a, ls1043a, ls1046a, ls2080a.
+ ls1012a, ls1021a, ls1043a, ls1046a, ls2080a, lx2160a.

- reg : should contain base address and length of DCFG memory-mapped registers

diff --git a/Documentation/devicetree/bindings/arm/fsl.txt b/Documentation/devicetree/bindings/arm/fsl.txt
index 7fbc424..baef162 100644
--- a/Documentation/devicetree/bindings/arm/fsl.txt
+++ b/Documentation/devicetree/bindings/arm/fsl.txt
@@ -235,3 +235,15 @@ Required root node properties:
LS2088A ARMv8 based RDB Board
Required root node properties:
- compatible = "fsl,ls2088a-rdb", "fsl,ls2088a";
+
+LX2160A SoC
+Required root node properties:
+ - compatible = "fsl,lx2160a";
+
+LX2160A ARMv8 based QDS Board
+Required root node properties:
+ - compatible = "fsl,lx2160a-qds", "fsl,lx2160a";
+
+LX2160A ARMv8 based RDB Board
+Required root node properties:
+ - compatible = "fsl,lx2160a-rdb", "fsl,lx2160a";
diff --git a/Documentation/devicetree/bindings/clock/qoriq-clock.txt b/Documentation/devicetree/bindings/clock/qoriq-clock.txt
index c655f28..f322989 100644
--- a/Documentation/devicetree/bindings/clock/qoriq-clock.txt
+++ b/Documentation/devicetree/bindings/clock/qoriq-clock.txt
@@ -43,6 +43,7 @@ Required properties:
* "fsl,ls1046a-clockgen"
* "fsl,ls1088a-clockgen"
* "fsl,ls2080a-clockgen"
+ * "fsl,lx2160a-clockgen"
Chassis-version clock strings include:
* "fsl,qoriq-clockgen-1.0": for chassis 1.0 clocks
* "fsl,qoriq-clockgen-2.0": for chassis 2.0 clocks
--
2.7.4


2019-02-26 21:33:23

by Crystal Wood

[permalink] [raw]
Subject: Re: [PATCH v1 3/4] clk: qoriq: increase array size of cmux_to_group

On Tue, 2019-02-26 at 10:11 +0000, Vabhav Sharma wrote:
> From: Yogesh Gaur <[email protected]>
>
> Increase size of cmux_to_group array, to accomdate entry of
> -1 termination.
>
> Added -1, terminated, entry for 4080_cmux_grpX.
>
> Signed-off-by: Yogesh Gaur <[email protected]>
> Signed-off-by: Vabhav Sharma <[email protected]>
> Acked-by: Stephen Boyd <[email protected]>
> ---
> drivers/clk/clk-qoriq.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)

Acked-by: Scott Wood <[email protected]>

-Scott



2019-02-26 21:35:18

by Crystal Wood

[permalink] [raw]
Subject: Re: [PATCH v1 4/4] clk: qoriq: Add clockgen support for lx2160a

On Tue, 2019-02-26 at 10:11 +0000, Vabhav Sharma wrote:
> From: Yogesh Gaur <[email protected]>
>
> Add clockgen support for lx2160a.
> Added entry for compat 'fsl,lx2160a-clockgen'.
>
> Signed-off-by: Tang Yuantian <[email protected]>
> Signed-off-by: Yogesh Gaur <[email protected]>
> Signed-off-by: Vabhav Sharma <[email protected]>
> Acked-by: Stephen Boyd <[email protected]>
> Acked-by: Viresh Kumar <[email protected]>
> ---
> drivers/clk/clk-qoriq.c | 12 ++++++++++++
> drivers/cpufreq/qoriq-cpufreq.c | 1 +
> 2 files changed, 13 insertions(+)

Acked-by: Scott Wood <[email protected]>

-Scott



2019-02-28 00:02:25

by Stephen Boyd

[permalink] [raw]
Subject: Re: [PATCH v1 0/4] arm64: dts: NXP: add basic dts file for LX2160A SoC

Quoting Vabhav Sharma (2019-02-26 02:10:46)
> These patches were reviewed and acked but dropped during merge window.
> Patchwork link was https://lore.kernel.org/patchwork/cover/1004155/
>
> Changes for v1:
> - Updated lx2160a clockgen in alphabetical order
>
> Vabhav Sharma (2):
> dt-bindings: arm64: add compatible for LX2160A
> soc/fsl/guts: Add definition for LX2160A
>
> Yogesh Gaur (2):
> clk: qoriq: increase array size of cmux_to_group
> clk: qoriq: Add clockgen support for lx2160a

Who do you want to apply these patches?


2019-02-28 18:30:37

by Vabhav Sharma

[permalink] [raw]
Subject: RE: [PATCH v1 0/4] arm64: dts: NXP: add basic dts file for LX2160A SoC

Hello Maintainers,
Please help to merge patch.

> -----Original Message-----
> From: Stephen Boyd <[email protected]>
> Sent: Thursday, February 28, 2019 5:31 AM
> To: [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; linux-arm-
> [email protected]; [email protected]; linux-kernel-
> [email protected]; [email protected]; linux-
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> viresh.kumar@lina ro.org <[email protected]>; [email protected];
> [email protected]; Leo Li <[email protected]>; Vabhav
> Sharma <[email protected]>
> Cc: [email protected]; [email protected];
> [email protected]; Vabhav Sharma <[email protected]>
> Subject: Re: [PATCH v1 0/4] arm64: dts: NXP: add basic dts file for LX2160A
> SoC
>
> Quoting Vabhav Sharma (2019-02-26 02:10:46)
> > These patches were reviewed and acked but dropped during merge
> window.
> > Patchwork link was
> https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flore.
> kernel.org%2Fpatchwork%2Fcover%2F1004155%2F&amp;data=02%7C01%7Cv
> abhav.sharma%40nxp.com%7C9fb978cb85834f688b5708d69d0fe556%7C686e
> a1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C636869088931292322&amp;s
> data=QF66OQfJIrFI9tDVBDI1SKFuam53fejMfC9pJmJEZMA%3D&amp;reserved=
> 0
> >
> > Changes for v1:
> > - Updated lx2160a clockgen in alphabetical order
> >
> > Vabhav Sharma (2):
> > dt-bindings: arm64: add compatible for LX2160A
Rob Herring <[email protected]> , Mark Rutland <[email protected]>
> > soc/fsl/guts: Add definition for LX2160A
Leo
> >
> > Yogesh Gaur (2):
> > clk: qoriq: increase array size of cmux_to_group
Stephen Boyd <[email protected]>, Michael Turquette <[email protected]> ,
> > clk: qoriq: Add clockgen support for lx2160a
Stephen Boyd <[email protected]>, Michael Turquette <[email protected]> ,"Rafael J. Wysocki" <[email protected]> , Viresh Kumar <[email protected]>
>
> Who do you want to apply these patches?
As per maintainers script result, I have updated email

2019-04-02 23:06:37

by Leo Li

[permalink] [raw]
Subject: Re: [PATCH v1 2/4] soc/fsl/guts: Add definition for LX2160A

On Tue, Feb 26, 2019 at 4:12 AM Vabhav Sharma <[email protected]> wrote:
>
> Adding compatible string "lx2160a-dcfg" to
> initialize guts driver for lx2160 and SoC die
> attribute definition for LX2160A


Applied to branch next. Thanks.

Regards,
Leo
>
> Signed-off-by: Vabhav Sharma <[email protected]>
> Signed-off-by: Yinbo Zhu <[email protected]>
> Acked-by: Li Yang <[email protected]>
> ---
> drivers/soc/fsl/guts.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
> index 302e0c8..bcab1ee 100644
> --- a/drivers/soc/fsl/guts.c
> +++ b/drivers/soc/fsl/guts.c
> @@ -100,6 +100,11 @@ static const struct fsl_soc_die_attr fsl_soc_die[] = {
> .svr = 0x87000000,
> .mask = 0xfff70000,
> },
> + /* Die: LX2160A, SoC: LX2160A/LX2120A/LX2080A */
> + { .die = "LX2160A",
> + .svr = 0x87360000,
> + .mask = 0xff3f0000,
> + },
> { },
> };
>
> @@ -222,6 +227,7 @@ static const struct of_device_id fsl_guts_of_match[] = {
> { .compatible = "fsl,ls1088a-dcfg", },
> { .compatible = "fsl,ls1012a-dcfg", },
> { .compatible = "fsl,ls1046a-dcfg", },
> + { .compatible = "fsl,lx2160a-dcfg", },
> {}
> };
> MODULE_DEVICE_TABLE(of, fsl_guts_of_match);
> --
> 2.7.4
>

2019-04-03 08:29:16

by Vabhav Sharma

[permalink] [raw]
Subject: RE: [PATCH v1 1/4] dt-bindings: arm64: add compatible for LX2160A

Hello Maintainers,
Please merge below patch.

Regards,
Vabhav

> -----Original Message-----
> From: Vabhav Sharma <[email protected]>
> Sent: Tuesday, February 26, 2019 3:41 PM
> To: [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; linux-
> [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected]; Leo Li
> <[email protected]>; [email protected]
> Cc: [email protected]; [email protected];
> [email protected]; Vabhav Sharma <[email protected]>
> Subject: [PATCH v1 1/4] dt-bindings: arm64: add compatible for LX2160A
>
> Add compatible for LX2160A SoC,QDS and RDB board Add lx2160a
> compatible for clockgen and dcfg
>
> Signed-off-by: Vabhav Sharma <[email protected]>
> Reviewed-by: Rob Herring <[email protected]>
> ---
> .../bindings/arm/freescale/fsl,layerscape-dcfg.txt | 2 +-
> Documentation/devicetree/bindings/arm/fsl.txt | 12 ++++++++++++
> Documentation/devicetree/bindings/clock/qoriq-clock.txt | 1 +
> 3 files changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-
> dcfg.txt b/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-
> dcfg.txt
> index b5cb374..dc76046 100644
> --- a/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-
> dcfg.txt
> +++ b/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-dcf
> +++ g.txt
> @@ -8,7 +8,7 @@ Required properties:
> - compatible: Should contain a chip-specific compatible string,
> Chip-specific strings are of the form "fsl,<chip>-dcfg",
> The following <chip>s are known to be supported:
> - ls1012a, ls1021a, ls1043a, ls1046a, ls2080a.
> + ls1012a, ls1021a, ls1043a, ls1046a, ls2080a, lx2160a.
>
> - reg : should contain base address and length of DCFG memory-mapped
> registers
>
> diff --git a/Documentation/devicetree/bindings/arm/fsl.txt
> b/Documentation/devicetree/bindings/arm/fsl.txt
> index 7fbc424..baef162 100644
> --- a/Documentation/devicetree/bindings/arm/fsl.txt
> +++ b/Documentation/devicetree/bindings/arm/fsl.txt
> @@ -235,3 +235,15 @@ Required root node properties:
> LS2088A ARMv8 based RDB Board
> Required root node properties:
> - compatible = "fsl,ls2088a-rdb", "fsl,ls2088a";
> +
> +LX2160A SoC
> +Required root node properties:
> + - compatible = "fsl,lx2160a";
> +
> +LX2160A ARMv8 based QDS Board
> +Required root node properties:
> + - compatible = "fsl,lx2160a-qds", "fsl,lx2160a";
> +
> +LX2160A ARMv8 based RDB Board
> +Required root node properties:
> + - compatible = "fsl,lx2160a-rdb", "fsl,lx2160a";
> diff --git a/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> b/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> index c655f28..f322989 100644
> --- a/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> +++ b/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> @@ -43,6 +43,7 @@ Required properties:
> * "fsl,ls1046a-clockgen"
> * "fsl,ls1088a-clockgen"
> * "fsl,ls2080a-clockgen"
> + * "fsl,lx2160a-clockgen"
> Chassis-version clock strings include:
> * "fsl,qoriq-clockgen-1.0": for chassis 1.0 clocks
> * "fsl,qoriq-clockgen-2.0": for chassis 2.0 clocks
> --
> 2.7.4

2019-04-03 08:34:52

by Vabhav Sharma

[permalink] [raw]
Subject: RE: [PATCH v1 4/4] clk: qoriq: Add clockgen support for lx2160a

Hello Maintainers,
Please merge below patch.

Regards,
Vabhav

> -----Original Message-----
> From: [email protected] <[email protected]>
> On Behalf Of Scott Wood
> Sent: Wednesday, February 27, 2019 3:00 AM
> To: Vabhav Sharma <[email protected]>; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected]; [email protected]; linux-
> [email protected]; [email protected]; linux-kernel-
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected]; Leo Li
> <[email protected]>; [email protected]
> Cc: [email protected]; [email protected];
> [email protected]; Yogesh Narayan Gaur
> <[email protected]>; Andy Tang <[email protected]>
> Subject: Re: [PATCH v1 4/4] clk: qoriq: Add clockgen support for lx2160a
>
> On Tue, 2019-02-26 at 10:11 +0000, Vabhav Sharma wrote:
> > From: Yogesh Gaur <[email protected]>
> >
> > Add clockgen support for lx2160a.
> > Added entry for compat 'fsl,lx2160a-clockgen'.
> >
> > Signed-off-by: Tang Yuantian <[email protected]>
> > Signed-off-by: Yogesh Gaur <[email protected]>
> > Signed-off-by: Vabhav Sharma <[email protected]>
> > Acked-by: Stephen Boyd <[email protected]>
> > Acked-by: Viresh Kumar <[email protected]>
> > ---
> > drivers/clk/clk-qoriq.c | 12 ++++++++++++
> > drivers/cpufreq/qoriq-cpufreq.c | 1 +
> > 2 files changed, 13 insertions(+)
>
> Acked-by: Scott Wood <[email protected]>
>
> -Scott
>

2019-04-03 22:03:36

by Leo Li

[permalink] [raw]
Subject: RE: [PATCH v1 1/4] dt-bindings: arm64: add compatible for LX2160A



> -----Original Message-----
> From: Vabhav Sharma
> Sent: Wednesday, April 3, 2019 3:28 AM
> To: [email protected]; [email protected]
> Cc: Leo Li <[email protected]>; Meenakshi Aggarwal
> <[email protected]>; Andy Tang <[email protected]>;
> [email protected]; [email protected]
> Subject: RE: [PATCH v1 1/4] dt-bindings: arm64: add compatible for LX2160A
>
> Hello Maintainers,
> Please merge below patch.
>
> Regards,
> Vabhav
>
> > -----Original Message-----
> > From: Vabhav Sharma <[email protected]>
> > Sent: Tuesday, February 26, 2019 3:41 PM
> > To: [email protected]; [email protected];
> > [email protected]; [email protected];
> > [email protected]; [email protected];
> > [email protected]; [email protected];
> > [email protected]; [email protected]; [email protected];
> > [email protected]; [email protected]; linux-
> > [email protected]; [email protected];
> > [email protected]; [email protected];
> > [email protected]; [email protected];
> > [email protected]; [email protected]; Leo Li
> > <[email protected]>; [email protected]
> > Cc: [email protected]; [email protected];
> > [email protected]; Vabhav Sharma <[email protected]>
> > Subject: [PATCH v1 1/4] dt-bindings: arm64: add compatible for LX2160A
> >
> > Add compatible for LX2160A SoC,QDS and RDB board Add lx2160a
> > compatible for clockgen and dcfg
> >
> > Signed-off-by: Vabhav Sharma <[email protected]>
> > Reviewed-by: Rob Herring <[email protected]>
> > ---
> > .../bindings/arm/freescale/fsl,layerscape-dcfg.txt | 2 +-
> > Documentation/devicetree/bindings/arm/fsl.txt | 12
> ++++++++++++
> > Documentation/devicetree/bindings/clock/qoriq-clock.txt | 1 +
> > 3 files changed, 14 insertions(+), 1 deletion(-)
> >
> > diff --git
> > a/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-
> > dcfg.txt
> > b/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-
> > dcfg.txt
> > index b5cb374..dc76046 100644
> > --- a/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-
> > dcfg.txt
> > +++ b/Documentation/devicetree/bindings/arm/freescale/fsl,layerscape-d
> > +++ cf
> > +++ g.txt
> > @@ -8,7 +8,7 @@ Required properties:
> > - compatible: Should contain a chip-specific compatible string,
> > Chip-specific strings are of the form "fsl,<chip>-dcfg",
> > The following <chip>s are known to be supported:
> > - ls1012a, ls1021a, ls1043a, ls1046a, ls2080a.
> > + ls1012a, ls1021a, ls1043a, ls1046a, ls2080a, lx2160a.
> >
> > - reg : should contain base address and length of DCFG
> > memory-mapped registers
> >
> > diff --git a/Documentation/devicetree/bindings/arm/fsl.txt
> > b/Documentation/devicetree/bindings/arm/fsl.txt
> > index 7fbc424..baef162 100644
> > --- a/Documentation/devicetree/bindings/arm/fsl.txt
> > +++ b/Documentation/devicetree/bindings/arm/fsl.txt

This file has been converted to yaml format in mainline kernel. Please respin the patch in order to apply.

> > @@ -235,3 +235,15 @@ Required root node properties:
> > LS2088A ARMv8 based RDB Board
> > Required root node properties:
> > - compatible = "fsl,ls2088a-rdb", "fsl,ls2088a";
> > +
> > +LX2160A SoC
> > +Required root node properties:
> > + - compatible = "fsl,lx2160a";
> > +
> > +LX2160A ARMv8 based QDS Board
> > +Required root node properties:
> > + - compatible = "fsl,lx2160a-qds", "fsl,lx2160a";
> > +
> > +LX2160A ARMv8 based RDB Board
> > +Required root node properties:
> > + - compatible = "fsl,lx2160a-rdb", "fsl,lx2160a";
> > diff --git a/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> > b/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> > index c655f28..f322989 100644
> > --- a/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> > +++ b/Documentation/devicetree/bindings/clock/qoriq-clock.txt
> > @@ -43,6 +43,7 @@ Required properties:
> > * "fsl,ls1046a-clockgen"
> > * "fsl,ls1088a-clockgen"
> > * "fsl,ls2080a-clockgen"
> > + * "fsl,lx2160a-clockgen"
> > Chassis-version clock strings include:
> > * "fsl,qoriq-clockgen-1.0": for chassis 1.0 clocks
> > * "fsl,qoriq-clockgen-2.0": for chassis 2.0 clocks
> > --
> > 2.7.4