Re: [PATCH 00/10] ARM: dts: apq8064 dt patches.

2015-04-27 Thread Kumar Gala
> On Apr 9, 2015, at 3:21 AM, Srinivas Kandagatla > wrote: > > Hi Kumar, > > Now that the rpm redesign dependency is resolved, If its not too late could > you > queue these dt patches for v4.1 or v4.1-rc1. > > I tested these patches on APQ8064 based IFC6410 board with SATA/USB/HDMI. > > I

Re: [PATCH v2 0/7] ARM: dts: qcom: Add more device coniguration nodes

2015-04-27 Thread Kumar Gala
> On Apr 20, 2015, at 2:45 AM, Ivan T. Ivanov wrote: > > Recent Qualcomm PMIC's devices are accessed over SPMI bus. > Every PMIC has several "sub-function" devices inside. > > First three patches are adding device nodes to PM8841, PM8941 and PMA8084 > PMIC's. > Next two are introducing PM8916

Re: [PATCH 1/2] Documentation: devicetree: root node serial-number property documentation

2015-04-16 Thread Kumar Gala
> On Apr 16, 2015, at 1:14 PM, Paul Kocialkowski wrote: > > Le jeudi 16 avril 2015 à 10:53 -0500, Kumar Gala a écrit : >>> On Apr 16, 2015, at 10:45 AM, Paul Kocialkowski wrote: >>> >>> Le jeudi 16 avril 2015 à 10:23 -0500, Kumar Gala a écrit : >>&g

Re: [PATCH 1/2] Documentation: devicetree: root node serial-number property documentation

2015-04-16 Thread Kumar Gala
> On Apr 16, 2015, at 10:45 AM, Paul Kocialkowski wrote: > > Le jeudi 16 avril 2015 à 10:23 -0500, Kumar Gala a écrit : >>> On Apr 16, 2015, at 9:36 AM, Rob Herring wrote: >>> >>> On Thu, Apr 16, 2015 at 4:10 AM, Paul Kocialkowski wrote: >>>&

Re: [PATCH 1/2] Documentation: devicetree: root node serial-number property documentation

2015-04-16 Thread Kumar Gala
> On Apr 16, 2015, at 9:36 AM, Rob Herring wrote: > > On Thu, Apr 16, 2015 at 4:10 AM, Paul Kocialkowski wrote: >> Le jeudi 16 avril 2015 à 09:56 +0200, Stefan Agner a écrit : >>> On 2015-03-28 18:39, Paul Kocialkowski wrote: Signed-off-by: Paul Kocialkowski >>> >>> I think this is a wor

[PATCH v3 3/3] arm64: qcom: add cpu operations

2015-04-14 Thread Kumar Gala
Signed-off-by: Kumar Gala --- Documentation/devicetree/bindings/arm/cpus.txt | 2 + Documentation/devicetree/bindings/arm/msm/acc.txt | 19 ++ arch/arm64/kernel/Makefile | 3 + arch/arm64/kernel/cpu_ops.c| 4 + .../kernel/qcom-special

[PATCH v3 0/3] Add smp booting support for Qualcomm ARMv8 SoCs

2015-04-14 Thread Kumar Gala
This patch set adds support for SMP boot on the MSM8x16 family of Qualcomm SoCs. To support SMP on the MSM8x16 SoCs we need to add ARMv8/64-bit SCM interfaces to setup the boot/release addresses for the secondary CPUs. In addition we need a uniquie set of cpu ops. I'm aware the desired methods f

Re: [RFC PATCH 0/5] Add smp booting support for Qualcomm ARMv8 SoCs

2015-04-14 Thread Kumar Gala
> On Apr 14, 2015, at 11:36 AM, Mark Rutland wrote: > > On Fri, Apr 10, 2015 at 11:05:29AM +0100, Catalin Marinas wrote: >> On Thu, Apr 09, 2015 at 12:37:06PM -0500, Kumar Gala wrote: >>> This patch set adds support for SMP boot on the MSM8x16 family of Qualcomm >&

Re: [PATCH v6 1/2] DT: hwspinlock: Add binding documentation for Qualcomm hwmutex

2015-04-14 Thread Kumar Gala
> On Feb 27, 2015, at 4:30 PM, Bjorn Andersson > wrote: > > Add binding documentation for the Qualcomm Hardware Mutex. > > Signed-off-by: Bjorn Andersson > — > Acked-by: Kumar Gala - k -- Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc.

Re: [RFC PATCH 0/5] Add smp booting support for Qualcomm ARMv8 SoCs

2015-04-14 Thread Kumar Gala
> On Apr 14, 2015, at 9:21 AM, Kumar Gala wrote: > >>>> >>>> So please come up with proper technical arguments rather than the kernel >>>> should take whatever SoC vendors dreamt of. >>> >>> There is no technical argument to be

Re: [RFC PATCH 0/5] Add smp booting support for Qualcomm ARMv8 SoCs

2015-04-14 Thread Kumar Gala
> On Apr 13, 2015, at 4:41 AM, Catalin Marinas wrote: > > On Fri, Apr 10, 2015 at 02:06:33PM -0500, Kumar Gala wrote: >> On Apr 10, 2015, at 11:10 AM, Catalin Marinas >> wrote: >>> On Fri, Apr 10, 2015 at 10:24:46AM -0500, Kumar Gala wrote: >>>> On

[RFC PATCH v2 4/4] arm64: qcom: add cpu operations

2015-04-10 Thread Kumar Gala
Signed-off-by: Kumar Gala --- Documentation/devicetree/bindings/arm/cpus.txt | 2 + Documentation/devicetree/bindings/arm/msm/acc.txt | 19 ++ arch/arm64/kernel/Makefile | 3 + arch/arm64/kernel/cpu_ops.c| 4 + .../kernel/qcom-special

[RFC PATCH 0/5] Add smp booting support for Qualcomm ARMv8 SoCs

2015-04-10 Thread Kumar Gala
This patch set adds support for SMP boot on the MSM8x16 family of Qualcomm SoCs. To support SMP on the MSM8x16 SoCs we need to add ARMv8/64-bit SCM interfaces to setup the boot/release addresses for the secondary CPUs. In addition we need a uniquie set of cpu ops. I'm aware the desired methods f

[RFC PATCH v3 3/4] arm64: smp: move the pen to a header file

2015-04-10 Thread Kumar Gala
From: Abhimanyu Kapur Move the secondary_pen_release variable and the secondary_holding_pen entry function to asm/smp_plat.h so that the other cpu ops implementations can share them. Signed-off-by: Abhimanyu Kapur Signed-off-by: Kumar Gala --- arch/arm64/include/asm/smp_plat.h | 2 ++ arch

[RFC PATCH 3/5] arm64: introduce CPU_OF_TABLES for cpu ops selection

2015-04-09 Thread Kumar Gala
From: Abhimanyu Kapur Add support to arm64 to provide a dt-based method to allow soc-vendors to supply cpu_ops. Also move psci and smp_spin_table ops to use CPU_OF_TABLES. Signed-off-by: Abhimanyu Kapur Signed-off-by: Kumar Gala --- arch/arm64/include/asm/cpu_ops.h | 5 + arch/arm64

[RFC PATCH 5/5] arm64: qcom: add cpu operations

2015-04-09 Thread Kumar Gala
Signed-off-by: Kumar Gala --- Documentation/devicetree/bindings/arm/cpus.txt| 2 + Documentation/devicetree/bindings/arm/msm/acc.txt | 19 ++ drivers/soc/qcom/Makefile | 1 + drivers/soc/qcom/cpu_ops.c| 343 ++ 4 files

[RFC PATCH 0/5] Add smp booting support for Qualcomm ARMv8 SoCs

2015-04-09 Thread Kumar Gala
This patch set adds support for SMP boot on the MSM8x16 family of Qualcomm SoCs. To support SMP on the MSM8x16 SoCs we need to add ARMv8/64-bit SCM interfaces to setup the boot/release addresses for the secondary CPUs. In addition we need a uniquie set of cpu ops. I'm aware the desired methods f

Re: [PATCH] arm64: dts: Add Qualcomm APQ8016 SBC evaluation board dts

2015-04-03 Thread Kumar Gala
On Apr 3, 2015, at 1:18 PM, Olof Johansson wrote: > On Fri, Apr 03, 2015 at 11:14:01AM -0700, Olof Johansson wrote: >> On Fri, Apr 03, 2015 at 11:12:17AM -0700, Olof Johansson wrote: >>> On Mon, Mar 23, 2015 at 05:51:05PM -0500, Kumar Gala wrote: >>>> Add i

Re: [PATCH 5/7] arm64: dts: qcom: Add 8x16 chipset SPMI PMIC's nodes

2015-04-01 Thread Kumar Gala
On Apr 1, 2015, at 10:05 AM, Ivan T. Ivanov wrote: > PM9816 has 2 SPMI devices per physical package. Add PMIC configuration > nodes including sub-function device nodes and include them in boards, > which are using 8x16 based chipset. > > PM9816 sub-function devices include: > > * GPIO block, w

Re: [PATCH 2/7] ARM: dts: qcom: Add PM8941 functions device nodes

2015-04-01 Thread Kumar Gala
On Apr 1, 2015, at 10:05 AM, Ivan T. Ivanov wrote: > Add configuration nodes for following devices: > > * GPIO block, with 36 pins > * MPP block, with 8 pins > * Current ADC (IADC) > * Volatage ADC (VADC), with multiple inputs > * Thermal sensor device, which is using on chip VADC > channel re

Re: [PATCH 4/7] arm64: dts: qcom: Add SPMI PMIC Arbiter node for MSM8916

2015-04-01 Thread Kumar Gala
On Apr 1, 2015, at 10:05 AM, Ivan T. Ivanov wrote: > Add SPMI PMIC Arbiter configuration nodes for MSM8916. > > Signed-off-by: Ivan T. Ivanov > --- > arch/arm64/boot/dts/qcom/msm8916.dtsi | 18 ++ > 1 file changed, 18 insertions(+) > > diff --git a/arch/arm64/boot/dts/qcom/msm8

Re: [PATCH 1/7] ARM: dts: qcom: Add PM8841 functions device nodes

2015-04-01 Thread Kumar Gala
On Apr 1, 2015, at 10:05 AM, Ivan T. Ivanov wrote: > Add configuration nodes for multi purpose pins and > thermal sensor devices. Thermal sensor will report > PMIC die temperature. > > Signed-off-by: Ivan T. Ivanov > --- > arch/arm/boot/dts/qcom-pm8841.dtsi | 14 ++ > 1 file changed

Re: [PATCH v18 01/11] ARM: qcom: Add Subsystem Power Manager (SPM) driver

2015-03-27 Thread Kumar Gala
> --- > drivers/soc/qcom/Kconfig | 7 + > drivers/soc/qcom/Makefile | 1 + > drivers/soc/qcom/spm.c| 385 ++++++ > 3 files changed, 393 insertions(+) > create mode 100644 drivers/soc/qcom/spm.c Acked-by: Kumar Gala - k -- Qualco

Re: [PATCH v18 04/11] ARM: cpuidle: Add cpuidle support for QCOM cpus

2015-03-27 Thread Kumar Gala
+++ > 1 file changed, 7 insertions(+) Acked-by: Kumar Gala - k -- Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project -- To unsubscribe from this list: send the line "unsubscribe devi

Re: [PATCH v17 01/10] ARM: qcom: Add Subsystem Power Manager (SPM) driver

2015-03-23 Thread Kumar Gala
On Mar 23, 2015, at 4:15 PM, Lina Iyer wrote: > On Mon, Mar 23 2015 at 16:06 -0600, Kumar Gala wrote: >> >> On Mar 20, 2015, at 1:21 PM, Lina Iyer wrote: >> >>> >>> Based on work by: Mahesh Sivasubramanian , >>> Ai Li , Praveen Chida

[PATCH] arm64: dts: Add Qualcomm APQ8016 SBC evaluation board dts

2015-03-23 Thread Kumar Gala
Add initial device tree support for Qualcomm APQ8016 SBC Evaluation board. This board is also referred to as the DragonBoard 410c. Signed-off-by: Kumar Gala --- arch/arm64/boot/dts/qcom/Makefile | 2 +- arch/arm64/boot/dts/qcom/apq8016-sbc.dts | 22 + arch/arm64

Re: [PATCH v17 01/10] ARM: qcom: Add Subsystem Power Manager (SPM) driver

2015-03-23 Thread Kumar Gala
On Mar 20, 2015, at 1:21 PM, Lina Iyer wrote: > > Based on work by: Mahesh Sivasubramanian , > Ai Li , Praveen Chidambaram > Original tree available at - > git://codeaurora.org/quic/la/kernel/msm-3.10.git > > Cc: Stephen Boyd > Cc: Arnd Bergmann > Cc: Kevin Hilman > Cc: Daniel Lezcano > S

Re: [PATCH v17 04/10] ARM: dts: qcom: Add power-controller device node for 8074 Krait CPUs

2015-03-23 Thread Kumar Gala
On Mar 20, 2015, at 1:21 PM, Lina Iyer wrote: > Each Krait CPU in the QCOM 8074/8974 SoC has an SAW power controller to > regulate the power to the cpu and aide the core in entering idle states. > Reference the SAW instance and associate the instance with the CPU core. > >

Re: [PATCH v5 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-17 Thread Kumar Gala
On Mar 17, 2015, at 4:24 AM, Stanimir Varbanov wrote: > On 03/13/2015 06:06 PM, Kumar Gala wrote: >> Add initial device tree support for Qualcomm MSM8916 SoC and MTP8916 >> evaluation board. At the current time we only boot up a single processor. >> >> Signed-off-b

Re: [PATCH v2 4/5] PCI: designware: Add disable IO support

2015-03-16 Thread Kumar Gala
On Mar 16, 2015, at 9:20 AM, Gabriel FERNANDEZ wrote: > ST sti SoCs PCIe IPs are built around DesignWare IP Core. > But in these SoCs PCIe IP doesn't support IO. > > This patch adds the possibility to disable it through > a DT property, by creating an empty IO window and by > removing PCI_COMMA

Re: [PATCH v4 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-13 Thread Kumar Gala
On Mar 13, 2015, at 11:25 AM, Mark Rutland wrote: > On Fri, Mar 13, 2015 at 03:50:42PM +0000, Kumar Gala wrote: >> >> On Mar 13, 2015, at 5:52 AM, Mark Rutland wrote: >> >>>> +/ { >>>> + chosen { >>>> + stdout-path = &bl

[PATCH v5 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-13 Thread Kumar Gala
Add initial device tree support for Qualcomm MSM8916 SoC and MTP8916 evaluation board. At the current time we only boot up a single processor. Signed-off-by: Kumar Gala --- v5: * killed use of skeleton, moved to addr/size cells both being 2 * Added serial alias in prep of being able to spec

Re: [PATCH v4 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-13 Thread Kumar Gala
On Mar 13, 2015, at 5:52 AM, Mark Rutland wrote: >> +/ { >> +chosen { >> +stdout-path = &blsp1_uart2; >> +}; > > It would be good if we had the configuration too (see > Documentation/devicetree/bindings/chosen.txt), as that avoids any > reliance on kernel defaults. > > You

Re: [PATCH v3 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-12 Thread Kumar Gala
On Mar 12, 2015, at 1:25 PM, Mark Rutland wrote: + cpus { + #address-cells = <1>; + #size-cells = <0>; + + CPU0: cpu@0 { + device_type = "cpu"; + compatible = "arm,cortex-a53", "arm,armv8"; +

[PATCH v4 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-12 Thread Kumar Gala
Add initial device tree support for Qualcomm MSM8916 SoC and MTP8916 evaluation board. At the current time we only boot up a single processor. Signed-off-by: Kumar Gala --- v4: * Added chosen node so we dont need to spec everything for earlycon * fixed up timer node to armv8, dropped clock

Re: [PATCH v3 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-12 Thread Kumar Gala
On Mar 12, 2015, at 12:05 PM, Mark Rutland wrote: > Hi Kumar, > >> +/ { >> +model = "Qualcomm Technologies, Inc. MSM 8916 MTP"; >> +compatible = "qcom,msm8916-mtp", "qcom,msm8916-mtp-smb1360", >> +"qcom,msm8916", "qcom,mtp"; >> +}; > > No /chosen/stdout-path? Nope

[PATCH v3 4/4] arm64: dts: Add Qualcomm MSM8916 & MTP8916 ids

2015-03-11 Thread Kumar Gala
Add qcom,msm-id and qcom,board-id to allow bootloader to identify which device tree to boot on the MTP8916 boards. Signed-off-by: Kumar Gala --- arch/arm64/boot/dts/qcom/msm8916-mtp.dts | 3 +++ arch/arm64/boot/dts/qcom/msm8916.dtsi| 5 + 2 files changed, 8 insertions(+) diff --git a

[PATCH v3 2/4] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-11 Thread Kumar Gala
Add initial device tree support for Qualcomm MSM8916 SoC and MTP8916 evaluation board. At the current time we only boot up a single processor. Signed-off-by: Kumar Gala --- v3: * Removed qcom,msm-id and qcom,board-id * Added top level compat for "qcom,msm8916-mtp-smb1360" v2: *

[PATCH v3 3/4] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-11 Thread Kumar Gala
The top level qcom,msm-id and qcom,board-id are utilized by bootloaders on Qualcomm MSM platforms to determine which device tree should be utilized and passed to the kernel. Cc: Signed-off-by: Kumar Gala --- Documentation/devicetree/bindings/arm/msm/ids.txt | 65

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-11 Thread Kumar Gala
On Mar 11, 2015, at 3:20 PM, Arnd Bergmann wrote: > On Wednesday 11 March 2015 08:33:04 Bjorn Andersson wrote: >> >> But are these values actually used by the boot loader? >> >> As far as I could see in 8974 the dtbTool provided by Qualcomm >> extracts the values from the list of dtbs and use

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-11 Thread Kumar Gala
On Mar 11, 2015, at 10:33 AM, Bjorn Andersson wrote: > On Tue, Mar 10, 2015 at 12:57 PM, Kumar Gala wrote: >> >> On Mar 10, 2015, at 2:52 PM, Arnd Bergmann wrote: >> >>> On Tuesday 10 March 2015 13:10:08 Kumar Gala wrote: >>>>>>>>

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-10 Thread Kumar Gala
On Mar 10, 2015, at 2:52 PM, Arnd Bergmann wrote: > On Tuesday 10 March 2015 13:10:08 Kumar Gala wrote: >>>>>>>>>>> The top level qcom,msm-id and qcom,board-id are utilized by >>>>>>>>>>> bootloaders >>&g

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-10 Thread Kumar Gala
>>>>>>>>> The top level qcom,msm-id and qcom,board-id are utilized by >>>>>>>>> bootloaders >>>>>>>>>> on Qualcomm MSM platforms to determine which device tree should be >>>>>>&g

Re: [RFC PATCH v15 02/11] ARM: qcom: Add Subsystem Power Manager (SPM) driver

2015-03-10 Thread Kumar Gala
On Mar 9, 2015, at 10:16 AM, Lina Iyer wrote: > SPM is a hardware block that controls the peripheral logic surrounding > the application cores (cpu/l$). When the core executes WFI instruction, > the SPM takes over the putting the core in low power state as > configured. The wake up for the SPM i

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-10 Thread Kumar Gala
On Mar 9, 2015, at 7:11 AM, Arnd Bergmann wrote: > On Friday 06 March 2015 14:37:52 Kumar Gala wrote: >> On Mar 6, 2015, at 1:15 PM, Olof Johansson wrote: >> >>> On Fri, Mar 6, 2015 at 8:08 AM, Kumar Gala wrote: >>>> >>>> On Mar 5, 2015, at 7:

Re: [Patch V7 02/10] ASoC: qcom: Document LPASS CPU bindings

2015-03-06 Thread Kumar Gala
On Mar 6, 2015, at 4:03 PM, Kenneth Westfield wrote: > On Fri, Mar 06, 2015 at 10:07:01AM -0600, Kumar Gala wrote: >> On Mar 5, 2015, at 7:51 PM, Kenneth Westfield >> wrote: >>> On Thu, Mar 05, 2015 at 12:52:30PM -0600, Kumar Gala wrote: >>>> On Mar 3,

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-06 Thread Kumar Gala
On Mar 6, 2015, at 1:15 PM, Olof Johansson wrote: > On Fri, Mar 6, 2015 at 8:08 AM, Kumar Gala wrote: >> >> On Mar 5, 2015, at 7:59 PM, Olof Johansson wrote: >> >>> On Thu, Mar 5, 2015 at 12:23 PM, Kumar Gala wrote: >>>> >>&g

Re: [Patch V7 02/10] ASoC: qcom: Document LPASS CPU bindings

2015-03-06 Thread Kumar Gala
On Mar 5, 2015, at 7:51 PM, Kenneth Westfield wrote: > On Thu, Mar 05, 2015 at 12:52:30PM -0600, Kumar Gala wrote: >> >> On Mar 3, 2015, at 6:21 PM, Kenneth Westfield >> wrote: >> >>> +++ b/Documentation/devicetree/bindings/sound/qcom,lpass-cpu.txt

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-06 Thread Kumar Gala
On Mar 5, 2015, at 7:59 PM, Olof Johansson wrote: > On Thu, Mar 5, 2015 at 12:23 PM, Kumar Gala wrote: >> >> On Mar 5, 2015, at 1:42 PM, Kevin Hilman wrote: >> >>> Kumar Gala writes: >>> >>>> The top level qcom,msm-id and qcom,board-

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-05 Thread Kumar Gala
On Mar 5, 2015, at 1:42 PM, Kevin Hilman wrote: > Kumar Gala writes: > >> The top level qcom,msm-id and qcom,board-id are utilized by bootloaders >> on Qualcomm MSM platforms to determine which device tree should be >> utilized and passed to the kernel. >> &

Re: [Patch V7 02/10] ASoC: qcom: Document LPASS CPU bindings

2015-03-05 Thread Kumar Gala
On Mar 3, 2015, at 6:21 PM, Kenneth Westfield wrote: > From: Kenneth Westfield > > Add documentation to the sound directory of the > device-tree bindings for the QTi LPASS CPU DAI > device. > > Signed-off-by: Kenneth Westfield > Acked-by: Banajit Goswami > --- > .../devicetree/bindings/soun

Re: [PATCH v2 2/3] arm64: qcom: Add support for Qualcomm MSM8916 SoC

2015-03-05 Thread Kumar Gala
On Mar 4, 2015, at 4:33 PM, Stephen Boyd wrote: > On 03/04/15 13:13, Kumar Gala wrote: >> diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig >> index 1b8e973..4c8b119 100644 >> --- a/arch/arm64/Kconfig >> +++ b/arch/arm64/Kconfig >> @@ -177,6 +177,15 @@

Re: [PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-04 Thread Kumar Gala
On Mar 4, 2015, at 3:19 PM, Arnd Bergmann wrote: > On Wednesday 04 March 2015 15:13:20 Kumar Gala wrote: >> The top level qcom,msm-id and qcom,board-id are utilized by bootloaders >> on Qualcomm MSM platforms to determine which device tree should be >> utilized and

[PATCH v2 1/3] devicetree: bindings: Document qcom,msm-id and qcom,board-id

2015-03-04 Thread Kumar Gala
The top level qcom,msm-id and qcom,board-id are utilized by bootloaders on Qualcomm MSM platforms to determine which device tree should be utilized and passed to the kernel. Cc: Signed-off-by: Kumar Gala --- Documentation/devicetree/bindings/arm/msm/ids.txt | 65

[PATCH v2 3/3] arm64: dts: Add Qualcomm MSM8916 SoC and evaluation board dts

2015-03-04 Thread Kumar Gala
Add initial device tree support for Qualcomm MSM8916 SoC and MTP8916 evaluation board. At the current time we only boot up a single processor. Signed-off-by: Kumar Gala --- v2: * Updated to dropping CONFIG_ARCH_QCOM_MSM8916 * Updated to use qcom-ids.h arch/arm64/boot/dts/Makefile

[PATCH v2 2/3] arm64: qcom: Add support for Qualcomm MSM8916 SoC

2015-03-04 Thread Kumar Gala
From: Abhimanyu Kapur Add support for Qualcomm MSM8916 SoC in arm64 Kconfig and defconfig. Enable MSM8916 clock, pin control, and MSM serial driver utilized by MSM8916 and Qualcomm SoCs in general. Signed-off-by: Kumar Gala Signed-off-by: Abhimanyu Kapur --- v2: * Dropped

[PATCH] arm: qcom: dts: gic: add compatible string for Qualcomm MSM GICs

2015-03-04 Thread Kumar Gala
Document the Qualcomm MSM GICs implementation as compatible with the ARM GIC standard. Signed-off-by: Kumar Gala --- Documentation/devicetree/bindings/arm/gic.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/gic.txt b/Documentation/devicetree

Re: [PATCH 00/12] ARM: dts: apq8064 dt patches.

2015-02-26 Thread Kumar Gala
On Feb 23, 2015, at 1:53 AM, Srinivas Kandagatla wrote: > Hi Kumar, > Now that the rpm header file dependency is resolved, Could you > queue these dt patches for rc2. > > > Thanks, > srini > > Nicolas Dechesne (3): > ARM: DT: apq8064: add pci support in CM QS600 > ARM: DT: apq8064: Add us

Re: [PATCH 03/12] ARM: dts: apq8064: Add USB OTG support

2015-02-26 Thread Kumar Gala
On Feb 23, 2015, at 1:55 AM, Srinivas Kandagatla wrote: > This patch adds USB OTG support on USB1 of APQ8064 SOC. > Tested on IFC6410 with ethernet gadget. > > Signed-off-by: Srinivas Kandagatla > --- > arch/arm/boot/dts/qcom-apq8064-ifc6410.dts | 22 > arch/arm/boot/dts/q

Re: [PATCH 02/12] ARM: dts: apq8064: Add usb host support.

2015-02-26 Thread Kumar Gala
On Feb 23, 2015, at 1:55 AM, Srinivas Kandagatla wrote: > This patch adds device tree nodes to support two usb hosts on APQ8064 > SOC. > > Signed-off-by: Srinivas Kandagatla > --- > arch/arm/boot/dts/qcom-apq8064-ifc6410.dts | 40 + > arch/arm/boot/dts/qcom-apq8064.dtsi

Re: [PATCH 01/12] ARM: dts: apq8064: add RPM regulators support

2015-02-26 Thread Kumar Gala
On Feb 23, 2015, at 1:54 AM, Srinivas Kandagatla wrote: > This patch adds rpm node to apq8064 dt as rpm would be used by other > devices for regulator support. Also adds all the regulators in the rpm. > > Signed-off-by: Srinivas Kandagatla > --- > arch/arm/boot/dts/qcom-apq8064.dtsi | 241 +++

Re: [Patch v3 0/6] GSBI CRCI Autoconfiguration Support

2015-02-10 Thread Kumar Gala
On Feb 9, 2015, at 4:01 PM, Andy Gross wrote: > This patch set adds support for automatic configuration of GSBI DMA CRCI > values. > > DMA operations require that the ADM CRCI mux values be properly configured in > the TCSR (Top Control and Status Register) block. During probing of a GSBI > d

Re: [Patch v2 1/6] soc: qcom: gsbi: Add support for ADM CRCI muxing

2015-01-30 Thread Kumar Gala
On Jan 30, 2015, at 3:37 PM, Stephen Boyd wrote: > On 01/30/15 08:32, Kumar Gala wrote: >> On Jan 30, 2015, at 12:25 AM, Andy Gross wrote: >> >>> Required properties if child node exists: >>> - #address-cells: Must be 1 >>> - #size-cells: Must be 1 &g

Re: [Patch v2 1/6] soc: qcom: gsbi: Add support for ADM CRCI muxing

2015-01-30 Thread Kumar Gala
On Jan 30, 2015, at 12:25 AM, Andy Gross wrote: > This patch adds automatic configuration for the ADM CRCI muxing required to > support DMA operations for GSBI clients. The GSBI mode and instance determine > the correct TCSR ADM CRCI MUX value that must be programmed so that the DMA > works pro

Re: [PATCH v5 1/4] phy: qcom-ufs: add support for 20nm phy

2015-01-07 Thread Kumar Gala
On Jan 7, 2015, at 9:43 AM, Yaniv Gardi wrote: > This change adds a support for a 20nm qcom-ufs phy that is > required in platforms that use ufs-qcom controller. > > Signed-off-by: Yaniv Gardi > > --- > drivers/phy/Makefile| 2 + > drivers/phy/phy-qcom-ufs-i.h| 167 ++

Re: [PATCH 0/9] ASoC: QCOM: Add support for ipq806x SOC

2014-11-19 Thread Kumar Gala
On Nov 19, 2014, at 12:52 PM, Kenneth Westfield wrote: > From: Kenneth Westfield > > This set of patches adds support for audio on the Qualcomm Technologies > ipq806x SOC. > > The ipq806x SOC has audio-related hardware blocks in its low-power audio > subsystem (or LPASS). One of the relevant

Re: [PATCH v3 2/6] uio: Add new UIO_MEM_PHYS_CACHE type for mem regions

2014-11-05 Thread Kumar Gala
On Nov 5, 2014, at 6:55 AM, Ankit Jindal wrote: > Hi Kumar, > > On 31 October 2014 19:09, Kumar Gala wrote: >> >> On Oct 31, 2014, at 4:30 AM, Ankit Jindal wrote: >> >>> Hi Kumar, >>> >>> On 21 October 2014 12:08, Kumar Gala wrote

Re: [PATCH] PCI: add missing DT binding for linux,pci-domain property

2014-11-04 Thread Kumar Gala
On Nov 4, 2014, at 5:47 AM, Lucas Stach wrote: > This property was added by 41e5c0f81d3e > (of/pci: Add pci_get_new_domain_nr() and of_get_pci_domain_nr()) > without the required binding documentation. As this property > will be supported by a number of host bridge drivers going forward, > add i

Re: [PATCH v3 2/6] uio: Add new UIO_MEM_PHYS_CACHE type for mem regions

2014-10-31 Thread Kumar Gala
On Oct 31, 2014, at 4:30 AM, Ankit Jindal wrote: > Hi Kumar, > > On 21 October 2014 12:08, Kumar Gala wrote: >> >> On Oct 21, 2014, at 7:56 AM, Ankit Jindal wrote: >> >>> Currently, three types of mem regions are supported: UIO_MEM_PHYS, >>> UIO

Re: [PATCH v2 2/4] dt/bindings: Introduce the FSL QorIQ DPAA BMan portal(s)

2014-10-28 Thread Kumar Gala
On Oct 28, 2014, at 4:15 AM, Emil Medve wrote: > Portals are memory mapped interfaces to BMan that allow low-latency, > lock-less interaction by software running on processor cores, accelerators > and network interfaces with the BMan > > Signed-off-by: Emil Medve > Change-Id: I6d245ffc14ba3d0e

Re: [PATCH v2 1/4] dt/bindings: Introduce the FSL QorIQ DPAA BMan

2014-10-28 Thread Kumar Gala
On Oct 28, 2014, at 4:15 AM, Emil Medve wrote: > The Buffer Manager is part of the Data-Path Acceleration Architecture (DPAA). > BMan supports hardware allocation and deallocation of buffers belonging to > pools originally created by software with configurable depletion thresholds. > This bindin

Re: [PATCH 1/4] dt/bindings: Introduce the FSL QorIQ DPAA BMan

2014-10-28 Thread Kumar Gala
On Oct 22, 2014, at 9:09 AM, Emil Medve wrote: > The Buffer Manager is part of the Data-Path Acceleration Architecture (DPAA). > BMan supports hardware allocation and deallocation of buffers belonging to > pools originally created by software with configurable depletion thresholds. > This bindin

Re: [PATCH v3 2/6] uio: Add new UIO_MEM_PHYS_CACHE type for mem regions

2014-10-20 Thread Kumar Gala
On Oct 21, 2014, at 7:56 AM, Ankit Jindal wrote: > Currently, three types of mem regions are supported: UIO_MEM_PHYS, > UIO_MEM_LOGICAL and UIO_MEM_VIRTUAL. Among these UIO_MEM_PHYS helps > UIO driver export physcial memory to user space as non-cacheable > user memory. Typcially memory-mapped re

Re: [PATCHv5 6/6] ARM: imx: Add Freescale LS1021A SMP support

2014-10-17 Thread Kumar Gala
On Oct 17, 2014, at 12:10 PM, Jingchang Lu wrote: > > >> -Original Message----- >> From: Kumar Gala [mailto:ga...@codeaurora.org] >> Sent: Thursday, October 16, 2014 10:31 PM >> To: Lu Jingchang-B35083 >> Cc: shawn@linaro.org; mark.rutl...@arm.co

Re: ath10k: calibration data through Device Tree?

2014-10-17 Thread Kumar Gala
On Oct 7, 2014, at 6:44 PM, Kalle Valo wrote: > Andy Lutomirski writes: > >> Perhaps unsurprisingly, the OpenWRT patch that enables it to work for >> real (by shoving a file into /lib/firmware that's contains a copy of >> data read from flash) hasn't made it upstream. I assume that the >> pur

Re: [PATCHv5 6/6] ARM: imx: Add Freescale LS1021A SMP support

2014-10-16 Thread Kumar Gala
On Oct 13, 2014, at 11:36 AM, Jingchang Lu wrote: > From: Jingchang Lu > > Freescale LS1021A SoCs deploy two cortex-A7 processors, > this adds bring-up support for the secondary core. > > Signed-off-by: Jingchang Lu > --- > arch/arm/mach-imx/Makefile | 2 +- > arch/arm/mach-imx/common.

Re: [PATCH v2 3/3] ARM: dts: qcom: Add SDHC nodes for APQ8084 platform

2014-10-15 Thread Kumar Gala
On Oct 14, 2014, at 6:17 PM, Georgi Djakov wrote: > On 10/10/2014 08:14 PM, Bjorn Andersson wrote: >> On Tue, Sep 2, 2014 at 8:40 AM, Georgi Djakov wrote: >>> Enable support for the two SD host controllers on the APQ8084 platform >>> by adding the required nodes to the DT files. >>> On the IFC6

Re: [PATCH v3] ARM: dts: Add initial DTS file for Sony Xperia Z1 phone

2014-10-09 Thread Kumar Gala
Will not make the 3.18 merge window. I will queue it up for 3.19. - k On Oct 9, 2014, at 11:55 AM, Tim Bird wrote: > Kumar, > > Any chance this could make the 3.18 merge window? Have you had time to take > a look at it? > -- Tim > > > On Tue, Sep 30, 2014 at 3:49 PM, Tim Bird wrote: > T

Re: [PATCH 2/2] input: pm8941-pwrkey: Add DT binding documentation

2014-10-07 Thread Kumar Gala
On Oct 6, 2014, at 8:12 PM, Bjorn Andersson wrote: > From: Courtney Cavin > > Signed-off-by: Courtney Cavin > Signed-off-by: Bjorn Andersson > --- > .../bindings/input/qcom,pm8941-pwrkey.txt | 43 > 1 file changed, 43 insertions(+) > create mode 100644 > Docu

Re: [PATCH v7 1/3] mfd: devicetree: bindings: Add Qualcomm RPM DT binding

2014-09-30 Thread Kumar Gala
On Sep 30, 2014, at 10:28 AM, Bjorn Andersson wrote: > On Wed 24 Sep 09:39 PDT 2014, Kumar Gala wrote: > >> >> On Sep 22, 2014, at 6:25 PM, Bjorn Andersson >> wrote: >> > > [..] > >>> diff --git a/Documentation/devicetree/bindings/

Re: [RFC 3/7] mfd: devicetree: bindings: Add Qualcomm SMD based RPM DT binding

2014-09-30 Thread Kumar Gala
On Sep 29, 2014, at 7:34 PM, Bjorn Andersson wrote: > Add binding documentation for the Qualcomm Resource Power Manager (RPM) > using shared memory (Qualcomm SMD) as transport mechanism. This is found > in 8974 and newer based devices. > > The binding currently describes the rpm itself and the

Re: [RFC 1/7] soc: qcom: Add device tree binding for SMEM

2014-09-30 Thread Kumar Gala
On Sep 29, 2014, at 7:34 PM, Bjorn Andersson wrote: > Add device tree binding documentation for the Qualcom Shared Memory > manager. > > Signed-off-by: Bjorn Andersson > --- > > Exposed by this node is a set of items of different sizes. For many things a > standard of_xlate method of referen

Re: [RFC 0/7] Qualcomm SMEM, SMD, RPM and regulators

2014-09-30 Thread Kumar Gala
On Sep 29, 2014, at 7:34 PM, Bjorn Andersson wrote: > All Qualcomm platforms implements a shared heap among the processors in the > SoC, used for sharing data with other parts of the system. > > One consumer of items from this heap is the "Shared Memory Driver", a ring > buffer based point-to-

Re: [PATCH v2] ARM: dts: Add initial DTS file for Sony Xperia Z1

2014-09-24 Thread Kumar Gala
On Sep 24, 2014, at 10:12 AM, Tim Bird wrote: > This DTS has support for the Sony Xperia Z1 phone (codenamed Honami). > This first version of the DTS supports just a serial console. > > changes from v1 > - removed qcom,msm-id attribute > - removed mis-capitalized Qualcomm word > - changed dts f

Re: [PATCH v7 1/3] mfd: devicetree: bindings: Add Qualcomm RPM DT binding

2014-09-24 Thread Kumar Gala
On Sep 22, 2014, at 6:25 PM, Bjorn Andersson wrote: > Add binding for the Qualcomm Resource Power Manager (RPM) found in 8660, > 8960 and 8064 based devices. The binding currently describes the rpm > itself and the regulator subnodes. > > Signed-off-by: Bjorn Andersson > --- > Documentation/d

Re: [PATCH v7 3/3] regulator: qcom-rpm: Regulator driver for the Qualcomm RPM

2014-09-24 Thread Kumar Gala
On Sep 24, 2014, at 3:35 AM, Mark Brown wrote: > On Mon, Sep 22, 2014 at 04:25:29PM -0700, Bjorn Andersson wrote: >> Driver for regulators exposed by the Resource Power Manager (RPM) found >> in Qualcomm 8660, 8960 and 8064 based devices. > > Applied, thanks. Mark, can you drop this until we s

Re: [PATCH v7 0/3] Qualcomm Resource Power Manager driver

2014-09-24 Thread Kumar Gala
On Sep 23, 2014, at 11:27 PM, Bjorn Andersson wrote: > On Tue 23 Sep 01:17 PDT 2014, Srinivas Kandagatla wrote: > >> Hi Bjorn, >> >> Thankyou for the new patchset. >> >> I got few device-tree patches for apq8064 usb, sata, phy and hdmi which >> depend on rpm header file. It will be nice to

Re: [PATCH v2 10/16] of: Add vendor prefix for MIPS Technologies, Inc.

2014-09-22 Thread Kumar Gala
On Sep 22, 2014, at 2:30 PM, Andrew Bresticker wrote: > On Mon, Sep 22, 2014 at 12:01 PM, Kumar Gala wrote: >> >> On Sep 22, 2014, at 11:28 AM, Andrew Bresticker >> wrote: >> >>> On Mon, Sep 22, 2014 at 7:23 AM, Rob Herring wrote: >>>> On

Re: [PATCH v2 10/16] of: Add vendor prefix for MIPS Technologies, Inc.

2014-09-22 Thread Kumar Gala
On Sep 22, 2014, at 11:28 AM, Andrew Bresticker wrote: > On Mon, Sep 22, 2014 at 7:23 AM, Rob Herring wrote: >> On Fri, Sep 5, 2014 at 12:30 PM, Andrew Bresticker >> wrote: >>> Add the vendor prefix "mti" for MIPS Technologies, Inc. >>> >>> Signed-off-by: Andrew Bresticker >>> --- >>> New fo

Re: [PATCH 3/3] dt/bindings: dmaengine: qcom_bam_dma: Add compatible string for BAM v1.3.0

2014-09-19 Thread Kumar Gala
tion/devicetree/bindings/dma/qcom_bam_dma.txt | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) Reviewed-by: Kumar Gala - k -- Employee of Qualcomm Innovation Center, Inc. Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation -- To unsub

Re: [PATCH v4] scsi: ufs: add support of generic PHY framework in Qualcomm MSM chips

2014-09-17 Thread Kumar Gala
> linux-arm-...@vger.kernel.org; santos...@gmail.com; > linux-scsi-ow...@vger.kernel.org; subha...@codeaurora.org; > yga...@codeaurora.org; n...@codeaurora.org; dra...@codeaurora.org; Rob > Herring; Pawel Moll; Mark Rutland; Ian Campbell; Kumar Gala; Kishon Vijay > Abraham I; Vinayak Holikat

Re: [PATCH] ARM: DT: ifc6410: Add board memory range.

2014-09-17 Thread Kumar Gala
On Sep 16, 2014, at 11:34 PM, Pramod Gurav wrote: > Hi Srini, > > Thanks for the patch. > Tested-by: Pramod Gurav > > A minor nit. > On Wednesday 17 September 2014 11:06 AM, Srinivas Kandagatla wrote: >> This patch adds memory details of IFC6410 as this is necessary to >> fix the in-correct m

Re: [RFC PATCH] dt:numa: adding numa node mapping for memory nodes.

2014-09-17 Thread Kumar Gala
On Sep 17, 2014, at 1:56 AM, Ganapatrao Kulkarni wrote: > From: Ganapatrao Kulkarni > > This patch adds property "nid" to memory node to provide the memory range to > numa node id mapping. > > Signed-off-by: Ganapatrao Kulkarni > > — Adding the PPC guys as they’ve been doing NUMA on IBM P

Re: [PATCH v3] ARM: apq8064: Add pinmux and i2c pinctrl nodes

2014-09-16 Thread Kumar Gala
On Sep 16, 2014, at 5:36 AM, kiran.pad...@smartplayin.com wrote: > > > On Monday, September 15, 2014 10:39pm, "Andy Gross" > said: > >> On Tue, Aug 26, 2014 at 05:00:45PM +0530, Kiran Padwal wrote: >>> This patch adds pinmux and i2c pinctrl DT node for IFC6410 board. >>> It also adds necessa

Re: [PATCH] ARM: dts: qcom: Add I2C dt node for MSM8974 and DB8074 board

2014-09-16 Thread Kumar Gala
On Sep 16, 2014, at 4:45 AM, Kiran Padwal wrote: > Add support for i2c controller on the DB8074 board. > It also adds necessary DT support for i2c eeprom which is present on > DB8074 board. > > Signed-off-by: Kiran Padwal > --- > arch/arm/boot/dts/qcom-apq8074-dragonboard.dts | 21 ++

[PATCH v4 3/3] ata: qcom: Add device tree bindings information

2014-09-09 Thread Kumar Gala
Add device tree binding for Qualcomm AHCI SATA controller and specifically the sata controller on the IPQ806x family of SoCs. Signed-off-by: Kumar Gala --- (reposted with Hans on list) .../devicetree/bindings/ata/qcom-sata.txt | 40 ++ 1 file changed, 40 insertions

[PATCH v4 3/3] ata: qcom: Add device tree bindings information

2014-09-08 Thread Kumar Gala
Add device tree binding for Qualcomm AHCI SATA controller and specifically the sata controller on the IPQ806x family of SoCs. Signed-off-by: Kumar Gala --- .../devicetree/bindings/ata/qcom-sata.txt | 40 ++ 1 file changed, 40 insertions(+) create mode 100644

Re: [PATCH v3] ARM: dts: qcom: Add initial IFC6540 board device tree

2014-09-05 Thread Kumar Gala
ccessary nodes required for enabling the serial port and eMMC. >> >> Signed-off-by: Georgi Djakov >> --- >> Changes since v2: >> - Squashed all patches into one. (suggested by Kumar Gala) >> >> Changes since v1: >> - This time add linux-arm-msm list t

Re: [PATCH v3] hwspinlock: qcom: Add support for Qualcomm HW Mutex block

2014-09-03 Thread Kumar Gala
On Sep 3, 2014, at 9:55 AM, Bjorn Andersson wrote: > On Wed 03 Sep 05:49 PDT 2014, Kumar Gala wrote: > >> >> On Sep 2, 2014, at 3:04 PM, Bjorn Andersson >> wrote: >> >>> Changes since v2: >>> - MODULE_DEVICE_TABLE >>> - Changed p

Re: [PATCH v3] hwspinlock: qcom: Add support for Qualcomm HW Mutex block

2014-09-03 Thread Kumar Gala
On Sep 2, 2014, at 3:04 PM, Bjorn Andersson wrote: > From: Kumar Gala > > Add driver for Qualcomm Hardware Mutex block that exists on newer > Qualcomm SoCs. > > Cc: Jeffrey Hugo > Cc: Eric Holmberg > Cc: Courtney Cavin > Signed-off-by: Kumar Gala > [bjorn

  1   2   3   4   >