diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-10-08 09:11:22 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-22 14:23:25 -0400 |
commit | 2be350fafe3fe09765026f41d250dc5d3f000b1a (patch) | |
tree | 3a247e7e37ec90dc7fc2aa3fd96a4c731e3a98a9 /arch/mips/alchemy/common | |
parent | 4534874a8720a361845dce47d310a98e9aac8aeb (diff) |
MIPS: Alchemy: use the ehci platform driver
Use the ehci platform driver power_{on,suspend,off} callbacks to perform the
USB block gate enabling/disabling as what the ehci-au1xxx.c driver does.
Update the db1200 and db1300 defconfigs to now select the EHCI platform
driver.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/mips/alchemy/common')
-rw-r--r-- | arch/mips/alchemy/common/platform.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/arch/mips/alchemy/common/platform.c b/arch/mips/alchemy/common/platform.c index c0f3ce6dcb56..b9a5f6dd30d6 100644 --- a/arch/mips/alchemy/common/platform.c +++ b/arch/mips/alchemy/common/platform.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/platform_device.h> | 17 | #include <linux/platform_device.h> |
18 | #include <linux/serial_8250.h> | 18 | #include <linux/serial_8250.h> |
19 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
20 | #include <linux/usb/ehci_pdriver.h> | ||
20 | 21 | ||
21 | #include <asm/mach-au1x00/au1000.h> | 22 | #include <asm/mach-au1x00/au1000.h> |
22 | #include <asm/mach-au1x00/au1xxx_dbdma.h> | 23 | #include <asm/mach-au1x00/au1xxx_dbdma.h> |
@@ -122,6 +123,25 @@ static void __init alchemy_setup_uarts(int ctype) | |||
122 | static u64 alchemy_ohci_dmamask = DMA_BIT_MASK(32); | 123 | static u64 alchemy_ohci_dmamask = DMA_BIT_MASK(32); |
123 | static u64 __maybe_unused alchemy_ehci_dmamask = DMA_BIT_MASK(32); | 124 | static u64 __maybe_unused alchemy_ehci_dmamask = DMA_BIT_MASK(32); |
124 | 125 | ||
126 | /* Power on callback for the ehci platform driver */ | ||
127 | static int alchemy_ehci_power_on(struct platform_device *pdev) | ||
128 | { | ||
129 | return alchemy_usb_control(ALCHEMY_USB_EHCI0, 1); | ||
130 | } | ||
131 | |||
132 | /* Power off/suspend callback for the ehci platform driver */ | ||
133 | static void alchemy_ehci_power_off(struct platform_device *pdev) | ||
134 | { | ||
135 | alchemy_usb_control(ALCHEMY_USB_EHCI0, 0); | ||
136 | } | ||
137 | |||
138 | static struct usb_ehci_pdata alchemy_ehci_pdata = { | ||
139 | .no_io_watchdog = 1, | ||
140 | .power_on = alchemy_ehci_power_on, | ||
141 | .power_off = alchemy_ehci_power_off, | ||
142 | .power_suspend = alchemy_ehci_power_off, | ||
143 | }; | ||
144 | |||
125 | static unsigned long alchemy_ohci_data[][2] __initdata = { | 145 | static unsigned long alchemy_ohci_data[][2] __initdata = { |
126 | [ALCHEMY_CPU_AU1000] = { AU1000_USB_OHCI_PHYS_ADDR, AU1000_USB_HOST_INT }, | 146 | [ALCHEMY_CPU_AU1000] = { AU1000_USB_OHCI_PHYS_ADDR, AU1000_USB_HOST_INT }, |
127 | [ALCHEMY_CPU_AU1500] = { AU1000_USB_OHCI_PHYS_ADDR, AU1500_USB_HOST_INT }, | 147 | [ALCHEMY_CPU_AU1500] = { AU1000_USB_OHCI_PHYS_ADDR, AU1500_USB_HOST_INT }, |
@@ -188,9 +208,10 @@ static void __init alchemy_setup_usb(int ctype) | |||
188 | res[1].start = alchemy_ehci_data[ctype][1]; | 208 | res[1].start = alchemy_ehci_data[ctype][1]; |
189 | res[1].end = res[1].start; | 209 | res[1].end = res[1].start; |
190 | res[1].flags = IORESOURCE_IRQ; | 210 | res[1].flags = IORESOURCE_IRQ; |
191 | pdev->name = "au1xxx-ehci"; | 211 | pdev->name = "ehci-platform"; |
192 | pdev->id = 0; | 212 | pdev->id = 0; |
193 | pdev->dev.dma_mask = &alchemy_ehci_dmamask; | 213 | pdev->dev.dma_mask = &alchemy_ehci_dmamask; |
214 | pdev->dev.platform_data = &alchemy_ehci_pdata; | ||
194 | 215 | ||
195 | if (platform_device_register(pdev)) | 216 | if (platform_device_register(pdev)) |
196 | printk(KERN_INFO "Alchemy USB: cannot add EHCI0\n"); | 217 | printk(KERN_INFO "Alchemy USB: cannot add EHCI0\n"); |