ehci-omap.c 8.7 KB
Newer Older
1
/*
A
Anand Gadiyar 已提交
2
 * ehci-omap.c - driver for USBHOST on OMAP3/4 processors
3
 *
A
Anand Gadiyar 已提交
4 5
 * Bus Glue for the EHCI controllers in OMAP3/4
 * Tested on several OMAP3 boards, and OMAP4 Pandaboard
6
 *
7
 * Copyright (C) 2007-2011 Texas Instruments, Inc.
8
 *	Author: Vikram Pandita <vikram.pandita@ti.com>
A
Anand Gadiyar 已提交
9
 *	Author: Anand Gadiyar <gadiyar@ti.com>
10
 *	Author: Keshava Munegowda <keshava_mgowda@ti.com>
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 * Copyright (C) 2009 Nokia Corporation
 *	Contact: Felipe Balbi <felipe.balbi@nokia.com>
 *
 * Based on "ehci-fsl.c" and "ehci-au1xxx.c" ehci glue layers
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
31
 * TODO (last updated Feb 27, 2010):
32 33 34
 *	- add kernel-doc
 *	- enable AUTOIDLE
 *	- add suspend/resume
A
Anand Gadiyar 已提交
35 36
 *	- add HSIC and TLL support
 *	- convert to use hwmod and runtime PM
37 38 39
 */

#include <linux/platform_device.h>
40
#include <linux/slab.h>
41
#include <linux/usb/ulpi.h>
42
#include <plat/usb.h>
43
#include <linux/regulator/consumer.h>
44 45

/* EHCI Register Set */
46 47
#define EHCI_INSNREG04					(0xA0)
#define EHCI_INSNREG04_DISABLE_UNSUSPEND		(1 << 5)
48 49 50 51 52 53 54 55
#define	EHCI_INSNREG05_ULPI				(0xA4)
#define	EHCI_INSNREG05_ULPI_CONTROL_SHIFT		31
#define	EHCI_INSNREG05_ULPI_PORTSEL_SHIFT		24
#define	EHCI_INSNREG05_ULPI_OPSEL_SHIFT			22
#define	EHCI_INSNREG05_ULPI_REGADD_SHIFT		16
#define	EHCI_INSNREG05_ULPI_EXTREGADD_SHIFT		8
#define	EHCI_INSNREG05_ULPI_WRDATA_SHIFT		0

56
/*-------------------------------------------------------------------------*/
A
Anand Gadiyar 已提交
57

58
static const struct hc_driver ehci_omap_hc_driver;
A
Anand Gadiyar 已提交
59

60

61
static inline void ehci_write(void __iomem *base, u32 reg, u32 val)
62 63 64 65
{
	__raw_writel(val, base + reg);
}

66
static inline u32 ehci_read(void __iomem *base, u32 reg)
67 68 69 70
{
	return __raw_readl(base + reg);
}

71
static void omap_ehci_soft_phy_reset(struct platform_device *pdev, u8 port)
72
{
73
	struct usb_hcd	*hcd = dev_get_drvdata(&pdev->dev);
74 75 76 77 78 79 80 81 82 83 84 85 86
	unsigned long timeout = jiffies + msecs_to_jiffies(1000);
	unsigned reg = 0;

	reg = ULPI_FUNC_CTRL_RESET
		/* FUNCTION_CTRL_SET register */
		| (ULPI_SET(ULPI_FUNC_CTRL) << EHCI_INSNREG05_ULPI_REGADD_SHIFT)
		/* Write */
		| (2 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT)
		/* PORTn */
		| ((port + 1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT)
		/* start ULPI access*/
		| (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT);

87
	ehci_write(hcd->regs, EHCI_INSNREG05_ULPI, reg);
88 89

	/* Wait for ULPI access completion */
90
	while ((ehci_read(hcd->regs, EHCI_INSNREG05_ULPI)
91 92 93 94
			& (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT))) {
		cpu_relax();

		if (time_after(jiffies, timeout)) {
95
			dev_dbg(&pdev->dev, "phy reset operation timed out\n");
96 97 98 99 100
			break;
		}
	}
}

101 102 103 104 105 106 107 108 109 110 111 112 113

/* configure so an HC device and id are always provided */
/* always called with process context; sleeping is OK */

/**
 * ehci_hcd_omap_probe - initialize TI-based HCDs
 *
 * Allocates basic resources for this USB host controller, and
 * then invokes the start() method for the HCD associated with it
 * through the hotplug entry's driver_data.
 */
static int ehci_hcd_omap_probe(struct platform_device *pdev)
{
114 115 116 117 118 119 120 121
	struct device				*dev = &pdev->dev;
	struct ehci_hcd_omap_platform_data	*pdata = dev->platform_data;
	struct resource				*res;
	struct usb_hcd				*hcd;
	void __iomem				*regs;
	struct ehci_hcd				*omap_ehci;
	int					ret = -ENODEV;
	int					irq;
122 123
	int					i;
	char					supply[7];
124

125 126
	if (usb_disabled())
		return -ENODEV;
127

128 129 130
	if (!dev->parent) {
		dev_err(dev, "Missing parent device\n");
		return -ENODEV;
131 132
	}

133 134 135 136 137
	irq = platform_get_irq_byname(pdev, "ehci-irq");
	if (irq < 0) {
		dev_err(dev, "EHCI irq failed\n");
		return -ENODEV;
	}
138

139 140 141 142 143 144 145 146 147 148 149
	res =  platform_get_resource_byname(pdev,
				IORESOURCE_MEM, "ehci");
	if (!res) {
		dev_err(dev, "UHH EHCI get resource failed\n");
		return -ENODEV;
	}

	regs = ioremap(res->start, resource_size(res));
	if (!regs) {
		dev_err(dev, "UHH EHCI ioremap failed\n");
		return -ENOMEM;
150 151
	}

152 153
	hcd = usb_create_hcd(&ehci_omap_hc_driver, dev,
			dev_name(dev));
154
	if (!hcd) {
155
		dev_err(dev, "failed to create hcd with err %d\n", ret);
156
		ret = -ENOMEM;
157
		goto err_io;
158 159 160 161
	}

	hcd->rsrc_start = res->start;
	hcd->rsrc_len = resource_size(res);
162
	hcd->regs = regs;
163

164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
	/* get ehci regulator and enable */
	for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) {
		if (pdata->port_mode[i] != OMAP_EHCI_PORT_MODE_PHY) {
			pdata->regulator[i] = NULL;
			continue;
		}
		snprintf(supply, sizeof(supply), "hsusb%d", i);
		pdata->regulator[i] = regulator_get(dev, supply);
		if (IS_ERR(pdata->regulator[i])) {
			pdata->regulator[i] = NULL;
			dev_dbg(dev,
			"failed to get ehci port%d regulator\n", i);
		} else {
			regulator_enable(pdata->regulator[i]);
		}
	}

181 182 183 184
	ret = omap_usbhs_enable(dev);
	if (ret) {
		dev_err(dev, "failed to start usbhs with err %d\n", ret);
		goto err_enable;
185 186
	}

187 188 189 190 191 192 193 194 195 196 197
	/*
	 * An undocumented "feature" in the OMAP3 EHCI controller,
	 * causes suspended ports to be taken out of suspend when
	 * the USBCMD.Run/Stop bit is cleared (for example when
	 * we do ehci_bus_suspend).
	 * This breaks suspend-resume if the root-hub is allowed
	 * to suspend. Writing 1 to this undocumented register bit
	 * disables this feature and restores normal behavior.
	 */
	ehci_write(regs, EHCI_INSNREG04,
				EHCI_INSNREG04_DISABLE_UNSUSPEND);
198

199 200 201 202 203
	/* Soft reset the PHY using PHY reset command over ULPI */
	if (pdata->port_mode[0] == OMAP_EHCI_PORT_MODE_PHY)
		omap_ehci_soft_phy_reset(pdev, 0);
	if (pdata->port_mode[1] == OMAP_EHCI_PORT_MODE_PHY)
		omap_ehci_soft_phy_reset(pdev, 1);
204

205 206
	omap_ehci = hcd_to_ehci(hcd);
	omap_ehci->sbrn = 0x20;
207

208 209 210
	/* we know this is the memory we want, no need to ioremap again */
	omap_ehci->caps = hcd->regs;
	omap_ehci->regs = hcd->regs
211
		+ HC_LENGTH(ehci, readl(&omap_ehci->caps->hc_capbase));
212

213 214
	dbg_hcs_params(omap_ehci, "reset");
	dbg_hcc_params(omap_ehci, "reset");
215

216
	/* cache this readonly data; minimize chip reads */
217
	omap_ehci->hcs_params = readl(&omap_ehci->caps->hcs_params);
218 219 220

	ret = usb_add_hcd(hcd, irq, IRQF_DISABLED | IRQF_SHARED);
	if (ret) {
221
		dev_err(dev, "failed to add hcd with err %d\n", ret);
222 223 224
		goto err_add_hcd;
	}

225
	/* root ports should always stay powered */
226
	ehci_port_power(omap_ehci, 1);
227

228 229 230
	return 0;

err_add_hcd:
231
	omap_usbhs_disable(dev);
232

233
err_enable:
234 235
	usb_put_hcd(hcd);

236
err_io:
237 238 239 240 241 242 243 244 245 246 247 248 249 250
	return ret;
}


/**
 * ehci_hcd_omap_remove - shutdown processing for EHCI HCDs
 * @pdev: USB Host Controller being removed
 *
 * Reverses the effect of usb_ehci_hcd_omap_probe(), first invoking
 * the HCD's stop() method.  It is always called from a thread
 * context, normally "rmmod", "apmd", or something similar.
 */
static int ehci_hcd_omap_remove(struct platform_device *pdev)
{
251 252
	struct device *dev	= &pdev->dev;
	struct usb_hcd *hcd	= dev_get_drvdata(dev);
253 254

	usb_remove_hcd(hcd);
255
	omap_usbhs_disable(dev);
256 257 258 259 260 261
	usb_put_hcd(hcd);
	return 0;
}

static void ehci_hcd_omap_shutdown(struct platform_device *pdev)
{
262
	struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev);
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327

	if (hcd->driver->shutdown)
		hcd->driver->shutdown(hcd);
}

static struct platform_driver ehci_hcd_omap_driver = {
	.probe			= ehci_hcd_omap_probe,
	.remove			= ehci_hcd_omap_remove,
	.shutdown		= ehci_hcd_omap_shutdown,
	/*.suspend		= ehci_hcd_omap_suspend, */
	/*.resume		= ehci_hcd_omap_resume, */
	.driver = {
		.name		= "ehci-omap",
	}
};

/*-------------------------------------------------------------------------*/

static const struct hc_driver ehci_omap_hc_driver = {
	.description		= hcd_name,
	.product_desc		= "OMAP-EHCI Host Controller",
	.hcd_priv_size		= sizeof(struct ehci_hcd),

	/*
	 * generic hardware linkage
	 */
	.irq			= ehci_irq,
	.flags			= HCD_MEMORY | HCD_USB2,

	/*
	 * basic lifecycle operations
	 */
	.reset			= ehci_init,
	.start			= ehci_run,
	.stop			= ehci_stop,
	.shutdown		= ehci_shutdown,

	/*
	 * managing i/o requests and associated device resources
	 */
	.urb_enqueue		= ehci_urb_enqueue,
	.urb_dequeue		= ehci_urb_dequeue,
	.endpoint_disable	= ehci_endpoint_disable,
	.endpoint_reset		= ehci_endpoint_reset,

	/*
	 * scheduling support
	 */
	.get_frame_number	= ehci_get_frame,

	/*
	 * root hub support
	 */
	.hub_status_data	= ehci_hub_status_data,
	.hub_control		= ehci_hub_control,
	.bus_suspend		= ehci_bus_suspend,
	.bus_resume		= ehci_bus_resume,

	.clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
};

MODULE_ALIAS("platform:omap-ehci");
MODULE_AUTHOR("Texas Instruments, Inc.");
MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>");