]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/blob - drivers/usb/host/ehci-orion.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next
[can-eth-gw-linux.git] / drivers / usb / host / ehci-orion.c
1 /*
2  * drivers/usb/host/ehci-orion.c
3  *
4  * Tzachi Perelstein <tzachi@marvell.com>
5  *
6  * This file is licensed under  the terms of the GNU General Public
7  * License version 2. This program is licensed "as is" without any
8  * warranty of any kind, whether express or implied.
9  */
10
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/mbus.h>
15 #include <linux/clk.h>
16 #include <linux/platform_data/usb-ehci-orion.h>
17
18 #define rdl(off)        __raw_readl(hcd->regs + (off))
19 #define wrl(off, val)   __raw_writel((val), hcd->regs + (off))
20
21 #define USB_CMD                 0x140
22 #define USB_MODE                0x1a8
23 #define USB_CAUSE               0x310
24 #define USB_MASK                0x314
25 #define USB_WINDOW_CTRL(i)      (0x320 + ((i) << 4))
26 #define USB_WINDOW_BASE(i)      (0x324 + ((i) << 4))
27 #define USB_IPG                 0x360
28 #define USB_PHY_PWR_CTRL        0x400
29 #define USB_PHY_TX_CTRL         0x420
30 #define USB_PHY_RX_CTRL         0x430
31 #define USB_PHY_IVREF_CTRL      0x440
32 #define USB_PHY_TST_GRP_CTRL    0x450
33
34 /*
35  * Implement Orion USB controller specification guidelines
36  */
37 static void orion_usb_phy_v1_setup(struct usb_hcd *hcd)
38 {
39         /* The below GLs are according to the Orion Errata document */
40         /*
41          * Clear interrupt cause and mask
42          */
43         wrl(USB_CAUSE, 0);
44         wrl(USB_MASK, 0);
45
46         /*
47          * Reset controller
48          */
49         wrl(USB_CMD, rdl(USB_CMD) | 0x2);
50         while (rdl(USB_CMD) & 0x2);
51
52         /*
53          * GL# USB-10: Set IPG for non start of frame packets
54          * Bits[14:8]=0xc
55          */
56         wrl(USB_IPG, (rdl(USB_IPG) & ~0x7f00) | 0xc00);
57
58         /*
59          * GL# USB-9: USB 2.0 Power Control
60          * BG_VSEL[7:6]=0x1
61          */
62         wrl(USB_PHY_PWR_CTRL, (rdl(USB_PHY_PWR_CTRL) & ~0xc0)| 0x40);
63
64         /*
65          * GL# USB-1: USB PHY Tx Control - force calibration to '8'
66          * TXDATA_BLOCK_EN[21]=0x1, EXT_RCAL_EN[13]=0x1, IMP_CAL[6:3]=0x8
67          */
68         wrl(USB_PHY_TX_CTRL, (rdl(USB_PHY_TX_CTRL) & ~0x78) | 0x202040);
69
70         /*
71          * GL# USB-3 GL# USB-9: USB PHY Rx Control
72          * RXDATA_BLOCK_LENGHT[31:30]=0x3, EDGE_DET_SEL[27:26]=0,
73          * CDR_FASTLOCK_EN[21]=0, DISCON_THRESHOLD[9:8]=0, SQ_THRESH[7:4]=0x1
74          */
75         wrl(USB_PHY_RX_CTRL, (rdl(USB_PHY_RX_CTRL) & ~0xc2003f0) | 0xc0000010);
76
77         /*
78          * GL# USB-3 GL# USB-9: USB PHY IVREF Control
79          * PLLVDD12[1:0]=0x2, RXVDD[5:4]=0x3, Reserved[19]=0
80          */
81         wrl(USB_PHY_IVREF_CTRL, (rdl(USB_PHY_IVREF_CTRL) & ~0x80003 ) | 0x32);
82
83         /*
84          * GL# USB-3 GL# USB-9: USB PHY Test Group Control
85          * REG_FIFO_SQ_RST[15]=0
86          */
87         wrl(USB_PHY_TST_GRP_CTRL, rdl(USB_PHY_TST_GRP_CTRL) & ~0x8000);
88
89         /*
90          * Stop and reset controller
91          */
92         wrl(USB_CMD, rdl(USB_CMD) & ~0x1);
93         wrl(USB_CMD, rdl(USB_CMD) | 0x2);
94         while (rdl(USB_CMD) & 0x2);
95
96         /*
97          * GL# USB-5 Streaming disable REG_USB_MODE[4]=1
98          * TBD: This need to be done after each reset!
99          * GL# USB-4 Setup USB Host mode
100          */
101         wrl(USB_MODE, 0x13);
102 }
103
104 static const struct hc_driver ehci_orion_hc_driver = {
105         .description = hcd_name,
106         .product_desc = "Marvell Orion EHCI",
107         .hcd_priv_size = sizeof(struct ehci_hcd),
108
109         /*
110          * generic hardware linkage
111          */
112         .irq = ehci_irq,
113         .flags = HCD_MEMORY | HCD_USB2,
114
115         /*
116          * basic lifecycle operations
117          */
118         .reset = ehci_setup,
119         .start = ehci_run,
120         .stop = ehci_stop,
121         .shutdown = ehci_shutdown,
122
123         /*
124          * managing i/o requests and associated device resources
125          */
126         .urb_enqueue = ehci_urb_enqueue,
127         .urb_dequeue = ehci_urb_dequeue,
128         .endpoint_disable = ehci_endpoint_disable,
129         .endpoint_reset = ehci_endpoint_reset,
130
131         /*
132          * scheduling support
133          */
134         .get_frame_number = ehci_get_frame,
135
136         /*
137          * root hub support
138          */
139         .hub_status_data = ehci_hub_status_data,
140         .hub_control = ehci_hub_control,
141         .bus_suspend = ehci_bus_suspend,
142         .bus_resume = ehci_bus_resume,
143         .relinquish_port = ehci_relinquish_port,
144         .port_handed_over = ehci_port_handed_over,
145
146         .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
147 };
148
149 static void
150 ehci_orion_conf_mbus_windows(struct usb_hcd *hcd,
151                              const struct mbus_dram_target_info *dram)
152 {
153         int i;
154
155         for (i = 0; i < 4; i++) {
156                 wrl(USB_WINDOW_CTRL(i), 0);
157                 wrl(USB_WINDOW_BASE(i), 0);
158         }
159
160         for (i = 0; i < dram->num_cs; i++) {
161                 const struct mbus_dram_window *cs = dram->cs + i;
162
163                 wrl(USB_WINDOW_CTRL(i), ((cs->size - 1) & 0xffff0000) |
164                                         (cs->mbus_attr << 8) |
165                                         (dram->mbus_dram_target_id << 4) | 1);
166                 wrl(USB_WINDOW_BASE(i), cs->base);
167         }
168 }
169
170 static int ehci_orion_drv_probe(struct platform_device *pdev)
171 {
172         struct orion_ehci_data *pd = pdev->dev.platform_data;
173         const struct mbus_dram_target_info *dram;
174         struct resource *res;
175         struct usb_hcd *hcd;
176         struct ehci_hcd *ehci;
177         struct clk *clk;
178         void __iomem *regs;
179         int irq, err;
180
181         if (usb_disabled())
182                 return -ENODEV;
183
184         pr_debug("Initializing Orion-SoC USB Host Controller\n");
185
186         irq = platform_get_irq(pdev, 0);
187         if (irq <= 0) {
188                 dev_err(&pdev->dev,
189                         "Found HC with no IRQ. Check %s setup!\n",
190                         dev_name(&pdev->dev));
191                 err = -ENODEV;
192                 goto err1;
193         }
194
195         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
196         if (!res) {
197                 dev_err(&pdev->dev,
198                         "Found HC with no register addr. Check %s setup!\n",
199                         dev_name(&pdev->dev));
200                 err = -ENODEV;
201                 goto err1;
202         }
203
204         if (!request_mem_region(res->start, resource_size(res),
205                                 ehci_orion_hc_driver.description)) {
206                 dev_dbg(&pdev->dev, "controller already in use\n");
207                 err = -EBUSY;
208                 goto err1;
209         }
210
211         regs = ioremap(res->start, resource_size(res));
212         if (regs == NULL) {
213                 dev_dbg(&pdev->dev, "error mapping memory\n");
214                 err = -EFAULT;
215                 goto err2;
216         }
217
218         /* Not all platforms can gate the clock, so it is not
219            an error if the clock does not exists. */
220         clk = clk_get(&pdev->dev, NULL);
221         if (!IS_ERR(clk)) {
222                 clk_prepare_enable(clk);
223                 clk_put(clk);
224         }
225
226         hcd = usb_create_hcd(&ehci_orion_hc_driver,
227                         &pdev->dev, dev_name(&pdev->dev));
228         if (!hcd) {
229                 err = -ENOMEM;
230                 goto err3;
231         }
232
233         hcd->rsrc_start = res->start;
234         hcd->rsrc_len = resource_size(res);
235         hcd->regs = regs;
236
237         ehci = hcd_to_ehci(hcd);
238         ehci->caps = hcd->regs + 0x100;
239         hcd->has_tt = 1;
240
241         /*
242          * (Re-)program MBUS remapping windows if we are asked to.
243          */
244         dram = mv_mbus_dram_info();
245         if (dram)
246                 ehci_orion_conf_mbus_windows(hcd, dram);
247
248         /*
249          * setup Orion USB controller.
250          */
251         switch (pd->phy_version) {
252         case EHCI_PHY_NA:       /* dont change USB phy settings */
253                 break;
254         case EHCI_PHY_ORION:
255                 orion_usb_phy_v1_setup(hcd);
256                 break;
257         case EHCI_PHY_DD:
258         case EHCI_PHY_KW:
259         default:
260                 printk(KERN_WARNING "Orion ehci -USB phy version isn't supported.\n");
261         }
262
263         err = usb_add_hcd(hcd, irq, IRQF_SHARED);
264         if (err)
265                 goto err4;
266
267         return 0;
268
269 err4:
270         usb_put_hcd(hcd);
271 err3:
272         if (!IS_ERR(clk)) {
273                 clk_disable_unprepare(clk);
274                 clk_put(clk);
275         }
276         iounmap(regs);
277 err2:
278         release_mem_region(res->start, resource_size(res));
279 err1:
280         dev_err(&pdev->dev, "init %s fail, %d\n",
281                 dev_name(&pdev->dev), err);
282
283         return err;
284 }
285
286 static int __exit ehci_orion_drv_remove(struct platform_device *pdev)
287 {
288         struct usb_hcd *hcd = platform_get_drvdata(pdev);
289         struct clk *clk;
290
291         usb_remove_hcd(hcd);
292         iounmap(hcd->regs);
293         release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
294         usb_put_hcd(hcd);
295
296         clk = clk_get(&pdev->dev, NULL);
297         if (!IS_ERR(clk)) {
298                 clk_disable_unprepare(clk);
299                 clk_put(clk);
300         }
301         return 0;
302 }
303
304 MODULE_ALIAS("platform:orion-ehci");
305
306 static struct platform_driver ehci_orion_driver = {
307         .probe          = ehci_orion_drv_probe,
308         .remove         = __exit_p(ehci_orion_drv_remove),
309         .shutdown       = usb_hcd_platform_shutdown,
310         .driver.name    = "orion-ehci",
311 };