1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2020, Broadcom */
5 #include <linux/dma-mapping.h>
7 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/platform_device.h>
11 #include <linux/usb.h>
12 #include <linux/usb/hcd.h>
13 #include <linux/iopoll.h>
17 #define hcd_to_ehci_priv(h) ((struct brcm_priv *)hcd_to_ehci(h)->priv)
24 * ehci_brcm_wait_for_sof
25 * Wait for start of next microframe, then wait extra delay microseconds
27 static inline void ehci_brcm_wait_for_sof(struct ehci_hcd
*ehci
, u32 delay
)
29 u32 frame_idx
= ehci_readl(ehci
, &ehci
->regs
->frame_index
);
33 /* Wait for next microframe (every 125 usecs) */
34 res
= readl_relaxed_poll_timeout(&ehci
->regs
->frame_index
, val
,
35 val
!= frame_idx
, 1, 130);
37 ehci_err(ehci
, "Error waiting for SOF\n");
42 * ehci_brcm_hub_control
43 * The EHCI controller has a bug where it can violate the SOF
44 * interval between the first two SOF's transmitted after resume
45 * if the resume occurs near the end of the microframe. This causees
46 * the controller to detect babble on the suspended port and
47 * will eventually cause the controller to reset the port.
48 * The fix is to Intercept the echi-hcd request to complete RESUME and
49 * align it to the start of the next microframe.
50 * See SWLINUX-1909 for more details
52 static int ehci_brcm_hub_control(
60 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
61 int ports
= HCS_N_PORTS(ehci
->hcs_params
);
62 u32 __iomem
*status_reg
;
64 int retval
, irq_disabled
= 0;
66 status_reg
= &ehci
->regs
->port_status
[(wIndex
& 0xff) - 1];
69 * RESUME is cleared when GetPortStatus() is called 20ms after start
72 if ((typeReq
== GetPortStatus
) &&
73 (wIndex
&& wIndex
<= ports
) &&
74 ehci
->reset_done
[wIndex
-1] &&
75 time_after_eq(jiffies
, ehci
->reset_done
[wIndex
-1]) &&
76 (ehci_readl(ehci
, status_reg
) & PORT_RESUME
)) {
79 * to make sure we are not interrupted until RESUME bit
80 * is cleared, disable interrupts on current CPU
82 ehci_dbg(ehci
, "SOF alignment workaround\n");
84 local_irq_save(flags
);
85 ehci_brcm_wait_for_sof(ehci
, 5);
87 retval
= ehci_hub_control(hcd
, typeReq
, wValue
, wIndex
, buf
, wLength
);
89 local_irq_restore(flags
);
93 static int ehci_brcm_reset(struct usb_hcd
*hcd
)
95 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
98 ehci
->big_endian_mmio
= 1;
100 ehci
->caps
= (void __iomem
*)hcd
->regs
;
101 len
= HC_LENGTH(ehci
, ehci_readl(ehci
, &ehci
->caps
->hc_capbase
));
102 ehci
->regs
= (void __iomem
*)(hcd
->regs
+ len
);
104 /* This fixes the lockup during reboot due to prior interrupts */
105 ehci_writel(ehci
, CMD_RESET
, &ehci
->regs
->command
);
109 * SWLINUX-1705: Avoid OUT packet underflows during high memory
111 * port_status[0x0f] = Broadcom-proprietary USB_EHCI_INSNREG00 @ 0x90
113 ehci_writel(ehci
, 0x00800040, &ehci
->regs
->port_status
[0x10]);
114 ehci_writel(ehci
, 0x00000001, &ehci
->regs
->port_status
[0x12]);
116 return ehci_setup(hcd
);
119 static struct hc_driver __read_mostly ehci_brcm_hc_driver
;
121 static const struct ehci_driver_overrides brcm_overrides __initconst
= {
122 .reset
= ehci_brcm_reset
,
123 .extra_priv_size
= sizeof(struct brcm_priv
),
126 static int ehci_brcm_probe(struct platform_device
*pdev
)
128 struct device
*dev
= &pdev
->dev
;
129 struct resource
*res_mem
;
130 struct brcm_priv
*priv
;
135 err
= dma_set_mask_and_coherent(dev
, DMA_BIT_MASK(32));
139 irq
= platform_get_irq(pdev
, 0);
141 return irq
? irq
: -EINVAL
;
143 /* Hook the hub control routine to work around a bug */
144 ehci_brcm_hc_driver
.hub_control
= ehci_brcm_hub_control
;
147 hcd
= usb_create_hcd(&ehci_brcm_hc_driver
, dev
, dev_name(dev
));
151 platform_set_drvdata(pdev
, hcd
);
152 priv
= hcd_to_ehci_priv(hcd
);
154 priv
->clk
= devm_clk_get_optional(dev
, NULL
);
155 if (IS_ERR(priv
->clk
)) {
156 err
= PTR_ERR(priv
->clk
);
160 err
= clk_prepare_enable(priv
->clk
);
164 hcd
->regs
= devm_platform_get_and_ioremap_resource(pdev
, 0, &res_mem
);
165 if (IS_ERR(hcd
->regs
)) {
166 err
= PTR_ERR(hcd
->regs
);
169 hcd
->rsrc_start
= res_mem
->start
;
170 hcd
->rsrc_len
= resource_size(res_mem
);
171 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
175 device_wakeup_enable(hcd
->self
.controller
);
176 device_enable_async_suspend(hcd
->self
.controller
);
181 clk_disable_unprepare(priv
->clk
);
188 static int ehci_brcm_remove(struct platform_device
*dev
)
190 struct usb_hcd
*hcd
= platform_get_drvdata(dev
);
191 struct brcm_priv
*priv
= hcd_to_ehci_priv(hcd
);
194 clk_disable_unprepare(priv
->clk
);
199 static int __maybe_unused
ehci_brcm_suspend(struct device
*dev
)
202 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
203 struct brcm_priv
*priv
= hcd_to_ehci_priv(hcd
);
204 bool do_wakeup
= device_may_wakeup(dev
);
206 ret
= ehci_suspend(hcd
, do_wakeup
);
209 clk_disable_unprepare(priv
->clk
);
213 static int __maybe_unused
ehci_brcm_resume(struct device
*dev
)
215 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
216 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
217 struct brcm_priv
*priv
= hcd_to_ehci_priv(hcd
);
220 err
= clk_prepare_enable(priv
->clk
);
224 * SWLINUX-1705: Avoid OUT packet underflows during high memory
226 * port_status[0x0f] = Broadcom-proprietary USB_EHCI_INSNREG00
229 ehci_writel(ehci
, 0x00800040, &ehci
->regs
->port_status
[0x10]);
230 ehci_writel(ehci
, 0x00000001, &ehci
->regs
->port_status
[0x12]);
232 ehci_resume(hcd
, false);
234 pm_runtime_disable(dev
);
235 pm_runtime_set_active(dev
);
236 pm_runtime_enable(dev
);
241 static SIMPLE_DEV_PM_OPS(ehci_brcm_pm_ops
, ehci_brcm_suspend
,
244 static const struct of_device_id brcm_ehci_of_match
[] = {
245 { .compatible
= "brcm,ehci-brcm-v2", },
246 { .compatible
= "brcm,bcm7445-ehci", },
250 static struct platform_driver ehci_brcm_driver
= {
251 .probe
= ehci_brcm_probe
,
252 .remove
= ehci_brcm_remove
,
253 .shutdown
= usb_hcd_platform_shutdown
,
256 .pm
= &ehci_brcm_pm_ops
,
257 .of_match_table
= brcm_ehci_of_match
,
261 static int __init
ehci_brcm_init(void)
266 ehci_init_driver(&ehci_brcm_hc_driver
, &brcm_overrides
);
267 return platform_driver_register(&ehci_brcm_driver
);
269 module_init(ehci_brcm_init
);
271 static void __exit
ehci_brcm_exit(void)
273 platform_driver_unregister(&ehci_brcm_driver
);
275 module_exit(ehci_brcm_exit
);
277 MODULE_ALIAS("platform:ehci-brcm");
278 MODULE_DESCRIPTION("EHCI Broadcom STB driver");
279 MODULE_AUTHOR("Al Cooper");
280 MODULE_LICENSE("GPL");