Applied "ASoC: core: remove pointless auxiliary from snd_soc_component" to the asoc tree

2017-03-24 Thread Mark Brown
The patch ASoC: core: remove pointless auxiliary from snd_soc_component has been applied to the asoc tree at git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24

Applied "ASoC: rcar: enable PCM RATE untile 192000" to the asoc tree

2017-03-24 Thread Mark Brown
The patch ASoC: rcar: enable PCM RATE untile 192000 has been applied to the asoc tree at git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to

Applied "ASoC: rcar: ssi: don't set SSICR.CKDV = 000 with SSIWSR.CONT" to the asoc tree

2017-03-24 Thread Mark Brown
The patch ASoC: rcar: ssi: don't set SSICR.CKDV = 000 with SSIWSR.CONT has been applied to the asoc tree at git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24

Re: [PATCH 1/2] serial: pl010: Move uart_register_driver call to device probe

2017-03-24 Thread Russell King - ARM Linux
On Fri, Mar 24, 2017 at 05:26:33PM +0100, Sjoerd Simons wrote: > uart_register_driver call binds the driver to a specific device > node through tty_register_driver call. This should typically > happen during device probe call. > > In a multiplatform scenario, it is possible that multiple serial >

Re: [PATCH v3 1/7] pinctrl: Renesas RZ/A1 pin and gpio controller

2017-03-24 Thread jacopo
Hi Linus, On Fri, Mar 24, 2017 at 04:42:47PM +0100, Linus Walleij wrote: > On Fri, Mar 24, 2017 at 4:22 PM, Jacopo Mondi > wrote: > > I assume Geert will queue this driver even if it is outside of sh-pfc? > > > Add combined gpio and pin controller driver for Renesas

Re: [PATCH] backlight: pwm_bl: Fix GPIO out for unimplemented .get_direction()

2017-03-24 Thread Daniel Thompson
On 24/03/17 16:42, Daniel Thompson wrote: On 22/03/17 17:21, Geert Uytterhoeven wrote: Commit 7613c922315e308a ("backlight: pwm_bl: Move the checks for initial power state to a separate function") not just moved some code, but made slight changes in semantics. If a gpiochip doesn't implement

Re: [PATCH] backlight: pwm_bl: Fix GPIO out for unimplemented .get_direction()

2017-03-24 Thread Daniel Thompson
On 22/03/17 17:21, Geert Uytterhoeven wrote: Commit 7613c922315e308a ("backlight: pwm_bl: Move the checks for initial power state to a separate function") not just moved some code, but made slight changes in semantics. If a gpiochip doesn't implement the optional .get_direction() callback,

Re: [PATCH 0/2] Move uart_register_driver call to device probe for pl010 and sh-sci

2017-03-24 Thread Russell King - ARM Linux
On Fri, Mar 24, 2017 at 05:26:32PM +0100, Sjoerd Simons wrote: > When testing on a Renesas board with the PL010 serial driver enabled > serial output broke. Turns out the minor device numbers for both > drivers happen to overlap, causing whichever driver happened to be the > second one to register

[PATCH 1/2] serial: pl010: Move uart_register_driver call to device probe

2017-03-24 Thread Sjoerd Simons
uart_register_driver call binds the driver to a specific device node through tty_register_driver call. This should typically happen during device probe call. In a multiplatform scenario, it is possible that multiple serial drivers are part of the kernel. Currently the driver registration fails if

[PATCH 2/2] serial: sh-sci: Move uart_register_driver call to device probe

2017-03-24 Thread Sjoerd Simons
uart_register_driver call binds the driver to a specific device node through tty_register_driver call. This should typically happen during device probe call. In a multiplatform scenario, it is possible that multiple serial drivers are part of the kernel. Currently the driver registration fails if

[PATCH 0/2] Move uart_register_driver call to device probe for pl010 and sh-sci

2017-03-24 Thread Sjoerd Simons
When testing on a Renesas board with the PL010 serial driver enabled serial output broke. Turns out the minor device numbers for both drivers happen to overlap, causing whichever driver happened to be the second one to register to fail. The attached patches move the uart_register_driver call to

Re: [PATCH v3 1/7] pinctrl: Renesas RZ/A1 pin and gpio controller

2017-03-24 Thread Linus Walleij
On Fri, Mar 24, 2017 at 4:22 PM, Jacopo Mondi wrote: I assume Geert will queue this driver even if it is outside of sh-pfc? > Add combined gpio and pin controller driver for Renesas RZ/A1 > r7s72100 SoC. > > Signed-off-by: Jacopo Mondi >

Re: [PATCH v3 4/7] arm: dts: r7s72100: Add pin controller node

2017-03-24 Thread Sergei Shtylyov
Hello! On 03/24/2017 06:22 PM, Jacopo Mondi wrote: Add pin controller node with 12 gpio controller sub-nodes to r7s72100 dtsi. Signed-off-by: Jacopo Mondi Reviewed-by: Geert Uytterhoeven --- arch/arm/boot/dts/r7s72100.dtsi | 80

[PATCH v3 1/4] Documentation: dt-bindings: iio: Add max9611 ADC

2017-03-24 Thread Jacopo Mondi
Add device tree bindings documentation for Maxim max9611/max9612 current sense amplifier. Signed-off-by: Jacopo Mondi --- .../devicetree/bindings/iio/adc/max9611.txt| 26 ++ 1 file changed, 26 insertions(+) create mode 100644

[PATCH v3 3/4] iio: adc: Add Maxim max9611 ADC driver

2017-03-24 Thread Jacopo Mondi
Add iio driver for Maxim max9611 and max9612 current-sense amplifiers with 12-bits ADC interface. Datasheet publicly available at: https://datasheets.maximintegrated.com/en/ds/MAX9611-MAX9612.pdf Signed-off-by: Jacopo Mondi --- drivers/iio/adc/Kconfig | 10 +

[PATCH v3 2/4] iio: Documentation: Add max9611 sysfs documentation

2017-03-24 Thread Jacopo Mondi
Add documentation for max9611 driver. Document attributes describing value of shunt resistor installed between RS+ and RS- voltage sense inputs. Signed-off-by: Jacopo Mondi --- Documentation/ABI/testing/sysfs-bus-iio-adc-max9611 | 16 1 file changed,

[PATCH v3 0/4] iio: adc: Maxim max9611 driver

2017-03-24 Thread Jacopo Mondi
Hello! Third round for Maxim max9611/max9612 high-side current sense amplifier driver. For reference, a simplified integration schematic drawing is here reported: o/\/\/-o---|LOAD|--- |shunt | |__|___ | RS+RS- | | |-gain-|

[PATCH v3 4/4] arm64: dts: salvator-x: Add current sense amplifiers

2017-03-24 Thread Jacopo Mondi
Add device nodes for two Maxim max961x current sense amplifiers sensing VDD_08 and DVFS_08 lines. Signed-off-by: Jacopo Mondi --- arch/arm64/boot/dts/renesas/r8a7796-salvator-x.dts | 18 ++ 1 file changed, 18 insertions(+) diff --git

[PATCH v3 0/8] Renesas RZ/A1 pin and gpio controller

2017-03-24 Thread Jacopo Mondi
Hello! Third round for Renesas RZ/A1 PFC gpio and pin controller. V3 fixes review comments on grammar and spelling by Geert. Some other fixes from Geert's review as update of function argument names to reflect the function purpose (s/offset/[pin|bit]), use irqsave/irqrestore version of spinlocks

[PATCH v3 1/7] pinctrl: Renesas RZ/A1 pin and gpio controller

2017-03-24 Thread Jacopo Mondi
Add combined gpio and pin controller driver for Renesas RZ/A1 r7s72100 SoC. Signed-off-by: Jacopo Mondi --- drivers/pinctrl/Kconfig| 10 + drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-rza1.c | 961 +

[PATCH v3 2/7] dt-bindings: pinctrl: Add RZ/A1 bindings doc

2017-03-24 Thread Jacopo Mondi
Add device tree bindings documentation for Renesas RZ/A1 gpio and pin controller. Signed-off-by: Jacopo Mondi --- .../bindings/pinctrl/renesas,rza1-pinctrl.txt | 143 + 1 file changed, 143 insertions(+) create mode 100644

[PATCH v3 6/7] arm: dts: genmai: Add RIIC2 pin group

2017-03-24 Thread Jacopo Mondi
Add pin configuration subnode for RIIC2 interface. Signed-off-by: Jacopo Mondi Reviewed-by: Geert Uytterhoeven --- arch/arm/boot/dts/r7s72100-genmai.dts | 9 + 1 file changed, 9 insertions(+) diff --git

[PATCH v3 5/7] arm: dts: genmai: Add SCIF2 pin group

2017-03-24 Thread Jacopo Mondi
Add pin configuration subnode for SCIF2 serial debug interface. Signed-off-by: Jacopo Mondi Reviewed-by: Geert Uytterhoeven --- arch/arm/boot/dts/r7s72100-genmai.dts | 13 + 1 file changed, 13 insertions(+) diff --git

[PATCH v3 4/7] arm: dts: r7s72100: Add pin controller node

2017-03-24 Thread Jacopo Mondi
Add pin controller node with 12 gpio controller sub-nodes to r7s72100 dtsi. Signed-off-by: Jacopo Mondi Reviewed-by: Geert Uytterhoeven --- arch/arm/boot/dts/r7s72100.dtsi | 80 + 1 file changed, 80

[PATCH v3 7/7] arm: dts: genmai: Add user led device nodes

2017-03-24 Thread Jacopo Mondi
Add device nodes for user leds on Genmai board. Signed-off-by: Jacopo Mondi Reviewed-by: Geert Uytterhoeven --- arch/arm/boot/dts/r7s72100-genmai.dts | 14 ++ 1 file changed, 14 insertions(+) diff --git

Re: [git pull] pinctrl: sh-pfc: Updates for v4.12

2017-03-24 Thread Linus Walleij
On Fri, Mar 24, 2017 at 10:39 AM, Geert Uytterhoeven wrote: > Hi Linus, > > The following changes since commit c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201: > > Linux 4.11-rc1 (2017-03-05 12:59:56 -0800) > > are available in the git repository at: > >

[PATCH/RFC v2 1/2] arm64: dts: r8a7795: Add support for R-Car H3 ES2.0

2017-03-24 Thread Geert Uytterhoeven
Update r8a7795.dtsi so it corresponds to R-Car H3 ES2.0 or later: - The following devices no longer exist on ES2.0, and are thus removed: fcpf2, fcpvd3, fcpvi2, fdp1-2, usb3-if1, vspd3, vspi2. - The DU <-> VSPD topology is different on ES2.0, hence remove the "vsps" property from the

[PATCH/RFC v2 2/2] arm64: dts: r8a7795: salvator-x: Add support for R-Car H3 ES2.0

2017-03-24 Thread Geert Uytterhoeven
Split off support for Salvator-X boards with the ES1.x revision of the R-Car H3 SoC into a separate file. The main r8a7795-salvator-x.dts file now corresponds to Salvator-X with R-Car H3 ES2.0 or later. Signed-off-by: Geert Uytterhoeven --- v2: - Use a separate file

[PATCH/RFC v2 0/2] arm64: dts: r8a7795: Add support for R-Car H3 ES2.0

2017-03-24 Thread Geert Uytterhoeven
, this patch must not be applied yet. Note that for now, it is assumed that all H3ULCB boards are equipped with R-Car H3 ES1.x. For changes compared to v1 (which was not posted), please refer to the individual patches. Dependencies: - renesas-devel-20170324-v4.11-rc3, - [PATCH v2 0/4] clk

RE: [PATCH] ARM: dts: r7s72100: add power-domains to sdhi

2017-03-24 Thread Chris Brandt
On Friday, March 24, 2017, Geert Uytterhoeven wrote: > > The fixes tag above indicates this is a fix for v4.10, however, when I > > tried to apply it on top of v4.11-rc1 there was a conflict. So I > > think a backport will be required if we want it to be considered for > > v4.11 and be considered

Re: [PATCH] ARM: dts: r7s72100: add power-domains to sdhi

2017-03-24 Thread Geert Uytterhoeven
Hi Simon, On Fri, Mar 24, 2017 at 10:40 AM, Simon Horman wrote: > On Fri, Mar 24, 2017 at 08:55:44AM +0100, Geert Uytterhoeven wrote: >> On Fri, Mar 24, 2017 at 8:02 AM, Simon Horman wrote: >> > On Wed, Mar 22, 2017 at 02:25:04PM +0100, Geert Uytterhoeven

Re: [PATCH] ARM: dts: r7s72100: add power-domains to sdhi

2017-03-24 Thread Simon Horman
On Fri, Mar 24, 2017 at 08:55:44AM +0100, Geert Uytterhoeven wrote: > Hi Simon, > > On Fri, Mar 24, 2017 at 8:02 AM, Simon Horman wrote: > > On Wed, Mar 22, 2017 at 02:25:04PM +0100, Geert Uytterhoeven wrote: > >> (this time reply-to-all) > >> > >> On Thu, Feb 9, 2017 at 2:38

[git pull] clk: renesas: Updates for v4.11

2017-03-24 Thread Geert Uytterhoeven
Hi Mike, Stephen, The following changes since commit c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201: Linux 4.11-rc1 (2017-03-05 12:59:56 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git tags/clk-renesas-for-v4.12-tag1

[git pull] pinctrl: sh-pfc: Updates for v4.12

2017-03-24 Thread Geert Uytterhoeven
Hi Linus, The following changes since commit c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201: Linux 4.11-rc1 (2017-03-05 12:59:56 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git tags/sh-pfc-for-v4.12-tag1 for you to

Re: [PATCH] backlight: pwm_bl: Fix GPIO out for unimplemented .get_direction()

2017-03-24 Thread Philipp Zabel
On Wed, 2017-03-22 at 18:21 +0100, Geert Uytterhoeven wrote: > Commit 7613c922315e308a ("backlight: pwm_bl: Move the checks for initial > power state to a separate function") not just moved some code, but made > slight changes in semantics. > > If a gpiochip doesn't implement the optional

Re: [PATCH] ARM: dts: r7s72100: add power-domains to sdhi

2017-03-24 Thread Geert Uytterhoeven
Hi Simon, On Fri, Mar 24, 2017 at 8:02 AM, Simon Horman wrote: > On Wed, Mar 22, 2017 at 02:25:04PM +0100, Geert Uytterhoeven wrote: >> (this time reply-to-all) >> >> On Thu, Feb 9, 2017 at 2:38 PM, Chris Brandt >> wrote: >> > Reported-by: Geert

Re: [PATCH] ASoC: rcar: ssi: don't set SSICR.CKDV = 000 with SSIWSR.CONT

2017-03-24 Thread Kuninori Morimoto
Hi Simon > > > > /* > > > > +* It will set SSIWSR.CONT here, but SSICR.CKDV = 000 > > > > +* with it is not allowed. (SSIWSR.WS_MODE with > > > > +* SSICR.CKDV = 000 is not allowed either). > > > > +* Skip it. See

Re: [PATCH 06/15] ARM: dts: r8a779x: fix PCI bus dtc warnings

2017-03-24 Thread Simon Horman
On Tue, Mar 21, 2017 at 09:03:04PM -0500, Rob Herring wrote: > dtc recently added PCI bus checks. Fix these warnings. > > Signed-off-by: Rob Herring > Cc: Simon Horman > Cc: Magnus Damm > Cc: linux-renesas-soc@vger.kernel.org > --- >

Re: [PATCH] ARM: dts: r7s72100: add power-domains to sdhi

2017-03-24 Thread Simon Horman
On Wed, Mar 22, 2017 at 02:25:04PM +0100, Geert Uytterhoeven wrote: > (this time reply-to-all) > > On Thu, Feb 9, 2017 at 2:38 PM, Chris Brandt wrote: > > Reported-by: Geert Uytterhoeven > > Signed-off-by: Chris Brandt

Re: [PATCH] ASoC: rcar: ssi: don't set SSICR.CKDV = 000 with SSIWSR.CONT

2017-03-24 Thread Simon Horman
On Wed, Mar 22, 2017 at 08:56:07AM +, Kuninori Morimoto wrote: > > Hi Sergei > > > > /* > > > + * It will set SSIWSR.CONT here, but SSICR.CKDV = 000 > > > + * with it is not allowed. (SSIWSR.WS_MODE with > > > + * SSICR.CKDV = 000 is not allowed either).

Re: [GIT PULL] Renesas ARM Based SoC Drivers Updates for v4.12

2017-03-24 Thread Simon Horman
On Tue, Mar 21, 2017 at 05:37:50PM -0700, Olof Johansson wrote: > On Mon, Mar 20, 2017 at 09:58:23AM +0100, Simon Horman wrote: > > Hi Olof, Hi Kevin, Hi Arnd, > > > > Please consider these Renesas ARM based SoC drivers updates for v4.12. > > > > > > The following changes since commit