* [PATCH v2] ARM: imx27: Add PWM0 to device tree
@ 2013-04-14 7:44 Gwenhael Goavec-Merou
2013-04-14 8:49 ` Sascha Hauer
2013-04-16 3:12 ` Shawn Guo
0 siblings, 2 replies; 3+ messages in thread
From: Gwenhael Goavec-Merou @ 2013-04-14 7:44 UTC (permalink / raw)
To: linux-arm-kernel
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@armadeus.com>
---
v2:
- Suppress status, now PWM is always enabled;
- Suppress platform patch.
arch/arm/boot/dts/imx27.dtsi | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/arm/boot/dts/imx27.dtsi b/arch/arm/boot/dts/imx27.dtsi
index ff4bd48..14e97cf 100644
--- a/arch/arm/boot/dts/imx27.dtsi
+++ b/arch/arm/boot/dts/imx27.dtsi
@@ -89,6 +89,14 @@
clock-names = "ipg", "per";
};
+ pwm0: pwm at 10006000 {
+ compatible = "fsl,imx27-pwm";
+ reg = <0x10006000 0x1000>;
+ interrupts = <23>;
+ clocks = <&clks 34>, <&clks 61>;
+ clock-names = "ipg", "per";
+ };
+
uart1: serial at 1000a000 {
compatible = "fsl,imx27-uart", "fsl,imx21-uart";
reg = <0x1000a000 0x1000>;
--
1.8.1.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v2] ARM: imx27: Add PWM0 to device tree
2013-04-14 7:44 [PATCH v2] ARM: imx27: Add PWM0 to device tree Gwenhael Goavec-Merou
@ 2013-04-14 8:49 ` Sascha Hauer
2013-04-16 3:12 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2013-04-14 8:49 UTC (permalink / raw)
To: linux-arm-kernel
On Sun, Apr 14, 2013 at 09:44:25AM +0200, Gwenhael Goavec-Merou wrote:
>
> Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@armadeus.com>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Sascha
> ---
> v2:
> - Suppress status, now PWM is always enabled;
> - Suppress platform patch.
>
> arch/arm/boot/dts/imx27.dtsi | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/arch/arm/boot/dts/imx27.dtsi b/arch/arm/boot/dts/imx27.dtsi
> index ff4bd48..14e97cf 100644
> --- a/arch/arm/boot/dts/imx27.dtsi
> +++ b/arch/arm/boot/dts/imx27.dtsi
> @@ -89,6 +89,14 @@
> clock-names = "ipg", "per";
> };
>
> + pwm0: pwm at 10006000 {
> + compatible = "fsl,imx27-pwm";
> + reg = <0x10006000 0x1000>;
> + interrupts = <23>;
> + clocks = <&clks 34>, <&clks 61>;
> + clock-names = "ipg", "per";
> + };
> +
> uart1: serial at 1000a000 {
> compatible = "fsl,imx27-uart", "fsl,imx21-uart";
> reg = <0x1000a000 0x1000>;
> --
> 1.8.1.5
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v2] ARM: imx27: Add PWM0 to device tree
2013-04-14 7:44 [PATCH v2] ARM: imx27: Add PWM0 to device tree Gwenhael Goavec-Merou
2013-04-14 8:49 ` Sascha Hauer
@ 2013-04-16 3:12 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2013-04-16 3:12 UTC (permalink / raw)
To: linux-arm-kernel
On Sun, Apr 14, 2013 at 09:44:25AM +0200, Gwenhael Goavec-Merou wrote:
>
> Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@armadeus.com>
Applied, thanks.
> ---
> v2:
> - Suppress status, now PWM is always enabled;
> - Suppress platform patch.
>
> arch/arm/boot/dts/imx27.dtsi | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/arch/arm/boot/dts/imx27.dtsi b/arch/arm/boot/dts/imx27.dtsi
> index ff4bd48..14e97cf 100644
> --- a/arch/arm/boot/dts/imx27.dtsi
> +++ b/arch/arm/boot/dts/imx27.dtsi
> @@ -89,6 +89,14 @@
> clock-names = "ipg", "per";
> };
>
> + pwm0: pwm at 10006000 {
> + compatible = "fsl,imx27-pwm";
> + reg = <0x10006000 0x1000>;
> + interrupts = <23>;
> + clocks = <&clks 34>, <&clks 61>;
> + clock-names = "ipg", "per";
> + };
> +
> uart1: serial at 1000a000 {
> compatible = "fsl,imx27-uart", "fsl,imx21-uart";
> reg = <0x1000a000 0x1000>;
> --
> 1.8.1.5
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-16 3:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-14 7:44 [PATCH v2] ARM: imx27: Add PWM0 to device tree Gwenhael Goavec-Merou
2013-04-14 8:49 ` Sascha Hauer
2013-04-16 3:12 ` Shawn Guo
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).