* [PATCH 0/2] Support disable the wakeup event of gpio-charger
@ 2015-02-10 8:12 Chris Zhong
2015-02-10 8:12 ` [PATCH 2/2] power: gpio-charger: support disable the wakeup event Chris Zhong
0 siblings, 1 reply; 4+ messages in thread
From: Chris Zhong @ 2015-02-10 8:12 UTC (permalink / raw)
To: heiko, dianders, dtor, djkurtz, sonnyrao
Cc: linux-rockchip, Chris Zhong, devicetree, linux-pm, Kumar Gala,
linux-kernel, Ian Campbell, Sebastian Reichel,
Dmitry Eremin-Solenikov, Rob Herring, Heiko Stuebner,
David Woodhouse, Pawel Moll, Mark Rutland
If you needn't the wakeup event of gpio-charger, this patch can help.
Please set "gpio-charger,disable-wakeup" in gpio-charger node.
Chris Zhong (2):
dt-bindings: add disable-wakeup property for gpio-charger
power: gpio-charger: support disable the wakeup event
Documentation/devicetree/bindings/power_supply/gpio-charger.txt | 2 ++
drivers/power/gpio-charger.c | 5 ++++-
include/linux/power/gpio-charger.h | 1 +
3 files changed, 7 insertions(+), 1 deletion(-)
--
1.9.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] power: gpio-charger: support disable the wakeup event
2015-02-10 8:12 [PATCH 0/2] Support disable the wakeup event of gpio-charger Chris Zhong
@ 2015-02-10 8:12 ` Chris Zhong
2015-02-10 8:42 ` Dmitry Eremin-Solenikov
0 siblings, 1 reply; 4+ messages in thread
From: Chris Zhong @ 2015-02-10 8:12 UTC (permalink / raw)
To: heiko, dianders, dtor, djkurtz, sonnyrao
Cc: linux-rockchip, Chris Zhong, Sebastian Reichel,
Dmitry Eremin-Solenikov, David Woodhouse, linux-pm, linux-kernel
Support disable the wakeup event of gpio-charger by setting device tree.
Signed-off-by: Chris Zhong <zyw@rock-chips.com>
---
drivers/power/gpio-charger.c | 5 ++++-
include/linux/power/gpio-charger.h | 1 +
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/power/gpio-charger.c b/drivers/power/gpio-charger.c
index b7424c8..06ed22e 100644
--- a/drivers/power/gpio-charger.c
+++ b/drivers/power/gpio-charger.c
@@ -98,6 +98,9 @@ struct gpio_charger_platform_data *gpio_charger_parse_dt(struct device *dev)
pdata->gpio_active_low = !!(flags & OF_GPIO_ACTIVE_LOW);
+ pdata->wakeup = !of_get_property(np, "gpio-charger,disable-wakeup",
+ NULL);
+
pdata->type = POWER_SUPPLY_TYPE_UNKNOWN;
ret = of_property_read_string(np, "charger-type", &chargetype);
if (ret >= 0) {
@@ -198,7 +201,7 @@ static int gpio_charger_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, gpio_charger);
- device_init_wakeup(&pdev->dev, 1);
+ device_init_wakeup(&pdev->dev, pdata->wakeup);
return 0;
diff --git a/include/linux/power/gpio-charger.h b/include/linux/power/gpio-charger.h
index de1dfe0..a5fdef3 100644
--- a/include/linux/power/gpio-charger.h
+++ b/include/linux/power/gpio-charger.h
@@ -33,6 +33,7 @@ struct gpio_charger_platform_data {
int gpio;
int gpio_active_low;
+ int wakeup;
char **supplied_to;
size_t num_supplicants;
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 2/2] power: gpio-charger: support disable the wakeup event
2015-02-10 8:12 ` [PATCH 2/2] power: gpio-charger: support disable the wakeup event Chris Zhong
@ 2015-02-10 8:42 ` Dmitry Eremin-Solenikov
2015-02-10 10:50 ` Chris Zhong
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Eremin-Solenikov @ 2015-02-10 8:42 UTC (permalink / raw)
To: Chris Zhong
Cc: heiko, dianders, dtor, djkurtz, sonnyrao, linux-rockchip,
Sebastian Reichel, David Woodhouse, linux-pm, kernel list
Hello,
2015-02-10 11:12 GMT+03:00 Chris Zhong <zyw@rock-chips.com>:
> Support disable the wakeup event of gpio-charger by setting device tree.
I have the feelink, that this should be a userspace setting, rather than
a kernel/device-tree policy. In the end, the device tree is a hardware
description
and a hardware is capable of waking up the device.
>
> Signed-off-by: Chris Zhong <zyw@rock-chips.com>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] power: gpio-charger: support disable the wakeup event
2015-02-10 8:42 ` Dmitry Eremin-Solenikov
@ 2015-02-10 10:50 ` Chris Zhong
0 siblings, 0 replies; 4+ messages in thread
From: Chris Zhong @ 2015-02-10 10:50 UTC (permalink / raw)
To: Dmitry Eremin-Solenikov
Cc: heiko, dianders, dtor, djkurtz, sonnyrao, linux-rockchip,
Sebastian Reichel, David Woodhouse, linux-pm, kernel list
On 02/10/2015 04:42 PM, Dmitry Eremin-Solenikov wrote:
> Hello,
>
> 2015-02-10 11:12 GMT+03:00 Chris Zhong <zyw@rock-chips.com>:
>> Support disable the wakeup event of gpio-charger by setting device tree.
> I have the feelink, that this should be a userspace setting, rather than
> a kernel/device-tree policy. In the end, the device tree is a hardware
> description
> and a hardware is capable of waking up the device.
Ah, you are right, I think I should modify it in userspace.
Thank you.
>
>> Signed-off-by: Chris Zhong <zyw@rock-chips.com>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-02-10 10:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-10 8:12 [PATCH 0/2] Support disable the wakeup event of gpio-charger Chris Zhong
2015-02-10 8:12 ` [PATCH 2/2] power: gpio-charger: support disable the wakeup event Chris Zhong
2015-02-10 8:42 ` Dmitry Eremin-Solenikov
2015-02-10 10:50 ` Chris Zhong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).