1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include <linux/clk.h>
20#include <linux/err.h>
21#include <linux/platform_device.h>
22#include <linux/platform_data/tegra_usb.h>
23#include <linux/irq.h>
24#include <linux/usb/otg.h>
25#include <linux/gpio.h>
26#include <linux/of.h>
27#include <linux/of_gpio.h>
28#include <linux/pm_runtime.h>
29#include <linux/usb/ehci_def.h>
30#include <linux/usb/tegra_usb_phy.h>
31#include <linux/clk/tegra.h>
32
33#define TEGRA_USB_BASE 0xC5000000
34#define TEGRA_USB2_BASE 0xC5004000
35#define TEGRA_USB3_BASE 0xC5008000
36
37
38#define TEGRA_USB_PORTSC1 0x184
39#define TEGRA_USB_PORTSC1_PTS(x) (((x) & 0x3) << 30)
40#define TEGRA_USB_PORTSC1_PHCD (1 << 23)
41
42#define TEGRA_USB_DMA_ALIGN 32
43
44struct tegra_ehci_hcd {
45 struct ehci_hcd *ehci;
46 struct tegra_usb_phy *phy;
47 struct clk *clk;
48 struct usb_phy *transceiver;
49 int host_resumed;
50 int port_resuming;
51 bool needs_double_reset;
52 enum tegra_usb_phy_port_speed port_speed;
53};
54
55static void tegra_ehci_power_up(struct usb_hcd *hcd)
56{
57 struct tegra_ehci_hcd *tegra = dev_get_drvdata(hcd->self.controller);
58
59 clk_prepare_enable(tegra->clk);
60 usb_phy_set_suspend(hcd->phy, 0);
61 tegra->host_resumed = 1;
62}
63
64static void tegra_ehci_power_down(struct usb_hcd *hcd)
65{
66 struct tegra_ehci_hcd *tegra = dev_get_drvdata(hcd->self.controller);
67
68 tegra->host_resumed = 0;
69 usb_phy_set_suspend(hcd->phy, 1);
70 clk_disable_unprepare(tegra->clk);
71}
72
73static int tegra_ehci_internal_port_reset(
74 struct ehci_hcd *ehci,
75 u32 __iomem *portsc_reg
76)
77{
78 u32 temp;
79 unsigned long flags;
80 int retval = 0;
81 int i, tries;
82 u32 saved_usbintr;
83
84 spin_lock_irqsave(&ehci->lock, flags);
85 saved_usbintr = ehci_readl(ehci, &ehci->regs->intr_enable);
86
87 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
88 spin_unlock_irqrestore(&ehci->lock, flags);
89
90
91
92
93
94 for (i = 0; i < 2; i++) {
95 temp = ehci_readl(ehci, portsc_reg);
96 temp |= PORT_RESET;
97 ehci_writel(ehci, temp, portsc_reg);
98 mdelay(10);
99 temp &= ~PORT_RESET;
100 ehci_writel(ehci, temp, portsc_reg);
101 mdelay(1);
102 tries = 100;
103 do {
104 mdelay(1);
105
106
107
108
109
110
111 temp = ehci_readl(ehci, portsc_reg);
112 } while (!(temp & PORT_PE) && tries--);
113 if (temp & PORT_PE)
114 break;
115 }
116 if (i == 2)
117 retval = -ETIMEDOUT;
118
119
120
121
122
123 if (temp & PORT_CSC)
124 ehci_writel(ehci, PORT_CSC, portsc_reg);
125
126
127
128
129
130 temp = ehci_readl(ehci, &ehci->regs->status);
131 ehci_writel(ehci, temp, &ehci->regs->status);
132
133
134 ehci_writel(ehci, saved_usbintr, &ehci->regs->intr_enable);
135 return retval;
136}
137
138static int tegra_ehci_hub_control(
139 struct usb_hcd *hcd,
140 u16 typeReq,
141 u16 wValue,
142 u16 wIndex,
143 char *buf,
144 u16 wLength
145)
146{
147 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
148 struct tegra_ehci_hcd *tegra = dev_get_drvdata(hcd->self.controller);
149 u32 __iomem *status_reg;
150 u32 temp;
151 unsigned long flags;
152 int retval = 0;
153
154 status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1];
155
156 spin_lock_irqsave(&ehci->lock, flags);
157
158 if (typeReq == GetPortStatus) {
159 temp = ehci_readl(ehci, status_reg);
160 if (tegra->port_resuming && !(temp & PORT_SUSPEND)) {
161
162 tegra->port_resuming = 0;
163 tegra_usb_phy_postresume(hcd->phy);
164 }
165 }
166
167 else if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) {
168 temp = ehci_readl(ehci, status_reg);
169 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) {
170 retval = -EPIPE;
171 goto done;
172 }
173
174 temp &= ~(PORT_RWC_BITS | PORT_WKCONN_E);
175 temp |= PORT_WKDISC_E | PORT_WKOC_E;
176 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
177
178
179
180
181
182 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND,
183 PORT_SUSPEND, 5000))
184 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
185
186 set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports);
187 goto done;
188 }
189
190
191 if (tegra->needs_double_reset &&
192 (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_RESET)) {
193 spin_unlock_irqrestore(&ehci->lock, flags);
194 return tegra_ehci_internal_port_reset(ehci, status_reg);
195 }
196
197
198
199
200
201
202
203
204 else if (typeReq == ClearPortFeature &&
205 wValue == USB_PORT_FEAT_SUSPEND) {
206 temp = ehci_readl(ehci, status_reg);
207 if ((temp & PORT_RESET) || !(temp & PORT_PE)) {
208 retval = -EPIPE;
209 goto done;
210 }
211
212 if (!(temp & PORT_SUSPEND))
213 goto done;
214
215
216 tegra_usb_phy_preresume(hcd->phy);
217
218 ehci->reset_done[wIndex-1] = jiffies + msecs_to_jiffies(25);
219
220 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
221
222 ehci_writel(ehci, temp | PORT_RESUME, status_reg);
223 set_bit(wIndex-1, &ehci->resuming_ports);
224
225 spin_unlock_irqrestore(&ehci->lock, flags);
226 msleep(20);
227 spin_lock_irqsave(&ehci->lock, flags);
228
229
230 if (ehci_handshake(ehci, status_reg, PORT_RESUME, 0, 2000))
231 pr_err("%s: timeout waiting for RESUME\n", __func__);
232 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND, 0, 2000))
233 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
234
235 ehci->reset_done[wIndex-1] = 0;
236 clear_bit(wIndex-1, &ehci->resuming_ports);
237
238 tegra->port_resuming = 1;
239 goto done;
240 }
241
242 spin_unlock_irqrestore(&ehci->lock, flags);
243
244
245 return ehci_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
246done:
247 spin_unlock_irqrestore(&ehci->lock, flags);
248 return retval;
249}
250
251static void tegra_ehci_restart(struct usb_hcd *hcd)
252{
253 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
254
255 ehci_reset(ehci);
256
257
258 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
259 ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next);
260
261 ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
262 ehci->command |= CMD_RUN;
263 ehci_writel(ehci, ehci->command, &ehci->regs->command);
264
265 down_write(&ehci_cf_port_reset_rwsem);
266 ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
267
268 ehci_readl(ehci, &ehci->regs->command);
269 up_write(&ehci_cf_port_reset_rwsem);
270}
271
272static void tegra_ehci_shutdown(struct usb_hcd *hcd)
273{
274 struct tegra_ehci_hcd *tegra = dev_get_drvdata(hcd->self.controller);
275
276
277
278 if (!tegra->host_resumed)
279 tegra_ehci_power_up(hcd);
280
281 ehci_shutdown(hcd);
282}
283
284static int tegra_ehci_setup(struct usb_hcd *hcd)
285{
286 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
287
288
289 ehci->caps = hcd->regs + 0x100;
290
291
292 hcd->has_tt = 1;
293
294 return ehci_setup(hcd);
295}
296
297struct dma_aligned_buffer {
298 void *kmalloc_ptr;
299 void *old_xfer_buffer;
300 u8 data[0];
301};
302
303static void free_dma_aligned_buffer(struct urb *urb)
304{
305 struct dma_aligned_buffer *temp;
306
307 if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
308 return;
309
310 temp = container_of(urb->transfer_buffer,
311 struct dma_aligned_buffer, data);
312
313 if (usb_urb_dir_in(urb))
314 memcpy(temp->old_xfer_buffer, temp->data,
315 urb->transfer_buffer_length);
316 urb->transfer_buffer = temp->old_xfer_buffer;
317 kfree(temp->kmalloc_ptr);
318
319 urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
320}
321
322static int alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags)
323{
324 struct dma_aligned_buffer *temp, *kmalloc_ptr;
325 size_t kmalloc_size;
326
327 if (urb->num_sgs || urb->sg ||
328 urb->transfer_buffer_length == 0 ||
329 !((uintptr_t)urb->transfer_buffer & (TEGRA_USB_DMA_ALIGN - 1)))
330 return 0;
331
332
333 kmalloc_size = urb->transfer_buffer_length +
334 sizeof(struct dma_aligned_buffer) + TEGRA_USB_DMA_ALIGN - 1;
335
336 kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
337 if (!kmalloc_ptr)
338 return -ENOMEM;
339
340
341 temp = PTR_ALIGN(kmalloc_ptr + 1, TEGRA_USB_DMA_ALIGN) - 1;
342 temp->kmalloc_ptr = kmalloc_ptr;
343 temp->old_xfer_buffer = urb->transfer_buffer;
344 if (usb_urb_dir_out(urb))
345 memcpy(temp->data, urb->transfer_buffer,
346 urb->transfer_buffer_length);
347 urb->transfer_buffer = temp->data;
348
349 urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
350
351 return 0;
352}
353
354static int tegra_ehci_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
355 gfp_t mem_flags)
356{
357 int ret;
358
359 ret = alloc_dma_aligned_buffer(urb, mem_flags);
360 if (ret)
361 return ret;
362
363 ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
364 if (ret)
365 free_dma_aligned_buffer(urb);
366
367 return ret;
368}
369
370static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
371{
372 usb_hcd_unmap_urb_for_dma(hcd, urb);
373 free_dma_aligned_buffer(urb);
374}
375
376static const struct hc_driver tegra_ehci_hc_driver = {
377 .description = hcd_name,
378 .product_desc = "Tegra EHCI Host Controller",
379 .hcd_priv_size = sizeof(struct ehci_hcd),
380 .flags = HCD_USB2 | HCD_MEMORY,
381
382
383 .irq = ehci_irq,
384 .start = ehci_run,
385 .stop = ehci_stop,
386 .urb_enqueue = ehci_urb_enqueue,
387 .urb_dequeue = ehci_urb_dequeue,
388 .endpoint_disable = ehci_endpoint_disable,
389 .endpoint_reset = ehci_endpoint_reset,
390 .get_frame_number = ehci_get_frame,
391 .hub_status_data = ehci_hub_status_data,
392 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
393 .relinquish_port = ehci_relinquish_port,
394 .port_handed_over = ehci_port_handed_over,
395
396
397 .reset = tegra_ehci_setup,
398 .shutdown = tegra_ehci_shutdown,
399 .map_urb_for_dma = tegra_ehci_map_urb_for_dma,
400 .unmap_urb_for_dma = tegra_ehci_unmap_urb_for_dma,
401 .hub_control = tegra_ehci_hub_control,
402#ifdef CONFIG_PM
403 .bus_suspend = ehci_bus_suspend,
404 .bus_resume = ehci_bus_resume,
405#endif
406};
407
408static int setup_vbus_gpio(struct platform_device *pdev,
409 struct tegra_ehci_platform_data *pdata)
410{
411 int err = 0;
412 int gpio;
413
414 gpio = pdata->vbus_gpio;
415 if (!gpio_is_valid(gpio))
416 gpio = of_get_named_gpio(pdev->dev.of_node,
417 "nvidia,vbus-gpio", 0);
418 if (!gpio_is_valid(gpio))
419 return 0;
420
421 err = gpio_request(gpio, "vbus_gpio");
422 if (err) {
423 dev_err(&pdev->dev, "can't request vbus gpio %d", gpio);
424 return err;
425 }
426 err = gpio_direction_output(gpio, 1);
427 if (err) {
428 dev_err(&pdev->dev, "can't enable vbus\n");
429 return err;
430 }
431
432 return err;
433}
434
435#ifdef CONFIG_PM
436
437static int controller_suspend(struct device *dev)
438{
439 struct tegra_ehci_hcd *tegra =
440 platform_get_drvdata(to_platform_device(dev));
441 struct ehci_hcd *ehci = tegra->ehci;
442 struct usb_hcd *hcd = ehci_to_hcd(ehci);
443 struct ehci_regs __iomem *hw = ehci->regs;
444 unsigned long flags;
445
446 if (time_before(jiffies, ehci->next_statechange))
447 msleep(10);
448
449 ehci_halt(ehci);
450
451 spin_lock_irqsave(&ehci->lock, flags);
452 tegra->port_speed = (readl(&hw->port_status[0]) >> 26) & 0x3;
453 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
454 spin_unlock_irqrestore(&ehci->lock, flags);
455
456 tegra_ehci_power_down(hcd);
457 return 0;
458}
459
460static int controller_resume(struct device *dev)
461{
462 struct tegra_ehci_hcd *tegra =
463 platform_get_drvdata(to_platform_device(dev));
464 struct ehci_hcd *ehci = tegra->ehci;
465 struct usb_hcd *hcd = ehci_to_hcd(ehci);
466 struct ehci_regs __iomem *hw = ehci->regs;
467 unsigned long val;
468
469 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
470 tegra_ehci_power_up(hcd);
471
472 if (tegra->port_speed > TEGRA_USB_PHY_PORT_SPEED_HIGH) {
473
474
475 msleep(10);
476 goto restart;
477 }
478
479
480 tegra_ehci_phy_restore_start(hcd->phy, tegra->port_speed);
481
482
483 tdi_reset(ehci);
484
485
486 val = readl(&hw->port_status[0]);
487 val |= PORT_POWER;
488 writel(val, &hw->port_status[0]);
489 udelay(10);
490
491
492
493 if (!readl(&hw->async_next)) {
494
495 val = readl(&hw->port_status[0]);
496 val &= ~PORT_TEST(~0);
497 if (tegra->port_speed == TEGRA_USB_PHY_PORT_SPEED_HIGH)
498 val |= PORT_TEST_FORCE;
499 else if (tegra->port_speed == TEGRA_USB_PHY_PORT_SPEED_FULL)
500 val |= PORT_TEST(6);
501 else if (tegra->port_speed == TEGRA_USB_PHY_PORT_SPEED_LOW)
502 val |= PORT_TEST(7);
503 writel(val, &hw->port_status[0]);
504 udelay(10);
505
506
507 val = readl(&hw->port_status[0]);
508 val &= ~PORT_TEST(~0);
509 writel(val, &hw->port_status[0]);
510 udelay(10);
511 }
512
513
514 if (ehci_handshake(ehci, &hw->port_status[0], PORT_CONNECT,
515 PORT_CONNECT, 2000)) {
516 pr_err("%s: timeout waiting for PORT_CONNECT\n", __func__);
517 goto restart;
518 }
519
520
521 if (ehci_handshake(ehci, &hw->port_status[0], PORT_PE,
522 PORT_PE, 2000)) {
523 pr_err("%s: timeout waiting for USB_PORTSC1_PE\n", __func__);
524 goto restart;
525 }
526
527
528 val = readl(&hw->status);
529 val |= STS_PCD;
530 writel(val, &hw->status);
531
532
533 val = readl(&hw->port_status[0]);
534 if ((val & PORT_POWER) && (val & PORT_PE)) {
535 val |= PORT_SUSPEND;
536 writel(val, &hw->port_status[0]);
537
538
539 if (ehci_handshake(ehci, &hw->port_status[0], PORT_SUSPEND,
540 PORT_SUSPEND, 1000)) {
541 pr_err("%s: timeout waiting for PORT_SUSPEND\n",
542 __func__);
543 goto restart;
544 }
545 }
546
547 tegra_ehci_phy_restore_end(hcd->phy);
548 goto done;
549
550 restart:
551 if (tegra->port_speed <= TEGRA_USB_PHY_PORT_SPEED_HIGH)
552 tegra_ehci_phy_restore_end(hcd->phy);
553
554 tegra_ehci_restart(hcd);
555
556 done:
557 tegra_usb_phy_preresume(hcd->phy);
558 tegra->port_resuming = 1;
559 return 0;
560}
561
562static int tegra_ehci_suspend(struct device *dev)
563{
564 struct tegra_ehci_hcd *tegra =
565 platform_get_drvdata(to_platform_device(dev));
566 struct usb_hcd *hcd = ehci_to_hcd(tegra->ehci);
567 int rc = 0;
568
569
570
571
572
573
574 if (HCD_HW_ACCESSIBLE(hcd))
575 rc = controller_suspend(dev);
576 return rc;
577}
578
579static int tegra_ehci_resume(struct device *dev)
580{
581 int rc;
582
583 rc = controller_resume(dev);
584 if (rc == 0) {
585 pm_runtime_disable(dev);
586 pm_runtime_set_active(dev);
587 pm_runtime_enable(dev);
588 }
589 return rc;
590}
591
592static int tegra_ehci_runtime_suspend(struct device *dev)
593{
594 return controller_suspend(dev);
595}
596
597static int tegra_ehci_runtime_resume(struct device *dev)
598{
599 return controller_resume(dev);
600}
601
602static const struct dev_pm_ops tegra_ehci_pm_ops = {
603 .suspend = tegra_ehci_suspend,
604 .resume = tegra_ehci_resume,
605 .runtime_suspend = tegra_ehci_runtime_suspend,
606 .runtime_resume = tegra_ehci_runtime_resume,
607};
608
609#endif
610
611
612#define TEGRA_PORTSC1_RWC_BITS (PORT_CSC | PORT_PEC | PORT_OCC)
613
614static void tegra_ehci_set_pts(struct usb_phy *x, u8 pts_val)
615{
616 unsigned long val;
617 struct usb_hcd *hcd = bus_to_hcd(x->otg->host);
618 void __iomem *base = hcd->regs;
619
620 val = readl(base + TEGRA_USB_PORTSC1) & ~TEGRA_PORTSC1_RWC_BITS;
621 val &= ~TEGRA_USB_PORTSC1_PTS(3);
622 val |= TEGRA_USB_PORTSC1_PTS(pts_val & 3);
623 writel(val, base + TEGRA_USB_PORTSC1);
624}
625
626static void tegra_ehci_set_phcd(struct usb_phy *x, bool enable)
627{
628 unsigned long val;
629 struct usb_hcd *hcd = bus_to_hcd(x->otg->host);
630 void __iomem *base = hcd->regs;
631
632 val = readl(base + TEGRA_USB_PORTSC1) & ~TEGRA_PORTSC1_RWC_BITS;
633 if (enable)
634 val |= TEGRA_USB_PORTSC1_PHCD;
635 else
636 val &= ~TEGRA_USB_PORTSC1_PHCD;
637 writel(val, base + TEGRA_USB_PORTSC1);
638}
639
640static int tegra_ehci_probe(struct platform_device *pdev)
641{
642 struct resource *res;
643 struct usb_hcd *hcd;
644 struct tegra_ehci_hcd *tegra;
645 struct tegra_ehci_platform_data *pdata;
646 int err = 0;
647 int irq;
648 int instance = pdev->id;
649 struct usb_phy *u_phy;
650
651 pdata = pdev->dev.platform_data;
652 if (!pdata) {
653 dev_err(&pdev->dev, "Platform data missing\n");
654 return -EINVAL;
655 }
656
657
658
659
660
661 if (!pdev->dev.dma_mask)
662 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
663 if (!pdev->dev.coherent_dma_mask)
664 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
665
666 setup_vbus_gpio(pdev, pdata);
667
668 tegra = devm_kzalloc(&pdev->dev, sizeof(struct tegra_ehci_hcd),
669 GFP_KERNEL);
670 if (!tegra)
671 return -ENOMEM;
672
673 hcd = usb_create_hcd(&tegra_ehci_hc_driver, &pdev->dev,
674 dev_name(&pdev->dev));
675 if (!hcd) {
676 dev_err(&pdev->dev, "Unable to create HCD\n");
677 return -ENOMEM;
678 }
679
680 platform_set_drvdata(pdev, tegra);
681
682 tegra->clk = devm_clk_get(&pdev->dev, NULL);
683 if (IS_ERR(tegra->clk)) {
684 dev_err(&pdev->dev, "Can't get ehci clock\n");
685 err = PTR_ERR(tegra->clk);
686 goto fail_clk;
687 }
688
689 err = clk_prepare_enable(tegra->clk);
690 if (err)
691 goto fail_clk;
692
693 tegra_periph_reset_assert(tegra->clk);
694 udelay(1);
695 tegra_periph_reset_deassert(tegra->clk);
696
697 tegra->needs_double_reset = of_property_read_bool(pdev->dev.of_node,
698 "nvidia,needs-double-reset");
699
700 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
701 if (!res) {
702 dev_err(&pdev->dev, "Failed to get I/O memory\n");
703 err = -ENXIO;
704 goto fail_io;
705 }
706 hcd->rsrc_start = res->start;
707 hcd->rsrc_len = resource_size(res);
708 hcd->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
709 if (!hcd->regs) {
710 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
711 err = -ENOMEM;
712 goto fail_io;
713 }
714
715
716
717
718
719 if (instance < 0) {
720 switch (res->start) {
721 case TEGRA_USB_BASE:
722 instance = 0;
723 break;
724 case TEGRA_USB2_BASE:
725 instance = 1;
726 break;
727 case TEGRA_USB3_BASE:
728 instance = 2;
729 break;
730 default:
731 err = -ENODEV;
732 dev_err(&pdev->dev, "unknown usb instance\n");
733 goto fail_io;
734 }
735 }
736
737 tegra->phy = tegra_usb_phy_open(&pdev->dev, instance, hcd->regs,
738 pdata->phy_config,
739 TEGRA_USB_PHY_MODE_HOST,
740 tegra_ehci_set_pts,
741 tegra_ehci_set_phcd);
742 if (IS_ERR(tegra->phy)) {
743 dev_err(&pdev->dev, "Failed to open USB phy\n");
744 err = -ENXIO;
745 goto fail_io;
746 }
747
748 hcd->phy = u_phy = &tegra->phy->u_phy;
749 usb_phy_init(hcd->phy);
750
751 u_phy->otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
752 GFP_KERNEL);
753 if (!u_phy->otg) {
754 dev_err(&pdev->dev, "Failed to alloc memory for otg\n");
755 err = -ENOMEM;
756 goto fail_io;
757 }
758 u_phy->otg->host = hcd_to_bus(hcd);
759
760 err = usb_phy_set_suspend(hcd->phy, 0);
761 if (err) {
762 dev_err(&pdev->dev, "Failed to power on the phy\n");
763 goto fail_phy;
764 }
765
766 tegra->host_resumed = 1;
767 tegra->ehci = hcd_to_ehci(hcd);
768
769 irq = platform_get_irq(pdev, 0);
770 if (!irq) {
771 dev_err(&pdev->dev, "Failed to get IRQ\n");
772 err = -ENODEV;
773 goto fail_phy;
774 }
775
776 if (pdata->operating_mode == TEGRA_USB_OTG) {
777 tegra->transceiver =
778 devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2);
779 if (!IS_ERR(tegra->transceiver))
780 otg_set_host(tegra->transceiver->otg, &hcd->self);
781 } else {
782 tegra->transceiver = ERR_PTR(-ENODEV);
783 }
784
785 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
786 if (err) {
787 dev_err(&pdev->dev, "Failed to add USB HCD\n");
788 goto fail;
789 }
790
791 pm_runtime_set_active(&pdev->dev);
792 pm_runtime_get_noresume(&pdev->dev);
793
794
795
796 pm_runtime_forbid(&pdev->dev);
797 pm_runtime_enable(&pdev->dev);
798 pm_runtime_put_sync(&pdev->dev);
799 return err;
800
801fail:
802 if (!IS_ERR(tegra->transceiver))
803 otg_set_host(tegra->transceiver->otg, NULL);
804fail_phy:
805 usb_phy_shutdown(hcd->phy);
806fail_io:
807 clk_disable_unprepare(tegra->clk);
808fail_clk:
809 usb_put_hcd(hcd);
810 return err;
811}
812
813static int tegra_ehci_remove(struct platform_device *pdev)
814{
815 struct tegra_ehci_hcd *tegra = platform_get_drvdata(pdev);
816 struct usb_hcd *hcd = ehci_to_hcd(tegra->ehci);
817
818 pm_runtime_get_sync(&pdev->dev);
819 pm_runtime_disable(&pdev->dev);
820 pm_runtime_put_noidle(&pdev->dev);
821
822 if (!IS_ERR(tegra->transceiver))
823 otg_set_host(tegra->transceiver->otg, NULL);
824
825 usb_phy_shutdown(hcd->phy);
826 usb_remove_hcd(hcd);
827 usb_put_hcd(hcd);
828
829 clk_disable_unprepare(tegra->clk);
830
831 return 0;
832}
833
834static void tegra_ehci_hcd_shutdown(struct platform_device *pdev)
835{
836 struct tegra_ehci_hcd *tegra = platform_get_drvdata(pdev);
837 struct usb_hcd *hcd = ehci_to_hcd(tegra->ehci);
838
839 if (hcd->driver->shutdown)
840 hcd->driver->shutdown(hcd);
841}
842
843static struct of_device_id tegra_ehci_of_match[] = {
844 { .compatible = "nvidia,tegra20-ehci", },
845 { },
846};
847
848static struct platform_driver tegra_ehci_driver = {
849 .probe = tegra_ehci_probe,
850 .remove = tegra_ehci_remove,
851 .shutdown = tegra_ehci_hcd_shutdown,
852 .driver = {
853 .name = "tegra-ehci",
854 .of_match_table = tegra_ehci_of_match,
855#ifdef CONFIG_PM
856 .pm = &tegra_ehci_pm_ops,
857#endif
858 }
859};
860