blob: bc61d1165d736d31cdeeb8c678c95a4be311a472 [file] [log] [blame]
Roger Quadrose52817f2015-02-02 12:21:59 +02001/**
2 * drivers/extcon/extcon-usb-gpio.c - USB GPIO extcon driver
3 *
4 * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
5 * Author: Roger Quadros <rogerq@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#include <linux/extcon.h>
Roger Quadros92b7cb52015-08-03 17:40:51 +030018#include <linux/gpio.h>
Geert Uytterhoeven638f9582015-05-05 18:32:20 +020019#include <linux/gpio/consumer.h>
Roger Quadrose52817f2015-02-02 12:21:59 +020020#include <linux/init.h>
21#include <linux/interrupt.h>
22#include <linux/irq.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/of_gpio.h>
26#include <linux/platform_device.h>
Grygorii Strashko12bd0f32016-04-06 20:32:37 +030027#include <linux/pm_wakeirq.h>
Roger Quadrose52817f2015-02-02 12:21:59 +020028#include <linux/slab.h>
29#include <linux/workqueue.h>
30
31#define USB_GPIO_DEBOUNCE_MS 20 /* ms */
32
33struct usb_extcon_info {
34 struct device *dev;
35 struct extcon_dev *edev;
36
37 struct gpio_desc *id_gpiod;
38 int id_irq;
39
40 unsigned long debounce_jiffies;
41 struct delayed_work wq_detcable;
42};
43
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +090044static const unsigned int usb_extcon_cable[] = {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090045 EXTCON_USB,
46 EXTCON_USB_HOST,
47 EXTCON_NONE,
Roger Quadrose52817f2015-02-02 12:21:59 +020048};
49
50static void usb_extcon_detect_cable(struct work_struct *work)
51{
52 int id;
53 struct usb_extcon_info *info = container_of(to_delayed_work(work),
54 struct usb_extcon_info,
55 wq_detcable);
56
57 /* check ID and update cable state */
58 id = gpiod_get_value_cansleep(info->id_gpiod);
59 if (id) {
60 /*
61 * ID = 1 means USB HOST cable detached.
62 * As we don't have event for USB peripheral cable attached,
63 * we simulate USB peripheral attach here.
64 */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090065 extcon_set_cable_state_(info->edev, EXTCON_USB_HOST, false);
66 extcon_set_cable_state_(info->edev, EXTCON_USB, true);
Roger Quadrose52817f2015-02-02 12:21:59 +020067 } else {
68 /*
69 * ID = 0 means USB HOST cable attached.
70 * As we don't have event for USB peripheral cable detached,
71 * we simulate USB peripheral detach here.
72 */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090073 extcon_set_cable_state_(info->edev, EXTCON_USB, false);
74 extcon_set_cable_state_(info->edev, EXTCON_USB_HOST, true);
Roger Quadrose52817f2015-02-02 12:21:59 +020075 }
76}
77
78static irqreturn_t usb_irq_handler(int irq, void *dev_id)
79{
80 struct usb_extcon_info *info = dev_id;
81
82 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
83 info->debounce_jiffies);
84
85 return IRQ_HANDLED;
86}
87
88static int usb_extcon_probe(struct platform_device *pdev)
89{
90 struct device *dev = &pdev->dev;
91 struct device_node *np = dev->of_node;
92 struct usb_extcon_info *info;
93 int ret;
94
95 if (!np)
96 return -EINVAL;
97
98 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
99 if (!info)
100 return -ENOMEM;
101
102 info->dev = dev;
Uwe Kleine-König35eed7a2015-05-19 14:18:30 +0200103 info->id_gpiod = devm_gpiod_get(&pdev->dev, "id", GPIOD_IN);
Roger Quadrose52817f2015-02-02 12:21:59 +0200104 if (IS_ERR(info->id_gpiod)) {
105 dev_err(dev, "failed to get ID GPIO\n");
106 return PTR_ERR(info->id_gpiod);
107 }
108
Robert Baldygabc1aaba2015-04-02 15:13:02 +0200109 info->edev = devm_extcon_dev_allocate(dev, usb_extcon_cable);
110 if (IS_ERR(info->edev)) {
111 dev_err(dev, "failed to allocate extcon device\n");
112 return -ENOMEM;
113 }
114
115 ret = devm_extcon_dev_register(dev, info->edev);
116 if (ret < 0) {
117 dev_err(dev, "failed to register extcon device\n");
118 return ret;
119 }
120
Roger Quadrose52817f2015-02-02 12:21:59 +0200121 ret = gpiod_set_debounce(info->id_gpiod,
122 USB_GPIO_DEBOUNCE_MS * 1000);
123 if (ret < 0)
124 info->debounce_jiffies = msecs_to_jiffies(USB_GPIO_DEBOUNCE_MS);
125
126 INIT_DELAYED_WORK(&info->wq_detcable, usb_extcon_detect_cable);
127
128 info->id_irq = gpiod_to_irq(info->id_gpiod);
129 if (info->id_irq < 0) {
130 dev_err(dev, "failed to get ID IRQ\n");
131 return info->id_irq;
132 }
133
134 ret = devm_request_threaded_irq(dev, info->id_irq, NULL,
135 usb_irq_handler,
136 IRQF_TRIGGER_RISING |
137 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
138 pdev->name, info);
139 if (ret < 0) {
140 dev_err(dev, "failed to request handler for ID IRQ\n");
141 return ret;
142 }
143
Roger Quadrose52817f2015-02-02 12:21:59 +0200144 platform_set_drvdata(pdev, info);
Grygorii Strashko12bd0f32016-04-06 20:32:37 +0300145 device_init_wakeup(dev, true);
146 dev_pm_set_wake_irq(dev, info->id_irq);
Roger Quadrose52817f2015-02-02 12:21:59 +0200147
148 /* Perform initial detection */
149 usb_extcon_detect_cable(&info->wq_detcable.work);
150
151 return 0;
152}
153
154static int usb_extcon_remove(struct platform_device *pdev)
155{
156 struct usb_extcon_info *info = platform_get_drvdata(pdev);
157
158 cancel_delayed_work_sync(&info->wq_detcable);
159
Grygorii Strashko12bd0f32016-04-06 20:32:37 +0300160 dev_pm_clear_wake_irq(&pdev->dev);
161 device_init_wakeup(&pdev->dev, false);
162
Roger Quadrose52817f2015-02-02 12:21:59 +0200163 return 0;
164}
165
166#ifdef CONFIG_PM_SLEEP
167static int usb_extcon_suspend(struct device *dev)
168{
169 struct usb_extcon_info *info = dev_get_drvdata(dev);
170 int ret = 0;
171
Roger Quadrose52817f2015-02-02 12:21:59 +0200172 /*
173 * We don't want to process any IRQs after this point
174 * as GPIOs used behind I2C subsystem might not be
175 * accessible until resume completes. So disable IRQ.
176 */
177 disable_irq(info->id_irq);
178
179 return ret;
180}
181
182static int usb_extcon_resume(struct device *dev)
183{
184 struct usb_extcon_info *info = dev_get_drvdata(dev);
185 int ret = 0;
186
Roger Quadrose52817f2015-02-02 12:21:59 +0200187 enable_irq(info->id_irq);
188
189 return ret;
190}
191#endif
192
193static SIMPLE_DEV_PM_OPS(usb_extcon_pm_ops,
194 usb_extcon_suspend, usb_extcon_resume);
195
Chanwoo Choi34825e52015-03-07 01:41:36 +0900196static const struct of_device_id usb_extcon_dt_match[] = {
Roger Quadrose52817f2015-02-02 12:21:59 +0200197 { .compatible = "linux,extcon-usb-gpio", },
198 { /* sentinel */ }
199};
200MODULE_DEVICE_TABLE(of, usb_extcon_dt_match);
201
202static struct platform_driver usb_extcon_driver = {
203 .probe = usb_extcon_probe,
204 .remove = usb_extcon_remove,
205 .driver = {
206 .name = "extcon-usb-gpio",
207 .pm = &usb_extcon_pm_ops,
208 .of_match_table = usb_extcon_dt_match,
209 },
210};
211
212module_platform_driver(usb_extcon_driver);
213
214MODULE_AUTHOR("Roger Quadros <rogerq@ti.com>");
215MODULE_DESCRIPTION("USB GPIO extcon driver");
216MODULE_LICENSE("GPL v2");