llc2: Remove dead code for state machine
[linux/fpc-iii.git] / arch / mips / ath79 / dev-usb.c
blobb2a2311ec85b492d1dbbbd22df5a57db0ba978c4
1 /*
2 * Atheros AR7XXX/AR9XXX USB Host Controller device
4 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * Parts of this file are based on Atheros' 2.6.15 BSP
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/irq.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/platform_device.h>
20 #include <linux/usb/ehci_pdriver.h>
21 #include <linux/usb/ohci_pdriver.h>
23 #include <asm/mach-ath79/ath79.h>
24 #include <asm/mach-ath79/ar71xx_regs.h>
25 #include "common.h"
26 #include "dev-usb.h"
28 static struct resource ath79_ohci_resources[] = {
29 [0] = {
30 /* .start and .end fields are filled dynamically */
31 .flags = IORESOURCE_MEM,
33 [1] = {
34 .start = ATH79_MISC_IRQ_OHCI,
35 .end = ATH79_MISC_IRQ_OHCI,
36 .flags = IORESOURCE_IRQ,
40 static u64 ath79_ohci_dmamask = DMA_BIT_MASK(32);
42 static struct usb_ohci_pdata ath79_ohci_pdata = {
45 static struct platform_device ath79_ohci_device = {
46 .name = "ohci-platform",
47 .id = -1,
48 .resource = ath79_ohci_resources,
49 .num_resources = ARRAY_SIZE(ath79_ohci_resources),
50 .dev = {
51 .dma_mask = &ath79_ohci_dmamask,
52 .coherent_dma_mask = DMA_BIT_MASK(32),
53 .platform_data = &ath79_ohci_pdata,
57 static struct resource ath79_ehci_resources[] = {
58 [0] = {
59 /* .start and .end fields are filled dynamically */
60 .flags = IORESOURCE_MEM,
62 [1] = {
63 .start = ATH79_CPU_IRQ_USB,
64 .end = ATH79_CPU_IRQ_USB,
65 .flags = IORESOURCE_IRQ,
69 static u64 ath79_ehci_dmamask = DMA_BIT_MASK(32);
71 static struct usb_ehci_pdata ath79_ehci_pdata_v1 = {
72 .has_synopsys_hc_bug = 1,
73 .port_power_off = 1,
76 static struct usb_ehci_pdata ath79_ehci_pdata_v2 = {
77 .caps_offset = 0x100,
78 .has_tt = 1,
79 .port_power_off = 1,
82 static struct platform_device ath79_ehci_device = {
83 .name = "ehci-platform",
84 .id = -1,
85 .resource = ath79_ehci_resources,
86 .num_resources = ARRAY_SIZE(ath79_ehci_resources),
87 .dev = {
88 .dma_mask = &ath79_ehci_dmamask,
89 .coherent_dma_mask = DMA_BIT_MASK(32),
93 #define AR71XX_USB_RESET_MASK (AR71XX_RESET_USB_HOST | \
94 AR71XX_RESET_USB_PHY | \
95 AR71XX_RESET_USB_OHCI_DLL)
97 static void __init ath79_usb_setup(void)
99 void __iomem *usb_ctrl_base;
101 ath79_device_reset_set(AR71XX_USB_RESET_MASK);
102 mdelay(1000);
103 ath79_device_reset_clear(AR71XX_USB_RESET_MASK);
105 usb_ctrl_base = ioremap(AR71XX_USB_CTRL_BASE, AR71XX_USB_CTRL_SIZE);
107 /* Turning on the Buff and Desc swap bits */
108 __raw_writel(0xf0000, usb_ctrl_base + AR71XX_USB_CTRL_REG_CONFIG);
110 /* WAR for HW bug. Here it adjusts the duration between two SOFS */
111 __raw_writel(0x20c00, usb_ctrl_base + AR71XX_USB_CTRL_REG_FLADJ);
113 iounmap(usb_ctrl_base);
115 mdelay(900);
117 ath79_ohci_resources[0].start = AR71XX_OHCI_BASE;
118 ath79_ohci_resources[0].end = AR71XX_OHCI_BASE + AR71XX_OHCI_SIZE - 1;
119 platform_device_register(&ath79_ohci_device);
121 ath79_ehci_resources[0].start = AR71XX_EHCI_BASE;
122 ath79_ehci_resources[0].end = AR71XX_EHCI_BASE + AR71XX_EHCI_SIZE - 1;
123 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v1;
124 platform_device_register(&ath79_ehci_device);
127 static void __init ar7240_usb_setup(void)
129 void __iomem *usb_ctrl_base;
131 ath79_device_reset_clear(AR7240_RESET_OHCI_DLL);
132 ath79_device_reset_set(AR7240_RESET_USB_HOST);
134 mdelay(1000);
136 ath79_device_reset_set(AR7240_RESET_OHCI_DLL);
137 ath79_device_reset_clear(AR7240_RESET_USB_HOST);
139 usb_ctrl_base = ioremap(AR7240_USB_CTRL_BASE, AR7240_USB_CTRL_SIZE);
141 /* WAR for HW bug. Here it adjusts the duration between two SOFS */
142 __raw_writel(0x3, usb_ctrl_base + AR71XX_USB_CTRL_REG_FLADJ);
144 iounmap(usb_ctrl_base);
146 ath79_ohci_resources[0].start = AR7240_OHCI_BASE;
147 ath79_ohci_resources[0].end = AR7240_OHCI_BASE + AR7240_OHCI_SIZE - 1;
148 ath79_ohci_resources[1].start = ATH79_CPU_IRQ_USB;
149 ath79_ohci_resources[1].end = ATH79_CPU_IRQ_USB;
150 platform_device_register(&ath79_ohci_device);
153 static void __init ar724x_usb_setup(void)
155 ath79_device_reset_set(AR724X_RESET_USBSUS_OVERRIDE);
156 mdelay(10);
158 ath79_device_reset_clear(AR724X_RESET_USB_HOST);
159 mdelay(10);
161 ath79_device_reset_clear(AR724X_RESET_USB_PHY);
162 mdelay(10);
164 ath79_ehci_resources[0].start = AR724X_EHCI_BASE;
165 ath79_ehci_resources[0].end = AR724X_EHCI_BASE + AR724X_EHCI_SIZE - 1;
166 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v2;
167 platform_device_register(&ath79_ehci_device);
170 static void __init ar913x_usb_setup(void)
172 ath79_device_reset_set(AR913X_RESET_USBSUS_OVERRIDE);
173 mdelay(10);
175 ath79_device_reset_clear(AR913X_RESET_USB_HOST);
176 mdelay(10);
178 ath79_device_reset_clear(AR913X_RESET_USB_PHY);
179 mdelay(10);
181 ath79_ehci_resources[0].start = AR913X_EHCI_BASE;
182 ath79_ehci_resources[0].end = AR913X_EHCI_BASE + AR913X_EHCI_SIZE - 1;
183 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v2;
184 platform_device_register(&ath79_ehci_device);
187 static void __init ar933x_usb_setup(void)
189 ath79_device_reset_set(AR933X_RESET_USBSUS_OVERRIDE);
190 mdelay(10);
192 ath79_device_reset_clear(AR933X_RESET_USB_HOST);
193 mdelay(10);
195 ath79_device_reset_clear(AR933X_RESET_USB_PHY);
196 mdelay(10);
198 ath79_ehci_resources[0].start = AR933X_EHCI_BASE;
199 ath79_ehci_resources[0].end = AR933X_EHCI_BASE + AR933X_EHCI_SIZE - 1;
200 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v2;
201 platform_device_register(&ath79_ehci_device);
204 void __init ath79_register_usb(void)
206 if (soc_is_ar71xx())
207 ath79_usb_setup();
208 else if (soc_is_ar7240())
209 ar7240_usb_setup();
210 else if (soc_is_ar7241() || soc_is_ar7242())
211 ar724x_usb_setup();
212 else if (soc_is_ar913x())
213 ar913x_usb_setup();
214 else if (soc_is_ar933x())
215 ar933x_usb_setup();
216 else
217 BUG();