blob: 867a92390ef9571d622da3bfe8c74e19497b245a [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>
Vivek Gautam2c026e22012-07-16 11:25:37 +053016#include <linux/of.h>
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090017#include <linux/platform_device.h>
Vivek Gautamfd81d592012-07-17 10:10:50 +053018#include <linux/of_gpio.h>
Arnd Bergmann436d42c2012-08-24 15:22:12 +020019#include <linux/platform_data/usb-ehci-s5p.h>
Vivek Gautamd233c192013-01-22 18:30:42 +053020#include <linux/usb/phy.h>
Vivek Gautamb506eeb2013-01-22 18:30:40 +053021#include <linux/usb/samsung_usb_phy.h>
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090022#include <plat/usb-phy.h>
23
Jingoo Han88555a62012-03-05 10:40:14 +090024#define EHCI_INSNREG00(base) (base + 0x90)
25#define EHCI_INSNREG00_ENA_INCR16 (0x1 << 25)
26#define EHCI_INSNREG00_ENA_INCR8 (0x1 << 24)
27#define EHCI_INSNREG00_ENA_INCR4 (0x1 << 23)
28#define EHCI_INSNREG00_ENA_INCRX_ALIGN (0x1 << 22)
29#define EHCI_INSNREG00_ENABLE_DMA_BURST \
30 (EHCI_INSNREG00_ENA_INCR16 | EHCI_INSNREG00_ENA_INCR8 | \
31 EHCI_INSNREG00_ENA_INCR4 | EHCI_INSNREG00_ENA_INCRX_ALIGN)
32
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090033struct s5p_ehci_hcd {
34 struct device *dev;
35 struct usb_hcd *hcd;
36 struct clk *clk;
Vivek Gautamd233c192013-01-22 18:30:42 +053037 struct usb_phy *phy;
38 struct usb_otg *otg;
39 struct s5p_ehci_platdata *pdata;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090040};
41
42static const struct hc_driver s5p_ehci_hc_driver = {
43 .description = hcd_name,
44 .product_desc = "S5P EHCI Host Controller",
45 .hcd_priv_size = sizeof(struct ehci_hcd),
46
47 .irq = ehci_irq,
48 .flags = HCD_MEMORY | HCD_USB2,
49
Alan Stern1a49e2a2012-07-09 15:55:14 -040050 .reset = ehci_setup,
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +090051 .start = ehci_run,
52 .stop = ehci_stop,
53 .shutdown = ehci_shutdown,
54
55 .get_frame_number = ehci_get_frame,
56
57 .urb_enqueue = ehci_urb_enqueue,
58 .urb_dequeue = ehci_urb_dequeue,
59 .endpoint_disable = ehci_endpoint_disable,
60 .endpoint_reset = ehci_endpoint_reset,
61
62 .hub_status_data = ehci_hub_status_data,
63 .hub_control = ehci_hub_control,
64 .bus_suspend = ehci_bus_suspend,
65 .bus_resume = ehci_bus_resume,
66
67 .relinquish_port = ehci_relinquish_port,
68 .port_handed_over = ehci_port_handed_over,
69
70 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
71};
72
Vivek Gautamd233c192013-01-22 18:30:42 +053073static void s5p_ehci_phy_enable(struct s5p_ehci_hcd *s5p_ehci)
74{
75 struct platform_device *pdev = to_platform_device(s5p_ehci->dev);
76
77 if (s5p_ehci->phy)
78 usb_phy_init(s5p_ehci->phy);
79 else if (s5p_ehci->pdata->phy_init)
80 s5p_ehci->pdata->phy_init(pdev, USB_PHY_TYPE_HOST);
81}
82
83static void s5p_ehci_phy_disable(struct s5p_ehci_hcd *s5p_ehci)
84{
85 struct platform_device *pdev = to_platform_device(s5p_ehci->dev);
86
87 if (s5p_ehci->phy)
88 usb_phy_shutdown(s5p_ehci->phy);
89 else if (s5p_ehci->pdata->phy_exit)
90 s5p_ehci->pdata->phy_exit(pdev, USB_PHY_TYPE_HOST);
91}
92
Vivek Gautamfd81d592012-07-17 10:10:50 +053093static void s5p_setup_vbus_gpio(struct platform_device *pdev)
94{
95 int err;
96 int gpio;
97
98 if (!pdev->dev.of_node)
99 return;
100
101 gpio = of_get_named_gpio(pdev->dev.of_node,
102 "samsung,vbus-gpio", 0);
103 if (!gpio_is_valid(gpio))
104 return;
105
106 err = gpio_request_one(gpio, GPIOF_OUT_INIT_HIGH, "ehci_vbus_gpio");
107 if (err)
108 dev_err(&pdev->dev, "can't request ehci vbus gpio %d", gpio);
109}
110
Vivek Gautam2c026e22012-07-16 11:25:37 +0530111static u64 ehci_s5p_dma_mask = DMA_BIT_MASK(32);
112
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500113static int s5p_ehci_probe(struct platform_device *pdev)
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900114{
Vivek Gautamd233c192013-01-22 18:30:42 +0530115 struct s5p_ehci_platdata *pdata = pdev->dev.platform_data;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900116 struct s5p_ehci_hcd *s5p_ehci;
117 struct usb_hcd *hcd;
118 struct ehci_hcd *ehci;
119 struct resource *res;
Vivek Gautamd233c192013-01-22 18:30:42 +0530120 struct usb_phy *phy;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900121 int irq;
122 int err;
123
Vivek Gautam2c026e22012-07-16 11:25:37 +0530124 /*
125 * Right now device-tree probed devices don't get dma_mask set.
126 * Since shared usb code relies on it, set it here for now.
127 * Once we move to full device tree support this will vanish off.
128 */
129 if (!pdev->dev.dma_mask)
130 pdev->dev.dma_mask = &ehci_s5p_dma_mask;
131 if (!pdev->dev.coherent_dma_mask)
132 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
133
Vivek Gautamfd81d592012-07-17 10:10:50 +0530134 s5p_setup_vbus_gpio(pdev);
135
Jingoo Han9cb07562012-06-28 16:29:46 +0900136 s5p_ehci = devm_kzalloc(&pdev->dev, sizeof(struct s5p_ehci_hcd),
137 GFP_KERNEL);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900138 if (!s5p_ehci)
139 return -ENOMEM;
140
Vivek Gautamd233c192013-01-22 18:30:42 +0530141 phy = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2);
Felipe Balbia16283e2013-03-15 11:04:15 +0200142 if (IS_ERR(phy)) {
Vivek Gautamd233c192013-01-22 18:30:42 +0530143 /* Fallback to pdata */
144 if (!pdata) {
145 dev_warn(&pdev->dev, "no platform data or transceiver defined\n");
146 return -EPROBE_DEFER;
147 } else {
148 s5p_ehci->pdata = pdata;
149 }
150 } else {
151 s5p_ehci->phy = phy;
152 s5p_ehci->otg = phy->otg;
153 }
154
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900155 s5p_ehci->dev = &pdev->dev;
156
157 hcd = usb_create_hcd(&s5p_ehci_hc_driver, &pdev->dev,
158 dev_name(&pdev->dev));
159 if (!hcd) {
160 dev_err(&pdev->dev, "Unable to create HCD\n");
Jingoo Han9cb07562012-06-28 16:29:46 +0900161 return -ENOMEM;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900162 }
163
Yulgon Kime5d3d442011-08-18 14:02:45 +0900164 s5p_ehci->hcd = hcd;
Julia Lawall63fd0ae2012-07-30 16:43:44 +0200165 s5p_ehci->clk = devm_clk_get(&pdev->dev, "usbhost");
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900166
167 if (IS_ERR(s5p_ehci->clk)) {
168 dev_err(&pdev->dev, "Failed to get usbhost clock\n");
169 err = PTR_ERR(s5p_ehci->clk);
170 goto fail_clk;
171 }
172
Thomas Abrahame1deb562012-10-03 08:40:42 +0900173 err = clk_prepare_enable(s5p_ehci->clk);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900174 if (err)
Julia Lawall63fd0ae2012-07-30 16:43:44 +0200175 goto fail_clk;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900176
177 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
178 if (!res) {
179 dev_err(&pdev->dev, "Failed to get I/O memory\n");
180 err = -ENXIO;
181 goto fail_io;
182 }
183
184 hcd->rsrc_start = res->start;
185 hcd->rsrc_len = resource_size(res);
Jingoo Han9cb07562012-06-28 16:29:46 +0900186 hcd->regs = devm_ioremap(&pdev->dev, res->start, hcd->rsrc_len);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900187 if (!hcd->regs) {
188 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
189 err = -ENOMEM;
190 goto fail_io;
191 }
192
193 irq = platform_get_irq(pdev, 0);
194 if (!irq) {
195 dev_err(&pdev->dev, "Failed to get IRQ\n");
196 err = -ENODEV;
Jingoo Han9cb07562012-06-28 16:29:46 +0900197 goto fail_io;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900198 }
199
Vivek Gautamd233c192013-01-22 18:30:42 +0530200 if (s5p_ehci->otg)
201 s5p_ehci->otg->set_host(s5p_ehci->otg, &s5p_ehci->hcd->self);
202
203 s5p_ehci_phy_enable(s5p_ehci);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900204
205 ehci = hcd_to_ehci(hcd);
206 ehci->caps = hcd->regs;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900207
Jingoo Han88555a62012-03-05 10:40:14 +0900208 /* DMA burst Enable */
209 writel(EHCI_INSNREG00_ENABLE_DMA_BURST, EHCI_INSNREG00(hcd->regs));
210
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800211 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900212 if (err) {
213 dev_err(&pdev->dev, "Failed to add USB HCD\n");
Vivek Gautamd233c192013-01-22 18:30:42 +0530214 goto fail_add_hcd;
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900215 }
216
217 platform_set_drvdata(pdev, s5p_ehci);
218
219 return 0;
220
Vivek Gautamd233c192013-01-22 18:30:42 +0530221fail_add_hcd:
222 s5p_ehci_phy_disable(s5p_ehci);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900223fail_io:
Thomas Abrahame1deb562012-10-03 08:40:42 +0900224 clk_disable_unprepare(s5p_ehci->clk);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900225fail_clk:
226 usb_put_hcd(hcd);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900227 return err;
228}
229
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500230static int s5p_ehci_remove(struct platform_device *pdev)
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900231{
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900232 struct s5p_ehci_hcd *s5p_ehci = platform_get_drvdata(pdev);
233 struct usb_hcd *hcd = s5p_ehci->hcd;
234
235 usb_remove_hcd(hcd);
236
Vivek Gautamd233c192013-01-22 18:30:42 +0530237 if (s5p_ehci->otg)
238 s5p_ehci->otg->set_host(s5p_ehci->otg, &s5p_ehci->hcd->self);
239
240 s5p_ehci_phy_disable(s5p_ehci);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900241
Thomas Abrahame1deb562012-10-03 08:40:42 +0900242 clk_disable_unprepare(s5p_ehci->clk);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900243
244 usb_put_hcd(hcd);
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900245
246 return 0;
247}
248
249static void s5p_ehci_shutdown(struct platform_device *pdev)
250{
251 struct s5p_ehci_hcd *s5p_ehci = platform_get_drvdata(pdev);
252 struct usb_hcd *hcd = s5p_ehci->hcd;
253
254 if (hcd->driver->shutdown)
255 hcd->driver->shutdown(hcd);
256}
257
Jingoo Han1acb30e2011-05-20 20:48:33 +0900258#ifdef CONFIG_PM
259static int s5p_ehci_suspend(struct device *dev)
260{
261 struct s5p_ehci_hcd *s5p_ehci = dev_get_drvdata(dev);
262 struct usb_hcd *hcd = s5p_ehci->hcd;
Alan Sternc5cf9212012-06-28 11:19:02 -0400263 bool do_wakeup = device_may_wakeup(dev);
Alan Sternc5cf9212012-06-28 11:19:02 -0400264 int rc;
Jingoo Han1acb30e2011-05-20 20:48:33 +0900265
Alan Sternc5cf9212012-06-28 11:19:02 -0400266 rc = ehci_suspend(hcd, do_wakeup);
Jingoo Han1acb30e2011-05-20 20:48:33 +0900267
Vivek Gautamd233c192013-01-22 18:30:42 +0530268 if (s5p_ehci->otg)
269 s5p_ehci->otg->set_host(s5p_ehci->otg, &s5p_ehci->hcd->self);
270
271 s5p_ehci_phy_disable(s5p_ehci);
Jingoo Han1acb30e2011-05-20 20:48:33 +0900272
Thomas Abrahame1deb562012-10-03 08:40:42 +0900273 clk_disable_unprepare(s5p_ehci->clk);
Jingoo Han8b4fc8c2012-04-13 11:06:36 +0900274
Jingoo Han1acb30e2011-05-20 20:48:33 +0900275 return rc;
276}
277
278static int s5p_ehci_resume(struct device *dev)
279{
280 struct s5p_ehci_hcd *s5p_ehci = dev_get_drvdata(dev);
281 struct usb_hcd *hcd = s5p_ehci->hcd;
Jingoo Han1acb30e2011-05-20 20:48:33 +0900282
Thomas Abrahame1deb562012-10-03 08:40:42 +0900283 clk_prepare_enable(s5p_ehci->clk);
Jingoo Han8b4fc8c2012-04-13 11:06:36 +0900284
Vivek Gautamd233c192013-01-22 18:30:42 +0530285 if (s5p_ehci->otg)
286 s5p_ehci->otg->set_host(s5p_ehci->otg, &s5p_ehci->hcd->self);
287
288 s5p_ehci_phy_enable(s5p_ehci);
Jingoo Han1acb30e2011-05-20 20:48:33 +0900289
Jingoo Han88555a62012-03-05 10:40:14 +0900290 /* DMA burst Enable */
291 writel(EHCI_INSNREG00_ENABLE_DMA_BURST, EHCI_INSNREG00(hcd->regs));
292
Alan Sternc5cf9212012-06-28 11:19:02 -0400293 ehci_resume(hcd, false);
Jingoo Han1acb30e2011-05-20 20:48:33 +0900294 return 0;
295}
296#else
297#define s5p_ehci_suspend NULL
298#define s5p_ehci_resume NULL
299#endif
300
301static const struct dev_pm_ops s5p_ehci_pm_ops = {
302 .suspend = s5p_ehci_suspend,
303 .resume = s5p_ehci_resume,
304};
305
Vivek Gautam2c026e22012-07-16 11:25:37 +0530306#ifdef CONFIG_OF
307static const struct of_device_id exynos_ehci_match[] = {
Vivek Gautam6e247772013-01-24 19:15:29 +0530308 { .compatible = "samsung,exynos4210-ehci" },
Vivek Gautam2c026e22012-07-16 11:25:37 +0530309 {},
310};
311MODULE_DEVICE_TABLE(of, exynos_ehci_match);
312#endif
313
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900314static struct platform_driver s5p_ehci_driver = {
315 .probe = s5p_ehci_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500316 .remove = s5p_ehci_remove,
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900317 .shutdown = s5p_ehci_shutdown,
318 .driver = {
319 .name = "s5p-ehci",
320 .owner = THIS_MODULE,
Jingoo Han1acb30e2011-05-20 20:48:33 +0900321 .pm = &s5p_ehci_pm_ops,
Vivek Gautam2c026e22012-07-16 11:25:37 +0530322 .of_match_table = of_match_ptr(exynos_ehci_match),
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900323 }
324};
325
326MODULE_ALIAS("platform:s5p-ehci");