From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Simon Horman <horms@verge.net.au>,
Magnus Damm <magnus.damm@gmail.com>,
Yoshinori Sato <ysato@users.sourceforge.jp>,
linux-serial@vger.kernel.org, linux-sh@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 23/25] arm64: renesas: r8a7795 dtsi: Add BRG support for (H)SCIF
Date: Thu, 19 Nov 2015 23:07:33 +0200 [thread overview]
Message-ID: <6606020.G1vmRDrqTj@avalon> (raw)
In-Reply-To: <1447958344-836-24-git-send-email-geert+renesas@glider.be>
Hi Geert,
Thank you for the patch.
On Thursday 19 November 2015 19:39:02 Geert Uytterhoeven wrote:
> Add the device node for the external SCIF_CLK.
> The presence of the SCIF_CLK crystal and its clock frequency depend on
> the actual board.
>
> Add the two optional clock sources (ZS_CLK and SCIF_CLK for the internal
> resp. external clock) for the Baud Rate Generator for External Clock
> (BRG) to all SCIF and HSCIF device nodes.
>
> This increases the range and accuracy of supported baud rates on
> (H)SCIF.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> arch/arm64/boot/dts/renesas/r8a7795.dtsi | 74 +++++++++++++++++++----------
> 1 file changed, 52 insertions(+), 22 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/renesas/r8a7795.dtsi
> b/arch/arm64/boot/dts/renesas/r8a7795.dtsi index
> 53a2a8fb42b7480c..25900761cfde201e 100644
> --- a/arch/arm64/boot/dts/renesas/r8a7795.dtsi
> +++ b/arch/arm64/boot/dts/renesas/r8a7795.dtsi
> @@ -84,6 +84,14 @@
> status = "disabled";
> };
>
> + /* External SCIF clock - to be overridden by boards that provide it */
> + scif_clk: scif {
> + compatible = "fixed-clock";
> + #clock-cells = <0>;
> + clock-frequency = <0>;
> + status = "disabled";
> + };
I have mixed feelings about this. Defining an external clock that isn't
present on the board isn't very clean, even more so when the clock has such a
generic name. Wouldn't it be better to let board files define the clock when
they need it ? I know it would require board files to override the clocks and
clock-names property too. Maybe we need to extend the DTS syntax to allow
extending list properties instead of overriding them completely ?
> soc {
> compatible = "simple-bus";
> interrupt-parent = <&gic>;
> @@ -362,8 +370,10 @@
> compatible = "renesas,hscif-r8a7795", "renesas,hscif";
> reg = <0 0xe6540000 0 96>;
> interrupts = <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 520>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 520>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac1 0x31>, <&dmac1 0x30>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -374,8 +384,10 @@
> compatible = "renesas,hscif-r8a7795", "renesas,hscif";
> reg = <0 0xe6550000 0 96>;
> interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 519>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 519>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac1 0x33>, <&dmac1 0x32>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -386,8 +398,10 @@
> compatible = "renesas,hscif-r8a7795", "renesas,hscif";
> reg = <0 0xe6560000 0 96>;
> interrupts = <GIC_SPI 144 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 518>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 518>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac1 0x35>, <&dmac1 0x34>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -398,8 +412,10 @@
> compatible = "renesas,hscif-r8a7795", "renesas,hscif";
> reg = <0 0xe66a0000 0 96>;
> interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 517>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 517>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac0 0x37>, <&dmac0 0x36>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -410,8 +426,10 @@
> compatible = "renesas,hscif-r8a7795", "renesas,hscif";
> reg = <0 0xe66b0000 0 96>;
> interrupts = <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 516>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 516>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac0 0x39>, <&dmac0 0x38>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -422,8 +440,10 @@
> compatible = "renesas,scif-r8a7795", "renesas,scif";
> reg = <0 0xe6e60000 0 64>;
> interrupts = <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 207>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 207>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac1 0x51>, <&dmac1 0x50>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -434,8 +454,10 @@
> compatible = "renesas,scif-r8a7795", "renesas,scif";
> reg = <0 0xe6e68000 0 64>;
> interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 206>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 206>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac1 0x53>, <&dmac1 0x52>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -446,8 +468,10 @@
> compatible = "renesas,scif-r8a7795", "renesas,scif";
> reg = <0 0xe6e88000 0 64>;
> interrupts = <GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 310>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 310>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac1 0x13>, <&dmac1 0x12>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -458,8 +482,10 @@
> compatible = "renesas,scif-r8a7795", "renesas,scif";
> reg = <0 0xe6c50000 0 64>;
> interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 204>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 204>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac0 0x57>, <&dmac0 0x56>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -470,8 +496,10 @@
> compatible = "renesas,scif-r8a7795", "renesas,scif";
> reg = <0 0xe6c40000 0 64>;
> interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 203>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 203>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac0 0x59>, <&dmac0 0x58>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
> @@ -482,8 +510,10 @@
> compatible = "renesas,scif-r8a7795", "renesas,scif";
> reg = <0 0xe6f30000 0 64>;
> interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
> - clocks = <&cpg CPG_MOD 202>;
> - clock-names = "fck";
> + clocks = <&cpg CPG_MOD 202>,
> + <&cpg CPG_CORE R8A7795_CLK_S3D1>,
> + <&scif_clk>;
> + clock-names = "fck", "int_clk", "scif_clk";
> dmas = <&dmac1 0x5b>, <&dmac1 0x5a>;
> dma-names = "tx", "rx";
> power-domains = <&cpg>;
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2015-11-19 21:07 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-19 18:38 [PATCH 00/25] serial: sh-sci: Add external clock and BRG Support Geert Uytterhoeven
[not found] ` <1447958344-836-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2015-11-19 18:38 ` [PATCH 01/25] serial: sh-sci: Update DT binding documentation for external clock input Geert Uytterhoeven
[not found] ` <1447958344-836-2-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2015-11-19 20:19 ` Laurent Pinchart
2015-11-19 20:27 ` Laurent Pinchart
2015-11-19 20:39 ` Geert Uytterhoeven
[not found] ` <CAMuHMdUnT2zCnj9QBVgxJaHV2fk5iuc7cxq=fh+fVTv3toOVaQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-11-19 21:17 ` Laurent Pinchart
2015-11-20 8:00 ` Geert Uytterhoeven
2015-11-19 20:33 ` Geert Uytterhoeven
[not found] ` <CAMuHMdX4ToefbBLR6o2AMuzCMoKcYo9XRZOzHJzgtQn552vmNg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-12-21 14:20 ` Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 02/25] serial: sh-sci: Update DT binding documentation for BRG support Geert Uytterhoeven
2015-11-19 20:26 ` Laurent Pinchart
2015-11-19 20:44 ` Geert Uytterhoeven
[not found] ` <CAMuHMdWHbc1kK7MipyZ_M_C6gPyPqvC4H35eZLXQezjbQNK2Jw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-11-19 21:13 ` Laurent Pinchart
2015-11-20 7:58 ` Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 03/25] serial: sh-sci: Drop useless check for zero sampling_rate Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 04/25] serial: sh-sci: Grammar s/Get ... for/Get ... from/ Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 05/25] serial: sh-sci: Drop unused frame_len parameter for sci_baud_calc_hscif() Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 06/25] serial: sh-sci: Don't overwrite clock selection in serial_console_write() Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 07/25] serial: sh-sci: Convert from clk_get() to devm_clk_get() Geert Uytterhoeven
2015-11-19 20:38 ` Laurent Pinchart
2015-12-10 12:30 ` Geert Uytterhoeven
2015-12-13 19:39 ` Laurent Pinchart
2015-12-14 10:34 ` Geert Uytterhoeven
2015-12-14 15:47 ` Laurent Pinchart
2015-11-19 18:38 ` [PATCH 08/25] serial: sh-sci: Make unsigned values in sci_baud_calc_hscif() unsigned Geert Uytterhoeven
2015-11-19 20:36 ` Laurent Pinchart
2015-11-19 20:49 ` Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 09/25] serial: sh-sci: Avoid overflow in sci_baud_calc_hscif() Geert Uytterhoeven
2015-11-19 20:37 ` Laurent Pinchart
2015-11-19 20:50 ` Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 10/25] serial: sh-sci: Improve bit rate error calculation for HSCIF Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 11/25] serial: sh-sci: Avoid calculating the receive margin " Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 12/25] serial: sh-sci: Merge sci_scbrr_calc() and sci_baud_calc_hscif() Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 13/25] serial: sh-sci: Take into account sampling rate for max baud rate Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 14/25] serial: sh-sci: Add BRG register definitions Geert Uytterhoeven
2015-11-19 20:45 ` Laurent Pinchart
2015-11-19 18:38 ` [PATCH 15/25] serial: sh-sci: Replace struct sci_port_info by type/regtype encoding Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 16/25] serial: sh-sci: Correct SCIF type on RZ/A1H Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 17/25] serial: sh-sci: Correct SCIF type on R-Car for BRG Geert Uytterhoeven
2015-11-19 20:55 ` Laurent Pinchart
2015-11-20 7:46 ` Geert Uytterhoeven
2015-11-20 14:52 ` Laurent Pinchart
2015-11-20 15:30 ` Geert Uytterhoeven
2015-11-20 15:33 ` Laurent Pinchart
2015-12-10 9:21 ` Geert Uytterhoeven
2015-12-11 1:12 ` Simon Horman
2015-12-13 19:18 ` Laurent Pinchart
2015-11-19 18:38 ` [PATCH 18/25] serial: sh-sci: Prepare for multiple clocks and baud rate generators Geert Uytterhoeven
2015-11-19 21:04 ` Laurent Pinchart
2015-11-20 7:52 ` Geert Uytterhoeven
2015-11-20 14:47 ` Laurent Pinchart
2015-11-20 15:17 ` Geert Uytterhoeven
2015-11-20 15:31 ` Laurent Pinchart
2015-11-19 18:38 ` [PATCH 19/25] serial: sh-sci: Add support for optional external (H)SCK input Geert Uytterhoeven
2015-11-19 18:38 ` [PATCH 20/25] serial: sh-sci: Add support for optional BRG on (H)SCIF Geert Uytterhoeven
2015-11-19 18:39 ` [PATCH 21/25] ARM: shmobile: r8a7791 dtsi: Add BRG support for (H)SCIF Geert Uytterhoeven
2015-11-19 18:39 ` [PATCH 22/25] ARM: shmobile: koelsch dts: Enable SCIF_CLK frequency and pins Geert Uytterhoeven
2015-11-19 18:39 ` [PATCH 23/25] arm64: renesas: r8a7795 dtsi: Add BRG support for (H)SCIF Geert Uytterhoeven
2015-11-19 21:07 ` Laurent Pinchart [this message]
2015-11-20 8:17 ` Geert Uytterhoeven
2015-11-19 18:39 ` [PATCH 24/25] arm64: renesas: salvator-x dts: Enable SCIF_CLK frequency and pins Geert Uytterhoeven
2015-11-19 18:39 ` [PATCH 25/25] sh: sh7734: Correct SCIF type for BRG Geert Uytterhoeven
2015-11-19 21:08 ` [PATCH 00/25] serial: sh-sci: Add external clock and BRG Support Laurent Pinchart
2015-11-20 8:22 ` Geert Uytterhoeven
2015-11-20 8:58 ` Laurent Pinchart
2015-11-20 9:07 ` Geert Uytterhoeven
2015-11-20 14:50 ` Laurent Pinchart
2015-11-20 15:31 ` Geert Uytterhoeven
2015-11-20 9:09 ` Geert Uytterhoeven
2015-12-13 6:43 ` Greg Kroah-Hartman
2015-12-13 9:09 ` Geert Uytterhoeven
2015-11-24 2:43 ` Simon Horman
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=6606020.G1vmRDrqTj@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=geert+renesas@glider.be \
--cc=gregkh@linuxfoundation.org \
--cc=horms@verge.net.au \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=ysato@users.sourceforge.jp \
/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).