blob: eb5db28b3fbd5172161d0e7b3a3b85e070d5239d [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>
Russ Dillc05995c2012-06-14 09:24:21 -070026#include <linux/gpio.h>
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070027#include <linux/platform_device.h>
28#include <linux/platform_data/usb-omap.h>
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +053029#include <linux/pm_runtime.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053030
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070031#include "omap-usb.h"
32
Keshava Munegowdaa6d3a662011-10-11 13:21:51 +053033#define USBHS_DRIVER_NAME "usbhs_omap"
Keshava Munegowda17cdd292011-03-01 20:08:17 +053034#define OMAP_EHCI_DEVICE "ehci-omap"
35#define OMAP_OHCI_DEVICE "ohci-omap3"
36
37/* OMAP USBHOST Register addresses */
38
Keshava Munegowda17cdd292011-03-01 20:08:17 +053039/* UHH Register Set */
40#define OMAP_UHH_REVISION (0x00)
41#define OMAP_UHH_SYSCONFIG (0x10)
42#define OMAP_UHH_SYSCONFIG_MIDLEMODE (1 << 12)
43#define OMAP_UHH_SYSCONFIG_CACTIVITY (1 << 8)
44#define OMAP_UHH_SYSCONFIG_SIDLEMODE (1 << 3)
45#define OMAP_UHH_SYSCONFIG_ENAWAKEUP (1 << 2)
46#define OMAP_UHH_SYSCONFIG_SOFTRESET (1 << 1)
47#define OMAP_UHH_SYSCONFIG_AUTOIDLE (1 << 0)
48
49#define OMAP_UHH_SYSSTATUS (0x14)
50#define OMAP_UHH_HOSTCONFIG (0x40)
51#define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS (1 << 0)
52#define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS (1 << 0)
53#define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS (1 << 11)
54#define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS (1 << 12)
55#define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN (1 << 2)
56#define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN (1 << 3)
57#define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN (1 << 4)
58#define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN (1 << 5)
59#define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS (1 << 8)
60#define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS (1 << 9)
61#define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS (1 << 10)
62#define OMAP4_UHH_HOSTCONFIG_APP_START_CLK (1 << 31)
63
64/* OMAP4-specific defines */
65#define OMAP4_UHH_SYSCONFIG_IDLEMODE_CLEAR (3 << 2)
66#define OMAP4_UHH_SYSCONFIG_NOIDLE (1 << 2)
67#define OMAP4_UHH_SYSCONFIG_STDBYMODE_CLEAR (3 << 4)
68#define OMAP4_UHH_SYSCONFIG_NOSTDBY (1 << 4)
69#define OMAP4_UHH_SYSCONFIG_SOFTRESET (1 << 0)
70
71#define OMAP4_P1_MODE_CLEAR (3 << 16)
72#define OMAP4_P1_MODE_TLL (1 << 16)
73#define OMAP4_P1_MODE_HSIC (3 << 16)
74#define OMAP4_P2_MODE_CLEAR (3 << 18)
75#define OMAP4_P2_MODE_TLL (1 << 18)
76#define OMAP4_P2_MODE_HSIC (3 << 18)
77
Keshava Munegowda17cdd292011-03-01 20:08:17 +053078#define OMAP_UHH_DEBUG_CSR (0x44)
79
80/* Values of UHH_REVISION - Note: these are not given in the TRM */
81#define OMAP_USBHS_REV1 0x00000010 /* OMAP3 */
82#define OMAP_USBHS_REV2 0x50700100 /* OMAP4 */
83
84#define is_omap_usbhs_rev1(x) (x->usbhs_rev == OMAP_USBHS_REV1)
85#define is_omap_usbhs_rev2(x) (x->usbhs_rev == OMAP_USBHS_REV2)
86
87#define is_ehci_phy_mode(x) (x == OMAP_EHCI_PORT_MODE_PHY)
88#define is_ehci_tll_mode(x) (x == OMAP_EHCI_PORT_MODE_TLL)
89#define is_ehci_hsic_mode(x) (x == OMAP_EHCI_PORT_MODE_HSIC)
90
91
92struct usbhs_hcd_omap {
Roger Quadrosd7eaf862012-11-08 18:04:26 +020093 int nports;
Roger Quadros06ba7dc2012-11-08 17:40:25 +020094 struct clk **utmi_clk;
Roger Quadros340c64e2012-11-12 16:53:16 +020095 struct clk **hsic60m_clk;
96 struct clk **hsic480m_clk;
Roger Quadrosd7eaf862012-11-08 18:04:26 +020097
Keshava Munegowda17cdd292011-03-01 20:08:17 +053098 struct clk *xclk60mhsp1_ck;
99 struct clk *xclk60mhsp2_ck;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200100 struct clk *utmi_p1_gfclk;
101 struct clk *utmi_p2_gfclk;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530102 struct clk *init_60m_fclk;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530103 struct clk *ehci_logic_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530104
105 void __iomem *uhh_base;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530106
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200107 struct usbhs_omap_platform_data *pdata;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530108
109 u32 usbhs_rev;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530110};
111/*-------------------------------------------------------------------------*/
112
113const char usbhs_driver_name[] = USBHS_DRIVER_NAME;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530114static u64 usbhs_dmamask = DMA_BIT_MASK(32);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530115
116/*-------------------------------------------------------------------------*/
117
118static inline void usbhs_write(void __iomem *base, u32 reg, u32 val)
119{
120 __raw_writel(val, base + reg);
121}
122
123static inline u32 usbhs_read(void __iomem *base, u32 reg)
124{
125 return __raw_readl(base + reg);
126}
127
128static inline void usbhs_writeb(void __iomem *base, u8 reg, u8 val)
129{
130 __raw_writeb(val, base + reg);
131}
132
133static inline u8 usbhs_readb(void __iomem *base, u8 reg)
134{
135 return __raw_readb(base + reg);
136}
137
138/*-------------------------------------------------------------------------*/
139
140static struct platform_device *omap_usbhs_alloc_child(const char *name,
141 struct resource *res, int num_resources, void *pdata,
142 size_t pdata_size, struct device *dev)
143{
144 struct platform_device *child;
145 int ret;
146
147 child = platform_device_alloc(name, 0);
148
149 if (!child) {
150 dev_err(dev, "platform_device_alloc %s failed\n", name);
151 goto err_end;
152 }
153
154 ret = platform_device_add_resources(child, res, num_resources);
155 if (ret) {
156 dev_err(dev, "platform_device_add_resources failed\n");
157 goto err_alloc;
158 }
159
160 ret = platform_device_add_data(child, pdata, pdata_size);
161 if (ret) {
162 dev_err(dev, "platform_device_add_data failed\n");
163 goto err_alloc;
164 }
165
166 child->dev.dma_mask = &usbhs_dmamask;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530167 dma_set_coherent_mask(&child->dev, DMA_BIT_MASK(32));
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530168 child->dev.parent = dev;
169
170 ret = platform_device_add(child);
171 if (ret) {
172 dev_err(dev, "platform_device_add failed\n");
173 goto err_alloc;
174 }
175
176 return child;
177
178err_alloc:
179 platform_device_put(child);
180
181err_end:
182 return NULL;
183}
184
185static int omap_usbhs_alloc_children(struct platform_device *pdev)
186{
187 struct device *dev = &pdev->dev;
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200188 struct usbhs_omap_platform_data *pdata = dev->platform_data;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530189 struct platform_device *ehci;
190 struct platform_device *ohci;
191 struct resource *res;
192 struct resource resources[2];
193 int ret;
194
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530195 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ehci");
196 if (!res) {
197 dev_err(dev, "EHCI get resource IORESOURCE_MEM failed\n");
198 ret = -ENODEV;
199 goto err_end;
200 }
201 resources[0] = *res;
202
203 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ehci-irq");
204 if (!res) {
205 dev_err(dev, " EHCI get resource IORESOURCE_IRQ failed\n");
206 ret = -ENODEV;
207 goto err_end;
208 }
209 resources[1] = *res;
210
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200211 ehci = omap_usbhs_alloc_child(OMAP_EHCI_DEVICE, resources, 2, pdata,
212 sizeof(*pdata), dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530213
214 if (!ehci) {
215 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800216 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530217 goto err_end;
218 }
219
220 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
221 if (!res) {
222 dev_err(dev, "OHCI get resource IORESOURCE_MEM failed\n");
223 ret = -ENODEV;
224 goto err_ehci;
225 }
226 resources[0] = *res;
227
228 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ohci-irq");
229 if (!res) {
230 dev_err(dev, "OHCI get resource IORESOURCE_IRQ failed\n");
231 ret = -ENODEV;
232 goto err_ehci;
233 }
234 resources[1] = *res;
235
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200236 ohci = omap_usbhs_alloc_child(OMAP_OHCI_DEVICE, resources, 2, pdata,
237 sizeof(*pdata), dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530238 if (!ohci) {
239 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800240 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530241 goto err_ehci;
242 }
243
244 return 0;
245
246err_ehci:
Axel Lind9107742011-05-14 14:15:36 +0800247 platform_device_unregister(ehci);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530248
249err_end:
250 return ret;
251}
252
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530253static bool is_ohci_port(enum usbhs_omap_port_mode pmode)
254{
255 switch (pmode) {
256 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
257 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM:
258 case OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0:
259 case OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM:
260 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0:
261 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM:
262 case OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0:
263 case OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM:
264 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0:
265 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM:
266 return true;
267
268 default:
269 return false;
270 }
271}
272
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530273static int usbhs_runtime_resume(struct device *dev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530274{
275 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200276 struct usbhs_omap_platform_data *pdata = omap->pdata;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200277 int i, r;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530278
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530279 dev_dbg(dev, "usbhs_runtime_resume\n");
280
Roger Quadros9f4a3ec2013-01-29 15:00:03 +0200281 omap_tll_enable(pdata);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530282
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200283 if (!IS_ERR(omap->ehci_logic_fck))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530284 clk_enable(omap->ehci_logic_fck);
285
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200286 for (i = 0; i < omap->nports; i++) {
Roger Quadros340c64e2012-11-12 16:53:16 +0200287 switch (pdata->port_mode[i]) {
288 case OMAP_EHCI_PORT_MODE_HSIC:
289 if (!IS_ERR(omap->hsic60m_clk[i])) {
290 r = clk_enable(omap->hsic60m_clk[i]);
291 if (r) {
292 dev_err(dev,
293 "Can't enable port %d hsic60m clk:%d\n",
294 i, r);
295 }
296 }
Keshava Munegowda760189b2012-07-16 19:01:10 +0530297
Roger Quadros340c64e2012-11-12 16:53:16 +0200298 if (!IS_ERR(omap->hsic480m_clk[i])) {
299 r = clk_enable(omap->hsic480m_clk[i]);
300 if (r) {
301 dev_err(dev,
302 "Can't enable port %d hsic480m clk:%d\n",
303 i, r);
304 }
305 }
306 /* Fall through as HSIC mode needs utmi_clk */
307
308 case OMAP_EHCI_PORT_MODE_TLL:
309 if (!IS_ERR(omap->utmi_clk[i])) {
310 r = clk_enable(omap->utmi_clk[i]);
311 if (r) {
312 dev_err(dev,
313 "Can't enable port %d clk : %d\n",
314 i, r);
315 }
316 }
317 break;
318 default:
319 break;
320 }
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200321 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530322
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530323 return 0;
324}
325
326static int usbhs_runtime_suspend(struct device *dev)
327{
328 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200329 struct usbhs_omap_platform_data *pdata = omap->pdata;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200330 int i;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530331
332 dev_dbg(dev, "usbhs_runtime_suspend\n");
333
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200334 for (i = 0; i < omap->nports; i++) {
Roger Quadros340c64e2012-11-12 16:53:16 +0200335 switch (pdata->port_mode[i]) {
336 case OMAP_EHCI_PORT_MODE_HSIC:
337 if (!IS_ERR(omap->hsic60m_clk[i]))
338 clk_disable(omap->hsic60m_clk[i]);
339
340 if (!IS_ERR(omap->hsic480m_clk[i]))
341 clk_disable(omap->hsic480m_clk[i]);
342 /* Fall through as utmi_clks were used in HSIC mode */
343
344 case OMAP_EHCI_PORT_MODE_TLL:
345 if (!IS_ERR(omap->utmi_clk[i]))
346 clk_disable(omap->utmi_clk[i]);
347 break;
348 default:
349 break;
350 }
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200351 }
Keshava Munegowda760189b2012-07-16 19:01:10 +0530352
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200353 if (!IS_ERR(omap->ehci_logic_fck))
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530354 clk_disable(omap->ehci_logic_fck);
355
Roger Quadros9f4a3ec2013-01-29 15:00:03 +0200356 omap_tll_disable(pdata);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530357
358 return 0;
359}
360
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200361static unsigned omap_usbhs_rev1_hostconfig(struct usbhs_hcd_omap *omap,
362 unsigned reg)
363{
364 struct usbhs_omap_platform_data *pdata = omap->pdata;
365 int i;
366
367 for (i = 0; i < omap->nports; i++) {
368 switch (pdata->port_mode[i]) {
369 case OMAP_USBHS_PORT_MODE_UNUSED:
370 reg &= ~(OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS << i);
371 break;
372 case OMAP_EHCI_PORT_MODE_PHY:
373 if (pdata->single_ulpi_bypass)
374 break;
375
376 if (i == 0)
377 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
378 else
379 reg &= ~(OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
380 << (i-1));
381 break;
382 default:
383 if (pdata->single_ulpi_bypass)
384 break;
385
386 if (i == 0)
387 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
388 else
389 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
390 << (i-1);
391 break;
392 }
393 }
394
395 if (pdata->single_ulpi_bypass) {
396 /* bypass ULPI only if none of the ports use PHY mode */
397 reg |= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
398
399 for (i = 0; i < omap->nports; i++) {
400 if (is_ehci_phy_mode(pdata->port_mode[i])) {
401 reg &= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
402 break;
403 }
404 }
405 }
406
407 return reg;
408}
409
410static unsigned omap_usbhs_rev2_hostconfig(struct usbhs_hcd_omap *omap,
411 unsigned reg)
412{
413 struct usbhs_omap_platform_data *pdata = omap->pdata;
414 int i;
415
416 for (i = 0; i < omap->nports; i++) {
417 /* Clear port mode fields for PHY mode */
418 reg &= ~(OMAP4_P1_MODE_CLEAR << 2 * i);
419
420 if (is_ehci_tll_mode(pdata->port_mode[i]) ||
421 (is_ohci_port(pdata->port_mode[i])))
422 reg |= OMAP4_P1_MODE_TLL << 2 * i;
423 else if (is_ehci_hsic_mode(pdata->port_mode[i]))
424 reg |= OMAP4_P1_MODE_HSIC << 2 * i;
425 }
426
427 return reg;
428}
429
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530430static void omap_usbhs_init(struct device *dev)
431{
432 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200433 struct usbhs_omap_platform_data *pdata = omap->pdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530434 unsigned reg;
435
436 dev_dbg(dev, "starting TI HSUSB Controller\n");
437
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200438 if (pdata->phy_reset) {
439 if (gpio_is_valid(pdata->reset_gpio_port[0]))
Jingoo Han71f4b9c2013-02-20 18:29:30 +0900440 devm_gpio_request_one(dev, pdata->reset_gpio_port[0],
Russ Dillc05995c2012-06-14 09:24:21 -0700441 GPIOF_OUT_INIT_LOW, "USB1 PHY reset");
442
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200443 if (gpio_is_valid(pdata->reset_gpio_port[1]))
Jingoo Han71f4b9c2013-02-20 18:29:30 +0900444 devm_gpio_request_one(dev, pdata->reset_gpio_port[1],
Russ Dillc05995c2012-06-14 09:24:21 -0700445 GPIOF_OUT_INIT_LOW, "USB2 PHY reset");
446
447 /* Hold the PHY in RESET for enough time till DIR is high */
448 udelay(10);
449 }
450
Keshava Munegowda760189b2012-07-16 19:01:10 +0530451 pm_runtime_get_sync(dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530452
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530453 reg = usbhs_read(omap->uhh_base, OMAP_UHH_HOSTCONFIG);
454 /* setup ULPI bypass and burst configurations */
455 reg |= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
456 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
457 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN);
458 reg |= OMAP4_UHH_HOSTCONFIG_APP_START_CLK;
459 reg &= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN;
460
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200461 switch (omap->usbhs_rev) {
462 case OMAP_USBHS_REV1:
Roger Quadros26bacba2013-02-27 15:19:24 +0200463 reg = omap_usbhs_rev1_hostconfig(omap, reg);
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200464 break;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530465
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200466 case OMAP_USBHS_REV2:
Roger Quadros26bacba2013-02-27 15:19:24 +0200467 reg = omap_usbhs_rev2_hostconfig(omap, reg);
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200468 break;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530469
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200470 default: /* newer revisions */
Roger Quadros26bacba2013-02-27 15:19:24 +0200471 reg = omap_usbhs_rev2_hostconfig(omap, reg);
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200472 break;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530473 }
474
475 usbhs_write(omap->uhh_base, OMAP_UHH_HOSTCONFIG, reg);
476 dev_dbg(dev, "UHH setup done, uhh_hostconfig=%x\n", reg);
477
Keshava Munegowda760189b2012-07-16 19:01:10 +0530478 pm_runtime_put_sync(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200479 if (pdata->phy_reset) {
Russ Dillc05995c2012-06-14 09:24:21 -0700480 /* Hold the PHY in RESET for enough time till
481 * PHY is settled and ready
482 */
483 udelay(10);
484
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200485 if (gpio_is_valid(pdata->reset_gpio_port[0]))
Russ Dillc05995c2012-06-14 09:24:21 -0700486 gpio_set_value_cansleep
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200487 (pdata->reset_gpio_port[0], 1);
Russ Dillc05995c2012-06-14 09:24:21 -0700488
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200489 if (gpio_is_valid(pdata->reset_gpio_port[1]))
Russ Dillc05995c2012-06-14 09:24:21 -0700490 gpio_set_value_cansleep
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200491 (pdata->reset_gpio_port[1], 1);
Russ Dillc05995c2012-06-14 09:24:21 -0700492 }
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530493}
494
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530495/**
496 * usbhs_omap_probe - initialize TI-based HCDs
497 *
498 * Allocates basic resources for this USB host controller.
499 */
Bill Pembertonf791be42012-11-19 13:23:04 -0500500static int usbhs_omap_probe(struct platform_device *pdev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530501{
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530502 struct device *dev = &pdev->dev;
503 struct usbhs_omap_platform_data *pdata = dev->platform_data;
504 struct usbhs_hcd_omap *omap;
505 struct resource *res;
506 int ret = 0;
507 int i;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200508 bool need_logic_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530509
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530510 if (!pdata) {
511 dev_err(dev, "Missing platform data\n");
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200512 return -ENODEV;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530513 }
514
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200515 omap = devm_kzalloc(dev, sizeof(*omap), GFP_KERNEL);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530516 if (!omap) {
517 dev_err(dev, "Memory allocation failed\n");
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200518 return -ENOMEM;
519 }
520
521 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "uhh");
522 omap->uhh_base = devm_request_and_ioremap(dev, res);
523 if (!omap->uhh_base) {
524 dev_err(dev, "Resource request/ioremap failed\n");
525 return -EADDRNOTAVAIL;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530526 }
527
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200528 omap->pdata = pdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530529
Roger Quadros9f4a3ec2013-01-29 15:00:03 +0200530 /* Initialize the TLL subsystem */
531 omap_tll_init(pdata);
532
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530533 pm_runtime_enable(dev);
534
Roger Quadrosd7eaf862012-11-08 18:04:26 +0200535 platform_set_drvdata(pdev, omap);
536 pm_runtime_get_sync(dev);
537
538 omap->usbhs_rev = usbhs_read(omap->uhh_base, OMAP_UHH_REVISION);
539
540 /* we need to call runtime suspend before we update omap->nports
541 * to prevent unbalanced clk_disable()
542 */
543 pm_runtime_put_sync(dev);
544
Roger Quadrosccac71a2012-11-08 19:18:08 +0200545 /*
546 * If platform data contains nports then use that
547 * else make out number of ports from USBHS revision
548 */
549 if (pdata->nports) {
550 omap->nports = pdata->nports;
551 } else {
552 switch (omap->usbhs_rev) {
553 case OMAP_USBHS_REV1:
554 omap->nports = 3;
555 break;
556 case OMAP_USBHS_REV2:
557 omap->nports = 2;
558 break;
559 default:
560 omap->nports = OMAP3_HS_USB_PORTS;
561 dev_dbg(dev,
562 "USB HOST Rev:0x%d not recognized, assuming %d ports\n",
563 omap->usbhs_rev, omap->nports);
564 break;
565 }
Roger Quadros662e4692013-01-08 16:01:52 +0200566 pdata->nports = omap->nports;
Roger Quadrosd7eaf862012-11-08 18:04:26 +0200567 }
568
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200569 i = sizeof(struct clk *) * omap->nports;
570 omap->utmi_clk = devm_kzalloc(dev, i, GFP_KERNEL);
Roger Quadros340c64e2012-11-12 16:53:16 +0200571 omap->hsic480m_clk = devm_kzalloc(dev, i, GFP_KERNEL);
572 omap->hsic60m_clk = devm_kzalloc(dev, i, GFP_KERNEL);
573
574 if (!omap->utmi_clk || !omap->hsic480m_clk || !omap->hsic60m_clk) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200575 dev_err(dev, "Memory allocation failed\n");
576 ret = -ENOMEM;
577 goto err_mem;
578 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530579
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200580 need_logic_fck = false;
581 for (i = 0; i < omap->nports; i++) {
582 if (is_ehci_phy_mode(i) || is_ehci_tll_mode(i) ||
583 is_ehci_hsic_mode(i))
584 need_logic_fck |= true;
585 }
586
587 omap->ehci_logic_fck = ERR_PTR(-EINVAL);
588 if (need_logic_fck) {
589 omap->ehci_logic_fck = clk_get(dev, "ehci_logic_fck");
590 if (IS_ERR(omap->ehci_logic_fck)) {
591 ret = PTR_ERR(omap->ehci_logic_fck);
592 dev_dbg(dev, "ehci_logic_fck failed:%d\n", ret);
593 }
594 }
595
596 omap->utmi_p1_gfclk = clk_get(dev, "utmi_p1_gfclk");
597 if (IS_ERR(omap->utmi_p1_gfclk)) {
598 ret = PTR_ERR(omap->utmi_p1_gfclk);
599 dev_err(dev, "utmi_p1_gfclk failed error:%d\n", ret);
600 goto err_p1_gfclk;
601 }
602
603 omap->utmi_p2_gfclk = clk_get(dev, "utmi_p2_gfclk");
604 if (IS_ERR(omap->utmi_p2_gfclk)) {
605 ret = PTR_ERR(omap->utmi_p2_gfclk);
606 dev_err(dev, "utmi_p2_gfclk failed error:%d\n", ret);
607 goto err_p2_gfclk;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530608 }
609
610 omap->xclk60mhsp1_ck = clk_get(dev, "xclk60mhsp1_ck");
611 if (IS_ERR(omap->xclk60mhsp1_ck)) {
612 ret = PTR_ERR(omap->xclk60mhsp1_ck);
613 dev_err(dev, "xclk60mhsp1_ck failed error:%d\n", ret);
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200614 goto err_xclk60mhsp1;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530615 }
616
617 omap->xclk60mhsp2_ck = clk_get(dev, "xclk60mhsp2_ck");
618 if (IS_ERR(omap->xclk60mhsp2_ck)) {
619 ret = PTR_ERR(omap->xclk60mhsp2_ck);
620 dev_err(dev, "xclk60mhsp2_ck failed error:%d\n", ret);
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200621 goto err_xclk60mhsp2;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530622 }
623
624 omap->init_60m_fclk = clk_get(dev, "init_60m_fclk");
625 if (IS_ERR(omap->init_60m_fclk)) {
626 ret = PTR_ERR(omap->init_60m_fclk);
627 dev_err(dev, "init_60m_fclk failed error:%d\n", ret);
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200628 goto err_init60m;
629 }
630
631 for (i = 0; i < omap->nports; i++) {
Roger Quadros340c64e2012-11-12 16:53:16 +0200632 char clkname[30];
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200633
634 /* clock names are indexed from 1*/
635 snprintf(clkname, sizeof(clkname),
636 "usb_host_hs_utmi_p%d_clk", i + 1);
637
638 /* If a clock is not found we won't bail out as not all
639 * platforms have all clocks and we can function without
640 * them
641 */
642 omap->utmi_clk[i] = clk_get(dev, clkname);
643 if (IS_ERR(omap->utmi_clk[i]))
644 dev_dbg(dev, "Failed to get clock : %s : %ld\n",
645 clkname, PTR_ERR(omap->utmi_clk[i]));
Roger Quadros340c64e2012-11-12 16:53:16 +0200646
647 snprintf(clkname, sizeof(clkname),
648 "usb_host_hs_hsic480m_p%d_clk", i + 1);
649 omap->hsic480m_clk[i] = clk_get(dev, clkname);
650 if (IS_ERR(omap->hsic480m_clk[i]))
651 dev_dbg(dev, "Failed to get clock : %s : %ld\n",
652 clkname, PTR_ERR(omap->hsic480m_clk[i]));
653
654 snprintf(clkname, sizeof(clkname),
655 "usb_host_hs_hsic60m_p%d_clk", i + 1);
656 omap->hsic60m_clk[i] = clk_get(dev, clkname);
657 if (IS_ERR(omap->hsic60m_clk[i]))
658 dev_dbg(dev, "Failed to get clock : %s : %ld\n",
659 clkname, PTR_ERR(omap->hsic60m_clk[i]));
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530660 }
661
662 if (is_ehci_phy_mode(pdata->port_mode[0])) {
Roger Quadrosa8c4e9e2012-11-28 16:31:29 +0200663 /* for OMAP3, clk_set_parent fails */
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200664 ret = clk_set_parent(omap->utmi_p1_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530665 omap->xclk60mhsp1_ck);
666 if (ret != 0)
Roger Quadrosa8c4e9e2012-11-28 16:31:29 +0200667 dev_dbg(dev, "xclk60mhsp1_ck set parent failed: %d\n",
668 ret);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530669 } else if (is_ehci_tll_mode(pdata->port_mode[0])) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200670 ret = clk_set_parent(omap->utmi_p1_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530671 omap->init_60m_fclk);
672 if (ret != 0)
Roger Quadrosa8c4e9e2012-11-28 16:31:29 +0200673 dev_dbg(dev, "P0 init_60m_fclk set parent failed: %d\n",
674 ret);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530675 }
676
677 if (is_ehci_phy_mode(pdata->port_mode[1])) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200678 ret = clk_set_parent(omap->utmi_p2_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530679 omap->xclk60mhsp2_ck);
680 if (ret != 0)
Roger Quadrosa8c4e9e2012-11-28 16:31:29 +0200681 dev_dbg(dev, "xclk60mhsp2_ck set parent failed: %d\n",
682 ret);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530683 } else if (is_ehci_tll_mode(pdata->port_mode[1])) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200684 ret = clk_set_parent(omap->utmi_p2_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530685 omap->init_60m_fclk);
686 if (ret != 0)
Roger Quadrosa8c4e9e2012-11-28 16:31:29 +0200687 dev_dbg(dev, "P1 init_60m_fclk set parent failed: %d\n",
688 ret);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530689 }
690
Govindraj.Rf0447a62012-02-15 15:53:34 +0530691 omap_usbhs_init(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530692 ret = omap_usbhs_alloc_children(pdev);
693 if (ret) {
694 dev_err(dev, "omap_usbhs_alloc_children failed\n");
695 goto err_alloc;
696 }
697
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200698 return 0;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530699
700err_alloc:
Roger Quadros340c64e2012-11-12 16:53:16 +0200701 for (i = 0; i < omap->nports; i++) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200702 if (!IS_ERR(omap->utmi_clk[i]))
703 clk_put(omap->utmi_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200704 if (!IS_ERR(omap->hsic60m_clk[i]))
705 clk_put(omap->hsic60m_clk[i]);
706 if (!IS_ERR(omap->hsic480m_clk[i]))
707 clk_put(omap->hsic480m_clk[i]);
708 }
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200709
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530710 clk_put(omap->init_60m_fclk);
711
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200712err_init60m:
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530713 clk_put(omap->xclk60mhsp2_ck);
714
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200715err_xclk60mhsp2:
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530716 clk_put(omap->xclk60mhsp1_ck);
717
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200718err_xclk60mhsp1:
719 clk_put(omap->utmi_p2_gfclk);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530720
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200721err_p2_gfclk:
722 clk_put(omap->utmi_p1_gfclk);
723
724err_p1_gfclk:
725 if (!IS_ERR(omap->ehci_logic_fck))
726 clk_put(omap->ehci_logic_fck);
727
728err_mem:
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530729 pm_runtime_disable(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530730
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530731 return ret;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530732}
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530733
734/**
735 * usbhs_omap_remove - shutdown processing for UHH & TLL HCDs
736 * @pdev: USB Host Controller being removed
737 *
738 * Reverses the effect of usbhs_omap_probe().
739 */
Bill Pemberton4740f732012-11-19 13:26:01 -0500740static int usbhs_omap_remove(struct platform_device *pdev)
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530741{
742 struct usbhs_hcd_omap *omap = platform_get_drvdata(pdev);
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200743 int i;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530744
Roger Quadros340c64e2012-11-12 16:53:16 +0200745 for (i = 0; i < omap->nports; i++) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200746 if (!IS_ERR(omap->utmi_clk[i]))
747 clk_put(omap->utmi_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200748 if (!IS_ERR(omap->hsic60m_clk[i]))
749 clk_put(omap->hsic60m_clk[i]);
750 if (!IS_ERR(omap->hsic480m_clk[i]))
751 clk_put(omap->hsic480m_clk[i]);
752 }
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200753
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530754 clk_put(omap->init_60m_fclk);
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200755 clk_put(omap->utmi_p1_gfclk);
756 clk_put(omap->utmi_p2_gfclk);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530757 clk_put(omap->xclk60mhsp2_ck);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530758 clk_put(omap->xclk60mhsp1_ck);
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200759
760 if (!IS_ERR(omap->ehci_logic_fck))
761 clk_put(omap->ehci_logic_fck);
762
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530763 pm_runtime_disable(&pdev->dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530764
765 return 0;
766}
767
768static const struct dev_pm_ops usbhsomap_dev_pm_ops = {
769 .runtime_suspend = usbhs_runtime_suspend,
770 .runtime_resume = usbhs_runtime_resume,
771};
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530772
773static struct platform_driver usbhs_omap_driver = {
774 .driver = {
775 .name = (char *)usbhs_driver_name,
776 .owner = THIS_MODULE,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530777 .pm = &usbhsomap_dev_pm_ops,
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530778 },
Roger Quadrosab3f2a82013-01-02 15:59:28 +0200779 .remove = usbhs_omap_remove,
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530780};
781
782MODULE_AUTHOR("Keshava Munegowda <keshava_mgowda@ti.com>");
783MODULE_ALIAS("platform:" USBHS_DRIVER_NAME);
784MODULE_LICENSE("GPL v2");
785MODULE_DESCRIPTION("usb host common core driver for omap EHCI and OHCI");
786
787static int __init omap_usbhs_drvinit(void)
788{
789 return platform_driver_probe(&usbhs_omap_driver, usbhs_omap_probe);
790}
791
792/*
793 * init before ehci and ohci drivers;
794 * The usbhs core driver should be initialized much before
795 * the omap ehci and ohci probe functions are called.
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530796 * This usbhs core driver should be initialized after
797 * usb tll driver
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530798 */
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530799fs_initcall_sync(omap_usbhs_drvinit);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530800
801static void __exit omap_usbhs_drvexit(void)
802{
803 platform_driver_unregister(&usbhs_omap_driver);
804}
805module_exit(omap_usbhs_drvexit);