[PATCH] mfd: ssbi: removing unnecessary strcmp

2015-11-15 Thread Saurabh Sengar
passing the actual enum value for controller type from device tree, instead of passing the string and converting it to enum Signed-off-by: Saurabh Sengar --- Documentation/devicetree/bindings/arm/msm/ssbi.txt | 6 +++--- arch/arm/boot/dts/qcom-apq8064.dtsi

[PATCH V3] acpi: add support for extended IRQ to PCI link

2015-11-15 Thread Sinan Kaya
The ACPI compiler uses the extended format when used interrupt numbers are greater than 256. The PCI link code currently only supports simple interrupt format. The IRQ numbers are represented using 32 bits when extended IRQ syntax. This patch changes the interrupt number type to 32 bits and places

Re: [PATCH V3] acpi: add support for extended IRQ to PCI link

2015-11-15 Thread Andy Shevchenko
On Sun, Nov 15, 2015 at 10:00 PM, Sinan Kaya wrote: > The ACPI compiler uses the extended format when used > interrupt numbers are greater than 256. The PCI link code > currently only supports simple interrupt format. The IRQ > numbers are represented using 32 bits when

Re: [PATCH V4 2/4] dma: add Qualcomm Technologies HIDMA management driver

2015-11-15 Thread Sinan Kaya
On 11/12/2015 4:53 AM, Andy Shevchenko wrote: > On Thu, Nov 12, 2015 at 8:41 AM, Sinan Kaya wrote: >> The Qualcomm Technologies HIDMA device has been designed >> to support virtualization technology. The driver has been >> divided into two to follow the hardware design. >>

[PATCH V5 2/3] dma: add Qualcomm Technologies HIDMA management driver

2015-11-15 Thread Sinan Kaya
The Qualcomm Technologies HIDMA device has been designed to support virtualization technology. The driver has been divided into two to follow the hardware design. 1. HIDMA Management driver 2. HIDMA Channel driver Each HIDMA HW consists of multiple channels. These channels share some set of

[PATCH V5 3/3] dma: add Qualcomm Technologies HIDMA channel driver

2015-11-15 Thread Sinan Kaya
This patch adds support for hidma engine. The driver consists of two logical blocks. The DMA engine interface and the low-level interface. The hardware only supports memcpy/memset and this driver only support memcpy interface. HW and driver doesn't support slave interface. Signed-off-by: Sinan

[PATCH V5 1/3] dma: qcom_bam_dma: move to qcom directory

2015-11-15 Thread Sinan Kaya
Creating a QCOM directory for all QCOM DMA source files. Signed-off-by: Sinan Kaya --- drivers/dma/Kconfig| 11 ++- drivers/dma/Makefile | 2 +- drivers/dma/qcom/Kconfig | 9 +

[PATCH V5 0/3] add Qualcomm Technologies HIDMA driver

2015-11-15 Thread Sinan Kaya
The Qualcomm Technologies HIDMA device has been designed to support virtualization technology. The driver has been divided into two to follow the hardware design. 1. HIDMA Management driver 2. HIDMA Channel driver Each HIDMA HW consists of multiple channels. These channels share some set of

[PATCH V5 0/2] add self test code for DMA engine drivers

2015-11-15 Thread Sinan Kaya
Changes from V4 (https://lkml.org/lkml/2015/11/12/18) * Seperate the series from HIDMA driver Sinan Kaya (2): dmaselftest: add memcpy selftest support functions dma: qcom_hidma: add self test hooks drivers/dma/dmaengine.h | 2 + drivers/dma/dmaselftest.c | 638

[PATCH V5 1/2] dmaselftest: add memcpy selftest support functions

2015-11-15 Thread Sinan Kaya
This patch adds supporting utility functions for selftest. The intention is to share the self test code between different drivers. Supported test cases include: 1. dma_map_single 2. streaming DMA 3. coherent DMA 4. scatter-gather DMA Signed-off-by: Sinan Kaya ---