Message ID | 1473764228-24768-9-git-send-email-horms+renesas@verge.net.au (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tue, Sep 13, 2016 at 12:57:05PM +0200, Simon Horman wrote: > Add SDHI nodes to the DT of the r8a7796 SoC. > > Based on the DT of the r8a7795 SoC. > > Signed-off-by: Simon Horman <horms+renesas@verge.net.au> > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> If you remove the two lines you removed from H3 already: Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > + sdhi2: sd@ee140000 { > + compatible = "renesas,sdhi-r8a7796"; > + reg = <0 0xee140000 0 0x2000>; > + interrupts = <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>; > + clocks = <&cpg CPG_MOD 312>; > + max-frequency = <200000000>; > + power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; > + cap-mmc-highspeed; This one... > + status = "disabled"; > + }; > + > + sdhi3: sd@ee160000 { > + compatible = "renesas,sdhi-r8a7796"; > + reg = <0 0xee160000 0 0x2000>; > + interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>; > + clocks = <&cpg CPG_MOD 311>; > + max-frequency = <200000000>; > + power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; > + cap-mmc-highspeed; ... and ditto.
On Fri, Sep 16, 2016 at 12:30:48PM +0200, Wolfram Sang wrote: > On Tue, Sep 13, 2016 at 12:57:05PM +0200, Simon Horman wrote: > > Add SDHI nodes to the DT of the r8a7796 SoC. > > > > Based on the DT of the r8a7795 SoC. > > > > Signed-off-by: Simon Horman <horms+renesas@verge.net.au> > > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> > > If you remove the two lines you removed from H3 already: Thanks, done. > Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Fri, Sep 16, 2016 at 12:53:22PM +0200, Simon Horman wrote: > On Fri, Sep 16, 2016 at 12:30:48PM +0200, Wolfram Sang wrote: > > On Tue, Sep 13, 2016 at 12:57:05PM +0200, Simon Horman wrote: > > > Add SDHI nodes to the DT of the r8a7796 SoC. > > > > > > Based on the DT of the r8a7795 SoC. > > > > > > Signed-off-by: Simon Horman <horms+renesas@verge.net.au> > > > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> > > > > If you remove the two lines you removed from H3 already: > > Thanks, done. > > > Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> I have queued this up for v4.10. -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm64/boot/dts/renesas/r8a7796.dtsi b/arch/arm64/boot/dts/renesas/r8a7796.dtsi index 9217da983525..3aae29fdd9d7 100644 --- a/arch/arm64/boot/dts/renesas/r8a7796.dtsi +++ b/arch/arm64/boot/dts/renesas/r8a7796.dtsi @@ -251,5 +251,47 @@ power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; status = "disabled"; }; + + sdhi0: sd@ee100000 { + compatible = "renesas,sdhi-r8a7796"; + reg = <0 0xee100000 0 0x2000>; + interrupts = <GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cpg CPG_MOD 314>; + max-frequency = <200000000>; + power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; + status = "disabled"; + }; + + sdhi1: sd@ee120000 { + compatible = "renesas,sdhi-r8a7796"; + reg = <0 0xee120000 0 0x2000>; + interrupts = <GIC_SPI 166 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cpg CPG_MOD 313>; + max-frequency = <200000000>; + power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; + status = "disabled"; + }; + + sdhi2: sd@ee140000 { + compatible = "renesas,sdhi-r8a7796"; + reg = <0 0xee140000 0 0x2000>; + interrupts = <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cpg CPG_MOD 312>; + max-frequency = <200000000>; + power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; + cap-mmc-highspeed; + status = "disabled"; + }; + + sdhi3: sd@ee160000 { + compatible = "renesas,sdhi-r8a7796"; + reg = <0 0xee160000 0 0x2000>; + interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cpg CPG_MOD 311>; + max-frequency = <200000000>; + power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; + cap-mmc-highspeed; + status = "disabled"; + }; }; };