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.h>
19 #include <linux/of_platform.h>
20 #include <linux/of_gpio.h>
21 #include <linux/module.h>
24 * Hold configuration here, cannot be more than one instance of the driver
25 * since pm_power_off itself is global.
27 static int gpio_num = -1;
28 static int gpio_active_low;
30 static void gpio_poweroff_do_poweroff(void)
32 BUG_ON(!gpio_is_valid(gpio_num));
34 /* drive it active, also inactive->active edge */
35 gpio_direction_output(gpio_num, !gpio_active_low);
37 /* drive inactive, also active->inactive edge */
38 gpio_set_value(gpio_num, gpio_active_low);
41 /* drive it active, also inactive->active edge */
42 gpio_set_value(gpio_num, !gpio_active_low);
44 /* give it some time */
50 static int gpio_poweroff_probe(struct platform_device *pdev)
52 enum of_gpio_flags flags;
56 /* If a pm_power_off function has already been added, leave it alone */
57 if (pm_power_off != NULL) {
58 pr_err("%s: pm_power_off function already registered",
63 gpio_num = of_get_gpio_flags(pdev->dev.of_node, 0, &flags);
64 if (!gpio_is_valid(gpio_num))
67 gpio_active_low = flags & OF_GPIO_ACTIVE_LOW;
69 input = of_property_read_bool(pdev->dev.of_node, "input");
71 ret = gpio_request(gpio_num, "poweroff-gpio");
73 pr_err("%s: Could not get GPIO %d", __func__, gpio_num);
77 if (gpio_direction_input(gpio_num)) {
78 pr_err("Could not set direction of GPIO %d to input",
83 if (gpio_direction_output(gpio_num, gpio_active_low)) {
84 pr_err("Could not set direction of GPIO %d", gpio_num);
89 pm_power_off = &gpio_poweroff_do_poweroff;
97 static int gpio_poweroff_remove(struct platform_device *pdev)
100 if (pm_power_off == &gpio_poweroff_do_poweroff)
106 static const struct of_device_id of_gpio_poweroff_match[] = {
107 { .compatible = "gpio-poweroff", },
111 static struct platform_driver gpio_poweroff_driver = {
112 .probe = gpio_poweroff_probe,
113 .remove = gpio_poweroff_remove,
115 .name = "poweroff-gpio",
116 .owner = THIS_MODULE,
117 .of_match_table = of_gpio_poweroff_match,
121 module_platform_driver(gpio_poweroff_driver);
123 MODULE_AUTHOR("Jamie Lentin <jm@lentin.co.uk>");
124 MODULE_DESCRIPTION("GPIO poweroff driver");
125 MODULE_LICENSE("GPL v2");
126 MODULE_ALIAS("platform:poweroff-gpio");