All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lucas Stach <l.stach@pengutronix.de>
To: linux-pm@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
	Viresh Kumar <viresh.kumar@linaro.org>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Shawn Guo <shawn.guo@freescale.com>,
	Kumar Gala <galak@codeaurora.org>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Mark Rutland <mark.rutland@arm.com>,
	Pawel Moll <pawel.moll@arm.com>, Rob Herring <robh+dt@kernel.org>,
	kernel@pengutronix.de
Subject: [PATCH 4/4] ARM: imx53: add basic cpufreq properties to dtsi
Date: Mon, 26 May 2014 12:15:08 +0200	[thread overview]
Message-ID: <1401099308-9658-4-git-send-email-l.stach@pengutronix.de> (raw)
In-Reply-To: <1401099308-9658-1-git-send-email-l.stach@pengutronix.de>

Only thing missing is the vddgp regulator, which is board
specific.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
 arch/arm/boot/dts/imx53.dtsi | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/imx53.dtsi b/arch/arm/boot/dts/imx53.dtsi
index b57ab57740f6..8f005919cf6c 100644
--- a/arch/arm/boot/dts/imx53.dtsi
+++ b/arch/arm/boot/dts/imx53.dtsi
@@ -45,10 +45,24 @@
 	cpus {
 		#address-cells = <1>;
 		#size-cells = <0>;
-		cpu@0 {
+		cpu0: cpu@0 {
 			device_type = "cpu";
 			compatible = "arm,cortex-a8";
 			reg = <0x0>;
+			clocks = <&clks IMX5_CLK_CPU_PODF>,
+			         <&clks IMX5_CLK_PLL1_SW>,
+			         <&clks IMX5_CLK_STEP_SEL>,
+			         <&clks IMX5_CLK_LP_APM>;
+			clock-names = "cpu", "pll1", "step", "lp_apm";
+			vddgp-supply-max-microvolt = <1400000>;
+			operating-points = <
+				/* kHz     uV */
+				 166666  850000
+				 400000  900000
+				 800000 1050000
+				1000000 1200000
+				1200000 1300000
+			>;
 		};
 	};
 
-- 
2.0.0.rc2


WARNING: multiple messages have this Message-ID (diff)
From: l.stach@pengutronix.de (Lucas Stach)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4/4] ARM: imx53: add basic cpufreq properties to dtsi
Date: Mon, 26 May 2014 12:15:08 +0200	[thread overview]
Message-ID: <1401099308-9658-4-git-send-email-l.stach@pengutronix.de> (raw)
In-Reply-To: <1401099308-9658-1-git-send-email-l.stach@pengutronix.de>

Only thing missing is the vddgp regulator, which is board
specific.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
 arch/arm/boot/dts/imx53.dtsi | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/imx53.dtsi b/arch/arm/boot/dts/imx53.dtsi
index b57ab57740f6..8f005919cf6c 100644
--- a/arch/arm/boot/dts/imx53.dtsi
+++ b/arch/arm/boot/dts/imx53.dtsi
@@ -45,10 +45,24 @@
 	cpus {
 		#address-cells = <1>;
 		#size-cells = <0>;
-		cpu at 0 {
+		cpu0: cpu at 0 {
 			device_type = "cpu";
 			compatible = "arm,cortex-a8";
 			reg = <0x0>;
+			clocks = <&clks IMX5_CLK_CPU_PODF>,
+			         <&clks IMX5_CLK_PLL1_SW>,
+			         <&clks IMX5_CLK_STEP_SEL>,
+			         <&clks IMX5_CLK_LP_APM>;
+			clock-names = "cpu", "pll1", "step", "lp_apm";
+			vddgp-supply-max-microvolt = <1400000>;
+			operating-points = <
+				/* kHz     uV */
+				 166666  850000
+				 400000  900000
+				 800000 1050000
+				1000000 1200000
+				1200000 1300000
+			>;
 		};
 	};
 
-- 
2.0.0.rc2

  parent reply	other threads:[~2014-05-26 10:15 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-26 10:15 [PATCH 1/4] clk: imx5: add step and cpu_podf mux Lucas Stach
2014-05-26 10:15 ` Lucas Stach
2014-05-26 10:15 ` [PATCH 2/4] cpufreq: add i.MX5 cpufreq driver Lucas Stach
2014-05-26 10:15   ` Lucas Stach
2014-05-26 10:32   ` Viresh Kumar
2014-05-26 10:32     ` Viresh Kumar
2014-05-26 10:45     ` Lucas Stach
2014-05-26 10:45       ` Lucas Stach
2014-05-26 11:06       ` Viresh Kumar
2014-05-26 11:06         ` Viresh Kumar
2014-05-26 12:35         ` Lucas Stach
2014-05-26 12:35           ` Lucas Stach
2014-05-26 12:56           ` Viresh Kumar
2014-05-26 12:56             ` Viresh Kumar
2014-05-26 13:11             ` Lucas Stach
2014-05-26 13:11               ` Lucas Stach
2014-05-26 13:44               ` Viresh Kumar
2014-05-26 13:44                 ` Viresh Kumar
2014-05-26 13:58                 ` Lucas Stach
2014-05-26 13:58                   ` Lucas Stach
2014-05-26 15:22                   ` Viresh Kumar
2014-05-26 15:22                     ` Viresh Kumar
2014-05-26 15:28                     ` Lucas Stach
2014-05-26 15:28                       ` Lucas Stach
     [not found]                       ` <1401118115.4829.60.camel-WzVe3FnzCwFR6QfukMTsflXZhhPuCNm+@public.gmane.org>
2014-05-26 15:35                         ` Viresh Kumar
2014-05-26 15:35                           ` Viresh Kumar
2014-05-26 15:57                           ` Lucas Stach
2014-05-26 15:57                             ` Lucas Stach
2014-05-26 16:22                             ` Viresh Kumar
2014-05-26 16:22                               ` Viresh Kumar
2014-05-26 10:15 ` [PATCH 3/4] ARM: imx53: instanciate cpufreq device Lucas Stach
2014-05-26 10:15   ` Lucas Stach
2014-05-26 10:15 ` Lucas Stach [this message]
2014-05-26 10:15   ` [PATCH 4/4] ARM: imx53: add basic cpufreq properties to dtsi Lucas Stach

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=1401099308-9658-4-git-send-email-l.stach@pengutronix.de \
    --to=l.stach@pengutronix.de \
    --cc=devicetree@vger.kernel.org \
    --cc=galak@codeaurora.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=rjw@rjwysocki.net \
    --cc=robh+dt@kernel.org \
    --cc=shawn.guo@freescale.com \
    --cc=viresh.kumar@linaro.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.