* [PATCH v2 0/2] ARM: dts: r8a7793/gose: enable SDHI @ 2016-04-18 16:02 Ulrich Hecht 2016-04-18 16:02 ` [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers Ulrich Hecht 2016-04-18 16:02 ` [PATCH v2 2/2] ARM: dts: gose: Enable " Ulrich Hecht 0 siblings, 2 replies; 8+ messages in thread From: Ulrich Hecht @ 2016-04-18 16:02 UTC (permalink / raw) To: horms Cc: linux-renesas-soc, linux-mmc, magnus.damm, sergei.shtylyov, Ulrich Hecht This enables SDHI on the Gose board, including pins and regulators. This revision includes the missing dma-names and power-domains entries spotted by Sergei and Simon. CU Uli Ulrich Hecht (2): ARM: dts: r8a7793: Add SDHI controllers ARM: dts: gose: Enable SDHI controllers arch/arm/boot/dts/r8a7793-gose.dts | 119 +++++++++++++++++++++++++++++++++++++ arch/arm/boot/dts/r8a7793.dtsi | 36 +++++++++++ 2 files changed, 155 insertions(+) -- 2.7.4 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers 2016-04-18 16:02 [PATCH v2 0/2] ARM: dts: r8a7793/gose: enable SDHI Ulrich Hecht @ 2016-04-18 16:02 ` Ulrich Hecht 2016-04-21 3:27 ` Simon Horman 2016-04-21 12:54 ` Geert Uytterhoeven 2016-04-18 16:02 ` [PATCH v2 2/2] ARM: dts: gose: Enable " Ulrich Hecht 1 sibling, 2 replies; 8+ messages in thread From: Ulrich Hecht @ 2016-04-18 16:02 UTC (permalink / raw) To: horms Cc: linux-renesas-soc, linux-mmc, magnus.damm, sergei.shtylyov, Ulrich Hecht Same as on r8a7791. Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> --- arch/arm/boot/dts/r8a7793.dtsi | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/arch/arm/boot/dts/r8a7793.dtsi b/arch/arm/boot/dts/r8a7793.dtsi index 6843f46..aea9294 100644 --- a/arch/arm/boot/dts/r8a7793.dtsi +++ b/arch/arm/boot/dts/r8a7793.dtsi @@ -510,6 +510,42 @@ reg = <0 0xe6060000 0 0x250>; }; + sdhi0: sd@ee100000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee100000 0 0x328>; + interrupts = <0 165 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI0>; + dmas = <&dmac0 0xcd>, <&dmac0 0xce>, + <&dmac1 0xcd>, <&dmac1 0xce>; + dma-names = "tx", "rx", "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + + sdhi1: sd@ee140000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee140000 0 0x100>; + interrupts = <0 167 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI1>; + dmas = <&dmac0 0xc1>, <&dmac0 0xc2>, + <&dmac1 0xc1>, <&dmac1 0xc2>; + dma-names = "tx", "rx", "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + + sdhi2: sd@ee160000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee160000 0 0x100>; + interrupts = <0 168 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI2>; + dmas = <&dmac0 0xd3>, <&dmac0 0xd4>, + <&dmac1 0xd3>, <&dmac1 0xd4>; + dma-names = "tx", "rx", "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + mmcif0: mmcif@ee200000 { compatible = "renesas,mmcif-r8a7793", "renesas,sh-mmcif"; reg = <0 0xee200000 0 0x80>; -- 2.7.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers 2016-04-18 16:02 ` [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers Ulrich Hecht @ 2016-04-21 3:27 ` Simon Horman 2016-04-21 12:55 ` Geert Uytterhoeven 2016-04-21 12:54 ` Geert Uytterhoeven 1 sibling, 1 reply; 8+ messages in thread From: Simon Horman @ 2016-04-21 3:27 UTC (permalink / raw) To: Ulrich Hecht; +Cc: linux-renesas-soc, linux-mmc, magnus.damm, sergei.shtylyov On Mon, Apr 18, 2016 at 06:02:56PM +0200, Ulrich Hecht wrote: > Same as on r8a7791. > > Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> > --- > arch/arm/boot/dts/r8a7793.dtsi | 36 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 36 insertions(+) Thanks. We are back to one DMA controller this week so I updated your patch and queued up the following. From: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Date: Mon, 18 Apr 2016 18:02:56 +0200 Subject: [PATCH] ARM: dts: r8a7793: Add SDHI controllers Same as on r8a7791. Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7793.dtsi | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/arch/arm/boot/dts/r8a7793.dtsi b/arch/arm/boot/dts/r8a7793.dtsi index fc552629ed4a..a93d509732a8 100644 --- a/arch/arm/boot/dts/r8a7793.dtsi +++ b/arch/arm/boot/dts/r8a7793.dtsi @@ -507,6 +507,39 @@ reg = <0 0xe6060000 0 0x250>; }; + sdhi0: sd@ee100000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee100000 0 0x328>; + interrupts = <0 165 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI0>; + dmas = <&dmac0 0xcd>, <&dmac0 0xce>; + dma-names = "tx", "rx", "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + + sdhi1: sd@ee140000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee140000 0 0x100>; + interrupts = <0 167 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI1>; + dmas = <&dmac0 0xc1>, <&dmac0 0xc2>; + dma-names = "tx", "rx", "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + + sdhi2: sd@ee160000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee160000 0 0x100>; + interrupts = <0 168 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI2>; + dmas = <&dmac0 0xd3>, <&dmac0 0xd4>; + dma-names = "tx", "rx", "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + mmcif0: mmcif@ee200000 { compatible = "renesas,mmcif-r8a7793", "renesas,sh-mmcif"; reg = <0 0xee200000 0 0x80>; -- 2.7.0.rc3.207.g0ac5344 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers 2016-04-21 3:27 ` Simon Horman @ 2016-04-21 12:55 ` Geert Uytterhoeven 0 siblings, 0 replies; 8+ messages in thread From: Geert Uytterhoeven @ 2016-04-21 12:55 UTC (permalink / raw) To: Simon Horman Cc: Ulrich Hecht, linux-renesas-soc, Linux MMC List, Magnus Damm, Sergei Shtylyov On Thu, Apr 21, 2016 at 5:27 AM, Simon Horman <horms@verge.net.au> wrote: > > We are back to one DMA controller this week so I updated your patch and > queued up the following. > > From: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> > Date: Mon, 18 Apr 2016 18:02:56 +0200 > Subject: [PATCH] ARM: dts: r8a7793: Add SDHI controllers > > Same as on r8a7791. > > Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> > Signed-off-by: Simon Horman <horms+renesas@verge.net.au> > --- > arch/arm/boot/dts/r8a7793.dtsi | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > > diff --git a/arch/arm/boot/dts/r8a7793.dtsi b/arch/arm/boot/dts/r8a7793.dtsi > index fc552629ed4a..a93d509732a8 100644 > --- a/arch/arm/boot/dts/r8a7793.dtsi > +++ b/arch/arm/boot/dts/r8a7793.dtsi > @@ -507,6 +507,39 @@ > reg = <0 0xe6060000 0 0x250>; > }; > > + sdhi0: sd@ee100000 { > + compatible = "renesas,sdhi-r8a7793"; > + reg = <0 0xee100000 0 0x328>; > + interrupts = <0 165 IRQ_TYPE_LEVEL_HIGH>; > + clocks = <&mstp3_clks R8A7793_CLK_SDHI0>; > + dmas = <&dmac0 0xcd>, <&dmac0 0xce>; > + dma-names = "tx", "rx", "tx", "rx"; If you drop the last two dma values, you should drop the last two dma-names values, too. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers 2016-04-18 16:02 ` [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers Ulrich Hecht 2016-04-21 3:27 ` Simon Horman @ 2016-04-21 12:54 ` Geert Uytterhoeven 2016-04-22 0:25 ` Simon Horman 1 sibling, 1 reply; 8+ messages in thread From: Geert Uytterhoeven @ 2016-04-21 12:54 UTC (permalink / raw) To: Ulrich Hecht Cc: Simon Horman, linux-renesas-soc, Linux MMC List, Magnus Damm, Sergei Shtylyov On Mon, Apr 18, 2016 at 6:02 PM, Ulrich Hecht <ulrich.hecht+renesas@gmail.com> wrote: > --- a/arch/arm/boot/dts/r8a7793.dtsi > +++ b/arch/arm/boot/dts/r8a7793.dtsi > @@ -510,6 +510,42 @@ > reg = <0 0xe6060000 0 0x250>; > }; > > + sdhi0: sd@ee100000 { > + compatible = "renesas,sdhi-r8a7793"; > + reg = <0 0xee100000 0 0x328>; > + interrupts = <0 165 IRQ_TYPE_LEVEL_HIGH>; GIC_SPI (x3) Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers 2016-04-21 12:54 ` Geert Uytterhoeven @ 2016-04-22 0:25 ` Simon Horman 0 siblings, 0 replies; 8+ messages in thread From: Simon Horman @ 2016-04-22 0:25 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Ulrich Hecht, linux-renesas-soc, Linux MMC List, Magnus Damm, Sergei Shtylyov On Thu, Apr 21, 2016 at 02:54:30PM +0200, Geert Uytterhoeven wrote: > On Mon, Apr 18, 2016 at 6:02 PM, Ulrich Hecht > <ulrich.hecht+renesas@gmail.com> wrote: > > --- a/arch/arm/boot/dts/r8a7793.dtsi > > +++ b/arch/arm/boot/dts/r8a7793.dtsi > > @@ -510,6 +510,42 @@ > > reg = <0 0xe6060000 0 0x250>; > > }; > > > > + sdhi0: sd@ee100000 { > > + compatible = "renesas,sdhi-r8a7793"; > > + reg = <0 0xee100000 0 0x328>; > > + interrupts = <0 165 IRQ_TYPE_LEVEL_HIGH>; > > GIC_SPI (x3) Thanks, I should have noticed that. On Thu, Apr 21, 2016 at 02:55:06PM +0200, Geert Uytterhoeven wrote: > On Thu, Apr 21, 2016 at 5:27 AM, Simon Horman <horms@verge.net.au> wrote: > > > > We are back to one DMA controller this week so I updated your patch and > > queued up the following. > > > > From: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> > > Date: Mon, 18 Apr 2016 18:02:56 +0200 > > Subject: [PATCH] ARM: dts: r8a7793: Add SDHI controllers > > > > Same as on r8a7791. > > > > Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> > > Signed-off-by: Simon Horman <horms+renesas@verge.net.au> > > --- > > arch/arm/boot/dts/r8a7793.dtsi | 33 +++++++++++++++++++++++++++++++++ > > 1 file changed, 33 insertions(+) > > > > diff --git a/arch/arm/boot/dts/r8a7793.dtsi b/arch/arm/boot/dts/r8a7793.dtsi > > index fc552629ed4a..a93d509732a8 100644 > > --- a/arch/arm/boot/dts/r8a7793.dtsi > > +++ b/arch/arm/boot/dts/r8a7793.dtsi > > @@ -507,6 +507,39 @@ > > reg = <0 0xe6060000 0 0x250>; > > }; > > > > + sdhi0: sd@ee100000 { > > + compatible = "renesas,sdhi-r8a7793"; > > + reg = <0 0xee100000 0 0x328>; > > + interrupts = <0 165 IRQ_TYPE_LEVEL_HIGH>; > > + clocks = <&mstp3_clks R8A7793_CLK_SDHI0>; > > + dmas = <&dmac0 0xcd>, <&dmac0 0xce>; > > + dma-names = "tx", "rx", "tx", "rx"; > > If you drop the last two dma values, you should drop the last two > dma-names values, too. Sorry about that, I'm unsure how I managed to mess that up. I have updated the patch and re-queued the following. From: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Date: Mon, 18 Apr 2016 18:02:56 +0200 Subject: [PATCH] ARM: dts: r8a7793: Add SDHI controllers Same as on r8a7791. Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7793.dtsi | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/arch/arm/boot/dts/r8a7793.dtsi b/arch/arm/boot/dts/r8a7793.dtsi index bddc31283bd9..6186179fd66d 100644 --- a/arch/arm/boot/dts/r8a7793.dtsi +++ b/arch/arm/boot/dts/r8a7793.dtsi @@ -507,6 +507,39 @@ reg = <0 0xe6060000 0 0x250>; }; + sdhi0: sd@ee100000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee100000 0 0x328>; + interrupts = <GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI0>; + dmas = <&dmac0 0xcd>, <&dmac0 0xce>; + dma-names = "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + + sdhi1: sd@ee140000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee140000 0 0x100>; + interrupts = <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI1>; + dmas = <&dmac0 0xc1>, <&dmac0 0xc2>; + dma-names = "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + + sdhi2: sd@ee160000 { + compatible = "renesas,sdhi-r8a7793"; + reg = <0 0xee160000 0 0x100>; + interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&mstp3_clks R8A7793_CLK_SDHI2>; + dmas = <&dmac0 0xd3>, <&dmac0 0xd4>; + dma-names = "tx", "rx"; + power-domains = <&cpg_clocks>; + status = "disabled"; + }; + scifa0: serial@e6c40000 { compatible = "renesas,scifa-r8a7793", "renesas,rcar-gen2-scifa", "renesas,scifa"; -- 2.7.0.rc3.207.g0ac5344 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/2] ARM: dts: gose: Enable SDHI controllers 2016-04-18 16:02 [PATCH v2 0/2] ARM: dts: r8a7793/gose: enable SDHI Ulrich Hecht 2016-04-18 16:02 ` [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers Ulrich Hecht @ 2016-04-18 16:02 ` Ulrich Hecht 2016-04-21 3:27 ` Simon Horman 1 sibling, 1 reply; 8+ messages in thread From: Ulrich Hecht @ 2016-04-18 16:02 UTC (permalink / raw) To: horms Cc: linux-renesas-soc, linux-mmc, magnus.damm, sergei.shtylyov, Ulrich Hecht Includes regulator and pin assignments. Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> --- arch/arm/boot/dts/r8a7793-gose.dts | 119 +++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) diff --git a/arch/arm/boot/dts/r8a7793-gose.dts b/arch/arm/boot/dts/r8a7793-gose.dts index 3cd1c80..0ebc3ee 100644 --- a/arch/arm/boot/dts/r8a7793-gose.dts +++ b/arch/arm/boot/dts/r8a7793-gose.dts @@ -158,6 +158,78 @@ }; }; + vcc_sdhi0: regulator@0 { + compatible = "regulator-fixed"; + + regulator-name = "SDHI0 Vcc"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + + gpio = <&gpio7 17 GPIO_ACTIVE_HIGH>; + enable-active-high; + }; + + vccq_sdhi0: regulator@1 { + compatible = "regulator-gpio"; + + regulator-name = "SDHI0 VccQ"; + regulator-min-microvolt = <1800000>; + regulator-max-microvolt = <3300000>; + + gpios = <&gpio2 12 GPIO_ACTIVE_HIGH>; + gpios-states = <1>; + states = <3300000 1 + 1800000 0>; + }; + + vcc_sdhi1: regulator@2 { + compatible = "regulator-fixed"; + + regulator-name = "SDHI1 Vcc"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + + gpio = <&gpio7 18 GPIO_ACTIVE_HIGH>; + enable-active-high; + }; + + vccq_sdhi1: regulator@3 { + compatible = "regulator-gpio"; + + regulator-name = "SDHI1 VccQ"; + regulator-min-microvolt = <1800000>; + regulator-max-microvolt = <3300000>; + + gpios = <&gpio2 13 GPIO_ACTIVE_HIGH>; + gpios-states = <1>; + states = <3300000 1 + 1800000 0>; + }; + + vcc_sdhi2: regulator@4 { + compatible = "regulator-fixed"; + + regulator-name = "SDHI2 Vcc"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + + gpio = <&gpio7 19 GPIO_ACTIVE_HIGH>; + enable-active-high; + }; + + vccq_sdhi2: regulator@5 { + compatible = "regulator-gpio"; + + regulator-name = "SDHI2 VccQ"; + regulator-min-microvolt = <1800000>; + regulator-max-microvolt = <3300000>; + + gpios = <&gpio2 26 GPIO_ACTIVE_HIGH>; + gpios-states = <1>; + states = <3300000 1 + 1800000 0>; + }; + audio_clock: audio_clock { compatible = "fixed-clock"; #clock-cells = <0>; @@ -273,6 +345,21 @@ function = "intc"; }; + sdhi0_pins: sd0 { + renesas,groups = "sdhi0_data4", "sdhi0_ctrl"; + renesas,function = "sdhi0"; + }; + + sdhi1_pins: sd1 { + renesas,groups = "sdhi1_data4", "sdhi1_ctrl"; + renesas,function = "sdhi1"; + }; + + sdhi2_pins: sd2 { + renesas,groups = "sdhi2_data4", "sdhi2_ctrl"; + renesas,function = "sdhi2"; + }; + qspi_pins: spi0 { groups = "qspi_ctrl", "qspi_data4"; function = "qspi"; @@ -328,6 +415,38 @@ status = "okay"; }; +&sdhi0 { + pinctrl-0 = <&sdhi0_pins>; + pinctrl-names = "default"; + + vmmc-supply = <&vcc_sdhi0>; + vqmmc-supply = <&vccq_sdhi0>; + cd-gpios = <&gpio6 6 GPIO_ACTIVE_LOW>; + wp-gpios = <&gpio6 7 GPIO_ACTIVE_HIGH>; + status = "okay"; +}; + +&sdhi1 { + pinctrl-0 = <&sdhi1_pins>; + pinctrl-names = "default"; + + vmmc-supply = <&vcc_sdhi1>; + vqmmc-supply = <&vccq_sdhi1>; + cd-gpios = <&gpio6 14 GPIO_ACTIVE_LOW>; + wp-gpios = <&gpio6 15 GPIO_ACTIVE_HIGH>; + status = "okay"; +}; + +&sdhi2 { + pinctrl-0 = <&sdhi2_pins>; + pinctrl-names = "default"; + + vmmc-supply = <&vcc_sdhi2>; + vqmmc-supply = <&vccq_sdhi2>; + cd-gpios = <&gpio6 22 GPIO_ACTIVE_LOW>; + status = "okay"; +}; + &qspi { pinctrl-0 = <&qspi_pins>; pinctrl-names = "default"; -- 2.7.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 2/2] ARM: dts: gose: Enable SDHI controllers 2016-04-18 16:02 ` [PATCH v2 2/2] ARM: dts: gose: Enable " Ulrich Hecht @ 2016-04-21 3:27 ` Simon Horman 0 siblings, 0 replies; 8+ messages in thread From: Simon Horman @ 2016-04-21 3:27 UTC (permalink / raw) To: Ulrich Hecht; +Cc: linux-renesas-soc, linux-mmc, magnus.damm, sergei.shtylyov On Mon, Apr 18, 2016 at 06:02:57PM +0200, Ulrich Hecht wrote: > Includes regulator and pin assignments. > > Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Thanks, I have queued this up. ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2016-04-22 0:25 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-04-18 16:02 [PATCH v2 0/2] ARM: dts: r8a7793/gose: enable SDHI Ulrich Hecht 2016-04-18 16:02 ` [PATCH v2 1/2] ARM: dts: r8a7793: Add SDHI controllers Ulrich Hecht 2016-04-21 3:27 ` Simon Horman 2016-04-21 12:55 ` Geert Uytterhoeven 2016-04-21 12:54 ` Geert Uytterhoeven 2016-04-22 0:25 ` Simon Horman 2016-04-18 16:02 ` [PATCH v2 2/2] ARM: dts: gose: Enable " Ulrich Hecht 2016-04-21 3:27 ` Simon Horman
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).