blob: fc23dfbb69100d5512bfc89731b606ab56b006c2 [file] [log] [blame]
Keshava Munegowda17cdd292011-03-01 20:08:17 +05301/**
2 * omap-usb-host.c - The USBHS core driver for OMAP EHCI & OHCI
3 *
4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
5 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 of
9 * the License as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19#include <linux/kernel.h>
Ming Lei417e2062011-08-19 16:57:54 +080020#include <linux/module.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053021#include <linux/types.h>
22#include <linux/slab.h>
23#include <linux/delay.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053024#include <linux/clk.h>
25#include <linux/dma-mapping.h>
26#include <linux/spinlock.h>
Russ Dillc05995c2012-06-14 09:24:21 -070027#include <linux/gpio.h>
Russ Dill13176a82012-04-22 01:48:18 -070028#include <plat/cpu.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053029#include <plat/usb.h>
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +053030#include <linux/pm_runtime.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053031
Keshava Munegowdaa6d3a662011-10-11 13:21:51 +053032#define USBHS_DRIVER_NAME "usbhs_omap"
Keshava Munegowda17cdd292011-03-01 20:08:17 +053033#define OMAP_EHCI_DEVICE "ehci-omap"
34#define OMAP_OHCI_DEVICE "ohci-omap3"
35
36/* OMAP USBHOST Register addresses */
37
Keshava Munegowda17cdd292011-03-01 20:08:17 +053038/* UHH Register Set */
39#define OMAP_UHH_REVISION (0x00)
40#define OMAP_UHH_SYSCONFIG (0x10)
41#define OMAP_UHH_SYSCONFIG_MIDLEMODE (1 << 12)
42#define OMAP_UHH_SYSCONFIG_CACTIVITY (1 << 8)
43#define OMAP_UHH_SYSCONFIG_SIDLEMODE (1 << 3)
44#define OMAP_UHH_SYSCONFIG_ENAWAKEUP (1 << 2)
45#define OMAP_UHH_SYSCONFIG_SOFTRESET (1 << 1)
46#define OMAP_UHH_SYSCONFIG_AUTOIDLE (1 << 0)
47
48#define OMAP_UHH_SYSSTATUS (0x14)
49#define OMAP_UHH_HOSTCONFIG (0x40)
50#define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS (1 << 0)
51#define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS (1 << 0)
52#define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS (1 << 11)
53#define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS (1 << 12)
54#define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN (1 << 2)
55#define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN (1 << 3)
56#define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN (1 << 4)
57#define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN (1 << 5)
58#define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS (1 << 8)
59#define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS (1 << 9)
60#define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS (1 << 10)
61#define OMAP4_UHH_HOSTCONFIG_APP_START_CLK (1 << 31)
62
63/* OMAP4-specific defines */
64#define OMAP4_UHH_SYSCONFIG_IDLEMODE_CLEAR (3 << 2)
65#define OMAP4_UHH_SYSCONFIG_NOIDLE (1 << 2)
66#define OMAP4_UHH_SYSCONFIG_STDBYMODE_CLEAR (3 << 4)
67#define OMAP4_UHH_SYSCONFIG_NOSTDBY (1 << 4)
68#define OMAP4_UHH_SYSCONFIG_SOFTRESET (1 << 0)
69
70#define OMAP4_P1_MODE_CLEAR (3 << 16)
71#define OMAP4_P1_MODE_TLL (1 << 16)
72#define OMAP4_P1_MODE_HSIC (3 << 16)
73#define OMAP4_P2_MODE_CLEAR (3 << 18)
74#define OMAP4_P2_MODE_TLL (1 << 18)
75#define OMAP4_P2_MODE_HSIC (3 << 18)
76
Keshava Munegowda17cdd292011-03-01 20:08:17 +053077#define OMAP_UHH_DEBUG_CSR (0x44)
78
79/* Values of UHH_REVISION - Note: these are not given in the TRM */
80#define OMAP_USBHS_REV1 0x00000010 /* OMAP3 */
81#define OMAP_USBHS_REV2 0x50700100 /* OMAP4 */
82
83#define is_omap_usbhs_rev1(x) (x->usbhs_rev == OMAP_USBHS_REV1)
84#define is_omap_usbhs_rev2(x) (x->usbhs_rev == OMAP_USBHS_REV2)
85
86#define is_ehci_phy_mode(x) (x == OMAP_EHCI_PORT_MODE_PHY)
87#define is_ehci_tll_mode(x) (x == OMAP_EHCI_PORT_MODE_TLL)
88#define is_ehci_hsic_mode(x) (x == OMAP_EHCI_PORT_MODE_HSIC)
89
90
91struct usbhs_hcd_omap {
Keshava Munegowda17cdd292011-03-01 20:08:17 +053092 struct clk *xclk60mhsp1_ck;
93 struct clk *xclk60mhsp2_ck;
94 struct clk *utmi_p1_fck;
95 struct clk *usbhost_p1_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +053096 struct clk *utmi_p2_fck;
97 struct clk *usbhost_p2_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +053098 struct clk *init_60m_fclk;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +053099 struct clk *ehci_logic_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530100
101 void __iomem *uhh_base;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530102
103 struct usbhs_omap_platform_data platdata;
104
105 u32 usbhs_rev;
106 spinlock_t lock;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530107};
108/*-------------------------------------------------------------------------*/
109
110const char usbhs_driver_name[] = USBHS_DRIVER_NAME;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530111static u64 usbhs_dmamask = DMA_BIT_MASK(32);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530112
113/*-------------------------------------------------------------------------*/
114
115static inline void usbhs_write(void __iomem *base, u32 reg, u32 val)
116{
117 __raw_writel(val, base + reg);
118}
119
120static inline u32 usbhs_read(void __iomem *base, u32 reg)
121{
122 return __raw_readl(base + reg);
123}
124
125static inline void usbhs_writeb(void __iomem *base, u8 reg, u8 val)
126{
127 __raw_writeb(val, base + reg);
128}
129
130static inline u8 usbhs_readb(void __iomem *base, u8 reg)
131{
132 return __raw_readb(base + reg);
133}
134
135/*-------------------------------------------------------------------------*/
136
137static struct platform_device *omap_usbhs_alloc_child(const char *name,
138 struct resource *res, int num_resources, void *pdata,
139 size_t pdata_size, struct device *dev)
140{
141 struct platform_device *child;
142 int ret;
143
144 child = platform_device_alloc(name, 0);
145
146 if (!child) {
147 dev_err(dev, "platform_device_alloc %s failed\n", name);
148 goto err_end;
149 }
150
151 ret = platform_device_add_resources(child, res, num_resources);
152 if (ret) {
153 dev_err(dev, "platform_device_add_resources failed\n");
154 goto err_alloc;
155 }
156
157 ret = platform_device_add_data(child, pdata, pdata_size);
158 if (ret) {
159 dev_err(dev, "platform_device_add_data failed\n");
160 goto err_alloc;
161 }
162
163 child->dev.dma_mask = &usbhs_dmamask;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530164 dma_set_coherent_mask(&child->dev, DMA_BIT_MASK(32));
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530165 child->dev.parent = dev;
166
167 ret = platform_device_add(child);
168 if (ret) {
169 dev_err(dev, "platform_device_add failed\n");
170 goto err_alloc;
171 }
172
173 return child;
174
175err_alloc:
176 platform_device_put(child);
177
178err_end:
179 return NULL;
180}
181
182static int omap_usbhs_alloc_children(struct platform_device *pdev)
183{
184 struct device *dev = &pdev->dev;
185 struct usbhs_hcd_omap *omap;
186 struct ehci_hcd_omap_platform_data *ehci_data;
187 struct ohci_hcd_omap_platform_data *ohci_data;
188 struct platform_device *ehci;
189 struct platform_device *ohci;
190 struct resource *res;
191 struct resource resources[2];
192 int ret;
193
194 omap = platform_get_drvdata(pdev);
195 ehci_data = omap->platdata.ehci_data;
196 ohci_data = omap->platdata.ohci_data;
197
198 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ehci");
199 if (!res) {
200 dev_err(dev, "EHCI get resource IORESOURCE_MEM failed\n");
201 ret = -ENODEV;
202 goto err_end;
203 }
204 resources[0] = *res;
205
206 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ehci-irq");
207 if (!res) {
208 dev_err(dev, " EHCI get resource IORESOURCE_IRQ failed\n");
209 ret = -ENODEV;
210 goto err_end;
211 }
212 resources[1] = *res;
213
214 ehci = omap_usbhs_alloc_child(OMAP_EHCI_DEVICE, resources, 2, ehci_data,
215 sizeof(*ehci_data), dev);
216
217 if (!ehci) {
218 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800219 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530220 goto err_end;
221 }
222
223 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
224 if (!res) {
225 dev_err(dev, "OHCI get resource IORESOURCE_MEM failed\n");
226 ret = -ENODEV;
227 goto err_ehci;
228 }
229 resources[0] = *res;
230
231 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ohci-irq");
232 if (!res) {
233 dev_err(dev, "OHCI get resource IORESOURCE_IRQ failed\n");
234 ret = -ENODEV;
235 goto err_ehci;
236 }
237 resources[1] = *res;
238
239 ohci = omap_usbhs_alloc_child(OMAP_OHCI_DEVICE, resources, 2, ohci_data,
240 sizeof(*ohci_data), dev);
241 if (!ohci) {
242 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800243 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530244 goto err_ehci;
245 }
246
247 return 0;
248
249err_ehci:
Axel Lind9107742011-05-14 14:15:36 +0800250 platform_device_unregister(ehci);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530251
252err_end:
253 return ret;
254}
255
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530256static bool is_ohci_port(enum usbhs_omap_port_mode pmode)
257{
258 switch (pmode) {
259 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
260 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM:
261 case OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0:
262 case OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM:
263 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0:
264 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM:
265 case OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0:
266 case OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM:
267 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0:
268 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM:
269 return true;
270
271 default:
272 return false;
273 }
274}
275
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530276static int usbhs_runtime_resume(struct device *dev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530277{
278 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
279 struct usbhs_omap_platform_data *pdata = &omap->platdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530280 unsigned long flags;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530281
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530282 dev_dbg(dev, "usbhs_runtime_resume\n");
283
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530284 if (!pdata) {
285 dev_dbg(dev, "missing platform_data\n");
Axel Lind11536e2011-04-21 19:52:41 +0530286 return -ENODEV;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530287 }
288
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530289 omap_tll_enable();
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530290 spin_lock_irqsave(&omap->lock, flags);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530291
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530292 if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
293 clk_enable(omap->ehci_logic_fck);
294
Keshava Munegowda760189b2012-07-16 19:01:10 +0530295 if (is_ehci_tll_mode(pdata->port_mode[0]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530296 clk_enable(omap->usbhost_p1_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530297 if (is_ehci_tll_mode(pdata->port_mode[1]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530298 clk_enable(omap->usbhost_p2_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530299
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530300 clk_enable(omap->utmi_p1_fck);
301 clk_enable(omap->utmi_p2_fck);
302
303 spin_unlock_irqrestore(&omap->lock, flags);
304
305 return 0;
306}
307
308static int usbhs_runtime_suspend(struct device *dev)
309{
310 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
311 struct usbhs_omap_platform_data *pdata = &omap->platdata;
312 unsigned long flags;
313
314 dev_dbg(dev, "usbhs_runtime_suspend\n");
315
316 if (!pdata) {
317 dev_dbg(dev, "missing platform_data\n");
318 return -ENODEV;
319 }
320
321 spin_lock_irqsave(&omap->lock, flags);
322
Keshava Munegowda760189b2012-07-16 19:01:10 +0530323 if (is_ehci_tll_mode(pdata->port_mode[0]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530324 clk_disable(omap->usbhost_p1_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530325 if (is_ehci_tll_mode(pdata->port_mode[1]))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530326 clk_disable(omap->usbhost_p2_fck);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530327
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530328 clk_disable(omap->utmi_p2_fck);
329 clk_disable(omap->utmi_p1_fck);
330
331 if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
332 clk_disable(omap->ehci_logic_fck);
333
334 spin_unlock_irqrestore(&omap->lock, flags);
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530335 omap_tll_disable();
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530336
337 return 0;
338}
339
340static void omap_usbhs_init(struct device *dev)
341{
342 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
343 struct usbhs_omap_platform_data *pdata = &omap->platdata;
344 unsigned long flags;
345 unsigned reg;
346
347 dev_dbg(dev, "starting TI HSUSB Controller\n");
348
Russ Dillc05995c2012-06-14 09:24:21 -0700349 if (pdata->ehci_data->phy_reset) {
350 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[0]))
351 gpio_request_one(pdata->ehci_data->reset_gpio_port[0],
352 GPIOF_OUT_INIT_LOW, "USB1 PHY reset");
353
354 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[1]))
355 gpio_request_one(pdata->ehci_data->reset_gpio_port[1],
356 GPIOF_OUT_INIT_LOW, "USB2 PHY reset");
357
358 /* Hold the PHY in RESET for enough time till DIR is high */
359 udelay(10);
360 }
361
Keshava Munegowda760189b2012-07-16 19:01:10 +0530362 pm_runtime_get_sync(dev);
Russ Dillc05995c2012-06-14 09:24:21 -0700363 spin_lock_irqsave(&omap->lock, flags);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530364 omap->usbhs_rev = usbhs_read(omap->uhh_base, OMAP_UHH_REVISION);
365 dev_dbg(dev, "OMAP UHH_REVISION 0x%x\n", omap->usbhs_rev);
366
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530367 reg = usbhs_read(omap->uhh_base, OMAP_UHH_HOSTCONFIG);
368 /* setup ULPI bypass and burst configurations */
369 reg |= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
370 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
371 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN);
372 reg |= OMAP4_UHH_HOSTCONFIG_APP_START_CLK;
373 reg &= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN;
374
375 if (is_omap_usbhs_rev1(omap)) {
376 if (pdata->port_mode[0] == OMAP_USBHS_PORT_MODE_UNUSED)
377 reg &= ~OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS;
378 if (pdata->port_mode[1] == OMAP_USBHS_PORT_MODE_UNUSED)
379 reg &= ~OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS;
380 if (pdata->port_mode[2] == OMAP_USBHS_PORT_MODE_UNUSED)
381 reg &= ~OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS;
382
383 /* Bypass the TLL module for PHY mode operation */
384 if (cpu_is_omap3430() && (omap_rev() <= OMAP3430_REV_ES2_1)) {
385 dev_dbg(dev, "OMAP3 ES version <= ES2.1\n");
386 if (is_ehci_phy_mode(pdata->port_mode[0]) ||
387 is_ehci_phy_mode(pdata->port_mode[1]) ||
388 is_ehci_phy_mode(pdata->port_mode[2]))
389 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
390 else
391 reg |= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
392 } else {
393 dev_dbg(dev, "OMAP3 ES version > ES2.1\n");
394 if (is_ehci_phy_mode(pdata->port_mode[0]))
395 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
396 else
397 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
398 if (is_ehci_phy_mode(pdata->port_mode[1]))
399 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
400 else
401 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
402 if (is_ehci_phy_mode(pdata->port_mode[2]))
403 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
404 else
405 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
406 }
407 } else if (is_omap_usbhs_rev2(omap)) {
408 /* Clear port mode fields for PHY mode*/
409 reg &= ~OMAP4_P1_MODE_CLEAR;
410 reg &= ~OMAP4_P2_MODE_CLEAR;
411
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530412 if (is_ehci_tll_mode(pdata->port_mode[0]) ||
413 (is_ohci_port(pdata->port_mode[0])))
414 reg |= OMAP4_P1_MODE_TLL;
415 else if (is_ehci_hsic_mode(pdata->port_mode[0]))
416 reg |= OMAP4_P1_MODE_HSIC;
417
418 if (is_ehci_tll_mode(pdata->port_mode[1]) ||
419 (is_ohci_port(pdata->port_mode[1])))
420 reg |= OMAP4_P2_MODE_TLL;
421 else if (is_ehci_hsic_mode(pdata->port_mode[1]))
422 reg |= OMAP4_P2_MODE_HSIC;
423 }
424
425 usbhs_write(omap->uhh_base, OMAP_UHH_HOSTCONFIG, reg);
426 dev_dbg(dev, "UHH setup done, uhh_hostconfig=%x\n", reg);
427
Axel Lind11536e2011-04-21 19:52:41 +0530428 spin_unlock_irqrestore(&omap->lock, flags);
Russ Dillc05995c2012-06-14 09:24:21 -0700429
Keshava Munegowda760189b2012-07-16 19:01:10 +0530430 pm_runtime_put_sync(dev);
Russ Dillc05995c2012-06-14 09:24:21 -0700431 if (pdata->ehci_data->phy_reset) {
432 /* Hold the PHY in RESET for enough time till
433 * PHY is settled and ready
434 */
435 udelay(10);
436
437 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[0]))
438 gpio_set_value_cansleep
439 (pdata->ehci_data->reset_gpio_port[0], 1);
440
441 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[1]))
442 gpio_set_value_cansleep
443 (pdata->ehci_data->reset_gpio_port[1], 1);
444 }
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530445}
446
Russ Dillc05995c2012-06-14 09:24:21 -0700447static void omap_usbhs_deinit(struct device *dev)
448{
449 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
450 struct usbhs_omap_platform_data *pdata = &omap->platdata;
451
452 if (pdata->ehci_data->phy_reset) {
453 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[0]))
454 gpio_free(pdata->ehci_data->reset_gpio_port[0]);
455
456 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[1]))
457 gpio_free(pdata->ehci_data->reset_gpio_port[1]);
458 }
459}
460
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530461
462/**
463 * usbhs_omap_probe - initialize TI-based HCDs
464 *
465 * Allocates basic resources for this USB host controller.
466 */
Bill Pembertonf791be42012-11-19 13:23:04 -0500467static int usbhs_omap_probe(struct platform_device *pdev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530468{
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530469 struct device *dev = &pdev->dev;
470 struct usbhs_omap_platform_data *pdata = dev->platform_data;
471 struct usbhs_hcd_omap *omap;
472 struct resource *res;
473 int ret = 0;
474 int i;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530475
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530476 if (!pdata) {
477 dev_err(dev, "Missing platform data\n");
478 ret = -ENOMEM;
479 goto end_probe;
480 }
481
482 omap = kzalloc(sizeof(*omap), GFP_KERNEL);
483 if (!omap) {
484 dev_err(dev, "Memory allocation failed\n");
485 ret = -ENOMEM;
486 goto end_probe;
487 }
488
489 spin_lock_init(&omap->lock);
490
491 for (i = 0; i < OMAP3_HS_USB_PORTS; i++)
492 omap->platdata.port_mode[i] = pdata->port_mode[i];
493
494 omap->platdata.ehci_data = pdata->ehci_data;
495 omap->platdata.ohci_data = pdata->ohci_data;
496
497 pm_runtime_enable(dev);
498
499
500 for (i = 0; i < OMAP3_HS_USB_PORTS; i++)
501 if (is_ehci_phy_mode(i) || is_ehci_tll_mode(i) ||
502 is_ehci_hsic_mode(i)) {
503 omap->ehci_logic_fck = clk_get(dev, "ehci_logic_fck");
504 if (IS_ERR(omap->ehci_logic_fck)) {
505 ret = PTR_ERR(omap->ehci_logic_fck);
506 dev_warn(dev, "ehci_logic_fck failed:%d\n",
507 ret);
508 }
509 break;
510 }
511
512 omap->utmi_p1_fck = clk_get(dev, "utmi_p1_gfclk");
513 if (IS_ERR(omap->utmi_p1_fck)) {
514 ret = PTR_ERR(omap->utmi_p1_fck);
515 dev_err(dev, "utmi_p1_gfclk failed error:%d\n", ret);
516 goto err_end;
517 }
518
519 omap->xclk60mhsp1_ck = clk_get(dev, "xclk60mhsp1_ck");
520 if (IS_ERR(omap->xclk60mhsp1_ck)) {
521 ret = PTR_ERR(omap->xclk60mhsp1_ck);
522 dev_err(dev, "xclk60mhsp1_ck failed error:%d\n", ret);
523 goto err_utmi_p1_fck;
524 }
525
526 omap->utmi_p2_fck = clk_get(dev, "utmi_p2_gfclk");
527 if (IS_ERR(omap->utmi_p2_fck)) {
528 ret = PTR_ERR(omap->utmi_p2_fck);
529 dev_err(dev, "utmi_p2_gfclk failed error:%d\n", ret);
530 goto err_xclk60mhsp1_ck;
531 }
532
533 omap->xclk60mhsp2_ck = clk_get(dev, "xclk60mhsp2_ck");
534 if (IS_ERR(omap->xclk60mhsp2_ck)) {
535 ret = PTR_ERR(omap->xclk60mhsp2_ck);
536 dev_err(dev, "xclk60mhsp2_ck failed error:%d\n", ret);
537 goto err_utmi_p2_fck;
538 }
539
540 omap->usbhost_p1_fck = clk_get(dev, "usb_host_hs_utmi_p1_clk");
541 if (IS_ERR(omap->usbhost_p1_fck)) {
542 ret = PTR_ERR(omap->usbhost_p1_fck);
543 dev_err(dev, "usbhost_p1_fck failed error:%d\n", ret);
544 goto err_xclk60mhsp2_ck;
545 }
546
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530547 omap->usbhost_p2_fck = clk_get(dev, "usb_host_hs_utmi_p2_clk");
548 if (IS_ERR(omap->usbhost_p2_fck)) {
549 ret = PTR_ERR(omap->usbhost_p2_fck);
550 dev_err(dev, "usbhost_p2_fck failed error:%d\n", ret);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530551 goto err_usbhost_p1_fck;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530552 }
553
554 omap->init_60m_fclk = clk_get(dev, "init_60m_fclk");
555 if (IS_ERR(omap->init_60m_fclk)) {
556 ret = PTR_ERR(omap->init_60m_fclk);
557 dev_err(dev, "init_60m_fclk failed error:%d\n", ret);
Keshava Munegowda760189b2012-07-16 19:01:10 +0530558 goto err_usbhost_p2_fck;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530559 }
560
561 if (is_ehci_phy_mode(pdata->port_mode[0])) {
562 /* for OMAP3 , the clk set paretn fails */
563 ret = clk_set_parent(omap->utmi_p1_fck,
564 omap->xclk60mhsp1_ck);
565 if (ret != 0)
566 dev_err(dev, "xclk60mhsp1_ck set parent"
567 "failed error:%d\n", ret);
568 } else if (is_ehci_tll_mode(pdata->port_mode[0])) {
569 ret = clk_set_parent(omap->utmi_p1_fck,
570 omap->init_60m_fclk);
571 if (ret != 0)
572 dev_err(dev, "init_60m_fclk set parent"
573 "failed error:%d\n", ret);
574 }
575
576 if (is_ehci_phy_mode(pdata->port_mode[1])) {
577 ret = clk_set_parent(omap->utmi_p2_fck,
578 omap->xclk60mhsp2_ck);
579 if (ret != 0)
580 dev_err(dev, "xclk60mhsp2_ck set parent"
581 "failed error:%d\n", ret);
582 } else if (is_ehci_tll_mode(pdata->port_mode[1])) {
583 ret = clk_set_parent(omap->utmi_p2_fck,
584 omap->init_60m_fclk);
585 if (ret != 0)
586 dev_err(dev, "init_60m_fclk set parent"
587 "failed error:%d\n", ret);
588 }
589
590 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "uhh");
591 if (!res) {
592 dev_err(dev, "UHH EHCI get resource failed\n");
593 ret = -ENODEV;
594 goto err_init_60m_fclk;
595 }
596
597 omap->uhh_base = ioremap(res->start, resource_size(res));
598 if (!omap->uhh_base) {
599 dev_err(dev, "UHH ioremap failed\n");
600 ret = -ENOMEM;
601 goto err_init_60m_fclk;
602 }
603
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530604 platform_set_drvdata(pdev, omap);
605
Govindraj.Rf0447a62012-02-15 15:53:34 +0530606 omap_usbhs_init(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530607 ret = omap_usbhs_alloc_children(pdev);
608 if (ret) {
609 dev_err(dev, "omap_usbhs_alloc_children failed\n");
610 goto err_alloc;
611 }
612
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530613 goto end_probe;
614
615err_alloc:
Russ Dillc05995c2012-06-14 09:24:21 -0700616 omap_usbhs_deinit(&pdev->dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530617 iounmap(omap->uhh_base);
618
619err_init_60m_fclk:
620 clk_put(omap->init_60m_fclk);
621
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530622err_usbhost_p2_fck:
623 clk_put(omap->usbhost_p2_fck);
624
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530625err_usbhost_p1_fck:
626 clk_put(omap->usbhost_p1_fck);
627
628err_xclk60mhsp2_ck:
629 clk_put(omap->xclk60mhsp2_ck);
630
631err_utmi_p2_fck:
632 clk_put(omap->utmi_p2_fck);
633
634err_xclk60mhsp1_ck:
635 clk_put(omap->xclk60mhsp1_ck);
636
637err_utmi_p1_fck:
638 clk_put(omap->utmi_p1_fck);
639
640err_end:
641 clk_put(omap->ehci_logic_fck);
642 pm_runtime_disable(dev);
643 kfree(omap);
644
645end_probe:
646 return ret;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530647}
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530648
649/**
650 * usbhs_omap_remove - shutdown processing for UHH & TLL HCDs
651 * @pdev: USB Host Controller being removed
652 *
653 * Reverses the effect of usbhs_omap_probe().
654 */
655static int __devexit usbhs_omap_remove(struct platform_device *pdev)
656{
657 struct usbhs_hcd_omap *omap = platform_get_drvdata(pdev);
658
Russ Dillc05995c2012-06-14 09:24:21 -0700659 omap_usbhs_deinit(&pdev->dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530660 iounmap(omap->uhh_base);
661 clk_put(omap->init_60m_fclk);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530662 clk_put(omap->usbhost_p2_fck);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530663 clk_put(omap->usbhost_p1_fck);
664 clk_put(omap->xclk60mhsp2_ck);
665 clk_put(omap->utmi_p2_fck);
666 clk_put(omap->xclk60mhsp1_ck);
667 clk_put(omap->utmi_p1_fck);
668 clk_put(omap->ehci_logic_fck);
669 pm_runtime_disable(&pdev->dev);
670 kfree(omap);
671
672 return 0;
673}
674
675static const struct dev_pm_ops usbhsomap_dev_pm_ops = {
676 .runtime_suspend = usbhs_runtime_suspend,
677 .runtime_resume = usbhs_runtime_resume,
678};
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530679
680static struct platform_driver usbhs_omap_driver = {
681 .driver = {
682 .name = (char *)usbhs_driver_name,
683 .owner = THIS_MODULE,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530684 .pm = &usbhsomap_dev_pm_ops,
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530685 },
686 .remove = __exit_p(usbhs_omap_remove),
687};
688
689MODULE_AUTHOR("Keshava Munegowda <keshava_mgowda@ti.com>");
690MODULE_ALIAS("platform:" USBHS_DRIVER_NAME);
691MODULE_LICENSE("GPL v2");
692MODULE_DESCRIPTION("usb host common core driver for omap EHCI and OHCI");
693
694static int __init omap_usbhs_drvinit(void)
695{
696 return platform_driver_probe(&usbhs_omap_driver, usbhs_omap_probe);
697}
698
699/*
700 * init before ehci and ohci drivers;
701 * The usbhs core driver should be initialized much before
702 * the omap ehci and ohci probe functions are called.
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530703 * This usbhs core driver should be initialized after
704 * usb tll driver
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530705 */
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530706fs_initcall_sync(omap_usbhs_drvinit);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530707
708static void __exit omap_usbhs_drvexit(void)
709{
710 platform_driver_unregister(&usbhs_omap_driver);
711}
712module_exit(omap_usbhs_drvexit);