Linux Renesas SOC kernel development
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Biju Das <biju.das@bp.renesas.com>
Cc: Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Simon Horman <horms@verge.net.au>,
	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Magnus Damm <magnus.damm@gmail.com>,
	linux-renesas-soc@vger.kernel.org, devicetree@vger.kernel.org,
	Chris Paterson <Chris.Paterson2@renesas.com>,
	Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Subject: Re: [PATCH 6/8] arm64: dts: renesas: r8a774b1: Add PWM device nodes
Date: Tue, 1 Oct 2019 21:17:42 +0300	[thread overview]
Message-ID: <20191001181742.GH4735@pendragon.ideasonboard.com> (raw)
In-Reply-To: <1569932124-32010-7-git-send-email-biju.das@bp.renesas.com>

Hi Biju,

Thank you for the patch.

On Tue, Oct 01, 2019 at 01:15:22PM +0100, Biju Das wrote:
> This patch adds PWM device nodes to r8a774b1 SoC DT.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  arch/arm64/boot/dts/renesas/r8a774b1.dtsi | 70 +++++++++++++++++++++++++++++++
>  1 file changed, 70 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/renesas/r8a774b1.dtsi b/arch/arm64/boot/dts/renesas/r8a774b1.dtsi
> index 93b2e88..538e9ce 100644
> --- a/arch/arm64/boot/dts/renesas/r8a774b1.dtsi
> +++ b/arch/arm64/boot/dts/renesas/r8a774b1.dtsi
> @@ -940,6 +940,76 @@
>  			/* placeholder */
>  		};
>  
> +		pwm0: pwm@e6e30000 {
> +			compatible = "renesas,pwm-r8a774b1", "renesas,pwm-rcar";
> +			reg = <0 0xe6e30000 0 0x8>;
> +			#pwm-cells = <2>;
> +			clocks = <&cpg CPG_MOD 523>;
> +			resets = <&cpg 523>;
> +			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
> +			status = "disabled";
> +		};
> +
> +		pwm1: pwm@e6e31000 {
> +			compatible = "renesas,pwm-r8a774b1", "renesas,pwm-rcar";
> +			reg = <0 0xe6e31000 0 0x8>;
> +			#pwm-cells = <2>;
> +			clocks = <&cpg CPG_MOD 523>;
> +			resets = <&cpg 523>;
> +			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
> +			status = "disabled";
> +		};
> +
> +		pwm2: pwm@e6e32000 {
> +			compatible = "renesas,pwm-r8a774b1", "renesas,pwm-rcar";
> +			reg = <0 0xe6e32000 0 0x8>;
> +			#pwm-cells = <2>;
> +			clocks = <&cpg CPG_MOD 523>;
> +			resets = <&cpg 523>;
> +			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
> +			status = "disabled";
> +		};
> +
> +		pwm3: pwm@e6e33000 {
> +			compatible = "renesas,pwm-r8a774b1", "renesas,pwm-rcar";
> +			reg = <0 0xe6e33000 0 0x8>;
> +			#pwm-cells = <2>;
> +			clocks = <&cpg CPG_MOD 523>;
> +			resets = <&cpg 523>;
> +			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
> +			status = "disabled";
> +		};
> +
> +		pwm4: pwm@e6e34000 {
> +			compatible = "renesas,pwm-r8a774b1", "renesas,pwm-rcar";
> +			reg = <0 0xe6e34000 0 0x8>;
> +			#pwm-cells = <2>;
> +			clocks = <&cpg CPG_MOD 523>;
> +			resets = <&cpg 523>;
> +			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
> +			status = "disabled";
> +		};
> +
> +		pwm5: pwm@e6e35000 {
> +			compatible = "renesas,pwm-r8a774b1", "renesas,pwm-rcar";
> +			reg = <0 0xe6e35000 0 0x8>;
> +			#pwm-cells = <2>;
> +			clocks = <&cpg CPG_MOD 523>;
> +			resets = <&cpg 523>;
> +			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
> +			status = "disabled";
> +		};
> +
> +		pwm6: pwm@e6e36000 {
> +			compatible = "renesas,pwm-r8a774b1", "renesas,pwm-rcar";
> +			reg = <0 0xe6e36000 0 0x8>;
> +			#pwm-cells = <2>;
> +			clocks = <&cpg CPG_MOD 523>;
> +			resets = <&cpg 523>;
> +			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
> +			status = "disabled";
> +		};
> +
>  		scif0: serial@e6e60000 {
>  			compatible = "renesas,scif-r8a774b1",
>  				     "renesas,rcar-gen3-scif", "renesas,scif";

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2019-10-01 18:17 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-01 12:15 [PATCH 0/8] Add Display support Biju Das
2019-10-01 12:15 ` [PATCH 1/8] arm64: dts: renesas: hihope-common: Move du clk properties out of common dtsi Biju Das
2019-10-01 18:11   ` Laurent Pinchart
2019-10-01 18:17     ` Geert Uytterhoeven
2019-10-01 12:15 ` [PATCH 2/8] arm64: dts: renesas: r8a774b1: Add DU device to DT Biju Das
2019-10-01 18:13   ` Laurent Pinchart
2019-10-01 12:15 ` [PATCH 3/8] arm64: dts: renesas: r8a774b1: Add HDMI encoder instance Biju Das
2019-10-01 18:15   ` Laurent Pinchart
2019-10-01 12:15 ` [PATCH 4/8] arm64: dts: renesas: r8a774b1-hihope-rzg2n: Add display clock properties Biju Das
2019-10-01 18:15   ` Laurent Pinchart
2019-10-01 12:15 ` [PATCH 5/8] arm64: dts: renesas: r8a774b1: Add FDP1 device nodes Biju Das
2019-10-01 18:16   ` Laurent Pinchart
2019-10-01 12:15 ` [PATCH 6/8] arm64: dts: renesas: r8a774b1: Add PWM " Biju Das
2019-10-01 18:17   ` Laurent Pinchart [this message]
2019-10-01 12:15 ` [PATCH 7/8] arm64: dts: renesas: hihope-rzg2-ex: Enable backlight Biju Das
2019-10-01 18:18   ` Laurent Pinchart
2019-10-01 12:15 ` [PATCH 8/8] arm64: dts: renesas: hihope-rzg2-ex: Add LVDS panel support Biju Das
2019-10-01 18:25   ` Laurent Pinchart
2019-10-02  8:30     ` Biju Das

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=20191001181742.GH4735@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=Chris.Paterson2@renesas.com \
    --cc=biju.das@bp.renesas.com \
    --cc=devicetree@vger.kernel.org \
    --cc=fabrizio.castro@bp.renesas.com \
    --cc=geert+renesas@glider.be \
    --cc=horms@verge.net.au \
    --cc=kieran.bingham+renesas@ideasonboard.com \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=magnus.damm@gmail.com \
    --cc=mark.rutland@arm.com \
    --cc=robh+dt@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