Re: [PATCH][RESEND] thermal: hwmon: EXPORT_SYMBOL_GPL for thermal hwmon sysfs

2016-08-09 Thread Kuninori Morimoto
Hi Zhang > > Hi Linux-PM, Linux-Kernel ML > > > > I posted thermal driver patch 2month ago, but no response and nothing > > happen. > > I'm following scripts/get_maintainer.pl, but am I wrong ?? > > Who is the maintainer of these patches ?? > > > The patch is queued for 4.8-rc2. > As you can se

RE: [PATCH][RESEND] thermal: hwmon: EXPORT_SYMBOL_GPL for thermal hwmon sysfs

2016-08-09 Thread Zhang, Rui
> -Original Message- > From: Kuninori Morimoto [mailto:kuninori.morimoto...@renesas.com] > Sent: Wednesday, August 10, 2016 10:10 AM > To: Kuninori Morimoto > Cc: Zhang, Rui ; edubez...@gmail.com; Geert > Uytterhoeven ; linux-ker...@vger.kernel.org; linux- > renesas-...@vger.kernel.org;

[PATCH 5/6] ASoC: simple-card: use asoc_simple_card_clean_reference()

2016-08-09 Thread Kuninori Morimoto
From: Kuninori Morimoto Signed-off-by: Kuninori Morimoto --- sound/soc/generic/simple-card.c | 19 ++- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 64896e3..55638a8 100644 --- a/sound/soc/

[PATCH 4/6] ASoC: simple-card-utils: add asoc_simple_card_clean_reference()

2016-08-09 Thread Kuninori Morimoto
From: Kuninori Morimoto simple-card needs to decrease the reference count of the device nodes. This patch makes this method simple style standard. Signed-off-by: Kuninori Morimoto --- include/sound/simple_card_utils.h | 2 ++ sound/soc/generic/simple-card-utils.c | 15 +++ 2 f

[PATCH 6/6] ASoC: rsrc-card: use asoc_simple_card_clean_reference()

2016-08-09 Thread Kuninori Morimoto
From: Kuninori Morimoto Signed-off-by: Kuninori Morimoto --- sound/soc/sh/rcar/rsrc-card.c | 19 ++- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/sound/soc/sh/rcar/rsrc-card.c b/sound/soc/sh/rcar/rsrc-card.c index dd5eda1..16dc13e 100644 --- a/sound/soc/sh/rca

[PATCH 3/6] ASoC: rsrc-card: use asoc_simple_card_canonicalize_cpu()

2016-08-09 Thread Kuninori Morimoto
From: Kuninori Morimoto Signed-off-by: Kuninori Morimoto --- sound/soc/sh/rcar/rsrc-card.c | 15 +++ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/sound/soc/sh/rcar/rsrc-card.c b/sound/soc/sh/rcar/rsrc-card.c index 0bf17dae..dd5eda1 100644 --- a/sound/soc/sh/rcar/r

[PATCH 1/6] ASoC: simple-card-utils: add asoc_simple_card_canonicalize_cpu()

2016-08-09 Thread Kuninori Morimoto
From: Kuninori Morimoto simple-card needs remove dai_link->cpu_dai_name if it CPU was single DAI. This patch makes this method simple style standard. Signed-off-by: Kuninori Morimoto --- include/sound/simple_card_utils.h | 2 ++ sound/soc/generic/simple-card-utils.c | 17 +

[PATCH 2/6] ASoC: simple-card: use asoc_simple_card_canonicalize_cpu()

2016-08-09 Thread Kuninori Morimoto
From: Kuninori Morimoto Signed-off-by: Kuninori Morimoto --- sound/soc/generic/simple-card.c | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 8b1efdd..64896e3 100644 --- a/sound/soc/generic/s

[PATCH 0/6] ASoC: simple-card: add canonicalize_cpu / clean_reference

2016-08-09 Thread Kuninori Morimoto
Hi Mark These add canonicalize_cpu / clean_reference to simple utiles. These are part of simple-card cleanup Kuninori Morimoto (6): ASoC: simple-card-utils: add asoc_simple_card_init_dai() ASoC: simple-card: use asoc_simple_card_init_dai() ASoC: rsrc-card: use asoc_simple_card_

Re: [PATCH][RESEND] thermal: hwmon: EXPORT_SYMBOL_GPL for thermal hwmon sysfs

2016-08-09 Thread Kuninori Morimoto
Hi Linux-PM, Linux-Kernel ML I posted thermal driver patch 2month ago, but no response and nothing happen. I'm following scripts/get_maintainer.pl, but am I wrong ?? Who is the maintainer of these patches ?? > Hi Zhang > > ping ?? > > > These are resend patches for rcar-thermal hwmon. > > > >

Re: [PATCH] rcar-du: add R8A7792 support

2016-08-09 Thread Rob Herring
On Thu, Aug 04, 2016 at 03:01:02PM -0700, Sergei Shtylyov wrote: > Add support for the R8A7792 DU; it has 2 DPAD (RGB) outputs. > > Signed-off-by: Sergei Shtylyov > > --- > This patch is against the 'drm/next/du' branch of Laurent Pinchart's > 'media.git' > repo... > > Documentation/devicetre

Re: [PATCH 2/2] ravb: add sleep PM suspend/resume support

2016-08-09 Thread David Miller
From: Niklas Söderlund Date: Wed, 3 Aug 2016 15:56:47 +0200 > The interface would not function after the system had been woken up > after have been suspended (echo mem > /sys/power/state) cycle. The > reason for this is that all device registers have been reset to its > default values. This patc

[PATCH 1/2] net: ethernet: renesas: sh_eth: use phydev from struct net_device

2016-08-09 Thread Philippe Reynes
The private structure contain a pointer to phydev, but the structure net_device already contain such pointer. So we can remove the pointer phy_dev in the private structure, and update the driver to use the one contained in struct net_device. Signed-off-by: Philippe Reynes --- drivers/net/etherne

[PATCH 2/2] net: ethernet: renesas: sh_eth: use new api ethtool_{get|set}_link_ksettings

2016-08-09 Thread Philippe Reynes
The ethtool api {get|set}_settings is deprecated. We move this driver to new api {get|set}_link_ksettings. Signed-off-by: Philippe Reynes --- drivers/net/ethernet/renesas/sh_eth.c | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/net/ethernet/renes

renesas-drivers-2016-08-09-v4.8-rc1

2016-08-09 Thread Geert Uytterhoeven
I have pushed renesas-drivers-2016-08-09-v4.8-rc1 to https://git.kernel.org/cgit/linux/kernel/git/geert/renesas-drivers.git This tree is meant to ease development of platform support and drivers for Renesas ARM SoCs. It is created by merging (a) the for-next branches of various subsystem trees and

[PATCH] [media] rcar-fcp: Make sure rcar_fcp_enable() returns 0 on success

2016-08-09 Thread Geert Uytterhoeven
When resuming from suspend-to-RAM on r8a7795/salvator-x: dpm_run_callback(): pm_genpd_resume_noirq+0x0/0x90 returns 1 PM: Device fe94.fdp1 failed to resume noirq: error 1 dpm_run_callback(): pm_genpd_resume_noirq+0x0/0x90 returns 1 PM: Device fe944000.fdp1 failed to resume noir

Re: [PATCH 3/3] iommu/ipmmu-vmsa: Hook up r8a7796 DT matching code

2016-08-09 Thread Laurent Pinchart
On Tuesday 09 Aug 2016 16:17:57 Laurent Pinchart wrote: > On Wednesday 08 Jun 2016 18:12:31 Magnus Damm wrote: > > On Wed, Jun 8, 2016 at 5:48 PM, Laurent Pinchart wrote: > >> On Wednesday 08 Jun 2016 09:04:17 Geert Uytterhoeven wrote: > >>> On Wed, Jun 8, 2016 at 2:18 AM, Laurent Pinchart wrote: >

Re: [PATCH 3/3] iommu/ipmmu-vmsa: Hook up r8a7796 DT matching code

2016-08-09 Thread Laurent Pinchart
Hi Magnus, On Wednesday 08 Jun 2016 18:12:31 Magnus Damm wrote: > On Wed, Jun 8, 2016 at 5:48 PM, Laurent Pinchart wrote: > > On Wednesday 08 Jun 2016 09:04:17 Geert Uytterhoeven wrote: > >> On Wed, Jun 8, 2016 at 2:18 AM, Laurent Pinchart wrote: > --- 0031/drivers/iommu/ipmmu-vmsa.c > +

Applied "ASoC: lpass-platform: don't use snd_soc_pcm_set_drvdata()" to the asoc tree

2016-08-09 Thread Mark Brown
The patch ASoC: lpass-platform: don't use snd_soc_pcm_set_drvdata() 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) a

Re: [PATCH v3 0/6] Add R8A7794/SILK sound DT support

2016-08-09 Thread Simon Horman
On Mon, Aug 08, 2016 at 09:54:54PM +0300, Sergei Shtylyov wrote: > On 08/08/2016 01:59 PM, Simon Horman wrote: > > >>> Here's the set of 6 patches against Simon Horman's 'renesas.git' repo, > >>>'renesas-devel-20160725-v4.7-rc7' tag. I'm adding the sound device tree > >>>support > >>>for the R8

Applied "ASoC: remove snd_soc_pcm_set/get_drvdata()" to the asoc tree

2016-08-09 Thread Mark Brown
The patch ASoC: remove snd_soc_pcm_set/get_drvdata() 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 Linu

Applied "ASoC: rsrc-card: use asoc_simple_card_init_dai()" to the asoc tree

2016-08-09 Thread Mark Brown
The patch ASoC: rsrc-card: use asoc_simple_card_init_dai() 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 t

Applied "ASoC: simple-card: use asoc_simple_card_init_dai()" to the asoc tree

2016-08-09 Thread Mark Brown
The patch ASoC: simple-card: use asoc_simple_card_init_dai() 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

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

2016-08-09 Thread Simon Horman
On Fri, Aug 05, 2016 at 09:28:59PM +0300, Sergei Shtylyov wrote: > On 08/05/2016 09:24 PM, Sergei Shtylyov wrote: > > > Here's the set of 2 patches against Simon Horman's 'renesas.git' repo, > >'renesas-devel-20160725-v4.7-rc7' tag. We're adding the R8A7792 DU clocks and > >device nodes. They ha

Re: Regression introduced by "net: ipconfig: Support using "delayed" DHCP replies"

2016-08-09 Thread Geert Uytterhoeven
Hi Uwe, On Tue, Aug 9, 2016 at 12:18 PM, Uwe Kleine-König wrote: > On Tue, Aug 09, 2016 at 12:02:44PM +0200, Geert Uytterhoeven wrote: >> On current net-next, I see the following corruption during DHCP on >> r8a7791/koelsch, which uses the sh_eth driver: >> >> Sending DHCP requests ., OK >>

[PATCH v2 0/4] R-Car Gen3 DU enablement on Salvator-X board

2016-08-09 Thread Laurent Pinchart
Hello, This patch series enables DU support on the Salvator-X board. The first three patches add the FCPV, VSP and DU devices to the r8a7795 .dtsi, while the last patch enables DU support for the board. Only the VGA output is currently supported, support for HDMI is work in progress. All the rela

[PATCH v2 2/4] arm64: dts: renesas: r8a7795: Add VSP instances

2016-08-09 Thread Laurent Pinchart
The r8a7795 has 9 VSP instances. Signed-off-by: Laurent Pinchart --- arch/arm64/boot/dts/renesas/r8a7795.dtsi | 90 1 file changed, 90 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/r8a7795.dtsi b/arch/arm64/boot/dts/renesas/r8a7795.dtsi index f8b1c421e

[PATCH v2 1/4] arm64: dts: renesas: r8a7795: Add FCPV nodes

2016-08-09 Thread Laurent Pinchart
The FCPs handle the interface between various IP cores and memory. Add the instances related to the VSP2s. Signed-off-by: Laurent Pinchart --- arch/arm64/boot/dts/renesas/r8a7795.dtsi | 63 1 file changed, 63 insertions(+) diff --git a/arch/arm64/boot/dts/renesa

[PATCH v2 4/4] arm64: dts: renesas: salvator-x: Enable DU

2016-08-09 Thread Laurent Pinchart
Only the VGA output is supported for now. Signed-off-by: Laurent Pinchart --- arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts | 44 ++ 1 file changed, 44 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts b/arch/arm64/boot/dts/renesas/r8a7795-s

[PATCH v2 3/4] arm64: dts: renesas: r8a7795: Add DU device to DT

2016-08-09 Thread Laurent Pinchart
Add the DU device to r8a7795.dtsi in a disabled state. Signed-off-by: Laurent Pinchart --- arch/arm64/boot/dts/renesas/r8a7795.dtsi | 46 1 file changed, 46 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/r8a7795.dtsi b/arch/arm64/boot/dts/renesas/r8a779

[PATCH 0/2] ARM: dts: alt: add SDHI0 and 1, and MMCIF support

2016-08-09 Thread Simon Horman
Hi, this short series enables SDHI 0 and 1, and MMCIF on the r8a7794/Alt board. The SDHI IP blocks are exposed as SD card slots while the MMCIF block is wired up to on-board eMMC. N.B.: I do not currently have physical access to an Alt board but I do have remote access which I used to test

[PATCH 1/2] ARM: dts: alt: add SDHI0 and 1 support

2016-08-09 Thread Simon Horman
Define the Alt board dependent part of the SDHI0 and 1 device nodes along with the necessary voltage regulators. Based on work by the original patch by Vladimir Barinov and Sergei Shtylyov for the Silk board. Cc: Vladimir Barinov Cc: Sergei Shtylyov Signed-off-by: Simon Horman --- arch/arm/bo

[PATCH 2/2] ARM: dts: alt: add MMCIF support

2016-08-09 Thread Simon Horman
Define the Alt board dependent part of the MMCIF device node. Like the Silk the board has eMMC chip along with the necessary voltage regulator (note that the Vcc/Vccq regulator is dummy -- it's required by the MMCIF driver but doesn't actually exist on the board). Based on work for the Silk boar

Re: Regression introduced by "net: ipconfig: Support using "delayed" DHCP replies"

2016-08-09 Thread Uwe Kleine-König
Hello Geert, On Tue, Aug 09, 2016 at 12:02:44PM +0200, Geert Uytterhoeven wrote: > Hi Uwe, David, > > On current net-next, I see the following corruption during DHCP on > r8a7791/koelsch, which uses the sh_eth driver: > > Sending DHCP requests ., OK > IP-Config: Got DHCP answer from 19

Regression introduced by "net: ipconfig: Support using "delayed" DHCP replies"

2016-08-09 Thread Geert Uytterhoeven
Hi Uwe, David, On current net-next, I see the following corruption during DHCP on r8a7791/koelsch, which uses the sh_eth driver: Sending DHCP requests ., OK IP-Config: Got DHCP answer from 192.168.97.254, my address is 192.168.97.28 IP-Config: Complete: - device=eth0, hwadd

Re: The failure summary report of GEN3 for linux stable v4.7

2016-08-09 Thread Niklas Söderlund
On 2016-08-09 11:16:25 +0300, Laurent Pinchart wrote: > Hi Niklas, > > On Tuesday 09 Aug 2016 09:03:14 Niklas Söderlund wrote: > > On 2016-08-09 06:01:48 +, Kuninori Morimoto wrote: > > > Hi duclm > > > > > > > root@linaro-nano:~# cd /sys/bus/platform/drivers/i2c-rcar; find -type l > > > > ./

Re: [RFC] pci: Provide a domain limited version of pdev_fixup_irq

2016-08-09 Thread Lorenzo Pieralisi
Hi Bjorn, all, On Mon, Aug 08, 2016 at 06:19:22PM -0500, Bjorn Helgaas wrote: > [+cc Matthew] > > On Mon, Aug 08, 2016 at 09:31:05AM +, Phil Edworthy wrote: > > Hi Lorenzo, > > > > Thanks for the link, I'll wait to see how this pans out. > > I'm not sure anything is happening there. Last t

Re: The failure summary report of GEN3 for linux stable v4.7

2016-08-09 Thread Laurent Pinchart
Hi Niklas, On Tuesday 09 Aug 2016 09:03:14 Niklas Söderlund wrote: > On 2016-08-09 06:01:48 +, Kuninori Morimoto wrote: > > Hi duclm > > > > > root@linaro-nano:~# cd /sys/bus/platform/drivers/i2c-rcar; find -type l > > > ./e651.i2c > > > root@linaro-nano:/sys/bus/platform/drivers/i2c-rcar

Re: The failure summary report of GEN3 for linux stable v4.7

2016-08-09 Thread Niklas Söderlund
On 2016-08-09 06:01:48 +, Kuninori Morimoto wrote: > > Hi duclm > > > root@linaro-nano:~# cd /sys/bus/platform/drivers/i2c-rcar; find -type l > > ./e651.i2c > > root@linaro-nano:/sys/bus/platform/drivers/i2c-rcar# echo e651.i2c > > > unbind > > [ 30.505950] clk_unregister: unregist