From: Shawn Guo <shawnguo@kernel.org>
To: Anson Huang <anson.huang@nxp.com>
Cc: "mark.rutland@arm.com" <mark.rutland@arm.com>,
Aisheng Dong <aisheng.dong@nxp.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"sboyd@kernel.org" <sboyd@kernel.org>,
Daniel Baluta <daniel.baluta@nxp.com>,
"s.hauer@pengutronix.de" <s.hauer@pengutronix.de>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-clk@vger.kernel.org" <linux-clk@vger.kernel.org>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
dl-linux-imx <linux-imx@nxp.com>,
"kernel@pengutronix.de" <kernel@pengutronix.de>,
"festevam@gmail.com" <festevam@gmail.com>,
"mturquette@baylibre.com" <mturquette@baylibre.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH V7 1/2] arm64: dts: freescale: imx8qxp: add cpu opp table
Date: Thu, 28 Feb 2019 14:42:49 +0800 [thread overview]
Message-ID: <20190228064247.GI26041@dragon> (raw)
In-Reply-To: <AM6PR0402MB3911278158F4980C83331B40F5750@AM6PR0402MB3911.eurprd04.prod.outlook.com>
On Thu, Feb 28, 2019 at 06:18:30AM +0000, Anson Huang wrote:
> Hi, Shawn
>
> Best Regards!
> Anson Huang
>
> > -----Original Message-----
> > From: Shawn Guo [mailto:shawnguo@kernel.org]
> > Sent: 2019年2月28日 11:19
> > To: Anson Huang <anson.huang@nxp.com>
> > Cc: robh+dt@kernel.org; mark.rutland@arm.com; s.hauer@pengutronix.de;
> > kernel@pengutronix.de; festevam@gmail.com; mturquette@baylibre.com;
> > sboyd@kernel.org; Aisheng Dong <aisheng.dong@nxp.com>; Daniel Baluta
> > <daniel.baluta@nxp.com>; devicetree@vger.kernel.org; linux-arm-
> > kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> > clk@vger.kernel.org; dl-linux-imx <linux-imx@nxp.com>
> > Subject: Re: [PATCH V7 1/2] arm64: dts: freescale: imx8qxp: add cpu opp
> > table
> >
> > On Tue, Feb 26, 2019 at 05:17:31AM +0000, Anson Huang wrote:
> > > Add i.MX8QXP CPU opp table to support cpufreq.
> > >
> > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> > > Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> >
> > Prefix 'arm64: dts: imx8qxp: ' would already be clear enough. I dropped
> > 'freescale' from there and applied patch.
> >
> > > ---
> > > No changes since V6.
> > > ---
> > > arch/arm64/boot/dts/freescale/imx8qxp.dtsi | 30
> > > ++++++++++++++++++++++++++++++
> > > 1 file changed, 30 insertions(+)
> > >
> > > diff --git a/arch/arm64/boot/dts/freescale/imx8qxp.dtsi
> > > b/arch/arm64/boot/dts/freescale/imx8qxp.dtsi
> > > index 4c3dd95..41bf0ce 100644
> > > --- a/arch/arm64/boot/dts/freescale/imx8qxp.dtsi
> > > +++ b/arch/arm64/boot/dts/freescale/imx8qxp.dtsi
> > > @@ -34,6 +34,9 @@
> > > reg = <0x0 0x0>;
> > > enable-method = "psci";
> > > next-level-cache = <&A35_L2>;
> > > + clocks = <&clk IMX_A35_CLK>;
> > > + operating-points-v2 = <&a35_0_opp_table>;
> > > + #cooling-cells = <2>;
> > > };
> > >
> > > A35_1: cpu@1 {
> > > @@ -42,6 +45,9 @@
> > > reg = <0x0 0x1>;
> > > enable-method = "psci";
> > > next-level-cache = <&A35_L2>;
> > > + clocks = <&clk IMX_A35_CLK>;
> > > + operating-points-v2 = <&a35_0_opp_table>;
> > > + #cooling-cells = <2>;
> > > };
> > >
> > > A35_2: cpu@2 {
> > > @@ -50,6 +56,9 @@
> > > reg = <0x0 0x2>;
> > > enable-method = "psci";
> > > next-level-cache = <&A35_L2>;
> > > + clocks = <&clk IMX_A35_CLK>;
> > > + operating-points-v2 = <&a35_0_opp_table>;
> > > + #cooling-cells = <2>;
> > > };
> > >
> > > A35_3: cpu@3 {
> > > @@ -58,6 +67,9 @@
> > > reg = <0x0 0x3>;
> > > enable-method = "psci";
> > > next-level-cache = <&A35_L2>;
> > > + clocks = <&clk IMX_A35_CLK>;
> > > + operating-points-v2 = <&a35_0_opp_table>;
> > > + #cooling-cells = <2>;
> > > };
> > >
> > > A35_L2: l2-cache0 {
> > > @@ -65,6 +77,24 @@
> > > };
> > > };
> > >
> > > + a35_0_opp_table: opp-table {
> >
> > What does the '0' in the label mean?
>
> Looks like the '0' in the label is NOT necessary, we can just use 'a35_opp_table',
> do you want me resend the patch to remove '0'?
No. I just fixed it up and applied the patch.
Shawn
prev parent reply other threads:[~2019-02-28 6:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-26 5:17 [PATCH V7 1/2] arm64: dts: freescale: imx8qxp: add cpu opp table Anson Huang
2019-02-26 5:17 ` [PATCH V7 2/2] clk: imx: scu: add cpu frequency scaling support Anson Huang
2019-02-26 18:08 ` Stephen Boyd
2019-02-28 3:18 ` [PATCH V7 1/2] arm64: dts: freescale: imx8qxp: add cpu opp table Shawn Guo
2019-02-28 6:18 ` Anson Huang
2019-02-28 6:42 ` Shawn Guo [this message]
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=20190228064247.GI26041@dragon \
--to=shawnguo@kernel.org \
--cc=aisheng.dong@nxp.com \
--cc=anson.huang@nxp.com \
--cc=daniel.baluta@nxp.com \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=sboyd@kernel.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).