Re: [RESEND PATCH v2] input: pxrc: new driver for PhoenixRC Flight Controller Adapter

2018-01-12 Thread Dmitry Torokhov
On Thu, Jan 11, 2018 at 01:07:42PM +0100, Marcus Folkesson wrote: > Hi Dmitry, > > Thank you for your review! > > On Wed, Jan 10, 2018 at 04:37:14PM -0800, Dmitry Torokhov wrote: > > Hi Marcus, > > > > On Wed, Jan 10, 2018 at 02:11:39PM +0100, Marcus Folkesson wrote: > > > This driver let you pl

Re: [PATCH v8 7/7] arm64: kvm: handle SError Interrupt by categorization

2018-01-12 Thread James Morse
Hi gengdongjiu, On 16/12/17 04:47, gengdongjiu wrote: > [...] >> >>> + case ESR_ELx_AET_UER: /* The error has not been propagated */ >>> + /* >>> + * Userspace only handle the guest SError Interrupt(SEI) if >>> the >>> + * error has not been propagated

Re: [PATCH v8 7/7] arm64: kvm: handle SError Interrupt by categorization

2018-01-12 Thread James Morse
Hi gengdongjiu, On 15/12/17 03:30, gengdongjiu wrote: > On 2017/12/7 14:37, gengdongjiu wrote: >>> We need to tackle (1) and (3) separately. For (3) we need some API that lets >>> Qemu _trigger_ an SError in the guest, with a specified ESR. But, we don't >>> have >>> a way of migrating pending SE

Re: [PATCH RFC 6/7] serial: Add device tree bindings for GENI based UART Controller

2018-01-12 Thread Karthik Ramasubramanian
On 1/11/2018 8:12 AM, Rob Herring wrote: On Tue, Jan 9, 2018 at 12:36 PM, Karthik Ramasubramanian wrote: On 1/2/2018 8:55 AM, Rob Herring wrote: On Wed, Dec 27, 2017 at 09:27:25AM -0700, Karthikeyan Ramasubramanian wrote: Add device tree binding support for GENI based UART Controller in

Re: [PATCH RFC 4/7] i2c: Add device tree bindings for GENI I2C Controller

2018-01-12 Thread Karthik Ramasubramanian
On 1/11/2018 8:19 AM, Rob Herring wrote: On Mon, Jan 8, 2018 at 6:33 PM, Karthik Ramasubramanian wrote: On 1/2/2018 8:51 AM, Rob Herring wrote: On Wed, Dec 27, 2017 at 09:27:23AM -0700, Karthikeyan Ramasubramanian wrote: Add device tree binding support for I2C Controller in GENI based Q

Re: [PATCH v13 0/7] cgroup-aware OOM killer

2018-01-12 Thread David Rientjes
On Thu, 11 Jan 2018, Roman Gushchin wrote: > Summarizing all this, following the hierarchy is good when it reflects > the "importance" of cgroup's memory for a user, and bad otherwise. > In generic case with unified hierarchy it's not true, so following > the hierarchy unconditionally is bad. > >

[PATCH v2 2/7] dt-bindings: soc: qcom: Add device tree binding for GENI SE

2018-01-12 Thread Karthikeyan Ramasubramanian
Add device tree binding support for the QCOM GENI SE driver. Signed-off-by: Karthikeyan Ramasubramanian --- .../devicetree/bindings/soc/qcom/qcom,geni-se.txt | 34 ++ 1 file changed, 34 insertions(+) create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,geni-se

[PATCH v2 1/7] qcom-geni-se: Add QCOM GENI SE Driver summary

2018-01-12 Thread Karthikeyan Ramasubramanian
Generic Interface (GENI) firmware based Qualcomm Universal Peripheral (QUP) Wrapper is a programmable module that is composed of multiple Serial Engines (SE) and can support various Serial Interfaces like UART, SPI, I2C, I3C, etc. This document provides a high level overview of the GENI based QUP W

[PATCH v2 0/7] Introduce GENI SE Controller Driver

2018-01-12 Thread Karthikeyan Ramasubramanian
Generic Interface (GENI) firmware based Qualcomm Universal Peripheral (QUP) Wrapper is a next generation programmable module for supporting a wide range of serial interfaces like UART, SPI, I2C, I3C, etc. A single QUP module can provide upto 8 Serial Interfaces using its internal Serial Engines (SE

[PATCH v2 5/7] i2c: i2c-qcom-geni: Add bus driver for the Qualcomm GENI I2C controller

2018-01-12 Thread Karthikeyan Ramasubramanian
This bus driver supports the GENI based i2c hardware controller in the Qualcomm SOCs. The Qualcomm Generic Interface (GENI) is a programmable module supporting a wide range of serial interfaces including I2C. The driver supports FIFO mode and DMA mode of transfer and switches modes dynamically depe

[PATCH v2 6/7] dt-bindings: serial: Add bindings for GENI based UART Controller

2018-01-12 Thread Karthikeyan Ramasubramanian
Add device tree binding support for GENI based UART Controller in the QUP Wrapper. Signed-off-by: Karthikeyan Ramasubramanian Signed-off-by: Girish Mahadevan --- .../devicetree/bindings/serial/qcom,geni-uart.txt | 29 ++ .../devicetree/bindings/soc/qcom/qcom,geni-se.txt |

[PATCH v2 3/7] soc: qcom: Add GENI based QUP Wrapper driver

2018-01-12 Thread Karthikeyan Ramasubramanian
This driver manages the Generic Interface (GENI) firmware based Qualcomm Universal Peripheral (QUP) Wrapper. GENI based QUP is the next generation programmable module composed of multiple Serial Engines (SE) and supports a wide range of serial interfaces like UART, SPI, I2C, I3C, etc. This driver a

[PATCH v2 4/7] dt-bindings: i2c: Add device tree bindings for GENI I2C Controller

2018-01-12 Thread Karthikeyan Ramasubramanian
Add device tree binding support for I2C Controller in GENI based QUP Wrapper. Signed-off-by: Sagar Dharia Signed-off-by: Karthikeyan Ramasubramanian --- .../devicetree/bindings/i2c/i2c-qcom-geni.txt | 35 ++ .../devicetree/bindings/soc/qcom/qcom,geni-se.txt | 19 ++

[PATCH v2 7/7] tty: serial: msm_geni_serial: Add serial driver support for GENI based QUP

2018-01-12 Thread Karthikeyan Ramasubramanian
This driver supports GENI based UART Controller in the Qualcomm SOCs. The Qualcomm Generic Interface (GENI) is a programmable module supporting a wide range of serial interfaces including UART. This driver support console operations using FIFO mode of transfer. Signed-off-by: Girish Mahadevan Sig