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/usb/ch9.h>
29 #include <linux/usb/gadget.h>
30 #include <linux/usb.h>
31 #include <linux/usb/otg.h>
32 #include <linux/i2c.h>
33 #include <linux/workqueue.h>
36 #include <asm/arch/usb.h>
44 #define DRIVER_VERSION "24 August 2004"
45 #define DRIVER_NAME (isp1301_driver.driver.name)
47 MODULE_DESCRIPTION("ISP1301 USB OTG Transceiver Driver");
48 MODULE_LICENSE("GPL");
51 struct otg_transceiver otg
;
52 struct i2c_client client
;
53 void (*i2c_release
)(struct device
*dev
);
61 struct timer_list timer
;
63 /* use keventd context to change the state for us */
64 struct work_struct work
;
67 # define WORK_UPDATE_ISP 0 /* update ISP from OTG */
68 # define WORK_UPDATE_OTG 1 /* update OTG from ISP */
69 # define WORK_HOST_RESUME 4 /* resume host */
70 # define WORK_TIMER 6 /* timer fired */
71 # define WORK_STOP 7 /* don't resubmit */
75 /* bits in OTG_CTRL_REG */
77 #define OTG_XCEIV_OUTPUTS \
78 (OTG_ASESSVLD|OTG_BSESSEND|OTG_BSESSVLD|OTG_VBUSVLD|OTG_ID)
79 #define OTG_XCEIV_INPUTS \
80 (OTG_PULLDOWN|OTG_PULLUP|OTG_DRV_VBUS|OTG_PD_VBUS|OTG_PU_VBUS|OTG_PU_ID)
81 #define OTG_CTRL_BITS \
82 (OTG_A_BUSREQ|OTG_A_SETB_HNPEN|OTG_B_BUSREQ|OTG_B_HNPEN|OTG_BUSDROP)
83 /* and OTG_PULLUP is sometimes written */
85 #define OTG_CTRL_MASK (OTG_DRIVER_SEL| \
86 OTG_XCEIV_OUTPUTS|OTG_XCEIV_INPUTS| \
90 /*-------------------------------------------------------------------------*/
92 #ifdef CONFIG_MACH_OMAP_H2
94 /* board-specific PM hooks */
97 #include <asm/arch/mux.h>
98 #include <asm/mach-types.h>
101 #if defined(CONFIG_TPS65010) || defined(CONFIG_TPS65010_MODULE)
103 #include <linux/i2c/tps65010.h>
107 static inline int tps65010_set_vbus_draw(unsigned mA
)
109 pr_debug("tps65010: draw %d mA (STUB)\n", mA
);
115 static void enable_vbus_draw(struct isp1301
*isp
, unsigned mA
)
117 int status
= tps65010_set_vbus_draw(mA
);
119 pr_debug(" VBUS %d mA error %d\n", mA
, status
);
122 static void enable_vbus_source(struct isp1301
*isp
)
124 /* this board won't supply more than 8mA vbus power.
125 * some boards can switch a 100ma "unit load" (or more).
130 /* products will deliver OTG messages with LEDs, GUI, etc */
131 static inline void notresponding(struct isp1301
*isp
)
133 printk(KERN_NOTICE
"OTG device not responding.\n");
139 /*-------------------------------------------------------------------------*/
141 /* only two addresses possible */
142 #define ISP_BASE 0x2c
143 static unsigned short normal_i2c
[] = {
144 ISP_BASE
, ISP_BASE
+ 1,
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_REG (1 << 0)
190 # define MC1_SUSPEND_REG (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_REG
);
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_REG
);
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.
347 isp1301_defer_work(struct isp1301
*isp
, int work
)
351 if (isp
&& !test_and_set_bit(work
, &isp
->todo
)) {
352 (void) get_device(&isp
->client
.dev
);
353 status
= schedule_work(&isp
->work
);
354 if (!status
&& !isp
->working
)
355 dev_vdbg(&isp
->client
.dev
,
356 "work item %d may be lost\n", work
);
360 /* called from irq handlers */
361 static void a_idle(struct isp1301
*isp
, const char *tag
)
363 if (isp
->otg
.state
== OTG_STATE_A_IDLE
)
366 isp
->otg
.default_a
= 1;
368 isp
->otg
.host
->is_b_host
= 0;
371 if (isp
->otg
.gadget
) {
372 isp
->otg
.gadget
->is_a_peripheral
= 1;
375 isp
->otg
.state
= OTG_STATE_A_IDLE
;
376 isp
->last_otg_ctrl
= OTG_CTRL_REG
= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
377 pr_debug(" --> %s/%s\n", state_name(isp
), tag
);
380 /* called from irq handlers */
381 static void b_idle(struct isp1301
*isp
, const char *tag
)
383 if (isp
->otg
.state
== OTG_STATE_B_IDLE
)
386 isp
->otg
.default_a
= 0;
388 isp
->otg
.host
->is_b_host
= 1;
391 if (isp
->otg
.gadget
) {
392 isp
->otg
.gadget
->is_a_peripheral
= 0;
395 isp
->otg
.state
= OTG_STATE_B_IDLE
;
396 isp
->last_otg_ctrl
= OTG_CTRL_REG
= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
397 pr_debug(" --> %s/%s\n", state_name(isp
), tag
);
401 dump_regs(struct isp1301
*isp
, const char *label
)
404 u8 ctrl
= isp1301_get_u8(isp
, ISP1301_OTG_CONTROL_1
);
405 u8 status
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
406 u8 src
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
);
408 pr_debug("otg: %06x, %s %s, otg/%02x stat/%02x.%02x\n",
409 OTG_CTRL_REG
, label
, state_name(isp
),
411 /* mode control and irq enables don't change much */
415 /*-------------------------------------------------------------------------*/
417 #ifdef CONFIG_USB_OTG
420 * The OMAP OTG controller handles most of the OTG state transitions.
422 * We translate isp1301 outputs (mostly voltage comparator status) into
423 * OTG inputs; OTG outputs (mostly pullup/pulldown controls) and HNP state
424 * flags into isp1301 inputs ... and infer state transitions.
429 static void check_state(struct isp1301
*isp
, const char *tag
)
431 enum usb_otg_state state
= OTG_STATE_UNDEFINED
;
432 u8 fsm
= OTG_TEST_REG
& 0x0ff;
439 state
= OTG_STATE_B_IDLE
;
445 state
= OTG_STATE_B_PERIPHERAL
;
448 state
= OTG_STATE_B_SRP_INIT
;
451 /* extra dual-role default-b states */
457 state
= OTG_STATE_B_WAIT_ACON
;
460 state
= OTG_STATE_B_HOST
;
465 state
= OTG_STATE_A_IDLE
;
468 state
= OTG_STATE_A_WAIT_VFALL
;
471 state
= OTG_STATE_A_VBUS_ERR
;
477 state
= OTG_STATE_A_PERIPHERAL
;
480 state
= OTG_STATE_A_WAIT_VRISE
;
483 state
= OTG_STATE_A_WAIT_BCON
;
486 state
= OTG_STATE_A_HOST
;
489 state
= OTG_STATE_A_SUSPEND
;
494 if (isp
->otg
.state
== state
&& !extra
)
496 pr_debug("otg: %s FSM %s/%02x, %s, %06x\n", tag
,
497 state_string(state
), fsm
, state_name(isp
), OTG_CTRL_REG
);
502 static inline void check_state(struct isp1301
*isp
, const char *tag
) { }
506 /* outputs from ISP1301_INTERRUPT_SOURCE */
507 static void update_otg1(struct isp1301
*isp
, u8 int_src
)
511 otg_ctrl
= OTG_CTRL_REG
514 & ~(OTG_ID
|OTG_ASESSVLD
|OTG_VBUSVLD
);
515 if (int_src
& INTR_SESS_VLD
)
516 otg_ctrl
|= OTG_ASESSVLD
;
517 else if (isp
->otg
.state
== OTG_STATE_A_WAIT_VFALL
) {
518 a_idle(isp
, "vfall");
519 otg_ctrl
&= ~OTG_CTRL_BITS
;
521 if (int_src
& INTR_VBUS_VLD
)
522 otg_ctrl
|= OTG_VBUSVLD
;
523 if (int_src
& INTR_ID_GND
) { /* default-A */
524 if (isp
->otg
.state
== OTG_STATE_B_IDLE
525 || isp
->otg
.state
== OTG_STATE_UNDEFINED
) {
529 } else { /* default-B */
531 if (isp
->otg
.state
== OTG_STATE_A_IDLE
532 || isp
->otg
.state
== OTG_STATE_UNDEFINED
) {
537 OTG_CTRL_REG
= otg_ctrl
;
540 /* outputs from ISP1301_OTG_STATUS */
541 static void update_otg2(struct isp1301
*isp
, u8 otg_status
)
545 otg_ctrl
= OTG_CTRL_REG
548 & ~(OTG_BSESSVLD
|OTG_BSESSEND
);
549 if (otg_status
& OTG_B_SESS_VLD
)
550 otg_ctrl
|= OTG_BSESSVLD
;
551 else if (otg_status
& OTG_B_SESS_END
)
552 otg_ctrl
|= OTG_BSESSEND
;
553 OTG_CTRL_REG
= otg_ctrl
;
556 /* inputs going to ISP1301 */
557 static void otg_update_isp(struct isp1301
*isp
)
559 u32 otg_ctrl
, otg_change
;
560 u8 set
= OTG1_DM_PULLDOWN
, clr
= OTG1_DM_PULLUP
;
562 otg_ctrl
= OTG_CTRL_REG
;
563 otg_change
= otg_ctrl
^ isp
->last_otg_ctrl
;
564 isp
->last_otg_ctrl
= otg_ctrl
;
565 otg_ctrl
= otg_ctrl
& OTG_XCEIV_INPUTS
;
567 switch (isp
->otg
.state
) {
568 case OTG_STATE_B_IDLE
:
569 case OTG_STATE_B_PERIPHERAL
:
570 case OTG_STATE_B_SRP_INIT
:
571 if (!(otg_ctrl
& OTG_PULLUP
)) {
572 // if (otg_ctrl & OTG_B_HNPEN) {
573 if (isp
->otg
.gadget
->b_hnp_enable
) {
574 isp
->otg
.state
= OTG_STATE_B_WAIT_ACON
;
575 pr_debug(" --> b_wait_acon\n");
580 set
|= OTG1_DP_PULLUP
;
581 clr
|= OTG1_DP_PULLDOWN
;
583 case OTG_STATE_A_SUSPEND
:
584 case OTG_STATE_A_PERIPHERAL
:
585 if (otg_ctrl
& OTG_PULLUP
)
588 // case OTG_STATE_B_WAIT_ACON:
591 set
|= OTG1_DP_PULLDOWN
;
592 clr
|= OTG1_DP_PULLUP
;
596 # define toggle(OTG,ISP) do { \
597 if (otg_ctrl & OTG) set |= ISP; \
601 if (!(isp
->otg
.host
))
602 otg_ctrl
&= ~OTG_DRV_VBUS
;
604 switch (isp
->otg
.state
) {
605 case OTG_STATE_A_SUSPEND
:
606 if (otg_ctrl
& OTG_DRV_VBUS
) {
607 set
|= OTG1_VBUS_DRV
;
610 /* HNP failed for some reason (A_AIDL_BDIS timeout) */
614 case OTG_STATE_A_VBUS_ERR
:
615 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
616 pr_debug(" --> a_wait_vfall\n");
618 case OTG_STATE_A_WAIT_VFALL
:
619 /* FIXME usbcore thinks port power is still on ... */
620 clr
|= OTG1_VBUS_DRV
;
622 case OTG_STATE_A_IDLE
:
623 if (otg_ctrl
& OTG_DRV_VBUS
) {
624 isp
->otg
.state
= OTG_STATE_A_WAIT_VRISE
;
625 pr_debug(" --> a_wait_vrise\n");
629 toggle(OTG_DRV_VBUS
, OTG1_VBUS_DRV
);
632 toggle(OTG_PU_VBUS
, OTG1_VBUS_CHRG
);
633 toggle(OTG_PD_VBUS
, OTG1_VBUS_DISCHRG
);
637 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, set
);
638 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, clr
);
640 /* HNP switch to host or peripheral; and SRP */
641 if (otg_change
& OTG_PULLUP
) {
642 switch (isp
->otg
.state
) {
643 case OTG_STATE_B_IDLE
:
644 if (clr
& OTG1_DP_PULLUP
)
646 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
647 pr_debug(" --> b_peripheral\n");
649 case OTG_STATE_A_SUSPEND
:
650 if (clr
& OTG1_DP_PULLUP
)
652 isp
->otg
.state
= OTG_STATE_A_PERIPHERAL
;
653 pr_debug(" --> a_peripheral\n");
658 OTG_CTRL_REG
|= OTG_PULLUP
;
661 check_state(isp
, __FUNCTION__
);
662 dump_regs(isp
, "otg->isp1301");
665 static irqreturn_t
omap_otg_irq(int irq
, void *_isp
)
667 u16 otg_irq
= OTG_IRQ_SRC_REG
;
670 struct isp1301
*isp
= _isp
;
672 /* update ISP1301 transciever from OTG controller */
673 if (otg_irq
& OPRT_CHG
) {
674 OTG_IRQ_SRC_REG
= OPRT_CHG
;
675 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
678 /* SRP to become b_peripheral failed */
679 } else if (otg_irq
& B_SRP_TMROUT
) {
680 pr_debug("otg: B_SRP_TIMEOUT, %06x\n", OTG_CTRL_REG
);
683 /* gadget drivers that care should monitor all kinds of
684 * remote wakeup (SRP, normal) using their own timer
685 * to give "check cable and A-device" messages.
687 if (isp
->otg
.state
== OTG_STATE_B_SRP_INIT
)
688 b_idle(isp
, "srp_timeout");
690 OTG_IRQ_SRC_REG
= B_SRP_TMROUT
;
693 /* HNP to become b_host failed */
694 } else if (otg_irq
& B_HNP_FAIL
) {
695 pr_debug("otg: %s B_HNP_FAIL, %06x\n",
696 state_name(isp
), OTG_CTRL_REG
);
699 otg_ctrl
= OTG_CTRL_REG
;
700 otg_ctrl
|= OTG_BUSDROP
;
701 otg_ctrl
&= OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
702 OTG_CTRL_REG
= otg_ctrl
;
704 /* subset of b_peripheral()... */
705 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
706 pr_debug(" --> b_peripheral\n");
708 OTG_IRQ_SRC_REG
= B_HNP_FAIL
;
711 /* detect SRP from B-device ... */
712 } else if (otg_irq
& A_SRP_DETECT
) {
713 pr_debug("otg: %s SRP_DETECT, %06x\n",
714 state_name(isp
), OTG_CTRL_REG
);
716 isp1301_defer_work(isp
, WORK_UPDATE_OTG
);
717 switch (isp
->otg
.state
) {
718 case OTG_STATE_A_IDLE
:
721 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
722 otg_ctrl
= OTG_CTRL_REG
;
723 otg_ctrl
|= OTG_A_BUSREQ
;
724 otg_ctrl
&= ~(OTG_BUSDROP
|OTG_B_BUSREQ
)
727 OTG_CTRL_REG
= otg_ctrl
;
733 OTG_IRQ_SRC_REG
= A_SRP_DETECT
;
736 /* timer expired: T(a_wait_bcon) and maybe T(a_wait_vrise)
737 * we don't track them separately
739 } else if (otg_irq
& A_REQ_TMROUT
) {
740 otg_ctrl
= OTG_CTRL_REG
;
741 pr_info("otg: BCON_TMOUT from %s, %06x\n",
742 state_name(isp
), otg_ctrl
);
745 otg_ctrl
|= OTG_BUSDROP
;
746 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
747 OTG_CTRL_REG
= otg_ctrl
;
748 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
750 OTG_IRQ_SRC_REG
= A_REQ_TMROUT
;
753 /* A-supplied voltage fell too low; overcurrent */
754 } else if (otg_irq
& A_VBUS_ERR
) {
755 otg_ctrl
= OTG_CTRL_REG
;
756 printk(KERN_ERR
"otg: %s, VBUS_ERR %04x ctrl %06x\n",
757 state_name(isp
), otg_irq
, otg_ctrl
);
759 otg_ctrl
|= OTG_BUSDROP
;
760 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
761 OTG_CTRL_REG
= otg_ctrl
;
762 isp
->otg
.state
= OTG_STATE_A_VBUS_ERR
;
764 OTG_IRQ_SRC_REG
= A_VBUS_ERR
;
767 /* switch driver; the transciever code activates it,
768 * ungating the udc clock or resuming OHCI.
770 } else if (otg_irq
& DRIVER_SWITCH
) {
773 otg_ctrl
= OTG_CTRL_REG
;
774 printk(KERN_NOTICE
"otg: %s, SWITCH to %s, ctrl %06x\n",
776 (otg_ctrl
& OTG_DRIVER_SEL
)
779 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
781 /* role is peripheral */
782 if (otg_ctrl
& OTG_DRIVER_SEL
) {
783 switch (isp
->otg
.state
) {
784 case OTG_STATE_A_IDLE
:
785 b_idle(isp
, __FUNCTION__
);
790 isp1301_defer_work(isp
, WORK_UPDATE_ISP
);
794 if (!(otg_ctrl
& OTG_ID
)) {
795 otg_ctrl
&= OTG_CTRL_MASK
& ~OTG_XCEIV_INPUTS
;
796 OTG_CTRL_REG
= otg_ctrl
| OTG_A_BUSREQ
;
800 switch (isp
->otg
.state
) {
801 case OTG_STATE_B_WAIT_ACON
:
802 isp
->otg
.state
= OTG_STATE_B_HOST
;
803 pr_debug(" --> b_host\n");
806 case OTG_STATE_A_WAIT_BCON
:
807 isp
->otg
.state
= OTG_STATE_A_HOST
;
808 pr_debug(" --> a_host\n");
810 case OTG_STATE_A_PERIPHERAL
:
811 isp
->otg
.state
= OTG_STATE_A_WAIT_BCON
;
812 pr_debug(" --> a_wait_bcon\n");
817 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
821 OTG_IRQ_SRC_REG
= DRIVER_SWITCH
;
825 usb_bus_start_enum(isp
->otg
.host
,
826 isp
->otg
.host
->otg_port
);
829 check_state(isp
, __FUNCTION__
);
833 static struct platform_device
*otg_dev
;
835 static int otg_init(struct isp1301
*isp
)
840 dump_regs(isp
, __FUNCTION__
);
841 /* some of these values are board-specific... */
842 OTG_SYSCON_2_REG
|= OTG_EN
844 | SRP_GPDATA
/* 9msec Bdev D+ pulse */
845 | SRP_GPDVBUS
/* discharge after VBUS pulse */
846 // | (3 << 24) /* 2msec VBUS pulse */
848 | (0 << 20) /* 200ms nominal A_WAIT_VRISE timer */
849 | SRP_DPW
/* detect 167+ns SRP pulses */
850 | SRP_DATA
| SRP_VBUS
/* accept both kinds of SRP pulse */
853 update_otg1(isp
, isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
));
854 update_otg2(isp
, isp1301_get_u8(isp
, ISP1301_OTG_STATUS
));
856 check_state(isp
, __FUNCTION__
);
857 pr_debug("otg: %s, %s %06x\n",
858 state_name(isp
), __FUNCTION__
, OTG_CTRL_REG
);
860 OTG_IRQ_EN_REG
= DRIVER_SWITCH
| OPRT_CHG
861 | B_SRP_TMROUT
| B_HNP_FAIL
862 | A_VBUS_ERR
| A_SRP_DETECT
| A_REQ_TMROUT
;
863 OTG_SYSCON_2_REG
|= OTG_EN
;
868 static int otg_probe(struct platform_device
*dev
)
870 // struct omap_usb_config *config = dev->platform_data;
876 static int otg_remove(struct platform_device
*dev
)
882 struct platform_driver omap_otg_driver
= {
884 .remove
= otg_remove
,
886 .owner
= THIS_MODULE
,
891 static int otg_bind(struct isp1301
*isp
)
898 status
= platform_driver_register(&omap_otg_driver
);
903 status
= request_irq(otg_dev
->resource
[1].start
, omap_otg_irq
,
904 IRQF_DISABLED
, DRIVER_NAME
, isp
);
909 platform_driver_unregister(&omap_otg_driver
);
913 static void otg_unbind(struct isp1301
*isp
)
917 free_irq(otg_dev
->resource
[1].start
, isp
);
922 /* OTG controller isn't clocked */
924 #endif /* CONFIG_USB_OTG */
926 /*-------------------------------------------------------------------------*/
928 static void b_peripheral(struct isp1301
*isp
)
930 OTG_CTRL_REG
= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
931 usb_gadget_vbus_connect(isp
->otg
.gadget
);
933 #ifdef CONFIG_USB_OTG
934 enable_vbus_draw(isp
, 8);
937 enable_vbus_draw(isp
, 100);
938 /* UDC driver just set OTG_BSESSVLD */
939 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_DP_PULLUP
);
940 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_DP_PULLDOWN
);
941 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
942 pr_debug(" --> b_peripheral\n");
943 dump_regs(isp
, "2periph");
947 static void isp_update_otg(struct isp1301
*isp
, u8 stat
)
949 u8 isp_stat
, isp_bstat
;
950 enum usb_otg_state state
= isp
->otg
.state
;
952 if (stat
& INTR_BDIS_ACON
)
953 pr_debug("OTG: BDIS_ACON, %s\n", state_name(isp
));
955 /* start certain state transitions right away */
956 isp_stat
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
);
957 if (isp_stat
& INTR_ID_GND
) {
958 if (isp
->otg
.default_a
) {
960 case OTG_STATE_B_IDLE
:
963 case OTG_STATE_A_IDLE
:
964 enable_vbus_source(isp
);
966 case OTG_STATE_A_WAIT_VRISE
:
967 /* we skip over OTG_STATE_A_WAIT_BCON, since
968 * the HC will transition to A_HOST (or
969 * A_SUSPEND!) without our noticing except
972 if (isp_stat
& INTR_VBUS_VLD
)
973 isp
->otg
.state
= OTG_STATE_A_HOST
;
975 case OTG_STATE_A_WAIT_VFALL
:
976 if (!(isp_stat
& INTR_SESS_VLD
))
977 a_idle(isp
, "vfell");
980 if (!(isp_stat
& INTR_VBUS_VLD
))
981 isp
->otg
.state
= OTG_STATE_A_VBUS_ERR
;
984 isp_bstat
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
987 case OTG_STATE_B_PERIPHERAL
:
988 case OTG_STATE_B_HOST
:
989 case OTG_STATE_B_WAIT_ACON
:
990 usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
995 if (state
!= OTG_STATE_A_IDLE
)
997 if (isp
->otg
.host
&& state
== OTG_STATE_A_IDLE
)
998 isp1301_defer_work(isp
, WORK_HOST_RESUME
);
1002 /* if user unplugged mini-A end of cable,
1003 * don't bypass A_WAIT_VFALL.
1005 if (isp
->otg
.default_a
) {
1008 isp
->otg
.state
= OTG_STATE_A_WAIT_VFALL
;
1010 case OTG_STATE_A_WAIT_VFALL
:
1011 state
= OTG_STATE_A_IDLE
;
1012 /* khubd may take a while to notice and
1013 * handle this disconnect, so don't go
1014 * to B_IDLE quite yet.
1017 case OTG_STATE_A_IDLE
:
1019 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
,
1021 isp
->otg
.state
= OTG_STATE_B_IDLE
;
1022 OTG_CTRL_REG
&= OTG_CTRL_REG
& OTG_CTRL_MASK
1025 case OTG_STATE_B_IDLE
:
1029 isp_bstat
= isp1301_get_u8(isp
, ISP1301_OTG_STATUS
);
1031 switch (isp
->otg
.state
) {
1032 case OTG_STATE_B_PERIPHERAL
:
1033 case OTG_STATE_B_WAIT_ACON
:
1034 case OTG_STATE_B_HOST
:
1035 if (likely(isp_bstat
& OTG_B_SESS_VLD
))
1037 enable_vbus_draw(isp
, 0);
1038 #ifndef CONFIG_USB_OTG
1039 /* UDC driver will clear OTG_BSESSVLD */
1040 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
,
1042 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
,
1044 dump_regs(isp
, __FUNCTION__
);
1047 case OTG_STATE_B_SRP_INIT
:
1048 b_idle(isp
, __FUNCTION__
);
1049 OTG_CTRL_REG
&= OTG_CTRL_REG
& OTG_XCEIV_OUTPUTS
;
1051 case OTG_STATE_B_IDLE
:
1052 if (isp
->otg
.gadget
&& (isp_bstat
& OTG_B_SESS_VLD
)) {
1053 #ifdef CONFIG_USB_OTG
1054 update_otg1(isp
, isp_stat
);
1055 update_otg2(isp
, isp_bstat
);
1058 } else if (!(isp_stat
& (INTR_VBUS_VLD
|INTR_SESS_VLD
)))
1059 isp_bstat
|= OTG_B_SESS_END
;
1061 case OTG_STATE_A_WAIT_VFALL
:
1064 pr_debug("otg: unsupported b-device %s\n",
1070 if (state
!= isp
->otg
.state
)
1071 pr_debug(" isp, %s -> %s\n",
1072 state_string(state
), state_name(isp
));
1074 #ifdef CONFIG_USB_OTG
1075 /* update the OTG controller state to match the isp1301; may
1076 * trigger OPRT_CHG irqs for changes going to the isp1301.
1078 update_otg1(isp
, isp_stat
);
1079 update_otg2(isp
, isp_bstat
);
1080 check_state(isp
, __FUNCTION__
);
1083 dump_regs(isp
, "isp1301->otg");
1086 /*-------------------------------------------------------------------------*/
1088 static u8
isp1301_clear_latch(struct isp1301
*isp
)
1090 u8 latch
= isp1301_get_u8(isp
, ISP1301_INTERRUPT_LATCH
);
1091 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_LATCH
, latch
);
1096 isp1301_work(struct work_struct
*work
)
1098 struct isp1301
*isp
= container_of(work
, struct isp1301
, work
);
1101 /* implicit lock: we're the only task using this device */
1104 stop
= test_bit(WORK_STOP
, &isp
->todo
);
1106 #ifdef CONFIG_USB_OTG
1107 /* transfer state from otg engine to isp1301 */
1108 if (test_and_clear_bit(WORK_UPDATE_ISP
, &isp
->todo
)) {
1109 otg_update_isp(isp
);
1110 put_device(&isp
->client
.dev
);
1113 /* transfer state from isp1301 to otg engine */
1114 if (test_and_clear_bit(WORK_UPDATE_OTG
, &isp
->todo
)) {
1115 u8 stat
= isp1301_clear_latch(isp
);
1117 isp_update_otg(isp
, stat
);
1118 put_device(&isp
->client
.dev
);
1121 if (test_and_clear_bit(WORK_HOST_RESUME
, &isp
->todo
)) {
1125 * skip A_WAIT_VRISE; hc transitions invisibly
1126 * skip A_WAIT_BCON; same.
1128 switch (isp
->otg
.state
) {
1129 case OTG_STATE_A_WAIT_BCON
:
1130 case OTG_STATE_A_WAIT_VRISE
:
1131 isp
->otg
.state
= OTG_STATE_A_HOST
;
1132 pr_debug(" --> a_host\n");
1133 otg_ctrl
= OTG_CTRL_REG
;
1134 otg_ctrl
|= OTG_A_BUSREQ
;
1135 otg_ctrl
&= ~(OTG_BUSDROP
|OTG_B_BUSREQ
)
1137 OTG_CTRL_REG
= otg_ctrl
;
1139 case OTG_STATE_B_WAIT_ACON
:
1140 isp
->otg
.state
= OTG_STATE_B_HOST
;
1141 pr_debug(" --> b_host (acon)\n");
1143 case OTG_STATE_B_HOST
:
1144 case OTG_STATE_B_IDLE
:
1145 case OTG_STATE_A_IDLE
:
1148 pr_debug(" host resume in %s\n",
1153 put_device(&isp
->client
.dev
);
1156 if (test_and_clear_bit(WORK_TIMER
, &isp
->todo
)) {
1158 dump_regs(isp
, "timer");
1160 mod_timer(&isp
->timer
, jiffies
+ TIMER_JIFFIES
);
1162 put_device(&isp
->client
.dev
);
1166 dev_vdbg(&isp
->client
.dev
,
1167 "work done, todo = 0x%lx\n",
1170 dev_dbg(&isp
->client
.dev
, "stop\n");
1173 } while (isp
->todo
);
1177 static irqreturn_t
isp1301_irq(int irq
, void *isp
)
1179 isp1301_defer_work(isp
, WORK_UPDATE_OTG
);
1183 static void isp1301_timer(unsigned long _isp
)
1185 isp1301_defer_work((void *)_isp
, WORK_TIMER
);
1188 /*-------------------------------------------------------------------------*/
1190 static void isp1301_release(struct device
*dev
)
1192 struct isp1301
*isp
;
1194 isp
= container_of(dev
, struct isp1301
, client
.dev
);
1196 /* ugly -- i2c hijacks our memory hook to wait_for_completion() */
1197 if (isp
->i2c_release
)
1198 isp
->i2c_release(dev
);
1202 static struct isp1301
*the_transceiver
;
1204 static int isp1301_detach_client(struct i2c_client
*i2c
)
1206 struct isp1301
*isp
;
1208 isp
= container_of(i2c
, struct isp1301
, client
);
1210 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_FALLING
, ~0);
1211 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_RISING
, ~0);
1212 free_irq(isp
->irq
, isp
);
1213 #ifdef CONFIG_USB_OTG
1216 if (machine_is_omap_h2())
1219 isp
->timer
.data
= 0;
1220 set_bit(WORK_STOP
, &isp
->todo
);
1221 del_timer_sync(&isp
->timer
);
1222 flush_scheduled_work();
1224 put_device(&i2c
->dev
);
1225 the_transceiver
= 0;
1227 return i2c_detach_client(i2c
);
1230 /*-------------------------------------------------------------------------*/
1232 /* NOTE: three modes are possible here, only one of which
1233 * will be standards-conformant on any given system:
1235 * - OTG mode (dual-role), required if there's a Mini-AB connector
1236 * - HOST mode, for when there's one or more A (host) connectors
1237 * - DEVICE mode, for when there's a B/Mini-B (device) connector
1239 * As a rule, you won't have an isp1301 chip unless it's there to
1240 * support the OTG mode. Other modes help testing USB controllers
1241 * in isolation from (full) OTG support, or maybe so later board
1242 * revisions can help to support those feature.
1245 #ifdef CONFIG_USB_OTG
1247 static int isp1301_otg_enable(struct isp1301
*isp
)
1252 /* NOTE: since we don't change this, this provides
1253 * a few more interrupts than are strictly needed.
1255 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1256 INTR_VBUS_VLD
| INTR_SESS_VLD
| INTR_ID_GND
);
1257 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1258 INTR_VBUS_VLD
| INTR_SESS_VLD
| INTR_ID_GND
);
1260 dev_info(&isp
->client
.dev
, "ready for dual-role USB ...\n");
1267 /* add or disable the host device+driver */
1269 isp1301_set_host(struct otg_transceiver
*otg
, struct usb_bus
*host
)
1271 struct isp1301
*isp
= container_of(otg
, struct isp1301
, otg
);
1273 if (!otg
|| isp
!= the_transceiver
)
1283 #ifdef CONFIG_USB_OTG
1284 isp
->otg
.host
= host
;
1285 dev_dbg(&isp
->client
.dev
, "registered host\n");
1287 if (isp
->otg
.gadget
)
1288 return isp1301_otg_enable(isp
);
1291 #elif !defined(CONFIG_USB_GADGET_OMAP)
1292 // FIXME update its refcount
1293 isp
->otg
.host
= host
;
1297 if (machine_is_omap_h2())
1298 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
1300 dev_info(&isp
->client
.dev
, "A-Host sessions ok\n");
1301 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1303 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1306 /* If this has a Mini-AB connector, this mode is highly
1307 * nonstandard ... but can be handy for testing, especially with
1308 * the Mini-A end of an OTG cable. (Or something nonstandard
1309 * like MiniB-to-StandardB, maybe built with a gender mender.)
1311 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
, OTG1_VBUS_DRV
);
1313 dump_regs(isp
, __FUNCTION__
);
1318 dev_dbg(&isp
->client
.dev
, "host sessions not allowed\n");
1325 isp1301_set_peripheral(struct otg_transceiver
*otg
, struct usb_gadget
*gadget
)
1327 struct isp1301
*isp
= container_of(otg
, struct isp1301
, otg
);
1329 if (!otg
|| isp
!= the_transceiver
)
1334 if (!isp
->otg
.default_a
)
1335 enable_vbus_draw(isp
, 0);
1336 usb_gadget_vbus_disconnect(isp
->otg
.gadget
);
1337 isp
->otg
.gadget
= 0;
1342 #ifdef CONFIG_USB_OTG
1343 isp
->otg
.gadget
= gadget
;
1344 dev_dbg(&isp
->client
.dev
, "registered gadget\n");
1345 /* gadget driver may be suspended until vbus_connect () */
1347 return isp1301_otg_enable(isp
);
1350 #elif !defined(CONFIG_USB_OHCI_HCD) && !defined(CONFIG_USB_OHCI_HCD_MODULE)
1351 isp
->otg
.gadget
= gadget
;
1352 // FIXME update its refcount
1354 OTG_CTRL_REG
= (OTG_CTRL_REG
& OTG_CTRL_MASK
1355 & ~(OTG_XCEIV_OUTPUTS
|OTG_CTRL_BITS
))
1358 isp
->otg
.state
= OTG_STATE_B_IDLE
;
1360 if (machine_is_omap_h2())
1361 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_DAT_SE0
);
1363 isp1301_set_bits(isp
, ISP1301_INTERRUPT_RISING
,
1365 isp1301_set_bits(isp
, ISP1301_INTERRUPT_FALLING
,
1367 dev_info(&isp
->client
.dev
, "B-Peripheral sessions ok\n");
1368 dump_regs(isp
, __FUNCTION__
);
1370 /* If this has a Mini-AB connector, this mode is highly
1371 * nonstandard ... but can be handy for testing, so long
1372 * as you don't plug a Mini-A cable into the jack.
1374 if (isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
) & INTR_VBUS_VLD
)
1380 dev_dbg(&isp
->client
.dev
, "peripheral sessions not allowed\n");
1386 /*-------------------------------------------------------------------------*/
1389 isp1301_set_power(struct otg_transceiver
*dev
, unsigned mA
)
1391 if (!the_transceiver
)
1393 if (dev
->state
== OTG_STATE_B_PERIPHERAL
)
1394 enable_vbus_draw(the_transceiver
, mA
);
1399 isp1301_start_srp(struct otg_transceiver
*dev
)
1401 struct isp1301
*isp
= container_of(dev
, struct isp1301
, otg
);
1404 if (!dev
|| isp
!= the_transceiver
1405 || isp
->otg
.state
!= OTG_STATE_B_IDLE
)
1408 otg_ctrl
= OTG_CTRL_REG
;
1409 if (!(otg_ctrl
& OTG_BSESSEND
))
1412 otg_ctrl
|= OTG_B_BUSREQ
;
1413 otg_ctrl
&= ~OTG_A_BUSREQ
& OTG_CTRL_MASK
;
1414 OTG_CTRL_REG
= otg_ctrl
;
1415 isp
->otg
.state
= OTG_STATE_B_SRP_INIT
;
1417 pr_debug("otg: SRP, %s ... %06x\n", state_name(isp
), OTG_CTRL_REG
);
1418 #ifdef CONFIG_USB_OTG
1419 check_state(isp
, __FUNCTION__
);
1425 isp1301_start_hnp(struct otg_transceiver
*dev
)
1427 #ifdef CONFIG_USB_OTG
1428 struct isp1301
*isp
= container_of(dev
, struct isp1301
, otg
);
1430 if (!dev
|| isp
!= the_transceiver
)
1432 if (isp
->otg
.default_a
&& (isp
->otg
.host
== NULL
1433 || !isp
->otg
.host
->b_hnp_enable
))
1435 if (!isp
->otg
.default_a
&& (isp
->otg
.gadget
== NULL
1436 || !isp
->otg
.gadget
->b_hnp_enable
))
1439 /* We want hardware to manage most HNP protocol timings.
1440 * So do this part as early as possible...
1442 switch (isp
->otg
.state
) {
1443 case OTG_STATE_B_HOST
:
1444 isp
->otg
.state
= OTG_STATE_B_PERIPHERAL
;
1445 /* caller will suspend next */
1447 case OTG_STATE_A_HOST
:
1449 /* autoconnect mode avoids irq latency bugs */
1450 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
,
1453 /* caller must suspend then clear A_BUSREQ */
1454 usb_gadget_vbus_connect(isp
->otg
.gadget
);
1455 OTG_CTRL_REG
|= OTG_A_SETB_HNPEN
;
1458 case OTG_STATE_A_PERIPHERAL
:
1459 /* initiated by B-Host suspend */
1464 pr_debug("otg: HNP %s, %06x ...\n",
1465 state_name(isp
), OTG_CTRL_REG
);
1466 check_state(isp
, __FUNCTION__
);
1474 /*-------------------------------------------------------------------------*/
1476 /* no error returns, they'd just make bus scanning stop */
1477 static int isp1301_probe(struct i2c_adapter
*bus
, int address
, int kind
)
1480 struct isp1301
*isp
;
1481 struct i2c_client
*i2c
;
1483 if (the_transceiver
)
1486 isp
= kzalloc(sizeof *isp
, GFP_KERNEL
);
1490 INIT_WORK(&isp
->work
, isp1301_work
);
1491 init_timer(&isp
->timer
);
1492 isp
->timer
.function
= isp1301_timer
;
1493 isp
->timer
.data
= (unsigned long) isp
;
1496 isp
->client
.addr
= address
;
1497 i2c_set_clientdata(&isp
->client
, isp
);
1498 isp
->client
.adapter
= bus
;
1499 isp
->client
.driver
= &isp1301_driver
;
1500 strlcpy(isp
->client
.name
, DRIVER_NAME
, I2C_NAME_SIZE
);
1503 /* if this is a true probe, verify the chip ... */
1505 status
= isp1301_get_u16(isp
, ISP1301_VENDOR_ID
);
1506 if (status
!= I2C_VENDOR_ID_PHILIPS
) {
1507 dev_dbg(&bus
->dev
, "addr %d not philips id: %d\n",
1511 status
= isp1301_get_u16(isp
, ISP1301_PRODUCT_ID
);
1512 if (status
!= I2C_PRODUCT_ID_PHILIPS_1301
) {
1513 dev_dbg(&bus
->dev
, "%d not isp1301, %d\n",
1519 status
= i2c_attach_client(i2c
);
1521 dev_dbg(&bus
->dev
, "can't attach %s to device %d, err %d\n",
1522 DRIVER_NAME
, address
, status
);
1527 isp
->i2c_release
= i2c
->dev
.release
;
1528 i2c
->dev
.release
= isp1301_release
;
1530 /* initial development used chiprev 2.00 */
1531 status
= i2c_smbus_read_word_data(i2c
, ISP1301_BCD_DEVICE
);
1532 dev_info(&i2c
->dev
, "chiprev %x.%02x, driver " DRIVER_VERSION
"\n",
1533 status
>> 8, status
& 0xff);
1535 /* make like power-on reset */
1536 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_1
, MC1_MASK
);
1538 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_2
, MC2_BI_DI
);
1539 isp1301_clear_bits(isp
, ISP1301_MODE_CONTROL_2
, ~MC2_BI_DI
);
1541 isp1301_set_bits(isp
, ISP1301_OTG_CONTROL_1
,
1542 OTG1_DM_PULLDOWN
| OTG1_DP_PULLDOWN
);
1543 isp1301_clear_bits(isp
, ISP1301_OTG_CONTROL_1
,
1544 ~(OTG1_DM_PULLDOWN
| OTG1_DP_PULLDOWN
));
1546 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_LATCH
, ~0);
1547 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_FALLING
, ~0);
1548 isp1301_clear_bits(isp
, ISP1301_INTERRUPT_RISING
, ~0);
1550 #ifdef CONFIG_USB_OTG
1551 status
= otg_bind(isp
);
1553 dev_dbg(&i2c
->dev
, "can't bind OTG\n");
1558 if (machine_is_omap_h2()) {
1559 /* full speed signaling by default */
1560 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_1
,
1562 isp1301_set_bits(isp
, ISP1301_MODE_CONTROL_2
,
1565 /* IRQ wired at M14 */
1566 omap_cfg_reg(M14_1510_GPIO2
);
1567 isp
->irq
= OMAP_GPIO_IRQ(2);
1568 if (gpio_request(2, "isp1301") == 0)
1569 gpio_direction_input(2);
1570 isp
->irq_type
= IRQF_TRIGGER_FALLING
;
1573 isp
->irq_type
|= IRQF_SAMPLE_RANDOM
;
1574 status
= request_irq(isp
->irq
, isp1301_irq
,
1575 isp
->irq_type
, DRIVER_NAME
, isp
);
1577 dev_dbg(&i2c
->dev
, "can't get IRQ %d, err %d\n",
1579 #ifdef CONFIG_USB_OTG
1582 i2c_detach_client(i2c
);
1586 isp
->otg
.dev
= &isp
->client
.dev
;
1587 isp
->otg
.label
= DRIVER_NAME
;
1589 isp
->otg
.set_host
= isp1301_set_host
,
1590 isp
->otg
.set_peripheral
= isp1301_set_peripheral
,
1591 isp
->otg
.set_power
= isp1301_set_power
,
1592 isp
->otg
.start_srp
= isp1301_start_srp
,
1593 isp
->otg
.start_hnp
= isp1301_start_hnp
,
1595 enable_vbus_draw(isp
, 0);
1597 the_transceiver
= isp
;
1599 #ifdef CONFIG_USB_OTG
1600 update_otg1(isp
, isp1301_get_u8(isp
, ISP1301_INTERRUPT_SOURCE
));
1601 update_otg2(isp
, isp1301_get_u8(isp
, ISP1301_OTG_STATUS
));
1604 dump_regs(isp
, __FUNCTION__
);
1607 mod_timer(&isp
->timer
, jiffies
+ TIMER_JIFFIES
);
1608 dev_dbg(&i2c
->dev
, "scheduled timer, %d min\n", TIMER_MINUTES
);
1611 status
= otg_set_transceiver(&isp
->otg
);
1613 dev_err(&i2c
->dev
, "can't register transceiver, %d\n",
1619 static int isp1301_scan_bus(struct i2c_adapter
*bus
)
1621 if (!i2c_check_functionality(bus
, I2C_FUNC_SMBUS_BYTE_DATA
1622 | I2C_FUNC_SMBUS_READ_WORD_DATA
))
1624 return i2c_probe(bus
, &addr_data
, isp1301_probe
);
1627 static struct i2c_driver isp1301_driver
= {
1629 .name
= "isp1301_omap",
1631 .attach_adapter
= isp1301_scan_bus
,
1632 .detach_client
= isp1301_detach_client
,
1635 /*-------------------------------------------------------------------------*/
1637 static int __init
isp_init(void)
1639 return i2c_add_driver(&isp1301_driver
);
1641 module_init(isp_init
);
1643 static void __exit
isp_exit(void)
1645 if (the_transceiver
)
1646 otg_set_transceiver(0);
1647 i2c_del_driver(&isp1301_driver
);
1649 module_exit(isp_exit
);