linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 18/31] dts: mpc512x: add clock specs for client lookups
Date: Fri, 02 Aug 2013 16:41:20 -0700	[thread overview]
Message-ID: <20130802234120.6450.57074@quantum> (raw)
In-Reply-To: <1374495298-22019-19-git-send-email-gsi@denx.de>

Quoting Gerhard Sittig (2013-07-22 05:14:45)
> this addresses the client side of device tree based clock lookups
> 
> add clock specifiers to the mbx, nfc, mscan, sdhc, i2c, axe, diu, viu,
> mdio, fec, usb, pata, psc, psc fifo, and pci nodes in the shared
> mpc5121.dtsi include
> 
> these specs map 'clock-names' encoded in drivers to their respective
> 'struct clk' items in the platform's clock driver
> 
> Signed-off-by: Gerhard Sittig <gsi@denx.de>

Reviewed-by: Mike Turquette <mturquette@linaro.org>

> ---
>  arch/powerpc/boot/dts/mpc5121.dtsi |   79 ++++++++++++++++++++++++++++++++++++
>  1 file changed, 79 insertions(+)
> 
> diff --git a/arch/powerpc/boot/dts/mpc5121.dtsi b/arch/powerpc/boot/dts/mpc5121.dtsi
> index 8f4cba0..3657ae6 100644
> --- a/arch/powerpc/boot/dts/mpc5121.dtsi
> +++ b/arch/powerpc/boot/dts/mpc5121.dtsi
> @@ -51,6 +51,10 @@
>                 compatible = "fsl,mpc5121-mbx";
>                 reg = <0x20000000 0x4000>;
>                 interrupts = <66 0x8>;
> +               clocks = <&clks MPC512x_CLK_MBX_BUS>,
> +                        <&clks MPC512x_CLK_MBX_3D>,
> +                        <&clks MPC512x_CLK_MBX>;
> +               clock-names = "mbx-bus", "mbx-3d", "mbx";
>         };
>  
>         sram at 30000000 {
> @@ -64,6 +68,8 @@
>                 interrupts = <6 8>;
>                 #address-cells = <1>;
>                 #size-cells = <1>;
> +               clocks = <&clks MPC512x_CLK_NFC>;
> +               clock-names = "per";
>         };
>  
>         localbus at 80000020 {
> @@ -153,12 +159,22 @@
>                         compatible = "fsl,mpc5121-mscan";
>                         reg = <0x1300 0x80>;
>                         interrupts = <12 0x8>;
> +                       clocks = <&clks MPC512x_CLK_IPS>,
> +                                <&clks MPC512x_CLK_SYS>,
> +                                <&clks MPC512x_CLK_REF>,
> +                                <&clks MPC512x_CLK_MSCAN0_MCLK>;
> +                       clock-names = "ips", "sys", "ref", "mclk";
>                 };
>  
>                 can at 1380 {
>                         compatible = "fsl,mpc5121-mscan";
>                         reg = <0x1380 0x80>;
>                         interrupts = <13 0x8>;
> +                       clocks = <&clks MPC512x_CLK_IPS>,
> +                                <&clks MPC512x_CLK_SYS>,
> +                                <&clks MPC512x_CLK_REF>,
> +                                <&clks MPC512x_CLK_MSCAN1_MCLK>;
> +                       clock-names = "ips", "sys", "ref", "mclk";
>                 };
>  
>                 sdhc at 1500 {
> @@ -167,6 +183,9 @@
>                         interrupts = <8 0x8>;
>                         dmas = <&dma0 30>;
>                         dma-names = "rx-tx";
> +                       clocks = <&clks MPC512x_CLK_IPS>,
> +                                <&clks MPC512x_CLK_SDHC>;
> +                       clock-names = "ipg", "per";
>                 };
>  
>                 i2c at 1700 {
> @@ -175,6 +194,8 @@
>                         compatible = "fsl,mpc5121-i2c", "fsl-i2c";
>                         reg = <0x1700 0x20>;
>                         interrupts = <9 0x8>;
> +                       clocks = <&clks MPC512x_CLK_I2C>;
> +                       clock-names = "per";
>                 };
>  
>                 i2c at 1720 {
> @@ -183,6 +204,8 @@
>                         compatible = "fsl,mpc5121-i2c", "fsl-i2c";
>                         reg = <0x1720 0x20>;
>                         interrupts = <10 0x8>;
> +                       clocks = <&clks MPC512x_CLK_I2C>;
> +                       clock-names = "per";
>                 };
>  
>                 i2c at 1740 {
> @@ -191,6 +214,8 @@
>                         compatible = "fsl,mpc5121-i2c", "fsl-i2c";
>                         reg = <0x1740 0x20>;
>                         interrupts = <11 0x8>;
> +                       clocks = <&clks MPC512x_CLK_I2C>;
> +                       clock-names = "per";
>                 };
>  
>                 i2ccontrol at 1760 {
> @@ -202,30 +227,46 @@
>                         compatible = "fsl,mpc5121-axe";
>                         reg = <0x2000 0x100>;
>                         interrupts = <42 0x8>;
> +                       clocks = <&clks MPC512x_CLK_AXE>;
> +                       clock-names = "per";
>                 };
>  
>                 display at 2100 {
>                         compatible = "fsl,mpc5121-diu";
>                         reg = <0x2100 0x100>;
>                         interrupts = <64 0x8>;
> +                       clocks = <&clks MPC512x_CLK_DIU>;
> +                       clock-names = "per";
>                 };
>  
>                 can at 2300 {
>                         compatible = "fsl,mpc5121-mscan";
>                         reg = <0x2300 0x80>;
>                         interrupts = <90 0x8>;
> +                       clocks = <&clks MPC512x_CLK_IPS>,
> +                                <&clks MPC512x_CLK_SYS>,
> +                                <&clks MPC512x_CLK_REF>,
> +                                <&clks MPC512x_CLK_MSCAN2_MCLK>;
> +                       clock-names = "ips", "sys", "ref", "mclk";
>                 };
>  
>                 can at 2380 {
>                         compatible = "fsl,mpc5121-mscan";
>                         reg = <0x2380 0x80>;
>                         interrupts = <91 0x8>;
> +                       clocks = <&clks MPC512x_CLK_IPS>,
> +                                <&clks MPC512x_CLK_SYS>,
> +                                <&clks MPC512x_CLK_REF>,
> +                                <&clks MPC512x_CLK_MSCAN3_MCLK>;
> +                       clock-names = "ips", "sys", "ref", "mclk";
>                 };
>  
>                 viu at 2400 {
>                         compatible = "fsl,mpc5121-viu";
>                         reg = <0x2400 0x400>;
>                         interrupts = <67 0x8>;
> +                       clocks = <&clks MPC512x_CLK_VIU>;
> +                       clock-names = "per";
>                 };
>  
>                 mdio at 2800 {
> @@ -233,6 +274,8 @@
>                         reg = <0x2800 0x800>;
>                         #address-cells = <1>;
>                         #size-cells = <0>;
> +                       clocks = <&clks MPC512x_CLK_FEC>;
> +                       clock-names = "per";
>                 };
>  
>                 eth0: ethernet at 2800 {
> @@ -241,6 +284,8 @@
>                         reg = <0x2800 0x800>;
>                         local-mac-address = [ 00 00 00 00 00 00 ];
>                         interrupts = <4 0x8>;
> +                       clocks = <&clks MPC512x_CLK_FEC>;
> +                       clock-names = "per";
>                 };
>  
>                 /* USB1 using external ULPI PHY */
> @@ -252,6 +297,8 @@
>                         interrupts = <43 0x8>;
>                         dr_mode = "otg";
>                         phy_type = "ulpi";
> +                       clocks = <&clks MPC512x_CLK_USB1>;
> +                       clock-names = "per";
>                 };
>  
>                 /* USB0 using internal UTMI PHY */
> @@ -263,6 +310,8 @@
>                         interrupts = <44 0x8>;
>                         dr_mode = "otg";
>                         phy_type = "utmi_wide";
> +                       clocks = <&clks MPC512x_CLK_USB2>;
> +                       clock-names = "per";
>                 };
>  
>                 /* IO control */
> @@ -281,6 +330,8 @@
>                         compatible = "fsl,mpc5121-pata";
>                         reg = <0x10200 0x100>;
>                         interrupts = <5 0x8>;
> +                       clocks = <&clks MPC512x_CLK_PATA>;
> +                       clock-names = "per";
>                 };
>  
>                 /* 512x PSCs are not 52xx PSC compatible */
> @@ -292,6 +343,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC0_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC1 */
> @@ -301,6 +354,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC1_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC2 */
> @@ -310,6 +365,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC2_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC3 */
> @@ -319,6 +376,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC3_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC4 */
> @@ -328,6 +387,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC4_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC5 */
> @@ -337,6 +398,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC5_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC6 */
> @@ -346,6 +409,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC6_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC7 */
> @@ -355,6 +420,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC7_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC8 */
> @@ -364,6 +431,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC8_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC9 */
> @@ -373,6 +442,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC9_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC10 */
> @@ -382,6 +453,8 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC10_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 /* PSC11 */
> @@ -391,12 +464,16 @@
>                         interrupts = <40 0x8>;
>                         fsl,rx-fifo-size = <16>;
>                         fsl,tx-fifo-size = <16>;
> +                       clocks = <&clks MPC512x_CLK_PSC11_MCLK>;
> +                       clock-names = "mclk";
>                 };
>  
>                 pscfifo at 11f00 {
>                         compatible = "fsl,mpc5121-psc-fifo";
>                         reg = <0x11f00 0x100>;
>                         interrupts = <40 0x8>;
> +                       clocks = <&clks MPC512x_CLK_PSC_FIFO>;
> +                       clock-names = "per";
>                 };
>  
>                 dma0: dma at 14000 {
> @@ -414,6 +491,8 @@
>                 #address-cells = <3>;
>                 #size-cells = <2>;
>                 #interrupt-cells = <1>;
> +               clocks = <&clks MPC512x_CLK_PCI>;
> +               clock-names = "per";
>  
>                 reg = <0x80008500 0x100 /* internal registers */
>                        0x80008300 0x8>; /* config space access registers */
> -- 
> 1.7.10.4

  reply	other threads:[~2013-08-02 23:41 UTC|newest]

Thread overview: 179+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-15 18:47 [PATCH v1 00/24] add COMMON_CLK support for PowerPC MPC512x Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 01/24] spi: mpc512x: prepare clocks before enabling them Gerhard Sittig
2013-07-15 20:17   ` Mark Brown
2013-07-17 11:22     ` Gerhard Sittig
2013-07-17 12:07       ` Mark Brown
2013-07-17 14:26         ` Gerhard Sittig
2013-07-17 16:53           ` Mark Brown
2013-07-15 18:47 ` [PATCH v1 02/24] serial: " Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 03/24] mtd: mpc5121_nfc: " Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 04/24] powerpc: mpc512x: array decl for MCLK registers in CCM Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 05/24] clk: wrap I/O access for improved portability Gerhard Sittig
2013-07-15 19:38   ` Sascha Hauer
2013-07-17 12:07     ` Gerhard Sittig
2013-07-18  7:04     ` Gerhard Sittig
2013-07-18  8:06       ` Sascha Hauer
2013-07-18 10:08         ` Mark Brown
2013-07-18  9:17       ` Russell King - ARM Linux
2013-07-18 17:47         ` Nicolas Pitre
2013-08-02 22:09           ` Mike Turquette
2013-07-15 18:47 ` [PATCH v1 06/24] dts: mpc512x: prepare for preprocessor support Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 07/24] dts: mpc512x: introduce dt-bindings/clock/ header Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 08/24] dts: mpc512x: add clock related device tree specs Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 09/24] clk: mpc512x: introduce COMMON_CLK for MPC512x Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 10/24] dts: mpc512x: add clock specs for client lookups Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 11/24] net: can: mscan: add a comment on reg to idx mapping Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 12/24] net: can: mscan: make mpc512x code use common clock Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 13/24] spi: mpc512x: OF clock lookup, use the 'mclk' name Gerhard Sittig
2013-07-15 18:47 ` [PATCH v1 14/24] powerpc/mpc512x: improve DIU related clock setup Gerhard Sittig
2013-07-15 21:46 ` [PATCH v1 15/24] serial: mpc512x: OF clock lookup, use the 'mclk' name Gerhard Sittig
2013-07-15 21:54   ` Sascha Hauer
2013-07-17 11:27     ` Gerhard Sittig
2013-07-16  6:05 ` [PATCH v1 16/24] clk: mpc512x: remove now obsolete clkdev registration Gerhard Sittig
2013-07-16  6:05 ` [PATCH v1 17/24] serial: mpc512x: setup the PSC FIFO clock as well Gerhard Sittig
2013-07-16  6:05 ` [PATCH v1 18/24] i2c: mpc: OF clock lookup for MPC512x Gerhard Sittig
2013-07-16  6:05 ` [PATCH v1 19/24] USB: fsl-mph-dr-of: OF clock lookup, prepare and enable Gerhard Sittig
2013-07-16  6:05 ` [PATCH v1 20/24] fs_enet: OF clock lookup (non-fatal), " Gerhard Sittig
2013-07-16  8:45 ` [PATCH v1 21/24] [media] fsl-viu: OF clock lookup, prepare before enable Gerhard Sittig
2013-07-16  8:45 ` [PATCH v1 22/24] powerpc/fsl-pci: " Gerhard Sittig
2013-07-16  8:45 ` [PATCH v1 23/24] clk: mpc512x: switch to COMMON_CLK, remove PPC_CLOCK Gerhard Sittig
2013-07-16  8:45 ` [PATCH v1 24/24] net: can: mscan: remove MPC512x non-COMMON_CLK code path Gerhard Sittig
2013-07-18 17:00 ` [PATCH v2 00/24] add COMMON_CLK support for PowerPC MPC512x Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 01/24] spi: mpc512x: cleanup clock API use Gerhard Sittig
2013-07-18 20:49     ` Mark Brown
2013-07-18 17:00   ` [PATCH v2 02/24] serial: " Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 03/24] mtd: mpc5121_nfc: prepare clocks before enabling them Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 04/24] powerpc: mpc512x: array decl for MCLK registers in CCM Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 05/24] clk: wrap I/O access for improved portability Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 06/24] dts: mpc512x: prepare for preprocessor support Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 07/24] dts: mpc512x: introduce dt-bindings/clock/ header Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 08/24] dts: mpc512x: add clock related device tree specs Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 09/24] clk: mpc512x: introduce COMMON_CLK for MPC512x Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 10/24] dts: mpc512x: add clock specs for client lookups Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 11/24] spi: mpc512x: remove now obsolete clock lookup name Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 12/24] serial: " Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 13/24] clk: mpc512x: remove now obsolete clkdev registration Gerhard Sittig
2013-07-18 17:00   ` [PATCH v2 14/24] serial: mpc512x: setup the PSC FIFO clock as well Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 15/24] net: can: mscan: add a comment on reg to idx mapping Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 16/24] net: can: mscan: make mpc512x code use common clock Gerhard Sittig
2013-07-19  7:34     ` Marc Kleine-Budde
2013-07-19  9:41       ` Gerhard Sittig
2013-07-19 10:46         ` Marc Kleine-Budde
2013-07-18 20:20   ` [PATCH v2 17/24] powerpc/mpc512x: improve DIU related clock setup Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 18/24] i2c: mpc: OF clock lookup for MPC512x Gerhard Sittig
2013-07-18 20:33     ` Russell King - ARM Linux
2013-07-19  8:42       ` Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 19/24] USB: fsl-mph-dr-of: OF clock lookup, prepare and enable Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 20/24] fs_enet: OF clock lookup (non-fatal), " Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 21/24] [media] fsl-viu: OF clock lookup, prepare before enable Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 22/24] powerpc/fsl-pci: " Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 23/24] clk: mpc512x: switch to COMMON_CLK, remove PPC_CLOCK Gerhard Sittig
2013-07-18 20:20   ` [PATCH v2 24/24] net: can: mscan: remove MPC512x non-COMMON_CLK code path Gerhard Sittig
2013-07-22 12:14   ` [PATCH v3 00/31] add COMMON_CLK support for PowerPC MPC512x Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 01/31] spi: mpc512x: cleanup clock API use Gerhard Sittig
2013-07-22 14:09       ` Mark Brown
2013-07-23 11:58         ` Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 02/31] serial: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 03/31] USB: fsl-mph-dr-of: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 04/31] mtd: mpc5121_nfc: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 05/31] [media] fsl-viu: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 06/31] i2c: mpc: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 07/31] fs_enet: silence a build warning (unused variable) Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 08/31] fs_enet: cleanup clock API use Gerhard Sittig
2013-07-22 12:28       ` Marc Kleine-Budde
2013-07-22 12:14     ` [PATCH v3 09/31] powerpc/fsl-pci: improve " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 10/31] net: can: mscan: add a comment on reg to idx mapping Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 11/31] net: can: mscan: improve clock API use Gerhard Sittig
2013-07-22 12:31       ` Marc Kleine-Budde
2013-07-23 11:53         ` Gerhard Sittig
2013-07-23 12:33           ` Marc Kleine-Budde
2013-08-03 17:07             ` Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 12/31] powerpc: mpc512x: array decl for MCLK registers in CCM Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 13/31] clk: wrap I/O access for improved portability Gerhard Sittig
2013-08-02 22:30       ` Mike Turquette
2013-08-03 14:08         ` Gerhard Sittig
2013-08-23 22:05         ` Anatolij Gustschin
2013-08-28  0:55           ` Mike Turquette
2013-07-22 12:14     ` [PATCH v3 14/31] dts: mpc512x: prepare for preprocessor support Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 15/31] dts: mpc512x: introduce dt-bindings/clock/ header Gerhard Sittig
2013-08-02 22:43       ` Mike Turquette
2013-08-03 14:19         ` Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 16/31] dts: mpc512x: add clock related device tree specs Gerhard Sittig
2013-08-02 22:46       ` Mike Turquette
2013-07-22 12:14     ` [PATCH v3 17/31] clk: mpc512x: introduce COMMON_CLK for MPC512x Gerhard Sittig
2013-07-23 13:14       ` Gerhard Sittig
2013-08-02 23:30         ` Mike Turquette
2013-08-03 14:39           ` Gerhard Sittig
2013-08-05 17:11             ` Mike Turquette
2013-08-02 23:41       ` Mike Turquette
2013-08-03 15:03         ` Gerhard Sittig
2013-08-05 11:37       ` Mark Rutland
2013-08-05 17:01         ` Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 18/31] dts: mpc512x: add clock specs for client lookups Gerhard Sittig
2013-08-02 23:41       ` Mike Turquette [this message]
2013-08-03 15:36         ` Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 19/31] clk: mpc512x: don't pre-enable FEC and I2C clocks Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 20/31] spi: mpc512x: remove now obsolete clock lookup name Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 21/31] serial: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 22/31] clk: mpc512x: remove clkdev registration (uart, spi) Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 23/31] serial: mpc512x: setup the PSC FIFO clock as well Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 24/31] USB: fsl-mph-dr-of: remove now obsolete clock lookup name Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 25/31] mtd: mpc5121_nfc: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 26/31] [media] fsl-viu: " Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 27/31] net: can: mscan: add common clock support for mpc512x Gerhard Sittig
2013-07-22 13:04       ` Marc Kleine-Budde
2013-07-23 12:07         ` Gerhard Sittig
2013-07-23 12:37           ` Marc Kleine-Budde
2013-07-22 12:14     ` [PATCH v3 28/31] powerpc/mpc512x: improve DIU related clock setup Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 29/31] clk: mpc512x: switch to COMMON_CLK, remove PPC_CLOCK Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 30/31] net: can: mscan: remove non-common_clock code for MPC512x Gerhard Sittig
2013-07-22 12:14     ` [PATCH v3 31/31] clk: mpc512x: remove clkdev registration (sys/ref, header) Gerhard Sittig
2013-07-22 12:33     ` [PATCH v3 00/31] add COMMON_CLK support for PowerPC MPC512x Gerhard Sittig
2013-08-06 20:43     ` [PATCH v4 " Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 01/31] spi: mpc512x: cleanup clock API use Gerhard Sittig
2013-08-22 10:02         ` Mark Brown
2013-08-06 20:43       ` [PATCH v4 02/31] serial: " Gerhard Sittig
2013-08-12 18:27         ` Greg Kroah-Hartman
2013-08-06 20:43       ` [PATCH v4 03/31] USB: fsl-mph-dr-of: " Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 04/31] mtd: mpc5121_nfc: " Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 05/31] [media] fsl-viu: " Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 06/31] i2c: mpc: " Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 07/31] fs_enet: silence a build warning (unused variable) Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 08/31] fs_enet: cleanup clock API use Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 09/31] powerpc/fsl-pci: improve " Gerhard Sittig
2013-08-28 12:08         ` Gerhard Sittig
2013-08-28 15:59           ` Gerhard Sittig
2013-08-28 22:10             ` Benjamin Herrenschmidt
2013-08-06 20:43       ` [PATCH v4 10/31] net: can: mscan: add a comment on reg to idx mapping Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 11/31] net: can: mscan: improve clock API use Gerhard Sittig
2013-08-07  7:28         ` Marc Kleine-Budde
2013-08-08 19:50           ` Gerhard Sittig
2013-08-07  7:30         ` Marc Kleine-Budde
2013-08-07  7:35           ` Marc Kleine-Budde
2013-08-06 20:43       ` [PATCH v4 12/31] powerpc: mpc512x: array decl for MCLK registers in CCM Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 13/31] clk: wrap I/O access for improved portability Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 14/31] dts: mpc512x: prepare for preprocessor support Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 15/31] dts: mpc512x: introduce dt-bindings/clock/ header Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 16/31] dts: mpc512x: add clock related device tree specs Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 17/31] clk: mpc512x: introduce COMMON_CLK for MPC512x Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 18/31] dts: mpc512x: add clock specs for client lookups Gerhard Sittig
2013-08-06 20:43       ` [PATCH v4 19/31] clk: mpc512x: don't pre-enable FEC and I2C clocks Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 20/31] spi: mpc512x: switch to CCF names in clock lookup Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 21/31] serial: " Gerhard Sittig
2013-08-12 18:27         ` Greg Kroah-Hartman
2013-08-06 20:44       ` [PATCH v4 22/31] clk: mpc512x: remove PSC (UART, SPI) compat workarounds Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 23/31] serial: mpc512x: setup the PSC FIFO clock as well Gerhard Sittig
2013-08-12 18:27         ` Greg Kroah-Hartman
2013-08-06 20:44       ` [PATCH v4 24/31] USB: fsl-mph-dr-of: remove now obsolete clock lookup name Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 25/31] mtd: mpc5121_nfc: " Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 26/31] [media] fsl-viu: " Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 27/31] net: can: mscan: add common clock support for mpc512x Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 28/31] powerpc/mpc512x: improve DIU related clock setup Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 29/31] clk: mpc512x: switch to COMMON_CLK, remove PPC_CLOCK Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 30/31] net: can: mscan: remove non-CCF code for MPC512x Gerhard Sittig
2013-08-06 20:44       ` [PATCH v4 31/31] clk: mpc512x: remove remaining migration workarounds Gerhard Sittig
2013-08-06 21:31       ` [PATCH v4 00/31] add COMMON_CLK support for PowerPC MPC512x Gerhard Sittig
2013-08-07  7:36         ` Gerhard Sittig
2013-08-07 15:40       ` Kumar Gala
2013-08-08 18:41         ` Gerhard Sittig
2013-08-28 13:50       ` Gerhard Sittig

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=20130802234120.6450.57074@quantum \
    --to=mturquette@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).