blob: 479376bfa484bd73edc76a7cae115c37d4e729ae [file] [log] [blame]
Todd Poynor21b36ea2011-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>
Arve Hjønnevåg73693452012-11-26 16:09:13 -080019#include <linux/err.h>
Colin Cross666167c2012-02-01 14:23:15 -080020#include <linux/module.h>
Todd Poynor21b36ea2011-07-01 17:19:56 -070021#include <linux/notifier.h>
22#include <linux/wakelock.h>
23#include <linux/spinlock.h>
24#include <linux/usb/otg.h>
25
Todd Poynor2c7e3242011-09-26 20:35:30 -070026#define TEMPORARY_HOLD_TIME 2000
27
Todd Poynor21b36ea2011-07-01 17:19:56 -070028static bool enabled = true;
Benoit Goby3f9860a2012-05-10 16:41:40 -070029static struct usb_phy *otgwl_xceiv;
Todd Poynor21b36ea2011-07-01 17:19:56 -070030static struct notifier_block otgwl_nb;
31
32/*
33 * otgwl_spinlock is held while the VBUS lock is grabbed or dropped and the
Todd Poynor2c7e3242011-09-26 20:35:30 -070034 * held field is updated to match.
Todd Poynor21b36ea2011-07-01 17:19:56 -070035 */
36
37static DEFINE_SPINLOCK(otgwl_spinlock);
38
39/*
40 * Only one lock, but since these 3 fields are associated with each other...
41 */
42
43struct otgwl_lock {
44 char name[40];
45 struct wake_lock wakelock;
Todd Poynor2c7e3242011-09-26 20:35:30 -070046 bool held;
Todd Poynor21b36ea2011-07-01 17:19:56 -070047};
48
49/*
Todd Poynor2c7e3242011-09-26 20:35:30 -070050 * VBUS present lock. Also used as a timed lock on charger
51 * connect/disconnect and USB host disconnect, to allow the system
52 * to react to the change in power.
Todd Poynor21b36ea2011-07-01 17:19:56 -070053 */
54
55static struct otgwl_lock vbus_lock;
56
Todd Poynor2c7e3242011-09-26 20:35:30 -070057static void otgwl_hold(struct otgwl_lock *lock)
Todd Poynor21b36ea2011-07-01 17:19:56 -070058{
Todd Poynor2c7e3242011-09-26 20:35:30 -070059 if (!lock->held) {
Todd Poynor21b36ea2011-07-01 17:19:56 -070060 wake_lock(&lock->wakelock);
Todd Poynor2c7e3242011-09-26 20:35:30 -070061 lock->held = true;
Todd Poynor21b36ea2011-07-01 17:19:56 -070062 }
63}
64
Todd Poynor2c7e3242011-09-26 20:35:30 -070065static void otgwl_temporary_hold(struct otgwl_lock *lock)
66{
67 wake_lock_timeout(&lock->wakelock,
68 msecs_to_jiffies(TEMPORARY_HOLD_TIME));
69 lock->held = false;
70}
71
Todd Poynor21b36ea2011-07-01 17:19:56 -070072static void otgwl_drop(struct otgwl_lock *lock)
73{
Todd Poynor2c7e3242011-09-26 20:35:30 -070074 if (lock->held) {
Todd Poynor21b36ea2011-07-01 17:19:56 -070075 wake_unlock(&lock->wakelock);
Todd Poynor2c7e3242011-09-26 20:35:30 -070076 lock->held = false;
Todd Poynor21b36ea2011-07-01 17:19:56 -070077 }
78}
79
Todd Poynor2c7e3242011-09-26 20:35:30 -070080static void otgwl_handle_event(unsigned long event)
Todd Poynor21b36ea2011-07-01 17:19:56 -070081{
82 unsigned long irqflags;
83
Todd Poynor21b36ea2011-07-01 17:19:56 -070084 spin_lock_irqsave(&otgwl_spinlock, irqflags);
85
Todd Poynor2c7e3242011-09-26 20:35:30 -070086 if (!enabled) {
87 otgwl_drop(&vbus_lock);
88 spin_unlock_irqrestore(&otgwl_spinlock, irqflags);
89 return;
90 }
91
Todd Poynor21b36ea2011-07-01 17:19:56 -070092 switch (event) {
93 case USB_EVENT_VBUS:
94 case USB_EVENT_ENUMERATED:
Todd Poynor2c7e3242011-09-26 20:35:30 -070095 otgwl_hold(&vbus_lock);
Todd Poynor21b36ea2011-07-01 17:19:56 -070096 break;
97
98 case USB_EVENT_NONE:
99 case USB_EVENT_ID:
100 case USB_EVENT_CHARGER:
Todd Poynor2c7e3242011-09-26 20:35:30 -0700101 otgwl_temporary_hold(&vbus_lock);
Todd Poynor21b36ea2011-07-01 17:19:56 -0700102 break;
103
104 default:
105 break;
106 }
107
108 spin_unlock_irqrestore(&otgwl_spinlock, irqflags);
Todd Poynor2c7e3242011-09-26 20:35:30 -0700109}
110
111static int otgwl_otg_notifications(struct notifier_block *nb,
112 unsigned long event, void *unused)
113{
114 otgwl_handle_event(event);
Todd Poynor21b36ea2011-07-01 17:19:56 -0700115 return NOTIFY_OK;
116}
117
Todd Poynor21b36ea2011-07-01 17:19:56 -0700118static int set_enabled(const char *val, const struct kernel_param *kp)
119{
Todd Poynor21b36ea2011-07-01 17:19:56 -0700120 int rv = param_set_bool(val, kp);
121
122 if (rv)
123 return rv;
124
Todd Poynor2c7e3242011-09-26 20:35:30 -0700125 if (otgwl_xceiv)
126 otgwl_handle_event(otgwl_xceiv->last_event);
Todd Poynor21b36ea2011-07-01 17:19:56 -0700127
Todd Poynor21b36ea2011-07-01 17:19:56 -0700128 return 0;
129}
130
131static struct kernel_param_ops enabled_param_ops = {
132 .set = set_enabled,
133 .get = param_get_bool,
134};
135
136module_param_cb(enabled, &enabled_param_ops, &enabled, 0644);
137MODULE_PARM_DESC(enabled, "enable wakelock when VBUS present");
138
139static int __init otg_wakelock_init(void)
140{
Todd Poynor2c7e3242011-09-26 20:35:30 -0700141 int ret;
Arve Hjønnevåg73693452012-11-26 16:09:13 -0800142 struct usb_phy *phy;
Todd Poynor21b36ea2011-07-01 17:19:56 -0700143
Arve Hjønnevåg73693452012-11-26 16:09:13 -0800144 phy = usb_get_phy(USB_PHY_TYPE_USB2);
Todd Poynor21b36ea2011-07-01 17:19:56 -0700145
Arve Hjønnevåg73693452012-11-26 16:09:13 -0800146 if (IS_ERR(phy)) {
Benoit Goby3f9860a2012-05-10 16:41:40 -0700147 pr_err("%s: No USB transceiver found\n", __func__);
Arve Hjønnevåg73693452012-11-26 16:09:13 -0800148 return PTR_ERR(phy);
Todd Poynor21b36ea2011-07-01 17:19:56 -0700149 }
Arve Hjønnevåg73693452012-11-26 16:09:13 -0800150 otgwl_xceiv = phy;
Todd Poynor21b36ea2011-07-01 17:19:56 -0700151
Todd Poynor2c7e3242011-09-26 20:35:30 -0700152 snprintf(vbus_lock.name, sizeof(vbus_lock.name), "vbus-%s",
153 dev_name(otgwl_xceiv->dev));
154 wake_lock_init(&vbus_lock.wakelock, WAKE_LOCK_SUSPEND,
155 vbus_lock.name);
156
157 otgwl_nb.notifier_call = otgwl_otg_notifications;
Benoit Goby3f9860a2012-05-10 16:41:40 -0700158 ret = usb_register_notifier(otgwl_xceiv, &otgwl_nb);
Todd Poynor2c7e3242011-09-26 20:35:30 -0700159
160 if (ret) {
Benoit Goby3f9860a2012-05-10 16:41:40 -0700161 pr_err("%s: usb_register_notifier on transceiver %s"
Todd Poynor2c7e3242011-09-26 20:35:30 -0700162 " failed\n", __func__,
163 dev_name(otgwl_xceiv->dev));
164 otgwl_xceiv = NULL;
165 wake_lock_destroy(&vbus_lock.wakelock);
166 return ret;
167 }
168
169 otgwl_handle_event(otgwl_xceiv->last_event);
170 return ret;
Todd Poynor21b36ea2011-07-01 17:19:56 -0700171}
172
173late_initcall(otg_wakelock_init);