Re: [PATCH v2 3/7] tty: serial: Limit msm_serial_hs driver to platforms that use it

2014-01-02 Thread Arnd Bergmann
On Monday 30 December 2013, Stephen Boyd wrote:
> The msm_serial_hs driver uses mach specific dma APIs. This is not
> compatible with the multi-platform ARM effort. Let's only compile
> this driver on MSM devices that are prepared to support it;
> allowing the DT based MSM devices to enter the multi-platform ARM
> build.
> 
> Acked-by: Greg Kroah-Hartman 
> Signed-off-by: Stephen Boyd 

Do you have a plan to deal with this in the future? Aren't you going
to need it in the future on modern SoCs?

Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 0/7] Allow MSM DT platforms to be built multi-platform

2014-01-02 Thread Arnd Bergmann
On Monday 30 December 2013, Stephen Boyd wrote:
> These patches allow the DT based MSM platforms to be built as part of the
> multi-platform kernel. I need acks from Chris Ball on the mmc patch and
> Rob/Dave on the drm patch. I dropped Arnd's ack on patch 6 because I've
> rebased that patch on top of the patchset David sent out (which this is in
> reply to). The rebase was fairly minor and the new patch for drm/msm is
> trivial. Please consider for v3.14.

Just for the record, I'm definitely happy with the way this is turning out,
don't see my question on the serial driver as a NAK. I assume we will apply
the patches for 3.14, but I first want to have a better understanding on
where we are with the stuff that is already queued up for 3.14.

Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 0/7] MSM patches for 3.14

2014-01-02 Thread Olof Johansson
On Fri, Dec 20, 2013 at 11:09:13AM -0800, David Brown wrote:
> The following series contains a warning fix, a bit of cleanup, adds a
> few more boards.  There are still numerous patches floating with
> issues, but things seem to be moving in the right direction.
> 
> These have all been sent previously to the lists, and received reviews
> and necessary acks.
> 

Hi,

I've applied these across the various branches, i.e I split the series up
into fixes, soc, dt and board changes.

I chose to split the Dragonboard patch up into two patches instead of one:
One that adds SoC support, and a second that adds the board support. I
rephrased commit messages accordingly but the contents was untouched
(just split up).

I hope the clock stuff can be sorted out real quick so we get working support
for more useful IP on the SoC in time for 3.14.


-Olof
--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/7] Input: pmic8xxx-pwrkey - Migrate to regmap APIs

2014-01-02 Thread Mark Brown
On Sun, Dec 15, 2013 at 03:33:37AM -0800, Dmitry Torokhov wrote:
> On Tue, Dec 10, 2013 at 03:43:11PM -0800, Stephen Boyd wrote:

> > +   regmap = dev_get_regmap(pdev->dev.parent, NULL);
> > +   if (!regmap)
> > +   return -ENODEV;

> And you are leaking memory here...

He's not, dev_get_regmap() just gets a pointer to an existing regmap -
no reference is taken and nothing is allocated.  It's a helper that's
mainly there so that generic code can be written without needing the
regmap to be passed around.  The caller is responsible for ensuring that
it will stick around for as long as it's used (generally by having it
lifetime managed with the device).


signature.asc
Description: Digital signature


Re: [PATCH v2 3/7] tty: serial: Limit msm_serial_hs driver to platforms that use it

2014-01-02 Thread Stephen Boyd
On 01/02/14 10:10, Arnd Bergmann wrote:
> On Monday 30 December 2013, Stephen Boyd wrote:
>> The msm_serial_hs driver uses mach specific dma APIs. This is not
>> compatible with the multi-platform ARM effort. Let's only compile
>> this driver on MSM devices that are prepared to support it;
>> allowing the DT based MSM devices to enter the multi-platform ARM
>> build.
>>
>> Acked-by: Greg Kroah-Hartman 
>> Signed-off-by: Stephen Boyd 
> Do you have a plan to deal with this in the future? Aren't you going
> to need it in the future on modern SoCs?
>

Yes, we plan to add the code for dma based serial devices into the
msm_serial.c driver. In the process we'll use the linux DMA apis instead
of using mach specific ones.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 3/7] tty: serial: Limit msm_serial_hs driver to platforms that use it

2014-01-02 Thread Arnd Bergmann
On Thursday 02 January 2014 12:20:21 Stephen Boyd wrote:
> Yes, we plan to add the code for dma based serial devices into the
> msm_serial.c driver. In the process we'll use the linux DMA apis instead
> of using mach specific ones.

Ok, very good.

Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/7] Input: pmic8xxx-pwrkey - Migrate to regmap APIs

2014-01-02 Thread Dmitry Torokhov
On Thu, Jan 02, 2014 at 06:49:59PM +, Mark Brown wrote:
> On Sun, Dec 15, 2013 at 03:33:37AM -0800, Dmitry Torokhov wrote:
> > On Tue, Dec 10, 2013 at 03:43:11PM -0800, Stephen Boyd wrote:
> 
> > > + regmap = dev_get_regmap(pdev->dev.parent, NULL);
> > > + if (!regmap)
> > > + return -ENODEV;
> 
> > And you are leaking memory here...
> 
> He's not, dev_get_regmap() just gets a pointer to an existing regmap -
> no reference is taken and nothing is allocated.  It's a helper that's
> mainly there so that generic code can be written without needing the
> regmap to be passed around.  The caller is responsible for ensuring that
> it will stick around for as long as it's used (generally by having it
> lifetime managed with the device).

I was not talking about data returned by dev_get_regmap() but all other
memory that was allocated before as this was pre devm conversion of the
driver.

Thanks.

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 01/10] Input: pmic8xxx-pwrkey - switch to using managed resources

2014-01-02 Thread Stephen Boyd
From: Dmitry Torokhov 

This simplifies error handling and device removal paths.

Signed-off-by: Dmitry Torokhov 
Acked-by: Stephen Boyd 
Signed-off-by: Stephen Boyd 
---
 drivers/input/misc/pmic8xxx-pwrkey.c | 74 
 1 file changed, 25 insertions(+), 49 deletions(-)

diff --git a/drivers/input/misc/pmic8xxx-pwrkey.c 
b/drivers/input/misc/pmic8xxx-pwrkey.c
index ef938405a9c6..aaf332510623 100644
--- a/drivers/input/misc/pmic8xxx-pwrkey.c
+++ b/drivers/input/misc/pmic8xxx-pwrkey.c
@@ -32,7 +32,6 @@
  * @key_press_irq: key press irq number
  */
 struct pmic8xxx_pwrkey {
-   struct input_dev *pwr;
int key_press_irq;
 };
 
@@ -110,22 +109,22 @@ static int pmic8xxx_pwrkey_probe(struct platform_device 
*pdev)
return -ENODEV;
}
 
-   pwrkey = kzalloc(sizeof(*pwrkey), GFP_KERNEL);
+   pwrkey = devm_kzalloc(&pdev->dev, sizeof(*pwrkey), GFP_KERNEL);
if (!pwrkey)
return -ENOMEM;
 
-   pwr = input_allocate_device();
+   pwrkey->key_press_irq = key_press_irq;
+
+   pwr = devm_input_allocate_device(&pdev->dev);
if (!pwr) {
dev_dbg(&pdev->dev, "Can't allocate power button\n");
-   err = -ENOMEM;
-   goto free_pwrkey;
+   return -ENOMEM;
}
 
input_set_capability(pwr, EV_KEY, KEY_POWER);
 
pwr->name = "pmic8xxx_pwrkey";
pwr->phys = "pmic8xxx_pwrkey/input0";
-   pwr->dev.parent = &pdev->dev;
 
delay = (pdata->kpd_trigger_delay_us << 10) / USEC_PER_SEC;
delay = 1 + ilog2(delay);
@@ -133,7 +132,7 @@ static int pmic8xxx_pwrkey_probe(struct platform_device 
*pdev)
err = regmap_read(regmap, PON_CNTL_1, &pon_cntl);
if (err < 0) {
dev_err(&pdev->dev, "failed reading PON_CNTL_1 err=%d\n", err);
-   goto free_input_dev;
+   return err;
}
 
pon_cntl &= ~PON_CNTL_TRIG_DELAY_MASK;
@@ -146,66 +145,43 @@ static int pmic8xxx_pwrkey_probe(struct platform_device 
*pdev)
err = regmap_write(regmap, PON_CNTL_1, pon_cntl);
if (err < 0) {
dev_err(&pdev->dev, "failed writing PON_CNTL_1 err=%d\n", err);
-   goto free_input_dev;
+   return err;
}
 
-   err = input_register_device(pwr);
+   err = devm_request_irq(&pdev->dev, key_press_irq, pwrkey_press_irq,
+  IRQF_TRIGGER_RISING,
+  "pmic8xxx_pwrkey_press", pwr);
if (err) {
-   dev_dbg(&pdev->dev, "Can't register power key: %d\n", err);
-   goto free_input_dev;
+   dev_err(&pdev->dev, "Can't get %d IRQ for pwrkey: %d\n",
+   key_press_irq, err);
+   return err;
}
 
-   pwrkey->key_press_irq = key_press_irq;
-   pwrkey->pwr = pwr;
-
-   platform_set_drvdata(pdev, pwrkey);
-
-   err = request_irq(key_press_irq, pwrkey_press_irq,
-   IRQF_TRIGGER_RISING, "pmic8xxx_pwrkey_press", pwr);
-   if (err < 0) {
-   dev_dbg(&pdev->dev, "Can't get %d IRQ for pwrkey: %d\n",
-key_press_irq, err);
-   goto unreg_input_dev;
+   err = devm_request_irq(&pdev->dev, key_release_irq, pwrkey_release_irq,
+  IRQF_TRIGGER_RISING,
+  "pmic8xxx_pwrkey_release", pwr);
+   if (err) {
+   dev_err(&pdev->dev, "Can't get %d IRQ for pwrkey: %d\n",
+   key_release_irq, err);
+   return err;
}
 
-   err = request_irq(key_release_irq, pwrkey_release_irq,
-IRQF_TRIGGER_RISING, "pmic8xxx_pwrkey_release", pwr);
-   if (err < 0) {
-   dev_dbg(&pdev->dev, "Can't get %d IRQ for pwrkey: %d\n",
-key_release_irq, err);
-
-   goto free_press_irq;
+   err = input_register_device(pwr);
+   if (err) {
+   dev_err(&pdev->dev, "Can't register power key: %d\n", err);
+   return err;
}
 
+   platform_set_drvdata(pdev, pwrkey);
device_init_wakeup(&pdev->dev, pdata->wakeup);
 
return 0;
-
-free_press_irq:
-   free_irq(key_press_irq, pwrkey);
-unreg_input_dev:
-   input_unregister_device(pwr);
-   pwr = NULL;
-free_input_dev:
-   input_free_device(pwr);
-free_pwrkey:
-   kfree(pwrkey);
-   return err;
 }
 
 static int pmic8xxx_pwrkey_remove(struct platform_device *pdev)
 {
-   struct pmic8xxx_pwrkey *pwrkey = platform_get_drvdata(pdev);
-   int key_release_irq = platform_get_irq(pdev, 0);
-   int key_press_irq = platform_get_irq(pdev, 1);
-
device_init_wakeup(&pdev->dev, 0);
 
-   free_irq(key_press_irq, pwrkey->pwr);
-   free_irq(key_release_irq, pwrkey->pwr);
-   input_unregister_device(pwrkey->pwr);
-   kfree(pwrkey);
-
return 0;
 }
 
-- 
The Qua

[PATCH v2 00/10] Use regmap+devm+DT in pm8xxx input drivers

2014-01-02 Thread Stephen Boyd
These patches move the pm8xxx input drivers over to use devm_* APIs
and regmap. This breaks the dependency of these drivers on the pm8xxx
specific read/write calls and also simplifies the probe code a bit.
Finally we add devicetree support to these drivers so they can be probed
on the platforms that are supported upstream.

There was no devm_request_any_context_irq() available, so I've added
it here.

Changes since v1:
 * Picked up Dmitry's version of devm for pwrkey
 * Added DT bindings and parsing patches
 * Dropped patches picked up by Dmitry

Dmitry Torokhov (1):
  Input: pmic8xxx-pwrkey - switch to using managed resources

Stephen Boyd (9):
  genirq: Add devm_request_any_context_irq()
  Input: pmic8xxx-keypad - Switch to using managed resources
  Input: pmic8xxx-keypad - Migrate to regmap APIs
  Input: pmic8xxx-pwrkey - Migrate to DT
  Input: pm8xxx-vibrator - Add DT match table
  Input: pmic8xxx-keypad - Migrate to DT
  devicetree: bindings: Document PM8921/8058 keypads
  devicetree: bindings: Document PM8921/8058 power keys
  devicetree: bindings: Document PM8921/8058 vibrators

 .../bindings/input/qcom,pm8xxx-keypad.txt  |  72 +
 .../bindings/input/qcom,pm8xxx-pwrkey.txt  |  39 +++
 .../devicetree/bindings/input/qcom,pm8xxx-vib.txt  |  16 ++
 drivers/input/keyboard/pmic8xxx-keypad.c   | 291 ++---
 drivers/input/misc/pm8xxx-vibrator.c   |   8 +
 drivers/input/misc/pmic8xxx-pwrkey.c   | 107 
 include/linux/input/pmic8xxx-keypad.h  |  52 
 include/linux/input/pmic8xxx-pwrkey.h  |  31 ---
 include/linux/interrupt.h  |   5 +
 kernel/irq/devres.c|  45 
 10 files changed, 361 insertions(+), 305 deletions(-)
 create mode 100644 
Documentation/devicetree/bindings/input/qcom,pm8xxx-keypad.txt
 create mode 100644 
Documentation/devicetree/bindings/input/qcom,pm8xxx-pwrkey.txt
 create mode 100644 Documentation/devicetree/bindings/input/qcom,pm8xxx-vib.txt
 delete mode 100644 include/linux/input/pmic8xxx-keypad.h
 delete mode 100644 include/linux/input/pmic8xxx-pwrkey.h

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 05/10] Input: pmic8xxx-pwrkey - Migrate to DT

2014-01-02 Thread Stephen Boyd
The driver is only supported on DT enabled platforms. Convert the
driver to DT so that it can probe properly.

Signed-off-by: Stephen Boyd 
---
 drivers/input/misc/pmic8xxx-pwrkey.c  | 33 -
 include/linux/input/pmic8xxx-pwrkey.h | 31 ---
 2 files changed, 20 insertions(+), 44 deletions(-)
 delete mode 100644 include/linux/input/pmic8xxx-pwrkey.h

diff --git a/drivers/input/misc/pmic8xxx-pwrkey.c 
b/drivers/input/misc/pmic8xxx-pwrkey.c
index aaf332510623..72f629f37211 100644
--- a/drivers/input/misc/pmic8xxx-pwrkey.c
+++ b/drivers/input/misc/pmic8xxx-pwrkey.c
@@ -20,8 +20,7 @@
 #include 
 #include 
 #include 
-
-#include 
+#include 
 
 #define PON_CNTL_1 0x1C
 #define PON_CNTL_PULL_UP BIT(7)
@@ -80,6 +79,13 @@ static int pmic8xxx_pwrkey_resume(struct device *dev)
 static SIMPLE_DEV_PM_OPS(pm8xxx_pwr_key_pm_ops,
pmic8xxx_pwrkey_suspend, pmic8xxx_pwrkey_resume);
 
+static const struct of_device_id pm8xxx_pwr_key_id_table[] = {
+   { .compatible = "qcom,pm8058-pwrkey" },
+   { .compatible = "qcom,pm8921-pwrkey" },
+   { }
+};
+MODULE_DEVICE_TABLE(of, pm8xxx_pwr_key_id_table);
+
 static int pmic8xxx_pwrkey_probe(struct platform_device *pdev)
 {
struct input_dev *pwr;
@@ -90,15 +96,15 @@ static int pmic8xxx_pwrkey_probe(struct platform_device 
*pdev)
unsigned int pon_cntl;
struct regmap *regmap;
struct pmic8xxx_pwrkey *pwrkey;
-   const struct pm8xxx_pwrkey_platform_data *pdata =
-   dev_get_platdata(&pdev->dev);
+   u32 kpd_delay;
+   bool pull_up;
 
-   if (!pdata) {
-   dev_err(&pdev->dev, "power key platform data not supplied\n");
-   return -EINVAL;
-   }
+   if (of_property_read_u32(pdev->dev.of_node, "debounce", &kpd_delay))
+   kpd_delay = 0;
+
+   pull_up = of_property_read_bool(pdev->dev.of_node, "pull-up");
 
-   if (pdata->kpd_trigger_delay_us > 62500) {
+   if (kpd_delay > 62500) {
dev_err(&pdev->dev, "invalid power key trigger delay\n");
return -EINVAL;
}
@@ -126,7 +132,7 @@ static int pmic8xxx_pwrkey_probe(struct platform_device 
*pdev)
pwr->name = "pmic8xxx_pwrkey";
pwr->phys = "pmic8xxx_pwrkey/input0";
 
-   delay = (pdata->kpd_trigger_delay_us << 10) / USEC_PER_SEC;
+   delay = (kpd_delay << 10) / USEC_PER_SEC;
delay = 1 + ilog2(delay);
 
err = regmap_read(regmap, PON_CNTL_1, &pon_cntl);
@@ -137,7 +143,7 @@ static int pmic8xxx_pwrkey_probe(struct platform_device 
*pdev)
 
pon_cntl &= ~PON_CNTL_TRIG_DELAY_MASK;
pon_cntl |= (delay & PON_CNTL_TRIG_DELAY_MASK);
-   if (pdata->pull_up)
+   if (pull_up)
pon_cntl |= PON_CNTL_PULL_UP;
else
pon_cntl &= ~PON_CNTL_PULL_UP;
@@ -173,7 +179,7 @@ static int pmic8xxx_pwrkey_probe(struct platform_device 
*pdev)
}
 
platform_set_drvdata(pdev, pwrkey);
-   device_init_wakeup(&pdev->dev, pdata->wakeup);
+   device_init_wakeup(&pdev->dev, 1);
 
return 0;
 }
@@ -189,9 +195,10 @@ static struct platform_driver pmic8xxx_pwrkey_driver = {
.probe  = pmic8xxx_pwrkey_probe,
.remove = pmic8xxx_pwrkey_remove,
.driver = {
-   .name   = PM8XXX_PWRKEY_DEV_NAME,
+   .name   = "pm8xxx-pwrkey",
.owner  = THIS_MODULE,
.pm = &pm8xxx_pwr_key_pm_ops,
+   .of_match_table = pm8xxx_pwr_key_id_table,
},
 };
 module_platform_driver(pmic8xxx_pwrkey_driver);
diff --git a/include/linux/input/pmic8xxx-pwrkey.h 
b/include/linux/input/pmic8xxx-pwrkey.h
deleted file mode 100644
index 6d2974e57109..
--- a/include/linux/input/pmic8xxx-pwrkey.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 and
- * only version 2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
-
-#ifndef __PMIC8XXX_PWRKEY_H__
-#define __PMIC8XXX_PWRKEY_H__
-
-#define PM8XXX_PWRKEY_DEV_NAME "pm8xxx-pwrkey"
-
-/**
- * struct pm8xxx_pwrkey_platform_data - platform data for pwrkey driver
- * @pull up:  power on register control for pull up/down configuration
- * @kpd_trigger_delay_us: time delay for power key state change interrupt
- *  trigger.
- * @wakeup: configure power key as wakeup source
- */
-struct pm8xxx_pwrkey_platform_data  {
-   bool pull_up;
-   u32  kpd_trigger_delay_us;
-   u32  wakeup;
-};
-
-#endif /* __PMIC8XXX_

[PATCH v2 02/10] genirq: Add devm_request_any_context_irq()

2014-01-02 Thread Stephen Boyd
Some drivers use request_any_context_irq() but there isn't a
devm_* function for it. Add one so that these drivers don't need
to explicitly free the irq on driver detach.

Cc: Thomas Gleixner 
Signed-off-by: Stephen Boyd 
---
 include/linux/interrupt.h |  5 +
 kernel/irq/devres.c   | 45 +
 2 files changed, 50 insertions(+)

diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 0053adde0ed9..a2678d35b5a2 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -158,6 +158,11 @@ devm_request_irq(struct device *dev, unsigned int irq, 
irq_handler_t handler,
 devname, dev_id);
 }
 
+extern int __must_check
+devm_request_any_context_irq(struct device *dev, unsigned int irq,
+irq_handler_t handler, unsigned long irqflags,
+const char *devname, void *dev_id);
+
 extern void devm_free_irq(struct device *dev, unsigned int irq, void *dev_id);
 
 /*
diff --git a/kernel/irq/devres.c b/kernel/irq/devres.c
index bd8e788d71e0..1ef0606797c9 100644
--- a/kernel/irq/devres.c
+++ b/kernel/irq/devres.c
@@ -73,6 +73,51 @@ int devm_request_threaded_irq(struct device *dev, unsigned 
int irq,
 EXPORT_SYMBOL(devm_request_threaded_irq);
 
 /**
+ * devm_request_any_context_irq - allocate an interrupt line for a managed 
device
+ * @dev: device to request interrupt for
+ * @irq: Interrupt line to allocate
+ * @handler: Function to be called when the IRQ occurs
+ * @thread_fn: function to be called in a threaded interrupt context. NULL
+ * for devices which handle everything in @handler
+ * @irqflags: Interrupt type flags
+ * @devname: An ascii name for the claiming device
+ * @dev_id: A cookie passed back to the handler function
+ *
+ * Except for the extra @dev argument, this function takes the
+ * same arguments and performs the same function as
+ * request_any_context_irq().  IRQs requested with this function will be
+ * automatically freed on driver detach.
+ *
+ * If an IRQ allocated with this function needs to be freed
+ * separately, devm_free_irq() must be used.
+ */
+int devm_request_any_context_irq(struct device *dev, unsigned int irq,
+ irq_handler_t handler, unsigned long irqflags,
+ const char *devname, void *dev_id)
+{
+   struct irq_devres *dr;
+   int rc;
+
+   dr = devres_alloc(devm_irq_release, sizeof(struct irq_devres),
+ GFP_KERNEL);
+   if (!dr)
+   return -ENOMEM;
+
+   rc = request_any_context_irq(irq, handler, irqflags, devname, dev_id);
+   if (rc) {
+   devres_free(dr);
+   return rc;
+   }
+
+   dr->irq = irq;
+   dr->dev_id = dev_id;
+   devres_add(dev, dr);
+
+   return 0;
+}
+EXPORT_SYMBOL(devm_request_any_context_irq);
+
+/**
  * devm_free_irq - free an interrupt
  * @dev: device to free interrupt for
  * @irq: Interrupt line to free
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 10/10] devicetree: bindings: Document PM8921/8058 vibrators

2014-01-02 Thread Stephen Boyd
Document the vibration device found on PM8921 and PM8058 PMICs.

Cc: 
Signed-off-by: Stephen Boyd 
---
 .../devicetree/bindings/input/qcom,pm8xxx-vib.txt| 16 
 1 file changed, 16 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/input/qcom,pm8xxx-vib.txt

diff --git a/Documentation/devicetree/bindings/input/qcom,pm8xxx-vib.txt 
b/Documentation/devicetree/bindings/input/qcom,pm8xxx-vib.txt
new file mode 100644
index ..dca1b8872cf1
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/qcom,pm8xxx-vib.txt
@@ -0,0 +1,16 @@
+Qualcomm PM8xxx PMIC Vibrator
+
+PROPERTIES
+
+- compatible:
+   Usage: required
+   Value type: 
+   Definition: must be one of:
+   "qcom,pm8058-vib"
+   "qcom,pm8921-vib"
+
+EXAMPLE
+
+   vibrator {
+   compatible = "qcom,pm8058-vib";
+   };
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 04/10] Input: pmic8xxx-keypad - Migrate to regmap APIs

2014-01-02 Thread Stephen Boyd
Use the regmap APIs for this driver instead of custom pm8xxx
APIs. This breaks this driver's dependency on the pm8xxx APIs and
allows us to easily port it to other bus protocols in the future.

Signed-off-by: Stephen Boyd 
---
 drivers/input/keyboard/pmic8xxx-keypad.c | 81 
 1 file changed, 29 insertions(+), 52 deletions(-)

diff --git a/drivers/input/keyboard/pmic8xxx-keypad.c 
b/drivers/input/keyboard/pmic8xxx-keypad.c
index 4e6bfbf94ae4..c6d3d216ffa7 100644
--- a/drivers/input/keyboard/pmic8xxx-keypad.c
+++ b/drivers/input/keyboard/pmic8xxx-keypad.c
@@ -19,8 +19,8 @@
 #include 
 #include 
 #include 
+#include 
 
-#include 
 #include 
 #include 
 
@@ -87,6 +87,7 @@
  * struct pmic8xxx_kp - internal keypad data structure
  * @pdata - keypad platform data pointer
  * @input - input device pointer for keypad
+ * @regmap - regmap handle
  * @key_sense_irq - key press/release irq number
  * @key_stuck_irq - key stuck notification irq number
  * @keycodes - array to hold the key codes
@@ -98,6 +99,7 @@
 struct pmic8xxx_kp {
const struct pm8xxx_keypad_platform_data *pdata;
struct input_dev *input;
+   struct regmap *regmap;
int key_sense_irq;
int key_stuck_irq;
 
@@ -110,33 +112,6 @@ struct pmic8xxx_kp {
u8 ctrl_reg;
 };
 
-static int pmic8xxx_kp_write_u8(struct pmic8xxx_kp *kp,
-u8 data, u16 reg)
-{
-   int rc;
-
-   rc = pm8xxx_writeb(kp->dev->parent, reg, data);
-   return rc;
-}
-
-static int pmic8xxx_kp_read(struct pmic8xxx_kp *kp,
-u8 *data, u16 reg, unsigned num_bytes)
-{
-   int rc;
-
-   rc = pm8xxx_read_buf(kp->dev->parent, reg, data, num_bytes);
-   return rc;
-}
-
-static int pmic8xxx_kp_read_u8(struct pmic8xxx_kp *kp,
-u8 *data, u16 reg)
-{
-   int rc;
-
-   rc = pmic8xxx_kp_read(kp, data, reg, 1);
-   return rc;
-}
-
 static u8 pmic8xxx_col_state(struct pmic8xxx_kp *kp, u8 col)
 {
/* all keys pressed on that particular row? */
@@ -161,9 +136,9 @@ static u8 pmic8xxx_col_state(struct pmic8xxx_kp *kp, u8 col)
 static int pmic8xxx_chk_sync_read(struct pmic8xxx_kp *kp)
 {
int rc;
-   u8 scan_val;
+   unsigned int scan_val;
 
-   rc = pmic8xxx_kp_read_u8(kp, &scan_val, KEYP_SCAN);
+   rc = regmap_read(kp->regmap, KEYP_SCAN, &scan_val);
if (rc < 0) {
dev_err(kp->dev, "Error reading KEYP_SCAN reg, rc=%d\n", rc);
return rc;
@@ -171,7 +146,7 @@ static int pmic8xxx_chk_sync_read(struct pmic8xxx_kp *kp)
 
scan_val |= 0x1;
 
-   rc = pmic8xxx_kp_write_u8(kp, scan_val, KEYP_SCAN);
+   rc = regmap_write(kp->regmap, KEYP_SCAN, scan_val);
if (rc < 0) {
dev_err(kp->dev, "Error writing KEYP_SCAN reg, rc=%d\n", rc);
return rc;
@@ -187,26 +162,24 @@ static int pmic8xxx_kp_read_data(struct pmic8xxx_kp *kp, 
u16 *state,
u16 data_reg, int read_rows)
 {
int rc, row;
-   u8 new_data[PM8XXX_MAX_ROWS];
+   unsigned int val;
 
-   rc = pmic8xxx_kp_read(kp, new_data, data_reg, read_rows);
-   if (rc)
-   return rc;
-
-   for (row = 0; row < kp->pdata->num_rows; row++) {
-   dev_dbg(kp->dev, "new_data[%d] = %d\n", row,
-   new_data[row]);
-   state[row] = pmic8xxx_col_state(kp, new_data[row]);
+   for (row = 0; row < read_rows; row++) {
+   rc = regmap_read(kp->regmap, data_reg, &val);
+   if (rc)
+   return rc;
+   dev_dbg(kp->dev, "%d = %d\n", row, val);
+   state[row] = pmic8xxx_col_state(kp, val);
}
 
-   return rc;
+   return 0;
 }
 
 static int pmic8xxx_kp_read_matrix(struct pmic8xxx_kp *kp, u16 *new_state,
 u16 *old_state)
 {
int rc, read_rows;
-   u8 scan_val;
+   unsigned int scan_val;
 
if (kp->pdata->num_rows < PM8XXX_MIN_ROWS)
read_rows = PM8XXX_MIN_ROWS;
@@ -236,14 +209,14 @@ static int pmic8xxx_kp_read_matrix(struct pmic8xxx_kp 
*kp, u16 *new_state,
/* 4 * 32KHz clocks */
udelay((4 * DIV_ROUND_UP(USEC_PER_SEC, KEYP_CLOCK_FREQ)) + 1);
 
-   rc = pmic8xxx_kp_read_u8(kp, &scan_val, KEYP_SCAN);
+   rc = regmap_read(kp->regmap, KEYP_SCAN, &scan_val);
if (rc < 0) {
dev_err(kp->dev, "Error reading KEYP_SCAN reg, rc=%d\n", rc);
return rc;
}
 
scan_val &= 0xFE;
-   rc = pmic8xxx_kp_write_u8(kp, scan_val, KEYP_SCAN);
+   rc = regmap_write(kp->regmap, KEYP_SCAN, scan_val);
if (rc < 0)
dev_err(kp->dev, "Error writing KEYP_SCAN reg, rc=%d\n", rc);
 
@@ -379,10 +352,10 @@ static irqreturn_t pmic8xxx_kp_stuck_irq(int irq, void 
*data)
 static irqreturn_t pmic8xxx_kp_irq(int irq, void *da

[PATCH v2 09/10] devicetree: bindings: Document PM8921/8058 power keys

2014-01-02 Thread Stephen Boyd
Document the power key found on PM8921 and PM8058 PMICs.

Cc: 
Signed-off-by: Stephen Boyd 
---
 .../bindings/input/qcom,pm8xxx-pwrkey.txt  | 39 ++
 1 file changed, 39 insertions(+)
 create mode 100644 
Documentation/devicetree/bindings/input/qcom,pm8xxx-pwrkey.txt

diff --git a/Documentation/devicetree/bindings/input/qcom,pm8xxx-pwrkey.txt 
b/Documentation/devicetree/bindings/input/qcom,pm8xxx-pwrkey.txt
new file mode 100644
index ..e124d9f33632
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/qcom,pm8xxx-pwrkey.txt
@@ -0,0 +1,39 @@
+Qualcomm PM8xxx PMIC Power Key
+
+PROPERTIES
+
+- compatible:
+   Usage: required
+   Value type: 
+   Definition: must be one of:
+   "qcom,pm8058-pwrkey"
+   "qcom,pm8921-pwrkey"
+- interrupts:
+   Usage: required
+   Value type: 
+   Definition: the first interrupt specifies the key release interrupt
+   and the second interrupt specifies the key press interrupt.
+   The format of the specifier is defined by the binding
+   document describing the node's interrupt parent.
+
+- debounce:
+   Usage: optional
+   Value type: 
+   Definition: time in microseconds that key must be pressed or release
+   for state change interrupt to trigger.
+
+- pull-up:
+   Usage: optional
+   Value type: 
+   Definition: presence of this property indicates that the KPDPWR_N pin
+   should be configured for pull up.
+
+EXAMPLE
+
+   pwrkey {
+   compatible = "qcom,pm8921-pwrkey";
+   interrupt-parent = <&pmicintc>;
+   interrupts = <50 1>, <51 1>;
+   debounce = <15625>;
+   pull-up;
+   };
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 07/10] Input: pmic8xxx-keypad - Migrate to DT

2014-01-02 Thread Stephen Boyd
The driver is only supported on DT enabled platforms. Convert the
driver to DT so that it can probe properly.

Signed-off-by: Stephen Boyd 
---
 drivers/input/keyboard/pmic8xxx-keypad.c | 148 ++-
 include/linux/input/pmic8xxx-keypad.h|  52 ---
 2 files changed, 85 insertions(+), 115 deletions(-)
 delete mode 100644 include/linux/input/pmic8xxx-keypad.h

diff --git a/drivers/input/keyboard/pmic8xxx-keypad.c 
b/drivers/input/keyboard/pmic8xxx-keypad.c
index c6d3d216ffa7..d2e43073d76e 100644
--- a/drivers/input/keyboard/pmic8xxx-keypad.c
+++ b/drivers/input/keyboard/pmic8xxx-keypad.c
@@ -20,9 +20,10 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include 
-#include 
 
 #define PM8XXX_MAX_ROWS18
 #define PM8XXX_MAX_COLS8
@@ -85,7 +86,8 @@
 
 /**
  * struct pmic8xxx_kp - internal keypad data structure
- * @pdata - keypad platform data pointer
+ * @num_cols - number of columns of keypad
+ * @num_rows - number of row of keypad
  * @input - input device pointer for keypad
  * @regmap - regmap handle
  * @key_sense_irq - key press/release irq number
@@ -97,7 +99,8 @@
  * @ctrl_reg - control register value
  */
 struct pmic8xxx_kp {
-   const struct pm8xxx_keypad_platform_data *pdata;
+   unsigned int num_rows;
+   unsigned int num_cols;
struct input_dev *input;
struct regmap *regmap;
int key_sense_irq;
@@ -116,9 +119,9 @@ static u8 pmic8xxx_col_state(struct pmic8xxx_kp *kp, u8 col)
 {
/* all keys pressed on that particular row? */
if (col == 0x00)
-   return 1 << kp->pdata->num_cols;
+   return 1 << kp->num_cols;
else
-   return col & ((1 << kp->pdata->num_cols) - 1);
+   return col & ((1 << kp->num_cols) - 1);
 }
 
 /*
@@ -181,10 +184,10 @@ static int pmic8xxx_kp_read_matrix(struct pmic8xxx_kp 
*kp, u16 *new_state,
int rc, read_rows;
unsigned int scan_val;
 
-   if (kp->pdata->num_rows < PM8XXX_MIN_ROWS)
+   if (kp->num_rows < PM8XXX_MIN_ROWS)
read_rows = PM8XXX_MIN_ROWS;
else
-   read_rows = kp->pdata->num_rows;
+   read_rows = kp->num_rows;
 
pmic8xxx_chk_sync_read(kp);
 
@@ -228,13 +231,13 @@ static void __pmic8xxx_kp_scan_matrix(struct pmic8xxx_kp 
*kp, u16 *new_state,
 {
int row, col, code;
 
-   for (row = 0; row < kp->pdata->num_rows; row++) {
+   for (row = 0; row < kp->num_rows; row++) {
int bits_changed = new_state[row] ^ old_state[row];
 
if (!bits_changed)
continue;
 
-   for (col = 0; col < kp->pdata->num_cols; col++) {
+   for (col = 0; col < kp->num_cols; col++) {
if (!(bits_changed & (1 << col)))
continue;
 
@@ -260,9 +263,9 @@ static bool pmic8xxx_detect_ghost_keys(struct pmic8xxx_kp 
*kp, u16 *new_state)
u16 check, row_state;
 
check = 0;
-   for (row = 0; row < kp->pdata->num_rows; row++) {
+   for (row = 0; row < kp->num_rows; row++) {
row_state = (~new_state[row]) &
-((1 << kp->pdata->num_cols) - 1);
+((1 << kp->num_cols) - 1);
 
if (hweight16(row_state) > 1) {
if (found_first == -1)
@@ -370,8 +373,13 @@ static irqreturn_t pmic8xxx_kp_irq(int irq, void *data)
return IRQ_HANDLED;
 }
 
-static int pmic8xxx_kpd_init(struct pmic8xxx_kp *kp)
+static int pmic8xxx_kpd_init(struct pmic8xxx_kp *kp,
+struct platform_device *pdev)
 {
+   const struct device_node *of_node = pdev->dev.of_node;
+   unsigned int scan_delay_ms;
+   unsigned int row_hold_ns;
+   unsigned int debounce_ms;
int bits, rc, cycles;
u8 scan_val = 0, ctrl_val = 0;
static const u8 row_bits[] = {
@@ -379,18 +387,18 @@ static int pmic8xxx_kpd_init(struct pmic8xxx_kp *kp)
};
 
/* Find column bits */
-   if (kp->pdata->num_cols < KEYP_CTRL_SCAN_COLS_MIN)
+   if (kp->num_cols < KEYP_CTRL_SCAN_COLS_MIN)
bits = 0;
else
-   bits = kp->pdata->num_cols - KEYP_CTRL_SCAN_COLS_MIN;
+   bits = kp->num_cols - KEYP_CTRL_SCAN_COLS_MIN;
ctrl_val = (bits & KEYP_CTRL_SCAN_COLS_BITS) <<
KEYP_CTRL_SCAN_COLS_SHIFT;
 
/* Find row bits */
-   if (kp->pdata->num_rows < KEYP_CTRL_SCAN_ROWS_MIN)
+   if (kp->num_rows < KEYP_CTRL_SCAN_ROWS_MIN)
bits = 0;
else
-   bits = row_bits[kp->pdata->num_rows - KEYP_CTRL_SCAN_ROWS_MIN];
+   bits = row_bits[kp->num_rows - KEYP_CTRL_SCAN_ROWS_MIN];
 
ctrl_val |= (bits << KEYP_CTRL_SCAN_ROWS_SHIFT);
 
@@ -400,15 +408,44 @@ static int pmic8xxx_kpd_init(struct pmic8xxx_kp *kp)
return rc;
}
 
-   bits = (k

[PATCH v2 08/10] devicetree: bindings: Document PM8921/8058 keypads

2014-01-02 Thread Stephen Boyd
Document the keypad device found on PM8921 and PM8058 PMICs.

Cc: 
Signed-off-by: Stephen Boyd 
---
 .../bindings/input/qcom,pm8xxx-keypad.txt  | 72 ++
 1 file changed, 72 insertions(+)
 create mode 100644 
Documentation/devicetree/bindings/input/qcom,pm8xxx-keypad.txt

diff --git a/Documentation/devicetree/bindings/input/qcom,pm8xxx-keypad.txt 
b/Documentation/devicetree/bindings/input/qcom,pm8xxx-keypad.txt
new file mode 100644
index ..aa5a9c6cf512
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/qcom,pm8xxx-keypad.txt
@@ -0,0 +1,72 @@
+Qualcomm PM8xxx PMIC Keypad
+
+PROPERTIES
+
+- compatible:
+   Usage: required
+   Value type: 
+   Definition: must be one of:
+   "qcom,pm8058-keypad"
+   "qcom,pm8921-keypad"
+- interrupts:
+   Usage: required
+   Value type: 
+   Definition: the first interrupt specifies the key sense interrupt
+   and the second interrupt specifies the key stuck interrupt.
+   The format of the specifier is defined by the binding
+   document describing the node's interrupt parent.
+
+- linux,keymap:
+   Usage: required
+   Value type: 
+   Definition: the linux keymap. More information can be found in
+   input/matrix-keymap.txt.
+
+- keypad,num-rows:
+   Usage: required
+   Value type: 
+   Definition: number of rows in the keymap. More information can be found
+   in input/matrix-keymap.txt.
+
+- keypad,num-columns:
+   Usage: required
+   Value type: 
+   Definition: number of columns in the keymap. More information can be
+   found in input/matrix-keymap.txt.
+
+- debounce:
+   Usage: optional
+   Value type: 
+   Definition: time in microseconds that key must be pressed or release
+   for key sense interrupt to trigger.
+
+- scan-delay:
+   Usage: optional
+   Value type: 
+   Definition: time in microseconds to pause between successive scans
+   of the matrix array.
+
+- row-hold:
+   Usage: optional
+   Value type: 
+   Definition: time in nanoseconds to pause between scans of each row in
+   the matrix array.
+
+EXAMPLE
+
+   keypad {
+   compatible = "qcom,pm8921-keypad";
+   interrupt-parent = <&pmicintc>;
+   interrupts = <74 1>, <75 1>;
+   linux,keymap = <
+   MATRIX_KEY(0, 0, KEY_VOLUMEUP)
+   MATRIX_KEY(0, 1, KEY_VOLUMEDOWN)
+   MATRIX_KEY(0, 2, KEY_CAMERA_FOCUS)
+   MATRIX_KEY(0, 3, KEY_CAMERA)
+   >;
+   keypad,num-rows = <1>;
+   keypad,num-columns = <5>;
+   debounce = <15>;
+   scan-delay = <32>;
+   row-hold = <91500>;
+   };
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 06/10] Input: pm8xxx-vibrator - Add DT match table

2014-01-02 Thread Stephen Boyd
The driver is only supported on DT enabled platforms. Convert the
driver to DT so that it can probe properly.

Signed-off-by: Stephen Boyd 
---
 drivers/input/misc/pm8xxx-vibrator.c | 8 
 1 file changed, 8 insertions(+)

diff --git a/drivers/input/misc/pm8xxx-vibrator.c 
b/drivers/input/misc/pm8xxx-vibrator.c
index 28251560249d..458d51b88be5 100644
--- a/drivers/input/misc/pm8xxx-vibrator.c
+++ b/drivers/input/misc/pm8xxx-vibrator.c
@@ -142,6 +142,13 @@ static int pm8xxx_vib_play_effect(struct input_dev *dev, 
void *data,
return 0;
 }
 
+static const struct of_device_id pm8xxx_vib_id_table[] = {
+   { .compatible = "qcom,pm8058-vib" },
+   { .compatible = "qcom,pm8921-vib" },
+   { }
+};
+MODULE_DEVICE_TABLE(of, pm8xxx_vib_id_table);
+
 static int pm8xxx_vib_probe(struct platform_device *pdev)
 
 {
@@ -221,6 +228,7 @@ static struct platform_driver pm8xxx_vib_driver = {
.name   = "pm8xxx-vib",
.owner  = THIS_MODULE,
.pm = &pm8xxx_vib_pm_ops,
+   .of_match_table = pm8xxx_vib_id_table,
},
 };
 module_platform_driver(pm8xxx_vib_driver);
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 03/10] Input: pmic8xxx-keypad - Switch to using managed resources

2014-01-02 Thread Stephen Boyd
Simplify the error paths and reduce the lines of code in this
driver by using the devm_* APIs.

Signed-off-by: Stephen Boyd 
---
 drivers/input/keyboard/pmic8xxx-keypad.c | 62 +---
 1 file changed, 17 insertions(+), 45 deletions(-)

diff --git a/drivers/input/keyboard/pmic8xxx-keypad.c 
b/drivers/input/keyboard/pmic8xxx-keypad.c
index 2c9f19ac35ea..4e6bfbf94ae4 100644
--- a/drivers/input/keyboard/pmic8xxx-keypad.c
+++ b/drivers/input/keyboard/pmic8xxx-keypad.c
@@ -586,7 +586,7 @@ static int pmic8xxx_kp_probe(struct platform_device *pdev)
return -EINVAL;
}
 
-   kp = kzalloc(sizeof(*kp), GFP_KERNEL);
+   kp = devm_kzalloc(&pdev->dev, sizeof(*kp), GFP_KERNEL);
if (!kp)
return -ENOMEM;
 
@@ -595,32 +595,27 @@ static int pmic8xxx_kp_probe(struct platform_device *pdev)
kp->pdata   = pdata;
kp->dev = &pdev->dev;
 
-   kp->input = input_allocate_device();
+   kp->input = devm_input_allocate_device(&pdev->dev);
if (!kp->input) {
dev_err(&pdev->dev, "unable to allocate input device\n");
-   rc = -ENOMEM;
-   goto err_alloc_device;
+   return -ENOMEM;
}
 
kp->key_sense_irq = platform_get_irq(pdev, 0);
if (kp->key_sense_irq < 0) {
dev_err(&pdev->dev, "unable to get keypad sense irq\n");
-   rc = -ENXIO;
-   goto err_get_irq;
+   return kp->key_sense_irq;
}
 
kp->key_stuck_irq = platform_get_irq(pdev, 1);
if (kp->key_stuck_irq < 0) {
dev_err(&pdev->dev, "unable to get keypad stuck irq\n");
-   rc = -ENXIO;
-   goto err_get_irq;
+   return kp->key_stuck_irq;
}
 
kp->input->name = pdata->input_name ? : "PMIC8XXX keypad";
kp->input->phys = pdata->input_phys_device ? : "pmic8xxx_keypad/input0";
 
-   kp->input->dev.parent   = &pdev->dev;
-
kp->input->id.bustype   = BUS_I2C;
kp->input->id.version   = 0x0001;
kp->input->id.product   = 0x0001;
@@ -634,7 +629,7 @@ static int pmic8xxx_kp_probe(struct platform_device *pdev)
kp->keycodes, kp->input);
if (rc) {
dev_err(&pdev->dev, "failed to build keymap\n");
-   goto err_get_irq;
+   return rc;
}
 
if (pdata->rep)
@@ -650,7 +645,7 @@ static int pmic8xxx_kp_probe(struct platform_device *pdev)
rc = pmic8xxx_kpd_init(kp);
if (rc < 0) {
dev_err(&pdev->dev, "unable to initialize keypad controller\n");
-   goto err_get_irq;
+   return rc;
}
 
rc = pmic8xxx_kp_config_gpio(pdata->cols_gpio_start,
@@ -667,24 +662,26 @@ static int pmic8xxx_kp_probe(struct platform_device *pdev)
goto err_gpio_config;
}
 
-   rc = request_any_context_irq(kp->key_sense_irq, pmic8xxx_kp_irq,
-IRQF_TRIGGER_RISING, "pmic-keypad", kp);
+   rc = devm_request_any_context_irq(&pdev->dev, kp->key_sense_irq,
+   pmic8xxx_kp_irq, IRQF_TRIGGER_RISING, "pmic-keypad",
+   kp);
if (rc < 0) {
dev_err(&pdev->dev, "failed to request keypad sense irq\n");
-   goto err_get_irq;
+   return rc;
}
 
-   rc = request_any_context_irq(kp->key_stuck_irq, pmic8xxx_kp_stuck_irq,
-IRQF_TRIGGER_RISING, "pmic-keypad-stuck", kp);
+   rc = devm_request_any_context_irq(&pdev->dev, kp->key_stuck_irq,
+   pmic8xxx_kp_stuck_irq, IRQF_TRIGGER_RISING,
+   "pmic-keypad-stuck", kp);
if (rc < 0) {
dev_err(&pdev->dev, "failed to request keypad stuck irq\n");
-   goto err_req_stuck_irq;
+   return rc;
}
 
rc = pmic8xxx_kp_read_u8(kp, &ctrl_val, KEYP_CTRL);
if (rc < 0) {
dev_err(&pdev->dev, "failed to read KEYP_CTRL register\n");
-   goto err_pmic_reg_read;
+   return rc;
}
 
kp->ctrl_reg = ctrl_val;
@@ -692,36 +689,12 @@ static int pmic8xxx_kp_probe(struct platform_device *pdev)
rc = input_register_device(kp->input);
if (rc < 0) {
dev_err(&pdev->dev, "unable to register keypad input device\n");
-   goto err_pmic_reg_read;
+   return rc;
}
 
device_init_wakeup(&pdev->dev, pdata->wakeup);
 
return 0;
-
-err_pmic_reg_read:
-   free_irq(kp->key_stuck_irq, kp);
-err_req_stuck_irq:
-   free_irq(kp->key_sense_irq, kp);
-err_gpio_config:
-err_get_irq:
-   input_free_device(kp->input);
-err_alloc_device:
-   kfree(kp);
-   return rc;
-}
-
-static int pmic8xxx_kp_remove(struct platform_device *pdev)
-{
-   struct pmic8xxx_kp *kp = platform_get_drvda

Re: [PATCH 2/7] Input: pmic8xxx-pwrkey - Migrate to regmap APIs

2014-01-02 Thread Mark Brown
On Thu, Jan 02, 2014 at 11:17:57AM -0800, Dmitry Torokhov wrote:
> On Thu, Jan 02, 2014 at 06:49:59PM +, Mark Brown wrote:
> > On Sun, Dec 15, 2013 at 03:33:37AM -0800, Dmitry Torokhov wrote:

> > > > +   regmap = dev_get_regmap(pdev->dev.parent, NULL);
> > > > +   if (!regmap)
> > > > +   return -ENODEV;

> > > And you are leaking memory here...

> > He's not, dev_get_regmap() just gets a pointer to an existing regmap -
> > no reference is taken and nothing is allocated.  It's a helper that's

> I was not talking about data returned by dev_get_regmap() but all other
> memory that was allocated before as this was pre devm conversion of the
> driver.

Ah, OK - I thought you meant that as that was the code immediately prior
to your reply.  Sorry for the confusion.


signature.asc
Description: Digital signature


Re: [PATCH v2 06/10] Input: pm8xxx-vibrator - Add DT match table

2014-01-02 Thread Dmitry Torokhov
Hi Stephen,

On Thu, Jan 02, 2014 at 04:37:36PM -0800, Stephen Boyd wrote:
> The driver is only supported on DT enabled platforms. Convert the
> driver to DT so that it can probe properly.

I do not see MFD_PM8XXX depending on OF, should it be added if it only
supported on DT?

Thanks.

> 
> Signed-off-by: Stephen Boyd 
> ---
>  drivers/input/misc/pm8xxx-vibrator.c | 8 
>  1 file changed, 8 insertions(+)
> 
> diff --git a/drivers/input/misc/pm8xxx-vibrator.c 
> b/drivers/input/misc/pm8xxx-vibrator.c
> index 28251560249d..458d51b88be5 100644
> --- a/drivers/input/misc/pm8xxx-vibrator.c
> +++ b/drivers/input/misc/pm8xxx-vibrator.c
> @@ -142,6 +142,13 @@ static int pm8xxx_vib_play_effect(struct input_dev *dev, 
> void *data,
>   return 0;
>  }
>  
> +static const struct of_device_id pm8xxx_vib_id_table[] = {
> + { .compatible = "qcom,pm8058-vib" },
> + { .compatible = "qcom,pm8921-vib" },
> + { }
> +};
> +MODULE_DEVICE_TABLE(of, pm8xxx_vib_id_table);
> +
>  static int pm8xxx_vib_probe(struct platform_device *pdev)
>  
>  {
> @@ -221,6 +228,7 @@ static struct platform_driver pm8xxx_vib_driver = {
>   .name   = "pm8xxx-vib",
>   .owner  = THIS_MODULE,
>   .pm = &pm8xxx_vib_pm_ops,
> + .of_match_table = pm8xxx_vib_id_table,
>   },
>  };
>  module_platform_driver(pm8xxx_vib_driver);
> -- 
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> hosted by The Linux Foundation
> 

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 06/10] Input: pm8xxx-vibrator - Add DT match table

2014-01-02 Thread Stephen Boyd
On 01/02/14 17:17, Dmitry Torokhov wrote:
> Hi Stephen,
>
> On Thu, Jan 02, 2014 at 04:37:36PM -0800, Stephen Boyd wrote:
>> The driver is only supported on DT enabled platforms. Convert the
>> driver to DT so that it can probe properly.
> I do not see MFD_PM8XXX depending on OF, should it be added if it only
> supported on DT?

No that would unnecessarily limit the compile coverage of this driver.
This one is so simple that it doesn't even use any OF APIs because it is
all hidden behind the platform bus.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html