aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-omap.c
blob: fed790d35f69b70cfc4305dc2fc990a4ffc7708f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
/*
 * ehci-omap.c - driver for USBHOST on OMAP3/4 processors
 *
 * Bus Glue for the EHCI controllers in OMAP3/4
 * Tested on several OMAP3 boards, and OMAP4 Pandaboard
 *
 * Copyright (C) 2007-2012 Texas Instruments, Inc.
 *	Author: Vikram Pandita <vikram.pandita@ti.com>
 *	Author: Anand Gadiyar <gadiyar@ti.com>
 *	Author: Keshava Munegowda <keshava_mgowda@ti.com>
 *	Author: Ruslan Bilovol <ruslan.bilovol@ti.com>
 *
 * Copyright (C) 2009 Nokia Corporation
 *	Contact: Felipe Balbi <felipe.balbi@nokia.com>
 *
 * Based on "ehci-fsl.c" and "ehci-au1xxx.c" ehci glue layers
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 * TODO (last updated Feb 27, 2010):
 *	- add kernel-doc
 *	- enable AUTOIDLE
 *	- add suspend/resume
 *	- add HSIC and TLL support
 *	- convert to use hwmod and runtime PM
 */

#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/usb/ulpi.h>
#include <linux/regulator/consumer.h>
#include <linux/pm_runtime.h>
#include <linux/clk.h>

#include <plat/omap_hwmod.h>
#include <plat/usb.h>
#include <plat/clock.h>
#include <plat/omap-pm.h>

/* EHCI Register Set */
#define EHCI_INSNREG04					(0xA0)
#define EHCI_INSNREG04_DISABLE_UNSUSPEND		(1 << 5)
#define	EHCI_INSNREG05_ULPI				(0xA4)
#define	EHCI_INSNREG05_ULPI_CONTROL_SHIFT		31
#define	EHCI_INSNREG05_ULPI_PORTSEL_SHIFT		24
#define	EHCI_INSNREG05_ULPI_OPSEL_SHIFT			22
#define	EHCI_INSNREG05_ULPI_REGADD_SHIFT		16
#define	EHCI_INSNREG05_ULPI_EXTREGADD_SHIFT		8
#define	EHCI_INSNREG05_ULPI_WRDATA_SHIFT		0
#define	L3INIT_HSUSBTLL_CLKCTRL				0x4A009368
#define USB_INT_EN_RISE_CLR_0				0x4A06280F
#define USB_INT_EN_FALL_CLR_0				0x4A062812
#define USB_INT_EN_RISE_CLR_1				0x4A06290F
#define USB_INT_EN_FALL_CLR_1				0x4A062912
#define OTG_CTRL_SET_0					0x4A06280B
#define OTG_CTRL_SET_1					0x4A06290B

/*-------------------------------------------------------------------------*/

static const struct hc_driver ehci_omap_hc_driver;


static inline void ehci_write(void __iomem *base, u32 reg, u32 val)
{
	__raw_writel(val, base + reg);
}

static inline u32 ehci_read(void __iomem *base, u32 reg)
{
	return __raw_readl(base + reg);
}

u8 omap_ehci_ulpi_read(const struct usb_hcd *hcd, u8 reg)
{
	unsigned reg_internal = 0;
	u8 val;
	int count = 2000;

	reg_internal = ((reg) << EHCI_INSNREG05_ULPI_REGADD_SHIFT)
			/* Write */
			| (3 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT)
			/* PORTn */
			| ((1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT)
			/* start ULPI access*/
			| (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT);

	ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, reg_internal);

	/* Wait for ULPI access completion */
	while ((ehci_read(hcd->regs, EHCI_INSNREG05_ULPI)
			& (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT))) {
		udelay(1);
		if (count-- == 0) {
			pr_err("ehci: omap_ehci_ulpi_read: Error");
			break;
		}
	}

	val = ehci_read(hcd->regs, EHCI_INSNREG05_ULPI) & 0xFF;
	return val;
}

int omap_ehci_ulpi_write(const struct usb_hcd *hcd, u8 val, u8 reg, u8 retry_times)
{
	unsigned reg_internal = 0;
	int status = 0;
	int count;

again:
	count = 2000;
	reg_internal = val |
			((reg) << EHCI_INSNREG05_ULPI_REGADD_SHIFT)
			/* Write */
			| (2 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT)
			/* PORTn */
			| ((1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT)
			/* start ULPI access*/
			| (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT);

	ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, reg_internal);

	/* Wait for ULPI access completion */
	while ((ehci_read(hcd->regs, EHCI_INSNREG05_ULPI)
			& (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT))) {
		udelay(1);
		if (count-- == 0) {
			if (retry_times--) {
				ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, 0);
				goto again;
			} else {
				pr_err("ehci: omap_ehci_ulpi_write: Error");
				status = -ETIMEDOUT;
				break;
			}
		}
	}
	return status;
}

void omap_ehci_hw_phy_reset(const struct usb_hcd *hcd)
{
	struct device *dev = hcd->self.controller;
	struct ehci_hcd_omap_platform_data  *pdata;

	pdata = dev->platform_data;

	if (gpio_is_valid(pdata->reset_gpio_port[0])) {
		gpio_set_value(pdata->reset_gpio_port[0], 0);
		mdelay(2);
		gpio_set_value(pdata->reset_gpio_port[0], 1);
		mdelay(2);
	}

	return;
}

static struct {
	int		stopped;
	int		done;
} tll_WA_info;

static void tll_WA_func(void *info)
{
	tll_WA_info.stopped = 1;
	dsb();
	/* this loop does almost nothing,
	   and expected to not mess with MPCore
	   (TLBs, caches and write buffer), at least
	   after the first iteration
	*/
	while (!tll_WA_info.done)
		cpu_relax();
}

static int omap4_ehci_tll_hub_control(
	struct usb_hcd	*hcd,
	u16		typeReq,
	u16		wValue,
	u16		wIndex,
	char		*buf,
	u16		wLength)
{
	struct ehci_hcd *ehci = hcd_to_ehci(hcd);
	u32 __iomem	*status_reg = &ehci->regs->port_status[
				(wIndex & 0xff) - 1];
	u32 __iomem	*hostpc_reg = NULL;
	u32		temp, temp1, status;
	unsigned long	flags;
	int		retval = 0;
	u32		runstop, temp_reg, tll_reg;
	u32		cpu;

	tll_reg = (u32)OMAP2_L4_IO_ADDRESS(L3INIT_HSUSBTLL_CLKCTRL);

	spin_lock_irqsave(&ehci->lock, flags);
	switch (typeReq) {
	case GetPortStatus:
		wIndex--;
		status = 0;
		temp = ehci_readl(ehci, status_reg);

		/* wPortChange bits */
		if (temp & PORT_CSC)
			status |= USB_PORT_STAT_C_CONNECTION << 16;
		if (temp & PORT_PEC)
			status |= USB_PORT_STAT_C_ENABLE << 16;

		if ((temp & PORT_OCC) && !ignore_oc) {
			status |= USB_PORT_STAT_C_OVERCURRENT << 16;

			/*
			 * Hubs should disable port power on over-current.
			 * However, not all EHCI implementations do this
			 * automatically, even if they _do_ support per-port
			 * power switching; they're allowed to just limit the
			 * current.  khubd will turn the power back on.
			 */
			if (HCS_PPC(ehci->hcs_params)) {
				ehci_writel(ehci,
					temp & ~(PORT_RWC_BITS | PORT_POWER),
					status_reg);
			}
		}

		/* whoever resumes must GetPortStatus to complete it!! */
		if (temp & PORT_RESUME) {

			/* Remote Wakeup received? */
			if (!ehci->reset_done[wIndex]) {
				/* resume signaling for 20 msec */
				ehci->reset_done[wIndex] = jiffies
						+ msecs_to_jiffies(20);
				/* check the port again */
				mod_timer(&ehci_to_hcd(ehci)->rh_timer,
						ehci->reset_done[wIndex]);
			}

			/* resume completed? */
			else if (time_after_eq(jiffies,
					ehci->reset_done[wIndex])) {
				clear_bit(wIndex, &ehci->suspended_ports);
				set_bit(wIndex, &ehci->port_c_suspend);
				ehci->reset_done[wIndex] = 0;

				/*
				 * Workaround for OMAP errata:
				 * To Stop Resume Signalling, it is required
				 * to Stop the Host Controller and disable the
				 * TLL Functional Clock.
				 */

				/* Stop the Host Controller */
				runstop = ehci_readl(ehci,
							&ehci->regs->command);
				ehci_writel(ehci, (runstop & ~CMD_RUN),
							&ehci->regs->command);
				(void) ehci_readl(ehci, &ehci->regs->command);
				if (handshake(ehci, &ehci->regs->status,
							STS_HALT,
							STS_HALT,
							2000) != 0)
					ehci_err(ehci,
						"port %d would not halt!\n",
						wIndex);

				/* If we have another CPU online, force it
				   to not mess with MPCore */
				cpu = smp_processor_id();
				if (cpu_online(cpu ^ 0x1)) {
					tll_WA_info.stopped = 0;
					tll_WA_info.done = 0;
					smp_call_function_single(cpu ^ 0x1,
						tll_WA_func, NULL, 0);
					while (!tll_WA_info.stopped)
						cpu_relax();
					udelay(1);
					dsb();
				}

				temp_reg = __raw_readl(tll_reg);
				temp_reg &= ~(1 << (wIndex + 8));

				/* stop resume signaling */
				temp = __raw_readl(status_reg) &
					~(PORT_RWC_BITS | PORT_RESUME);
				__raw_writel(temp, status_reg);

				/* Disable the Channel Optional Fclk */
				__raw_writel(temp_reg, tll_reg);
				dmb();

				/*Release other CPU*/
				tll_WA_info.done = 1;
				dsb();

				retval = handshake(ehci, status_reg,
					   PORT_RESUME, 0, 2000 /* 2msec */);

				/*
				 * Enable the Host Controller and start the
				 * Channel Optional Fclk since resume has
				 * finished.
				 */
				udelay(3);
				omap_writel((temp_reg | (1 << (wIndex + 8))),
						L3INIT_HSUSBTLL_CLKCTRL);
				ehci_writel(ehci, (runstop),
						&ehci->regs->command);
				(void) ehci_readl(ehci, &ehci->regs->command);

				if (retval != 0) {
					ehci_err(ehci,
						"port %d resume error %d\n",
						wIndex + 1, retval);
					spin_unlock_irqrestore(&ehci->lock,
									flags);
					return -EPIPE;
				}
				temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
			}
		}

		/* whoever resets must GetPortStatus to complete it!! */
		if ((temp & PORT_RESET)
				&& time_after_eq(jiffies,
					ehci->reset_done[wIndex])) {
			status |= USB_PORT_STAT_C_RESET << 16;
			ehci->reset_done[wIndex] = 0;

			/* force reset to complete */
			ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET),
					status_reg);
			/* REVISIT:  some hardware needs 550+ usec to clear
			 * this bit; seems too long to spin routinely...
			 */
			retval = handshake(ehci, status_reg,
					PORT_RESET, 0, 1000);
			if (retval != 0) {
				ehci_err(ehci, "port %d reset error %d\n",
					wIndex + 1, retval);
				spin_unlock_irqrestore(&ehci->lock, flags);
				return -EPIPE;
			}

			/* see what we found out */
			temp = check_reset_complete(ehci, wIndex, status_reg,
					ehci_readl(ehci, status_reg));
		}

		if (!(temp & (PORT_RESUME|PORT_RESET)))
			ehci->reset_done[wIndex] = 0;

		/* transfer dedicated ports to the companion hc */
		if ((temp & PORT_CONNECT) &&
				test_bit(wIndex, &ehci->companion_ports)) {
			temp &= ~PORT_RWC_BITS;
			temp |= PORT_OWNER;
			ehci_writel(ehci, temp, status_reg);
			ehci_dbg(ehci, "port %d --> companion\n", wIndex + 1);
			temp = ehci_readl(ehci, status_reg);
		}

		/*
		 * Even if OWNER is set, there's no harm letting khubd
		 * see the wPortStatus values (they should all be 0 except
		 * for PORT_POWER anyway).
		 */

		if (temp & PORT_CONNECT) {
			status |= USB_PORT_STAT_CONNECTION;
			/* status may be from integrated TT */
			if (ehci->has_hostpc) {
				temp1 = ehci_readl(ehci, hostpc_reg);
				status |= ehci_port_speed(ehci, temp1);
			} else
				status |= ehci_port_speed(ehci, temp);
		}
		if (temp & PORT_PE)
			status |= USB_PORT_STAT_ENABLE;

		/* maybe the port was unsuspended without our knowledge */
		if (temp & (PORT_SUSPEND|PORT_RESUME)) {
			status |= USB_PORT_STAT_SUSPEND;
		} else if (test_bit(wIndex, &ehci->suspended_ports)) {
			clear_bit(wIndex, &ehci->suspended_ports);
			ehci->reset_done[wIndex] = 0;
			if (temp & PORT_PE)
				set_bit(wIndex, &ehci->port_c_suspend);
		}

		if (temp & PORT_OC)
			status |= USB_PORT_STAT_OVERCURRENT;
		if (temp & PORT_RESET)
			status |= USB_PORT_STAT_RESET;
		if (temp & PORT_POWER)
			status |= USB_PORT_STAT_POWER;
		if (test_bit(wIndex, &ehci->port_c_suspend))
			status |= USB_PORT_STAT_C_SUSPEND << 16;

#ifndef	VERBOSE_DEBUG
	if (status & ~0xffff)	/* only if wPortChange is interesting */
#endif
		dbg_port(ehci, "GetStatus", wIndex + 1, temp);
		put_unaligned_le32(status, buf);
		break;
	default:
		spin_unlock_irqrestore(&ehci->lock, flags);
		return ehci_hub_control(hcd, typeReq, wValue, wIndex,
								buf, wLength);
	}
	spin_unlock_irqrestore(&ehci->lock, flags);
	return retval;
}

struct usb_hcd	*omap_ehci_hcd;

enum omap_hsic_state {
	HSIC_STATE_UNKNOWN = 0,
	HSIC_STATE_DISCONNECTING,
	HSIC_STATE_DISCONNECTED,
	HSIC_STATE_RECONNECTING,
	HSIC_STATE_RECONNECTED,
};

enum omap_hsic_aux_state {
	HSIC_AUX_DEASSERTED = 0,
	HSIC_AUX_ASSERTED,
};

struct omap_hsic_channel {
	enum omap_hsic_state state;
	enum omap_hsic_state prev_state;

	int change_state;

	int gpio;

	struct hsic_aux_irq {
		int num;
		char name[24];
	} aux_irq;
};

static struct omap_hsic_channel hsic_channel[OMAP3_HS_USB_PORTS] = {
	{
		.state = HSIC_STATE_UNKNOWN,
		.prev_state = HSIC_STATE_UNKNOWN,
	}
};


static void hsic_reconnect_work(struct work_struct *work);

static DECLARE_WORK(hsic_work, hsic_reconnect_work);


static int omap_ehci_hub_control(
	struct usb_hcd	*hcd,
	u16		typeReq,
	u16		wValue,
	u16		wIndex,
	char		*buf,
	u16		wLength)
{
	struct device *dev = hcd->self.controller;
	struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;

	if (cpu_is_omap44xx() && (wIndex > 0) && (wIndex < OMAP3_HS_USB_PORTS)) {
		if ((omap_rev() < OMAP4430_REV_ES2_3) &&
				(pdata->port_mode[wIndex-1] == OMAP_EHCI_PORT_MODE_TLL)) {
			return omap4_ehci_tll_hub_control(hcd, typeReq, wValue,
						wIndex, buf, wLength);
		} else if (pdata->port_mode[wIndex-1] == OMAP_EHCI_PORT_MODE_PHY) {
			struct ehci_hcd *ehci = hcd_to_ehci(hcd);
			u32 __iomem *status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1];
			u32             temp;
			unsigned long   flags;
			int             retval = 0;

			/* Errata i693 workaround sequence */
			spin_lock_irqsave(&ehci->lock, flags);

			if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) {
				temp = ehci_readl(ehci, status_reg);
				if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) {
					spin_unlock_irqrestore(&ehci->lock, flags);
					return -EPIPE;
				}

				temp &= ~(PORT_WKCONN_E | PORT_RWC_BITS);
				temp |= PORT_WKDISC_E | PORT_WKOC_E;
				ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
				mdelay(4);

				if ((wIndex & 0xff) == 1) {
					u32 temp_reg;
					temp_reg = omap_readl(L3INIT_HSUSBHOST_CLKCTRL);
					temp_reg |= 1 << 8;
					temp_reg &= ~(1 << 24);
					omap_writel(temp_reg, L3INIT_HSUSBHOST_CLKCTRL);

					mdelay(1);
					temp_reg &= ~(1 << 8);
					temp_reg |= 1 << 24;
					omap_writel(temp_reg, L3INIT_HSUSBHOST_CLKCTRL);
				} else if ((wIndex & 0xff) == 2) {
					u32 temp_reg;
					temp_reg = omap_readl(L3INIT_HSUSBHOST_CLKCTRL);
					temp_reg |= 1 << 9;
					temp_reg &= ~(1 << 25);
					omap_writel(temp_reg, L3INIT_HSUSBHOST_CLKCTRL);

					mdelay(1);
					temp_reg &= ~(1 << 9);
					temp_reg |= 1 << 25;
					omap_writel(temp_reg, L3INIT_HSUSBHOST_CLKCTRL);
				}

				set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports);
				ehci_readl(ehci, &ehci->regs->command);	/* unblock posted writes */
				spin_unlock_irqrestore(&ehci->lock, flags);
				return retval;
			}
			spin_unlock_irqrestore(&ehci->lock, flags);
		}
	}

	if ((wIndex > 0) && (wIndex < OMAP3_HS_USB_PORTS) &&
			(pdata->port_mode[wIndex-1] == OMAP_EHCI_PORT_MODE_HSIC)) {
		struct ehci_hcd *ehci = hcd_to_ehci(hcd);
		unsigned long flags;
		int status = 0;

		spin_lock_irqsave(&ehci->lock, flags);
		if ((typeReq == GetPortStatus) &&
				((hsic_channel[wIndex-1].state == HSIC_STATE_DISCONNECTING) ||
				(hsic_channel[wIndex-1].state == HSIC_STATE_DISCONNECTED) ||
				(hsic_channel[wIndex-1].state == HSIC_STATE_RECONNECTING))) {
			if (hsic_channel[wIndex-1].state == HSIC_STATE_DISCONNECTING) {
				status |= USB_PORT_STAT_C_CONNECTION << 16;
				status |= USB_PORT_STAT_POWER;
				hsic_channel[wIndex-1].state = HSIC_STATE_DISCONNECTED;
			} else if (hsic_channel[wIndex-1].state == HSIC_STATE_RECONNECTING) {
				status |= USB_PORT_STAT_C_CONNECTION << 16;
				status |= USB_PORT_STAT_CONNECTION;
				status |= USB_PORT_STAT_POWER;
				hsic_channel[wIndex-1].state = HSIC_STATE_RECONNECTED;
			}
			put_unaligned_le32(status, buf);
			spin_unlock_irqrestore(&ehci->lock, flags);
			return 0;
		} else if ((typeReq == ClearPortFeature) &&
					((hsic_channel[wIndex-1].state == HSIC_STATE_DISCONNECTING) ||
					(hsic_channel[wIndex-1].state == HSIC_STATE_DISCONNECTED))) {
			put_unaligned_le32(status, buf);
			spin_unlock_irqrestore(&ehci->lock, flags);
			return 0;
		} else if ((typeReq == SetPortFeature) &&
				((hsic_channel[wIndex-1].state == HSIC_STATE_DISCONNECTING) ||
				(hsic_channel[wIndex-1].state == HSIC_STATE_DISCONNECTED))) {
			put_unaligned_le32(status, buf);
			spin_unlock_irqrestore(&ehci->lock, flags);
			return 0;
		}
		spin_unlock_irqrestore(&ehci->lock, flags);
	}

	return ehci_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
}

static void omap_ehci_soft_phy_reset(struct platform_device *pdev, u8 port)
{
	struct usb_hcd	*hcd = dev_get_drvdata(&pdev->dev);
	unsigned long timeout = jiffies + msecs_to_jiffies(1000);
	unsigned reg = 0;

	reg = ULPI_FUNC_CTRL_RESET
		/* FUNCTION_CTRL_SET register */
		| (ULPI_SET(ULPI_FUNC_CTRL) << EHCI_INSNREG05_ULPI_REGADD_SHIFT)
		/* Write */
		| (2 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT)
		/* PORTn */
		| ((port + 1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT)
		/* start ULPI access*/
		| (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT);

	ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, reg);

	/* Wait for ULPI access completion */
	while ((ehci_read(hcd->regs, EHCI_INSNREG05_ULPI)
			& (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT))) {
		cpu_relax();

		if (time_after(jiffies, timeout)) {
			dev_dbg(&pdev->dev, "phy reset operation timed out\n");
			break;
		}
	}
}

static irqreturn_t hsic_aux_irq(int irq, void *__hcd)
{
	struct ehci_hcd	*ehci = hcd_to_ehci((struct usb_hcd *)__hcd);
	unsigned long flags;
	int i;

	if (!HCD_HW_ACCESSIBLE((struct usb_hcd *)__hcd))
		return IRQ_NONE;

	for (i = 0; i < OMAP3_HS_USB_PORTS; i++) {
		enum omap_hsic_aux_state aux_state;
		enum omap_hsic_state hsic_state, hsic_prev_state;

		if (irq != hsic_channel[i].aux_irq.num)
			continue;

		aux_state = gpio_get_value(hsic_channel[i].gpio) ?
				HSIC_AUX_DEASSERTED : HSIC_AUX_ASSERTED;

		spin_lock_irqsave(&ehci->lock, flags);
		hsic_state = hsic_channel[i].state;
		hsic_prev_state = hsic_channel[i].prev_state;

		switch (hsic_state) {
		case HSIC_STATE_UNKNOWN:
		case HSIC_STATE_RECONNECTED:
			if (hsic_prev_state != HSIC_STATE_DISCONNECTED &&
					aux_state == HSIC_AUX_DEASSERTED) {
				/* Start disconnect sequence */
				ehci_dbg(ehci, "HSIC ch %d disconnect detected\n", i);
				hsic_channel[i].change_state = 1;
				schedule_work(&hsic_work);
			}
			break;

		case HSIC_STATE_DISCONNECTED:
			if (aux_state == HSIC_AUX_ASSERTED) {
				/* Start connect sequence */
				ehci_dbg(ehci, "HSIC ch %d re-connect detected\n", i);
				hsic_channel[i].change_state = 1;
				schedule_work(&hsic_work);
			}
			break;

		case HSIC_STATE_DISCONNECTING:
			ehci_dbg(ehci, "HSIC ch %d AUX state changed during disconnect\n", i);
			break;

		case HSIC_STATE_RECONNECTING:
		default:
			break;
		}

		hsic_channel[i].prev_state = hsic_state;
		spin_unlock_irqrestore(&ehci->lock, flags);
		return IRQ_HANDLED;
	}

	return IRQ_NONE;
}


/* configure so an HC device and id are always provided */
/* always called with process context; sleeping is OK */

/**
 * ehci_hcd_omap_probe - initialize TI-based HCDs
 *
 * Allocates basic resources for this USB host controller, and
 * then invokes the start() method for the HCD associated with it
 * through the hotplug entry's driver_data.
 */
static int ehci_hcd_omap_probe(struct platform_device *pdev)
{
	struct device				*dev = &pdev->dev;
	struct ehci_hcd_omap_platform_data	*pdata = dev->platform_data;
	struct resource				*res;
	struct usb_hcd				*hcd;
	void __iomem				*regs;
	struct ehci_hcd				*omap_ehci;
	int					ret = -ENODEV;
	int					irq;
	int					i;
	char					supply[7];

	if (usb_disabled())
		return -ENODEV;

	if (!dev->parent) {
		dev_err(dev, "Missing parent device\n");
		return -ENODEV;
	}

	irq = platform_get_irq_byname(pdev, "ehci-irq");
	if (irq < 0) {
		dev_err(dev, "EHCI irq failed\n");
		return -ENODEV;
	}

	res =  platform_get_resource_byname(pdev,
				IORESOURCE_MEM, "ehci");
	if (!res) {
		dev_err(dev, "UHH EHCI get resource failed\n");
		return -ENODEV;
	}

	regs = ioremap(res->start, resource_size(res));
	if (!regs) {
		dev_err(dev, "UHH EHCI ioremap failed\n");
		return -ENOMEM;
	}

	hcd = usb_create_hcd(&ehci_omap_hc_driver, dev,
			dev_name(dev));

	if (!hcd) {
		dev_err(dev, "failed to create hcd with err %d\n", ret);
		ret = -ENOMEM;
		goto err_io;
	}

	omap_ehci_hcd = hcd;
	for (i = 0; i < OMAP3_HS_USB_PORTS; i++) {
		int hsic_aux_port = pdata->hsic_aux_port[i];

		if ((pdata->port_mode[i] == OMAP_EHCI_PORT_MODE_HSIC) &&
				gpio_is_valid(hsic_aux_port)) {
			int hsic_irq;

			hsic_channel[i].gpio = hsic_aux_port;

			snprintf(hsic_channel[i].aux_irq.name,
					sizeof(hsic_channel[i].aux_irq.name),
					"hsic_aux_%d", i);

			gpio_request(hsic_aux_port,
					hsic_channel[i].aux_irq.name);
			gpio_direction_input(hsic_aux_port);

			hsic_irq = gpio_to_irq(hsic_aux_port);
			if (hsic_irq < 0) {
				dev_err(dev, "HSIC AUX %d irq failed\n", i);
				ret = -ENODEV;
				goto err_hsic_aux;
			}

			hsic_channel[i].aux_irq.num = hsic_irq;

			ret = request_irq(hsic_irq, &hsic_aux_irq,
					IRQF_DISABLED |
					IRQF_TRIGGER_RISING |
					IRQF_TRIGGER_FALLING,
					hsic_channel[i].aux_irq.name, hcd);
			if (ret != 0) {
				dev_err(dev, "Request HSIC AUX interrupt %d failed\n", hsic_irq);
				goto err_hsic_aux;
			}

			enable_irq_wake(hsic_irq);
		}
	}

	hcd->rsrc_start = res->start;
	hcd->rsrc_len = resource_size(res);
	hcd->regs = regs;
	hcd->self.dma_align = 1;

	/* get ehci regulator and enable */
	for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
		if (pdata->port_mode[i] != OMAP_EHCI_PORT_MODE_PHY) {
			pdata->regulator[i] = NULL;
			continue;
		}
		snprintf(supply, sizeof(supply), "hsusb%d", i);
		pdata->regulator[i] = regulator_get(dev, supply);
		if (IS_ERR(pdata->regulator[i])) {
			pdata->regulator[i] = NULL;
			dev_dbg(dev,
			"failed to get ehci port%d regulator\n", i);
		} else {
			regulator_enable(pdata->regulator[i]);
		}
	}

	pm_runtime_get_sync(dev->parent);
	*pdata->usbhs_update_sar = 1;

	/*
	 * An undocumented "feature" in the OMAP3 EHCI controller,
	 * causes suspended ports to be taken out of suspend when
	 * the USBCMD.Run/Stop bit is cleared (for example when
	 * we do ehci_bus_suspend).
	 * This breaks suspend-resume if the root-hub is allowed
	 * to suspend. Writing 1 to this undocumented register bit
	 * disables this feature and restores normal behavior.
	 */
	ehci_write(regs, EHCI_INSNREG04,
				EHCI_INSNREG04_DISABLE_UNSUSPEND);

	/* Soft reset the PHY using PHY reset command over ULPI */
	if (pdata->port_mode[0] == OMAP_EHCI_PORT_MODE_PHY)
		omap_ehci_soft_phy_reset(pdev, 0);
	if (pdata->port_mode[1] == OMAP_EHCI_PORT_MODE_PHY)
		omap_ehci_soft_phy_reset(pdev, 1);

	omap_ehci = hcd_to_ehci(hcd);
	omap_ehci->sbrn = 0x20;

	/*
	 * Errata i754: For OMAP4, when using TLL mode the ID pin state is
	 * incorrectly restored after returning off mode. Workaround this
	 * by enabling ID pin pull-up and disabling ID pin events.
	 */
	if (cpu_is_omap44xx()) {
		if (pdata->port_mode[0] == OMAP_EHCI_PORT_MODE_TLL) {
			omap_writeb(0x10, USB_INT_EN_RISE_CLR_0);
			omap_writeb(0x10, USB_INT_EN_FALL_CLR_0);
			omap_writeb(0x01, OTG_CTRL_SET_0);
		}
		if (pdata->port_mode[1] == OMAP_EHCI_PORT_MODE_TLL) {
			omap_writeb(0x10, USB_INT_EN_RISE_CLR_1);
			omap_writeb(0x10, USB_INT_EN_FALL_CLR_1);
			omap_writeb(0x01, OTG_CTRL_SET_1);
		}
	}

	omap_ehci->has_smsc_ulpi_bug = 1;
	omap_ehci->no_companion_port_handoff = 1;
	/* we know this is the memory we want, no need to ioremap again */
	omap_ehci->caps = hcd->regs;
	omap_ehci->regs = hcd->regs
		+ HC_LENGTH(ehci, readl(&omap_ehci->caps->hc_capbase));

	dbg_hcs_params(omap_ehci, "reset");
	dbg_hcc_params(omap_ehci, "reset");

	/* cache this readonly data; minimize chip reads */
	omap_ehci->hcs_params = readl(&omap_ehci->caps->hcs_params);

	ret = usb_add_hcd(hcd, irq, IRQF_DISABLED | IRQF_SHARED);
	if (ret) {
		dev_err(dev, "failed to add hcd with err %d\n", ret);
		goto err_add_hcd;
	}

	omap_pm_set_min_bus_tput(dev,
			OCP_INITIATOR_AGENT,
			(200*1000*4));

	/* root ports should always stay powered */
	ehci_port_power(omap_ehci, 1);

	return 0;

err_hsic_aux:
	for (i = 0; i < OMAP3_HS_USB_PORTS; i++) {
		int hsic_aux_port = pdata->hsic_aux_port[i];

		if ((pdata->port_mode[i] == OMAP_EHCI_PORT_MODE_HSIC) &&
				gpio_is_valid(hsic_aux_port)) {
			if (hsic_channel[i].aux_irq.num)
				free_irq(hsic_channel[i].aux_irq.num, hcd);

			gpio_free(hsic_aux_port);
		}
	}

	usb_remove_hcd(hcd);
	usb_put_hcd(hcd);

err_add_hcd:
	pm_runtime_put_sync(dev->parent);

err_io:
	return ret;
}


/**
 * ehci_hcd_omap_remove - shutdown processing for EHCI HCDs
 * @pdev: USB Host Controller being removed
 *
 * Reverses the effect of usb_ehci_hcd_omap_probe(), first invoking
 * the HCD's stop() method.  It is always called from a thread
 * context, normally "rmmod", "apmd", or something similar.
 */
static int ehci_hcd_omap_remove(struct platform_device *pdev)
{
	struct device *dev	= &pdev->dev;
	struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;
	struct usb_hcd *hcd	= dev_get_drvdata(dev);
	int i;

	for (i = 0; i < OMAP3_HS_USB_PORTS; i++) {
		int hsic_aux_port = pdata->hsic_aux_port[i];

		if ((pdata->port_mode[i] == OMAP_EHCI_PORT_MODE_HSIC) &&
				gpio_is_valid(hsic_aux_port)) {
			if (hsic_channel[i].aux_irq.num)
				free_irq(hsic_channel[i].aux_irq.num, hcd);

			gpio_free(hsic_aux_port);
		}
	}

	usb_remove_hcd(hcd);
	pm_runtime_put_sync(dev->parent);
	usb_put_hcd(hcd);
	return 0;
}

static void ehci_hcd_omap_shutdown(struct platform_device *pdev)
{
	struct device *dev	= &pdev->dev;
	struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev);

	if (hcd->driver->shutdown) {
		pm_runtime_get_sync(dev->parent);
		hcd->driver->shutdown(hcd);
		pm_runtime_put(dev->parent);
	}
}

static int ehci_omap_bus_suspend(struct usb_hcd *hcd)
{
	struct device *dev = hcd->self.controller;
	struct ehci_hcd_omap_platform_data  *pdata;
	struct omap_hwmod	*oh;
	struct clk *clk;
	int ret = 0;
	int i;

	dev_dbg(dev, "ehci_omap_bus_suspend\n");

	ret = ehci_bus_suspend(hcd);

	if (ret != 0) {
		dev_dbg(dev, "ehci_omap_bus_suspend failed %d\n", ret);
		return ret;
	}

	oh = omap_hwmod_lookup(USBHS_EHCI_HWMODNAME);

	omap_hwmod_enable_ioring_wakeup(oh);

	if (dev->parent)
		pm_runtime_put_sync(dev->parent);

	/* At the end, disable any external transceiver clocks */
	pdata = dev->platform_data;
	for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
		clk = pdata->transceiver_clk[i];
		if (clk)
			clk_disable(clk);
	}

	omap_pm_set_min_bus_tput(dev,
			OCP_INITIATOR_AGENT,
			-1);

	return ret;
}

static int ehci_omap_bus_resume(struct usb_hcd *hcd)
{
	struct device *dev = hcd->self.controller;
	struct ehci_hcd_omap_platform_data  *pdata;
	struct omap_hwmod	*oh;
	struct clk *clk;
	int i;

	int ret;

	dev_dbg(dev, "ehci_omap_bus_resume\n");

	oh = omap_hwmod_lookup(USBHS_EHCI_HWMODNAME);

	ret = omap_hwmod_disable_ioring_wakeup(oh);

	/* Re-enable any external transceiver clocks first */
	pdata = dev->platform_data;
	for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
		clk = pdata->transceiver_clk[i];
		if (clk)
			clk_enable(clk);
	}

	omap_pm_set_min_bus_tput(dev,
			OCP_INITIATOR_AGENT,
			(200*1000*4));

	if (dev->parent)
		pm_runtime_get_sync(dev->parent);

	*pdata->usbhs_update_sar = 1;

	return ehci_bus_resume(hcd);
}

static struct platform_driver ehci_hcd_omap_driver = {
	.probe			= ehci_hcd_omap_probe,
	.remove			= ehci_hcd_omap_remove,
	.shutdown		= ehci_hcd_omap_shutdown,
	.driver = {
		.name		= "ehci-omap",
	}
};

static int omap_ehci_hub_status_data(struct usb_hcd *hcd, char *buf)
{
	struct ehci_hcd *ehci = hcd_to_ehci(hcd);
	struct device *dev = hcd->self.controller;
	struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;
	int retval, i;
	unsigned long flags;

	retval = ehci_hub_status_data(hcd, buf);

	spin_lock_irqsave(&ehci->lock, flags);
	for (i = 0; i < OMAP3_HS_USB_PORTS; i++) {
		if ((pdata->port_mode[i] == OMAP_EHCI_PORT_MODE_HSIC) &&
				((hsic_channel[i].state == HSIC_STATE_DISCONNECTING) ||
				(hsic_channel[i].state == HSIC_STATE_RECONNECTING))) {
			buf[0] |= 1 << (i + 1);
			if (!retval)
				retval = 1;
		}
	}
	spin_unlock_irqrestore(&ehci->lock, flags);

	return retval;
}

static int omap_hsic_disconnect(struct usb_hcd *hcd, int portnum)
{
	struct ehci_hcd *ehci = hcd_to_ehci(hcd);
	struct device *dev = hcd->self.controller;
	struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;
	int portsc, retval;
	unsigned long flags;

	if ((portnum < 0) || (portnum > OMAP3_HS_USB_PORTS) ||
			(pdata->port_mode[portnum - 1] != OMAP_EHCI_PORT_MODE_HSIC))
		return -EINVAL;

	if (dev->parent)
		pm_runtime_get_sync(dev->parent);

	spin_lock_irqsave(&ehci->lock, flags);

	if (hsic_channel[portnum - 1].state == HSIC_STATE_DISCONNECTED) {
		retval = -EINVAL;
		goto err_exit;
	}

	if ((hsic_channel[portnum - 1].state == HSIC_STATE_RECONNECTING) ||
			(hsic_channel[portnum - 1].state == HSIC_STATE_DISCONNECTING)) {
		retval = -EBUSY;
		goto err_exit;
	}

	disable_irq(hsic_channel[portnum - 1].aux_irq.num);

	portsc = ehci_readl(ehci, &ehci->regs->port_status[portnum - 1]);
	ehci_writel(ehci, portsc & ~PORT_PE, &ehci->regs->port_status[portnum - 1]);
	mdelay(3); /* entering in suspend*/
	gpio_direction_output(hsic_channel[portnum - 1].gpio, 0);
	mdelay(1);
	gpio_direction_input(hsic_channel[portnum - 1].gpio);
	mdelay(1);
	portsc = ehci_readl(ehci, &ehci->regs->port_status[portnum - 1]);
	ehci_writel(ehci, portsc | PORT_RESET, &ehci->regs->port_status[portnum - 1]);

	hsic_channel[portnum - 1].state = HSIC_STATE_DISCONNECTING;

	enable_irq(hsic_channel[portnum - 1].aux_irq.num);

	/* resume root hub? */
	if (hcd->state == HC_STATE_SUSPENDED)
		usb_hcd_resume_root_hub(hcd);

	ehci_work(ehci);
	spin_unlock_irqrestore(&ehci->lock, flags);
	usb_hcd_poll_rh_status(hcd);

	if (dev->parent)
		pm_runtime_put_sync(dev->parent);
	return 0;

err_exit:
	spin_unlock_irqrestore(&ehci->lock, flags);
	if (dev->parent)
		pm_runtime_put_sync(dev->parent);
	return retval;
}

static int omap_hsic_reconnect(struct usb_hcd *hcd, int portnum)
{
	struct ehci_hcd *ehci = hcd_to_ehci(hcd);
	struct device *dev = hcd->self.controller;
	struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;
	int portsc;
	unsigned long flags;
	int retval = 0;

	if ((portnum < 0) || (portnum > OMAP3_HS_USB_PORTS) ||
			(pdata->port_mode[portnum - 1] != OMAP_EHCI_PORT_MODE_HSIC))
		return -EINVAL;

	if (dev->parent)
		pm_runtime_get_sync(dev->parent);

	spin_lock_irqsave(&ehci->lock, flags);

	if (hsic_channel[portnum - 1].state == HSIC_STATE_RECONNECTED ||
			hsic_channel[portnum - 1].state == HSIC_STATE_UNKNOWN) {
		retval = -EINVAL;
		goto err_exit;
	}

	if ((hsic_channel[portnum - 1].state == HSIC_STATE_RECONNECTING) ||
			(hsic_channel[portnum - 1].state == HSIC_STATE_DISCONNECTING)) {
		retval = -EBUSY;
		goto err_exit;
	}

	disable_irq(hsic_channel[portnum - 1].aux_irq.num);

	gpio_direction_output(hsic_channel[portnum - 1].gpio, 0);
	portsc = ehci_readl(ehci, &ehci->regs->port_status[portnum - 1]);
	portsc &= ~PORT_RESET;
	portsc |= PORT_PE;
	ehci_writel(ehci, portsc, &ehci->regs->port_status[portnum - 1]);

	hsic_channel[portnum - 1].state = HSIC_STATE_RECONNECTING;

	/* resume root hub? */
	if (hcd->state == HC_STATE_SUSPENDED)
		usb_hcd_resume_root_hub(hcd);

	ehci_work(ehci);
	gpio_direction_input(hsic_channel[portnum - 1].gpio);
	enable_irq(hsic_channel[portnum - 1].aux_irq.num);
	spin_unlock_irqrestore(&ehci->lock, flags);

	usb_hcd_poll_rh_status(hcd);

	if (dev->parent)
		pm_runtime_put_sync(dev->parent);
	return retval;

err_exit:
	spin_unlock_irqrestore(&ehci->lock, flags);
	if (dev->parent)
		pm_runtime_put_sync(dev->parent);
	return retval;
}

static void hsic_reconnect_work(struct work_struct *work)
{
	struct ehci_hcd *ehci = hcd_to_ehci(omap_ehci_hcd);
	struct device *dev = omap_ehci_hcd->self.controller;
	struct ehci_hcd_omap_platform_data *pdata = dev->platform_data;
	int portsc, i;
	unsigned long flags;

	if (dev->parent)
		pm_runtime_get_sync(dev->parent);

	spin_lock_irqsave(&ehci->lock, flags);

	for (i = 0; i < OMAP3_HS_USB_PORTS; i++) {
		if ((pdata->port_mode[i] == OMAP_EHCI_PORT_MODE_HSIC) &&
				hsic_channel[i].change_state) {
			if ((hsic_channel[i].state == HSIC_STATE_RECONNECTED ||
					hsic_channel[i].state == HSIC_STATE_UNKNOWN)) {
				portsc = ehci_readl(ehci, &ehci->regs->port_status[i]);
				portsc |= PORT_RESET;
				portsc &= ~PORT_PE;
				ehci_writel(ehci, portsc, &ehci->regs->port_status[i]);
				hsic_channel[i].state = HSIC_STATE_DISCONNECTING;
			} else if (hsic_channel[i].state == HSIC_STATE_DISCONNECTED) {
				portsc = ehci_readl(ehci, &ehci->regs->port_status[i]);
				portsc &= ~PORT_RESET;
				portsc |= PORT_PE;
				ehci_writel(ehci, portsc, &ehci->regs->port_status[i]);
				hsic_channel[i].state = HSIC_STATE_RECONNECTING;
			}
			hsic_channel[i].change_state = 0;
		}
	}

	/* resume root hub? */
	if (omap_ehci_hcd->state == HC_STATE_SUSPENDED)
		usb_hcd_resume_root_hub(omap_ehci_hcd);

	ehci_work(ehci);
	spin_unlock_irqrestore(&ehci->lock, flags);

	usb_hcd_poll_rh_status(omap_ehci_hcd);

	if (dev->parent)
		pm_runtime_put_sync(dev->parent);

	return;
}

/*-------------------------------------------------------------------------*/

static const struct hc_driver ehci_omap_hc_driver = {
	.description		= hcd_name,
	.product_desc		= "OMAP-EHCI Host Controller",
	.hcd_priv_size		= sizeof(struct ehci_hcd),

	/*
	 * generic hardware linkage
	 */
	.irq			= ehci_irq,
	.flags			= HCD_MEMORY | HCD_USB2,

	/*
	 * basic lifecycle operations
	 */
	.reset			= ehci_init,
	.start			= ehci_run,
	.stop			= ehci_stop,
	.shutdown		= ehci_shutdown,

	/*
	 * managing i/o requests and associated device resources
	 */
	.urb_enqueue		= ehci_urb_enqueue,
	.urb_dequeue		= ehci_urb_dequeue,
	.endpoint_disable	= ehci_endpoint_disable,
	.endpoint_reset		= ehci_endpoint_reset,

	/*
	 * scheduling support
	 */
	.get_frame_number	= ehci_get_frame,

	/*
	 * root hub support
	 */
	.hub_status_data	= omap_ehci_hub_status_data,
	.hub_control		= omap_ehci_hub_control,
	.bus_suspend		= ehci_omap_bus_suspend,
	.bus_resume		= ehci_omap_bus_resume,

	/* HSIC disconnect-reconnect*/
	.disconnect		= omap_hsic_disconnect,
	.reconnect		= omap_hsic_reconnect,

	.clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
};

MODULE_ALIAS("platform:ehci-omap");
MODULE_AUTHOR("Texas Instruments, Inc.");
MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>");