Re: [PATCH v3 5/9] thermal: qcom: tsens-8960: Add support for 8960 family of SoCs

2015-10-08 Thread Rajendra Nayak
On 10/08/2015 11:42 AM, Stephen Boyd wrote: > On 10/08, Rajendra Nayak wrote: >> diff --git a/drivers/thermal/qcom/Makefile b/drivers/thermal/qcom/Makefile >> index a471100..f3cefd1 100644 >> --- a/drivers/thermal/qcom/Makefile >> +++ b/drivers/thermal/qcom/Makefile >> @@ -1,2 +1,2 @@ >>

Re: [PATCH v3 4/9] clk: qcom: create virtual child device for TSENS

2015-10-08 Thread Stephen Boyd
On 10/08, Rajendra Nayak wrote: > @@ -3520,11 +3522,26 @@ static int gcc_msm8960_probe(struct platform_device > *pdev) > if (IS_ERR(clk)) > return PTR_ERR(clk); > > - return qcom_cc_probe(pdev, match->data); > + ret = qcom_cc_probe(pdev, match->data); > + if

Re: [PATCH v3 4/9] clk: qcom: create virtual child device for TSENS

2015-10-08 Thread Rajendra Nayak
On 10/08/2015 11:35 AM, Stephen Boyd wrote: > On 10/08, Rajendra Nayak wrote: >> @@ -3520,11 +3522,26 @@ static int gcc_msm8960_probe(struct platform_device >> *pdev) >> if (IS_ERR(clk)) >> return PTR_ERR(clk); >> >> -return qcom_cc_probe(pdev, match->data); >> +ret

Re: [PATCH v3 5/9] thermal: qcom: tsens-8960: Add support for 8960 family of SoCs

2015-10-08 Thread Stephen Boyd
On 10/08, Rajendra Nayak wrote: > diff --git a/drivers/thermal/qcom/Makefile b/drivers/thermal/qcom/Makefile > index a471100..f3cefd1 100644 > --- a/drivers/thermal/qcom/Makefile > +++ b/drivers/thermal/qcom/Makefile > @@ -1,2 +1,2 @@ > obj-$(CONFIG_QCOM_TSENS) += qcom_tsens.o > -qcom_tsens-y

Re: [PATCH v3 4/9] clk: qcom: create virtual child device for TSENS

2015-10-08 Thread Stephen Boyd
On 10/07, Stephen Boyd wrote: > On 10/08, Rajendra Nayak wrote: > > I've also been considering putting some devm stuff inside > qcom_cc_probe() itself so that in the normal case you don't even > need to call qcom_cc_remove(), it just gets done automatically. > That would open up the possibility

[PATCH v3] scsi: ufs: add ioctl interface for query request

2015-10-08 Thread Yaniv Gardi
This patch exposes the ioctl interface for UFS driver via SCSI device ioctl interface. As of now UFS driver would provide the ioctl for query interface to connected UFS device. Signed-off-by: Dolev Raviv Signed-off-by: Noa Rubens Signed-off-by: Raviv

[PATCH 0/4] arm64: dts: qcom: add support to LS and HS connectors

2015-10-08 Thread Srinivas Kandagatla
Hi Andy, This patchset adds support for i2c and spi on High-Speed and Low speed connectors on DB410c. One of the patch fixes the sleep state of existing i2c node. thanks, srini Srinivas Kandagatla (4): arm64: dts: fix i2c pinconf sleep state function arm64: dts: qcom: Add msm8916 I2C

[PATCH 1/4] arm64: dts: fix i2c pinconf sleep state function

2015-10-08 Thread Srinivas Kandagatla
This patch fixes the i2c pinctrl sleep state by changing the pinconf function to be in gpio mode rather than i2c. Signed-off-by: Srinivas Kandagatla --- arch/arm64/boot/dts/qcom/msm8916-pins.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH] clk: qcom: Drop calls to qcom_cc_remove()

2015-10-08 Thread Rajendra Nayak
On 10/08/2015 12:47 PM, Stephen Boyd wrote: > Now that qcom_cc_remove() is a nop, drop calls to > qcom_cc_remove() and any empty driver remove functions. > > Signed-off-by: Stephen Boyd > --- > > And here's the driver part. I left 8960_remove in place to make your patch >

[PATCH 4/4] arm64: dts: apq8016-sbc: enable spi buses on LS and HS

2015-10-08 Thread Srinivas Kandagatla
This patch enables spi buses on low speed and high speed expansion connectors on DB410C Signed-off-by: Srinivas Kandagatla --- arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 10 ++ 1 file changed, 10 insertions(+) diff --git

[PATCH 3/4] arm64: dts: apq8016-sbc: enable i2c buses on LS and HS

2015-10-08 Thread Srinivas Kandagatla
This patch enables i2c buses on low speed and high speed expansion connectors on DB410C. Signed-off-by: Srinivas Kandagatla --- arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 15 +++ 1 file changed, 15 insertions(+) diff --git

[PATCH 2/4] arm64: dts: qcom: Add msm8916 I2C nodes.

2015-10-08 Thread Srinivas Kandagatla
This patch adds missing support for i2c0 and i2c6, this support is required to connect the i2c slaves on LS expansion on DB410c. Signed-off-by: Srinivas Kandagatla --- arch/arm64/boot/dts/qcom/msm8916-pins.dtsi | 48 ++

Re: [PATCH v3] scsi: ufs: add ioctl interface for query request

2015-10-08 Thread Arnd Bergmann
On Thursday 08 October 2015 14:09:24 Yaniv Gardi wrote: > This patch exposes the ioctl interface for UFS driver via SCSI device > ioctl interface. As of now UFS driver would provide the ioctl for query > interface to connected UFS device. > > Signed-off-by: Dolev Raviv >

Re: [PATCH] Bluetooth: hci_smd: Qualcomm WCNSS HCI driver

2015-10-08 Thread Bjorn Andersson
On Sat 03 Oct 09:55 PDT 2015, Marcel Holtmann wrote: > Hi Bjorn, > [..] > >> Especially the kbuild test robot complained loudly. > >> > > > > Sorry, I forgot to mention in the patch that the patch depends on the > > qcom_smd_id patch - that's available in linux-next. I will take another > >

Re: [PATCH] clk: qcom: Drop calls to qcom_cc_remove()

2015-10-08 Thread Stephen Boyd
On 10/08, Rajendra Nayak wrote: > On 10/08/2015 12:47 PM, Stephen Boyd wrote: > > Now that qcom_cc_remove() is a nop, drop calls to > > qcom_cc_remove() and any empty driver remove functions. > > > > Signed-off-by: Stephen Boyd > > --- > > > > And here's the driver part. I

Re: [PATCH] Bluetooth: hci_smd: Qualcomm WCNSS HCI driver

2015-10-08 Thread Andy Gross
On Thu, Oct 08, 2015 at 10:07:44AM -0700, Bjorn Andersson wrote: > On Sat 03 Oct 09:55 PDT 2015, Marcel Holtmann wrote: > > > Hi Bjorn, > > > [..] > > >> Especially the kbuild test robot complained loudly. > > >> > > > > > > Sorry, I forgot to mention in the patch that the patch depends on the >

[PATCH] arm64: defconfig: Enable devices for MSM8916

2015-10-08 Thread Andy Gross
This patch enables a number of devices currently supported by the MSM8916 boards. These include I2C, SPI, DMA, SMEM, SMD, and SMD regulator support. Signed-off-by: Andy Gross --- arch/arm64/configs/defconfig | 10 ++ 1 file changed, 10 insertions(+) diff --git

Re: [PATCH v3 4/9] clk: qcom: create virtual child device for TSENS

2015-10-08 Thread Stephen Boyd
On 10/08, Rajendra Nayak wrote: > 8960 family of devices have TSENS as part of GCC in hardware. > Hence DT would represent a GCC node with GCC properties as well > as TSENS. Create a virtual platform child device here for TSENS > so the driver can probe it and use the parent (GCC) to extract DT >

[PATCH] clk: qcom: Move gdsc config outside COMMON_CLK_QCOM config

2015-10-08 Thread Stephen Boyd
Having this hidden config below the COMMON_CLK_QCOM config causes menuconfig to stop indenting config items after it. <*> Support for Qualcomm's clock controllers {M} APQ8084 Global Clock Controller APQ8084 Multimedia Clock Controller {M} IPQ806x Global

Re: [PATCH 2/4] arm64: dts: qcom: Add msm8916 I2C nodes.

2015-10-08 Thread Stephen Boyd
On 10/08/2015 04:19 AM, Srinivas Kandagatla wrote: > diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi > b/arch/arm64/boot/dts/qcom/msm8916.dtsi > index 85f7bee..d49ac37 100644 > --- a/arch/arm64/boot/dts/qcom/msm8916.dtsi > +++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi > @@ -233,6 +233,22 @@ >

Re: [PATCH 4/4] arm64: dts: apq8016-sbc: enable spi buses on LS and HS

2015-10-08 Thread Stephen Boyd
On 10/08/2015 04:19 AM, Srinivas Kandagatla wrote: > This patch enables spi buses on low speed and high speed expansion > connectors on DB410C > > Signed-off-by: Srinivas Kandagatla > --- > arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 10 ++ > 1 file