blob: 072bb9be2304b2225e7a49ce44e860dc052504f5 [file] [log] [blame]
Gabor Juhos7e98aa42011-06-05 23:38:46 +02001/*
2 * Atheros AR7XXX/AR9XXX USB Host Controller device
3 *
4 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
7 * Parts of this file are based on Atheros' 2.6.15 BSP
8 *
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.
12 */
13
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>
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +010020#include <linux/usb/ehci_pdriver.h>
21#include <linux/usb/ohci_pdriver.h>
Gabor Juhos7e98aa42011-06-05 23:38:46 +020022
23#include <asm/mach-ath79/ath79.h>
24#include <asm/mach-ath79/ar71xx_regs.h>
25#include "common.h"
26#include "dev-usb.h"
27
Gabor Juhos8d3e03e2012-08-04 15:03:55 +000028static struct resource ath79_ohci_resources[2];
Gabor Juhos7e98aa42011-06-05 23:38:46 +020029
30static u64 ath79_ohci_dmamask = DMA_BIT_MASK(32);
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +010031
32static struct usb_ohci_pdata ath79_ohci_pdata = {
33};
34
Gabor Juhos7e98aa42011-06-05 23:38:46 +020035static struct platform_device ath79_ohci_device = {
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +010036 .name = "ohci-platform",
Gabor Juhos7e98aa42011-06-05 23:38:46 +020037 .id = -1,
38 .resource = ath79_ohci_resources,
39 .num_resources = ARRAY_SIZE(ath79_ohci_resources),
40 .dev = {
41 .dma_mask = &ath79_ohci_dmamask,
42 .coherent_dma_mask = DMA_BIT_MASK(32),
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +010043 .platform_data = &ath79_ohci_pdata,
Gabor Juhos7e98aa42011-06-05 23:38:46 +020044 },
45};
46
Gabor Juhos8d3e03e2012-08-04 15:03:55 +000047static struct resource ath79_ehci_resources[2];
Gabor Juhos7e98aa42011-06-05 23:38:46 +020048
49static u64 ath79_ehci_dmamask = DMA_BIT_MASK(32);
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +010050
51static struct usb_ehci_pdata ath79_ehci_pdata_v1 = {
52 .has_synopsys_hc_bug = 1,
53 .port_power_off = 1,
54};
55
56static struct usb_ehci_pdata ath79_ehci_pdata_v2 = {
57 .caps_offset = 0x100,
58 .has_tt = 1,
59 .port_power_off = 1,
60};
61
Gabor Juhos7e98aa42011-06-05 23:38:46 +020062static struct platform_device ath79_ehci_device = {
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +010063 .name = "ehci-platform",
Gabor Juhos7e98aa42011-06-05 23:38:46 +020064 .id = -1,
65 .resource = ath79_ehci_resources,
66 .num_resources = ARRAY_SIZE(ath79_ehci_resources),
67 .dev = {
68 .dma_mask = &ath79_ehci_dmamask,
69 .coherent_dma_mask = DMA_BIT_MASK(32),
70 },
71};
72
Gabor Juhos8d3e03e2012-08-04 15:03:55 +000073static void __init ath79_usb_init_resource(struct resource res[2],
74 unsigned long base,
75 unsigned long size,
76 int irq)
77{
78 res[0].flags = IORESOURCE_MEM;
79 res[0].start = base;
80 res[0].end = base + size - 1;
81
82 res[1].flags = IORESOURCE_IRQ;
83 res[1].start = irq;
84 res[1].end = irq;
85}
86
Gabor Juhos7e98aa42011-06-05 23:38:46 +020087#define AR71XX_USB_RESET_MASK (AR71XX_RESET_USB_HOST | \
88 AR71XX_RESET_USB_PHY | \
89 AR71XX_RESET_USB_OHCI_DLL)
90
91static void __init ath79_usb_setup(void)
92{
93 void __iomem *usb_ctrl_base;
94
95 ath79_device_reset_set(AR71XX_USB_RESET_MASK);
96 mdelay(1000);
97 ath79_device_reset_clear(AR71XX_USB_RESET_MASK);
98
99 usb_ctrl_base = ioremap(AR71XX_USB_CTRL_BASE, AR71XX_USB_CTRL_SIZE);
100
101 /* Turning on the Buff and Desc swap bits */
102 __raw_writel(0xf0000, usb_ctrl_base + AR71XX_USB_CTRL_REG_CONFIG);
103
104 /* WAR for HW bug. Here it adjusts the duration between two SOFS */
105 __raw_writel(0x20c00, usb_ctrl_base + AR71XX_USB_CTRL_REG_FLADJ);
106
107 iounmap(usb_ctrl_base);
108
109 mdelay(900);
110
Gabor Juhos8d3e03e2012-08-04 15:03:55 +0000111 ath79_usb_init_resource(ath79_ohci_resources, AR71XX_OHCI_BASE,
112 AR71XX_OHCI_SIZE, ATH79_MISC_IRQ_OHCI);
Gabor Juhos7e98aa42011-06-05 23:38:46 +0200113 platform_device_register(&ath79_ohci_device);
114
Gabor Juhos8d3e03e2012-08-04 15:03:55 +0000115 ath79_usb_init_resource(ath79_ehci_resources, AR71XX_EHCI_BASE,
116 AR71XX_EHCI_SIZE, ATH79_CPU_IRQ_USB);
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100117 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v1;
Gabor Juhos7e98aa42011-06-05 23:38:46 +0200118 platform_device_register(&ath79_ehci_device);
119}
120
121static void __init ar7240_usb_setup(void)
122{
123 void __iomem *usb_ctrl_base;
124
125 ath79_device_reset_clear(AR7240_RESET_OHCI_DLL);
126 ath79_device_reset_set(AR7240_RESET_USB_HOST);
127
128 mdelay(1000);
129
130 ath79_device_reset_set(AR7240_RESET_OHCI_DLL);
131 ath79_device_reset_clear(AR7240_RESET_USB_HOST);
132
133 usb_ctrl_base = ioremap(AR7240_USB_CTRL_BASE, AR7240_USB_CTRL_SIZE);
134
135 /* WAR for HW bug. Here it adjusts the duration between two SOFS */
136 __raw_writel(0x3, usb_ctrl_base + AR71XX_USB_CTRL_REG_FLADJ);
137
138 iounmap(usb_ctrl_base);
139
Gabor Juhos8d3e03e2012-08-04 15:03:55 +0000140 ath79_usb_init_resource(ath79_ohci_resources, AR7240_OHCI_BASE,
141 AR7240_OHCI_SIZE, ATH79_CPU_IRQ_USB);
Gabor Juhos7e98aa42011-06-05 23:38:46 +0200142 platform_device_register(&ath79_ohci_device);
143}
144
145static void __init ar724x_usb_setup(void)
146{
147 ath79_device_reset_set(AR724X_RESET_USBSUS_OVERRIDE);
148 mdelay(10);
149
150 ath79_device_reset_clear(AR724X_RESET_USB_HOST);
151 mdelay(10);
152
153 ath79_device_reset_clear(AR724X_RESET_USB_PHY);
154 mdelay(10);
155
Gabor Juhos8d3e03e2012-08-04 15:03:55 +0000156 ath79_usb_init_resource(ath79_ehci_resources, AR724X_EHCI_BASE,
157 AR724X_EHCI_SIZE, ATH79_CPU_IRQ_USB);
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100158 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v2;
Gabor Juhos7e98aa42011-06-05 23:38:46 +0200159 platform_device_register(&ath79_ehci_device);
160}
161
162static void __init ar913x_usb_setup(void)
163{
164 ath79_device_reset_set(AR913X_RESET_USBSUS_OVERRIDE);
165 mdelay(10);
166
167 ath79_device_reset_clear(AR913X_RESET_USB_HOST);
168 mdelay(10);
169
170 ath79_device_reset_clear(AR913X_RESET_USB_PHY);
171 mdelay(10);
172
Gabor Juhos8d3e03e2012-08-04 15:03:55 +0000173 ath79_usb_init_resource(ath79_ehci_resources, AR913X_EHCI_BASE,
174 AR913X_EHCI_SIZE, ATH79_CPU_IRQ_USB);
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100175 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v2;
Gabor Juhos7e98aa42011-06-05 23:38:46 +0200176 platform_device_register(&ath79_ehci_device);
177}
178
Gabor Juhosc279b772011-06-20 21:26:10 +0200179static void __init ar933x_usb_setup(void)
180{
181 ath79_device_reset_set(AR933X_RESET_USBSUS_OVERRIDE);
182 mdelay(10);
183
184 ath79_device_reset_clear(AR933X_RESET_USB_HOST);
185 mdelay(10);
186
187 ath79_device_reset_clear(AR933X_RESET_USB_PHY);
188 mdelay(10);
189
Gabor Juhos8d3e03e2012-08-04 15:03:55 +0000190 ath79_usb_init_resource(ath79_ehci_resources, AR933X_EHCI_BASE,
191 AR933X_EHCI_SIZE, ATH79_CPU_IRQ_USB);
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100192 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v2;
Gabor Juhosc279b772011-06-20 21:26:10 +0200193 platform_device_register(&ath79_ehci_device);
194}
195
Gabor Juhos00ffed52012-08-04 15:03:56 +0000196static void __init ar934x_usb_setup(void)
197{
198 u32 bootstrap;
199
200 bootstrap = ath79_reset_rr(AR934X_RESET_REG_BOOTSTRAP);
201 if (bootstrap & AR934X_BOOTSTRAP_USB_MODE_DEVICE)
202 return;
203
204 ath79_device_reset_set(AR934X_RESET_USBSUS_OVERRIDE);
205 udelay(1000);
206
207 ath79_device_reset_clear(AR934X_RESET_USB_PHY);
208 udelay(1000);
209
210 ath79_device_reset_clear(AR934X_RESET_USB_PHY_ANALOG);
211 udelay(1000);
212
213 ath79_device_reset_clear(AR934X_RESET_USB_HOST);
214 udelay(1000);
215
216 ath79_usb_init_resource(ath79_ehci_resources, AR934X_EHCI_BASE,
217 AR934X_EHCI_SIZE, ATH79_CPU_IRQ_USB);
218 ath79_ehci_device.dev.platform_data = &ath79_ehci_pdata_v2;
219 platform_device_register(&ath79_ehci_device);
220}
221
Gabor Juhos7e98aa42011-06-05 23:38:46 +0200222void __init ath79_register_usb(void)
223{
224 if (soc_is_ar71xx())
225 ath79_usb_setup();
226 else if (soc_is_ar7240())
227 ar7240_usb_setup();
228 else if (soc_is_ar7241() || soc_is_ar7242())
229 ar724x_usb_setup();
230 else if (soc_is_ar913x())
231 ar913x_usb_setup();
Gabor Juhosc279b772011-06-20 21:26:10 +0200232 else if (soc_is_ar933x())
233 ar933x_usb_setup();
Gabor Juhos00ffed52012-08-04 15:03:56 +0000234 else if (soc_is_ar934x())
235 ar934x_usb_setup();
Gabor Juhos7e98aa42011-06-05 23:38:46 +0200236 else
237 BUG();
238}