hcd-pci.c 9.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * (C) Copyright David Brownell 2000-2002
3
 *
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * 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.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
22 23
#include <linux/usb.h>

L
Linus Torvalds 已提交
24 25
#include <asm/io.h>
#include <asm/irq.h>
26 27 28 29 30 31 32

#ifdef CONFIG_PPC_PMAC
#include <asm/machdep.h>
#include <asm/pmac_feature.h>
#include <asm/pci-bridge.h>
#include <asm/prom.h>
#endif
33 34

#include "usb.h"
L
Linus Torvalds 已提交
35 36 37
#include "hcd.h"


D
David Brownell 已提交
38
/* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57


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

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

/**
 * usb_hcd_pci_probe - initialize PCI-based HCDs
 * @dev: USB Host Controller being probed
 * @id: pci hotplug id connecting controller to HCD framework
 * Context: !in_interrupt()
 *
 * Allocates basic PCI 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.
 *
 * Store this function in the HCD's struct pci_driver as probe().
 */
58
int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
L
Linus Torvalds 已提交
59 60 61 62 63 64 65 66
{
	struct hc_driver	*driver;
	struct usb_hcd		*hcd;
	int			retval;

	if (usb_disabled())
		return -ENODEV;

67 68 69 70
	if (!id)
		return -EINVAL;
	driver = (struct hc_driver *)id->driver_data;
	if (!driver)
L
Linus Torvalds 已提交
71 72
		return -EINVAL;

73
	if (pci_enable_device(dev) < 0)
L
Linus Torvalds 已提交
74
		return -ENODEV;
D
David Brownell 已提交
75
	dev->current_state = PCI_D0;
76 77 78

	if (!dev->irq) {
		dev_err(&dev->dev,
L
Linus Torvalds 已提交
79 80
			"Found HC with no IRQ.  Check BIOS/PCI %s setup!\n",
			pci_name(dev));
81
		retval = -ENODEV;
L
Linus Torvalds 已提交
82
		goto err1;
83
	}
L
Linus Torvalds 已提交
84

85
	hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));
L
Linus Torvalds 已提交
86 87 88 89 90
	if (!hcd) {
		retval = -ENOMEM;
		goto err1;
	}

91 92 93 94 95
	if (driver->flags & HCD_MEMORY) {
		/* EHCI, OHCI */
		hcd->rsrc_start = pci_resource_start(dev, 0);
		hcd->rsrc_len = pci_resource_len(dev, 0);
		if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len,
L
Linus Torvalds 已提交
96
				driver->description)) {
97
			dev_dbg(&dev->dev, "controller already in use\n");
L
Linus Torvalds 已提交
98 99 100
			retval = -EBUSY;
			goto err2;
		}
101
		hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
102
		if (hcd->regs == NULL) {
103
			dev_dbg(&dev->dev, "error mapping memory\n");
L
Linus Torvalds 已提交
104 105 106 107
			retval = -EFAULT;
			goto err3;
		}

108 109
	} else {
		/* UHCI */
L
Linus Torvalds 已提交
110 111 112
		int	region;

		for (region = 0; region < PCI_ROM_RESOURCE; region++) {
113
			if (!(pci_resource_flags(dev, region) &
L
Linus Torvalds 已提交
114 115 116
					IORESOURCE_IO))
				continue;

117 118 119
			hcd->rsrc_start = pci_resource_start(dev, region);
			hcd->rsrc_len = pci_resource_len(dev, region);
			if (request_region(hcd->rsrc_start, hcd->rsrc_len,
L
Linus Torvalds 已提交
120 121 122 123
					driver->description))
				break;
		}
		if (region == PCI_ROM_RESOURCE) {
124
			dev_dbg(&dev->dev, "no i/o regions available\n");
L
Linus Torvalds 已提交
125 126 127 128 129
			retval = -EBUSY;
			goto err1;
		}
	}

130
	pci_set_master(dev);
L
Linus Torvalds 已提交
131

132
	retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
L
Linus Torvalds 已提交
133 134 135 136 137 138
	if (retval != 0)
		goto err4;
	return retval;

 err4:
	if (driver->flags & HCD_MEMORY) {
139
		iounmap(hcd->regs);
L
Linus Torvalds 已提交
140
 err3:
141
		release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
142
	} else
143
		release_region(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
144
 err2:
145
	usb_put_hcd(hcd);
L
Linus Torvalds 已提交
146
 err1:
147 148
	pci_disable_device(dev);
	dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
L
Linus Torvalds 已提交
149
	return retval;
150
}
151
EXPORT_SYMBOL_GPL(usb_hcd_pci_probe);
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167


/* may be called without controller electrically present */
/* may be called with controller, bus, and devices active */

/**
 * usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
 * @dev: USB Host Controller being removed
 * Context: !in_interrupt()
 *
 * Reverses the effect of usb_hcd_pci_probe(), first invoking
 * the HCD's stop() method.  It is always called from a thread
 * context, normally "rmmod", "apmd", or something similar.
 *
 * Store this function in the HCD's struct pci_driver as remove().
 */
168
void usb_hcd_pci_remove(struct pci_dev *dev)
L
Linus Torvalds 已提交
169 170 171 172 173 174 175
{
	struct usb_hcd		*hcd;

	hcd = pci_get_drvdata(dev);
	if (!hcd)
		return;

176
	usb_remove_hcd(hcd);
L
Linus Torvalds 已提交
177
	if (hcd->driver->flags & HCD_MEMORY) {
178 179
		iounmap(hcd->regs);
		release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
180
	} else {
181
		release_region(hcd->rsrc_start, hcd->rsrc_len);
L
Linus Torvalds 已提交
182
	}
183
	usb_put_hcd(hcd);
L
Linus Torvalds 已提交
184 185
	pci_disable_device(dev);
}
186
EXPORT_SYMBOL_GPL(usb_hcd_pci_remove);
L
Linus Torvalds 已提交
187 188 189 190 191 192 193


#ifdef	CONFIG_PM

/**
 * usb_hcd_pci_suspend - power management suspend of a PCI-based HCD
 * @dev: USB Host Controller being suspended
194
 * @message: Power Management message describing this state transition
L
Linus Torvalds 已提交
195
 *
196
 * Store this function in the HCD's struct pci_driver as .suspend.
L
Linus Torvalds 已提交
197
 */
198
int usb_hcd_pci_suspend(struct pci_dev *dev, pm_message_t message)
L
Linus Torvalds 已提交
199
{
200
	struct usb_hcd		*hcd = pci_get_drvdata(dev);
L
Linus Torvalds 已提交
201
	int			retval = 0;
202
	int			wake, w;
203
	int			has_pci_pm;
L
Linus Torvalds 已提交
204

205 206 207 208 209 210 211 212
	/* Root hub suspend should have stopped all downstream traffic,
	 * and all bus master traffic.  And done so for both the interface
	 * and the stub usb_device (which we check here).  But maybe it
	 * didn't; writing sysfs power/state files ignores such rules...
	 *
	 * We must ignore the FREEZE vs SUSPEND distinction here, because
	 * otherwise the swsusp will save (and restore) garbage state.
	 */
213
	if (!(hcd->state == HC_STATE_SUSPENDED ||
214 215 216 217 218 219 220 221 222
			hcd->state == HC_STATE_HALT)) {
		dev_warn(&dev->dev, "Root hub is not suspended\n");
		retval = -EBUSY;
		goto done;
	}

	/* We might already be suspended (runtime PM -- not yet written) */
	if (dev->current_state != PCI_D0)
		goto done;
223

224 225 226
	if (hcd->driver->pci_suspend) {
		retval = hcd->driver->pci_suspend(hcd, message);
		suspend_report_result(hcd->driver->pci_suspend, retval);
227
		if (retval)
228 229 230
			goto done;
	}

231
	synchronize_irq(dev->irq);
D
David Brownell 已提交
232

233 234 235 236 237 238 239 240 241
	/* Downstream ports from this root hub should already be quiesced, so
	 * there will be no DMA activity.  Now we can shut down the upstream
	 * link (except maybe for PME# resume signaling) and enter some PCI
	 * low power state, if the hardware allows.
	 */
	pci_disable_device(dev);

	pci_save_state(dev);

242 243 244
	/* Don't fail on error to enable wakeup.  We rely on pci code
	 * to reject requests the hardware can't implement, rather
	 * than coding the same thing.
L
Linus Torvalds 已提交
245
	 */
246 247 248 249 250 251
	wake = (hcd->state == HC_STATE_SUSPENDED &&
			device_may_wakeup(&dev->dev));
	w = pci_wake_from_d3(dev, wake);
	if (w < 0)
		wake = w;
	dev_dbg(&dev->dev, "wakeup: %d\n", wake);
L
Linus Torvalds 已提交
252

253 254 255 256 257 258 259 260 261 262 263
	/* Don't change state if we don't need to */
	if (message.event == PM_EVENT_FREEZE ||
			message.event == PM_EVENT_PRETHAW) {
		dev_dbg(&dev->dev, "--> no state change\n");
		goto done;
	}

	has_pci_pm = pci_find_capability(dev, PCI_CAP_ID_PM);
	if (!has_pci_pm) {
		dev_dbg(&dev->dev, "--> PCI D0 legacy\n");
	} else {
L
Linus Torvalds 已提交
264

D
David Brownell 已提交
265 266 267 268
		/* NOTE:  dev->current_state becomes nonzero only here, and
		 * only for devices that support PCI PM.  Also, exiting
		 * PCI_D3 (but not PCI_D1 or PCI_D2) is allowed to reset
		 * some device state (e.g. as part of clock reinit).
L
Linus Torvalds 已提交
269
		 */
270
		retval = pci_set_power_state(dev, PCI_D3hot);
271
		suspend_report_result(pci_set_power_state, retval);
L
Linus Torvalds 已提交
272
		if (retval == 0) {
273
			dev_dbg(&dev->dev, "--> PCI D3\n");
274
		} else {
275
			dev_dbg(&dev->dev, "PCI D3 suspend fail, %d\n",
D
David Brownell 已提交
276
					retval);
277
			pci_restore_state(dev);
L
Linus Torvalds 已提交
278 279 280
		}
	}

281
#ifdef CONFIG_PPC_PMAC
282
	if (retval == 0) {
283
		/* Disable ASIC clocks for USB */
284
		if (machine_is(powermac)) {
285 286
			struct device_node	*of_node;

287
			of_node = pci_device_to_OF_node(dev);
288 289 290 291 292
			if (of_node)
				pmac_call_feature(PMAC_FTR_USB_ENABLE,
							of_node, 0, 0);
		}
	}
293
#endif
294

295
 done:
L
Linus Torvalds 已提交
296 297
	return retval;
}
298
EXPORT_SYMBOL_GPL(usb_hcd_pci_suspend);
L
Linus Torvalds 已提交
299 300

/**
301
 * usb_hcd_pci_resume_early - resume a PCI-based HCD before IRQs are enabled
L
Linus Torvalds 已提交
302 303
 * @dev: USB Host Controller being resumed
 *
304
 * Store this function in the HCD's struct pci_driver as .resume_early.
L
Linus Torvalds 已提交
305
 */
306
int usb_hcd_pci_resume_early(struct pci_dev *dev)
L
Linus Torvalds 已提交
307
{
308 309
	pci_restore_state(dev);
	return 0;
310 311 312 313 314 315 316 317 318 319 320 321 322 323
}
EXPORT_SYMBOL_GPL(usb_hcd_pci_resume_early);

/**
 * usb_hcd_pci_resume - power management resume of a PCI-based HCD
 * @dev: USB Host Controller being resumed
 *
 * Store this function in the HCD's struct pci_driver as .resume.
 */
int usb_hcd_pci_resume(struct pci_dev *dev)
{
	struct usb_hcd		*hcd;
	int			retval;

324 325 326 327 328 329 330 331 332 333 334 335
#ifdef CONFIG_PPC_PMAC
	/* Reenable ASIC clocks for USB */
	if (machine_is(powermac)) {
		struct device_node *of_node;

		of_node = pci_device_to_OF_node(dev);
		if (of_node)
			pmac_call_feature(PMAC_FTR_USB_ENABLE,
						of_node, 0, 1);
	}
#endif

336 337 338 339 340
	hcd = pci_get_drvdata(dev);
	if (hcd->state != HC_STATE_SUSPENDED) {
		dev_dbg(hcd->self.controller,
				"can't resume, not suspended!\n");
		return 0;
D
David Brownell 已提交
341 342
	}

343 344
	pci_enable_wake(dev, PCI_D0, false);

345
	retval = pci_enable_device(dev);
D
David Brownell 已提交
346
	if (retval < 0) {
347 348
		dev_err(&dev->dev, "can't re-enable after resume, %d!\n",
				retval);
D
David Brownell 已提交
349 350
		return retval;
	}
351

352
	pci_set_master(dev);
353 354 355

	/* yes, ignore this result too... */
	(void) pci_wake_from_d3(dev, 0);
D
David Brownell 已提交
356

357
	clear_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
L
Linus Torvalds 已提交
358

359 360
	if (hcd->driver->pci_resume) {
		retval = hcd->driver->pci_resume(hcd);
361
		if (retval) {
362
			dev_err(hcd->self.controller,
363
				"PCI post-resume error %d!\n", retval);
364
			usb_hc_died(hcd);
365
		}
L
Linus Torvalds 已提交
366 367 368
	}
	return retval;
}
369
EXPORT_SYMBOL_GPL(usb_hcd_pci_resume);
L
Linus Torvalds 已提交
370 371 372

#endif	/* CONFIG_PM */

373 374 375 376
/**
 * usb_hcd_pci_shutdown - shutdown host controller
 * @dev: USB Host Controller being shutdown
 */
377
void usb_hcd_pci_shutdown(struct pci_dev *dev)
378 379 380 381 382 383 384 385 386 387
{
	struct usb_hcd		*hcd;

	hcd = pci_get_drvdata(dev);
	if (!hcd)
		return;

	if (hcd->driver->shutdown)
		hcd->driver->shutdown(hcd);
}
388
EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown);
L
Linus Torvalds 已提交
389