2 * EHCI HCD (Host Controller Driver) for USB.
4 * (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
6 * Bus Glue for AMD Alchemy Au1xxx
8 * Based on "ohci-au1xxx.c" by Matt Porter <mporter@kernel.crashing.org>
10 * Modified for AMD Alchemy Au1200 EHC
11 * by K.Boge <karsten.boge@amd.com>
13 * This file is licenced under the GPL.
16 #include <linux/platform_device.h>
17 #include <asm/mach-au1x00/au1000.h>
19 #define USB_HOST_CONFIG (USB_MSR_BASE + USB_MSR_MCFG)
20 #define USB_MCFG_PFEN (1<<31)
21 #define USB_MCFG_RDCOMB (1<<30)
22 #define USB_MCFG_SSDEN (1<<23)
23 #define USB_MCFG_PHYPLLEN (1<<19)
24 #define USB_MCFG_EHCCLKEN (1<<17)
25 #define USB_MCFG_UCAM (1<<7)
26 #define USB_MCFG_EBMEN (1<<3)
27 #define USB_MCFG_EMEMEN (1<<2)
29 #define USBH_ENABLE_CE (USB_MCFG_PHYPLLEN | USB_MCFG_EHCCLKEN)
31 #ifdef CONFIG_DMA_COHERENT
32 #define USBH_ENABLE_INIT (USBH_ENABLE_CE \
33 | USB_MCFG_PFEN | USB_MCFG_RDCOMB \
34 | USB_MCFG_SSDEN | USB_MCFG_UCAM \
35 | USB_MCFG_EBMEN | USB_MCFG_EMEMEN)
37 #define USBH_ENABLE_INIT (USBH_ENABLE_CE \
38 | USB_MCFG_PFEN | USB_MCFG_RDCOMB \
40 | USB_MCFG_EBMEN | USB_MCFG_EMEMEN)
42 #define USBH_DISABLE (USB_MCFG_EBMEN | USB_MCFG_EMEMEN)
44 extern int usb_disabled(void);
46 /*-------------------------------------------------------------------------*/
48 static void au1xxx_start_ehc(struct platform_device
*dev
)
50 pr_debug(__FILE__
": starting Au1xxx EHCI USB Controller\n");
52 /* write HW defaults again in case Yamon cleared them */
53 if (au_readl(USB_HOST_CONFIG
) == 0) {
54 au_writel(0x00d02000, USB_HOST_CONFIG
);
55 au_readl(USB_HOST_CONFIG
);
58 /* enable host controller */
59 au_writel(USBH_ENABLE_CE
| au_readl(USB_HOST_CONFIG
), USB_HOST_CONFIG
);
60 au_readl(USB_HOST_CONFIG
);
62 au_writel(USBH_ENABLE_INIT
| au_readl(USB_HOST_CONFIG
),
64 au_readl(USB_HOST_CONFIG
);
67 pr_debug(__FILE__
": Clock to USB host has been enabled\n");
70 static void au1xxx_stop_ehc(struct platform_device
*dev
)
72 pr_debug(__FILE__
": stopping Au1xxx EHCI USB Controller\n");
75 au_writel(~USBH_DISABLE
& au_readl(USB_HOST_CONFIG
), USB_HOST_CONFIG
);
78 au_writel(~USB_MCFG_EHCCLKEN
& au_readl(USB_HOST_CONFIG
),
80 au_readl(USB_HOST_CONFIG
);
83 /*-------------------------------------------------------------------------*/
85 /* configure so an HC device and id are always provided */
86 /* always called with process context; sleeping is OK */
89 * usb_ehci_au1xxx_probe - initialize Au1xxx-based HCDs
90 * Context: !in_interrupt()
92 * Allocates basic resources for this USB host controller, and
93 * then invokes the start() method for the HCD associated with it
94 * through the hotplug entry's driver_data.
97 int usb_ehci_au1xxx_probe(const struct hc_driver
*driver
,
98 struct usb_hcd
**hcd_out
, struct platform_device
*dev
)
102 struct ehci_hcd
*ehci
;
104 #if defined(CONFIG_SOC_AU1200) && defined(CONFIG_DMA_COHERENT)
106 /* Au1200 AB USB does not support coherent memory */
107 if (!(read_c0_prid() & 0xff)) {
108 pr_info("%s: this is chip revision AB!\n", dev
->name
);
109 pr_info("%s: update your board or re-configure the kernel\n",
115 au1xxx_start_ehc(dev
);
117 if (dev
->resource
[1].flags
!= IORESOURCE_IRQ
) {
118 pr_debug("resource[1] is not IORESOURCE_IRQ");
121 hcd
= usb_create_hcd(driver
, &dev
->dev
, "Au1xxx");
124 hcd
->rsrc_start
= dev
->resource
[0].start
;
125 hcd
->rsrc_len
= dev
->resource
[0].end
- dev
->resource
[0].start
+ 1;
127 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
128 pr_debug("request_mem_region failed");
133 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
135 pr_debug("ioremap failed");
140 ehci
= hcd_to_ehci(hcd
);
141 ehci
->caps
= hcd
->regs
;
142 ehci
->regs
= hcd
->regs
+ HC_LENGTH(readl(&ehci
->caps
->hc_capbase
));
143 /* cache this readonly data; minimize chip reads */
144 ehci
->hcs_params
= readl(&ehci
->caps
->hcs_params
);
146 /* ehci_hcd_init(hcd_to_ehci(hcd)); */
149 usb_add_hcd(hcd
, dev
->resource
[1].start
, IRQF_DISABLED
| IRQF_SHARED
);
153 au1xxx_stop_ehc(dev
);
156 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
162 /* may be called without controller electrically present */
163 /* may be called with controller, bus, and devices active */
166 * usb_ehci_hcd_au1xxx_remove - shutdown processing for Au1xxx-based HCDs
167 * @dev: USB Host Controller being removed
168 * Context: !in_interrupt()
170 * Reverses the effect of usb_ehci_hcd_au1xxx_probe(), first invoking
171 * the HCD's stop() method. It is always called from a thread
172 * context, normally "rmmod", "apmd", or something similar.
175 void usb_ehci_au1xxx_remove(struct usb_hcd
*hcd
, struct platform_device
*dev
)
179 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
181 au1xxx_stop_ehc(dev
);
184 /*-------------------------------------------------------------------------*/
186 static const struct hc_driver ehci_au1xxx_hc_driver
= {
187 .description
= hcd_name
,
188 .product_desc
= "Au1xxx EHCI",
189 .hcd_priv_size
= sizeof(struct ehci_hcd
),
192 * generic hardware linkage
195 .flags
= HCD_MEMORY
| HCD_USB2
,
198 * basic lifecycle operations
203 .shutdown
= ehci_shutdown
,
206 * managing i/o requests and associated device resources
208 .urb_enqueue
= ehci_urb_enqueue
,
209 .urb_dequeue
= ehci_urb_dequeue
,
210 .endpoint_disable
= ehci_endpoint_disable
,
215 .get_frame_number
= ehci_get_frame
,
220 .hub_status_data
= ehci_hub_status_data
,
221 .hub_control
= ehci_hub_control
,
223 .hub_suspend
= ehci_hub_suspend
,
224 .hub_resume
= ehci_hub_resume
,
228 /*-------------------------------------------------------------------------*/
230 static int ehci_hcd_au1xxx_drv_probe(struct platform_device
*pdev
)
232 struct usb_hcd
*hcd
= NULL
;
235 pr_debug("In ehci_hcd_au1xxx_drv_probe\n");
240 ret
= usb_ehci_au1xxx_probe(&ehci_au1xxx_hc_driver
, &hcd
, pdev
);
244 static int ehci_hcd_au1xxx_drv_remove(struct platform_device
*pdev
)
246 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
248 usb_ehci_au1xxx_remove(hcd
, pdev
);
253 /*static int ehci_hcd_au1xxx_drv_suspend(struct device *dev)
255 struct platform_device *pdev = to_platform_device(dev);
256 struct usb_hcd *hcd = dev_get_drvdata(dev);
260 static int ehci_hcd_au1xxx_drv_resume(struct device *dev)
262 struct platform_device *pdev = to_platform_device(dev);
263 struct usb_hcd *hcd = dev_get_drvdata(dev);
268 MODULE_ALIAS("au1xxx-ehci");
269 static struct platform_driver ehci_hcd_au1xxx_driver
= {
270 .probe
= ehci_hcd_au1xxx_drv_probe
,
271 .remove
= ehci_hcd_au1xxx_drv_remove
,
272 .shutdown
= usb_hcd_platform_shutdown
,
273 /*.suspend = ehci_hcd_au1xxx_drv_suspend, */
274 /*.resume = ehci_hcd_au1xxx_drv_resume, */
276 .name
= "au1xxx-ehci",
277 .bus
= &platform_bus_type