ehci-pci.c 10.6 KB
Newer Older
M
Matt Porter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * EHCI HCD (Host Controller Driver) PCI Bus Glue.
 *
 * Copyright (c) 2000-2004 by David Brownell
 *
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#ifndef CONFIG_PCI
#error "This file is PCI bus glue.  CONFIG_PCI must be defined."
#endif

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

27 28 29 30 31 32 33 34 35 36 37 38 39 40
/* called after powerup, by probe or system-pm "wakeup" */
static int ehci_pci_reinit(struct ehci_hcd *ehci, struct pci_dev *pdev)
{
	u32			temp;
	int			retval;

	/* optional debug port, normally in the first BAR */
	temp = pci_find_capability(pdev, 0x0a);
	if (temp) {
		pci_read_config_dword(pdev, temp, &temp);
		temp >>= 16;
		if ((temp & (3 << 13)) == (1 << 13)) {
			temp &= 0x1fff;
			ehci->debug = ehci_to_hcd(ehci)->regs + temp;
41
			temp = ehci_readl(ehci, &ehci->debug->control);
42 43 44 45 46 47 48 49 50 51
			ehci_info(ehci, "debug port %d%s\n",
				HCS_DEBUG_PORT(ehci->hcs_params),
				(temp & DBGP_ENABLED)
					? " IN USE"
					: "");
			if (!(temp & DBGP_ENABLED))
				ehci->debug = NULL;
		}
	}

52 53 54
	/* we expect static quirk code to handle the "extended capabilities"
	 * (currently just BIOS handoff) allowed starting with EHCI 0.96
	 */
55 56 57 58 59 60 61 62 63

	/* PCI Memory-Write-Invalidate cycle support is optional (uncommon) */
	retval = pci_set_mwi(pdev);
	if (!retval)
		ehci_dbg(ehci, "MWI active\n");

	return 0;
}

D
David Brownell 已提交
64 65
/* called during probe() after chip reset completes */
static int ehci_pci_setup(struct usb_hcd *hcd)
M
Matt Porter 已提交
66
{
67 68
	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
	struct pci_dev		*pdev = to_pci_dev(hcd->self.controller);
M
Matt Porter 已提交
69
	u32			temp;
70
	int			retval;
M
Matt Porter 已提交
71

72 73 74 75 76 77 78 79 80 81 82 83 84 85
	switch (pdev->vendor) {
	case PCI_VENDOR_ID_TOSHIBA_2:
		/* celleb's companion chip */
		if (pdev->device == 0x01b5) {
#ifdef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO
			ehci->big_endian_mmio = 1;
#else
			ehci_warn(ehci,
				  "unsupported big endian Toshiba quirk\n");
#endif
		}
		break;
	}

M
Matt Porter 已提交
86
	ehci->caps = hcd->regs;
87 88 89
	ehci->regs = hcd->regs +
		HC_LENGTH(ehci_readl(ehci, &ehci->caps->hc_capbase));

90 91
	dbg_hcs_params(ehci, "reset");
	dbg_hcc_params(ehci, "reset");
M
Matt Porter 已提交
92

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
        /* ehci_init() causes memory for DMA transfers to be
         * allocated.  Thus, any vendor-specific workarounds based on
         * limiting the type of memory used for DMA transfers must
         * happen before ehci_init() is called. */
	switch (pdev->vendor) {
	case PCI_VENDOR_ID_NVIDIA:
		/* NVidia reports that certain chips don't handle
		 * QH, ITD, or SITD addresses above 2GB.  (But TD,
		 * data buffer, and periodic schedule are normal.)
		 */
		switch (pdev->device) {
		case 0x003c:	/* MCP04 */
		case 0x005b:	/* CK804 */
		case 0x00d8:	/* CK8 */
		case 0x00e8:	/* CK8S */
			if (pci_set_consistent_dma_mask(pdev,
						DMA_31BIT_MASK) < 0)
				ehci_warn(ehci, "can't enable NVidia "
					"workaround for >2GB RAM\n");
			break;
		}
		break;
	}

M
Matt Porter 已提交
117
	/* cache this readonly data; minimize chip reads */
118
	ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params);
M
Matt Porter 已提交
119

120 121 122 123
	retval = ehci_halt(ehci);
	if (retval)
		return retval;

D
David Brownell 已提交
124 125 126 127 128
	/* data structure init */
	retval = ehci_init(hcd);
	if (retval)
		return retval;

129 130 131 132 133 134 135 136 137 138 139
	switch (pdev->vendor) {
	case PCI_VENDOR_ID_TDI:
		if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) {
			ehci->is_tdi_rh_tt = 1;
			tdi_reset(ehci);
		}
		break;
	case PCI_VENDOR_ID_AMD:
		/* AMD8111 EHCI doesn't work, according to AMD errata */
		if (pdev->device == 0x7463) {
			ehci_info(ehci, "ignoring AMD8111 (errata)\n");
D
David Brownell 已提交
140 141
			retval = -EIO;
			goto done;
142 143 144
		}
		break;
	case PCI_VENDOR_ID_NVIDIA:
D
David Brownell 已提交
145 146 147 148 149
		switch (pdev->device) {
		/* Some NForce2 chips have problems with selective suspend;
		 * fixed in newer silicon.
		 */
		case 0x0068:
150
			if (pdev->revision < 0xa4)
D
David Brownell 已提交
151 152
				ehci->no_selective_suspend = 1;
			break;
M
Matt Porter 已提交
153
		}
154 155
		break;
	}
M
Matt Porter 已提交
156

M
Marcelo Tosatti 已提交
157
	ehci_reset(ehci);
M
Matt Porter 已提交
158 159 160 161 162

	/* at least the Genesys GL880S needs fixup here */
	temp = HCS_N_CC(ehci->hcs_params) * HCS_N_PCC(ehci->hcs_params);
	temp &= 0x0f;
	if (temp && HCS_N_PORTS(ehci->hcs_params) > temp) {
163
		ehci_dbg(ehci, "bogus port configuration: "
M
Matt Porter 已提交
164 165 166 167 168
			"cc=%d x pcc=%d < ports=%d\n",
			HCS_N_CC(ehci->hcs_params),
			HCS_N_PCC(ehci->hcs_params),
			HCS_N_PORTS(ehci->hcs_params));

169 170 171 172 173 174 175 176 177
		switch (pdev->vendor) {
		case 0x17a0:		/* GENESYS */
			/* GL880S: should be PORTS=2 */
			temp |= (ehci->hcs_params & ~0xf);
			ehci->hcs_params = temp;
			break;
		case PCI_VENDOR_ID_NVIDIA:
			/* NF4: should be PCC=10 */
			break;
M
Matt Porter 已提交
178 179 180
		}
	}

181 182
	/* Serial Bus Release Number is at PCI 0x60 offset */
	pci_read_config_byte(pdev, 0x60, &ehci->sbrn);
M
Matt Porter 已提交
183

184 185 186 187 188 189 190 191 192 193
	/* Workaround current PCI init glitch:  wakeup bits aren't
	 * being set from PCI PM capability.
	 */
	if (!device_can_wakeup(&pdev->dev)) {
		u16	port_wake;

		pci_read_config_word(pdev, 0x62, &port_wake);
		if (port_wake & 0x0001)
			device_init_wakeup(&pdev->dev, 1);
	}
M
Matt Porter 已提交
194

D
David Brownell 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
#ifdef	CONFIG_USB_SUSPEND
	/* REVISIT: the controller works fine for wakeup iff the root hub
	 * itself is "globally" suspended, but usbcore currently doesn't
	 * understand such things.
	 *
	 * System suspend currently expects to be able to suspend the entire
	 * device tree, device-at-a-time.  If we failed selective suspend
	 * reports, system suspend would fail; so the root hub code must claim
	 * success.  That's lying to usbcore, and it matters for for runtime
	 * PM scenarios with selective suspend and remote wakeup...
	 */
	if (ehci->no_selective_suspend && device_can_wakeup(&pdev->dev))
		ehci_warn(ehci, "selective suspend/wakeup unavailable\n");
#endif

210
	retval = ehci_pci_reinit(ehci, pdev);
D
David Brownell 已提交
211 212
done:
	return retval;
M
Matt Porter 已提交
213 214 215 216 217 218 219 220
}

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

#ifdef	CONFIG_PM

/* suspend/resume, section 4.3 */

D
David Brownell 已提交
221
/* These routines rely on the PCI bus glue
M
Matt Porter 已提交
222 223 224
 * to handle powerdown and wakeup, and currently also on
 * transceivers that don't need any software attention to set up
 * the right sort of wakeup.
D
David Brownell 已提交
225
 * Also they depend on separate root hub suspend/resume.
M
Matt Porter 已提交
226 227
 */

228
static int ehci_pci_suspend(struct usb_hcd *hcd, pm_message_t message)
M
Matt Porter 已提交
229
{
230
	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
231 232
	unsigned long		flags;
	int			rc = 0;
M
Matt Porter 已提交
233

234 235
	if (time_before(jiffies, ehci->next_statechange))
		msleep(10);
M
Matt Porter 已提交
236

237 238 239 240 241 242 243 244 245 246 247 248 249
	/* Root hub was already suspended. Disable irq emission and
	 * mark HW unaccessible, bail out if RH has been resumed. Use
	 * the spinlock to properly synchronize with possible pending
	 * RH suspend or resume activity.
	 *
	 * This is still racy as hcd->state is manipulated outside of
	 * any locks =P But that will be a different fix.
	 */
	spin_lock_irqsave (&ehci->lock, flags);
	if (hcd->state != HC_STATE_SUSPENDED) {
		rc = -EINVAL;
		goto bail;
	}
250 251
	ehci_writel(ehci, 0, &ehci->regs->intr_enable);
	(void)ehci_readl(ehci, &ehci->regs->intr_enable);
252

253 254 255 256 257 258
	/* make sure snapshot being resumed re-enumerates everything */
	if (message.event == PM_EVENT_PRETHAW) {
		ehci_halt(ehci);
		ehci_reset(ehci);
	}

259 260 261 262
	clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
 bail:
	spin_unlock_irqrestore (&ehci->lock, flags);

D
David Brownell 已提交
263
	// could save FLADJ in case of Vaux power loss
M
Matt Porter 已提交
264 265
	// ... we'd only use it to handle clock skew

266
	return rc;
M
Matt Porter 已提交
267 268
}

269
static int ehci_pci_resume(struct usb_hcd *hcd)
M
Matt Porter 已提交
270
{
271
	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
272
	struct pci_dev		*pdev = to_pci_dev(hcd->self.controller);
M
Matt Porter 已提交
273

D
David Brownell 已提交
274
	// maybe restore FLADJ
M
Matt Porter 已提交
275

276 277
	if (time_before(jiffies, ehci->next_statechange))
		msleep(100);
M
Matt Porter 已提交
278

279 280 281
	/* Mark hardware accessible again as we are out of D3 state by now */
	set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);

282 283
	/* If CF is still set, we maintained PCI Vaux power.
	 * Just undo the effect of ehci_pci_suspend().
M
Matt Porter 已提交
284
	 */
285
	if (ehci_readl(ehci, &ehci->regs->configured_flag) == FLAG_CF) {
286 287 288 289
		int	mask = INTR_MASK;

		if (!device_may_wakeup(&hcd->self.root_hub->dev))
			mask &= ~STS_PCD;
290 291
		ehci_writel(ehci, mask, &ehci->regs->intr_enable);
		ehci_readl(ehci, &ehci->regs->intr_enable);
292
		return 0;
D
David Brownell 已提交
293 294 295
	}

	ehci_dbg(ehci, "lost power, restarting\n");
296
	usb_root_hub_lost_power(hcd->self.root_hub);
M
Matt Porter 已提交
297 298

	/* Else reset, to cope with power loss or flush-to-storage
D
David Brownell 已提交
299
	 * style "resume" having let BIOS kick in during reboot.
M
Matt Porter 已提交
300
	 */
301 302
	(void) ehci_halt(ehci);
	(void) ehci_reset(ehci);
303
	(void) ehci_pci_reinit(ehci, pdev);
D
David Brownell 已提交
304 305

	/* emptying the schedule aborts any urbs */
306
	spin_lock_irq(&ehci->lock);
D
David Brownell 已提交
307
	if (ehci->reclaim)
308
		ehci->reclaim_ready = 1;
309
	ehci_work(ehci);
310
	spin_unlock_irq(&ehci->lock);
D
David Brownell 已提交
311

312 313 314
	ehci_writel(ehci, ehci->command, &ehci->regs->command);
	ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
	ehci_readl(ehci, &ehci->regs->command);	/* unblock posted writes */
315

A
Alan Stern 已提交
316 317 318 319
	/* here we "know" root ports should always stay powered */
	ehci_port_power(ehci, 1);
	ehci_handover_companion_ports(ehci);

320 321
	hcd->state = HC_STATE_SUSPENDED;
	return 0;
M
Matt Porter 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
}
#endif

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

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

	/*
	 * basic lifecycle operations
	 */
D
David Brownell 已提交
339
	.reset =		ehci_pci_setup,
340
	.start =		ehci_run,
M
Matt Porter 已提交
341 342 343 344
#ifdef	CONFIG_PM
	.suspend =		ehci_pci_suspend,
	.resume =		ehci_pci_resume,
#endif
345
	.stop =			ehci_stop,
346
	.shutdown =		ehci_shutdown,
M
Matt Porter 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364

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

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

	/*
	 * root hub support
	 */
	.hub_status_data =	ehci_hub_status_data,
	.hub_control =		ehci_hub_control,
365 366
	.bus_suspend =		ehci_bus_suspend,
	.bus_resume =		ehci_bus_resume,
M
Matt Porter 已提交
367 368 369 370 371 372 373
};

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

/* PCI driver selection metadata; PCI hotplugging uses this */
static const struct pci_device_id pci_ids [] = { {
	/* handle any USB 2.0 EHCI controller */
374
	PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI, ~0),
M
Matt Porter 已提交
375 376 377 378
	.driver_data =	(unsigned long) &ehci_pci_hc_driver,
	},
	{ /* end: all zeroes */ }
};
379
MODULE_DEVICE_TABLE(pci, pci_ids);
M
Matt Porter 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392

/* pci driver glue; this is a "new style" PCI driver module */
static struct pci_driver ehci_pci_driver = {
	.name =		(char *) hcd_name,
	.id_table =	pci_ids,

	.probe =	usb_hcd_pci_probe,
	.remove =	usb_hcd_pci_remove,

#ifdef	CONFIG_PM
	.suspend =	usb_hcd_pci_suspend,
	.resume =	usb_hcd_pci_resume,
#endif
393
	.shutdown = 	usb_hcd_pci_shutdown,
M
Matt Porter 已提交
394
};