Re: [PATCH v2 03/10] pwm: imx: Rewrite imx_pwm_*_v1 code to facilitate switch to atomic pwm operation

2016-10-30 Thread Sascha Hauer
On Thu, Oct 27, 2016 at 09:40:05AM +0200, Boris Brezillon wrote: > On Thu, 27 Oct 2016 08:29:39 +0200 > Lukasz Majewski wrote: > > > The code has been rewritten to remove "generic" calls to > > imx_pwm_{enable|disable|config}. > > > > Such approach would facilitate switch

Re: [PATCH v2 03/10] pwm: imx: Rewrite imx_pwm_*_v1 code to facilitate switch to atomic pwm operation

2016-10-30 Thread Sascha Hauer
On Thu, Oct 27, 2016 at 09:40:05AM +0200, Boris Brezillon wrote: > On Thu, 27 Oct 2016 08:29:39 +0200 > Lukasz Majewski wrote: > > > The code has been rewritten to remove "generic" calls to > > imx_pwm_{enable|disable|config}. > > > > Such approach would facilitate switch to atomic PWM (a.k.a

Re: [PATCH v2 2/3] dt-bindings: reset: Add K2G reset definitions

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 04:49:40PM -0500, Andrew F. Davis wrote: > Add identifiers for the K2G resets managed by the PMMC. > > Signed-off-by: Andrew F. Davis > --- > MAINTAINERS | 1 + > include/dt-bindings/reset/k2g.h | 22 ++ > 2 files

Re: [PATCH v2 2/3] dt-bindings: reset: Add K2G reset definitions

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 04:49:40PM -0500, Andrew F. Davis wrote: > Add identifiers for the K2G resets managed by the PMMC. > > Signed-off-by: Andrew F. Davis > --- > MAINTAINERS | 1 + > include/dt-bindings/reset/k2g.h | 22 ++ > 2 files changed, 23

[PATCH 06/15] Drivers: hv: vss: Improve log messages.

2016-10-30 Thread kys
From: Alex Ng Adding log messages to help troubleshoot error cases and transaction handling. Signed-off-by: Alex Ng Signed-off-by: K. Y. Srinivasan --- drivers/hv/hv_snapshot.c | 25 +++-- 1 files

[PATCH 15/15] Drivers: hv: vmbus: On the read path cleanup the logic to interrupt the host

2016-10-30 Thread kys
From: K. Y. Srinivasan Signal the host when we determine the host is to be signaled - on th read path. The currrent code determines the need to signal in the ringbuffer code and actually issues the signal elsewhere. This can result in the host viewing this interrupt as

[PATCH 03/15] Drivers: hv: utils: Fix the mapping between host version and protocol to use

2016-10-30 Thread kys
From: Alex Ng We should intentionally declare the protocols to use for every known host and default to using the latest protocol if the host is unknown or new. Signed-off-by: Alex Ng Signed-off-by: K. Y. Srinivasan ---

[PATCH 11/15] tools: hv: remove unnecessary header files and netlink related code

2016-10-30 Thread kys
From: Weibing Zhang Remove unnecessary header files and netlink related code as the daemons do not use netlink to communicate with the kernel now. Signed-off-by: Weibing Zhang Signed-off-by: K. Y. Srinivasan ---

[PATCH 06/15] Drivers: hv: vss: Improve log messages.

2016-10-30 Thread kys
From: Alex Ng Adding log messages to help troubleshoot error cases and transaction handling. Signed-off-by: Alex Ng Signed-off-by: K. Y. Srinivasan --- drivers/hv/hv_snapshot.c | 25 +++-- 1 files changed, 19 insertions(+), 6 deletions(-) diff --git

[PATCH 15/15] Drivers: hv: vmbus: On the read path cleanup the logic to interrupt the host

2016-10-30 Thread kys
From: K. Y. Srinivasan Signal the host when we determine the host is to be signaled - on th read path. The currrent code determines the need to signal in the ringbuffer code and actually issues the signal elsewhere. This can result in the host viewing this interrupt as spurious since the host

[PATCH 03/15] Drivers: hv: utils: Fix the mapping between host version and protocol to use

2016-10-30 Thread kys
From: Alex Ng We should intentionally declare the protocols to use for every known host and default to using the latest protocol if the host is unknown or new. Signed-off-by: Alex Ng Signed-off-by: K. Y. Srinivasan --- drivers/hv/hv_util.c |9 ++--- 1 files changed, 6 insertions(+),

[PATCH 11/15] tools: hv: remove unnecessary header files and netlink related code

2016-10-30 Thread kys
From: Weibing Zhang Remove unnecessary header files and netlink related code as the daemons do not use netlink to communicate with the kernel now. Signed-off-by: Weibing Zhang Signed-off-by: K. Y. Srinivasan --- tools/hv/hv_fcopy_daemon.c |7 --- tools/hv/hv_kvp_daemon.c |7

[PATCH 10/15] tools: hv: fix a compile warning in snprintf

2016-10-30 Thread kys
From: Weibing Zhang hv_kvp_daemon.c: In function .kvp_mac_to_if_name.: hv_kvp_daemon.c:705:2: warning: format not a string literal and no format arguments [-Wformat-security] snprintf(dev_id, sizeof(dev_id), kvp_net_dir); ^ hv_kvp_daemon.c:705:2: warning: format not

[PATCH 10/15] tools: hv: fix a compile warning in snprintf

2016-10-30 Thread kys
From: Weibing Zhang hv_kvp_daemon.c: In function .kvp_mac_to_if_name.: hv_kvp_daemon.c:705:2: warning: format not a string literal and no format arguments [-Wformat-security] snprintf(dev_id, sizeof(dev_id), kvp_net_dir); ^ hv_kvp_daemon.c:705:2: warning: format not a string literal and no

[PATCH 12/15] vmbus: make sysfs names consistent with PCI

2016-10-30 Thread kys
From: Stephen Hemminger In commit 9a56e5d6a0ba ("Drivers: hv: make VMBus bus ids persistent") the name of vmbus devices in sysfs changed to be (in 4.9-rc1): /sys/bus/vmbus/vmbus-6aebe374-9ba0-11e6-933c-00259086b36b The prefix ("vmbus-") is redundant and differs from

[PATCH 04/15] Drivers: hv: balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is not set

2016-10-30 Thread kys
From: Alex Ng If the guest does not support memory hotplugging, it should respond to the host with zero pages added and successful result code. This signals to the host that hotplugging is not supported and the host will avoid sending future hot-add requests.

[PATCH 01/15] Drivers: hv: ring_buffer: count on wrap around mappings in get_next_pkt_raw() (v2)

2016-10-30 Thread kys
From: Vitaly Kuznetsov With wrap around mappings in place we can always provide drivers with direct links to packets on the ring buffer, even when they wrap around. Do the required updates to get_next_pkt_raw()/put_pkt_raw() The first version of this commit was reverted

[PATCH 01/15] Drivers: hv: ring_buffer: count on wrap around mappings in get_next_pkt_raw() (v2)

2016-10-30 Thread kys
From: Vitaly Kuznetsov With wrap around mappings in place we can always provide drivers with direct links to packets on the ring buffer, even when they wrap around. Do the required updates to get_next_pkt_raw()/put_pkt_raw() The first version of this commit was reverted (65a532f3d50a) to deal

[PATCH 12/15] vmbus: make sysfs names consistent with PCI

2016-10-30 Thread kys
From: Stephen Hemminger In commit 9a56e5d6a0ba ("Drivers: hv: make VMBus bus ids persistent") the name of vmbus devices in sysfs changed to be (in 4.9-rc1): /sys/bus/vmbus/vmbus-6aebe374-9ba0-11e6-933c-00259086b36b The prefix ("vmbus-") is redundant and differs from how PCI is represented in

[PATCH 04/15] Drivers: hv: balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is not set

2016-10-30 Thread kys
From: Alex Ng If the guest does not support memory hotplugging, it should respond to the host with zero pages added and successful result code. This signals to the host that hotplugging is not supported and the host will avoid sending future hot-add requests. Signed-off-by: Alex Ng

[PATCH 02/15] Drivers: hv: utils: reduce HV_UTIL_NEGO_TIMEOUT timeout

2016-10-30 Thread kys
From: Vitaly Kuznetsov I discovered that at least WS2016TP5 host has 60 seconds timeout for the ICMSGTYPE_NEGOTIATE message so we need to lower guest's timeout a little bit to make sure we always respond in time. Let's make it 55 seconds. Signed-off-by: Vitaly Kuznetsov

[PATCH 02/15] Drivers: hv: utils: reduce HV_UTIL_NEGO_TIMEOUT timeout

2016-10-30 Thread kys
From: Vitaly Kuznetsov I discovered that at least WS2016TP5 host has 60 seconds timeout for the ICMSGTYPE_NEGOTIATE message so we need to lower guest's timeout a little bit to make sure we always respond in time. Let's make it 55 seconds. Signed-off-by: Vitaly Kuznetsov Signed-off-by: K. Y.

[PATCH 09/15] tools: hv: remove unnecessary link flag

2016-10-30 Thread kys
From: Weibing Zhang The link flag pthread is not needed. Signed-off-by: Weibing Zhang Signed-off-by: K. Y. Srinivasan --- tools/hv/Makefile |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git

[PATCH 07/15] Drivers: hv: vss: Operation timeouts should match host expectation

2016-10-30 Thread kys
From: Alex Ng Increase the timeout of backup operations. When system is under I/O load, it needs more time to freeze. These timeout values should also match the host timeout values more closely. Signed-off-by: Alex Ng Signed-off-by: K. Y.

[PATCH 09/15] tools: hv: remove unnecessary link flag

2016-10-30 Thread kys
From: Weibing Zhang The link flag pthread is not needed. Signed-off-by: Weibing Zhang Signed-off-by: K. Y. Srinivasan --- tools/hv/Makefile |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/tools/hv/Makefile b/tools/hv/Makefile index a8c4644..0d1e61b 100644 ---

[PATCH 07/15] Drivers: hv: vss: Operation timeouts should match host expectation

2016-10-30 Thread kys
From: Alex Ng Increase the timeout of backup operations. When system is under I/O load, it needs more time to freeze. These timeout values should also match the host timeout values more closely. Signed-off-by: Alex Ng Signed-off-by: K. Y. Srinivasan --- drivers/hv/hv_snapshot.c |8

Re: [PATCH v5 1/3] dt: cpufreq: brcm: New binding document for brcmstb-avs-cpufreq

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 02:05:34PM -0700, Markus Mayer wrote: > From: Markus Mayer > > Add the binding document for the new brcmstb-avs-cpufreq driver. > > Signed-off-by: Markus Mayer > Acked-by: Viresh Kumar > --- >

Re: [PATCH v5 1/3] dt: cpufreq: brcm: New binding document for brcmstb-avs-cpufreq

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 02:05:34PM -0700, Markus Mayer wrote: > From: Markus Mayer > > Add the binding document for the new brcmstb-avs-cpufreq driver. > > Signed-off-by: Markus Mayer > Acked-by: Viresh Kumar > --- > .../bindings/cpufreq/brcm,stb-avs-cpu-freq.txt | 78 >

Re: [LKP] [lkp] [x86/platform/UV] 71854cb812: will-it-scale.per_thread_ops -2.3% regression

2016-10-30 Thread Fengguang Wu
Hi Thomas, It's been a big challenge that we'll occasionally run into such bisect whose data show clear changes, however cannot be easily explained by looking at the code logic. On Fri, Oct 28, 2016 at 12:37:45AM +0200, Thomas Gleixner wrote: On Thu, 27 Oct 2016, Ye Xiaolong wrote: Yes, this

Re: [LKP] [lkp] [x86/platform/UV] 71854cb812: will-it-scale.per_thread_ops -2.3% regression

2016-10-30 Thread Fengguang Wu
Hi Thomas, It's been a big challenge that we'll occasionally run into such bisect whose data show clear changes, however cannot be easily explained by looking at the code logic. On Fri, Oct 28, 2016 at 12:37:45AM +0200, Thomas Gleixner wrote: On Thu, 27 Oct 2016, Ye Xiaolong wrote: Yes, this

[PATCH 1/1] xen-netfront: do not cast grant table reference to signed short

2016-10-30 Thread Dongli Zhang
While grant reference is of type uint32_t, xen-netfront erroneously casts it to signed short in BUG_ON(). This would lead to the xen domU panic during boot-up or migration when it is attached with lots of paravirtual devices. Signed-off-by: Dongli Zhang ---

[PATCH 1/1] xen-netfront: do not cast grant table reference to signed short

2016-10-30 Thread Dongli Zhang
While grant reference is of type uint32_t, xen-netfront erroneously casts it to signed short in BUG_ON(). This would lead to the xen domU panic during boot-up or migration when it is attached with lots of paravirtual devices. Signed-off-by: Dongli Zhang --- drivers/net/xen-netfront.c | 4 ++--

Re: [PATCH] cxl: Fix error handling

2016-10-30 Thread Michael Ellerman
Christophe JAILLET writes: > 'cxl_dev_context_init()' returns an error pointer in case of error, not > NULL. So test it with IS_ERR. > > Signed-off-by: Christophe JAILLET > --- > un-compiled because I don't have the required cross

Re: [PATCH] cxl: Fix error handling

2016-10-30 Thread Michael Ellerman
Christophe JAILLET writes: > 'cxl_dev_context_init()' returns an error pointer in case of error, not > NULL. So test it with IS_ERR. > > Signed-off-by: Christophe JAILLET > --- > un-compiled because I don't have the required cross build environment. Do you run Ubuntu or Fedora? If so it's

Re: [PATCHv2 1/4] dt-bindings: mfd: Add Altera Arria10 SR Monitor

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 03:00:23PM -0500, ttha...@opensource.altera.com wrote: > From: Thor Thayer > > Add the Arria10 DevKit System Resource Chip register and state > monitoring module to the MFD. > > Signed-off-by: Thor Thayer >

Re: [PATCHv2 1/4] dt-bindings: mfd: Add Altera Arria10 SR Monitor

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 03:00:23PM -0500, ttha...@opensource.altera.com wrote: > From: Thor Thayer > > Add the Arria10 DevKit System Resource Chip register and state > monitoring module to the MFD. > > Signed-off-by: Thor Thayer > --- > Note: This needs to be applied to the bindings document

Re: [PATCH V3 3/6] dt/bindings: Add bindings for Tegra GMI controller

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 04:01:09PM +0200, Mirza Krak wrote: > From: Mirza Krak > > Document the devicetree bindings for the Generic Memory Interface (GMI) > bus driver found on Tegra SOCs. > > Signed-off-by: Mirza Krak > Tested-by: Marcel Ziswiler

Re: [PATCH V3 3/6] dt/bindings: Add bindings for Tegra GMI controller

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 04:01:09PM +0200, Mirza Krak wrote: > From: Mirza Krak > > Document the devicetree bindings for the Generic Memory Interface (GMI) > bus driver found on Tegra SOCs. > > Signed-off-by: Mirza Krak > Tested-by: Marcel Ziswiler > Tested-on: Colibri T20/T30 on EvalBoard

Re: [PATCH] console: use first console if stdout-path device doesn't appear

2016-10-30 Thread Michael Ellerman
Andreas Schwab writes: > Any news? We discovered it also breaks VGA on qemu, which presumably is not the type of news you were hoping for. To reproduce you just need to build a ppc64le kernel: $ apt-get install gcc-powerpc64le-linux-gnu $ make ARCH=powerpc

Re: [PATCH] console: use first console if stdout-path device doesn't appear

2016-10-30 Thread Michael Ellerman
Andreas Schwab writes: > Any news? We discovered it also breaks VGA on qemu, which presumably is not the type of news you were hoping for. To reproduce you just need to build a ppc64le kernel: $ apt-get install gcc-powerpc64le-linux-gnu $ make ARCH=powerpc

[patch v3 1/1] platform/x86: move module mlx-platform from arch/x86 to drivers/platform/x86

2016-10-30 Thread Vadim Pasternak
Since mlx-platform is not an architectural driver, it is moved out of arch/x86/platform to drivers/platform/x86. Relevant Makefile and Kconfig are updated. Signed-off-by: Vadim Pasternak --- v2->v3: Comments pointed out by Andy: - Remove "driver" prefix from the subject;

[patch v3 1/1] platform/x86: move module mlx-platform from arch/x86 to drivers/platform/x86

2016-10-30 Thread Vadim Pasternak
Since mlx-platform is not an architectural driver, it is moved out of arch/x86/platform to drivers/platform/x86. Relevant Makefile and Kconfig are updated. Signed-off-by: Vadim Pasternak --- v2->v3: Comments pointed out by Andy: - Remove "driver" prefix from the subject; - Change subject

Re: [PATCH v2] iommu/ipmmu-vmsa: Add r8a7796 DT binding

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 07:45:10PM +0900, Magnus Damm wrote: > From: Magnus Damm > > Update the IPMMU DT binding documentation to include the r8a7796 compat > string for R-Car M3-W. > > Signed-off-by: Magnus Damm > Acked-by: Laurent

Re: [PATCH v2] iommu/ipmmu-vmsa: Add r8a7796 DT binding

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 07:45:10PM +0900, Magnus Damm wrote: > From: Magnus Damm > > Update the IPMMU DT binding documentation to include the r8a7796 compat > string for R-Car M3-W. > > Signed-off-by: Magnus Damm > Acked-by: Laurent Pinchart > --- > > Changes since V1: > - Added Acked-by

Re: [PATCH v3 1/4] dt/bindings: Add binding for the DA8xx MUSB driver

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 11:34:04AM +0200, Alexandre Bailon wrote: > From: Petr Kulhavy > > DT binding for the TI DA8xx/OMAP-L1x/AM17xx/AM18xx MUSB driver. > > Signed-off-by: Petr Kulhavy > Signed-off-by: Alexandre Bailon > --- >

Re: [PATCH v3 1/4] dt/bindings: Add binding for the DA8xx MUSB driver

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 11:34:04AM +0200, Alexandre Bailon wrote: > From: Petr Kulhavy > > DT binding for the TI DA8xx/OMAP-L1x/AM17xx/AM18xx MUSB driver. > > Signed-off-by: Petr Kulhavy > Signed-off-by: Alexandre Bailon > --- > .../devicetree/bindings/usb/da8xx-usb.txt | 43 >

Re: [linus:master] BUILD REGRESSION 2a26d99b251b8625d27aed14e97fc10707a3a81f

2016-10-30 Thread Fengguang Wu
Hi Linus, On Sun, Oct 30, 2016 at 01:25:50PM -0700, Linus Torvalds wrote: On Sun, Oct 30, 2016 at 11:03 AM, kbuild test robot wrote: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master 2a26d99b251b8625d27aed14e97fc10707a3a81f Merge

Re: [linus:master] BUILD REGRESSION 2a26d99b251b8625d27aed14e97fc10707a3a81f

2016-10-30 Thread Fengguang Wu
Hi Linus, On Sun, Oct 30, 2016 at 01:25:50PM -0700, Linus Torvalds wrote: On Sun, Oct 30, 2016 at 11:03 AM, kbuild test robot wrote: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master 2a26d99b251b8625d27aed14e97fc10707a3a81f Merge

Re: [PATCH v2 09/10] pwm: imx: doc: Update imx-pwm.txt documentation entry

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 08:33:19AM +0200, Lukasz Majewski wrote: > The imx-pwm.txt documentation update as a preparation for polarity > support. > > Signed-off-by: Bhuvanchandra DV > Signed-off-by: Lukasz Majewski > --- > Changes for v2: > -

Re: [PATCH v2 09/10] pwm: imx: doc: Update imx-pwm.txt documentation entry

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 08:33:19AM +0200, Lukasz Majewski wrote: > The imx-pwm.txt documentation update as a preparation for polarity > support. > > Signed-off-by: Bhuvanchandra DV > Signed-off-by: Lukasz Majewski > --- > Changes for v2: > - New patch > --- >

Re: [PATCH] IBcore/CM: Issue DREQ when receiving REQ/REP for stale QP

2016-10-30 Thread santosh.shilim...@oracle.com
On 10/30/16 2:06 PM, Sagi Grimberg wrote: from "InfiBand Architecture Specifications Volume 1": A QP is said to have a stale connection when only one side has connection information. A stale connection may result if the remote CM had dropped the connection and sent a DREQ but the DREQ was

Re: [PATCH] IBcore/CM: Issue DREQ when receiving REQ/REP for stale QP

2016-10-30 Thread santosh.shilim...@oracle.com
On 10/30/16 2:06 PM, Sagi Grimberg wrote: from "InfiBand Architecture Specifications Volume 1": A QP is said to have a stale connection when only one side has connection information. A stale connection may result if the remote CM had dropped the connection and sent a DREQ but the DREQ was

[PATCH] dt-bindings/gpio: Add Aspeed GPIO bindings header

2016-10-30 Thread Joel Stanley
This provides constants for using GPIOs in the device tree on Aspeed SoCs. Signed-off-by: Joel Stanley --- The Apseed GPIO driver and binding document went upstream in 4.9, but we forgot to send this patch as part of the series. include/dt-bindings/gpio/aspeed-gpio.h | 47

[PATCH] dt-bindings/gpio: Add Aspeed GPIO bindings header

2016-10-30 Thread Joel Stanley
This provides constants for using GPIOs in the device tree on Aspeed SoCs. Signed-off-by: Joel Stanley --- The Apseed GPIO driver and binding document went upstream in 4.9, but we forgot to send this patch as part of the series. include/dt-bindings/gpio/aspeed-gpio.h | 47

Re: [PATCH V2 1/4] Documentation: pv88080: Move binding document

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 10:03:14AM +0900, Eric Jeong wrote: > > From: Eric Jeong > > The change is to move pv88080 binding document > from the regulator directory to mfd binding directory > for PV88080 PMIC MFD support. > > > Signed-off-by: Eric Jeong

Re: [PATCH V2 1/4] Documentation: pv88080: Move binding document

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 10:03:14AM +0900, Eric Jeong wrote: > > From: Eric Jeong > > The change is to move pv88080 binding document > from the regulator directory to mfd binding directory > for PV88080 PMIC MFD support. > > > Signed-off-by: Eric Jeong > > --- > This patch applies against

Re: [PATCH V2] pinctrl: qcom: Add msm8994 pinctrl driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 04:32:28PM -0700, Michael Scott wrote: > Initial pinctrl driver for QCOM msm8994 platforms. > > In order to continue the initial board support for QCOM msm8994/msm8992 > presented in patches from Jeremy McNicoll , let's put > a proper pinctrl driver in

[PATCH] drm/radeon: Fix kernel panic on shutdown

2016-10-30 Thread Larry Finger
Since commit a481daa88fd4 ("drm/radeon: always apply pci shutdown callbacks"), a Dell Latitude D600 laptop has crashed on shutdown. The PCI Identification of the graphics adapter is "VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] RV250/M9 GL [Mobility FireGL 9000/Radeon

Re: [PATCH V2] pinctrl: qcom: Add msm8994 pinctrl driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 04:32:28PM -0700, Michael Scott wrote: > Initial pinctrl driver for QCOM msm8994 platforms. > > In order to continue the initial board support for QCOM msm8994/msm8992 > presented in patches from Jeremy McNicoll , let's put > a proper pinctrl driver in place. > >

[PATCH] drm/radeon: Fix kernel panic on shutdown

2016-10-30 Thread Larry Finger
Since commit a481daa88fd4 ("drm/radeon: always apply pci shutdown callbacks"), a Dell Latitude D600 laptop has crashed on shutdown. The PCI Identification of the graphics adapter is "VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] RV250/M9 GL [Mobility FireGL 9000/Radeon

Re: [PATCH 2/2] backlight: arcxcnn: devicetree bindings for ArticSand devices

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 04:30:01PM -0400, Olimpiu Dejeu wrote: > Resubmition of arcxcnn backliught driver bindings with added register > documentation > > Signed-off-by: Olimpiu Dejeu > > --- > .../bindings/leds/backlight/arcxcnn_bl.txt | 31 >

Re: [PATCH 2/2] backlight: arcxcnn: devicetree bindings for ArticSand devices

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 04:30:01PM -0400, Olimpiu Dejeu wrote: > Resubmition of arcxcnn backliught driver bindings with added register > documentation > > Signed-off-by: Olimpiu Dejeu > > --- > .../bindings/leds/backlight/arcxcnn_bl.txt | 31 > ++ > 1 file

Re: [PATCH 2/2] ARM: bus: da8xx-mstpri: new driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 07:35:55PM +0200, Bartosz Golaszewski wrote: > Create the driver for the da8xx master peripheral priority > configuration and implement support for writing to the three > Master Priority registers on da850 SoCs. > > Signed-off-by: Bartosz Golaszewski

Re: [PATCH 2/2] ARM: bus: da8xx-mstpri: new driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 07:35:55PM +0200, Bartosz Golaszewski wrote: > Create the driver for the da8xx master peripheral priority > configuration and implement support for writing to the three > Master Priority registers on da850 SoCs. > > Signed-off-by: Bartosz Golaszewski > --- >

Re: [PATCH 1/2] ARM: memory: da8xx-ddrctl: new driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 07:35:54PM +0200, Bartosz Golaszewski wrote: > Create a new driver for the da8xx DDR2/mDDR controller and implement > support for writing to the Peripheral Bus Burst Priority Register. > > Signed-off-by: Bartosz Golaszewski > --- >

Re: [PATCH 1/2] ARM: memory: da8xx-ddrctl: new driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 07:35:54PM +0200, Bartosz Golaszewski wrote: > Create a new driver for the da8xx DDR2/mDDR controller and implement > support for writing to the Peripheral Bus Burst Priority Register. > > Signed-off-by: Bartosz Golaszewski > --- >

Re: [PATCH V2 04/10] Documentation: devicetree: mfd: da9062/61 MFD binding

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 05:56:38PM +0100, Steve Twiss wrote: > From: Steve Twiss > > Extend existing DA9062 binding information to include the DA9061 PMIC for > MFD core and regulators. > > Add a da9062-onkey link to the existing onkey binding file. > > Add a

Re: [PATCH V2 04/10] Documentation: devicetree: mfd: da9062/61 MFD binding

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 05:56:38PM +0100, Steve Twiss wrote: > From: Steve Twiss > > Extend existing DA9062 binding information to include the DA9061 PMIC for > MFD core and regulators. > > Add a da9062-onkey link to the existing onkey binding file. > > Add a da9062-thermal link to the new

Re: [PATCH V2 02/10] Documentation: devicetree: watchdog: da9062/61 watchdog timer binding

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 05:56:37PM +0100, Steve Twiss wrote: > From: Steve Twiss > > Add binding information for DA9062 and DA9061 watchdog. > > Example bindings for both devices are added. > > The original binding for DA9062 (only) used to reside inside the >

Re: [PATCH V2 02/10] Documentation: devicetree: watchdog: da9062/61 watchdog timer binding

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 05:56:37PM +0100, Steve Twiss wrote: > From: Steve Twiss > > Add binding information for DA9062 and DA9061 watchdog. > > Example bindings for both devices are added. > > The original binding for DA9062 (only) used to reside inside the >

Re: [PATCH V2 01/10] Documentation: devicetree: input: additions for da9061 onkey driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 05:56:37PM +0100, Steve Twiss wrote: > From: Steve Twiss > > Add binding information for DA9061 onkey. > > This patch updates the compatible string "dlg,da9061-onkey" to support > DA9061, removes the reference to KEY_SLEEP (which the driver

Re: [PATCH V2 01/10] Documentation: devicetree: input: additions for da9061 onkey driver

2016-10-30 Thread Rob Herring
On Wed, Oct 26, 2016 at 05:56:37PM +0100, Steve Twiss wrote: > From: Steve Twiss > > Add binding information for DA9061 onkey. > > This patch updates the compatible string "dlg,da9061-onkey" to support > DA9061, removes the reference to KEY_SLEEP (which the driver no longer > supports) and

Re: [PATCH net] r8152: Fix broken RX checksums.

2016-10-30 Thread David Miller
From: Mark Lord Date: Sun, 30 Oct 2016 22:07:25 -0400 > On 16-10-30 08:57 PM, David Miller wrote: >> From: Mark Lord >> Date: Sun, 30 Oct 2016 19:28:27 -0400 >> >>> The r8152 driver has been broken since (approx) 3.16.xx >>> when support was added for hardware

Re: [PATCH net] r8152: Fix broken RX checksums.

2016-10-30 Thread David Miller
From: Mark Lord Date: Sun, 30 Oct 2016 22:07:25 -0400 > On 16-10-30 08:57 PM, David Miller wrote: >> From: Mark Lord >> Date: Sun, 30 Oct 2016 19:28:27 -0400 >> >>> The r8152 driver has been broken since (approx) 3.16.xx >>> when support was added for hardware RX checksums >>> on newer chip

Re: [PATCH v10 10/19] vfio iommu: Add blocking notifier to notify DMA_UNMAP

2016-10-30 Thread Jike Song
On 10/27/2016 05:29 AM, Kirti Wankhede wrote: > Added blocking notifier to IOMMU TYPE1 driver to notify vendor drivers > about DMA_UNMAP. > Exported two APIs vfio_register_notifier() and vfio_unregister_notifier(). > Vendor driver should register notifer using these APIs. > Vendor driver should

Re: [PATCH v10 10/19] vfio iommu: Add blocking notifier to notify DMA_UNMAP

2016-10-30 Thread Jike Song
On 10/27/2016 05:29 AM, Kirti Wankhede wrote: > Added blocking notifier to IOMMU TYPE1 driver to notify vendor drivers > about DMA_UNMAP. > Exported two APIs vfio_register_notifier() and vfio_unregister_notifier(). > Vendor driver should register notifer using these APIs. > Vendor driver should

Re: [linus:master] BUILD REGRESSION 2a26d99b251b8625d27aed14e97fc10707a3a81f

2016-10-30 Thread Philip Li
On Sun, Oct 30, 2016 at 01:25:50PM -0700, Linus Torvalds wrote: > On Sun, Oct 30, 2016 at 11:03 AM, kbuild test robot > wrote: > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master > > 2a26d99b251b8625d27aed14e97fc10707a3a81f Merge > >

vgacon.c:undefined reference to `screen_info'

2016-10-30 Thread kbuild test robot
Hi Chen, It's probably a bug fix that unveils the link errors. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 2a26d99b251b8625d27aed14e97fc10707a3a81f commit: f69405ce6c0fc9f4a039011007371b31f80b470d openrisc: include: asm: Kbuild: add default "vga.h"

vgacon.c:undefined reference to `screen_info'

2016-10-30 Thread kbuild test robot
Hi Chen, It's probably a bug fix that unveils the link errors. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 2a26d99b251b8625d27aed14e97fc10707a3a81f commit: f69405ce6c0fc9f4a039011007371b31f80b470d openrisc: include: asm: Kbuild: add default "vga.h"

Re: [linus:master] BUILD REGRESSION 2a26d99b251b8625d27aed14e97fc10707a3a81f

2016-10-30 Thread Philip Li
On Sun, Oct 30, 2016 at 01:25:50PM -0700, Linus Torvalds wrote: > On Sun, Oct 30, 2016 at 11:03 AM, kbuild test robot > wrote: > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master > > 2a26d99b251b8625d27aed14e97fc10707a3a81f Merge > >

Re: [PATCH v6 6/8] drivers:input:ads7846(+tsc2046): add new common binding names, pre-calibration and flipping

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 10:44:19AM +0200, H. Nikolaus Schaller wrote: > commit b98abe52fa8e ("Input: add common DT binding for touchscreens") > introduced common DT bindings for touchscreens [1] and a helper function to > parse the DT. > > commit ed7c9870c9bc ("Input: of_touchscreen - add support

Re: [PATCH v6 6/8] drivers:input:ads7846(+tsc2046): add new common binding names, pre-calibration and flipping

2016-10-30 Thread Rob Herring
On Thu, Oct 27, 2016 at 10:44:19AM +0200, H. Nikolaus Schaller wrote: > commit b98abe52fa8e ("Input: add common DT binding for touchscreens") > introduced common DT bindings for touchscreens [1] and a helper function to > parse the DT. > > commit ed7c9870c9bc ("Input: of_touchscreen - add support

Re: [PATCH v4 1/8] drivers:input:tsc2007: add new common binding names, pre-calibration, flipping and rotation

2016-10-30 Thread Rob Herring
On Tue, Oct 18, 2016 at 12:27 PM, H. Nikolaus Schaller wrote: > Hi Rob, > >> Am 18.10.2016 um 18:22 schrieb Rob Herring : >> >> On Mon, Oct 17, 2016 at 8:57 AM, H. Nikolaus Schaller >> wrote: >>> commit b98abe52fa8e ("Input: add common

Re: [PATCH v4 1/8] drivers:input:tsc2007: add new common binding names, pre-calibration, flipping and rotation

2016-10-30 Thread Rob Herring
On Tue, Oct 18, 2016 at 12:27 PM, H. Nikolaus Schaller wrote: > Hi Rob, > >> Am 18.10.2016 um 18:22 schrieb Rob Herring : >> >> On Mon, Oct 17, 2016 at 8:57 AM, H. Nikolaus Schaller >> wrote: >>> commit b98abe52fa8e ("Input: add common DT binding for touchscreens") >>> introduced common DT

Re: [PATCH v7, 0/8] Add MediaTek USB3 DRD Driver

2016-10-30 Thread Chunfeng Yun
On Fri, 2016-10-28 at 12:37 +0200, Matthias Brugger wrote: > Hi Chunfeng, > > On 10/19/2016 04:28 AM, Chunfeng Yun wrote: > > These patches introduce the MediaTek USB3 dual-role controller > > driver. > > > > The driver can be configured as Dual-Role Device (DRD), > > Peripheral Only and Host

Re: [PATCH v7, 0/8] Add MediaTek USB3 DRD Driver

2016-10-30 Thread Chunfeng Yun
On Fri, 2016-10-28 at 12:37 +0200, Matthias Brugger wrote: > Hi Chunfeng, > > On 10/19/2016 04:28 AM, Chunfeng Yun wrote: > > These patches introduce the MediaTek USB3 dual-role controller > > driver. > > > > The driver can be configured as Dual-Role Device (DRD), > > Peripheral Only and Host

Re: Linux 4.9: Reported regressions as of Sunday, 2016-10-30

2016-10-30 Thread Benjamin Herrenschmidt
On Sun, 2016-10-30 at 14:20 +0100, Thorsten Leemhuis wrote: > > Desc: PPC32: fails to boot on my PowerBook G4 Aluminum; bisected to > commit 05fd007e4629 > Repo: 2016-10-20 https://www.mail-archive.com/linux-kernel@vger.kerne > l.org/msg1253391.html > Stat: 2016-10-22

Re: Linux 4.9: Reported regressions as of Sunday, 2016-10-30

2016-10-30 Thread Benjamin Herrenschmidt
On Sun, 2016-10-30 at 14:20 +0100, Thorsten Leemhuis wrote: > > Desc: PPC32: fails to boot on my PowerBook G4 Aluminum; bisected to > commit 05fd007e4629 > Repo: 2016-10-20 https://www.mail-archive.com/linux-kernel@vger.kerne > l.org/msg1253391.html > Stat: 2016-10-22

Re: [PATCH 3/3] NCR5380: Check for chip presence in NCR5380_init()

2016-10-30 Thread Finn Thain
On Sun, 30 Oct 2016, Ondrej Zary wrote: > Read back MODE_REG after writing it in NCR5380_init() to check if the > chip is really there. > > This prevents hang when incorrect I/O address was specified by user. Do you know whereabouts in the driver the hang happens? Maybe there is a robustness

Re: [PATCH 3/3] NCR5380: Check for chip presence in NCR5380_init()

2016-10-30 Thread Finn Thain
On Sun, 30 Oct 2016, Ondrej Zary wrote: > Read back MODE_REG after writing it in NCR5380_init() to check if the > chip is really there. > > This prevents hang when incorrect I/O address was specified by user. Do you know whereabouts in the driver the hang happens? Maybe there is a robustness

Re: [LKP] [lkp] [f2fs] ec795418c4: fsmark.files_per_sec -36.3% regression

2016-10-30 Thread Huang, Ying
Hi, Kim, Jaegeuk Kim writes: > On Tue, Sep 27, 2016 at 08:50:02AM +0800, Huang, Ying wrote: >> Jaegeuk Kim writes: >> >> > On Mon, Sep 26, 2016 at 02:26:06PM +0800, Huang, Ying wrote: >> >> Hi, Jaegeuk, >> >> >> >> "Huang, Ying"

Re: [LKP] [lkp] [f2fs] ec795418c4: fsmark.files_per_sec -36.3% regression

2016-10-30 Thread Huang, Ying
Hi, Kim, Jaegeuk Kim writes: > On Tue, Sep 27, 2016 at 08:50:02AM +0800, Huang, Ying wrote: >> Jaegeuk Kim writes: >> >> > On Mon, Sep 26, 2016 at 02:26:06PM +0800, Huang, Ying wrote: >> >> Hi, Jaegeuk, >> >> >> >> "Huang, Ying" writes: >> >> >> >> > Jaegeuk Kim writes: >> >> > >> >> >>

Re: [PATCH 3/3] NCR5380: Check for chip presence in NCR5380_init()

2016-10-30 Thread Finn Thain
On Sun, 30 Oct 2016, Ondrej Zary wrote: > Read back MODE_REG after writing it in NCR5380_init() to check if the > chip is really there. > > This prevents hang when incorrect I/O address was specified by user. > > Signed-off-by: Ondrej Zary > --- >

Re: [PATCH 3/3] NCR5380: Check for chip presence in NCR5380_init()

2016-10-30 Thread Finn Thain
On Sun, 30 Oct 2016, Ondrej Zary wrote: > Read back MODE_REG after writing it in NCR5380_init() to check if the > chip is really there. > > This prevents hang when incorrect I/O address was specified by user. > > Signed-off-by: Ondrej Zary > --- > drivers/scsi/NCR5380.c |5 + > 1

Re: [PATCH 2/3] g_NCR5380: Test the IRQ before accepting it

2016-10-30 Thread Finn Thain
On Sun, 30 Oct 2016, Ondrej Zary wrote: > Trigger an IRQ first with a test IRQ handler to find out if it really > works. Disable the IRQ if not. > > This prevents hang when incorrect IRQ was specified by user. > > Signed-off-by: Ondrej Zary > --- >

Re: [PATCH 2/3] g_NCR5380: Test the IRQ before accepting it

2016-10-30 Thread Finn Thain
On Sun, 30 Oct 2016, Ondrej Zary wrote: > Trigger an IRQ first with a test IRQ handler to find out if it really > works. Disable the IRQ if not. > > This prevents hang when incorrect IRQ was specified by user. > > Signed-off-by: Ondrej Zary > --- > drivers/scsi/g_NCR5380.c | 32

Re: [PATCH] iio: si7020: Add devicetree support and trivial bindings

2016-10-30 Thread Rob Herring
On Tue, Oct 25, 2016 at 09:20:10PM +0200, Paul Kocialkowski wrote: > This adds devicetree support for the si7020 iio driver. Since it works > well without requiring any additional property, its compatible string is > added to the trivial i2c devices bindings list. > > Signed-off-by: Paul

Re: [PATCH] iio: si7020: Add devicetree support and trivial bindings

2016-10-30 Thread Rob Herring
On Tue, Oct 25, 2016 at 09:20:10PM +0200, Paul Kocialkowski wrote: > This adds devicetree support for the si7020 iio driver. Since it works > well without requiring any additional property, its compatible string is > added to the trivial i2c devices bindings list. > > Signed-off-by: Paul

Re: [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation

2016-10-30 Thread Rob Herring
On Tue, Oct 25, 2016 at 07:38:11PM +0200, H. Nikolaus Schaller wrote: > Signed-off-by: H. Nikolaus Schaller > --- > Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked-by: Rob Herring

Re: [PATCH resent v3 3/3] ASoC: omap-abe-twl6040: fix typo in bindings documentation

2016-10-30 Thread Rob Herring
On Tue, Oct 25, 2016 at 07:38:11PM +0200, H. Nikolaus Schaller wrote: > Signed-off-by: H. Nikolaus Schaller > --- > Documentation/devicetree/bindings/sound/omap-abe-twl6040.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked-by: Rob Herring

  1   2   3   4   5   6   7   8   >