2 * SAMSUNG S5P USB HOST EHCI Controller
4 * Copyright (C) 2011 Samsung Electronics Co.Ltd
5 * Author: Jingoo Han <jg1.han@samsung.com>
6 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
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.
15 #include <linux/clk.h>
16 #include <linux/platform_device.h>
17 #include <plat/ehci.h>
18 #include <plat/usb-phy.h>
26 static const struct hc_driver s5p_ehci_hc_driver
= {
27 .description
= hcd_name
,
28 .product_desc
= "S5P EHCI Host Controller",
29 .hcd_priv_size
= sizeof(struct ehci_hcd
),
32 .flags
= HCD_MEMORY
| HCD_USB2
,
37 .shutdown
= ehci_shutdown
,
39 .get_frame_number
= ehci_get_frame
,
41 .urb_enqueue
= ehci_urb_enqueue
,
42 .urb_dequeue
= ehci_urb_dequeue
,
43 .endpoint_disable
= ehci_endpoint_disable
,
44 .endpoint_reset
= ehci_endpoint_reset
,
46 .hub_status_data
= ehci_hub_status_data
,
47 .hub_control
= ehci_hub_control
,
48 .bus_suspend
= ehci_bus_suspend
,
49 .bus_resume
= ehci_bus_resume
,
51 .relinquish_port
= ehci_relinquish_port
,
52 .port_handed_over
= ehci_port_handed_over
,
54 .clear_tt_buffer_complete
= ehci_clear_tt_buffer_complete
,
57 static int __devinit
s5p_ehci_probe(struct platform_device
*pdev
)
59 struct s5p_ehci_platdata
*pdata
;
60 struct s5p_ehci_hcd
*s5p_ehci
;
62 struct ehci_hcd
*ehci
;
67 pdata
= pdev
->dev
.platform_data
;
69 dev_err(&pdev
->dev
, "No platform data defined\n");
73 s5p_ehci
= kzalloc(sizeof(struct s5p_ehci_hcd
), GFP_KERNEL
);
77 s5p_ehci
->dev
= &pdev
->dev
;
79 hcd
= usb_create_hcd(&s5p_ehci_hc_driver
, &pdev
->dev
,
80 dev_name(&pdev
->dev
));
82 dev_err(&pdev
->dev
, "Unable to create HCD\n");
88 s5p_ehci
->clk
= clk_get(&pdev
->dev
, "usbhost");
90 if (IS_ERR(s5p_ehci
->clk
)) {
91 dev_err(&pdev
->dev
, "Failed to get usbhost clock\n");
92 err
= PTR_ERR(s5p_ehci
->clk
);
96 err
= clk_enable(s5p_ehci
->clk
);
100 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
102 dev_err(&pdev
->dev
, "Failed to get I/O memory\n");
107 hcd
->rsrc_start
= res
->start
;
108 hcd
->rsrc_len
= resource_size(res
);
109 hcd
->regs
= ioremap(res
->start
, resource_size(res
));
111 dev_err(&pdev
->dev
, "Failed to remap I/O memory\n");
116 irq
= platform_get_irq(pdev
, 0);
118 dev_err(&pdev
->dev
, "Failed to get IRQ\n");
124 pdata
->phy_init(pdev
, S5P_USB_PHY_HOST
);
126 ehci
= hcd_to_ehci(hcd
);
127 ehci
->caps
= hcd
->regs
;
128 ehci
->regs
= hcd
->regs
+
129 HC_LENGTH(ehci
, readl(&ehci
->caps
->hc_capbase
));
131 dbg_hcs_params(ehci
, "reset");
132 dbg_hcc_params(ehci
, "reset");
134 /* cache this readonly data; minimize chip reads */
135 ehci
->hcs_params
= readl(&ehci
->caps
->hcs_params
);
137 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
139 dev_err(&pdev
->dev
, "Failed to add USB HCD\n");
143 platform_set_drvdata(pdev
, s5p_ehci
);
150 clk_disable(s5p_ehci
->clk
);
152 clk_put(s5p_ehci
->clk
);
160 static int __devexit
s5p_ehci_remove(struct platform_device
*pdev
)
162 struct s5p_ehci_platdata
*pdata
= pdev
->dev
.platform_data
;
163 struct s5p_ehci_hcd
*s5p_ehci
= platform_get_drvdata(pdev
);
164 struct usb_hcd
*hcd
= s5p_ehci
->hcd
;
168 if (pdata
&& pdata
->phy_exit
)
169 pdata
->phy_exit(pdev
, S5P_USB_PHY_HOST
);
173 clk_disable(s5p_ehci
->clk
);
174 clk_put(s5p_ehci
->clk
);
182 static void s5p_ehci_shutdown(struct platform_device
*pdev
)
184 struct s5p_ehci_hcd
*s5p_ehci
= platform_get_drvdata(pdev
);
185 struct usb_hcd
*hcd
= s5p_ehci
->hcd
;
187 if (hcd
->driver
->shutdown
)
188 hcd
->driver
->shutdown(hcd
);
192 static int s5p_ehci_suspend(struct device
*dev
)
194 struct s5p_ehci_hcd
*s5p_ehci
= dev_get_drvdata(dev
);
195 struct usb_hcd
*hcd
= s5p_ehci
->hcd
;
196 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
197 struct platform_device
*pdev
= to_platform_device(dev
);
198 struct s5p_ehci_platdata
*pdata
= pdev
->dev
.platform_data
;
202 if (time_before(jiffies
, ehci
->next_statechange
))
206 * Root hub was already suspended. Disable irq emission and
207 * mark HW unaccessible. The PM and USB cores make sure that
208 * the root hub is either suspended or stopped.
210 ehci_prepare_ports_for_controller_suspend(ehci
, device_may_wakeup(dev
));
211 spin_lock_irqsave(&ehci
->lock
, flags
);
212 ehci_writel(ehci
, 0, &ehci
->regs
->intr_enable
);
213 (void)ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
215 clear_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
216 spin_unlock_irqrestore(&ehci
->lock
, flags
);
218 if (pdata
&& pdata
->phy_exit
)
219 pdata
->phy_exit(pdev
, S5P_USB_PHY_HOST
);
224 static int s5p_ehci_resume(struct device
*dev
)
226 struct s5p_ehci_hcd
*s5p_ehci
= dev_get_drvdata(dev
);
227 struct usb_hcd
*hcd
= s5p_ehci
->hcd
;
228 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
229 struct platform_device
*pdev
= to_platform_device(dev
);
230 struct s5p_ehci_platdata
*pdata
= pdev
->dev
.platform_data
;
232 if (pdata
&& pdata
->phy_init
)
233 pdata
->phy_init(pdev
, S5P_USB_PHY_HOST
);
235 if (time_before(jiffies
, ehci
->next_statechange
))
238 /* Mark hardware accessible again as we are out of D3 state by now */
239 set_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
241 if (ehci_readl(ehci
, &ehci
->regs
->configured_flag
) == FLAG_CF
) {
242 int mask
= INTR_MASK
;
244 ehci_prepare_ports_for_controller_resume(ehci
);
245 if (!hcd
->self
.root_hub
->do_remote_wakeup
)
247 ehci_writel(ehci
, mask
, &ehci
->regs
->intr_enable
);
248 ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
252 usb_root_hub_lost_power(hcd
->self
.root_hub
);
254 (void) ehci_halt(ehci
);
255 (void) ehci_reset(ehci
);
257 /* emptying the schedule aborts any urbs */
258 spin_lock_irq(&ehci
->lock
);
260 end_unlink_async(ehci
);
262 spin_unlock_irq(&ehci
->lock
);
264 ehci_writel(ehci
, ehci
->command
, &ehci
->regs
->command
);
265 ehci_writel(ehci
, FLAG_CF
, &ehci
->regs
->configured_flag
);
266 ehci_readl(ehci
, &ehci
->regs
->command
); /* unblock posted writes */
268 /* here we "know" root ports should always stay powered */
269 ehci_port_power(ehci
, 1);
271 ehci
->rh_state
= EHCI_RH_SUSPENDED
;
276 #define s5p_ehci_suspend NULL
277 #define s5p_ehci_resume NULL
280 static const struct dev_pm_ops s5p_ehci_pm_ops
= {
281 .suspend
= s5p_ehci_suspend
,
282 .resume
= s5p_ehci_resume
,
285 static struct platform_driver s5p_ehci_driver
= {
286 .probe
= s5p_ehci_probe
,
287 .remove
= __devexit_p(s5p_ehci_remove
),
288 .shutdown
= s5p_ehci_shutdown
,
291 .owner
= THIS_MODULE
,
292 .pm
= &s5p_ehci_pm_ops
,
296 MODULE_ALIAS("platform:s5p-ehci");