blob: ce849bc9b26940d10972942cc939c7a60639a659 [file] [log] [blame]
Jamie Lentin96ff0f52012-11-17 09:51:04 +01001/*
2 * Toggles a GPIO pin to power down a device
3 *
4 * Jamie Lentin <jm@lentin.co.uk>
5 * Andrew Lunn <andrew@lunn.ch>
6 *
7 * Copyright (C) 2012 Jamie Lentin
8 *
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.
12 *
13 */
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/delay.h>
17#include <linux/platform_device.h>
Linus Walleij86336ba2014-07-07 12:34:32 +020018#include <linux/gpio/consumer.h>
Jamie Lentin96ff0f52012-11-17 09:51:04 +010019#include <linux/of_platform.h>
Jamie Lentin96ff0f52012-11-17 09:51:04 +010020#include <linux/module.h>
21
22/*
23 * Hold configuration here, cannot be more than one instance of the driver
24 * since pm_power_off itself is global.
25 */
Linus Walleij86336ba2014-07-07 12:34:32 +020026static struct gpio_desc *reset_gpio;
Jamie Lentin96ff0f52012-11-17 09:51:04 +010027
28static void gpio_poweroff_do_poweroff(void)
29{
Linus Walleij86336ba2014-07-07 12:34:32 +020030 BUG_ON(!reset_gpio);
Jamie Lentin96ff0f52012-11-17 09:51:04 +010031
Andrew Lunn53435272013-01-06 11:10:35 +010032 /* drive it active, also inactive->active edge */
Linus Walleij86336ba2014-07-07 12:34:32 +020033 gpiod_direction_output(reset_gpio, 1);
Jamie Lentin96ff0f52012-11-17 09:51:04 +010034 mdelay(100);
Andrew Lunn53435272013-01-06 11:10:35 +010035 /* drive inactive, also active->inactive edge */
Linus Walleij86336ba2014-07-07 12:34:32 +020036 gpiod_set_value(reset_gpio, 0);
Jamie Lentin96ff0f52012-11-17 09:51:04 +010037 mdelay(100);
Andrew Lunn53435272013-01-06 11:10:35 +010038
39 /* drive it active, also inactive->active edge */
Linus Walleij86336ba2014-07-07 12:34:32 +020040 gpiod_set_value(reset_gpio, 1);
Jamie Lentin96ff0f52012-11-17 09:51:04 +010041
42 /* give it some time */
43 mdelay(3000);
44
45 WARN_ON(1);
46}
47
Greg Kroah-Hartman6d2cea42012-12-21 15:04:54 -080048static int gpio_poweroff_probe(struct platform_device *pdev)
Jamie Lentin96ff0f52012-11-17 09:51:04 +010049{
Jamie Lentin96ff0f52012-11-17 09:51:04 +010050 bool input = false;
Jamie Lentin96ff0f52012-11-17 09:51:04 +010051
52 /* If a pm_power_off function has already been added, leave it alone */
53 if (pm_power_off != NULL) {
Linus Walleij86336ba2014-07-07 12:34:32 +020054 dev_err(&pdev->dev,
55 "%s: pm_power_off function already registered",
Jamie Lentin96ff0f52012-11-17 09:51:04 +010056 __func__);
57 return -EBUSY;
58 }
59
Linus Walleij86336ba2014-07-07 12:34:32 +020060 reset_gpio = devm_gpiod_get(&pdev->dev, NULL);
61 if (IS_ERR(reset_gpio))
62 return PTR_ERR(reset_gpio);
Jamie Lentin96ff0f52012-11-17 09:51:04 +010063
Andrew Lunn53435272013-01-06 11:10:35 +010064 input = of_property_read_bool(pdev->dev.of_node, "input");
Jamie Lentin96ff0f52012-11-17 09:51:04 +010065
Jamie Lentin96ff0f52012-11-17 09:51:04 +010066 if (input) {
Linus Walleij86336ba2014-07-07 12:34:32 +020067 if (gpiod_direction_input(reset_gpio)) {
68 dev_err(&pdev->dev,
69 "Could not set direction of reset GPIO to input\n");
70 return -ENODEV;
Jamie Lentin96ff0f52012-11-17 09:51:04 +010071 }
72 } else {
Linus Walleij86336ba2014-07-07 12:34:32 +020073 if (gpiod_direction_output(reset_gpio, 0)) {
74 dev_err(&pdev->dev,
75 "Could not set direction of reset GPIO\n");
76 return -ENODEV;
Jamie Lentin96ff0f52012-11-17 09:51:04 +010077 }
78 }
79
80 pm_power_off = &gpio_poweroff_do_poweroff;
81 return 0;
Jamie Lentin96ff0f52012-11-17 09:51:04 +010082}
83
Greg Kroah-Hartman6d2cea42012-12-21 15:04:54 -080084static int gpio_poweroff_remove(struct platform_device *pdev)
Jamie Lentin96ff0f52012-11-17 09:51:04 +010085{
Jamie Lentin96ff0f52012-11-17 09:51:04 +010086 if (pm_power_off == &gpio_poweroff_do_poweroff)
87 pm_power_off = NULL;
88
89 return 0;
90}
91
92static const struct of_device_id of_gpio_poweroff_match[] = {
93 { .compatible = "gpio-poweroff", },
94 {},
95};
96
97static struct platform_driver gpio_poweroff_driver = {
98 .probe = gpio_poweroff_probe,
Greg Kroah-Hartman6d2cea42012-12-21 15:04:54 -080099 .remove = gpio_poweroff_remove,
Jamie Lentin96ff0f52012-11-17 09:51:04 +0100100 .driver = {
Andrew Lunn53435272013-01-06 11:10:35 +0100101 .name = "poweroff-gpio",
102 .owner = THIS_MODULE,
103 .of_match_table = of_gpio_poweroff_match,
104 },
Jamie Lentin96ff0f52012-11-17 09:51:04 +0100105};
106
107module_platform_driver(gpio_poweroff_driver);
108
109MODULE_AUTHOR("Jamie Lentin <jm@lentin.co.uk>");
110MODULE_DESCRIPTION("GPIO poweroff driver");
Andrew Lunn53435272013-01-06 11:10:35 +0100111MODULE_LICENSE("GPL v2");
Jamie Lentin96ff0f52012-11-17 09:51:04 +0100112MODULE_ALIAS("platform:poweroff-gpio");