Re: [PATCH 0/2] clk: renesas: cpg-mssr: Always use readl()/writel()

2016-09-23 Thread Stephen Boyd
On 09/23, Geert Uytterhoeven wrote: > Hi Mike, Stephen, > > The Renesas CPG/MSSR clock drivers use a mix of clk_readl()/clk_writel() > and readl()/writel() to access the clock registers. Settle on the > generic readl()/writel(). > > I plan to queue this up in clk-renesas-for-v4.10. > >

Re: [PATCH v2 1/2] media: adv7604: fix bindings inconsistency for default-input

2016-09-23 Thread Rob Herring
On Thu, Sep 22, 2016 at 03:18:59PM +0200, Ulrich Hecht wrote: > The text states that default-input is an endpoint property, but in the > example it is a device property. > > The default input is a property of the chip, not of a particular port, so > the example makes more sense. > >

Re: [PATCH v2 2/3] mmc: sh_mmcif: Document r7s72100 DT bindings

2016-09-23 Thread Rob Herring
On Tue, Sep 20, 2016 at 11:46:19AM -0400, Chris Brandt wrote: > Signed-off-by: Chris Brandt > --- > v2: > * added interrupt description > --- > Documentation/devicetree/bindings/mmc/renesas,mmcif.txt | 4 > 1 file changed, 4 insertions(+) > > diff --git

RE: [PATCH 3/3] ARM: dts: rskrza1: add sdhi1 DT support

2016-09-23 Thread Chris Brandt
> > On Thu, Sep 22, 2016 at 11:32 PM, Chris Brandt > wrote: > > > Signed-off-by: Chris Brandt > > > --- > > > arch/arm/boot/dts/r7s72100-rskrza1.dts | 4 > > > 1 file changed, 4 insertions(+) > > > > > > diff --git

Re: [PATCH 2/3] ARM: dts: r7s72100: add sdhi to device tree

2016-09-23 Thread Geert Uytterhoeven
Hi Chris, On Fri, Sep 23, 2016 at 4:20 PM, Chris Brandt wrote: >> (due to lack of documentation about SDHI, for the interrupt numbers only) >> >> > --- a/arch/arm/boot/dts/r7s72100.dtsi >> > +++ b/arch/arm/boot/dts/r7s72100.dtsi >> > @@ -458,4 +458,32 @@ >> >

Re: [RFC PATCH 2/3] PM / Domains: Add support for devices with multiple domains

2016-09-23 Thread Geert Uytterhoeven
Hi Jon, On Fri, Sep 23, 2016 at 2:57 PM, Jon Hunter wrote: > On 21/09/16 15:57, Geert Uytterhoeven wrote: >> On Wed, Sep 21, 2016 at 4:37 PM, Jon Hunter wrote: >>> On 21/09/16 09:53, Geert Uytterhoeven wrote: On Tue, Sep 20, 2016 at 12:28 PM, Jon

RE: [PATCH 2/3] ARM: dts: r7s72100: add sdhi to device tree

2016-09-23 Thread Chris Brandt
Hi Geert, > (due to lack of documentation about SDHI, for the interrupt numbers only) > > > --- a/arch/arm/boot/dts/r7s72100.dtsi > > +++ b/arch/arm/boot/dts/r7s72100.dtsi > > @@ -458,4 +458,32 @@ > > #size-cells = <0>; > > status = "disabled"; > > }; > >

Re: [RFC PATCH 2/3] PM / Domains: Add support for devices with multiple domains

2016-09-23 Thread Jon Hunter
Hi Geert, On 21/09/16 15:57, Geert Uytterhoeven wrote: > Hi Jon, > > On Wed, Sep 21, 2016 at 4:37 PM, Jon Hunter wrote: >> On 21/09/16 09:53, Geert Uytterhoeven wrote: >>> On Tue, Sep 20, 2016 at 12:28 PM, Jon Hunter wrote: Some devices may

Re: [PATCH] clocksource: sh_cmt: Document r8a779[34] SoC specific bindings

2016-09-23 Thread Simon Horman
On Fri, Sep 23, 2016 at 10:35:06AM +0200, Geert Uytterhoeven wrote: > Hi Simon, Magnus, > > On Fri, Sep 23, 2016 at 10:20 AM, Simon Horman > wrote: > > This documents the SoC specific binding for the r8a779[34] SoCs. > > This is in keeping with the documentation of

Re: [PATCH] clocksource: sh_cmt: Document r8a779[34] SoC specific bindings

2016-09-23 Thread Geert Uytterhoeven
Hi Simon, Magnus, On Fri, Sep 23, 2016 at 10:20 AM, Simon Horman wrote: > This documents the SoC specific binding for the r8a779[34] SoCs. > This is in keeping with the documentation of other R-Car Gen2 SoCs. > > Signed-off-by: Simon Horman

Re: [RFC 1/4] clk: renesas: rcar-gen3-cpg: Add Z clock

2016-09-23 Thread Geert Uytterhoeven
Hi Khiem, On Tue, May 10, 2016 at 6:42 AM, Khiem Nguyen wrote: > --- a/drivers/clk/renesas/rcar-gen3-cpg.c > +++ b/drivers/clk/renesas/rcar-gen3-cpg.c > @@ -28,6 +28,146 @@ > + val = (clk_readl(zclk->reg) & CPG_FRQCRC_ZFC_MASK) Please use readl()/writel()

[PATCH 1/2] clk: renesas: cpg-mssr: Always use readl()/writel()

2016-09-23 Thread Geert Uytterhoeven
The Renesas CPG/MSSR driver core uses a mix of clk_readl()/clk_writel() and readl()/writel() to access the clock registers. Settle on the generic readl()/writel(). Signed-off-by: Geert Uytterhoeven --- drivers/clk/renesas/renesas-cpg-mssr.c | 9 - 1 file

[PATCH 2/2] clk: renesas: rcar-gen3-cpg: Always use readl()/writel()

2016-09-23 Thread Geert Uytterhoeven
The R-Car Gen3 CPG/MSSR driver uses a mix of clk_readl()/clk_writel() and readl()/writel() to access the clock registers. Settle on the generic readl()/writel(). Signed-off-by: Geert Uytterhoeven --- drivers/clk/renesas/rcar-gen3-cpg.c | 14 +++--- 1 file

[PATCH 0/2] clk: renesas: cpg-mssr: Always use readl()/writel()

2016-09-23 Thread Geert Uytterhoeven
Hi Mike, Stephen, The Renesas CPG/MSSR clock drivers use a mix of clk_readl()/clk_writel() and readl()/writel() to access the clock registers. Settle on the generic readl()/writel(). I plan to queue this up in clk-renesas-for-v4.10. Geert Uytterhoeven (2): clk: renesas: cpg-mssr:

[PATCH] ARM: shmobile: Sort Kconfig selections

2016-09-23 Thread Geert Uytterhoeven
Sort alphabetically all symbols selected by ARCH_RENESAS Signed-off-by: Geert Uytterhoeven --- arch/arm/mach-shmobile/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig index

[PATCH] clocksource: sh_cmt: Document r8a779[34] SoC specific bindings

2016-09-23 Thread Simon Horman
This documents the SoC specific binding for the r8a779[34] SoCs. This is in keeping with the documentation of other R-Car Gen2 SoCs. Signed-off-by: Simon Horman --- Documentation/devicetree/bindings/timer/renesas,cmt.txt | 9 +++-- 1 file changed, 7

Re: [PATCH 3/3] ARM: dts: rskrza1: add sdhi1 DT support

2016-09-23 Thread Simon Horman
On Fri, Sep 23, 2016 at 09:09:07AM +0200, Geert Uytterhoeven wrote: > On Thu, Sep 22, 2016 at 11:32 PM, Chris Brandt > wrote: > > Signed-off-by: Chris Brandt > > --- > > arch/arm/boot/dts/r7s72100-rskrza1.dts | 4 > > 1 file changed, 4

Re: [PATCH 0/2] Add R8A7792 MSIOF support

2016-09-23 Thread Simon Horman
On Fri, Sep 23, 2016 at 12:18:52AM +0300, Sergei Shtylyov wrote: > Hello. > > On 09/05/2016 11:54 PM, Sergei Shtylyov wrote: > > > Here's the set of 2 patches against Simon Horman's 'renesas.git' repo, > >'renesas-devel-20160905-v4.8-rc5' tag. We're adding the R8A7792 MSIOF clocks > >and

Re: [PATCH v2] ARM: dts: wheat: add DU support

2016-09-23 Thread Simon Horman
On Fri, Sep 23, 2016 at 12:06:43AM +0300, Sergei Shtylyov wrote: > Define the Wheat board dependent part of the DU device node. > Add the device nodes for the Analog Devices ADV7513 HDMI transmitters > connected to DU0/1. Add the necessary subnodes to interconnect DU with > HDMI

Re: [PATCHv9 0/6] dmaengine: rcar-dmac: add iommu support for slave transfers

2016-09-23 Thread Niklas Söderlund
Hi Vinod, On 2016-09-15 21:56:51 +0530, Vinod Koul wrote: > On Wed, Aug 10, 2016 at 11:07:10PM +0530, Vinod Koul wrote: > > On Wed, Aug 10, 2016 at 01:22:13PM +0200, Niklas Söderlund wrote: > > > Hi, > > > > > > This series tries to solve the problem with DMA with device registers > > > (MMIO

Re: [PATCH 3/3] ARM: dts: rskrza1: add sdhi1 DT support

2016-09-23 Thread Geert Uytterhoeven
On Thu, Sep 22, 2016 at 11:32 PM, Chris Brandt wrote: > Signed-off-by: Chris Brandt > --- > arch/arm/boot/dts/r7s72100-rskrza1.dts | 4 > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm/boot/dts/r7s72100-rskrza1.dts >

Re: [PATCH 2/3] ARM: dts: r7s72100: add sdhi to device tree

2016-09-23 Thread Geert Uytterhoeven
Hi Chris, On Thu, Sep 22, 2016 at 11:32 PM, Chris Brandt wrote: > Signed-off-by: Chris Brandt Reviewed-by: Geert Uytterhoeven (due to lack of documentation about SDHI, for the interrupt numbers only) > ---

Re: [PATCH 1/3] ARM: dts: r7s72100: add sdhi clock to device tree

2016-09-23 Thread Geert Uytterhoeven
On Thu, Sep 22, 2016 at 11:32 PM, Chris Brandt wrote: > Signed-off-by: Chris Brandt Reviewed-by: Geert Uytterhoeven Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux