2 * Tahvo USB transceiver driver
4 * Copyright (C) 2005-2006 Nokia Corporation
6 * Parts copied from isp1301_omap.c.
7 * Copyright (C) 2004 Texas Instruments
8 * Copyright (C) 2004 David Brownell
10 * Original driver written by Juha Yrjölä, Tony Lindgren and Timo Teräs.
11 * Modified for Retu/Tahvo MFD by Aaro Koskinen.
13 * This file is subject to the terms and conditions of the GNU General
14 * Public License. See the file "COPYING" in the main directory of this
15 * archive for more details.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
24 #include <linux/clk.h>
25 #include <linux/usb.h>
26 #include <linux/extcon.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/usb/otg.h>
30 #include <linux/mfd/retu.h>
31 #include <linux/usb/gadget.h>
32 #include <linux/platform_device.h>
34 #define DRIVER_NAME "tahvo-usb"
36 #define TAHVO_REG_IDSR 0x02
37 #define TAHVO_REG_USBR 0x06
39 #define USBR_SLAVE_CONTROL (1 << 8)
40 #define USBR_VPPVIO_SW (1 << 7)
41 #define USBR_SPEED (1 << 6)
42 #define USBR_REGOUT (1 << 5)
43 #define USBR_MASTER_SW2 (1 << 4)
44 #define USBR_MASTER_SW1 (1 << 3)
45 #define USBR_SLAVE_SW (1 << 2)
46 #define USBR_NSUSPEND (1 << 1)
47 #define USBR_SEMODE (1 << 0)
49 #define TAHVO_MODE_HOST 0
50 #define TAHVO_MODE_PERIPHERAL 1
53 struct platform_device
*pt_dev
;
56 struct mutex serialize
;
60 struct extcon_dev extcon
;
63 static const char *tahvo_cable
[] = {
69 static ssize_t
vbus_state_show(struct device
*device
,
70 struct device_attribute
*attr
, char *buf
)
72 struct tahvo_usb
*tu
= dev_get_drvdata(device
);
73 return sprintf(buf
, "%s\n", tu
->vbus_state
? "on" : "off");
75 static DEVICE_ATTR(vbus
, 0444, vbus_state_show
, NULL
);
77 static void check_vbus_state(struct tahvo_usb
*tu
)
79 struct retu_dev
*rdev
= dev_get_drvdata(tu
->pt_dev
->dev
.parent
);
82 reg
= retu_read(rdev
, TAHVO_REG_IDSR
);
83 if (reg
& TAHVO_STAT_VBUS
) {
84 switch (tu
->phy
.otg
->state
) {
85 case OTG_STATE_B_IDLE
:
86 /* Enable the gadget driver */
87 if (tu
->phy
.otg
->gadget
)
88 usb_gadget_vbus_connect(tu
->phy
.otg
->gadget
);
89 tu
->phy
.otg
->state
= OTG_STATE_B_PERIPHERAL
;
90 usb_phy_set_event(&tu
->phy
, USB_EVENT_ENUMERATED
);
92 case OTG_STATE_A_IDLE
:
94 * Session is now valid assuming the USB hub is driving
97 tu
->phy
.otg
->state
= OTG_STATE_A_HOST
;
102 dev_info(&tu
->pt_dev
->dev
, "USB cable connected\n");
104 switch (tu
->phy
.otg
->state
) {
105 case OTG_STATE_B_PERIPHERAL
:
106 if (tu
->phy
.otg
->gadget
)
107 usb_gadget_vbus_disconnect(tu
->phy
.otg
->gadget
);
108 tu
->phy
.otg
->state
= OTG_STATE_B_IDLE
;
109 usb_phy_set_event(&tu
->phy
, USB_EVENT_NONE
);
111 case OTG_STATE_A_HOST
:
112 tu
->phy
.otg
->state
= OTG_STATE_A_IDLE
;
117 dev_info(&tu
->pt_dev
->dev
, "USB cable disconnected\n");
120 prev_state
= tu
->vbus_state
;
121 tu
->vbus_state
= reg
& TAHVO_STAT_VBUS
;
122 if (prev_state
!= tu
->vbus_state
) {
123 extcon_set_cable_state(&tu
->extcon
, "USB", tu
->vbus_state
);
124 sysfs_notify(&tu
->pt_dev
->dev
.kobj
, NULL
, "vbus_state");
128 static void tahvo_usb_become_host(struct tahvo_usb
*tu
)
130 struct retu_dev
*rdev
= dev_get_drvdata(tu
->pt_dev
->dev
.parent
);
132 extcon_set_cable_state(&tu
->extcon
, "USB-HOST", true);
134 /* Power up the transceiver in USB host mode */
135 retu_write(rdev
, TAHVO_REG_USBR
, USBR_REGOUT
| USBR_NSUSPEND
|
136 USBR_MASTER_SW2
| USBR_MASTER_SW1
);
137 tu
->phy
.otg
->state
= OTG_STATE_A_IDLE
;
139 check_vbus_state(tu
);
142 static void tahvo_usb_stop_host(struct tahvo_usb
*tu
)
144 tu
->phy
.otg
->state
= OTG_STATE_A_IDLE
;
147 static void tahvo_usb_become_peripheral(struct tahvo_usb
*tu
)
149 struct retu_dev
*rdev
= dev_get_drvdata(tu
->pt_dev
->dev
.parent
);
151 extcon_set_cable_state(&tu
->extcon
, "USB-HOST", false);
153 /* Power up transceiver and set it in USB peripheral mode */
154 retu_write(rdev
, TAHVO_REG_USBR
, USBR_SLAVE_CONTROL
| USBR_REGOUT
|
155 USBR_NSUSPEND
| USBR_SLAVE_SW
);
156 tu
->phy
.otg
->state
= OTG_STATE_B_IDLE
;
158 check_vbus_state(tu
);
161 static void tahvo_usb_stop_peripheral(struct tahvo_usb
*tu
)
163 if (tu
->phy
.otg
->gadget
)
164 usb_gadget_vbus_disconnect(tu
->phy
.otg
->gadget
);
165 tu
->phy
.otg
->state
= OTG_STATE_B_IDLE
;
168 static void tahvo_usb_power_off(struct tahvo_usb
*tu
)
170 struct retu_dev
*rdev
= dev_get_drvdata(tu
->pt_dev
->dev
.parent
);
172 /* Disable gadget controller if any */
173 if (tu
->phy
.otg
->gadget
)
174 usb_gadget_vbus_disconnect(tu
->phy
.otg
->gadget
);
176 /* Power off transceiver */
177 retu_write(rdev
, TAHVO_REG_USBR
, 0);
178 tu
->phy
.otg
->state
= OTG_STATE_UNDEFINED
;
181 static int tahvo_usb_set_suspend(struct usb_phy
*dev
, int suspend
)
183 struct tahvo_usb
*tu
= container_of(dev
, struct tahvo_usb
, phy
);
184 struct retu_dev
*rdev
= dev_get_drvdata(tu
->pt_dev
->dev
.parent
);
187 dev_dbg(&tu
->pt_dev
->dev
, "%s\n", __func__
);
189 w
= retu_read(rdev
, TAHVO_REG_USBR
);
194 retu_write(rdev
, TAHVO_REG_USBR
, w
);
199 static int tahvo_usb_set_host(struct usb_otg
*otg
, struct usb_bus
*host
)
201 struct tahvo_usb
*tu
= container_of(otg
->usb_phy
, struct tahvo_usb
,
204 dev_dbg(&tu
->pt_dev
->dev
, "%s %p\n", __func__
, host
);
206 mutex_lock(&tu
->serialize
);
209 if (tu
->tahvo_mode
== TAHVO_MODE_HOST
)
210 tahvo_usb_power_off(tu
);
212 mutex_unlock(&tu
->serialize
);
216 if (tu
->tahvo_mode
== TAHVO_MODE_HOST
) {
218 tahvo_usb_become_host(tu
);
223 mutex_unlock(&tu
->serialize
);
228 static int tahvo_usb_set_peripheral(struct usb_otg
*otg
,
229 struct usb_gadget
*gadget
)
231 struct tahvo_usb
*tu
= container_of(otg
->usb_phy
, struct tahvo_usb
,
234 dev_dbg(&tu
->pt_dev
->dev
, "%s %p\n", __func__
, gadget
);
236 mutex_lock(&tu
->serialize
);
239 if (tu
->tahvo_mode
== TAHVO_MODE_PERIPHERAL
)
240 tahvo_usb_power_off(tu
);
241 tu
->phy
.otg
->gadget
= NULL
;
242 mutex_unlock(&tu
->serialize
);
246 tu
->phy
.otg
->gadget
= gadget
;
247 if (tu
->tahvo_mode
== TAHVO_MODE_PERIPHERAL
)
248 tahvo_usb_become_peripheral(tu
);
250 mutex_unlock(&tu
->serialize
);
255 static irqreturn_t
tahvo_usb_vbus_interrupt(int irq
, void *_tu
)
257 struct tahvo_usb
*tu
= _tu
;
259 mutex_lock(&tu
->serialize
);
260 check_vbus_state(tu
);
261 mutex_unlock(&tu
->serialize
);
266 static ssize_t
otg_mode_show(struct device
*device
,
267 struct device_attribute
*attr
, char *buf
)
269 struct tahvo_usb
*tu
= dev_get_drvdata(device
);
271 switch (tu
->tahvo_mode
) {
272 case TAHVO_MODE_HOST
:
273 return sprintf(buf
, "host\n");
274 case TAHVO_MODE_PERIPHERAL
:
275 return sprintf(buf
, "peripheral\n");
281 static ssize_t
otg_mode_store(struct device
*device
,
282 struct device_attribute
*attr
,
283 const char *buf
, size_t count
)
285 struct tahvo_usb
*tu
= dev_get_drvdata(device
);
288 mutex_lock(&tu
->serialize
);
289 if (count
>= 4 && strncmp(buf
, "host", 4) == 0) {
290 if (tu
->tahvo_mode
== TAHVO_MODE_PERIPHERAL
)
291 tahvo_usb_stop_peripheral(tu
);
292 tu
->tahvo_mode
= TAHVO_MODE_HOST
;
293 if (tu
->phy
.otg
->host
) {
294 dev_info(device
, "HOST mode: host controller present\n");
295 tahvo_usb_become_host(tu
);
297 dev_info(device
, "HOST mode: no host controller, powering off\n");
298 tahvo_usb_power_off(tu
);
301 } else if (count
>= 10 && strncmp(buf
, "peripheral", 10) == 0) {
302 if (tu
->tahvo_mode
== TAHVO_MODE_HOST
)
303 tahvo_usb_stop_host(tu
);
304 tu
->tahvo_mode
= TAHVO_MODE_PERIPHERAL
;
305 if (tu
->phy
.otg
->gadget
) {
306 dev_info(device
, "PERIPHERAL mode: gadget driver present\n");
307 tahvo_usb_become_peripheral(tu
);
309 dev_info(device
, "PERIPHERAL mode: no gadget driver, powering off\n");
310 tahvo_usb_power_off(tu
);
316 mutex_unlock(&tu
->serialize
);
320 static DEVICE_ATTR(otg_mode
, 0644, otg_mode_show
, otg_mode_store
);
322 static struct attribute
*tahvo_attributes
[] = {
324 &dev_attr_otg_mode
.attr
,
328 static struct attribute_group tahvo_attr_group
= {
329 .attrs
= tahvo_attributes
,
332 static int tahvo_usb_probe(struct platform_device
*pdev
)
334 struct retu_dev
*rdev
= dev_get_drvdata(pdev
->dev
.parent
);
335 struct tahvo_usb
*tu
;
338 tu
= devm_kzalloc(&pdev
->dev
, sizeof(*tu
), GFP_KERNEL
);
342 tu
->phy
.otg
= devm_kzalloc(&pdev
->dev
, sizeof(*tu
->phy
.otg
),
350 #ifdef CONFIG_TAHVO_USB_HOST_BY_DEFAULT
351 tu
->tahvo_mode
= TAHVO_MODE_HOST
;
353 tu
->tahvo_mode
= TAHVO_MODE_PERIPHERAL
;
356 mutex_init(&tu
->serialize
);
358 tu
->ick
= devm_clk_get(&pdev
->dev
, "usb_l4_ick");
359 if (!IS_ERR(tu
->ick
))
363 * Set initial state, so that we generate kevents only on state changes.
365 tu
->vbus_state
= retu_read(rdev
, TAHVO_REG_IDSR
) & TAHVO_STAT_VBUS
;
367 tu
->extcon
.name
= DRIVER_NAME
;
368 tu
->extcon
.supported_cable
= tahvo_cable
;
369 tu
->extcon
.dev
.parent
= &pdev
->dev
;
371 ret
= extcon_dev_register(&tu
->extcon
);
373 dev_err(&pdev
->dev
, "could not register extcon device: %d\n",
375 goto err_disable_clk
;
378 /* Set the initial cable state. */
379 extcon_set_cable_state(&tu
->extcon
, "USB-HOST",
380 tu
->tahvo_mode
== TAHVO_MODE_HOST
);
381 extcon_set_cable_state(&tu
->extcon
, "USB", tu
->vbus_state
);
383 /* Create OTG interface */
384 tahvo_usb_power_off(tu
);
385 tu
->phy
.dev
= &pdev
->dev
;
386 tu
->phy
.otg
->state
= OTG_STATE_UNDEFINED
;
387 tu
->phy
.label
= DRIVER_NAME
;
388 tu
->phy
.set_suspend
= tahvo_usb_set_suspend
;
390 tu
->phy
.otg
->usb_phy
= &tu
->phy
;
391 tu
->phy
.otg
->set_host
= tahvo_usb_set_host
;
392 tu
->phy
.otg
->set_peripheral
= tahvo_usb_set_peripheral
;
394 ret
= usb_add_phy(&tu
->phy
, USB_PHY_TYPE_USB2
);
396 dev_err(&pdev
->dev
, "cannot register USB transceiver: %d\n",
398 goto err_extcon_unreg
;
401 dev_set_drvdata(&pdev
->dev
, tu
);
403 tu
->irq
= platform_get_irq(pdev
, 0);
404 ret
= request_threaded_irq(tu
->irq
, NULL
, tahvo_usb_vbus_interrupt
, 0,
407 dev_err(&pdev
->dev
, "could not register tahvo-vbus irq: %d\n",
413 ret
= sysfs_create_group(&pdev
->dev
.kobj
, &tahvo_attr_group
);
415 dev_err(&pdev
->dev
, "cannot create sysfs group: %d\n", ret
);
422 free_irq(tu
->irq
, tu
);
424 usb_remove_phy(&tu
->phy
);
426 extcon_dev_unregister(&tu
->extcon
);
428 if (!IS_ERR(tu
->ick
))
429 clk_disable(tu
->ick
);
434 static int tahvo_usb_remove(struct platform_device
*pdev
)
436 struct tahvo_usb
*tu
= platform_get_drvdata(pdev
);
438 sysfs_remove_group(&pdev
->dev
.kobj
, &tahvo_attr_group
);
439 free_irq(tu
->irq
, tu
);
440 usb_remove_phy(&tu
->phy
);
441 extcon_dev_unregister(&tu
->extcon
);
442 if (!IS_ERR(tu
->ick
))
443 clk_disable(tu
->ick
);
448 static struct platform_driver tahvo_usb_driver
= {
449 .probe
= tahvo_usb_probe
,
450 .remove
= tahvo_usb_remove
,
455 module_platform_driver(tahvo_usb_driver
);
457 MODULE_DESCRIPTION("Tahvo USB transceiver driver");
458 MODULE_LICENSE("GPL");
459 MODULE_AUTHOR("Juha Yrjölä, Tony Lindgren, and Timo Teräs");
460 MODULE_AUTHOR("Aaro Koskinen <aaro.koskinen@iki.fi>");