blob: c7e0936d4a7cffd717bdcee0e7e52183656ae8f3 [file] [log] [blame]
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +09001/*
2 * SAMSUNG S5P USB HOST EHCI Controller
3 *
4 * Copyright (C) 2011 Samsung Electronics Co.Ltd
5 * Author: Jingoo Han <jg1.han@samsung.com>
6 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 */
14
15#include <linux/clk.h>
16#include <linux/platform_device.h>
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090017#include <plat/ehci.h>
18#include <plat/usb-phy.h>
19
Jingoo Han88555a62012-03-05 10:40:14 +090020#define EHCI_INSNREG00(base) (base + 0x90)
21#define EHCI_INSNREG00_ENA_INCR16 (0x1 << 25)
22#define EHCI_INSNREG00_ENA_INCR8 (0x1 << 24)
23#define EHCI_INSNREG00_ENA_INCR4 (0x1 << 23)
24#define EHCI_INSNREG00_ENA_INCRX_ALIGN (0x1 << 22)
25#define EHCI_INSNREG00_ENABLE_DMA_BURST \
26 (EHCI_INSNREG00_ENA_INCR16 | EHCI_INSNREG00_ENA_INCR8 | \
27 EHCI_INSNREG00_ENA_INCR4 | EHCI_INSNREG00_ENA_INCRX_ALIGN)
28
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090029struct s5p_ehci_hcd {
30 struct device *dev;
31 struct usb_hcd *hcd;
32 struct clk *clk;
33};
34
35static const struct hc_driver s5p_ehci_hc_driver = {
36 .description = hcd_name,
37 .product_desc = "S5P EHCI Host Controller",
38 .hcd_priv_size = sizeof(struct ehci_hcd),
39
40 .irq = ehci_irq,
41 .flags = HCD_MEMORY | HCD_USB2,
42
43 .reset = ehci_init,
44 .start = ehci_run,
45 .stop = ehci_stop,
46 .shutdown = ehci_shutdown,
47
48 .get_frame_number = ehci_get_frame,
49
50 .urb_enqueue = ehci_urb_enqueue,
51 .urb_dequeue = ehci_urb_dequeue,
52 .endpoint_disable = ehci_endpoint_disable,
53 .endpoint_reset = ehci_endpoint_reset,
54
55 .hub_status_data = ehci_hub_status_data,
56 .hub_control = ehci_hub_control,
57 .bus_suspend = ehci_bus_suspend,
58 .bus_resume = ehci_bus_resume,
59
60 .relinquish_port = ehci_relinquish_port,
61 .port_handed_over = ehci_port_handed_over,
62
63 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
64};
65
Jingoo Han27362d42011-05-09 15:28:39 +090066static int __devinit s5p_ehci_probe(struct platform_device *pdev)
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090067{
68 struct s5p_ehci_platdata *pdata;
69 struct s5p_ehci_hcd *s5p_ehci;
70 struct usb_hcd *hcd;
71 struct ehci_hcd *ehci;
72 struct resource *res;
73 int irq;
74 int err;
75
76 pdata = pdev->dev.platform_data;
77 if (!pdata) {
78 dev_err(&pdev->dev, "No platform data defined\n");
79 return -EINVAL;
80 }
81
Jingoo Han9cb07562012-06-28 16:29:46 +090082 s5p_ehci = devm_kzalloc(&pdev->dev, sizeof(struct s5p_ehci_hcd),
83 GFP_KERNEL);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090084 if (!s5p_ehci)
85 return -ENOMEM;
86
87 s5p_ehci->dev = &pdev->dev;
88
89 hcd = usb_create_hcd(&s5p_ehci_hc_driver, &pdev->dev,
90 dev_name(&pdev->dev));
91 if (!hcd) {
92 dev_err(&pdev->dev, "Unable to create HCD\n");
Jingoo Han9cb07562012-06-28 16:29:46 +090093 return -ENOMEM;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090094 }
95
Yulgon Kime5d3d442011-08-18 14:02:45 +090096 s5p_ehci->hcd = hcd;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090097 s5p_ehci->clk = clk_get(&pdev->dev, "usbhost");
98
99 if (IS_ERR(s5p_ehci->clk)) {
100 dev_err(&pdev->dev, "Failed to get usbhost clock\n");
101 err = PTR_ERR(s5p_ehci->clk);
102 goto fail_clk;
103 }
104
105 err = clk_enable(s5p_ehci->clk);
106 if (err)
107 goto fail_clken;
108
109 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
110 if (!res) {
111 dev_err(&pdev->dev, "Failed to get I/O memory\n");
112 err = -ENXIO;
113 goto fail_io;
114 }
115
116 hcd->rsrc_start = res->start;
117 hcd->rsrc_len = resource_size(res);
Jingoo Han9cb07562012-06-28 16:29:46 +0900118 hcd->regs = devm_ioremap(&pdev->dev, res->start, hcd->rsrc_len);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900119 if (!hcd->regs) {
120 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
121 err = -ENOMEM;
122 goto fail_io;
123 }
124
125 irq = platform_get_irq(pdev, 0);
126 if (!irq) {
127 dev_err(&pdev->dev, "Failed to get IRQ\n");
128 err = -ENODEV;
Jingoo Han9cb07562012-06-28 16:29:46 +0900129 goto fail_io;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900130 }
131
132 if (pdata->phy_init)
133 pdata->phy_init(pdev, S5P_USB_PHY_HOST);
134
135 ehci = hcd_to_ehci(hcd);
136 ehci->caps = hcd->regs;
Jan Anderssonc4301312011-05-03 20:11:57 +0200137 ehci->regs = hcd->regs +
138 HC_LENGTH(ehci, readl(&ehci->caps->hc_capbase));
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900139
Jingoo Han88555a62012-03-05 10:40:14 +0900140 /* DMA burst Enable */
141 writel(EHCI_INSNREG00_ENABLE_DMA_BURST, EHCI_INSNREG00(hcd->regs));
142
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900143 dbg_hcs_params(ehci, "reset");
144 dbg_hcc_params(ehci, "reset");
145
146 /* cache this readonly data; minimize chip reads */
147 ehci->hcs_params = readl(&ehci->caps->hcs_params);
148
Geoff Levand876e0df2011-11-22 18:04:45 -0800149 ehci_reset(ehci);
150
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800151 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900152 if (err) {
153 dev_err(&pdev->dev, "Failed to add USB HCD\n");
Jingoo Han9cb07562012-06-28 16:29:46 +0900154 goto fail_io;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900155 }
156
157 platform_set_drvdata(pdev, s5p_ehci);
158
159 return 0;
160
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900161fail_io:
162 clk_disable(s5p_ehci->clk);
163fail_clken:
164 clk_put(s5p_ehci->clk);
165fail_clk:
166 usb_put_hcd(hcd);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900167 return err;
168}
169
Jingoo Han27362d42011-05-09 15:28:39 +0900170static int __devexit s5p_ehci_remove(struct platform_device *pdev)
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900171{
172 struct s5p_ehci_platdata *pdata = pdev->dev.platform_data;
173 struct s5p_ehci_hcd *s5p_ehci = platform_get_drvdata(pdev);
174 struct usb_hcd *hcd = s5p_ehci->hcd;
175
176 usb_remove_hcd(hcd);
177
178 if (pdata && pdata->phy_exit)
179 pdata->phy_exit(pdev, S5P_USB_PHY_HOST);
180
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900181 clk_disable(s5p_ehci->clk);
182 clk_put(s5p_ehci->clk);
183
184 usb_put_hcd(hcd);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900185
186 return 0;
187}
188
189static void s5p_ehci_shutdown(struct platform_device *pdev)
190{
191 struct s5p_ehci_hcd *s5p_ehci = platform_get_drvdata(pdev);
192 struct usb_hcd *hcd = s5p_ehci->hcd;
193
194 if (hcd->driver->shutdown)
195 hcd->driver->shutdown(hcd);
196}
197
Jingoo Han1acb30e2011-05-20 20:48:33 +0900198#ifdef CONFIG_PM
199static int s5p_ehci_suspend(struct device *dev)
200{
201 struct s5p_ehci_hcd *s5p_ehci = dev_get_drvdata(dev);
202 struct usb_hcd *hcd = s5p_ehci->hcd;
Alan Sternc5cf9212012-06-28 11:19:02 -0400203 bool do_wakeup = device_may_wakeup(dev);
Jingoo Han1acb30e2011-05-20 20:48:33 +0900204 struct platform_device *pdev = to_platform_device(dev);
205 struct s5p_ehci_platdata *pdata = pdev->dev.platform_data;
Alan Sternc5cf9212012-06-28 11:19:02 -0400206 int rc;
Jingoo Han1acb30e2011-05-20 20:48:33 +0900207
Alan Sternc5cf9212012-06-28 11:19:02 -0400208 rc = ehci_suspend(hcd, do_wakeup);
Jingoo Han1acb30e2011-05-20 20:48:33 +0900209
210 if (pdata && pdata->phy_exit)
211 pdata->phy_exit(pdev, S5P_USB_PHY_HOST);
212
Jingoo Han8b4fc8c2012-04-13 11:06:36 +0900213 clk_disable(s5p_ehci->clk);
214
Jingoo Han1acb30e2011-05-20 20:48:33 +0900215 return rc;
216}
217
218static int s5p_ehci_resume(struct device *dev)
219{
220 struct s5p_ehci_hcd *s5p_ehci = dev_get_drvdata(dev);
221 struct usb_hcd *hcd = s5p_ehci->hcd;
Jingoo Han1acb30e2011-05-20 20:48:33 +0900222 struct platform_device *pdev = to_platform_device(dev);
223 struct s5p_ehci_platdata *pdata = pdev->dev.platform_data;
224
Jingoo Han8b4fc8c2012-04-13 11:06:36 +0900225 clk_enable(s5p_ehci->clk);
226
Jingoo Han1acb30e2011-05-20 20:48:33 +0900227 if (pdata && pdata->phy_init)
228 pdata->phy_init(pdev, S5P_USB_PHY_HOST);
229
Jingoo Han88555a62012-03-05 10:40:14 +0900230 /* DMA burst Enable */
231 writel(EHCI_INSNREG00_ENABLE_DMA_BURST, EHCI_INSNREG00(hcd->regs));
232
Alan Sternc5cf9212012-06-28 11:19:02 -0400233 ehci_resume(hcd, false);
Jingoo Han1acb30e2011-05-20 20:48:33 +0900234 return 0;
235}
236#else
237#define s5p_ehci_suspend NULL
238#define s5p_ehci_resume NULL
239#endif
240
241static const struct dev_pm_ops s5p_ehci_pm_ops = {
242 .suspend = s5p_ehci_suspend,
243 .resume = s5p_ehci_resume,
244};
245
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900246static struct platform_driver s5p_ehci_driver = {
247 .probe = s5p_ehci_probe,
Jingoo Han27362d42011-05-09 15:28:39 +0900248 .remove = __devexit_p(s5p_ehci_remove),
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900249 .shutdown = s5p_ehci_shutdown,
250 .driver = {
251 .name = "s5p-ehci",
252 .owner = THIS_MODULE,
Jingoo Han1acb30e2011-05-20 20:48:33 +0900253 .pm = &s5p_ehci_pm_ops,
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900254 }
255};
256
257MODULE_ALIAS("platform:s5p-ehci");