blob: e17e27299062c74a7dca9ce96ef612c585d35c5c [file] [log] [blame]
Todd Poynor47272162011-07-01 17:19:56 -07001/*
2 * otg-wakelock.c
3 *
4 * Copyright (C) 2011 Google, Inc.
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <linux/kernel.h>
18#include <linux/device.h>
Colin Crossea93b9c2012-02-01 14:23:15 -080019#include <linux/module.h>
Todd Poynor47272162011-07-01 17:19:56 -070020#include <linux/notifier.h>
21#include <linux/wakelock.h>
22#include <linux/spinlock.h>
23#include <linux/usb/otg.h>
24
Todd Poynor6c8568c2011-09-26 20:35:30 -070025#define TEMPORARY_HOLD_TIME 2000
26
Todd Poynor47272162011-07-01 17:19:56 -070027static bool enabled = true;
Benoit Goby7bb8b652012-05-10 16:41:40 -070028static struct usb_phy *otgwl_xceiv;
Todd Poynor47272162011-07-01 17:19:56 -070029static struct notifier_block otgwl_nb;
30
31/*
32 * otgwl_spinlock is held while the VBUS lock is grabbed or dropped and the
Todd Poynor6c8568c2011-09-26 20:35:30 -070033 * held field is updated to match.
Todd Poynor47272162011-07-01 17:19:56 -070034 */
35
36static DEFINE_SPINLOCK(otgwl_spinlock);
37
38/*
39 * Only one lock, but since these 3 fields are associated with each other...
40 */
41
42struct otgwl_lock {
43 char name[40];
44 struct wake_lock wakelock;
Todd Poynor6c8568c2011-09-26 20:35:30 -070045 bool held;
Todd Poynor47272162011-07-01 17:19:56 -070046};
47
48/*
Todd Poynor6c8568c2011-09-26 20:35:30 -070049 * VBUS present lock. Also used as a timed lock on charger
50 * connect/disconnect and USB host disconnect, to allow the system
51 * to react to the change in power.
Todd Poynor47272162011-07-01 17:19:56 -070052 */
53
54static struct otgwl_lock vbus_lock;
55
Todd Poynor6c8568c2011-09-26 20:35:30 -070056static void otgwl_hold(struct otgwl_lock *lock)
Todd Poynor47272162011-07-01 17:19:56 -070057{
Todd Poynor6c8568c2011-09-26 20:35:30 -070058 if (!lock->held) {
Todd Poynor47272162011-07-01 17:19:56 -070059 wake_lock(&lock->wakelock);
Todd Poynor6c8568c2011-09-26 20:35:30 -070060 lock->held = true;
Todd Poynor47272162011-07-01 17:19:56 -070061 }
62}
63
Todd Poynor6c8568c2011-09-26 20:35:30 -070064static void otgwl_temporary_hold(struct otgwl_lock *lock)
65{
66 wake_lock_timeout(&lock->wakelock,
67 msecs_to_jiffies(TEMPORARY_HOLD_TIME));
68 lock->held = false;
69}
70
Todd Poynor47272162011-07-01 17:19:56 -070071static void otgwl_drop(struct otgwl_lock *lock)
72{
Todd Poynor6c8568c2011-09-26 20:35:30 -070073 if (lock->held) {
Todd Poynor47272162011-07-01 17:19:56 -070074 wake_unlock(&lock->wakelock);
Todd Poynor6c8568c2011-09-26 20:35:30 -070075 lock->held = false;
Todd Poynor47272162011-07-01 17:19:56 -070076 }
77}
78
Todd Poynor6c8568c2011-09-26 20:35:30 -070079static void otgwl_handle_event(unsigned long event)
Todd Poynor47272162011-07-01 17:19:56 -070080{
81 unsigned long irqflags;
82
Todd Poynor47272162011-07-01 17:19:56 -070083 spin_lock_irqsave(&otgwl_spinlock, irqflags);
84
Todd Poynor6c8568c2011-09-26 20:35:30 -070085 if (!enabled) {
86 otgwl_drop(&vbus_lock);
87 spin_unlock_irqrestore(&otgwl_spinlock, irqflags);
88 return;
89 }
90
Todd Poynor47272162011-07-01 17:19:56 -070091 switch (event) {
92 case USB_EVENT_VBUS:
93 case USB_EVENT_ENUMERATED:
Todd Poynor6c8568c2011-09-26 20:35:30 -070094 otgwl_hold(&vbus_lock);
Todd Poynor47272162011-07-01 17:19:56 -070095 break;
96
97 case USB_EVENT_NONE:
98 case USB_EVENT_ID:
99 case USB_EVENT_CHARGER:
Todd Poynor6c8568c2011-09-26 20:35:30 -0700100 otgwl_temporary_hold(&vbus_lock);
Todd Poynor47272162011-07-01 17:19:56 -0700101 break;
102
103 default:
104 break;
105 }
106
107 spin_unlock_irqrestore(&otgwl_spinlock, irqflags);
Todd Poynor6c8568c2011-09-26 20:35:30 -0700108}
109
110static int otgwl_otg_notifications(struct notifier_block *nb,
111 unsigned long event, void *unused)
112{
113 otgwl_handle_event(event);
Todd Poynor47272162011-07-01 17:19:56 -0700114 return NOTIFY_OK;
115}
116
Todd Poynor47272162011-07-01 17:19:56 -0700117static int set_enabled(const char *val, const struct kernel_param *kp)
118{
Todd Poynor47272162011-07-01 17:19:56 -0700119 int rv = param_set_bool(val, kp);
120
121 if (rv)
122 return rv;
123
Todd Poynor6c8568c2011-09-26 20:35:30 -0700124 if (otgwl_xceiv)
125 otgwl_handle_event(otgwl_xceiv->last_event);
Todd Poynor47272162011-07-01 17:19:56 -0700126
Todd Poynor47272162011-07-01 17:19:56 -0700127 return 0;
128}
129
130static struct kernel_param_ops enabled_param_ops = {
131 .set = set_enabled,
132 .get = param_get_bool,
133};
134
135module_param_cb(enabled, &enabled_param_ops, &enabled, 0644);
136MODULE_PARM_DESC(enabled, "enable wakelock when VBUS present");
137
138static int __init otg_wakelock_init(void)
139{
Todd Poynor6c8568c2011-09-26 20:35:30 -0700140 int ret;
Todd Poynor47272162011-07-01 17:19:56 -0700141
Benoit Goby7bb8b652012-05-10 16:41:40 -0700142 otgwl_xceiv = usb_get_transceiver();
Todd Poynor47272162011-07-01 17:19:56 -0700143
Todd Poynor6c8568c2011-09-26 20:35:30 -0700144 if (!otgwl_xceiv) {
Benoit Goby7bb8b652012-05-10 16:41:40 -0700145 pr_err("%s: No USB transceiver found\n", __func__);
Todd Poynor6c8568c2011-09-26 20:35:30 -0700146 return -ENODEV;
Todd Poynor47272162011-07-01 17:19:56 -0700147 }
148
Todd Poynor6c8568c2011-09-26 20:35:30 -0700149 snprintf(vbus_lock.name, sizeof(vbus_lock.name), "vbus-%s",
150 dev_name(otgwl_xceiv->dev));
151 wake_lock_init(&vbus_lock.wakelock, WAKE_LOCK_SUSPEND,
152 vbus_lock.name);
153
154 otgwl_nb.notifier_call = otgwl_otg_notifications;
Benoit Goby7bb8b652012-05-10 16:41:40 -0700155 ret = usb_register_notifier(otgwl_xceiv, &otgwl_nb);
Todd Poynor6c8568c2011-09-26 20:35:30 -0700156
157 if (ret) {
Benoit Goby7bb8b652012-05-10 16:41:40 -0700158 pr_err("%s: usb_register_notifier on transceiver %s"
Todd Poynor6c8568c2011-09-26 20:35:30 -0700159 " failed\n", __func__,
160 dev_name(otgwl_xceiv->dev));
161 otgwl_xceiv = NULL;
162 wake_lock_destroy(&vbus_lock.wakelock);
163 return ret;
164 }
165
166 otgwl_handle_event(otgwl_xceiv->last_event);
167 return ret;
Todd Poynor47272162011-07-01 17:19:56 -0700168}
169
170late_initcall(otg_wakelock_init);