2 * Toggles a GPIO pin to power down a device
4 * Jamie Lentin <jm@lentin.co.uk>
5 * Andrew Lunn <andrew@lunn.ch>
7 * Copyright (C) 2012 Jamie Lentin
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/platform_device.h>
18 #include <linux/gpio/consumer.h>
19 #include <linux/of_platform.h>
20 #include <linux/module.h>
23 * Hold configuration here, cannot be more than one instance of the driver
24 * since pm_power_off itself is global.
26 static struct gpio_desc
*reset_gpio
;
28 static void gpio_poweroff_do_poweroff(void)
32 /* drive it active, also inactive->active edge */
33 gpiod_direction_output(reset_gpio
, 1);
35 /* drive inactive, also active->inactive edge */
36 gpiod_set_value(reset_gpio
, 0);
39 /* drive it active, also inactive->active edge */
40 gpiod_set_value(reset_gpio
, 1);
42 /* give it some time */
48 static int gpio_poweroff_probe(struct platform_device
*pdev
)
51 enum gpiod_flags flags
;
53 /* If a pm_power_off function has already been added, leave it alone */
54 if (pm_power_off
!= NULL
) {
56 "%s: pm_power_off function already registered",
61 input
= of_property_read_bool(pdev
->dev
.of_node
, "input");
65 flags
= GPIOD_OUT_LOW
;
67 reset_gpio
= devm_gpiod_get(&pdev
->dev
, NULL
, flags
);
68 if (IS_ERR(reset_gpio
))
69 return PTR_ERR(reset_gpio
);
71 pm_power_off
= &gpio_poweroff_do_poweroff
;
75 static int gpio_poweroff_remove(struct platform_device
*pdev
)
77 if (pm_power_off
== &gpio_poweroff_do_poweroff
)
83 static const struct of_device_id of_gpio_poweroff_match
[] = {
84 { .compatible
= "gpio-poweroff", },
88 static struct platform_driver gpio_poweroff_driver
= {
89 .probe
= gpio_poweroff_probe
,
90 .remove
= gpio_poweroff_remove
,
92 .name
= "poweroff-gpio",
93 .of_match_table
= of_gpio_poweroff_match
,
97 module_platform_driver(gpio_poweroff_driver
);
99 MODULE_AUTHOR("Jamie Lentin <jm@lentin.co.uk>");
100 MODULE_DESCRIPTION("GPIO poweroff driver");
101 MODULE_LICENSE("GPL v2");
102 MODULE_ALIAS("platform:poweroff-gpio");