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.
24 #include <linux/config.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/init.h>
28 #include <linux/slab.h>
29 #include <linux/interrupt.h>
30 #include <linux/platform_device.h>
31 #include <linux/usb_ch9.h>
32 #include <linux/usb_gadget.h>
33 #include <linux/usb.h>
34 #include <linux/usb_otg.h>
35 #include <linux/i2c.h>
36 #include <linux/workqueue.h>
39 #include <asm/arch/usb.h>
47 #define DRIVER_VERSION "24 August 2004"
48 #define DRIVER_NAME (isp1301_driver.name)
50 MODULE_DESCRIPTION("ISP1301 USB OTG Transceiver Driver");
51 MODULE_LICENSE("GPL");
54 struct otg_transceiver otg
;
55 struct i2c_client client
;
56 void (*i2c_release
)(struct device
*dev
);
63 struct timer_list timer
;
65 /* use keventd context to change the state for us */
66 struct work_struct work
;
69 # define WORK_UPDATE_ISP 0 /* update ISP from OTG */
70 # define WORK_UPDATE_OTG 1 /* update OTG from ISP */
71 # define WORK_HOST_RESUME 4 /* resume host */
72 # define WORK_TIMER 6 /* timer fired */
73 # define WORK_STOP 7 /* don't resubmit */
77 /* bits in OTG_CTRL_REG */
79 #define OTG_XCEIV_OUTPUTS \
80 (OTG_ASESSVLD|OTG_BSESSEND|OTG_BSESSVLD|OTG_VBUSVLD|OTG_ID)
81 #define OTG_XCEIV_INPUTS \
82 (OTG_PULLDOWN|OTG_PULLUP|OTG_DRV_VBUS|OTG_PD_VBUS|OTG_PU_VBUS|OTG_PU_ID)
83 #define OTG_CTRL_BITS \
84 (OTG_A_BUSREQ|OTG_A_SETB_HNPEN|OTG_B_BUSREQ|OTG_B_HNPEN|OTG_BUSDROP)
85 /* and OTG_PULLUP is sometimes written */
87 #define OTG_CTRL_MASK (OTG_DRIVER_SEL| \
88 OTG_XCEIV_OUTPUTS|OTG_XCEIV_INPUTS| \
92 /*-------------------------------------------------------------------------*/
94 #ifdef CONFIG_MACH_OMAP_H2
96 /* board-specific PM hooks */
98 #include <asm/arch/gpio.h>
99 #include <asm/arch/mux.h>
100 #include <asm/mach-types.h>
103 #if defined(CONFIG_TPS65010) || defined(CONFIG_TPS65010_MODULE)
105 #include <asm/arch/tps65010.h>
109 static inline int tps65010_set_vbus_draw(unsigned mA
)
111 pr_debug("tps65010: draw %d mA (STUB)\n", mA
);
117 static void enable_vbus_draw(struct isp1301
*isp
, unsigned mA
)
119 int status
= tps65010_set_vbus_draw(mA
);
121 pr_debug(" VBUS %d mA error %d\n", mA
, status
);
124 static void enable_vbus_source(struct isp1301
*isp
)
126 /* this board won't supply more than 8mA vbus power.
127 * some boards can switch a 100ma "unit load" (or more).
132 /* products will deliver OTG messages with LEDs, GUI, etc */
133 static inline void notresponding(struct isp1301
*isp
)
135 printk(KERN_NOTICE
"OTG device not responding.\n");
141 /*-------------------------------------------------------------------------*/
143 /* only two addresses possible */
144 #define ISP_BASE 0x2c
145 static unsigned short normal_i2c
[] = {
146 ISP_BASE
, ISP_BASE
+ 1,
151 static struct i2c_driver isp1301_driver
;
153 /* smbus apis are used for portability */
156 isp1301_get_u8(struct isp1301
*isp
, u8 reg
)
158 return i2c_smbus_read_byte_data(&isp
->client
, reg
+ 0);
162 isp1301_get_u16(struct isp1301
*isp
, u8 reg
)
164 return i2c_smbus_read_word_data(&isp
->client
, reg
);
168 isp1301_set_bits(struct isp1301
*isp
, u8 reg
, u8 bits
)
170 return i2c_smbus_write_byte_data(&isp
->client
, reg
+ 0, bits
);
174 isp1301_clear_bits(struct isp1301
*isp
, u8 reg
, u8 bits
)
176 return i2c_smbus_write_byte_data(&isp
->client
, reg
+ 1, bits
);
179 /*-------------------------------------------------------------------------*/
182 #define ISP1301_VENDOR_ID 0x00 /* u16 read */
183 #define ISP1301_PRODUCT_ID 0x02 /* u16 read */
184 #define ISP1301_BCD_DEVICE 0x14 /* u16 read */
186 #define I2C_VENDOR_ID_PHILIPS 0x04cc
187 #define I2C_PRODUCT_ID_PHILIPS_1301 0x1301
189 /* operational registers */
190 #define ISP1301_MODE_CONTROL_1 0x04 /* u8 read, set, +1 clear */
191 # define MC1_SPEED_REG (1 << 0)
192 # define MC1_SUSPEND_REG (1 << 1)
193 # define MC1_DAT_SE0 (1 << 2)
194 # define MC1_TRANSPARENT (1 << 3)
195 # define MC1_BDIS_ACON_EN (1 << 4)
196 # define MC1_OE_INT_EN (1 << 5)
197 # define MC1_UART_EN (1 << 6)
198 # define MC1_MASK 0x7f
199 #define ISP1301_MODE_CONTROL_2 0x12 /* u8 read, set, +1 clear */
200 # define MC2_GLOBAL_PWR_DN (1 << 0)
201 # define MC2_SPD_SUSP_CTRL (1 << 1)
202 # define MC2_BI_DI (1 << 2)
203 # define MC2_TRANSP_BDIR0 (1 << 3)
204 # define MC2_TRANSP_BDIR1 (1 << 4)
205 # define MC2_AUDIO_EN (1 << 5)
206 # define MC2_PSW_EN (1 << 6)
207 # define MC2_EN2V7 (1 << 7)
208 #define ISP1301_OTG_CONTROL_1 0x06 /* u8 read, set, +1 clear */
209 # define OTG1_DP_PULLUP (1 << 0)
210 # define OTG1_DM_PULLUP (1 << 1)
211 # define OTG1_DP_PULLDOWN (1 << 2)
212 # define OTG1_DM_PULLDOWN (1 << 3)
213 # define OTG1_ID_PULLDOWN (1 << 4)
214 # define OTG1_VBUS_DRV (1 << 5)
215 # define OTG1_VBUS_DISCHRG (1 << 6)
216 # define OTG1_VBUS_CHRG (1 << 7)
217 #define ISP1301_OTG_STATUS 0x10 /* u8 readonly */
218 # define OTG_B_SESS_END (1 << 6)
219 # define OTG_B_SESS_VLD (1 << 7)
221 #define ISP1301_INTERRUPT_SOURCE 0x08 /* u8 read */
222 #define ISP1301_INTERRUPT_LATCH 0x0A /* u8 read, set, +1 clear */
224 #define ISP1301_INTERRUPT_FALLING 0x0C /* u8 read, set, +1 clear */
225 #define ISP1301_INTERRUPT_RISING 0x0E /* u8 read, set, +1 clear */
227 /* same bitfields in all interrupt registers */
228 # define INTR_VBUS_VLD (1 << 0)
229 # define INTR_SESS_VLD (1 << 1)
230 # define INTR_DP_HI (1 << 2)
231 # define INTR_ID_GND (1 << 3)
232 # define INTR_DM_HI (1 << 4)
233 # define INTR_ID_FLOAT (1 << 5)
234 # define INTR_BDIS_ACON (1 << 6)
235 # define INTR_CR_INT (1 << 7)
237 /*-------------------------------------------------------------------------*/
239 static const char *state_string(enum usb_otg_state state
)
242 case OTG_STATE_A_IDLE
: return "a_idle";
243 case OTG_STATE_A_WAIT_VRISE
: return "a_wait_vrise";
244 case OTG_STATE_A_WAIT_BCON
: return "a_wait_bcon";
245 case OTG_STATE_A_HOST
: return "a_host";
246 case OTG_STATE_A_SUSPEND
: return "a_suspend";
247 case OTG_STATE_A_PERIPHERAL
: return "a_peripheral";
248 case OTG_STATE_A_WAIT_VFALL
: return "a_wait_vfall";
249 case OTG_STATE_A_VBUS_ERR
: return "a_vbus_err";
250 case OTG_STATE_B_IDLE
: return "b_idle";
251 case OTG_STATE_B_SRP_INIT
: return "b_srp_init";
252 case OTG_STATE_B_PERIPHERAL
: return "b_peripheral";
253 case OTG_STATE_B_WAIT_ACON
: return "b_wait_acon";
254 case OTG_STATE_B_HOST
: return "b_host";
255 default: return "UNDEFINED";
259 static inline const char *state_name(struct isp1301
*isp
)
261 return state_string(isp
->otg
.state
);
265 #define dev_vdbg dev_dbg
267 #define dev_vdbg(dev, fmt, arg...) do{}while(0)
270 /*-------------------------------------------------------------------------*/
272 /* NOTE: some of this ISP1301 setup is specific to H2 boards;
273 * not everything is guarded by board-specific checks, or even using
274 * omap_usb_config data to deduce MC1_DAT_SE0 and MC2_BI_DI.
276 * ALSO: this currently doesn't use ISP1301 low-power modes
277 * while OTG is running.
280 static void power_down(struct isp1301
*isp
)
282 isp
->otg
.state
= OTG_STATE_UNDEFINED
;
284 // isp1301_set_bits(isp, ISP1301_MODE_CONTROL_2, MC2_GLOBAL_PWR_DN);
285 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_SUSPEND_REG
);
287 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_ID_PULLDOWN
);
288 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
291 static void power_up(struct isp1301
*isp
)
293 // isp1301_clear_bits(isp, ISP1301_MODE_CONTROL_2, MC2_GLOBAL_PWR_DN);
294 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_SUSPEND_REG
);
296 /* do this only when cpu is driving transceiver,
297 * so host won't see a low speed device...
299 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
302 #define NO_HOST_SUSPEND
304 static int host_suspend(struct isp1301
*isp
)
306 #ifdef NO_HOST_SUSPEND
314 /* Currently ASSUMES only the OTG port matters;
315 * other ports could be active...
317 dev
= isp
->otg
.host
->controller
;
318 return dev
->driver
->suspend(dev
, 3, 0);
322 static int host_resume(struct isp1301
*isp
)
324 #ifdef NO_HOST_SUSPEND
332 dev
= isp
->otg
.host
->controller
;
333 return dev
->driver
->resume(dev
, 0);
337 static int gadget_suspend(struct isp1301
*isp
)
339 isp
->otg
.gadget
->b_hnp_enable
= 0;
340 isp
->otg
.gadget
->a_hnp_support
= 0;
341 isp
->otg
.gadget
->a_alt_hnp_support
= 0;
342 return usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
345 /*-------------------------------------------------------------------------*/
347 #define TIMER_MINUTES 10
348 #define TIMER_JIFFIES (TIMER_MINUTES * 60 * HZ)
350 /* Almost all our I2C messaging comes from a work queue's task context.
351 * NOTE: guaranteeing certain response times might mean we shouldn't
352 * share keventd's work queue; a realtime task might be safest.
355 isp1301_defer_work(struct isp1301
*isp
, int work
)
359 if (isp
&& !test_and_set_bit(work
, &isp
->todo
)) {
360 (void) get_device(&isp
->client
.dev
);
361 status
= schedule_work(&isp
->work
);
362 if (!status
&& !isp
->working
)
363 dev_vdbg(&isp
->client
.dev
,
364 "work item %d may be lost\n", work
);
368 /* called from irq handlers */
369 static void a_idle(struct isp1301
*isp
, const char *tag
)
371 if (isp
->otg
.state
== OTG_STATE_A_IDLE
)
374 isp
->otg
.default_a
= 1;
376 isp
->otg
.host
->is_b_host
= 0;
379 if (isp
->otg
.gadget
) {
380 isp
->otg
.gadget
->is_a_peripheral
= 1;
383 isp
->otg
.state
= OTG_STATE_A_IDLE
;
384 isp
->last_otg_ctrl
= OTG_CTRL_REG
= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
385 pr_debug(" --> %s/%s\n", state_name(isp
), tag
);
388 /* called from irq handlers */
389 static void b_idle(struct isp1301
*isp
, const char *tag
)
391 if (isp
->otg
.state
== OTG_STATE_B_IDLE
)
394 isp
->otg
.default_a
= 0;
396 isp
->otg
.host
->is_b_host
= 1;
399 if (isp
->otg
.gadget
) {
400 isp
->otg
.gadget
->is_a_peripheral
= 0;
403 isp
->otg
.state
= OTG_STATE_B_IDLE
;
404 isp
->last_otg_ctrl
= OTG_CTRL_REG
= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
405 pr_debug(" --> %s/%s\n", state_name(isp
), tag
);
409 dump_regs(struct isp1301
*isp
, const char *label
)
412 u8 ctrl
= isp1301_get_u8(isp
, ISP1301_OTG_CONTROL_1
);
413 u8 status
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
414 u8 src
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
);
416 pr_debug("otg: %06x, %s %s, otg/%02x stat/%02x.%02x\n",
417 OTG_CTRL_REG
, label
, state_name(isp
),
419 /* mode control and irq enables don't change much */
423 /*-------------------------------------------------------------------------*/
425 #ifdef CONFIG_USB_OTG
428 * The OMAP OTG controller handles most of the OTG state transitions.
430 * We translate isp1301 outputs (mostly voltage comparator status) into
431 * OTG inputs; OTG outputs (mostly pullup/pulldown controls) and HNP state
432 * flags into isp1301 inputs ... and infer state transitions.
437 static void check_state(struct isp1301
*isp
, const char *tag
)
439 enum usb_otg_state state
= OTG_STATE_UNDEFINED
;
440 u8 fsm
= OTG_TEST_REG
& 0x0ff;
447 state
= OTG_STATE_B_IDLE
;
453 state
= OTG_STATE_B_PERIPHERAL
;
456 state
= OTG_STATE_B_SRP_INIT
;
459 /* extra dual-role default-b states */
465 state
= OTG_STATE_B_WAIT_ACON
;
468 state
= OTG_STATE_B_HOST
;
473 state
= OTG_STATE_A_IDLE
;
476 state
= OTG_STATE_A_WAIT_VFALL
;
479 state
= OTG_STATE_A_VBUS_ERR
;
485 state
= OTG_STATE_A_PERIPHERAL
;
488 state
= OTG_STATE_A_WAIT_VRISE
;
491 state
= OTG_STATE_A_WAIT_BCON
;
494 state
= OTG_STATE_A_HOST
;
497 state
= OTG_STATE_A_SUSPEND
;
502 if (isp
->otg
.state
== state
&& !extra
)
504 pr_debug("otg: %s FSM %s/%02x, %s, %06x\n", tag
,
505 state_string(state
), fsm
, state_name(isp
), OTG_CTRL_REG
);
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
= OTG_CTRL_REG
522 & ~(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 OTG_CTRL_REG
= otg_ctrl
;
548 /* outputs from ISP1301_OTG_STATUS */
549 static void update_otg2(struct isp1301
*isp
, u8 otg_status
)
553 otg_ctrl
= OTG_CTRL_REG
556 & ~(OTG_BSESSVLD
|OTG_BSESSEND
);
557 if (otg_status
& OTG_B_SESS_VLD
)
558 otg_ctrl
|= OTG_BSESSVLD
;
559 else if (otg_status
& OTG_B_SESS_END
)
560 otg_ctrl
|= OTG_BSESSEND
;
561 OTG_CTRL_REG
= otg_ctrl
;
564 /* inputs going to ISP1301 */
565 static void otg_update_isp(struct isp1301
*isp
)
567 u32 otg_ctrl
, otg_change
;
568 u8 set
= OTG1_DM_PULLDOWN
, clr
= OTG1_DM_PULLUP
;
570 otg_ctrl
= OTG_CTRL_REG
;
571 otg_change
= otg_ctrl
^ isp
->last_otg_ctrl
;
572 isp
->last_otg_ctrl
= otg_ctrl
;
573 otg_ctrl
= otg_ctrl
& OTG_XCEIV_INPUTS
;
575 switch (isp
->otg
.state
) {
576 case OTG_STATE_B_IDLE
:
577 case OTG_STATE_B_PERIPHERAL
:
578 case OTG_STATE_B_SRP_INIT
:
579 if (!(otg_ctrl
& OTG_PULLUP
)) {
580 // if (otg_ctrl & OTG_B_HNPEN) {
581 if (isp
->otg
.gadget
->b_hnp_enable
) {
582 isp
->otg
.state
= OTG_STATE_B_WAIT_ACON
;
583 pr_debug(" --> b_wait_acon\n");
588 set
|= OTG1_DP_PULLUP
;
589 clr
|= OTG1_DP_PULLDOWN
;
591 case OTG_STATE_A_SUSPEND
:
592 case OTG_STATE_A_PERIPHERAL
:
593 if (otg_ctrl
& OTG_PULLUP
)
596 // case OTG_STATE_B_WAIT_ACON:
599 set
|= OTG1_DP_PULLDOWN
;
600 clr
|= OTG1_DP_PULLUP
;
604 # define toggle(OTG,ISP) do { \
605 if (otg_ctrl & OTG) set |= ISP; \
609 if (!(isp
->otg
.host
))
610 otg_ctrl
&= ~OTG_DRV_VBUS
;
612 switch (isp
->otg
.state
) {
613 case OTG_STATE_A_SUSPEND
:
614 if (otg_ctrl
& OTG_DRV_VBUS
) {
615 set
|= OTG1_VBUS_DRV
;
618 /* HNP failed for some reason (A_AIDL_BDIS timeout) */
622 case OTG_STATE_A_VBUS_ERR
:
623 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
624 pr_debug(" --> a_wait_vfall\n");
626 case OTG_STATE_A_WAIT_VFALL
:
627 /* FIXME usbcore thinks port power is still on ... */
628 clr
|= OTG1_VBUS_DRV
;
630 case OTG_STATE_A_IDLE
:
631 if (otg_ctrl
& OTG_DRV_VBUS
) {
632 isp
->otg
.state
= OTG_STATE_A_WAIT_VRISE
;
633 pr_debug(" --> a_wait_vrise\n");
637 toggle(OTG_DRV_VBUS
, OTG1_VBUS_DRV
);
640 toggle(OTG_PU_VBUS
, OTG1_VBUS_CHRG
);
641 toggle(OTG_PD_VBUS
, OTG1_VBUS_DISCHRG
);
645 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, set
);
646 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, clr
);
648 /* HNP switch to host or peripheral; and SRP */
649 if (otg_change
& OTG_PULLUP
) {
650 switch (isp
->otg
.state
) {
651 case OTG_STATE_B_IDLE
:
652 if (clr
& OTG1_DP_PULLUP
)
654 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
655 pr_debug(" --> b_peripheral\n");
657 case OTG_STATE_A_SUSPEND
:
658 if (clr
& OTG1_DP_PULLUP
)
660 isp
->otg
.state
= OTG_STATE_A_PERIPHERAL
;
661 pr_debug(" --> a_peripheral\n");
666 OTG_CTRL_REG
|= OTG_PULLUP
;
669 check_state(isp
, __FUNCTION__
);
670 dump_regs(isp
, "otg->isp1301");
673 static irqreturn_t
omap_otg_irq(int irq
, void *_isp
, struct pt_regs
*regs
)
675 u16 otg_irq
= OTG_IRQ_SRC_REG
;
678 struct isp1301
*isp
= _isp
;
680 /* update ISP1301 transciever from OTG controller */
681 if (otg_irq
& OPRT_CHG
) {
682 OTG_IRQ_SRC_REG
= OPRT_CHG
;
683 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
686 /* SRP to become b_peripheral failed */
687 } else if (otg_irq
& B_SRP_TMROUT
) {
688 pr_debug("otg: B_SRP_TIMEOUT, %06x\n", OTG_CTRL_REG
);
691 /* gadget drivers that care should monitor all kinds of
692 * remote wakeup (SRP, normal) using their own timer
693 * to give "check cable and A-device" messages.
695 if (isp
->otg
.state
== OTG_STATE_B_SRP_INIT
)
696 b_idle(isp
, "srp_timeout");
698 OTG_IRQ_SRC_REG
= B_SRP_TMROUT
;
701 /* HNP to become b_host failed */
702 } else if (otg_irq
& B_HNP_FAIL
) {
703 pr_debug("otg: %s B_HNP_FAIL, %06x\n",
704 state_name(isp
), OTG_CTRL_REG
);
707 otg_ctrl
= OTG_CTRL_REG
;
708 otg_ctrl
|= OTG_BUSDROP
;
709 otg_ctrl
&= OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
710 OTG_CTRL_REG
= otg_ctrl
;
712 /* subset of b_peripheral()... */
713 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
714 pr_debug(" --> b_peripheral\n");
716 OTG_IRQ_SRC_REG
= B_HNP_FAIL
;
719 /* detect SRP from B-device ... */
720 } else if (otg_irq
& A_SRP_DETECT
) {
721 pr_debug("otg: %s SRP_DETECT, %06x\n",
722 state_name(isp
), OTG_CTRL_REG
);
724 isp1301_defer_work(isp
, WORK_UPDATE_OTG
);
725 switch (isp
->otg
.state
) {
726 case OTG_STATE_A_IDLE
:
729 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
730 otg_ctrl
= OTG_CTRL_REG
;
731 otg_ctrl
|= OTG_A_BUSREQ
;
732 otg_ctrl
&= ~(OTG_BUSDROP
|OTG_B_BUSREQ
)
735 OTG_CTRL_REG
= otg_ctrl
;
741 OTG_IRQ_SRC_REG
= A_SRP_DETECT
;
744 /* timer expired: T(a_wait_bcon) and maybe T(a_wait_vrise)
745 * we don't track them separately
747 } else if (otg_irq
& A_REQ_TMROUT
) {
748 otg_ctrl
= OTG_CTRL_REG
;
749 pr_info("otg: BCON_TMOUT from %s, %06x\n",
750 state_name(isp
), otg_ctrl
);
753 otg_ctrl
|= OTG_BUSDROP
;
754 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
755 OTG_CTRL_REG
= otg_ctrl
;
756 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
758 OTG_IRQ_SRC_REG
= A_REQ_TMROUT
;
761 /* A-supplied voltage fell too low; overcurrent */
762 } else if (otg_irq
& A_VBUS_ERR
) {
763 otg_ctrl
= OTG_CTRL_REG
;
764 printk(KERN_ERR
"otg: %s, VBUS_ERR %04x ctrl %06x\n",
765 state_name(isp
), otg_irq
, otg_ctrl
);
767 otg_ctrl
|= OTG_BUSDROP
;
768 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
769 OTG_CTRL_REG
= otg_ctrl
;
770 isp
->otg
.state
= OTG_STATE_A_VBUS_ERR
;
772 OTG_IRQ_SRC_REG
= A_VBUS_ERR
;
775 /* switch driver; the transciever code activates it,
776 * ungating the udc clock or resuming OHCI.
778 } else if (otg_irq
& DRIVER_SWITCH
) {
781 otg_ctrl
= OTG_CTRL_REG
;
782 printk(KERN_NOTICE
"otg: %s, SWITCH to %s, ctrl %06x\n",
784 (otg_ctrl
& OTG_DRIVER_SEL
)
787 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
789 /* role is peripheral */
790 if (otg_ctrl
& OTG_DRIVER_SEL
) {
791 switch (isp
->otg
.state
) {
792 case OTG_STATE_A_IDLE
:
793 b_idle(isp
, __FUNCTION__
);
798 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
802 if (!(otg_ctrl
& OTG_ID
)) {
803 otg_ctrl
&= OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
804 OTG_CTRL_REG
= otg_ctrl
| OTG_A_BUSREQ
;
808 switch (isp
->otg
.state
) {
809 case OTG_STATE_B_WAIT_ACON
:
810 isp
->otg
.state
= OTG_STATE_B_HOST
;
811 pr_debug(" --> b_host\n");
814 case OTG_STATE_A_WAIT_BCON
:
815 isp
->otg
.state
= OTG_STATE_A_HOST
;
816 pr_debug(" --> a_host\n");
818 case OTG_STATE_A_PERIPHERAL
:
819 isp
->otg
.state
= OTG_STATE_A_WAIT_BCON
;
820 pr_debug(" --> a_wait_bcon\n");
825 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
829 OTG_IRQ_SRC_REG
= DRIVER_SWITCH
;
833 usb_bus_start_enum(isp
->otg
.host
,
834 isp
->otg
.host
->otg_port
);
837 check_state(isp
, __FUNCTION__
);
841 static struct platform_device
*otg_dev
;
843 static int otg_init(struct isp1301
*isp
)
848 dump_regs(isp
, __FUNCTION__
);
849 /* some of these values are board-specific... */
850 OTG_SYSCON_2_REG
|= OTG_EN
852 | SRP_GPDATA
/* 9msec Bdev D+ pulse */
853 | SRP_GPDVBUS
/* discharge after VBUS pulse */
854 // | (3 << 24) /* 2msec VBUS pulse */
856 | (0 << 20) /* 200ms nominal A_WAIT_VRISE timer */
857 | SRP_DPW
/* detect 167+ns SRP pulses */
858 | SRP_DATA
| SRP_VBUS
/* accept both kinds of SRP pulse */
861 update_otg1(isp
, isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
));
862 update_otg2(isp
, isp1301_get_u8(isp
, ISP1301_OTG_STATUS
));
864 check_state(isp
, __FUNCTION__
);
865 pr_debug("otg: %s, %s %06x\n",
866 state_name(isp
), __FUNCTION__
, OTG_CTRL_REG
);
868 OTG_IRQ_EN_REG
= DRIVER_SWITCH
| OPRT_CHG
869 | B_SRP_TMROUT
| B_HNP_FAIL
870 | A_VBUS_ERR
| A_SRP_DETECT
| A_REQ_TMROUT
;
871 OTG_SYSCON_2_REG
|= OTG_EN
;
876 static int otg_probe(struct platform_device
*dev
)
878 // struct omap_usb_config *config = dev->platform_data;
884 static int otg_remove(struct platform_device
*dev
)
890 struct platform_driver omap_otg_driver
= {
892 .remove
= otg_remove
,
894 .owner
= THIS_MODULE
,
899 static int otg_bind(struct isp1301
*isp
)
906 status
= platform_driver_register(&omap_otg_driver
);
911 status
= request_irq(otg_dev
->resource
[1].start
, omap_otg_irq
,
912 SA_INTERRUPT
, DRIVER_NAME
, isp
);
917 platform_driver_unregister(&omap_otg_driver
);
921 static void otg_unbind(struct isp1301
*isp
)
925 free_irq(otg_dev
->resource
[1].start
, isp
);
930 /* OTG controller isn't clocked */
932 #endif /* CONFIG_USB_OTG */
934 /*-------------------------------------------------------------------------*/
936 static void b_peripheral(struct isp1301
*isp
)
938 OTG_CTRL_REG
= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
939 usb_gadget_vbus_connect(isp
->otg
.gadget
);
941 #ifdef CONFIG_USB_OTG
942 enable_vbus_draw(isp
, 8);
945 enable_vbus_draw(isp
, 100);
946 /* UDC driver just set OTG_BSESSVLD */
947 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_DP_PULLUP
);
948 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_DP_PULLDOWN
);
949 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
950 pr_debug(" --> b_peripheral\n");
951 dump_regs(isp
, "2periph");
955 static void isp_update_otg(struct isp1301
*isp
, u8 stat
)
957 u8 isp_stat
, isp_bstat
;
958 enum usb_otg_state state
= isp
->otg
.state
;
960 if (stat
& INTR_BDIS_ACON
)
961 pr_debug("OTG: BDIS_ACON, %s\n", state_name(isp
));
963 /* start certain state transitions right away */
964 isp_stat
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
);
965 if (isp_stat
& INTR_ID_GND
) {
966 if (isp
->otg
.default_a
) {
968 case OTG_STATE_B_IDLE
:
971 case OTG_STATE_A_IDLE
:
972 enable_vbus_source(isp
);
974 case OTG_STATE_A_WAIT_VRISE
:
975 /* we skip over OTG_STATE_A_WAIT_BCON, since
976 * the HC will transition to A_HOST (or
977 * A_SUSPEND!) without our noticing except
980 if (isp_stat
& INTR_VBUS_VLD
)
981 isp
->otg
.state
= OTG_STATE_A_HOST
;
983 case OTG_STATE_A_WAIT_VFALL
:
984 if (!(isp_stat
& INTR_SESS_VLD
))
985 a_idle(isp
, "vfell");
988 if (!(isp_stat
& INTR_VBUS_VLD
))
989 isp
->otg
.state
= OTG_STATE_A_VBUS_ERR
;
992 isp_bstat
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
995 case OTG_STATE_B_PERIPHERAL
:
996 case OTG_STATE_B_HOST
:
997 case OTG_STATE_B_WAIT_ACON
:
998 usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
1003 if (state
!= OTG_STATE_A_IDLE
)
1005 if (isp
->otg
.host
&& state
== OTG_STATE_A_IDLE
)
1006 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
1010 /* if user unplugged mini-A end of cable,
1011 * don't bypass A_WAIT_VFALL.
1013 if (isp
->otg
.default_a
) {
1016 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
1018 case OTG_STATE_A_WAIT_VFALL
:
1019 state
= OTG_STATE_A_IDLE
;
1020 /* khubd may take a while to notice and
1021 * handle this disconnect, so don't go
1022 * to B_IDLE quite yet.
1025 case OTG_STATE_A_IDLE
:
1027 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
,
1029 isp
->otg
.state
= OTG_STATE_B_IDLE
;
1030 OTG_CTRL_REG
&= OTG_CTRL_REG
& OTG_CTRL_MASK
1033 case OTG_STATE_B_IDLE
:
1037 isp_bstat
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
1039 switch (isp
->otg
.state
) {
1040 case OTG_STATE_B_PERIPHERAL
:
1041 case OTG_STATE_B_WAIT_ACON
:
1042 case OTG_STATE_B_HOST
:
1043 if (likely(isp_bstat
& OTG_B_SESS_VLD
))
1045 enable_vbus_draw(isp
, 0);
1046 #ifndef CONFIG_USB_OTG
1047 /* UDC driver will clear OTG_BSESSVLD */
1048 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
,
1050 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
,
1052 dump_regs(isp
, __FUNCTION__
);
1055 case OTG_STATE_B_SRP_INIT
:
1056 b_idle(isp
, __FUNCTION__
);
1057 OTG_CTRL_REG
&= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
1059 case OTG_STATE_B_IDLE
:
1060 if (isp
->otg
.gadget
&& (isp_bstat
& OTG_B_SESS_VLD
)) {
1061 #ifdef CONFIG_USB_OTG
1062 update_otg1(isp
, isp_stat
);
1063 update_otg2(isp
, isp_bstat
);
1066 } else if (!(isp_stat
& (INTR_VBUS_VLD
|INTR_SESS_VLD
)))
1067 isp_bstat
|= OTG_B_SESS_END
;
1069 case OTG_STATE_A_WAIT_VFALL
:
1072 pr_debug("otg: unsupported b-device %s\n",
1078 if (state
!= isp
->otg
.state
)
1079 pr_debug(" isp, %s -> %s\n",
1080 state_string(state
), state_name(isp
));
1082 #ifdef CONFIG_USB_OTG
1083 /* update the OTG controller state to match the isp1301; may
1084 * trigger OPRT_CHG irqs for changes going to the isp1301.
1086 update_otg1(isp
, isp_stat
);
1087 update_otg2(isp
, isp_bstat
);
1088 check_state(isp
, __FUNCTION__
);
1091 dump_regs(isp
, "isp1301->otg");
1094 /*-------------------------------------------------------------------------*/
1096 static u8
isp1301_clear_latch(struct isp1301
*isp
)
1098 u8 latch
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_LATCH
);
1099 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_LATCH
, latch
);
1104 isp1301_work(void *data
)
1106 struct isp1301
*isp
= data
;
1109 /* implicit lock: we're the only task using this device */
1112 stop
= test_bit(WORK_STOP
, &isp
->todo
);
1114 #ifdef CONFIG_USB_OTG
1115 /* transfer state from otg engine to isp1301 */
1116 if (test_and_clear_bit(WORK_UPDATE_ISP
, &isp
->todo
)) {
1117 otg_update_isp(isp
);
1118 put_device(&isp
->client
.dev
);
1121 /* transfer state from isp1301 to otg engine */
1122 if (test_and_clear_bit(WORK_UPDATE_OTG
, &isp
->todo
)) {
1123 u8 stat
= isp1301_clear_latch(isp
);
1125 isp_update_otg(isp
, stat
);
1126 put_device(&isp
->client
.dev
);
1129 if (test_and_clear_bit(WORK_HOST_RESUME
, &isp
->todo
)) {
1133 * skip A_WAIT_VRISE; hc transitions invisibly
1134 * skip A_WAIT_BCON; same.
1136 switch (isp
->otg
.state
) {
1137 case OTG_STATE_A_WAIT_BCON
:
1138 case OTG_STATE_A_WAIT_VRISE
:
1139 isp
->otg
.state
= OTG_STATE_A_HOST
;
1140 pr_debug(" --> a_host\n");
1141 otg_ctrl
= OTG_CTRL_REG
;
1142 otg_ctrl
|= OTG_A_BUSREQ
;
1143 otg_ctrl
&= ~(OTG_BUSDROP
|OTG_B_BUSREQ
)
1145 OTG_CTRL_REG
= otg_ctrl
;
1147 case OTG_STATE_B_WAIT_ACON
:
1148 isp
->otg
.state
= OTG_STATE_B_HOST
;
1149 pr_debug(" --> b_host (acon)\n");
1151 case OTG_STATE_B_HOST
:
1152 case OTG_STATE_B_IDLE
:
1153 case OTG_STATE_A_IDLE
:
1156 pr_debug(" host resume in %s\n",
1161 put_device(&isp
->client
.dev
);
1164 if (test_and_clear_bit(WORK_TIMER
, &isp
->todo
)) {
1166 dump_regs(isp
, "timer");
1168 mod_timer(&isp
->timer
, jiffies
+ TIMER_JIFFIES
);
1170 put_device(&isp
->client
.dev
);
1174 dev_vdbg(&isp
->client
.dev
,
1175 "work done, todo = 0x%lx\n",
1178 dev_dbg(&isp
->client
.dev
, "stop\n");
1181 } while (isp
->todo
);
1185 static irqreturn_t
isp1301_irq(int irq
, void *isp
, struct pt_regs
*regs
)
1187 isp1301_defer_work(isp
, WORK_UPDATE_OTG
);
1191 static void isp1301_timer(unsigned long _isp
)
1193 isp1301_defer_work((void *)_isp
, WORK_TIMER
);
1196 /*-------------------------------------------------------------------------*/
1198 static void isp1301_release(struct device
*dev
)
1200 struct isp1301
*isp
;
1202 isp
= container_of(dev
, struct isp1301
, client
.dev
);
1204 /* ugly -- i2c hijacks our memory hook to wait_for_completion() */
1205 if (isp
->i2c_release
)
1206 isp
->i2c_release(dev
);
1210 static struct isp1301
*the_transceiver
;
1212 static int isp1301_detach_client(struct i2c_client
*i2c
)
1214 struct isp1301
*isp
;
1216 isp
= container_of(i2c
, struct isp1301
, client
);
1218 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_FALLING
, ~0);
1219 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_RISING
, ~0);
1220 free_irq(isp
->irq
, isp
);
1221 #ifdef CONFIG_USB_OTG
1224 if (machine_is_omap_h2())
1227 isp
->timer
.data
= 0;
1228 set_bit(WORK_STOP
, &isp
->todo
);
1229 del_timer_sync(&isp
->timer
);
1230 flush_scheduled_work();
1232 put_device(&i2c
->dev
);
1233 the_transceiver
= 0;
1235 return i2c_detach_client(i2c
);
1238 /*-------------------------------------------------------------------------*/
1240 /* NOTE: three modes are possible here, only one of which
1241 * will be standards-conformant on any given system:
1243 * - OTG mode (dual-role), required if there's a Mini-AB connector
1244 * - HOST mode, for when there's one or more A (host) connectors
1245 * - DEVICE mode, for when there's a B/Mini-B (device) connector
1247 * As a rule, you won't have an isp1301 chip unless it's there to
1248 * support the OTG mode. Other modes help testing USB controllers
1249 * in isolation from (full) OTG support, or maybe so later board
1250 * revisions can help to support those feature.
1253 #ifdef CONFIG_USB_OTG
1255 static int isp1301_otg_enable(struct isp1301
*isp
)
1260 /* NOTE: since we don't change this, this provides
1261 * a few more interrupts than are strictly needed.
1263 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1264 INTR_VBUS_VLD
| INTR_SESS_VLD
| INTR_ID_GND
);
1265 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1266 INTR_VBUS_VLD
| INTR_SESS_VLD
| INTR_ID_GND
);
1268 dev_info(&isp
->client
.dev
, "ready for dual-role USB ...\n");
1275 /* add or disable the host device+driver */
1277 isp1301_set_host(struct otg_transceiver
*otg
, struct usb_bus
*host
)
1279 struct isp1301
*isp
= container_of(otg
, struct isp1301
, otg
);
1281 if (!otg
|| isp
!= the_transceiver
)
1291 #ifdef CONFIG_USB_OTG
1292 isp
->otg
.host
= host
;
1293 dev_dbg(&isp
->client
.dev
, "registered host\n");
1295 if (isp
->otg
.gadget
)
1296 return isp1301_otg_enable(isp
);
1299 #elif !defined(CONFIG_USB_GADGET_OMAP)
1300 // FIXME update its refcount
1301 isp
->otg
.host
= host
;
1305 if (machine_is_omap_h2())
1306 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
1308 dev_info(&isp
->client
.dev
, "A-Host sessions ok\n");
1309 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1311 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1314 /* If this has a Mini-AB connector, this mode is highly
1315 * nonstandard ... but can be handy for testing, especially with
1316 * the Mini-A end of an OTG cable. (Or something nonstandard
1317 * like MiniB-to-StandardB, maybe built with a gender mender.)
1319 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_VBUS_DRV
);
1321 dump_regs(isp
, __FUNCTION__
);
1326 dev_dbg(&isp
->client
.dev
, "host sessions not allowed\n");
1333 isp1301_set_peripheral(struct otg_transceiver
*otg
, struct usb_gadget
*gadget
)
1335 struct isp1301
*isp
= container_of(otg
, struct isp1301
, otg
);
1337 if (!otg
|| isp
!= the_transceiver
)
1342 if (!isp
->otg
.default_a
)
1343 enable_vbus_draw(isp
, 0);
1344 usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
1345 isp
->otg
.gadget
= 0;
1350 #ifdef CONFIG_USB_OTG
1351 isp
->otg
.gadget
= gadget
;
1352 dev_dbg(&isp
->client
.dev
, "registered gadget\n");
1353 /* gadget driver may be suspended until vbus_connect () */
1355 return isp1301_otg_enable(isp
);
1358 #elif !defined(CONFIG_USB_OHCI_HCD) && !defined(CONFIG_USB_OHCI_HCD_MODULE)
1359 isp
->otg
.gadget
= gadget
;
1360 // FIXME update its refcount
1362 OTG_CTRL_REG
= (OTG_CTRL_REG
& OTG_CTRL_MASK
1363 & ~(OTG_XCEIV_OUTPUTS
|OTG_CTRL_BITS
))
1366 isp
->otg
.state
= OTG_STATE_B_IDLE
;
1368 if (machine_is_omap_h2())
1369 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
1371 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1373 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1375 dev_info(&isp
->client
.dev
, "B-Peripheral sessions ok\n");
1376 dump_regs(isp
, __FUNCTION__
);
1378 /* If this has a Mini-AB connector, this mode is highly
1379 * nonstandard ... but can be handy for testing, so long
1380 * as you don't plug a Mini-A cable into the jack.
1382 if (isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
) & INTR_VBUS_VLD
)
1388 dev_dbg(&isp
->client
.dev
, "peripheral sessions not allowed\n");
1394 /*-------------------------------------------------------------------------*/
1397 isp1301_set_power(struct otg_transceiver
*dev
, unsigned mA
)
1399 if (!the_transceiver
)
1401 if (dev
->state
== OTG_STATE_B_PERIPHERAL
)
1402 enable_vbus_draw(the_transceiver
, mA
);
1407 isp1301_start_srp(struct otg_transceiver
*dev
)
1409 struct isp1301
*isp
= container_of(dev
, struct isp1301
, otg
);
1412 if (!dev
|| isp
!= the_transceiver
1413 || isp
->otg
.state
!= OTG_STATE_B_IDLE
)
1416 otg_ctrl
= OTG_CTRL_REG
;
1417 if (!(otg_ctrl
& OTG_BSESSEND
))
1420 otg_ctrl
|= OTG_B_BUSREQ
;
1421 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
;
1422 OTG_CTRL_REG
= otg_ctrl
;
1423 isp
->otg
.state
= OTG_STATE_B_SRP_INIT
;
1425 pr_debug("otg: SRP, %s ... %06x\n", state_name(isp
), OTG_CTRL_REG
);
1426 #ifdef CONFIG_USB_OTG
1427 check_state(isp
, __FUNCTION__
);
1433 isp1301_start_hnp(struct otg_transceiver
*dev
)
1435 #ifdef CONFIG_USB_OTG
1436 struct isp1301
*isp
= container_of(dev
, struct isp1301
, otg
);
1438 if (!dev
|| isp
!= the_transceiver
)
1440 if (isp
->otg
.default_a
&& (isp
->otg
.host
== NULL
1441 || !isp
->otg
.host
->b_hnp_enable
))
1443 if (!isp
->otg
.default_a
&& (isp
->otg
.gadget
== NULL
1444 || !isp
->otg
.gadget
->b_hnp_enable
))
1447 /* We want hardware to manage most HNP protocol timings.
1448 * So do this part as early as possible...
1450 switch (isp
->otg
.state
) {
1451 case OTG_STATE_B_HOST
:
1452 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
1453 /* caller will suspend next */
1455 case OTG_STATE_A_HOST
:
1457 /* autoconnect mode avoids irq latency bugs */
1458 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
,
1461 /* caller must suspend then clear A_BUSREQ */
1462 usb_gadget_vbus_connect(isp
->otg
.gadget
);
1463 OTG_CTRL_REG
|= OTG_A_SETB_HNPEN
;
1466 case OTG_STATE_A_PERIPHERAL
:
1467 /* initiated by B-Host suspend */
1472 pr_debug("otg: HNP %s, %06x ...\n",
1473 state_name(isp
), OTG_CTRL_REG
);
1474 check_state(isp
, __FUNCTION__
);
1482 /*-------------------------------------------------------------------------*/
1484 /* no error returns, they'd just make bus scanning stop */
1485 static int isp1301_probe(struct i2c_adapter
*bus
, int address
, int kind
)
1488 struct isp1301
*isp
;
1489 struct i2c_client
*i2c
;
1491 if (the_transceiver
)
1494 isp
= kzalloc(sizeof *isp
, GFP_KERNEL
);
1498 INIT_WORK(&isp
->work
, isp1301_work
, isp
);
1499 init_timer(&isp
->timer
);
1500 isp
->timer
.function
= isp1301_timer
;
1501 isp
->timer
.data
= (unsigned long) isp
;
1504 isp
->client
.addr
= address
;
1505 i2c_set_clientdata(&isp
->client
, isp
);
1506 isp
->client
.adapter
= bus
;
1507 isp
->client
.driver
= &isp1301_driver
;
1508 strlcpy(isp
->client
.name
, DRIVER_NAME
, I2C_NAME_SIZE
);
1511 /* if this is a true probe, verify the chip ... */
1513 status
= isp1301_get_u16(isp
, ISP1301_VENDOR_ID
);
1514 if (status
!= I2C_VENDOR_ID_PHILIPS
) {
1515 dev_dbg(&bus
->dev
, "addr %d not philips id: %d\n",
1519 status
= isp1301_get_u16(isp
, ISP1301_PRODUCT_ID
);
1520 if (status
!= I2C_PRODUCT_ID_PHILIPS_1301
) {
1521 dev_dbg(&bus
->dev
, "%d not isp1301, %d\n",
1527 status
= i2c_attach_client(i2c
);
1529 dev_dbg(&bus
->dev
, "can't attach %s to device %d, err %d\n",
1530 DRIVER_NAME
, address
, status
);
1535 isp
->i2c_release
= i2c
->dev
.release
;
1536 i2c
->dev
.release
= isp1301_release
;
1538 /* initial development used chiprev 2.00 */
1539 status
= i2c_smbus_read_word_data(i2c
, ISP1301_BCD_DEVICE
);
1540 dev_info(&i2c
->dev
, "chiprev %x.%02x, driver " DRIVER_VERSION
"\n",
1541 status
>> 8, status
& 0xff);
1543 /* make like power-on reset */
1544 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_MASK
);
1546 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_2
, MC2_BI_DI
);
1547 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_2
, ~MC2_BI_DI
);
1549 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
,
1550 OTG1_DM_PULLDOWN
| OTG1_DP_PULLDOWN
);
1551 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
,
1552 ~(OTG1_DM_PULLDOWN
| OTG1_DP_PULLDOWN
));
1554 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_LATCH
, ~0);
1555 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_FALLING
, ~0);
1556 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_RISING
, ~0);
1558 #ifdef CONFIG_USB_OTG
1559 status
= otg_bind(isp
);
1561 dev_dbg(&i2c
->dev
, "can't bind OTG\n");
1566 if (machine_is_omap_h2()) {
1567 /* full speed signaling by default */
1568 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
,
1570 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_2
,
1573 /* IRQ wired at M14 */
1574 omap_cfg_reg(M14_1510_GPIO2
);
1575 isp
->irq
= OMAP_GPIO_IRQ(2);
1576 omap_request_gpio(2);
1577 omap_set_gpio_direction(2, 1);
1578 omap_set_gpio_edge_ctrl(2, OMAP_GPIO_FALLING_EDGE
);
1581 status
= request_irq(isp
->irq
, isp1301_irq
,
1582 SA_SAMPLE_RANDOM
, DRIVER_NAME
, isp
);
1584 dev_dbg(&i2c
->dev
, "can't get IRQ %d, err %d\n",
1586 #ifdef CONFIG_USB_OTG
1589 i2c_detach_client(i2c
);
1593 isp
->otg
.dev
= &isp
->client
.dev
;
1594 isp
->otg
.label
= DRIVER_NAME
;
1596 isp
->otg
.set_host
= isp1301_set_host
,
1597 isp
->otg
.set_peripheral
= isp1301_set_peripheral
,
1598 isp
->otg
.set_power
= isp1301_set_power
,
1599 isp
->otg
.start_srp
= isp1301_start_srp
,
1600 isp
->otg
.start_hnp
= isp1301_start_hnp
,
1602 enable_vbus_draw(isp
, 0);
1604 the_transceiver
= isp
;
1606 #ifdef CONFIG_USB_OTG
1607 update_otg1(isp
, isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
));
1608 update_otg2(isp
, isp1301_get_u8(isp
, ISP1301_OTG_STATUS
));
1611 dump_regs(isp
, __FUNCTION__
);
1614 mod_timer(&isp
->timer
, jiffies
+ TIMER_JIFFIES
);
1615 dev_dbg(&i2c
->dev
, "scheduled timer, %d min\n", TIMER_MINUTES
);
1618 status
= otg_set_transceiver(&isp
->otg
);
1620 dev_err(&i2c
->dev
, "can't register transceiver, %d\n",
1626 static int isp1301_scan_bus(struct i2c_adapter
*bus
)
1628 if (!i2c_check_functionality(bus
, I2C_FUNC_SMBUS_BYTE_DATA
1629 | I2C_FUNC_SMBUS_READ_WORD_DATA
))
1631 return i2c_probe(bus
, &addr_data
, isp1301_probe
);
1634 static struct i2c_driver isp1301_driver
= {
1636 .name
= "isp1301_omap",
1638 .attach_adapter
= isp1301_scan_bus
,
1639 .detach_client
= isp1301_detach_client
,
1642 /*-------------------------------------------------------------------------*/
1644 static int __init
isp_init(void)
1646 return i2c_add_driver(&isp1301_driver
);
1648 module_init(isp_init
);
1650 static void __exit
isp_exit(void)
1652 if (the_transceiver
)
1653 otg_set_transceiver(0);
1654 i2c_del_driver(&isp1301_driver
);
1656 module_exit(isp_exit
);