usb: dwc_otg_310: fix usb vbus power controlled by pmic
[firefly-linux-kernel-4.4.55.git] / drivers / usb / dwc3 / host.c
1 /**
2  * host.c - DesignWare USB3 DRD Controller Host Glue
3  *
4  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
5  *
6  * Authors: Felipe Balbi <balbi@ti.com>,
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2  of
10  * the License as published by the Free Software Foundation.
11  *
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.
16  */
17
18 #include <linux/platform_device.h>
19 #include <linux/usb/xhci_pdriver.h>
20
21 #include "core.h"
22
23 int dwc3_host_init(struct dwc3 *dwc)
24 {
25         struct platform_device  *xhci;
26         struct usb_xhci_pdata   pdata;
27         int                     ret, irq;
28         struct resource         *res;
29         struct platform_device  *dwc3_pdev = to_platform_device(dwc->dev);
30
31         irq = platform_get_irq_byname(dwc3_pdev, "host");
32         if (irq == -EPROBE_DEFER)
33                 return irq;
34
35         if (irq <= 0) {
36                 irq = platform_get_irq_byname(dwc3_pdev, "dwc_usb3");
37                 if (irq == -EPROBE_DEFER)
38                         return irq;
39
40                 if (irq <= 0) {
41                         irq = platform_get_irq(dwc3_pdev, 0);
42                         if (irq <= 0) {
43                                 if (irq != -EPROBE_DEFER) {
44                                         dev_err(dwc->dev,
45                                                 "missing host IRQ\n");
46                                 }
47                                 if (!irq)
48                                         irq = -EINVAL;
49                                 return irq;
50                         } else {
51                                 res = platform_get_resource(dwc3_pdev,
52                                                             IORESOURCE_IRQ, 0);
53                         }
54                 } else {
55                         res = platform_get_resource_byname(dwc3_pdev,
56                                                            IORESOURCE_IRQ,
57                                                            "dwc_usb3");
58                 }
59
60         } else {
61                 res = platform_get_resource_byname(dwc3_pdev, IORESOURCE_IRQ,
62                                                    "host");
63         }
64
65         dwc->xhci_resources[1].start = irq;
66         dwc->xhci_resources[1].end = irq;
67         dwc->xhci_resources[1].flags = res->flags;
68         dwc->xhci_resources[1].name = res->name;
69
70         xhci = platform_device_alloc("xhci-hcd", PLATFORM_DEVID_AUTO);
71         if (!xhci) {
72                 dev_err(dwc->dev, "couldn't allocate xHCI device\n");
73                 return -ENOMEM;
74         }
75
76         dma_set_coherent_mask(&xhci->dev, dwc->dev->coherent_dma_mask);
77
78         xhci->dev.parent        = dwc->dev;
79         xhci->dev.dma_mask      = dwc->dev->dma_mask;
80         xhci->dev.dma_parms     = dwc->dev->dma_parms;
81         xhci->dev.archdata      = dwc->dev->archdata;
82
83         dwc->xhci = xhci;
84
85         ret = platform_device_add_resources(xhci, dwc->xhci_resources,
86                                                 DWC3_XHCI_RESOURCES_NUM);
87         if (ret) {
88                 dev_err(dwc->dev, "couldn't add resources to xHCI device\n");
89                 goto err1;
90         }
91
92         memset(&pdata, 0, sizeof(pdata));
93
94         pdata.usb3_disable_autosuspend = dwc->dis_u3_autosuspend_quirk;
95         pdata.usb3_lpm_capable = dwc->usb3_lpm_capable;
96         pdata.xhci_slow_suspend = dwc->xhci_slow_suspend_quirk;
97
98         ret = platform_device_add_data(xhci, &pdata, sizeof(pdata));
99         if (ret) {
100                 dev_err(dwc->dev, "couldn't add platform data to xHCI device\n");
101                 goto err1;
102         }
103
104         phy_create_lookup(dwc->usb2_generic_phy, "usb2-phy",
105                           dev_name(&xhci->dev));
106         phy_create_lookup(dwc->usb3_generic_phy, "usb3-phy",
107                           dev_name(&xhci->dev));
108
109         ret = platform_device_add(xhci);
110         if (ret) {
111                 dev_err(dwc->dev, "failed to register xHCI device\n");
112                 goto err2;
113         }
114
115         return 0;
116 err2:
117         phy_remove_lookup(dwc->usb2_generic_phy, "usb2-phy",
118                           dev_name(&xhci->dev));
119         phy_remove_lookup(dwc->usb3_generic_phy, "usb3-phy",
120                           dev_name(&xhci->dev));
121 err1:
122         platform_device_put(xhci);
123         return ret;
124 }
125
126 void dwc3_host_exit(struct dwc3 *dwc)
127 {
128         phy_remove_lookup(dwc->usb2_generic_phy, "usb2-phy",
129                           dev_name(&dwc->xhci->dev));
130         phy_remove_lookup(dwc->usb3_generic_phy, "usb3-phy",
131                           dev_name(&dwc->xhci->dev));
132         platform_device_unregister(dwc->xhci);
133 }