2 * isp1301_omap - ISP 1301 USB transceiver, talking to OMAP OTG controller
4 * Copyright (C) 2004 Texas Instruments
5 * Copyright (C) 2004 David Brownell
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
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.
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.
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/slab.h>
26 #include <linux/interrupt.h>
27 #include <linux/platform_device.h>
28 #include <linux/gpio.h>
29 #include <linux/usb/ch9.h>
30 #include <linux/usb/gadget.h>
31 #include <linux/usb.h>
32 #include <linux/usb/otg.h>
33 #include <linux/i2c.h>
34 #include <linux/workqueue.h>
37 #include <asm/mach-types.h>
48 #define DRIVER_VERSION "24 August 2004"
49 #define DRIVER_NAME (isp1301_driver.driver.name)
51 MODULE_DESCRIPTION("ISP1301 USB OTG Transceiver Driver");
52 MODULE_LICENSE("GPL");
55 struct otg_transceiver otg
;
56 struct i2c_client
*client
;
57 void (*i2c_release
)(struct device
*dev
);
64 struct timer_list timer
;
66 /* use keventd context to change the state for us */
67 struct work_struct work
;
70 # define WORK_UPDATE_ISP 0 /* update ISP from OTG */
71 # define WORK_UPDATE_OTG 1 /* update OTG from ISP */
72 # define WORK_HOST_RESUME 4 /* resume host */
73 # define WORK_TIMER 6 /* timer fired */
74 # define WORK_STOP 7 /* don't resubmit */
78 /* bits in OTG_CTRL */
80 #define OTG_XCEIV_OUTPUTS \
81 (OTG_ASESSVLD|OTG_BSESSEND|OTG_BSESSVLD|OTG_VBUSVLD|OTG_ID)
82 #define OTG_XCEIV_INPUTS \
83 (OTG_PULLDOWN|OTG_PULLUP|OTG_DRV_VBUS|OTG_PD_VBUS|OTG_PU_VBUS|OTG_PU_ID)
84 #define OTG_CTRL_BITS \
85 (OTG_A_BUSREQ|OTG_A_SETB_HNPEN|OTG_B_BUSREQ|OTG_B_HNPEN|OTG_BUSDROP)
86 /* and OTG_PULLUP is sometimes written */
88 #define OTG_CTRL_MASK (OTG_DRIVER_SEL| \
89 OTG_XCEIV_OUTPUTS|OTG_XCEIV_INPUTS| \
93 /*-------------------------------------------------------------------------*/
95 /* board-specific PM hooks */
97 #if defined(CONFIG_MACH_OMAP_H2) || defined(CONFIG_MACH_OMAP_H3)
99 #if defined(CONFIG_TPS65010) || defined(CONFIG_TPS65010_MODULE)
101 #include <linux/i2c/tps65010.h>
105 static inline int tps65010_set_vbus_draw(unsigned mA
)
107 pr_debug("tps65010: draw %d mA (STUB)\n", mA
);
113 static void enable_vbus_draw(struct isp1301
*isp
, unsigned mA
)
115 int status
= tps65010_set_vbus_draw(mA
);
117 pr_debug(" VBUS %d mA error %d\n", mA
, status
);
122 static void enable_vbus_draw(struct isp1301
*isp
, unsigned mA
)
124 /* H4 controls this by DIP switch S2.4; no soft control.
125 * ON means the charger is always enabled. Leave it OFF
126 * unless the OTG port is used only in B-peripheral mode.
132 static void enable_vbus_source(struct isp1301
*isp
)
134 /* this board won't supply more than 8mA vbus power.
135 * some boards can switch a 100ma "unit load" (or more).
140 /* products will deliver OTG messages with LEDs, GUI, etc */
141 static inline void notresponding(struct isp1301
*isp
)
143 printk(KERN_NOTICE
"OTG device not responding.\n");
147 /*-------------------------------------------------------------------------*/
149 static struct i2c_driver isp1301_driver
;
151 /* smbus apis are used for portability */
154 isp1301_get_u8(struct isp1301
*isp
, u8 reg
)
156 return i2c_smbus_read_byte_data(isp
->client
, reg
+ 0);
160 isp1301_get_u16(struct isp1301
*isp
, u8 reg
)
162 return i2c_smbus_read_word_data(isp
->client
, reg
);
166 isp1301_set_bits(struct isp1301
*isp
, u8 reg
, u8 bits
)
168 return i2c_smbus_write_byte_data(isp
->client
, reg
+ 0, bits
);
172 isp1301_clear_bits(struct isp1301
*isp
, u8 reg
, u8 bits
)
174 return i2c_smbus_write_byte_data(isp
->client
, reg
+ 1, bits
);
177 /*-------------------------------------------------------------------------*/
180 #define ISP1301_VENDOR_ID 0x00 /* u16 read */
181 #define ISP1301_PRODUCT_ID 0x02 /* u16 read */
182 #define ISP1301_BCD_DEVICE 0x14 /* u16 read */
184 #define I2C_VENDOR_ID_PHILIPS 0x04cc
185 #define I2C_PRODUCT_ID_PHILIPS_1301 0x1301
187 /* operational registers */
188 #define ISP1301_MODE_CONTROL_1 0x04 /* u8 read, set, +1 clear */
189 # define MC1_SPEED (1 << 0)
190 # define MC1_SUSPEND (1 << 1)
191 # define MC1_DAT_SE0 (1 << 2)
192 # define MC1_TRANSPARENT (1 << 3)
193 # define MC1_BDIS_ACON_EN (1 << 4)
194 # define MC1_OE_INT_EN (1 << 5)
195 # define MC1_UART_EN (1 << 6)
196 # define MC1_MASK 0x7f
197 #define ISP1301_MODE_CONTROL_2 0x12 /* u8 read, set, +1 clear */
198 # define MC2_GLOBAL_PWR_DN (1 << 0)
199 # define MC2_SPD_SUSP_CTRL (1 << 1)
200 # define MC2_BI_DI (1 << 2)
201 # define MC2_TRANSP_BDIR0 (1 << 3)
202 # define MC2_TRANSP_BDIR1 (1 << 4)
203 # define MC2_AUDIO_EN (1 << 5)
204 # define MC2_PSW_EN (1 << 6)
205 # define MC2_EN2V7 (1 << 7)
206 #define ISP1301_OTG_CONTROL_1 0x06 /* u8 read, set, +1 clear */
207 # define OTG1_DP_PULLUP (1 << 0)
208 # define OTG1_DM_PULLUP (1 << 1)
209 # define OTG1_DP_PULLDOWN (1 << 2)
210 # define OTG1_DM_PULLDOWN (1 << 3)
211 # define OTG1_ID_PULLDOWN (1 << 4)
212 # define OTG1_VBUS_DRV (1 << 5)
213 # define OTG1_VBUS_DISCHRG (1 << 6)
214 # define OTG1_VBUS_CHRG (1 << 7)
215 #define ISP1301_OTG_STATUS 0x10 /* u8 readonly */
216 # define OTG_B_SESS_END (1 << 6)
217 # define OTG_B_SESS_VLD (1 << 7)
219 #define ISP1301_INTERRUPT_SOURCE 0x08 /* u8 read */
220 #define ISP1301_INTERRUPT_LATCH 0x0A /* u8 read, set, +1 clear */
222 #define ISP1301_INTERRUPT_FALLING 0x0C /* u8 read, set, +1 clear */
223 #define ISP1301_INTERRUPT_RISING 0x0E /* u8 read, set, +1 clear */
225 /* same bitfields in all interrupt registers */
226 # define INTR_VBUS_VLD (1 << 0)
227 # define INTR_SESS_VLD (1 << 1)
228 # define INTR_DP_HI (1 << 2)
229 # define INTR_ID_GND (1 << 3)
230 # define INTR_DM_HI (1 << 4)
231 # define INTR_ID_FLOAT (1 << 5)
232 # define INTR_BDIS_ACON (1 << 6)
233 # define INTR_CR_INT (1 << 7)
235 /*-------------------------------------------------------------------------*/
237 static const char *state_string(enum usb_otg_state state
)
240 case OTG_STATE_A_IDLE
: return "a_idle";
241 case OTG_STATE_A_WAIT_VRISE
: return "a_wait_vrise";
242 case OTG_STATE_A_WAIT_BCON
: return "a_wait_bcon";
243 case OTG_STATE_A_HOST
: return "a_host";
244 case OTG_STATE_A_SUSPEND
: return "a_suspend";
245 case OTG_STATE_A_PERIPHERAL
: return "a_peripheral";
246 case OTG_STATE_A_WAIT_VFALL
: return "a_wait_vfall";
247 case OTG_STATE_A_VBUS_ERR
: return "a_vbus_err";
248 case OTG_STATE_B_IDLE
: return "b_idle";
249 case OTG_STATE_B_SRP_INIT
: return "b_srp_init";
250 case OTG_STATE_B_PERIPHERAL
: return "b_peripheral";
251 case OTG_STATE_B_WAIT_ACON
: return "b_wait_acon";
252 case OTG_STATE_B_HOST
: return "b_host";
253 default: return "UNDEFINED";
257 static inline const char *state_name(struct isp1301
*isp
)
259 return state_string(isp
->otg
.state
);
262 /*-------------------------------------------------------------------------*/
264 /* NOTE: some of this ISP1301 setup is specific to H2 boards;
265 * not everything is guarded by board-specific checks, or even using
266 * omap_usb_config data to deduce MC1_DAT_SE0 and MC2_BI_DI.
268 * ALSO: this currently doesn't use ISP1301 low-power modes
269 * while OTG is running.
272 static void power_down(struct isp1301
*isp
)
274 isp
->otg
.state
= OTG_STATE_UNDEFINED
;
276 // isp1301_set_bits(isp, ISP1301_MODE_CONTROL_2, MC2_GLOBAL_PWR_DN);
277 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_SUSPEND
);
279 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_ID_PULLDOWN
);
280 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
283 static void power_up(struct isp1301
*isp
)
285 // isp1301_clear_bits(isp, ISP1301_MODE_CONTROL_2, MC2_GLOBAL_PWR_DN);
286 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_SUSPEND
);
288 /* do this only when cpu is driving transceiver,
289 * so host won't see a low speed device...
291 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
294 #define NO_HOST_SUSPEND
296 static int host_suspend(struct isp1301
*isp
)
298 #ifdef NO_HOST_SUSPEND
306 /* Currently ASSUMES only the OTG port matters;
307 * other ports could be active...
309 dev
= isp
->otg
.host
->controller
;
310 return dev
->driver
->suspend(dev
, 3, 0);
314 static int host_resume(struct isp1301
*isp
)
316 #ifdef NO_HOST_SUSPEND
324 dev
= isp
->otg
.host
->controller
;
325 return dev
->driver
->resume(dev
, 0);
329 static int gadget_suspend(struct isp1301
*isp
)
331 isp
->otg
.gadget
->b_hnp_enable
= 0;
332 isp
->otg
.gadget
->a_hnp_support
= 0;
333 isp
->otg
.gadget
->a_alt_hnp_support
= 0;
334 return usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
337 /*-------------------------------------------------------------------------*/
339 #define TIMER_MINUTES 10
340 #define TIMER_JIFFIES (TIMER_MINUTES * 60 * HZ)
342 /* Almost all our I2C messaging comes from a work queue's task context.
343 * NOTE: guaranteeing certain response times might mean we shouldn't
344 * share keventd's work queue; a realtime task might be safest.
346 static void isp1301_defer_work(struct isp1301
*isp
, int work
)
350 if (isp
&& !test_and_set_bit(work
, &isp
->todo
)) {
351 (void) get_device(&isp
->client
->dev
);
352 status
= schedule_work(&isp
->work
);
353 if (!status
&& !isp
->working
)
354 dev_vdbg(&isp
->client
->dev
,
355 "work item %d may be lost\n", work
);
359 /* called from irq handlers */
360 static void a_idle(struct isp1301
*isp
, const char *tag
)
364 if (isp
->otg
.state
== OTG_STATE_A_IDLE
)
367 isp
->otg
.default_a
= 1;
369 isp
->otg
.host
->is_b_host
= 0;
372 if (isp
->otg
.gadget
) {
373 isp
->otg
.gadget
->is_a_peripheral
= 1;
376 isp
->otg
.state
= OTG_STATE_A_IDLE
;
377 l
= omap_readl(OTG_CTRL
) & OTG_XCEIV_OUTPUTS
;
378 omap_writel(l
, OTG_CTRL
);
379 isp
->last_otg_ctrl
= l
;
380 pr_debug(" --> %s/%s\n", state_name(isp
), tag
);
383 /* called from irq handlers */
384 static void b_idle(struct isp1301
*isp
, const char *tag
)
388 if (isp
->otg
.state
== OTG_STATE_B_IDLE
)
391 isp
->otg
.default_a
= 0;
393 isp
->otg
.host
->is_b_host
= 1;
396 if (isp
->otg
.gadget
) {
397 isp
->otg
.gadget
->is_a_peripheral
= 0;
400 isp
->otg
.state
= OTG_STATE_B_IDLE
;
401 l
= omap_readl(OTG_CTRL
) & OTG_XCEIV_OUTPUTS
;
402 omap_writel(l
, OTG_CTRL
);
403 isp
->last_otg_ctrl
= l
;
404 pr_debug(" --> %s/%s\n", state_name(isp
), tag
);
408 dump_regs(struct isp1301
*isp
, const char *label
)
411 u8 ctrl
= isp1301_get_u8(isp
, ISP1301_OTG_CONTROL_1
);
412 u8 status
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
413 u8 src
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
);
415 pr_debug("otg: %06x, %s %s, otg/%02x stat/%02x.%02x\n",
416 omap_readl(OTG_CTRL
), label
, state_name(isp
),
418 /* mode control and irq enables don't change much */
422 /*-------------------------------------------------------------------------*/
424 #ifdef CONFIG_USB_OTG
427 * The OMAP OTG controller handles most of the OTG state transitions.
429 * We translate isp1301 outputs (mostly voltage comparator status) into
430 * OTG inputs; OTG outputs (mostly pullup/pulldown controls) and HNP state
431 * flags into isp1301 inputs ... and infer state transitions.
436 static void check_state(struct isp1301
*isp
, const char *tag
)
438 enum usb_otg_state state
= OTG_STATE_UNDEFINED
;
439 u8 fsm
= omap_readw(OTG_TEST
) & 0x0ff;
446 state
= OTG_STATE_B_IDLE
;
452 state
= OTG_STATE_B_PERIPHERAL
;
455 state
= OTG_STATE_B_SRP_INIT
;
458 /* extra dual-role default-b states */
464 state
= OTG_STATE_B_WAIT_ACON
;
467 state
= OTG_STATE_B_HOST
;
472 state
= OTG_STATE_A_IDLE
;
475 state
= OTG_STATE_A_WAIT_VFALL
;
478 state
= OTG_STATE_A_VBUS_ERR
;
484 state
= OTG_STATE_A_PERIPHERAL
;
487 state
= OTG_STATE_A_WAIT_VRISE
;
490 state
= OTG_STATE_A_WAIT_BCON
;
493 state
= OTG_STATE_A_HOST
;
496 state
= OTG_STATE_A_SUSPEND
;
501 if (isp
->otg
.state
== state
&& !extra
)
503 pr_debug("otg: %s FSM %s/%02x, %s, %06x\n", tag
,
504 state_string(state
), fsm
, state_name(isp
),
505 omap_readl(OTG_CTRL
));
510 static inline void check_state(struct isp1301
*isp
, const char *tag
) { }
514 /* outputs from ISP1301_INTERRUPT_SOURCE */
515 static void update_otg1(struct isp1301
*isp
, u8 int_src
)
519 otg_ctrl
= omap_readl(OTG_CTRL
) & OTG_CTRL_MASK
;
520 otg_ctrl
&= ~OTG_XCEIV_INPUTS
;
521 otg_ctrl
&= ~(OTG_ID
|OTG_ASESSVLD
|OTG_VBUSVLD
);
523 if (int_src
& INTR_SESS_VLD
)
524 otg_ctrl
|= OTG_ASESSVLD
;
525 else if (isp
->otg
.state
== OTG_STATE_A_WAIT_VFALL
) {
526 a_idle(isp
, "vfall");
527 otg_ctrl
&= ~OTG_CTRL_BITS
;
529 if (int_src
& INTR_VBUS_VLD
)
530 otg_ctrl
|= OTG_VBUSVLD
;
531 if (int_src
& INTR_ID_GND
) { /* default-A */
532 if (isp
->otg
.state
== OTG_STATE_B_IDLE
533 || isp
->otg
.state
== OTG_STATE_UNDEFINED
) {
537 } else { /* default-B */
539 if (isp
->otg
.state
== OTG_STATE_A_IDLE
540 || isp
->otg
.state
== OTG_STATE_UNDEFINED
) {
545 omap_writel(otg_ctrl
, OTG_CTRL
);
548 /* outputs from ISP1301_OTG_STATUS */
549 static void update_otg2(struct isp1301
*isp
, u8 otg_status
)
553 otg_ctrl
= omap_readl(OTG_CTRL
) & OTG_CTRL_MASK
;
554 otg_ctrl
&= ~OTG_XCEIV_INPUTS
;
555 otg_ctrl
&= ~(OTG_BSESSVLD
| OTG_BSESSEND
);
556 if (otg_status
& OTG_B_SESS_VLD
)
557 otg_ctrl
|= OTG_BSESSVLD
;
558 else if (otg_status
& OTG_B_SESS_END
)
559 otg_ctrl
|= OTG_BSESSEND
;
560 omap_writel(otg_ctrl
, OTG_CTRL
);
563 /* inputs going to ISP1301 */
564 static void otg_update_isp(struct isp1301
*isp
)
566 u32 otg_ctrl
, otg_change
;
567 u8 set
= OTG1_DM_PULLDOWN
, clr
= OTG1_DM_PULLUP
;
569 otg_ctrl
= omap_readl(OTG_CTRL
);
570 otg_change
= otg_ctrl
^ isp
->last_otg_ctrl
;
571 isp
->last_otg_ctrl
= otg_ctrl
;
572 otg_ctrl
= otg_ctrl
& OTG_XCEIV_INPUTS
;
574 switch (isp
->otg
.state
) {
575 case OTG_STATE_B_IDLE
:
576 case OTG_STATE_B_PERIPHERAL
:
577 case OTG_STATE_B_SRP_INIT
:
578 if (!(otg_ctrl
& OTG_PULLUP
)) {
579 // if (otg_ctrl & OTG_B_HNPEN) {
580 if (isp
->otg
.gadget
->b_hnp_enable
) {
581 isp
->otg
.state
= OTG_STATE_B_WAIT_ACON
;
582 pr_debug(" --> b_wait_acon\n");
587 set
|= OTG1_DP_PULLUP
;
588 clr
|= OTG1_DP_PULLDOWN
;
590 case OTG_STATE_A_SUSPEND
:
591 case OTG_STATE_A_PERIPHERAL
:
592 if (otg_ctrl
& OTG_PULLUP
)
595 // case OTG_STATE_B_WAIT_ACON:
598 set
|= OTG1_DP_PULLDOWN
;
599 clr
|= OTG1_DP_PULLUP
;
603 # define toggle(OTG,ISP) do { \
604 if (otg_ctrl & OTG) set |= ISP; \
608 if (!(isp
->otg
.host
))
609 otg_ctrl
&= ~OTG_DRV_VBUS
;
611 switch (isp
->otg
.state
) {
612 case OTG_STATE_A_SUSPEND
:
613 if (otg_ctrl
& OTG_DRV_VBUS
) {
614 set
|= OTG1_VBUS_DRV
;
617 /* HNP failed for some reason (A_AIDL_BDIS timeout) */
621 case OTG_STATE_A_VBUS_ERR
:
622 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
623 pr_debug(" --> a_wait_vfall\n");
625 case OTG_STATE_A_WAIT_VFALL
:
626 /* FIXME usbcore thinks port power is still on ... */
627 clr
|= OTG1_VBUS_DRV
;
629 case OTG_STATE_A_IDLE
:
630 if (otg_ctrl
& OTG_DRV_VBUS
) {
631 isp
->otg
.state
= OTG_STATE_A_WAIT_VRISE
;
632 pr_debug(" --> a_wait_vrise\n");
636 toggle(OTG_DRV_VBUS
, OTG1_VBUS_DRV
);
639 toggle(OTG_PU_VBUS
, OTG1_VBUS_CHRG
);
640 toggle(OTG_PD_VBUS
, OTG1_VBUS_DISCHRG
);
644 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, set
);
645 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, clr
);
647 /* HNP switch to host or peripheral; and SRP */
648 if (otg_change
& OTG_PULLUP
) {
651 switch (isp
->otg
.state
) {
652 case OTG_STATE_B_IDLE
:
653 if (clr
& OTG1_DP_PULLUP
)
655 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
656 pr_debug(" --> b_peripheral\n");
658 case OTG_STATE_A_SUSPEND
:
659 if (clr
& OTG1_DP_PULLUP
)
661 isp
->otg
.state
= OTG_STATE_A_PERIPHERAL
;
662 pr_debug(" --> a_peripheral\n");
667 l
= omap_readl(OTG_CTRL
);
669 omap_writel(l
, OTG_CTRL
);
672 check_state(isp
, __func__
);
673 dump_regs(isp
, "otg->isp1301");
676 static irqreturn_t
omap_otg_irq(int irq
, void *_isp
)
678 u16 otg_irq
= omap_readw(OTG_IRQ_SRC
);
681 struct isp1301
*isp
= _isp
;
683 /* update ISP1301 transciever from OTG controller */
684 if (otg_irq
& OPRT_CHG
) {
685 omap_writew(OPRT_CHG
, OTG_IRQ_SRC
);
686 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
689 /* SRP to become b_peripheral failed */
690 } else if (otg_irq
& B_SRP_TMROUT
) {
691 pr_debug("otg: B_SRP_TIMEOUT, %06x\n", omap_readl(OTG_CTRL
));
694 /* gadget drivers that care should monitor all kinds of
695 * remote wakeup (SRP, normal) using their own timer
696 * to give "check cable and A-device" messages.
698 if (isp
->otg
.state
== OTG_STATE_B_SRP_INIT
)
699 b_idle(isp
, "srp_timeout");
701 omap_writew(B_SRP_TMROUT
, OTG_IRQ_SRC
);
704 /* HNP to become b_host failed */
705 } else if (otg_irq
& B_HNP_FAIL
) {
706 pr_debug("otg: %s B_HNP_FAIL, %06x\n",
707 state_name(isp
), omap_readl(OTG_CTRL
));
710 otg_ctrl
= omap_readl(OTG_CTRL
);
711 otg_ctrl
|= OTG_BUSDROP
;
712 otg_ctrl
&= OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
713 omap_writel(otg_ctrl
, OTG_CTRL
);
715 /* subset of b_peripheral()... */
716 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
717 pr_debug(" --> b_peripheral\n");
719 omap_writew(B_HNP_FAIL
, OTG_IRQ_SRC
);
722 /* detect SRP from B-device ... */
723 } else if (otg_irq
& A_SRP_DETECT
) {
724 pr_debug("otg: %s SRP_DETECT, %06x\n",
725 state_name(isp
), omap_readl(OTG_CTRL
));
727 isp1301_defer_work(isp
, WORK_UPDATE_OTG
);
728 switch (isp
->otg
.state
) {
729 case OTG_STATE_A_IDLE
:
732 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
733 otg_ctrl
= omap_readl(OTG_CTRL
);
734 otg_ctrl
|= OTG_A_BUSREQ
;
735 otg_ctrl
&= ~(OTG_BUSDROP
|OTG_B_BUSREQ
)
738 omap_writel(otg_ctrl
, OTG_CTRL
);
744 omap_writew(A_SRP_DETECT
, OTG_IRQ_SRC
);
747 /* timer expired: T(a_wait_bcon) and maybe T(a_wait_vrise)
748 * we don't track them separately
750 } else if (otg_irq
& A_REQ_TMROUT
) {
751 otg_ctrl
= omap_readl(OTG_CTRL
);
752 pr_info("otg: BCON_TMOUT from %s, %06x\n",
753 state_name(isp
), otg_ctrl
);
756 otg_ctrl
|= OTG_BUSDROP
;
757 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
758 omap_writel(otg_ctrl
, OTG_CTRL
);
759 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
761 omap_writew(A_REQ_TMROUT
, OTG_IRQ_SRC
);
764 /* A-supplied voltage fell too low; overcurrent */
765 } else if (otg_irq
& A_VBUS_ERR
) {
766 otg_ctrl
= omap_readl(OTG_CTRL
);
767 printk(KERN_ERR
"otg: %s, VBUS_ERR %04x ctrl %06x\n",
768 state_name(isp
), otg_irq
, otg_ctrl
);
770 otg_ctrl
|= OTG_BUSDROP
;
771 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
772 omap_writel(otg_ctrl
, OTG_CTRL
);
773 isp
->otg
.state
= OTG_STATE_A_VBUS_ERR
;
775 omap_writew(A_VBUS_ERR
, OTG_IRQ_SRC
);
778 /* switch driver; the transciever code activates it,
779 * ungating the udc clock or resuming OHCI.
781 } else if (otg_irq
& DRIVER_SWITCH
) {
784 otg_ctrl
= omap_readl(OTG_CTRL
);
785 printk(KERN_NOTICE
"otg: %s, SWITCH to %s, ctrl %06x\n",
787 (otg_ctrl
& OTG_DRIVER_SEL
)
790 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
792 /* role is peripheral */
793 if (otg_ctrl
& OTG_DRIVER_SEL
) {
794 switch (isp
->otg
.state
) {
795 case OTG_STATE_A_IDLE
:
796 b_idle(isp
, __func__
);
801 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
805 if (!(otg_ctrl
& OTG_ID
)) {
806 otg_ctrl
&= OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
807 omap_writel(otg_ctrl
| OTG_A_BUSREQ
, OTG_CTRL
);
811 switch (isp
->otg
.state
) {
812 case OTG_STATE_B_WAIT_ACON
:
813 isp
->otg
.state
= OTG_STATE_B_HOST
;
814 pr_debug(" --> b_host\n");
817 case OTG_STATE_A_WAIT_BCON
:
818 isp
->otg
.state
= OTG_STATE_A_HOST
;
819 pr_debug(" --> a_host\n");
821 case OTG_STATE_A_PERIPHERAL
:
822 isp
->otg
.state
= OTG_STATE_A_WAIT_BCON
;
823 pr_debug(" --> a_wait_bcon\n");
828 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
832 omap_writew(DRIVER_SWITCH
, OTG_IRQ_SRC
);
836 usb_bus_start_enum(isp
->otg
.host
,
837 isp
->otg
.host
->otg_port
);
840 check_state(isp
, __func__
);
844 static struct platform_device
*otg_dev
;
846 static int isp1301_otg_init(struct isp1301
*isp
)
853 dump_regs(isp
, __func__
);
854 /* some of these values are board-specific... */
855 l
= omap_readl(OTG_SYSCON_2
);
858 | SRP_GPDATA
/* 9msec Bdev D+ pulse */
859 | SRP_GPDVBUS
/* discharge after VBUS pulse */
860 // | (3 << 24) /* 2msec VBUS pulse */
862 | (0 << 20) /* 200ms nominal A_WAIT_VRISE timer */
863 | SRP_DPW
/* detect 167+ns SRP pulses */
864 | SRP_DATA
| SRP_VBUS
/* accept both kinds of SRP pulse */
866 omap_writel(l
, OTG_SYSCON_2
);
868 update_otg1(isp
, isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
));
869 update_otg2(isp
, isp1301_get_u8(isp
, ISP1301_OTG_STATUS
));
871 check_state(isp
, __func__
);
872 pr_debug("otg: %s, %s %06x\n",
873 state_name(isp
), __func__
, omap_readl(OTG_CTRL
));
875 omap_writew(DRIVER_SWITCH
| OPRT_CHG
876 | B_SRP_TMROUT
| B_HNP_FAIL
877 | A_VBUS_ERR
| A_SRP_DETECT
| A_REQ_TMROUT
, OTG_IRQ_EN
);
879 l
= omap_readl(OTG_SYSCON_2
);
881 omap_writel(l
, OTG_SYSCON_2
);
886 static int otg_probe(struct platform_device
*dev
)
888 // struct omap_usb_config *config = dev->platform_data;
894 static int otg_remove(struct platform_device
*dev
)
900 static struct platform_driver omap_otg_driver
= {
902 .remove
= otg_remove
,
904 .owner
= THIS_MODULE
,
909 static int otg_bind(struct isp1301
*isp
)
916 status
= platform_driver_register(&omap_otg_driver
);
921 status
= request_irq(otg_dev
->resource
[1].start
, omap_otg_irq
,
922 IRQF_DISABLED
, DRIVER_NAME
, isp
);
927 platform_driver_unregister(&omap_otg_driver
);
931 static void otg_unbind(struct isp1301
*isp
)
935 free_irq(otg_dev
->resource
[1].start
, isp
);
940 /* OTG controller isn't clocked */
942 #endif /* CONFIG_USB_OTG */
944 /*-------------------------------------------------------------------------*/
946 static void b_peripheral(struct isp1301
*isp
)
950 l
= omap_readl(OTG_CTRL
) & OTG_XCEIV_OUTPUTS
;
951 omap_writel(l
, OTG_CTRL
);
953 usb_gadget_vbus_connect(isp
->otg
.gadget
);
955 #ifdef CONFIG_USB_OTG
956 enable_vbus_draw(isp
, 8);
959 enable_vbus_draw(isp
, 100);
960 /* UDC driver just set OTG_BSESSVLD */
961 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_DP_PULLUP
);
962 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_DP_PULLDOWN
);
963 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
964 pr_debug(" --> b_peripheral\n");
965 dump_regs(isp
, "2periph");
969 static void isp_update_otg(struct isp1301
*isp
, u8 stat
)
971 u8 isp_stat
, isp_bstat
;
972 enum usb_otg_state state
= isp
->otg
.state
;
974 if (stat
& INTR_BDIS_ACON
)
975 pr_debug("OTG: BDIS_ACON, %s\n", state_name(isp
));
977 /* start certain state transitions right away */
978 isp_stat
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
);
979 if (isp_stat
& INTR_ID_GND
) {
980 if (isp
->otg
.default_a
) {
982 case OTG_STATE_B_IDLE
:
985 case OTG_STATE_A_IDLE
:
986 enable_vbus_source(isp
);
988 case OTG_STATE_A_WAIT_VRISE
:
989 /* we skip over OTG_STATE_A_WAIT_BCON, since
990 * the HC will transition to A_HOST (or
991 * A_SUSPEND!) without our noticing except
994 if (isp_stat
& INTR_VBUS_VLD
)
995 isp
->otg
.state
= OTG_STATE_A_HOST
;
997 case OTG_STATE_A_WAIT_VFALL
:
998 if (!(isp_stat
& INTR_SESS_VLD
))
999 a_idle(isp
, "vfell");
1002 if (!(isp_stat
& INTR_VBUS_VLD
))
1003 isp
->otg
.state
= OTG_STATE_A_VBUS_ERR
;
1006 isp_bstat
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
1009 case OTG_STATE_B_PERIPHERAL
:
1010 case OTG_STATE_B_HOST
:
1011 case OTG_STATE_B_WAIT_ACON
:
1012 usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
1017 if (state
!= OTG_STATE_A_IDLE
)
1019 if (isp
->otg
.host
&& state
== OTG_STATE_A_IDLE
)
1020 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
1026 /* if user unplugged mini-A end of cable,
1027 * don't bypass A_WAIT_VFALL.
1029 if (isp
->otg
.default_a
) {
1032 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
1034 case OTG_STATE_A_WAIT_VFALL
:
1035 state
= OTG_STATE_A_IDLE
;
1036 /* khubd may take a while to notice and
1037 * handle this disconnect, so don't go
1038 * to B_IDLE quite yet.
1041 case OTG_STATE_A_IDLE
:
1043 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
,
1045 isp
->otg
.state
= OTG_STATE_B_IDLE
;
1046 l
= omap_readl(OTG_CTRL
) & OTG_CTRL_MASK
;
1047 l
&= ~OTG_CTRL_BITS
;
1048 omap_writel(l
, OTG_CTRL
);
1050 case OTG_STATE_B_IDLE
:
1054 isp_bstat
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
1056 switch (isp
->otg
.state
) {
1057 case OTG_STATE_B_PERIPHERAL
:
1058 case OTG_STATE_B_WAIT_ACON
:
1059 case OTG_STATE_B_HOST
:
1060 if (likely(isp_bstat
& OTG_B_SESS_VLD
))
1062 enable_vbus_draw(isp
, 0);
1063 #ifndef CONFIG_USB_OTG
1064 /* UDC driver will clear OTG_BSESSVLD */
1065 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
,
1067 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
,
1069 dump_regs(isp
, __func__
);
1072 case OTG_STATE_B_SRP_INIT
:
1073 b_idle(isp
, __func__
);
1074 l
= omap_readl(OTG_CTRL
) & OTG_XCEIV_OUTPUTS
;
1075 omap_writel(l
, OTG_CTRL
);
1077 case OTG_STATE_B_IDLE
:
1078 if (isp
->otg
.gadget
&& (isp_bstat
& OTG_B_SESS_VLD
)) {
1079 #ifdef CONFIG_USB_OTG
1080 update_otg1(isp
, isp_stat
);
1081 update_otg2(isp
, isp_bstat
);
1084 } else if (!(isp_stat
& (INTR_VBUS_VLD
|INTR_SESS_VLD
)))
1085 isp_bstat
|= OTG_B_SESS_END
;
1087 case OTG_STATE_A_WAIT_VFALL
:
1090 pr_debug("otg: unsupported b-device %s\n",
1096 if (state
!= isp
->otg
.state
)
1097 pr_debug(" isp, %s -> %s\n",
1098 state_string(state
), state_name(isp
));
1100 #ifdef CONFIG_USB_OTG
1101 /* update the OTG controller state to match the isp1301; may
1102 * trigger OPRT_CHG irqs for changes going to the isp1301.
1104 update_otg1(isp
, isp_stat
);
1105 update_otg2(isp
, isp_bstat
);
1106 check_state(isp
, __func__
);
1109 dump_regs(isp
, "isp1301->otg");
1112 /*-------------------------------------------------------------------------*/
1114 static u8
isp1301_clear_latch(struct isp1301
*isp
)
1116 u8 latch
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_LATCH
);
1117 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_LATCH
, latch
);
1122 isp1301_work(struct work_struct
*work
)
1124 struct isp1301
*isp
= container_of(work
, struct isp1301
, work
);
1127 /* implicit lock: we're the only task using this device */
1130 stop
= test_bit(WORK_STOP
, &isp
->todo
);
1132 #ifdef CONFIG_USB_OTG
1133 /* transfer state from otg engine to isp1301 */
1134 if (test_and_clear_bit(WORK_UPDATE_ISP
, &isp
->todo
)) {
1135 otg_update_isp(isp
);
1136 put_device(&isp
->client
->dev
);
1139 /* transfer state from isp1301 to otg engine */
1140 if (test_and_clear_bit(WORK_UPDATE_OTG
, &isp
->todo
)) {
1141 u8 stat
= isp1301_clear_latch(isp
);
1143 isp_update_otg(isp
, stat
);
1144 put_device(&isp
->client
->dev
);
1147 if (test_and_clear_bit(WORK_HOST_RESUME
, &isp
->todo
)) {
1151 * skip A_WAIT_VRISE; hc transitions invisibly
1152 * skip A_WAIT_BCON; same.
1154 switch (isp
->otg
.state
) {
1155 case OTG_STATE_A_WAIT_BCON
:
1156 case OTG_STATE_A_WAIT_VRISE
:
1157 isp
->otg
.state
= OTG_STATE_A_HOST
;
1158 pr_debug(" --> a_host\n");
1159 otg_ctrl
= omap_readl(OTG_CTRL
);
1160 otg_ctrl
|= OTG_A_BUSREQ
;
1161 otg_ctrl
&= ~(OTG_BUSDROP
|OTG_B_BUSREQ
)
1163 omap_writel(otg_ctrl
, OTG_CTRL
);
1165 case OTG_STATE_B_WAIT_ACON
:
1166 isp
->otg
.state
= OTG_STATE_B_HOST
;
1167 pr_debug(" --> b_host (acon)\n");
1169 case OTG_STATE_B_HOST
:
1170 case OTG_STATE_B_IDLE
:
1171 case OTG_STATE_A_IDLE
:
1174 pr_debug(" host resume in %s\n",
1179 put_device(&isp
->client
->dev
);
1182 if (test_and_clear_bit(WORK_TIMER
, &isp
->todo
)) {
1184 dump_regs(isp
, "timer");
1186 mod_timer(&isp
->timer
, jiffies
+ TIMER_JIFFIES
);
1188 put_device(&isp
->client
->dev
);
1192 dev_vdbg(&isp
->client
->dev
,
1193 "work done, todo = 0x%lx\n",
1196 dev_dbg(&isp
->client
->dev
, "stop\n");
1199 } while (isp
->todo
);
1203 static irqreturn_t
isp1301_irq(int irq
, void *isp
)
1205 isp1301_defer_work(isp
, WORK_UPDATE_OTG
);
1209 static void isp1301_timer(unsigned long _isp
)
1211 isp1301_defer_work((void *)_isp
, WORK_TIMER
);
1214 /*-------------------------------------------------------------------------*/
1216 static void isp1301_release(struct device
*dev
)
1218 struct isp1301
*isp
;
1220 isp
= dev_get_drvdata(dev
);
1222 /* FIXME -- not with a "new style" driver, it doesn't!! */
1224 /* ugly -- i2c hijacks our memory hook to wait_for_completion() */
1225 if (isp
->i2c_release
)
1226 isp
->i2c_release(dev
);
1230 static struct isp1301
*the_transceiver
;
1232 static int __exit
isp1301_remove(struct i2c_client
*i2c
)
1234 struct isp1301
*isp
;
1236 isp
= i2c_get_clientdata(i2c
);
1238 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_FALLING
, ~0);
1239 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_RISING
, ~0);
1240 free_irq(i2c
->irq
, isp
);
1241 #ifdef CONFIG_USB_OTG
1244 if (machine_is_omap_h2())
1247 isp
->timer
.data
= 0;
1248 set_bit(WORK_STOP
, &isp
->todo
);
1249 del_timer_sync(&isp
->timer
);
1250 flush_work_sync(&isp
->work
);
1252 put_device(&i2c
->dev
);
1253 the_transceiver
= NULL
;
1258 /*-------------------------------------------------------------------------*/
1260 /* NOTE: three modes are possible here, only one of which
1261 * will be standards-conformant on any given system:
1263 * - OTG mode (dual-role), required if there's a Mini-AB connector
1264 * - HOST mode, for when there's one or more A (host) connectors
1265 * - DEVICE mode, for when there's a B/Mini-B (device) connector
1267 * As a rule, you won't have an isp1301 chip unless it's there to
1268 * support the OTG mode. Other modes help testing USB controllers
1269 * in isolation from (full) OTG support, or maybe so later board
1270 * revisions can help to support those feature.
1273 #ifdef CONFIG_USB_OTG
1275 static int isp1301_otg_enable(struct isp1301
*isp
)
1278 isp1301_otg_init(isp
);
1280 /* NOTE: since we don't change this, this provides
1281 * a few more interrupts than are strictly needed.
1283 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1284 INTR_VBUS_VLD
| INTR_SESS_VLD
| INTR_ID_GND
);
1285 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1286 INTR_VBUS_VLD
| INTR_SESS_VLD
| INTR_ID_GND
);
1288 dev_info(&isp
->client
->dev
, "ready for dual-role USB ...\n");
1295 /* add or disable the host device+driver */
1297 isp1301_set_host(struct otg_transceiver
*otg
, struct usb_bus
*host
)
1299 struct isp1301
*isp
= container_of(otg
, struct isp1301
, otg
);
1301 if (!otg
|| isp
!= the_transceiver
)
1305 omap_writew(0, OTG_IRQ_EN
);
1307 isp
->otg
.host
= NULL
;
1311 #ifdef CONFIG_USB_OTG
1312 isp
->otg
.host
= host
;
1313 dev_dbg(&isp
->client
->dev
, "registered host\n");
1315 if (isp
->otg
.gadget
)
1316 return isp1301_otg_enable(isp
);
1319 #elif !defined(CONFIG_USB_GADGET_OMAP)
1320 // FIXME update its refcount
1321 isp
->otg
.host
= host
;
1325 if (machine_is_omap_h2())
1326 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
1328 dev_info(&isp
->client
->dev
, "A-Host sessions ok\n");
1329 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1331 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1334 /* If this has a Mini-AB connector, this mode is highly
1335 * nonstandard ... but can be handy for testing, especially with
1336 * the Mini-A end of an OTG cable. (Or something nonstandard
1337 * like MiniB-to-StandardB, maybe built with a gender mender.)
1339 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_VBUS_DRV
);
1341 dump_regs(isp
, __func__
);
1346 dev_dbg(&isp
->client
->dev
, "host sessions not allowed\n");
1353 isp1301_set_peripheral(struct otg_transceiver
*otg
, struct usb_gadget
*gadget
)
1355 struct isp1301
*isp
= container_of(otg
, struct isp1301
, otg
);
1356 #ifndef CONFIG_USB_OTG
1360 if (!otg
|| isp
!= the_transceiver
)
1364 omap_writew(0, OTG_IRQ_EN
);
1365 if (!isp
->otg
.default_a
)
1366 enable_vbus_draw(isp
, 0);
1367 usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
1368 isp
->otg
.gadget
= NULL
;
1373 #ifdef CONFIG_USB_OTG
1374 isp
->otg
.gadget
= gadget
;
1375 dev_dbg(&isp
->client
->dev
, "registered gadget\n");
1376 /* gadget driver may be suspended until vbus_connect () */
1378 return isp1301_otg_enable(isp
);
1381 #elif !defined(CONFIG_USB_OHCI_HCD) && !defined(CONFIG_USB_OHCI_HCD_MODULE)
1382 isp
->otg
.gadget
= gadget
;
1383 // FIXME update its refcount
1385 l
= omap_readl(OTG_CTRL
) & OTG_CTRL_MASK
;
1386 l
&= ~(OTG_XCEIV_OUTPUTS
|OTG_CTRL_BITS
);
1388 omap_writel(l
, OTG_CTRL
);
1391 isp
->otg
.state
= OTG_STATE_B_IDLE
;
1393 if (machine_is_omap_h2() || machine_is_omap_h3())
1394 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
1396 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1398 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1400 dev_info(&isp
->client
->dev
, "B-Peripheral sessions ok\n");
1401 dump_regs(isp
, __func__
);
1403 /* If this has a Mini-AB connector, this mode is highly
1404 * nonstandard ... but can be handy for testing, so long
1405 * as you don't plug a Mini-A cable into the jack.
1407 if (isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
) & INTR_VBUS_VLD
)
1413 dev_dbg(&isp
->client
->dev
, "peripheral sessions not allowed\n");
1419 /*-------------------------------------------------------------------------*/
1422 isp1301_set_power(struct otg_transceiver
*dev
, unsigned mA
)
1424 if (!the_transceiver
)
1426 if (dev
->state
== OTG_STATE_B_PERIPHERAL
)
1427 enable_vbus_draw(the_transceiver
, mA
);
1432 isp1301_start_srp(struct otg_transceiver
*dev
)
1434 struct isp1301
*isp
= container_of(dev
, struct isp1301
, otg
);
1437 if (!dev
|| isp
!= the_transceiver
1438 || isp
->otg
.state
!= OTG_STATE_B_IDLE
)
1441 otg_ctrl
= omap_readl(OTG_CTRL
);
1442 if (!(otg_ctrl
& OTG_BSESSEND
))
1445 otg_ctrl
|= OTG_B_BUSREQ
;
1446 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
;
1447 omap_writel(otg_ctrl
, OTG_CTRL
);
1448 isp
->otg
.state
= OTG_STATE_B_SRP_INIT
;
1450 pr_debug("otg: SRP, %s ... %06x\n", state_name(isp
),
1451 omap_readl(OTG_CTRL
));
1452 #ifdef CONFIG_USB_OTG
1453 check_state(isp
, __func__
);
1459 isp1301_start_hnp(struct otg_transceiver
*dev
)
1461 #ifdef CONFIG_USB_OTG
1462 struct isp1301
*isp
= container_of(dev
, struct isp1301
, otg
);
1465 if (!dev
|| isp
!= the_transceiver
)
1467 if (isp
->otg
.default_a
&& (isp
->otg
.host
== NULL
1468 || !isp
->otg
.host
->b_hnp_enable
))
1470 if (!isp
->otg
.default_a
&& (isp
->otg
.gadget
== NULL
1471 || !isp
->otg
.gadget
->b_hnp_enable
))
1474 /* We want hardware to manage most HNP protocol timings.
1475 * So do this part as early as possible...
1477 switch (isp
->otg
.state
) {
1478 case OTG_STATE_B_HOST
:
1479 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
1480 /* caller will suspend next */
1482 case OTG_STATE_A_HOST
:
1484 /* autoconnect mode avoids irq latency bugs */
1485 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
,
1488 /* caller must suspend then clear A_BUSREQ */
1489 usb_gadget_vbus_connect(isp
->otg
.gadget
);
1490 l
= omap_readl(OTG_CTRL
);
1491 l
|= OTG_A_SETB_HNPEN
;
1492 omap_writel(l
, OTG_CTRL
);
1495 case OTG_STATE_A_PERIPHERAL
:
1496 /* initiated by B-Host suspend */
1501 pr_debug("otg: HNP %s, %06x ...\n",
1502 state_name(isp
), omap_readl(OTG_CTRL
));
1503 check_state(isp
, __func__
);
1511 /*-------------------------------------------------------------------------*/
1513 static int __devinit
1514 isp1301_probe(struct i2c_client
*i2c
, const struct i2c_device_id
*id
)
1517 struct isp1301
*isp
;
1519 if (the_transceiver
)
1522 isp
= kzalloc(sizeof *isp
, GFP_KERNEL
);
1526 INIT_WORK(&isp
->work
, isp1301_work
);
1527 init_timer(&isp
->timer
);
1528 isp
->timer
.function
= isp1301_timer
;
1529 isp
->timer
.data
= (unsigned long) isp
;
1531 i2c_set_clientdata(i2c
, isp
);
1534 /* verify the chip (shouldn't be necessary) */
1535 status
= isp1301_get_u16(isp
, ISP1301_VENDOR_ID
);
1536 if (status
!= I2C_VENDOR_ID_PHILIPS
) {
1537 dev_dbg(&i2c
->dev
, "not philips id: %d\n", status
);
1540 status
= isp1301_get_u16(isp
, ISP1301_PRODUCT_ID
);
1541 if (status
!= I2C_PRODUCT_ID_PHILIPS_1301
) {
1542 dev_dbg(&i2c
->dev
, "not isp1301, %d\n", status
);
1545 isp
->i2c_release
= i2c
->dev
.release
;
1546 i2c
->dev
.release
= isp1301_release
;
1548 /* initial development used chiprev 2.00 */
1549 status
= i2c_smbus_read_word_data(i2c
, ISP1301_BCD_DEVICE
);
1550 dev_info(&i2c
->dev
, "chiprev %x.%02x, driver " DRIVER_VERSION
"\n",
1551 status
>> 8, status
& 0xff);
1553 /* make like power-on reset */
1554 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_MASK
);
1556 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_2
, MC2_BI_DI
);
1557 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_2
, ~MC2_BI_DI
);
1559 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
,
1560 OTG1_DM_PULLDOWN
| OTG1_DP_PULLDOWN
);
1561 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
,
1562 ~(OTG1_DM_PULLDOWN
| OTG1_DP_PULLDOWN
));
1564 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_LATCH
, ~0);
1565 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_FALLING
, ~0);
1566 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_RISING
, ~0);
1568 #ifdef CONFIG_USB_OTG
1569 status
= otg_bind(isp
);
1571 dev_dbg(&i2c
->dev
, "can't bind OTG\n");
1576 if (machine_is_omap_h2()) {
1577 /* full speed signaling by default */
1578 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
,
1580 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_2
,
1583 /* IRQ wired at M14 */
1584 omap_cfg_reg(M14_1510_GPIO2
);
1585 if (gpio_request(2, "isp1301") == 0)
1586 gpio_direction_input(2);
1587 isp
->irq_type
= IRQF_TRIGGER_FALLING
;
1590 isp
->irq_type
|= IRQF_SAMPLE_RANDOM
;
1591 status
= request_irq(i2c
->irq
, isp1301_irq
,
1592 isp
->irq_type
, DRIVER_NAME
, isp
);
1594 dev_dbg(&i2c
->dev
, "can't get IRQ %d, err %d\n",
1599 isp
->otg
.dev
= &i2c
->dev
;
1600 isp
->otg
.label
= DRIVER_NAME
;
1602 isp
->otg
.set_host
= isp1301_set_host
,
1603 isp
->otg
.set_peripheral
= isp1301_set_peripheral
,
1604 isp
->otg
.set_power
= isp1301_set_power
,
1605 isp
->otg
.start_srp
= isp1301_start_srp
,
1606 isp
->otg
.start_hnp
= isp1301_start_hnp
,
1608 enable_vbus_draw(isp
, 0);
1610 the_transceiver
= isp
;
1612 #ifdef CONFIG_USB_OTG
1613 update_otg1(isp
, isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
));
1614 update_otg2(isp
, isp1301_get_u8(isp
, ISP1301_OTG_STATUS
));
1617 dump_regs(isp
, __func__
);
1620 mod_timer(&isp
->timer
, jiffies
+ TIMER_JIFFIES
);
1621 dev_dbg(&i2c
->dev
, "scheduled timer, %d min\n", TIMER_MINUTES
);
1624 status
= otg_set_transceiver(&isp
->otg
);
1626 dev_err(&i2c
->dev
, "can't register transceiver, %d\n",
1636 static const struct i2c_device_id isp1301_id
[] = {
1637 { "isp1301_omap", 0 },
1640 MODULE_DEVICE_TABLE(i2c
, isp1301_id
);
1642 static struct i2c_driver isp1301_driver
= {
1644 .name
= "isp1301_omap",
1646 .probe
= isp1301_probe
,
1647 .remove
= __exit_p(isp1301_remove
),
1648 .id_table
= isp1301_id
,
1651 /*-------------------------------------------------------------------------*/
1653 static int __init
isp_init(void)
1655 return i2c_add_driver(&isp1301_driver
);
1657 subsys_initcall(isp_init
);
1659 static void __exit
isp_exit(void)
1661 if (the_transceiver
)
1662 otg_set_transceiver(NULL
);
1663 i2c_del_driver(&isp1301_driver
);
1665 module_exit(isp_exit
);