blob: 32525bb667ee00ab89a6d98ab726ae3877067453 [file] [log] [blame]
Hema HKc33fad02010-12-10 17:58:20 +05301/*
2 * twl6030_usb - TWL6030 USB transceiver, talking to OMAP OTG driver.
3 *
4 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * Author: Hema HK <hemahk@ti.com>
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 */
22
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/interrupt.h>
26#include <linux/platform_device.h>
27#include <linux/io.h>
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +053028#include <linux/usb/musb-omap.h>
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +053029#include <linux/usb/phy_companion.h>
30#include <linux/usb/omap_usb.h>
Hema HKc33fad02010-12-10 17:58:20 +053031#include <linux/i2c/twl.h>
32#include <linux/regulator/consumer.h>
33#include <linux/err.h>
Hema HKc33fad02010-12-10 17:58:20 +053034#include <linux/slab.h>
Hema HK603ab522011-03-22 16:54:21 +053035#include <linux/delay.h>
Hema HKc33fad02010-12-10 17:58:20 +053036
37/* usb register definitions */
38#define USB_VENDOR_ID_LSB 0x00
39#define USB_VENDOR_ID_MSB 0x01
40#define USB_PRODUCT_ID_LSB 0x02
41#define USB_PRODUCT_ID_MSB 0x03
42#define USB_VBUS_CTRL_SET 0x04
43#define USB_VBUS_CTRL_CLR 0x05
44#define USB_ID_CTRL_SET 0x06
45#define USB_ID_CTRL_CLR 0x07
46#define USB_VBUS_INT_SRC 0x08
47#define USB_VBUS_INT_LATCH_SET 0x09
48#define USB_VBUS_INT_LATCH_CLR 0x0A
49#define USB_VBUS_INT_EN_LO_SET 0x0B
50#define USB_VBUS_INT_EN_LO_CLR 0x0C
51#define USB_VBUS_INT_EN_HI_SET 0x0D
52#define USB_VBUS_INT_EN_HI_CLR 0x0E
53#define USB_ID_INT_SRC 0x0F
54#define USB_ID_INT_LATCH_SET 0x10
55#define USB_ID_INT_LATCH_CLR 0x11
56
57#define USB_ID_INT_EN_LO_SET 0x12
58#define USB_ID_INT_EN_LO_CLR 0x13
59#define USB_ID_INT_EN_HI_SET 0x14
60#define USB_ID_INT_EN_HI_CLR 0x15
61#define USB_OTG_ADP_CTRL 0x16
62#define USB_OTG_ADP_HIGH 0x17
63#define USB_OTG_ADP_LOW 0x18
64#define USB_OTG_ADP_RISE 0x19
65#define USB_OTG_REVISION 0x1A
66
67/* to be moved to LDO */
68#define TWL6030_MISC2 0xE5
69#define TWL6030_CFG_LDO_PD2 0xF5
70#define TWL6030_BACKUP_REG 0xFA
71
72#define STS_HW_CONDITIONS 0x21
73
74/* In module TWL6030_MODULE_PM_MASTER */
75#define STS_HW_CONDITIONS 0x21
76#define STS_USB_ID BIT(2)
77
78/* In module TWL6030_MODULE_PM_RECEIVER */
79#define VUSB_CFG_TRANS 0x71
80#define VUSB_CFG_STATE 0x72
81#define VUSB_CFG_VOLTAGE 0x73
82
83/* in module TWL6030_MODULE_MAIN_CHARGE */
84
85#define CHARGERUSB_CTRL1 0x8
86
87#define CONTROLLER_STAT1 0x03
88#define VBUS_DET BIT(2)
89
90struct twl6030_usb {
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +053091 struct phy_companion comparator;
Hema HKc33fad02010-12-10 17:58:20 +053092 struct device *dev;
93
94 /* for vbus reporting with irqs disabled */
95 spinlock_t lock;
96
97 struct regulator *usb3v3;
98
Moiz Sonasath5bf54502011-06-27 10:01:01 -050099 /* used to set vbus, in atomic path */
100 struct work_struct set_vbus_work;
101
Hema HKc33fad02010-12-10 17:58:20 +0530102 int irq1;
103 int irq2;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530104 enum omap_musb_vbus_id_status linkstat;
Hema HKc33fad02010-12-10 17:58:20 +0530105 u8 asleep;
106 bool irq_enabled;
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500107 bool vbus_enable;
Graeme Gregory5ccee4a2011-05-22 21:21:24 +0100108 unsigned long features;
Hema HKc33fad02010-12-10 17:58:20 +0530109};
110
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530111#define comparator_to_twl(x) container_of((x), struct twl6030_usb, comparator)
Hema HKc33fad02010-12-10 17:58:20 +0530112
113/*-------------------------------------------------------------------------*/
114
115static inline int twl6030_writeb(struct twl6030_usb *twl, u8 module,
116 u8 data, u8 address)
117{
118 int ret = 0;
119
120 ret = twl_i2c_write_u8(module, data, address);
121 if (ret < 0)
122 dev_err(twl->dev,
123 "Write[0x%x] Error %d\n", address, ret);
124 return ret;
125}
126
127static inline u8 twl6030_readb(struct twl6030_usb *twl, u8 module, u8 address)
128{
129 u8 data, ret = 0;
130
131 ret = twl_i2c_read_u8(module, &data, address);
132 if (ret >= 0)
133 ret = data;
134 else
135 dev_err(twl->dev,
136 "readb[0x%x,0x%x] Error %d\n",
137 module, address, ret);
138 return ret;
139}
140
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530141static int twl6030_start_srp(struct phy_companion *comparator)
Hema HKc33fad02010-12-10 17:58:20 +0530142{
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530143 struct twl6030_usb *twl = comparator_to_twl(comparator);
Hema HK603ab522011-03-22 16:54:21 +0530144
145 twl6030_writeb(twl, TWL_MODULE_USB, 0x24, USB_VBUS_CTRL_SET);
146 twl6030_writeb(twl, TWL_MODULE_USB, 0x84, USB_VBUS_CTRL_SET);
147
148 mdelay(100);
149 twl6030_writeb(twl, TWL_MODULE_USB, 0xa0, USB_VBUS_CTRL_CLR);
150
151 return 0;
152}
153
Hema HKc33fad02010-12-10 17:58:20 +0530154static int twl6030_usb_ldo_init(struct twl6030_usb *twl)
155{
Graeme Gregory5ccee4a2011-05-22 21:21:24 +0100156 char *regulator_name;
157
158 if (twl->features & TWL6025_SUBCLASS)
159 regulator_name = "ldousb";
160 else
161 regulator_name = "vusb";
Hema HKc33fad02010-12-10 17:58:20 +0530162
163 /* Set to OTG_REV 1.3 and turn on the ID_WAKEUP_COMP */
164 twl6030_writeb(twl, TWL6030_MODULE_ID0 , 0x1, TWL6030_BACKUP_REG);
165
166 /* Program CFG_LDO_PD2 register and set VUSB bit */
167 twl6030_writeb(twl, TWL6030_MODULE_ID0 , 0x1, TWL6030_CFG_LDO_PD2);
168
169 /* Program MISC2 register and set bit VUSB_IN_VBAT */
170 twl6030_writeb(twl, TWL6030_MODULE_ID0 , 0x10, TWL6030_MISC2);
171
Graeme Gregory5ccee4a2011-05-22 21:21:24 +0100172 twl->usb3v3 = regulator_get(twl->dev, regulator_name);
Hema HKc33fad02010-12-10 17:58:20 +0530173 if (IS_ERR(twl->usb3v3))
174 return -ENODEV;
175
Hema HKc33fad02010-12-10 17:58:20 +0530176 /* Program the USB_VBUS_CTRL_SET and set VBUS_ACT_COMP bit */
177 twl6030_writeb(twl, TWL_MODULE_USB, 0x4, USB_VBUS_CTRL_SET);
178
179 /*
180 * Program the USB_ID_CTRL_SET register to enable GND drive
181 * and the ID comparators
182 */
183 twl6030_writeb(twl, TWL_MODULE_USB, 0x14, USB_ID_CTRL_SET);
184
185 return 0;
186}
187
188static ssize_t twl6030_usb_vbus_show(struct device *dev,
189 struct device_attribute *attr, char *buf)
190{
191 struct twl6030_usb *twl = dev_get_drvdata(dev);
192 unsigned long flags;
193 int ret = -EINVAL;
194
195 spin_lock_irqsave(&twl->lock, flags);
196
197 switch (twl->linkstat) {
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530198 case OMAP_MUSB_VBUS_VALID:
Hema HKc33fad02010-12-10 17:58:20 +0530199 ret = snprintf(buf, PAGE_SIZE, "vbus\n");
200 break;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530201 case OMAP_MUSB_ID_GROUND:
Hema HKc33fad02010-12-10 17:58:20 +0530202 ret = snprintf(buf, PAGE_SIZE, "id\n");
203 break;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530204 case OMAP_MUSB_VBUS_OFF:
Hema HKc33fad02010-12-10 17:58:20 +0530205 ret = snprintf(buf, PAGE_SIZE, "none\n");
206 break;
207 default:
208 ret = snprintf(buf, PAGE_SIZE, "UNKNOWN\n");
209 }
210 spin_unlock_irqrestore(&twl->lock, flags);
211
212 return ret;
213}
214static DEVICE_ATTR(vbus, 0444, twl6030_usb_vbus_show, NULL);
215
216static irqreturn_t twl6030_usb_irq(int irq, void *_twl)
217{
218 struct twl6030_usb *twl = _twl;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530219 enum omap_musb_vbus_id_status status = OMAP_MUSB_UNKNOWN;
Hema HKc33fad02010-12-10 17:58:20 +0530220 u8 vbus_state, hw_state;
221
222 hw_state = twl6030_readb(twl, TWL6030_MODULE_ID0, STS_HW_CONDITIONS);
223
224 vbus_state = twl6030_readb(twl, TWL_MODULE_MAIN_CHARGE,
225 CONTROLLER_STAT1);
226 if (!(hw_state & STS_USB_ID)) {
227 if (vbus_state & VBUS_DET) {
Hema HK6dc25032011-02-17 12:06:04 +0530228 regulator_enable(twl->usb3v3);
229 twl->asleep = 1;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530230 status = OMAP_MUSB_VBUS_VALID;
Hema HKc33fad02010-12-10 17:58:20 +0530231 twl->linkstat = status;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530232 omap_musb_mailbox(status);
Hema HK6dc25032011-02-17 12:06:04 +0530233 } else {
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530234 if (twl->linkstat != OMAP_MUSB_UNKNOWN) {
235 status = OMAP_MUSB_VBUS_OFF;
236 twl->linkstat = status;
237 omap_musb_mailbox(status);
238 if (twl->asleep) {
239 regulator_disable(twl->usb3v3);
240 twl->asleep = 0;
241 }
Hema HK6dc25032011-02-17 12:06:04 +0530242 }
Hema HKc33fad02010-12-10 17:58:20 +0530243 }
244 }
245 sysfs_notify(&twl->dev->kobj, NULL, "vbus");
246
247 return IRQ_HANDLED;
248}
249
250static irqreturn_t twl6030_usbotg_irq(int irq, void *_twl)
251{
252 struct twl6030_usb *twl = _twl;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530253 enum omap_musb_vbus_id_status status = OMAP_MUSB_UNKNOWN;
Hema HKc33fad02010-12-10 17:58:20 +0530254 u8 hw_state;
255
256 hw_state = twl6030_readb(twl, TWL6030_MODULE_ID0, STS_HW_CONDITIONS);
257
258 if (hw_state & STS_USB_ID) {
259
Hema HK6dc25032011-02-17 12:06:04 +0530260 regulator_enable(twl->usb3v3);
261 twl->asleep = 1;
Moiz Sonasathdc8738d2012-06-12 20:17:12 +0300262 twl6030_writeb(twl, TWL_MODULE_USB, 0x1, USB_ID_INT_EN_HI_CLR);
263 twl6030_writeb(twl, TWL_MODULE_USB, 0x10, USB_ID_INT_EN_HI_SET);
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530264 status = OMAP_MUSB_ID_GROUND;
Hema HK31e99922011-02-17 12:06:05 +0530265 twl->linkstat = status;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530266 omap_musb_mailbox(status);
Hema HKc33fad02010-12-10 17:58:20 +0530267 } else {
Moiz Sonasathdc8738d2012-06-12 20:17:12 +0300268 twl6030_writeb(twl, TWL_MODULE_USB, 0x10, USB_ID_INT_EN_HI_CLR);
269 twl6030_writeb(twl, TWL_MODULE_USB, 0x1, USB_ID_INT_EN_HI_SET);
Hema HKc33fad02010-12-10 17:58:20 +0530270 }
Moiz Sonasathdc8738d2012-06-12 20:17:12 +0300271 twl6030_writeb(twl, TWL_MODULE_USB, status, USB_ID_INT_LATCH_CLR);
Hema HKc33fad02010-12-10 17:58:20 +0530272
273 return IRQ_HANDLED;
274}
275
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530276static int twl6030_enable_irq(struct twl6030_usb *twl)
Hema HKc33fad02010-12-10 17:58:20 +0530277{
Moiz Sonasathdc8738d2012-06-12 20:17:12 +0300278 twl6030_writeb(twl, TWL_MODULE_USB, 0x1, USB_ID_INT_EN_HI_SET);
Hema HKc33fad02010-12-10 17:58:20 +0530279 twl6030_interrupt_unmask(0x05, REG_INT_MSK_LINE_C);
280 twl6030_interrupt_unmask(0x05, REG_INT_MSK_STS_C);
281
282 twl6030_interrupt_unmask(TWL6030_CHARGER_CTRL_INT_MASK,
283 REG_INT_MSK_LINE_C);
284 twl6030_interrupt_unmask(TWL6030_CHARGER_CTRL_INT_MASK,
285 REG_INT_MSK_STS_C);
286 twl6030_usb_irq(twl->irq2, twl);
287 twl6030_usbotg_irq(twl->irq1, twl);
288
289 return 0;
290}
291
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500292static void otg_set_vbus_work(struct work_struct *data)
Hema HKc33fad02010-12-10 17:58:20 +0530293{
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500294 struct twl6030_usb *twl = container_of(data, struct twl6030_usb,
295 set_vbus_work);
Hema HKc33fad02010-12-10 17:58:20 +0530296
297 /*
298 * Start driving VBUS. Set OPA_MODE bit in CHARGERUSB_CTRL1
299 * register. This enables boost mode.
300 */
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500301
302 if (twl->vbus_enable)
Hema HKc33fad02010-12-10 17:58:20 +0530303 twl6030_writeb(twl, TWL_MODULE_MAIN_CHARGE , 0x40,
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500304 CHARGERUSB_CTRL1);
305 else
Hema HKc33fad02010-12-10 17:58:20 +0530306 twl6030_writeb(twl, TWL_MODULE_MAIN_CHARGE , 0x00,
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500307 CHARGERUSB_CTRL1);
308}
309
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530310static int twl6030_set_vbus(struct phy_companion *comparator, bool enabled)
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500311{
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530312 struct twl6030_usb *twl = comparator_to_twl(comparator);
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500313
314 twl->vbus_enable = enabled;
315 schedule_work(&twl->set_vbus_work);
316
Hema HKc33fad02010-12-10 17:58:20 +0530317 return 0;
318}
319
Hema HKc33fad02010-12-10 17:58:20 +0530320static int __devinit twl6030_usb_probe(struct platform_device *pdev)
321{
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530322 u32 ret;
Hema HKc33fad02010-12-10 17:58:20 +0530323 struct twl6030_usb *twl;
324 int status, err;
325 struct twl4030_usb_data *pdata;
326 struct device *dev = &pdev->dev;
327 pdata = dev->platform_data;
328
Kishon Vijay Abraham Ib8a3efa2012-06-22 17:40:55 +0530329 twl = devm_kzalloc(dev, sizeof *twl, GFP_KERNEL);
Hema HKc33fad02010-12-10 17:58:20 +0530330 if (!twl)
331 return -ENOMEM;
332
333 twl->dev = &pdev->dev;
334 twl->irq1 = platform_get_irq(pdev, 0);
335 twl->irq2 = platform_get_irq(pdev, 1);
Graeme Gregory5ccee4a2011-05-22 21:21:24 +0100336 twl->features = pdata->features;
Kishon Vijay Abraham Ic9721432012-06-22 17:40:52 +0530337 twl->linkstat = OMAP_MUSB_UNKNOWN;
Heikki Krogerus46b8f6b2012-02-13 13:24:12 +0200338
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530339 twl->comparator.set_vbus = twl6030_set_vbus;
340 twl->comparator.start_srp = twl6030_start_srp;
Heikki Krogerus46b8f6b2012-02-13 13:24:12 +0200341
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530342 ret = omap_usb2_set_comparator(&twl->comparator);
343 if (ret == -ENODEV) {
344 dev_info(&pdev->dev, "phy not ready, deferring probe");
345 return -EPROBE_DEFER;
346 }
Hema HKc33fad02010-12-10 17:58:20 +0530347
348 /* init spinlock for workqueue */
349 spin_lock_init(&twl->lock);
350
351 err = twl6030_usb_ldo_init(twl);
352 if (err) {
353 dev_err(&pdev->dev, "ldo init failed\n");
Hema HKc33fad02010-12-10 17:58:20 +0530354 return err;
355 }
Hema HKc33fad02010-12-10 17:58:20 +0530356
357 platform_set_drvdata(pdev, twl);
358 if (device_create_file(&pdev->dev, &dev_attr_vbus))
359 dev_warn(&pdev->dev, "could not create sysfs file\n");
360
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500361 INIT_WORK(&twl->set_vbus_work, otg_set_vbus_work);
362
Hema HKc33fad02010-12-10 17:58:20 +0530363 twl->irq_enabled = true;
364 status = request_threaded_irq(twl->irq1, NULL, twl6030_usbotg_irq,
Ming Lei8f9d9732012-05-17 11:38:24 +0800365 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING | IRQF_ONESHOT,
Hema HKc33fad02010-12-10 17:58:20 +0530366 "twl6030_usb", twl);
367 if (status < 0) {
368 dev_err(&pdev->dev, "can't get IRQ %d, err %d\n",
369 twl->irq1, status);
370 device_remove_file(twl->dev, &dev_attr_vbus);
Hema HKc33fad02010-12-10 17:58:20 +0530371 return status;
372 }
373
374 status = request_threaded_irq(twl->irq2, NULL, twl6030_usb_irq,
Ming Lei8f9d9732012-05-17 11:38:24 +0800375 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING | IRQF_ONESHOT,
Hema HKc33fad02010-12-10 17:58:20 +0530376 "twl6030_usb", twl);
377 if (status < 0) {
378 dev_err(&pdev->dev, "can't get IRQ %d, err %d\n",
379 twl->irq2, status);
380 free_irq(twl->irq1, twl);
381 device_remove_file(twl->dev, &dev_attr_vbus);
Hema HKc33fad02010-12-10 17:58:20 +0530382 return status;
383 }
384
Hema HK6dc25032011-02-17 12:06:04 +0530385 twl->asleep = 0;
Kishon Vijay Abraham I0e98de62012-09-06 20:27:07 +0530386 twl6030_enable_irq(twl);
Hema HKc33fad02010-12-10 17:58:20 +0530387 dev_info(&pdev->dev, "Initialized TWL6030 USB module\n");
388
389 return 0;
390}
391
392static int __exit twl6030_usb_remove(struct platform_device *pdev)
393{
394 struct twl6030_usb *twl = platform_get_drvdata(pdev);
395
Hema HKc33fad02010-12-10 17:58:20 +0530396 twl6030_interrupt_mask(TWL6030_USBOTG_INT_MASK,
397 REG_INT_MSK_LINE_C);
398 twl6030_interrupt_mask(TWL6030_USBOTG_INT_MASK,
399 REG_INT_MSK_STS_C);
400 free_irq(twl->irq1, twl);
401 free_irq(twl->irq2, twl);
402 regulator_put(twl->usb3v3);
Hema HKc33fad02010-12-10 17:58:20 +0530403 device_remove_file(twl->dev, &dev_attr_vbus);
Moiz Sonasath5bf54502011-06-27 10:01:01 -0500404 cancel_work_sync(&twl->set_vbus_work);
Hema HKc33fad02010-12-10 17:58:20 +0530405
406 return 0;
407}
408
409static struct platform_driver twl6030_usb_driver = {
410 .probe = twl6030_usb_probe,
411 .remove = __exit_p(twl6030_usb_remove),
412 .driver = {
413 .name = "twl6030_usb",
414 .owner = THIS_MODULE,
415 },
416};
417
418static int __init twl6030_usb_init(void)
419{
420 return platform_driver_register(&twl6030_usb_driver);
421}
422subsys_initcall(twl6030_usb_init);
423
424static void __exit twl6030_usb_exit(void)
425{
426 platform_driver_unregister(&twl6030_usb_driver);
427}
428module_exit(twl6030_usb_exit);
429
430MODULE_ALIAS("platform:twl6030_usb");
431MODULE_AUTHOR("Hema HK <hemahk@ti.com>");
432MODULE_DESCRIPTION("TWL6030 USB transceiver driver");
433MODULE_LICENSE("GPL");