Re: [PATCH] ARM: shmobile: r8a7740: Add clocks to DTS

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




On Thu, Aug 07, 2014 at 10:12:10AM +0200, Ulrich Hecht wrote:
> Declares the r8a7740 clocks supported by the legacy clock framework,
> excluding those requiring extensions to the DIV6 driver, as well as
> the Armadillo800-specific overrides.
> 
> Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@xxxxxxxxx>
> ---
> 
> Hi!
> 
> This one omits the funky DIV6 clocks because the corresponding changes to
> the clock driver have not been accepted yet.  It should not have any
> negative impact on legacy support.

Hi Ulrich,

Thanks for you work on this.  The contents of your patch look good to me
but I think the patch should be split up on a per-file basis.

* Documentation/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt

  Although it only touches documentation this is a DT driver change.
  I think it should go through Mike Turquette's tree. I have
  CCed Mike to keep him in the loop.

  As it is a DT change it should also be CCed to the
  devicetree@xxxxxxxxxxxxxxx. I have CCed them on this email
  to keep them in the loop.

* arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts

  This seems independent of the other changes although I assume
  it doesn't do anything useful without some of the other changes
  in place.

  I can take this change through the renesas tree.

* arch/arm/boot/dts/r8a7740.dtsi

  This seems to have a binding dependency on the
  renesas,cpg-mstp-clocks.txt change. I think I can take
  this once Mike has indicated he has merged that change.

  It also seems to have a build dependency on the r8a7740-clock.h change.

  I can take this change through the renesas tree.

* include/dt-bindings/clock/r8a7740-clock.h

  I have a slight preference for it to be in a patch by itself rather
  than bundled with the r8a7740.dtsi change even though it is a
  dependency for that change.

  I believe that I can take this change through the renesas tree.


> 
> CU
> Uli
> 
> 
>  .../bindings/clock/renesas,cpg-mstp-clocks.txt     |   1 +
>  .../boot/dts/r8a7740-armadillo800eva-reference.dts |  13 ++
>  arch/arm/boot/dts/r8a7740.dtsi                     | 180 +++++++++++++++++++++
>  include/dt-bindings/clock/r8a7740-clock.h          |  77 +++++++++
>  4 files changed, 271 insertions(+)
>  create mode 100644 include/dt-bindings/clock/r8a7740-clock.h
> 
> diff --git a/Documentation/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt b/Documentation/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt
> index 8a92b5f..b3c0617 100644
> --- a/Documentation/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt
> +++ b/Documentation/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt
> @@ -11,6 +11,7 @@ Required Properties:
>  
>    - compatible: Must be one of the following
>      - "renesas,r7s72100-mstp-clocks" for R7S72100 (RZ) MSTP gate clocks
> +    - "renesas,r8a7740-mstp-clocks" for R8A7740 (R-Mobile A1) MSTP gate clocks
>      - "renesas,r8a7779-mstp-clocks" for R8A7779 (R-Car H1) MSTP gate clocks
>      - "renesas,r8a7790-mstp-clocks" for R8A7790 (R-Car H2) MSTP gate clocks
>      - "renesas,r8a7791-mstp-clocks" for R8A7791 (R-Car M2) MSTP gate clocks
> diff --git a/arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts b/arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts
> index ee9e7d5..266c439 100644
> --- a/arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts
> +++ b/arch/arm/boot/dts/r8a7740-armadillo800eva-reference.dts
> @@ -178,6 +178,19 @@
>  	};
>  };
>  
> +&extal1_clk {
> +	clock-frequency = <25000000>;
> +};
> +&extal2_clk {
> +	clock-frequency = <48000000>;
> +};
> +&fsibck_clk {
> +	clock-frequency = <12288000>;
> +};
> +&cpg_clocks {
> +	renesas,mode = <0x05>; /* MD_CK0 | MD_CK2 */
> +};
> +
>  &i2c0 {
>  	status = "okay";
>  	touchscreen@55 {
> diff --git a/arch/arm/boot/dts/r8a7740.dtsi b/arch/arm/boot/dts/r8a7740.dtsi
> index bda18fb..3c61c5d 100644
> --- a/arch/arm/boot/dts/r8a7740.dtsi
> +++ b/arch/arm/boot/dts/r8a7740.dtsi
> @@ -10,6 +10,7 @@
>  
>  /include/ "skeleton.dtsi"
>  
> +#include <dt-bindings/clock/r8a7740-clock.h>
>  #include <dt-bindings/interrupt-controller/irq.h>
>  
>  / {
> @@ -291,4 +292,183 @@
>  		interrupts = <0 9 0x4>;
>  		status = "disabled";
>  	};
> +
> +	clocks {
> +		#address-cells = <1>;
> +		#size-cells = <1>;
> +		ranges;
> +
> +		/* External root clock */
> +		extalr_clk: extalr_clk {
> +			compatible = "fixed-clock";
> +			#clock-cells = <0>;
> +			clock-frequency = <32768>;
> +			clock-output-names = "extalr";
> +		};
> +		extal1_clk: extal1_clk {
> +			compatible = "fixed-clock";
> +			#clock-cells = <0>;
> +			clock-frequency = <0>;
> +			clock-output-names = "extal1";
> +		};
> +		extal2_clk: extal2_clk {
> +			compatible = "fixed-clock";
> +			#clock-cells = <0>;
> +			clock-frequency = <0>;
> +			clock-output-names = "extal2";
> +		};
> +		dv_clk: dv_clk {
> +			compatible = "fixed-clock";
> +			#clock-cells = <0>;
> +			clock-frequency = <27000000>;
> +			clock-output-names = "dv";
> +		};
> +		fsiack_clk: fsiack_clk {
> +			compatible = "fixed-clock";
> +			#clock-cells = <0>;
> +			clock-frequency = <0>;
> +			clock-output-names = "fsiack";
> +		};
> +		fsibck_clk: fsibck_clk {
> +			compatible = "fixed-clock";
> +			#clock-cells = <0>;
> +			clock-frequency = <0>;
> +			clock-output-names = "fsibck";
> +		};
> +
> +		/* Special CPG clocks */
> +		cpg_clocks: cpg_clocks@e6150000 {
> +			compatible = "renesas,r8a7740-cpg-clocks";
> +			reg = <0xe6150000 0x10000>;
> +			clocks = <&extal1_clk>, <&extalr_clk>;
> +			#clock-cells = <1>;
> +			clock-output-names = "system", "pllc0", "pllc1",
> +					     "pllc2", "r",
> +					     "usb24s",
> +					     "i", "zg", "b", "m1", "hp",
> +					     "hpp", "usbp", "s", "zb", "m3",
> +					     "cp";
> +		};
> +
> +		/* Variable factor clocks (DIV6) */
> +		sub_clk: sub_clk@e6150080 {
> +			compatible = "renesas,r8a7740-div6-clock", "renesas,cpg-div6-clock";
> +			reg = <0xe6150080 4>;
> +			clocks = <&pllc1_div2_clk>;
> +			#clock-cells = <0>;
> +			clock-output-names = "sub";
> +		};
> +
> +		/* Fixed factor clocks */
> +		pllc1_div2_clk: pllc1_div2_clk {
> +			compatible = "fixed-factor-clock";
> +			clocks = <&cpg_clocks R8A7740_CLK_PLLC1>;
> +			#clock-cells = <0>;
> +			clock-div = <2>;
> +			clock-mult = <1>;
> +			clock-output-names = "pllc1_div2";
> +		};
> +		extal1_div2_clk: extal1_div2_clk {
> +			compatible = "fixed-factor-clock";
> +			clocks = <&extal1_clk>;
> +			#clock-cells = <0>;
> +			clock-div = <2>;
> +			clock-mult = <1>;
> +			clock-output-names = "extal1_div2";
> +		};
> +
> +		/* Gate clocks */
> +		subck_clks: subck_clks@e6150080 {
> +			compatible = "renesas,r8a7740-mstp-clocks", "renesas,cpg-mstp-clocks";
> +			reg = <0xe6150080 4>;
> +			clocks = <&sub_clk>, <&sub_clk>;
> +			#clock-cells = <1>;
> +			renesas,clock-indices = <
> +				R8A7740_CLK_SUBCK R8A7740_CLK_SUBCK2
> +			>;
> +			clock-output-names =
> +				"subck", "subck2";
> +		};
> +		mstp1_clks: mstp1_clks@e6150134 {
> +			compatible = "renesas,r8a7740-mstp-clocks", "renesas,cpg-mstp-clocks";
> +			reg = <0xe6150134 4>, <0xe6150038 4>;
> +			clocks = <&cpg_clocks R8A7740_CLK_S>,
> +				 <&cpg_clocks R8A7740_CLK_S>, <&sub_clk>,
> +				 <&cpg_clocks R8A7740_CLK_B>,
> +				 <&sub_clk>, <&sub_clk>,
> +				 <&cpg_clocks R8A7740_CLK_B>;
> +			#clock-cells = <1>;
> +			renesas,clock-indices = <
> +				R8A7740_CLK_CEU21 R8A7740_CLK_CEU20 R8A7740_CLK_TMU0
> +				R8A7740_CLK_LCDC1 R8A7740_CLK_IIC0 R8A7740_CLK_TMU1
> +				R8A7740_CLK_LCDC0
> +			>;
> +			clock-output-names =
> +				"ceu21", "ceu20", "tmu0", "lcdc1", "iic0",
> +				"tmu1", "lcdc0";
> +		};
> +		mstp2_clks: mstp2_clks@e6150138 {
> +			compatible = "renesas,r8a7740-mstp-clocks", "renesas,cpg-mstp-clocks";
> +			reg = <0xe6150138 4>, <0xe6150040 4>;
> +			clocks = <&sub_clk>, <&sub_clk>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&sub_clk>, <&sub_clk>, <&sub_clk>,
> +				 <&sub_clk>, <&sub_clk>, <&sub_clk>,
> +				 <&sub_clk>;
> +			#clock-cells = <1>;
> +			renesas,clock-indices = <
> +				R8A7740_CLK_SCIFA6 R8A7740_CLK_SCIFA7
> +				R8A7740_CLK_DMAC1 R8A7740_CLK_DMAC2
> +				R8A7740_CLK_DMAC3 R8A7740_CLK_USBDMAC
> +				R8A7740_CLK_SCIFA5 R8A7740_CLK_SCIFB
> +				R8A7740_CLK_SCIFA0 R8A7740_CLK_SCIFA1
> +				R8A7740_CLK_SCIFA2 R8A7740_CLK_SCIFA3
> +				R8A7740_CLK_SCIFA4
> +			>;
> +			clock-output-names =
> +				"scifa6", "scifa7", "dmac1", "dmac2", "dmac3",
> +				"usbdmac", "scifa5", "scifb", "scifa0", "scifa1",
> +				"scifa2", "scifa3", "scifa4";
> +		};
> +		mstp3_clks: mstp3_clks@e615013c {
> +			compatible = "renesas,r8a7740-mstp-clocks", "renesas,cpg-mstp-clocks";
> +			reg = <0xe615013c 4>, <0xe6150048 4>;
> +			clocks = <&cpg_clocks R8A7740_CLK_R>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&sub_clk>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>;
> +			#clock-cells = <1>;
> +			renesas,clock-indices = <
> +				R8A7740_CLK_CMT1 R8A7740_CLK_FSI R8A7740_CLK_IIC1
> +				R8A7740_CLK_USBF R8A7740_CLK_SDHI0 R8A7740_CLK_SDHI1
> +				R8A7740_CLK_MMC R8A7740_CLK_GETHER R8A7740_CLK_TPU0
> +			>;
> +			clock-output-names =
> +				"cmt1", "fsi", "iic1", "usbf", "sdhi0", "sdhi1",
> +				"mmc", "gether", "tpu0";
> +		};
> +		mstp4_clks: mstp4_clks@e6150140 {
> +			compatible = "renesas,r8a7740-mstp-clocks", "renesas,cpg-mstp-clocks";
> +			reg = <0xe6150140 4>, <0xe615004c 4>;
> +			clocks = <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>,
> +				 <&cpg_clocks R8A7740_CLK_HP>;
> +			#clock-cells = <1>;
> +			renesas,clock-indices = <
> +				R8A7740_CLK_USBH R8A7740_CLK_SDHI2
> +				R8A7740_CLK_USBFUNC R8A7740_CLK_USBPHY
> +			>;
> +			clock-output-names =
> +				"usbhost", "sdhi2", "usbfunc", "usphy";
> +		};
> +	};
>  };
> diff --git a/include/dt-bindings/clock/r8a7740-clock.h b/include/dt-bindings/clock/r8a7740-clock.h
> new file mode 100644
> index 0000000..f6b4b0f
> --- /dev/null
> +++ b/include/dt-bindings/clock/r8a7740-clock.h
> @@ -0,0 +1,77 @@
> +/*
> + * Copyright 2014 Ulrich Hecht
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License, or
> + * (at your option) any later version.
> + */
> +
> +#ifndef __DT_BINDINGS_CLOCK_R8A7740_H__
> +#define __DT_BINDINGS_CLOCK_R8A7740_H__
> +
> +/* CPG */
> +#define R8A7740_CLK_SYSTEM	0
> +#define R8A7740_CLK_PLLC0	1
> +#define R8A7740_CLK_PLLC1	2
> +#define R8A7740_CLK_PLLC2	3
> +#define R8A7740_CLK_R		4
> +#define R8A7740_CLK_USB24S	5
> +#define R8A7740_CLK_I		6
> +#define R8A7740_CLK_ZG		7
> +#define R8A7740_CLK_B		8
> +#define R8A7740_CLK_M1		9
> +#define R8A7740_CLK_HP		10
> +#define R8A7740_CLK_HPP		11
> +#define R8A7740_CLK_USBP	12
> +#define R8A7740_CLK_S		13
> +#define R8A7740_CLK_ZB		14
> +#define R8A7740_CLK_M3		15
> +#define R8A7740_CLK_CP		16
> +
> +/* MSTP1 */
> +#define R8A7740_CLK_CEU21	28
> +#define R8A7740_CLK_CEU20	27
> +#define R8A7740_CLK_TMU0	25
> +#define R8A7740_CLK_LCDC1	17
> +#define R8A7740_CLK_IIC0	16
> +#define R8A7740_CLK_TMU1	11
> +#define R8A7740_CLK_LCDC0	0
> +
> +/* MSTP2 */
> +#define R8A7740_CLK_SCIFA6	30
> +#define R8A7740_CLK_SCIFA7	22
> +#define R8A7740_CLK_DMAC1	18
> +#define R8A7740_CLK_DMAC2	17
> +#define R8A7740_CLK_DMAC3	16
> +#define R8A7740_CLK_USBDMAC	14
> +#define R8A7740_CLK_SCIFA5	7
> +#define R8A7740_CLK_SCIFB	6
> +#define R8A7740_CLK_SCIFA0	4
> +#define R8A7740_CLK_SCIFA1	3
> +#define R8A7740_CLK_SCIFA2	2
> +#define R8A7740_CLK_SCIFA3	1
> +#define R8A7740_CLK_SCIFA4	0
> +
> +/* MSTP3 */
> +#define R8A7740_CLK_CMT1	29
> +#define R8A7740_CLK_FSI		28
> +#define R8A7740_CLK_IIC1	23
> +#define R8A7740_CLK_USBF	20
> +#define R8A7740_CLK_SDHI0	14
> +#define R8A7740_CLK_SDHI1	13
> +#define R8A7740_CLK_MMC		12
> +#define R8A7740_CLK_GETHER	9
> +#define R8A7740_CLK_TPU0	4
> +
> +/* MSTP4 */
> +#define R8A7740_CLK_USBH	16
> +#define R8A7740_CLK_SDHI2	15
> +#define R8A7740_CLK_USBFUNC	7
> +#define R8A7740_CLK_USBPHY	6
> +
> +/* SUBCK* */
> +#define R8A7740_CLK_SUBCK	9
> +#define R8A7740_CLK_SUBCK2	10
> +
> +#endif /* __DT_BINDINGS_CLOCK_R8A7740_H__ */
> -- 
> 1.8.4.5
> 
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Device Tree Compilter]     [Device Tree Spec]     [Linux Driver Backports]     [Video for Linux]     [Linux USB Devel]     [Linux PCI Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [XFree86]     [Yosemite Backpacking]
  Powered by Linux