Re: [PATCH/PROTO 0/9] R-Car H3 MSIOF Parent Clock Control Prototype

2016-08-24 Thread Magnus Damm
Hi Geert, On Sat, Aug 13, 2016 at 1:38 AM, Geert Uytterhoeven wrote: > Hi all, > > On R-Car H3, the various MSIOF instances (used for SPI) have a common > parent clock. This mso clock is a programmable "DIV6" clock (divider > 1 - 64). Its rate lies in the range

Re: [PATCH/RTF 7/7] arm64: dts: r8a7796: salvator-x: enable SDHI0 & 3

2016-08-24 Thread Magnus Damm
Hi Geert, On Thu, Aug 18, 2016 at 12:52 AM, Geert Uytterhoeven wrote: > On Wed, Aug 17, 2016 at 1:31 PM, Simon Horman > wrote: >> Enable the exposed SD card slots in the DT of the r8a7796/salvator-x. >> >> Based on work for the

Re: renesas-drivers-2016-08-23-v4.8-rc3

2016-08-24 Thread Magnus Damm
Hi Morimoto-san, everyone, On Wed, Aug 24, 2016 at 9:58 AM, Kuninori Morimoto wrote: > > Hi Geert, Simon, Wolfram > >> I have pushed renesas-drivers-2016-08-23-v4.8-rc3 to >> https://git.kernel.org/cgit/linux/kernel/git/geert/renesas-drivers.git >> >> This tree

[git pull] pinctrl: sh-pfc: Updates for v4.9 (take two)

2016-08-24 Thread Geert Uytterhoeven
From: Geert Uytterhoeven Hi Linus, The following changes since commit 7955dac1b7efab7ae1e7522ea9af3fdc18a257d0: pinctrl: sh-pfc: r8a7795: Add DU support (2016-08-16 10:30:43 +0200) are available in the git repository at:

[PATCH v2] ARM: dts: blanche: add support for general purpose LEDs

2016-08-24 Thread Sergei Shtylyov
Add support for the general purpose LEDs on the Blanche board. Signed-off-by: Sergei Shtylyov <sergei.shtyl...@cogentembedded.com> --- This patch is against the 'renesas-devel-20160824-v4.8-rc3' of Simon Horman's 'renesas.git'. Changes in version 2: - removed the "label" props.

[PATCH v2] Documentation: devicetree: changesets do locking on their own meanwhile

2016-08-24 Thread Wolfram Sang
Since commit 183223770ae862 ("drivers/of: Export OF changeset functions"), the mentioned functions do all necessary locking. Signed-off-by: Wolfram Sang Fixes: 183223770ae862 ("drivers/of: Export OF changeset functions") --- V2: corrected the "Fixes" tag

[PATCH 0/2] mmc: sh_mobile_sdhi: use SDR & card_busy only on Gen2+

2016-08-24 Thread Wolfram Sang
This series hopefully fixes a performance regression for r8a73a4 (pre Gen2) caused by a not working card_busy. Because we don't have documentation for its SDHI (and I don't have the hardware), just enable card_busy and SDR only for machines known to have hardware support for it. Geert, can you

[PATCH 2/2] mmc: host: sh_mobile_sdhi: don't populate unneeded functions

2016-08-24 Thread Wolfram Sang
Populating card_busy caused a side-effect on a chip variant we don't have documentation for (r8a73a4). So, enable it and voltage switching only on devices known to support those features. Signed-off-by: Wolfram Sang --- drivers/mmc/host/sh_mobile_sdhi.c | 10

[PATCH 1/2] mmc: host: sh_mobile_sdhi: move card_busy from tmio to sdhi

2016-08-24 Thread Wolfram Sang
card_busy is only used/tested on SDHI for R-Car Gen2 and later. Move it to the SDHI driver, so we can then activate it conditionally depending on the SDHI type. Signed-off-by: Wolfram Sang --- drivers/mmc/host/sh_mobile_sdhi.c | 8

[PATCH 1/2] i2c: sh_mobile: use proper device with dma_mapping_error

2016-08-24 Thread Wolfram Sang
We must use the same device we used for mapping. Signed-off-by: Wolfram Sang --- drivers/i2c/busses/i2c-sh_mobile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/busses/i2c-sh_mobile.c b/drivers/i2c/busses/i2c-sh_mobile.c

[PATCH 0/4] usb: host: xhci: plat: add support for Renesas r8a7796 SoC

2016-08-24 Thread Yoshihiro Shimoda
This patch is based on the latest Greg's usb.git / usb-next branch. (commit id = 19acaea1dd2878d6c92b45e4c117ef425baf) Yoshihiro Shimoda (4): usb: host: xhci: rcar: add a new firmware version for r8a7796 usb: host: xhci: rcar: add a macro XHCI_PLAT_RENESAS_RCAR_PRIV usb: host: xhci:

[PATCH 4/4] usb: host: xhci: plat: add support for Renesas r8a7796 SoC

2016-08-24 Thread Yoshihiro Shimoda
This patch adds support for Renesas r8a7796 SoC. This SoC is not compatible with r8a7795 because using firmware version differs. Signed-off-by: Yoshihiro Shimoda --- Documentation/devicetree/bindings/usb/usb-xhci.txt | 1 + drivers/usb/host/xhci-plat.c

[PATCH 1/4] usb: host: xhci: rcar: add a new firmware version for r8a7796

2016-08-24 Thread Yoshihiro Shimoda
This patch adds a new firmware version "V3" for r8a7796. This patch also revises the explanation of each version's capability using a table. Signed-off-by: Yoshihiro Shimoda --- drivers/usb/host/xhci-rcar.c | 17 - drivers/usb/host/xhci-rcar.h |

[PATCH 3/4] usb: host: xhci: plat: use XHCI_PLAT_RENESAS_RCAR_PRIV macro for R-Car

2016-08-24 Thread Yoshihiro Shimoda
This patch uses XHCI_PLAT_RENESAS_RCAR_PRIV macro to make the xhci_plat_priv data. Signed-off-by: Yoshihiro Shimoda --- drivers/usb/host/xhci-plat.c | 13 ++--- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/drivers/usb/host/xhci-plat.c

[PATCH 2/4] usb: host: xhci: rcar: add a macro XHCI_PLAT_RENESAS_RCAR_PRIV

2016-08-24 Thread Yoshihiro Shimoda
This patch adds a new macro "XHCI_PLAT_RENESAS_RCAR_PRIV" to make struct xhci_plat_priv data for R-Car SoCs easily. Signed-off-by: Yoshihiro Shimoda --- drivers/usb/host/xhci-rcar.h | 8 1 file changed, 8 insertions(+) diff --git

Re: [PATCH 2/2] thermal: rcar-thermal: enable hwmon when thermal_zone

2016-08-24 Thread Kuninori Morimoto
Hi Zhang > > > > > From: Kuninori Morimoto > > > > > > > > > > rcar-thermal is supporting both > > > > > thermal_zone_of_sensor_register() > > > > > and > > > > > thermal_zone_device_register(). But > > > > > thermal_zone_of_sensor_register() > > > > > doesn't

Re: [PATCH 2/2] thermal: rcar-thermal: enable hwmon when thermal_zone

2016-08-24 Thread Zhang Rui
On 三, 2016-08-24 at 08:17 +, Kuninori Morimoto wrote: > Hi Zhang > > > > > > > > > > > > > > From: Kuninori Morimoto > > > > > > > > rcar-thermal is supporting both > > > > thermal_zone_of_sensor_register() > > > > and > > > >

Re: [PATCH 2/2] thermal: rcar-thermal: enable hwmon when thermal_zone

2016-08-24 Thread Kuninori Morimoto
Hi Zhang > > > From: Kuninori Morimoto > > > > > > rcar-thermal is supporting both thermal_zone_of_sensor_register() > > > and > > > thermal_zone_device_register(). But > > > thermal_zone_of_sensor_register() > > > doesn't enable hwmon as default. > > > This

Re: [PATCH 2/2] thermal: rcar-thermal: enable hwmon when thermal_zone

2016-08-24 Thread Zhang Rui
On 五, 2016-08-19 at 19:35 +0800, Zhang Rui wrote: > On 二, 2016-07-19 at 10:01 +, Kuninori Morimoto wrote: > > > > From: Kuninori Morimoto > > > > rcar-thermal is supporting both thermal_zone_of_sensor_register() > > and > > thermal_zone_device_register().

[PATCH] usb: renesas_usbhs: add a compatible string for r8a7796

2016-08-24 Thread Yoshihiro Shimoda
This patch adds support for r8a7796 (R-Car M3-W). Signed-off-by: Yoshihiro Shimoda --- Documentation/devicetree/bindings/usb/renesas_usbhs.txt | 1 + drivers/usb/renesas_usbhs/common.c | 4 2 files changed, 5 insertions(+) diff --git

Re: [PATCH 1/2] ARM: shmobile: r8a7790: only use smp_init when SMP is selected

2016-08-24 Thread Simon Horman
On Sun, Aug 21, 2016 at 11:10:26PM +0200, Wolfram Sang wrote: > Hi Simon, > > > > We use the helper function which populates the smp_init pointer only in > > > case of SMP. > > > > > > Signed-off-by: Wolfram Sang > > > > could you describe the motivation for

[PATCH 1/2] phy: rcar-gen3-usb2: revise the example of device tree doc

2016-08-24 Thread Yoshihiro Shimoda
The clocks property should be set to , not _clks. Signed-off-by: Yoshihiro Shimoda --- Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 2/2] phy: rcar-gen3-usb2: Add a compatible string for r8a7796

2016-08-24 Thread Yoshihiro Shimoda
This driver can support for r8a7796 SoC. So, this patch adds it. Signed-off-by: Yoshihiro Shimoda --- Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 2 ++ drivers/phy/phy-rcar-gen3-usb2.c | 1 + 2 files changed, 3

[PATCH 0/2] phy: rcar-gen3-usb2: revise the dt doc and add support for r8a7796

2016-08-24 Thread Yoshihiro Shimoda
This patch set is based on the latest linux-phy.git / next branch. (commit id = d9a6e11e10d657df9af1d321c0eccdead184f72a) Yoshihiro Shimoda (2): phy: rcar-gen3-usb2: revise the example of device tree doc phy: rcar-gen3-usb2: Add a compatible string for r8a7796

Re: renesas-drivers-2016-08-23-v4.8-rc3

2016-08-24 Thread Wolfram Sang
> I tried it, but same result. I see. Do we have a list of changes between ES2.0 and 3.0? signature.asc Description: PGP signature

Re: renesas-drivers-2016-08-23-v4.8-rc3

2016-08-24 Thread Kuninori Morimoto
Hi Wolfram Thank you for your feedback > > 09a28bb8b17e8cab3e9c120b7e37f631cc334a8f > > ("ARM: dts: lager: use demuxer for IIC3/I2C3") > > Can you try this patch I sent yesterday? > > [PATCH] i2c: mux: demux-pinctrl: run properly with multiple instances I tried it, but same result.

Re: renesas-drivers-2016-08-23-v4.8-rc3

2016-08-24 Thread Wolfram Sang
> > 09a28bb8b17e8cab3e9c120b7e37f631cc334a8f > ("ARM: dts: lager: use demuxer for IIC3/I2C3") Can you try this patch I sent yesterday? [PATCH] i2c: mux: demux-pinctrl: run properly with multiple instances signature.asc Description: PGP signature