1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/* Copyright (c) 2013-2015, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/err.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/of_platform.h>
#include <linux/interrupt.h>
#include <linux/of_gpio.h>
#include <linux/gpio.h>
#include <linux/power_supply.h>
#include <linux/regulator/consumer.h>
struct gpio_usbdetect {
struct platform_device *pdev;
struct regulator *vin;
struct power_supply *usb_psy;
int vbus_det_irq;
int gpio;
};
static irqreturn_t gpio_usbdetect_vbus_irq(int irq, void *data)
{
struct gpio_usbdetect *usb = data;
int vbus;
union power_supply_propval pval = {0,};
vbus = gpio_get_value(usb->gpio);
if (vbus)
pval.intval = POWER_SUPPLY_TYPE_USB;
else
pval.intval = POWER_SUPPLY_TYPE_UNKNOWN;
power_supply_set_property(usb->usb_psy,
POWER_SUPPLY_PROP_TYPE, &pval);
pval.intval = vbus;
power_supply_set_property(usb->usb_psy, POWER_SUPPLY_PROP_PRESENT,
&pval);
return IRQ_HANDLED;
}
static int gpio_usbdetect_probe(struct platform_device *pdev)
{
struct gpio_usbdetect *usb;
struct power_supply *usb_psy;
int rc;
unsigned long flags;
usb_psy = power_supply_get_by_name("usb");
if (!usb_psy) {
dev_dbg(&pdev->dev, "USB power_supply not found, deferring probe\n");
return -EPROBE_DEFER;
}
usb = devm_kzalloc(&pdev->dev, sizeof(*usb), GFP_KERNEL);
if (!usb)
return -ENOMEM;
usb->pdev = pdev;
usb->usb_psy = usb_psy;
if (of_get_property(pdev->dev.of_node, "vin-supply", NULL)) {
usb->vin = devm_regulator_get(&pdev->dev, "vin");
if (IS_ERR(usb->vin)) {
dev_err(&pdev->dev, "Failed to get VIN regulator: %ld\n",
PTR_ERR(usb->vin));
return PTR_ERR(usb->vin);
}
}
if (usb->vin) {
rc = regulator_enable(usb->vin);
if (rc) {
dev_err(&pdev->dev, "Failed to enable VIN regulator: %d\n",
rc);
return rc;
}
}
usb->gpio = of_get_named_gpio(pdev->dev.of_node,
"qcom,vbus-det-gpio", 0);
if (usb->gpio < 0) {
dev_err(&pdev->dev, "Failed to get gpio: %d\n", usb->gpio);
return usb->gpio;
}
rc = gpio_request(usb->gpio, "vbus-det-gpio");
if (rc < 0) {
dev_err(&pdev->dev, "Failed to request gpio: %d\n", rc);
return rc;
}
usb->vbus_det_irq = gpio_to_irq(usb->gpio);
if (usb->vbus_det_irq < 0) {
if (usb->vin)
regulator_disable(usb->vin);
return usb->vbus_det_irq;
}
rc = devm_request_irq(&pdev->dev, usb->vbus_det_irq,
gpio_usbdetect_vbus_irq,
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
"vbus_det_irq", usb);
if (rc) {
dev_err(&pdev->dev, "request for vbus_det_irq failed: %d\n",
rc);
if (usb->vin)
regulator_disable(usb->vin);
return rc;
}
enable_irq_wake(usb->vbus_det_irq);
dev_set_drvdata(&pdev->dev, usb);
/* Read and report initial VBUS state */
local_irq_save(flags);
gpio_usbdetect_vbus_irq(usb->vbus_det_irq, usb);
local_irq_restore(flags);
return 0;
}
static int gpio_usbdetect_remove(struct platform_device *pdev)
{
struct gpio_usbdetect *usb = dev_get_drvdata(&pdev->dev);
disable_irq_wake(usb->vbus_det_irq);
disable_irq(usb->vbus_det_irq);
if (usb->vin)
regulator_disable(usb->vin);
return 0;
}
static struct of_device_id of_match_table[] = {
{ .compatible = "qcom,gpio-usbdetect", },
{}
};
static struct platform_driver gpio_usbdetect_driver = {
.driver = {
.name = "qcom,gpio-usbdetect",
.of_match_table = of_match_table,
},
.probe = gpio_usbdetect_probe,
.remove = gpio_usbdetect_remove,
};
module_driver(gpio_usbdetect_driver, platform_driver_register,
platform_driver_unregister);
MODULE_DESCRIPTION("GPIO USB VBUS Detection driver");
MODULE_LICENSE("GPL v2");
|