blob: 33a9234b701c51b7c30c899c026fc92f6d4a0771 [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 *
Roger Quadros03a8f432013-04-09 11:39:18 +03004 * Copyright (C) 2011-2013 Texas Instruments Incorporated - http://www.ti.com
Keshava Munegowda17cdd292011-03-01 20:08:17 +05305 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
Roger Quadros03a8f432013-04-09 11:39:18 +03006 * Author: Roger Quadros <rogerq@ti.com>
Keshava Munegowda17cdd292011-03-01 20:08:17 +05307 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 of
10 * the License as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20#include <linux/kernel.h>
Ming Lei417e2062011-08-19 16:57:54 +080021#include <linux/module.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053022#include <linux/types.h>
23#include <linux/slab.h>
24#include <linux/delay.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053025#include <linux/clk.h>
26#include <linux/dma-mapping.h>
Russ Dillc05995c2012-06-14 09:24:21 -070027#include <linux/gpio.h>
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070028#include <linux/platform_device.h>
29#include <linux/platform_data/usb-omap.h>
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +053030#include <linux/pm_runtime.h>
Roger Quadros03a8f432013-04-09 11:39:18 +030031#include <linux/of.h>
32#include <linux/of_platform.h>
Sachin Kamatd011c452013-04-09 16:16:36 +053033#include <linux/err.h>
Keshava Munegowda17cdd292011-03-01 20:08:17 +053034
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070035#include "omap-usb.h"
36
Keshava Munegowdaa6d3a662011-10-11 13:21:51 +053037#define USBHS_DRIVER_NAME "usbhs_omap"
Keshava Munegowda17cdd292011-03-01 20:08:17 +053038#define OMAP_EHCI_DEVICE "ehci-omap"
39#define OMAP_OHCI_DEVICE "ohci-omap3"
40
41/* OMAP USBHOST Register addresses */
42
Keshava Munegowda17cdd292011-03-01 20:08:17 +053043/* UHH Register Set */
44#define OMAP_UHH_REVISION (0x00)
45#define OMAP_UHH_SYSCONFIG (0x10)
46#define OMAP_UHH_SYSCONFIG_MIDLEMODE (1 << 12)
47#define OMAP_UHH_SYSCONFIG_CACTIVITY (1 << 8)
48#define OMAP_UHH_SYSCONFIG_SIDLEMODE (1 << 3)
49#define OMAP_UHH_SYSCONFIG_ENAWAKEUP (1 << 2)
50#define OMAP_UHH_SYSCONFIG_SOFTRESET (1 << 1)
51#define OMAP_UHH_SYSCONFIG_AUTOIDLE (1 << 0)
52
53#define OMAP_UHH_SYSSTATUS (0x14)
54#define OMAP_UHH_HOSTCONFIG (0x40)
55#define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS (1 << 0)
56#define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS (1 << 0)
57#define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS (1 << 11)
58#define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS (1 << 12)
59#define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN (1 << 2)
60#define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN (1 << 3)
61#define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN (1 << 4)
62#define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN (1 << 5)
63#define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS (1 << 8)
64#define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS (1 << 9)
65#define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS (1 << 10)
66#define OMAP4_UHH_HOSTCONFIG_APP_START_CLK (1 << 31)
67
68/* OMAP4-specific defines */
69#define OMAP4_UHH_SYSCONFIG_IDLEMODE_CLEAR (3 << 2)
70#define OMAP4_UHH_SYSCONFIG_NOIDLE (1 << 2)
71#define OMAP4_UHH_SYSCONFIG_STDBYMODE_CLEAR (3 << 4)
72#define OMAP4_UHH_SYSCONFIG_NOSTDBY (1 << 4)
73#define OMAP4_UHH_SYSCONFIG_SOFTRESET (1 << 0)
74
75#define OMAP4_P1_MODE_CLEAR (3 << 16)
76#define OMAP4_P1_MODE_TLL (1 << 16)
77#define OMAP4_P1_MODE_HSIC (3 << 16)
78#define OMAP4_P2_MODE_CLEAR (3 << 18)
79#define OMAP4_P2_MODE_TLL (1 << 18)
80#define OMAP4_P2_MODE_HSIC (3 << 18)
81
Keshava Munegowda17cdd292011-03-01 20:08:17 +053082#define OMAP_UHH_DEBUG_CSR (0x44)
83
84/* Values of UHH_REVISION - Note: these are not given in the TRM */
85#define OMAP_USBHS_REV1 0x00000010 /* OMAP3 */
86#define OMAP_USBHS_REV2 0x50700100 /* OMAP4 */
87
88#define is_omap_usbhs_rev1(x) (x->usbhs_rev == OMAP_USBHS_REV1)
89#define is_omap_usbhs_rev2(x) (x->usbhs_rev == OMAP_USBHS_REV2)
90
91#define is_ehci_phy_mode(x) (x == OMAP_EHCI_PORT_MODE_PHY)
92#define is_ehci_tll_mode(x) (x == OMAP_EHCI_PORT_MODE_TLL)
93#define is_ehci_hsic_mode(x) (x == OMAP_EHCI_PORT_MODE_HSIC)
94
95
96struct usbhs_hcd_omap {
Roger Quadrosd7eaf862012-11-08 18:04:26 +020097 int nports;
Roger Quadros06ba7dc2012-11-08 17:40:25 +020098 struct clk **utmi_clk;
Roger Quadros340c64e2012-11-12 16:53:16 +020099 struct clk **hsic60m_clk;
100 struct clk **hsic480m_clk;
Roger Quadrosd7eaf862012-11-08 18:04:26 +0200101
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530102 struct clk *xclk60mhsp1_ck;
103 struct clk *xclk60mhsp2_ck;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200104 struct clk *utmi_p1_gfclk;
105 struct clk *utmi_p2_gfclk;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530106 struct clk *init_60m_fclk;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530107 struct clk *ehci_logic_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530108
109 void __iomem *uhh_base;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530110
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200111 struct usbhs_omap_platform_data *pdata;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530112
113 u32 usbhs_rev;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530114};
115/*-------------------------------------------------------------------------*/
116
Sachin Kamat7844b982013-08-23 16:42:58 +0530117static const char usbhs_driver_name[] = USBHS_DRIVER_NAME;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530118static u64 usbhs_dmamask = DMA_BIT_MASK(32);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530119
120/*-------------------------------------------------------------------------*/
121
122static inline void usbhs_write(void __iomem *base, u32 reg, u32 val)
123{
Victor Kamensky9981a312013-11-16 02:01:14 +0200124 writel_relaxed(val, base + reg);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530125}
126
127static inline u32 usbhs_read(void __iomem *base, u32 reg)
128{
Victor Kamensky9981a312013-11-16 02:01:14 +0200129 return readl_relaxed(base + reg);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530130}
131
132static inline void usbhs_writeb(void __iomem *base, u8 reg, u8 val)
133{
Victor Kamensky9981a312013-11-16 02:01:14 +0200134 writeb_relaxed(val, base + reg);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530135}
136
137static inline u8 usbhs_readb(void __iomem *base, u8 reg)
138{
Victor Kamensky9981a312013-11-16 02:01:14 +0200139 return readb_relaxed(base + reg);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530140}
141
142/*-------------------------------------------------------------------------*/
143
Roger Quadros03a8f432013-04-09 11:39:18 +0300144/**
145 * Map 'enum usbhs_omap_port_mode' found in <linux/platform_data/usb-omap.h>
146 * to the device tree binding portN-mode found in
147 * 'Documentation/devicetree/bindings/mfd/omap-usb-host.txt'
148 */
149static const char * const port_modes[] = {
150 [OMAP_USBHS_PORT_MODE_UNUSED] = "",
151 [OMAP_EHCI_PORT_MODE_PHY] = "ehci-phy",
152 [OMAP_EHCI_PORT_MODE_TLL] = "ehci-tll",
153 [OMAP_EHCI_PORT_MODE_HSIC] = "ehci-hsic",
154 [OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0] = "ohci-phy-6pin-datse0",
155 [OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM] = "ohci-phy-6pin-dpdm",
156 [OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0] = "ohci-phy-3pin-datse0",
157 [OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM] = "ohci-phy-4pin-dpdm",
158 [OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0] = "ohci-tll-6pin-datse0",
159 [OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM] = "ohci-tll-6pin-dpdm",
160 [OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0] = "ohci-tll-3pin-datse0",
161 [OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM] = "ohci-tll-4pin-dpdm",
162 [OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0] = "ohci-tll-2pin-datse0",
163 [OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM] = "ohci-tll-2pin-dpdm",
164};
165
166/**
167 * omap_usbhs_get_dt_port_mode - Get the 'enum usbhs_omap_port_mode'
168 * from the port mode string.
169 * @mode: The port mode string, usually obtained from device tree.
170 *
171 * The function returns the 'enum usbhs_omap_port_mode' that matches the
172 * provided port mode string as per the port_modes table.
173 * If no match is found it returns -ENODEV
174 */
175static const int omap_usbhs_get_dt_port_mode(const char *mode)
176{
177 int i;
178
179 for (i = 0; i < ARRAY_SIZE(port_modes); i++) {
180 if (!strcmp(mode, port_modes[i]))
181 return i;
182 }
183
184 return -ENODEV;
185}
186
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530187static struct platform_device *omap_usbhs_alloc_child(const char *name,
188 struct resource *res, int num_resources, void *pdata,
189 size_t pdata_size, struct device *dev)
190{
191 struct platform_device *child;
192 int ret;
193
194 child = platform_device_alloc(name, 0);
195
196 if (!child) {
197 dev_err(dev, "platform_device_alloc %s failed\n", name);
198 goto err_end;
199 }
200
201 ret = platform_device_add_resources(child, res, num_resources);
202 if (ret) {
203 dev_err(dev, "platform_device_add_resources failed\n");
204 goto err_alloc;
205 }
206
207 ret = platform_device_add_data(child, pdata, pdata_size);
208 if (ret) {
209 dev_err(dev, "platform_device_add_data failed\n");
210 goto err_alloc;
211 }
212
213 child->dev.dma_mask = &usbhs_dmamask;
Govindraj.Rcbb8c222012-02-15 12:27:50 +0530214 dma_set_coherent_mask(&child->dev, DMA_BIT_MASK(32));
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530215 child->dev.parent = dev;
216
217 ret = platform_device_add(child);
218 if (ret) {
219 dev_err(dev, "platform_device_add failed\n");
220 goto err_alloc;
221 }
222
223 return child;
224
225err_alloc:
226 platform_device_put(child);
227
228err_end:
229 return NULL;
230}
231
232static int omap_usbhs_alloc_children(struct platform_device *pdev)
233{
234 struct device *dev = &pdev->dev;
Jingoo Han334a41ce2013-07-30 17:10:05 +0900235 struct usbhs_omap_platform_data *pdata = dev_get_platdata(dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530236 struct platform_device *ehci;
237 struct platform_device *ohci;
238 struct resource *res;
239 struct resource resources[2];
240 int ret;
241
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530242 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ehci");
243 if (!res) {
244 dev_err(dev, "EHCI get resource IORESOURCE_MEM failed\n");
245 ret = -ENODEV;
246 goto err_end;
247 }
248 resources[0] = *res;
249
250 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ehci-irq");
251 if (!res) {
252 dev_err(dev, " EHCI get resource IORESOURCE_IRQ failed\n");
253 ret = -ENODEV;
254 goto err_end;
255 }
256 resources[1] = *res;
257
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200258 ehci = omap_usbhs_alloc_child(OMAP_EHCI_DEVICE, resources, 2, pdata,
259 sizeof(*pdata), dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530260
261 if (!ehci) {
262 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800263 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530264 goto err_end;
265 }
266
267 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
268 if (!res) {
269 dev_err(dev, "OHCI get resource IORESOURCE_MEM failed\n");
270 ret = -ENODEV;
271 goto err_ehci;
272 }
273 resources[0] = *res;
274
275 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ohci-irq");
276 if (!res) {
277 dev_err(dev, "OHCI get resource IORESOURCE_IRQ failed\n");
278 ret = -ENODEV;
279 goto err_ehci;
280 }
281 resources[1] = *res;
282
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200283 ohci = omap_usbhs_alloc_child(OMAP_OHCI_DEVICE, resources, 2, pdata,
284 sizeof(*pdata), dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530285 if (!ohci) {
286 dev_err(dev, "omap_usbhs_alloc_child failed\n");
Axel Lind9107742011-05-14 14:15:36 +0800287 ret = -ENOMEM;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530288 goto err_ehci;
289 }
290
291 return 0;
292
293err_ehci:
Axel Lind9107742011-05-14 14:15:36 +0800294 platform_device_unregister(ehci);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530295
296err_end:
297 return ret;
298}
299
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530300static bool is_ohci_port(enum usbhs_omap_port_mode pmode)
301{
302 switch (pmode) {
303 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
304 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM:
305 case OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0:
306 case OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM:
307 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0:
308 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM:
309 case OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0:
310 case OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM:
311 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0:
312 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM:
313 return true;
314
315 default:
316 return false;
317 }
318}
319
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530320static int usbhs_runtime_resume(struct device *dev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530321{
322 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200323 struct usbhs_omap_platform_data *pdata = omap->pdata;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200324 int i, r;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530325
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530326 dev_dbg(dev, "usbhs_runtime_resume\n");
327
Roger Quadros9f4a3ec2013-01-29 15:00:03 +0200328 omap_tll_enable(pdata);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530329
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200330 if (!IS_ERR(omap->ehci_logic_fck))
Roger Quadrosb0e59922013-10-15 15:30:34 +0300331 clk_prepare_enable(omap->ehci_logic_fck);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530332
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200333 for (i = 0; i < omap->nports; i++) {
Roger Quadros340c64e2012-11-12 16:53:16 +0200334 switch (pdata->port_mode[i]) {
335 case OMAP_EHCI_PORT_MODE_HSIC:
336 if (!IS_ERR(omap->hsic60m_clk[i])) {
Roger Quadrosb0e59922013-10-15 15:30:34 +0300337 r = clk_prepare_enable(omap->hsic60m_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200338 if (r) {
339 dev_err(dev,
340 "Can't enable port %d hsic60m clk:%d\n",
341 i, r);
342 }
343 }
Keshava Munegowda760189b2012-07-16 19:01:10 +0530344
Roger Quadros340c64e2012-11-12 16:53:16 +0200345 if (!IS_ERR(omap->hsic480m_clk[i])) {
Roger Quadrosb0e59922013-10-15 15:30:34 +0300346 r = clk_prepare_enable(omap->hsic480m_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200347 if (r) {
348 dev_err(dev,
349 "Can't enable port %d hsic480m clk:%d\n",
350 i, r);
351 }
352 }
353 /* Fall through as HSIC mode needs utmi_clk */
354
355 case OMAP_EHCI_PORT_MODE_TLL:
356 if (!IS_ERR(omap->utmi_clk[i])) {
Roger Quadrosb0e59922013-10-15 15:30:34 +0300357 r = clk_prepare_enable(omap->utmi_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200358 if (r) {
359 dev_err(dev,
360 "Can't enable port %d clk : %d\n",
361 i, r);
362 }
363 }
364 break;
365 default:
366 break;
367 }
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200368 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530369
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530370 return 0;
371}
372
373static int usbhs_runtime_suspend(struct device *dev)
374{
375 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200376 struct usbhs_omap_platform_data *pdata = omap->pdata;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200377 int i;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530378
379 dev_dbg(dev, "usbhs_runtime_suspend\n");
380
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200381 for (i = 0; i < omap->nports; i++) {
Roger Quadros340c64e2012-11-12 16:53:16 +0200382 switch (pdata->port_mode[i]) {
383 case OMAP_EHCI_PORT_MODE_HSIC:
384 if (!IS_ERR(omap->hsic60m_clk[i]))
Roger Quadrosb0e59922013-10-15 15:30:34 +0300385 clk_disable_unprepare(omap->hsic60m_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200386
387 if (!IS_ERR(omap->hsic480m_clk[i]))
Roger Quadrosb0e59922013-10-15 15:30:34 +0300388 clk_disable_unprepare(omap->hsic480m_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200389 /* Fall through as utmi_clks were used in HSIC mode */
390
391 case OMAP_EHCI_PORT_MODE_TLL:
392 if (!IS_ERR(omap->utmi_clk[i]))
Roger Quadrosb0e59922013-10-15 15:30:34 +0300393 clk_disable_unprepare(omap->utmi_clk[i]);
Roger Quadros340c64e2012-11-12 16:53:16 +0200394 break;
395 default:
396 break;
397 }
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200398 }
Keshava Munegowda760189b2012-07-16 19:01:10 +0530399
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200400 if (!IS_ERR(omap->ehci_logic_fck))
Roger Quadrosb0e59922013-10-15 15:30:34 +0300401 clk_disable_unprepare(omap->ehci_logic_fck);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530402
Roger Quadros9f4a3ec2013-01-29 15:00:03 +0200403 omap_tll_disable(pdata);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530404
405 return 0;
406}
407
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200408static unsigned omap_usbhs_rev1_hostconfig(struct usbhs_hcd_omap *omap,
409 unsigned reg)
410{
411 struct usbhs_omap_platform_data *pdata = omap->pdata;
412 int i;
413
414 for (i = 0; i < omap->nports; i++) {
415 switch (pdata->port_mode[i]) {
416 case OMAP_USBHS_PORT_MODE_UNUSED:
417 reg &= ~(OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS << i);
418 break;
419 case OMAP_EHCI_PORT_MODE_PHY:
420 if (pdata->single_ulpi_bypass)
421 break;
422
423 if (i == 0)
424 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
425 else
426 reg &= ~(OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
427 << (i-1));
428 break;
429 default:
430 if (pdata->single_ulpi_bypass)
431 break;
432
433 if (i == 0)
434 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
435 else
436 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
437 << (i-1);
438 break;
439 }
440 }
441
442 if (pdata->single_ulpi_bypass) {
443 /* bypass ULPI only if none of the ports use PHY mode */
444 reg |= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
445
446 for (i = 0; i < omap->nports; i++) {
447 if (is_ehci_phy_mode(pdata->port_mode[i])) {
Michael Welling46de8ff2014-07-28 18:01:04 -0500448 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200449 break;
450 }
451 }
452 }
453
454 return reg;
455}
456
457static unsigned omap_usbhs_rev2_hostconfig(struct usbhs_hcd_omap *omap,
458 unsigned reg)
459{
460 struct usbhs_omap_platform_data *pdata = omap->pdata;
461 int i;
462
463 for (i = 0; i < omap->nports; i++) {
464 /* Clear port mode fields for PHY mode */
465 reg &= ~(OMAP4_P1_MODE_CLEAR << 2 * i);
466
467 if (is_ehci_tll_mode(pdata->port_mode[i]) ||
468 (is_ohci_port(pdata->port_mode[i])))
469 reg |= OMAP4_P1_MODE_TLL << 2 * i;
470 else if (is_ehci_hsic_mode(pdata->port_mode[i]))
471 reg |= OMAP4_P1_MODE_HSIC << 2 * i;
472 }
473
474 return reg;
475}
476
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530477static void omap_usbhs_init(struct device *dev)
478{
479 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530480 unsigned reg;
481
482 dev_dbg(dev, "starting TI HSUSB Controller\n");
483
Keshava Munegowda760189b2012-07-16 19:01:10 +0530484 pm_runtime_get_sync(dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530485
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530486 reg = usbhs_read(omap->uhh_base, OMAP_UHH_HOSTCONFIG);
487 /* setup ULPI bypass and burst configurations */
488 reg |= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
489 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
490 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN);
491 reg |= OMAP4_UHH_HOSTCONFIG_APP_START_CLK;
492 reg &= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN;
493
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200494 switch (omap->usbhs_rev) {
495 case OMAP_USBHS_REV1:
Roger Quadros26bacba2013-02-27 15:19:24 +0200496 reg = omap_usbhs_rev1_hostconfig(omap, reg);
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200497 break;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530498
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200499 case OMAP_USBHS_REV2:
Roger Quadros26bacba2013-02-27 15:19:24 +0200500 reg = omap_usbhs_rev2_hostconfig(omap, reg);
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200501 break;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530502
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200503 default: /* newer revisions */
Roger Quadros26bacba2013-02-27 15:19:24 +0200504 reg = omap_usbhs_rev2_hostconfig(omap, reg);
Roger Quadrosc4df00a2012-11-12 16:32:01 +0200505 break;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530506 }
507
508 usbhs_write(omap->uhh_base, OMAP_UHH_HOSTCONFIG, reg);
509 dev_dbg(dev, "UHH setup done, uhh_hostconfig=%x\n", reg);
510
Keshava Munegowda760189b2012-07-16 19:01:10 +0530511 pm_runtime_put_sync(dev);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530512}
513
Roger Quadros03a8f432013-04-09 11:39:18 +0300514static int usbhs_omap_get_dt_pdata(struct device *dev,
515 struct usbhs_omap_platform_data *pdata)
516{
517 int ret, i;
518 struct device_node *node = dev->of_node;
519
520 ret = of_property_read_u32(node, "num-ports", &pdata->nports);
521 if (ret)
522 pdata->nports = 0;
523
524 if (pdata->nports > OMAP3_HS_USB_PORTS) {
525 dev_warn(dev, "Too many num_ports <%d> in device tree. Max %d\n",
526 pdata->nports, OMAP3_HS_USB_PORTS);
527 return -ENODEV;
528 }
529
530 /* get port modes */
531 for (i = 0; i < OMAP3_HS_USB_PORTS; i++) {
532 char prop[11];
533 const char *mode;
534
535 pdata->port_mode[i] = OMAP_USBHS_PORT_MODE_UNUSED;
536
537 snprintf(prop, sizeof(prop), "port%d-mode", i + 1);
538 ret = of_property_read_string(node, prop, &mode);
539 if (ret < 0)
540 continue;
541
542 ret = omap_usbhs_get_dt_port_mode(mode);
543 if (ret < 0) {
544 dev_warn(dev, "Invalid port%d-mode \"%s\" in device tree\n",
545 i, mode);
546 return -ENODEV;
547 }
548
549 dev_dbg(dev, "port%d-mode: %s -> %d\n", i, mode, ret);
550 pdata->port_mode[i] = ret;
551 }
552
553 /* get flags */
554 pdata->single_ulpi_bypass = of_property_read_bool(node,
555 "single-ulpi-bypass");
556
557 return 0;
558}
559
Krzysztof Kozlowskia7cfee82014-05-13 12:58:47 +0200560static const struct of_device_id usbhs_child_match_table[] = {
Roger Quadros03a8f432013-04-09 11:39:18 +0300561 { .compatible = "ti,omap-ehci", },
562 { .compatible = "ti,omap-ohci", },
563 { }
564};
565
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530566/**
567 * usbhs_omap_probe - initialize TI-based HCDs
568 *
569 * Allocates basic resources for this USB host controller.
570 */
Bill Pembertonf791be42012-11-19 13:23:04 -0500571static int usbhs_omap_probe(struct platform_device *pdev)
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530572{
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530573 struct device *dev = &pdev->dev;
Jingoo Han334a41ce2013-07-30 17:10:05 +0900574 struct usbhs_omap_platform_data *pdata = dev_get_platdata(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530575 struct usbhs_hcd_omap *omap;
576 struct resource *res;
577 int ret = 0;
578 int i;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200579 bool need_logic_fck;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530580
Roger Quadros03a8f432013-04-09 11:39:18 +0300581 if (dev->of_node) {
582 /* For DT boot we populate platform data from OF node */
583 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
584 if (!pdata)
585 return -ENOMEM;
586
587 ret = usbhs_omap_get_dt_pdata(dev, pdata);
588 if (ret)
589 return ret;
590
591 dev->platform_data = pdata;
592 }
593
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530594 if (!pdata) {
595 dev_err(dev, "Missing platform data\n");
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200596 return -ENODEV;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530597 }
598
Roger Quadros03a8f432013-04-09 11:39:18 +0300599 if (pdata->nports > OMAP3_HS_USB_PORTS) {
600 dev_info(dev, "Too many num_ports <%d> in platform_data. Max %d\n",
601 pdata->nports, OMAP3_HS_USB_PORTS);
602 return -ENODEV;
603 }
604
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200605 omap = devm_kzalloc(dev, sizeof(*omap), GFP_KERNEL);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530606 if (!omap) {
607 dev_err(dev, "Memory allocation failed\n");
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200608 return -ENOMEM;
609 }
610
Roger Quadros03a8f432013-04-09 11:39:18 +0300611 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sachin Kamatd011c452013-04-09 16:16:36 +0530612 omap->uhh_base = devm_ioremap_resource(dev, res);
613 if (IS_ERR(omap->uhh_base))
614 return PTR_ERR(omap->uhh_base);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530615
Roger Quadros9d9c6ae2013-02-13 13:16:25 +0200616 omap->pdata = pdata;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530617
Roger Quadros9f4a3ec2013-01-29 15:00:03 +0200618 /* Initialize the TLL subsystem */
619 omap_tll_init(pdata);
620
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530621 pm_runtime_enable(dev);
622
Roger Quadrosd7eaf862012-11-08 18:04:26 +0200623 platform_set_drvdata(pdev, omap);
624 pm_runtime_get_sync(dev);
625
626 omap->usbhs_rev = usbhs_read(omap->uhh_base, OMAP_UHH_REVISION);
627
628 /* we need to call runtime suspend before we update omap->nports
629 * to prevent unbalanced clk_disable()
630 */
631 pm_runtime_put_sync(dev);
632
Roger Quadrosccac71a2012-11-08 19:18:08 +0200633 /*
634 * If platform data contains nports then use that
635 * else make out number of ports from USBHS revision
636 */
637 if (pdata->nports) {
638 omap->nports = pdata->nports;
639 } else {
640 switch (omap->usbhs_rev) {
641 case OMAP_USBHS_REV1:
642 omap->nports = 3;
643 break;
644 case OMAP_USBHS_REV2:
645 omap->nports = 2;
646 break;
647 default:
648 omap->nports = OMAP3_HS_USB_PORTS;
649 dev_dbg(dev,
650 "USB HOST Rev:0x%d not recognized, assuming %d ports\n",
651 omap->usbhs_rev, omap->nports);
652 break;
653 }
Roger Quadros662e4692013-01-08 16:01:52 +0200654 pdata->nports = omap->nports;
Roger Quadrosd7eaf862012-11-08 18:04:26 +0200655 }
656
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200657 i = sizeof(struct clk *) * omap->nports;
658 omap->utmi_clk = devm_kzalloc(dev, i, GFP_KERNEL);
Roger Quadros340c64e2012-11-12 16:53:16 +0200659 omap->hsic480m_clk = devm_kzalloc(dev, i, GFP_KERNEL);
660 omap->hsic60m_clk = devm_kzalloc(dev, i, GFP_KERNEL);
661
662 if (!omap->utmi_clk || !omap->hsic480m_clk || !omap->hsic60m_clk) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200663 dev_err(dev, "Memory allocation failed\n");
664 ret = -ENOMEM;
665 goto err_mem;
666 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530667
Roger Quadros3aca4462014-02-27 16:18:23 +0200668 /* Set all clocks as invalid to begin with */
669 omap->ehci_logic_fck = ERR_PTR(-ENODEV);
670 omap->init_60m_fclk = ERR_PTR(-ENODEV);
671 omap->utmi_p1_gfclk = ERR_PTR(-ENODEV);
672 omap->utmi_p2_gfclk = ERR_PTR(-ENODEV);
673 omap->xclk60mhsp1_ck = ERR_PTR(-ENODEV);
674 omap->xclk60mhsp2_ck = ERR_PTR(-ENODEV);
675
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200676 for (i = 0; i < omap->nports; i++) {
Roger Quadros3aca4462014-02-27 16:18:23 +0200677 omap->utmi_clk[i] = ERR_PTR(-ENODEV);
678 omap->hsic480m_clk[i] = ERR_PTR(-ENODEV);
679 omap->hsic60m_clk[i] = ERR_PTR(-ENODEV);
680 }
681
682 /* for OMAP3 i.e. USBHS REV1 */
683 if (omap->usbhs_rev == OMAP_USBHS_REV1) {
684 need_logic_fck = false;
685 for (i = 0; i < omap->nports; i++) {
686 if (is_ehci_phy_mode(pdata->port_mode[i]) ||
687 is_ehci_tll_mode(pdata->port_mode[i]) ||
688 is_ehci_hsic_mode(pdata->port_mode[i]))
689
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200690 need_logic_fck |= true;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200691 }
Roger Quadros3aca4462014-02-27 16:18:23 +0200692
693 if (need_logic_fck) {
694 omap->ehci_logic_fck = devm_clk_get(dev,
Roger Quadros775bb072014-02-27 16:18:25 +0200695 "usbhost_120m_fck");
Roger Quadros3aca4462014-02-27 16:18:23 +0200696 if (IS_ERR(omap->ehci_logic_fck)) {
697 ret = PTR_ERR(omap->ehci_logic_fck);
Roger Quadros775bb072014-02-27 16:18:25 +0200698 dev_err(dev, "usbhost_120m_fck failed:%d\n",
699 ret);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200700 goto err_mem;
Roger Quadros3aca4462014-02-27 16:18:23 +0200701 }
702 }
703 goto initialize;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200704 }
705
Roger Quadros3aca4462014-02-27 16:18:23 +0200706 /* for OMAP4+ i.e. USBHS REV2+ */
Roger Quadros61b70252014-02-12 12:18:42 +0200707 omap->utmi_p1_gfclk = devm_clk_get(dev, "utmi_p1_gfclk");
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200708 if (IS_ERR(omap->utmi_p1_gfclk)) {
709 ret = PTR_ERR(omap->utmi_p1_gfclk);
710 dev_err(dev, "utmi_p1_gfclk failed error:%d\n", ret);
Roger Quadros61b70252014-02-12 12:18:42 +0200711 goto err_mem;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200712 }
713
Roger Quadros61b70252014-02-12 12:18:42 +0200714 omap->utmi_p2_gfclk = devm_clk_get(dev, "utmi_p2_gfclk");
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200715 if (IS_ERR(omap->utmi_p2_gfclk)) {
716 ret = PTR_ERR(omap->utmi_p2_gfclk);
717 dev_err(dev, "utmi_p2_gfclk failed error:%d\n", ret);
Roger Quadros61b70252014-02-12 12:18:42 +0200718 goto err_mem;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530719 }
720
Roger Quadros051fc062014-02-27 16:18:26 +0200721 omap->xclk60mhsp1_ck = devm_clk_get(dev, "refclk_60m_ext_p1");
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530722 if (IS_ERR(omap->xclk60mhsp1_ck)) {
723 ret = PTR_ERR(omap->xclk60mhsp1_ck);
Roger Quadros051fc062014-02-27 16:18:26 +0200724 dev_err(dev, "refclk_60m_ext_p1 failed error:%d\n", ret);
Roger Quadros61b70252014-02-12 12:18:42 +0200725 goto err_mem;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530726 }
727
Roger Quadros051fc062014-02-27 16:18:26 +0200728 omap->xclk60mhsp2_ck = devm_clk_get(dev, "refclk_60m_ext_p2");
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530729 if (IS_ERR(omap->xclk60mhsp2_ck)) {
730 ret = PTR_ERR(omap->xclk60mhsp2_ck);
Roger Quadros051fc062014-02-27 16:18:26 +0200731 dev_err(dev, "refclk_60m_ext_p2 failed error:%d\n", ret);
Roger Quadros61b70252014-02-12 12:18:42 +0200732 goto err_mem;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530733 }
734
Roger Quadros051fc062014-02-27 16:18:26 +0200735 omap->init_60m_fclk = devm_clk_get(dev, "refclk_60m_int");
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530736 if (IS_ERR(omap->init_60m_fclk)) {
737 ret = PTR_ERR(omap->init_60m_fclk);
Roger Quadros051fc062014-02-27 16:18:26 +0200738 dev_err(dev, "refclk_60m_int failed error:%d\n", ret);
Roger Quadros61b70252014-02-12 12:18:42 +0200739 goto err_mem;
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200740 }
741
742 for (i = 0; i < omap->nports; i++) {
Roger Quadros340c64e2012-11-12 16:53:16 +0200743 char clkname[30];
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200744
745 /* clock names are indexed from 1*/
746 snprintf(clkname, sizeof(clkname),
747 "usb_host_hs_utmi_p%d_clk", i + 1);
748
749 /* If a clock is not found we won't bail out as not all
750 * platforms have all clocks and we can function without
751 * them
752 */
Roger Quadros61b70252014-02-12 12:18:42 +0200753 omap->utmi_clk[i] = devm_clk_get(dev, clkname);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200754 if (IS_ERR(omap->utmi_clk[i])) {
755 ret = PTR_ERR(omap->utmi_clk[i]);
756 dev_err(dev, "Failed to get clock : %s : %d\n",
757 clkname, ret);
758 goto err_mem;
759 }
Roger Quadros340c64e2012-11-12 16:53:16 +0200760
761 snprintf(clkname, sizeof(clkname),
762 "usb_host_hs_hsic480m_p%d_clk", i + 1);
Roger Quadros61b70252014-02-12 12:18:42 +0200763 omap->hsic480m_clk[i] = devm_clk_get(dev, clkname);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200764 if (IS_ERR(omap->hsic480m_clk[i])) {
765 ret = PTR_ERR(omap->hsic480m_clk[i]);
766 dev_err(dev, "Failed to get clock : %s : %d\n",
767 clkname, ret);
768 goto err_mem;
769 }
Roger Quadros340c64e2012-11-12 16:53:16 +0200770
771 snprintf(clkname, sizeof(clkname),
772 "usb_host_hs_hsic60m_p%d_clk", i + 1);
Roger Quadros61b70252014-02-12 12:18:42 +0200773 omap->hsic60m_clk[i] = devm_clk_get(dev, clkname);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200774 if (IS_ERR(omap->hsic60m_clk[i])) {
775 ret = PTR_ERR(omap->hsic60m_clk[i]);
776 dev_err(dev, "Failed to get clock : %s : %d\n",
777 clkname, ret);
778 goto err_mem;
779 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530780 }
781
782 if (is_ehci_phy_mode(pdata->port_mode[0])) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200783 ret = clk_set_parent(omap->utmi_p1_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530784 omap->xclk60mhsp1_ck);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200785 if (ret != 0) {
786 dev_err(dev, "xclk60mhsp1_ck set parent failed: %d\n",
787 ret);
788 goto err_mem;
789 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530790 } else if (is_ehci_tll_mode(pdata->port_mode[0])) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200791 ret = clk_set_parent(omap->utmi_p1_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530792 omap->init_60m_fclk);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200793 if (ret != 0) {
794 dev_err(dev, "P0 init_60m_fclk set parent failed: %d\n",
795 ret);
796 goto err_mem;
797 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530798 }
799
800 if (is_ehci_phy_mode(pdata->port_mode[1])) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200801 ret = clk_set_parent(omap->utmi_p2_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530802 omap->xclk60mhsp2_ck);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200803 if (ret != 0) {
804 dev_err(dev, "xclk60mhsp2_ck set parent failed: %d\n",
805 ret);
806 goto err_mem;
807 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530808 } else if (is_ehci_tll_mode(pdata->port_mode[1])) {
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200809 ret = clk_set_parent(omap->utmi_p2_gfclk,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530810 omap->init_60m_fclk);
Roger Quadrosfedb2e72014-02-27 16:18:24 +0200811 if (ret != 0) {
812 dev_err(dev, "P1 init_60m_fclk set parent failed: %d\n",
813 ret);
814 goto err_mem;
815 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530816 }
817
Roger Quadros3aca4462014-02-27 16:18:23 +0200818initialize:
Govindraj.Rf0447a62012-02-15 15:53:34 +0530819 omap_usbhs_init(dev);
Roger Quadros03a8f432013-04-09 11:39:18 +0300820
821 if (dev->of_node) {
822 ret = of_platform_populate(dev->of_node,
823 usbhs_child_match_table, NULL, dev);
824
825 if (ret) {
826 dev_err(dev, "Failed to create DT children: %d\n", ret);
Roger Quadros61b70252014-02-12 12:18:42 +0200827 goto err_mem;
Roger Quadros03a8f432013-04-09 11:39:18 +0300828 }
829
830 } else {
831 ret = omap_usbhs_alloc_children(pdev);
832 if (ret) {
833 dev_err(dev, "omap_usbhs_alloc_children failed: %d\n",
834 ret);
Roger Quadros61b70252014-02-12 12:18:42 +0200835 goto err_mem;
Roger Quadros03a8f432013-04-09 11:39:18 +0300836 }
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530837 }
838
Roger Quadros27d4f2c2012-11-26 17:59:22 +0200839 return 0;
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530840
Roger Quadros06ba7dc2012-11-08 17:40:25 +0200841err_mem:
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530842 pm_runtime_disable(dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530843
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530844 return ret;
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530845}
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530846
Roger Quadros03a8f432013-04-09 11:39:18 +0300847static int usbhs_omap_remove_child(struct device *dev, void *data)
848{
849 dev_info(dev, "unregistering\n");
850 platform_device_unregister(to_platform_device(dev));
851 return 0;
852}
853
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530854/**
855 * usbhs_omap_remove - shutdown processing for UHH & TLL HCDs
856 * @pdev: USB Host Controller being removed
857 *
858 * Reverses the effect of usbhs_omap_probe().
859 */
Bill Pemberton4740f732012-11-19 13:26:01 -0500860static int usbhs_omap_remove(struct platform_device *pdev)
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530861{
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530862 pm_runtime_disable(&pdev->dev);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530863
Roger Quadros03a8f432013-04-09 11:39:18 +0300864 /* remove children */
865 device_for_each_child(&pdev->dev, NULL, usbhs_omap_remove_child);
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530866 return 0;
867}
868
869static const struct dev_pm_ops usbhsomap_dev_pm_ops = {
870 .runtime_suspend = usbhs_runtime_suspend,
871 .runtime_resume = usbhs_runtime_resume,
872};
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530873
Roger Quadros03a8f432013-04-09 11:39:18 +0300874static const struct of_device_id usbhs_omap_dt_ids[] = {
875 { .compatible = "ti,usbhs-host" },
876 { }
877};
878
879MODULE_DEVICE_TABLE(of, usbhs_omap_dt_ids);
880
881
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530882static struct platform_driver usbhs_omap_driver = {
883 .driver = {
884 .name = (char *)usbhs_driver_name,
885 .owner = THIS_MODULE,
Keshava Munegowda1e7fe1a2011-10-11 13:23:29 +0530886 .pm = &usbhsomap_dev_pm_ops,
Sachin Kamat0f54e1e2013-10-15 09:18:50 +0530887 .of_match_table = usbhs_omap_dt_ids,
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530888 },
Roger Quadrosab3f2a82013-01-02 15:59:28 +0200889 .remove = usbhs_omap_remove,
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530890};
891
892MODULE_AUTHOR("Keshava Munegowda <keshava_mgowda@ti.com>");
Roger Quadros03a8f432013-04-09 11:39:18 +0300893MODULE_AUTHOR("Roger Quadros <rogerq@ti.com>");
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530894MODULE_ALIAS("platform:" USBHS_DRIVER_NAME);
895MODULE_LICENSE("GPL v2");
896MODULE_DESCRIPTION("usb host common core driver for omap EHCI and OHCI");
897
898static int __init omap_usbhs_drvinit(void)
899{
900 return platform_driver_probe(&usbhs_omap_driver, usbhs_omap_probe);
901}
902
903/*
904 * init before ehci and ohci drivers;
905 * The usbhs core driver should be initialized much before
906 * the omap ehci and ohci probe functions are called.
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530907 * This usbhs core driver should be initialized after
908 * usb tll driver
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530909 */
Keshava Munegowda4dc2cce2012-07-16 19:01:09 +0530910fs_initcall_sync(omap_usbhs_drvinit);
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530911
912static void __exit omap_usbhs_drvexit(void)
913{
914 platform_driver_unregister(&usbhs_omap_driver);
915}
916module_exit(omap_usbhs_drvexit);