blob: 5130d0d22390bba5266fdfb18a10cb7aa2dccb7d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: portdrv_core.c
3 * Purpose: PCI Express Port Bus Driver's Core Functions
4 *
5 * Copyright (C) 2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
8
9#include <linux/module.h>
10#include <linux/pci.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/pm.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080014#include <linux/string.h>
15#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/pcieport_if.h>
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +020017#include <linux/aer.h>
18#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Rafael J. Wysocki1bf83e52009-01-13 14:38:34 +010020#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "portdrv.h"
22
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +010023/**
24 * release_pcie_device - free PCI Express port service device structure
25 * @dev: Port service device to release
26 *
27 * Invoked automatically when device is being removed in response to
28 * device_unregister(dev). Release all resources being claimed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
30static void release_pcie_device(struct device *dev)
31{
Hidetoshi Seto40da4182009-12-15 11:38:04 +090032 kfree(to_pcie_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +010035/**
Rafael J. Wysockib43d4512009-01-24 00:23:22 +010036 * pcie_port_msix_add_entry - add entry to given array of MSI-X entries
37 * @entries: Array of MSI-X entries
38 * @new_entry: Index of the entry to add to the array
39 * @nr_entries: Number of entries aleady in the array
40 *
41 * Return value: Position of the added entry in the array
42 */
43static int pcie_port_msix_add_entry(
44 struct msix_entry *entries, int new_entry, int nr_entries)
45{
46 int j;
47
48 for (j = 0; j < nr_entries; j++)
49 if (entries[j].entry == new_entry)
50 return j;
51
52 entries[j].entry = new_entry;
53 return j;
54}
55
56/**
57 * pcie_port_enable_msix - try to set up MSI-X as interrupt mode for given port
58 * @dev: PCI Express port to handle
59 * @vectors: Array of interrupt vectors to populate
60 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
61 *
62 * Return value: 0 on success, error code on failure
63 */
64static int pcie_port_enable_msix(struct pci_dev *dev, int *vectors, int mask)
65{
66 struct msix_entry *msix_entries;
67 int idx[PCIE_PORT_DEVICE_MAXSERVICES];
68 int nr_entries, status, pos, i, nvec;
69 u16 reg16;
70 u32 reg32;
71
72 nr_entries = pci_msix_table_size(dev);
73 if (!nr_entries)
74 return -EINVAL;
75 if (nr_entries > PCIE_PORT_MAX_MSIX_ENTRIES)
76 nr_entries = PCIE_PORT_MAX_MSIX_ENTRIES;
77
78 msix_entries = kzalloc(sizeof(*msix_entries) * nr_entries, GFP_KERNEL);
79 if (!msix_entries)
80 return -ENOMEM;
81
82 /*
83 * Allocate as many entries as the port wants, so that we can check
84 * which of them will be useful. Moreover, if nr_entries is correctly
85 * equal to the number of entries this port actually uses, we'll happily
86 * go through without any tricks.
87 */
88 for (i = 0; i < nr_entries; i++)
89 msix_entries[i].entry = i;
90
91 status = pci_enable_msix(dev, msix_entries, nr_entries);
92 if (status)
93 goto Exit;
94
95 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
96 idx[i] = -1;
97 status = -EIO;
98 nvec = 0;
99
100 if (mask & (PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP)) {
101 int entry;
102
103 /*
104 * The code below follows the PCI Express Base Specification 2.0
105 * stating in Section 6.1.6 that "PME and Hot-Plug Event
106 * interrupts (when both are implemented) always share the same
107 * MSI or MSI-X vector, as indicated by the Interrupt Message
108 * Number field in the PCI Express Capabilities register", where
109 * according to Section 7.8.2 of the specification "For MSI-X,
110 * the value in this field indicates which MSI-X Table entry is
111 * used to generate the interrupt message."
112 */
Kenji Kaneshigedba90df2009-11-11 14:32:42 +0900113 pos = pci_pcie_cap(dev);
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900114 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &reg16);
115 entry = (reg16 & PCI_EXP_FLAGS_IRQ) >> 9;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100116 if (entry >= nr_entries)
117 goto Error;
118
119 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
120 if (i == nvec)
121 nvec++;
122
123 idx[PCIE_PORT_SERVICE_PME_SHIFT] = i;
124 idx[PCIE_PORT_SERVICE_HP_SHIFT] = i;
125 }
126
127 if (mask & PCIE_PORT_SERVICE_AER) {
128 int entry;
129
130 /*
131 * The code below follows Section 7.10.10 of the PCI Express
132 * Base Specification 2.0 stating that bits 31-27 of the Root
133 * Error Status Register contain a value indicating which of the
134 * MSI/MSI-X vectors assigned to the port is going to be used
135 * for AER, where "For MSI-X, the value in this register
136 * indicates which MSI-X Table entry is used to generate the
137 * interrupt message."
138 */
139 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
140 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &reg32);
141 entry = reg32 >> 27;
142 if (entry >= nr_entries)
143 goto Error;
144
145 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
146 if (i == nvec)
147 nvec++;
148
149 idx[PCIE_PORT_SERVICE_AER_SHIFT] = i;
150 }
151
152 /*
153 * If nvec is equal to the allocated number of entries, we can just use
154 * what we have. Otherwise, the port has some extra entries not for the
155 * services we know and we need to work around that.
156 */
157 if (nvec == nr_entries) {
158 status = 0;
159 } else {
160 /* Drop the temporary MSI-X setup */
161 pci_disable_msix(dev);
162
163 /* Now allocate the MSI-X vectors for real */
164 status = pci_enable_msix(dev, msix_entries, nvec);
165 if (status)
166 goto Exit;
167 }
168
169 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
170 vectors[i] = idx[i] >= 0 ? msix_entries[idx[i]].vector : -1;
171
172 Exit:
173 kfree(msix_entries);
174 return status;
175
176 Error:
177 pci_disable_msix(dev);
178 goto Exit;
179}
180
181/**
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900182 * init_service_irqs - initialize irqs for PCI Express port services
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100183 * @dev: PCI Express port to handle
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900184 * @irqs: Array of irqs to populate
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100185 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
186 *
187 * Return value: Interrupt mode associated with the port
188 */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900189static int init_service_irqs(struct pci_dev *dev, int *irqs, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100191 int i, irq = -1;
192
193 /* We have to use INTx if MSI cannot be used for PCIe PME. */
194 if ((mask & PCIE_PORT_SERVICE_PME) && pcie_pme_no_msi()) {
195 if (dev->pin)
196 irq = dev->irq;
197 goto no_msi;
198 }
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100199
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100200 /* Try to use MSI-X if supported */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900201 if (!pcie_port_enable_msix(dev, irqs, mask))
202 return 0;
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100203
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100204 /* We're not going to use MSI-X, so try MSI and fall back to INTx */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900205 if (!pci_enable_msi(dev) || dev->pin)
206 irq = dev->irq;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100207
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100208 no_msi:
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100209 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900210 irqs[i] = irq;
211 irqs[PCIE_PORT_SERVICE_VC_SHIFT] = -1;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100212
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900213 if (irq < 0)
214 return -ENODEV;
215 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900218static void cleanup_service_irqs(struct pci_dev *dev)
219{
220 if (dev->msix_enabled)
221 pci_disable_msix(dev);
222 else if (dev->msi_enabled)
223 pci_disable_msi(dev);
224}
225
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100226/**
227 * get_port_device_capability - discover capabilities of a PCI Express port
228 * @dev: PCI Express port to examine
229 *
230 * The capabilities are read from the port's PCI Express configuration registers
231 * as described in PCI Express Base Specification 1.0a sections 7.8.2, 7.8.9 and
232 * 7.9 - 7.11.
233 *
234 * Return value: Bitmask of discovered port capabilities
235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236static int get_port_device_capability(struct pci_dev *dev)
237{
238 int services = 0, pos;
239 u16 reg16;
240 u32 reg32;
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200241 int cap_mask;
242 int err;
243
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100244 if (pcie_ports_disabled)
245 return 0;
246
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200247 err = pcie_port_platform_notify(dev, &cap_mask);
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100248 if (!pcie_ports_auto) {
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200249 cap_mask = PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP
250 | PCIE_PORT_SERVICE_VC;
251 if (pci_aer_available())
252 cap_mask |= PCIE_PORT_SERVICE_AER;
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100253 } else if (err) {
254 return 0;
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Kenji Kaneshigedba90df2009-11-11 14:32:42 +0900257 pos = pci_pcie_cap(dev);
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900258 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &reg16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* Hot-Plug Capable */
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200260 if ((cap_mask & PCIE_PORT_SERVICE_HP) && (reg16 & PCI_EXP_FLAGS_SLOT)) {
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900261 pci_read_config_dword(dev, pos + PCI_EXP_SLTCAP, &reg32);
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200262 if (reg32 & PCI_EXP_SLTCAP_HPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 services |= PCIE_PORT_SERVICE_HP;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200264 /*
265 * Disable hot-plug interrupts in case they have been
266 * enabled by the BIOS and the hot-plug service driver
267 * is not loaded.
268 */
269 pos += PCI_EXP_SLTCTL;
270 pci_read_config_word(dev, pos, &reg16);
271 reg16 &= ~(PCI_EXP_SLTCTL_CCIE | PCI_EXP_SLTCTL_HPIE);
272 pci_write_config_word(dev, pos, reg16);
273 }
Rafael J. Wysocki1bf83e52009-01-13 14:38:34 +0100274 }
275 /* AER capable */
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200276 if ((cap_mask & PCIE_PORT_SERVICE_AER)
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200277 && pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR)) {
Jesse Barnes09276782008-10-18 17:33:19 -0700278 services |= PCIE_PORT_SERVICE_AER;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200279 /*
280 * Disable AER on this port in case it's been enabled by the
281 * BIOS (the AER service driver will enable it when necessary).
282 */
283 pci_disable_pcie_error_reporting(dev);
284 }
Rafael J. Wysocki1bf83e52009-01-13 14:38:34 +0100285 /* VC support */
Jesse Barnes09276782008-10-18 17:33:19 -0700286 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_VC))
287 services |= PCIE_PORT_SERVICE_VC;
Kenji Kaneshige9e5d0b12009-11-25 21:02:51 +0900288 /* Root ports are capable of generating PME too */
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200289 if ((cap_mask & PCIE_PORT_SERVICE_PME)
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200290 && dev->pcie_type == PCI_EXP_TYPE_ROOT_PORT) {
Kenji Kaneshige9e5d0b12009-11-25 21:02:51 +0900291 services |= PCIE_PORT_SERVICE_PME;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200292 /*
293 * Disable PME interrupt on this port in case it's been enabled
294 * by the BIOS (the PME service driver will enable it when
295 * necessary).
296 */
297 pcie_pme_interrupt_enable(dev, false);
298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 return services;
301}
302
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100303/**
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900304 * pcie_device_init - allocate and initialize PCI Express port service device
305 * @pdev: PCI Express port to associate the service device with
306 * @service: Type of service to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100307 * @irq: Interrupt vector to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100308 */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900309static int pcie_device_init(struct pci_dev *pdev, int service, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900311 int retval;
312 struct pcie_device *pcie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct device *device;
314
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900315 pcie = kzalloc(sizeof(*pcie), GFP_KERNEL);
316 if (!pcie)
317 return -ENOMEM;
318 pcie->port = pdev;
319 pcie->irq = irq;
320 pcie->service = service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* Initialize generic device interface */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900323 device = &pcie->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 device->bus = &pcie_port_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 device->release = release_pcie_device; /* callback to free pcie dev */
Kay Sievers1a927132008-10-30 02:17:49 +0100326 dev_set_name(device, "%s:pcie%02x",
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900327 pci_name(pdev),
328 get_descriptor_id(pdev->pcie_type, service));
329 device->parent = &pdev->dev;
Rafael J. Wysockia1e4d722010-02-08 19:16:33 +0100330 device_enable_async_suspend(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900332 retval = device_register(device);
333 if (retval)
334 kfree(pcie);
335 else
336 get_device(device);
337 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100340/**
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100341 * pcie_port_device_register - register PCI Express port
342 * @dev: PCI Express port to register
343 *
344 * Allocate the port extension structure and register services associated with
345 * the port.
346 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347int pcie_port_device_register(struct pci_dev *dev)
348{
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900349 int status, capabilities, i, nr_service;
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900350 int irqs[PCIE_PORT_DEVICE_MAXSERVICES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900352 /* Enable PCI Express port device */
353 status = pci_enable_device(dev);
354 if (status)
Kenji Kaneshige694f88e2009-11-25 21:06:15 +0900355 return status;
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100356
357 /* Get and check PCI Express port services */
358 capabilities = get_port_device_capability(dev);
359 if (!capabilities) {
360 pcie_no_aspm();
361 return 0;
362 }
363
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900364 pci_set_master(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900365 /*
366 * Initialize service irqs. Don't use service devices that
367 * require interrupts if there is no way to generate them.
368 */
369 status = init_service_irqs(dev, irqs, capabilities);
370 if (status) {
371 capabilities &= PCIE_PORT_SERVICE_VC;
372 if (!capabilities)
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900373 goto error_disable;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100374 }
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100375
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100376 /* Allocate child services if any */
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900377 status = -ENODEV;
378 nr_service = 0;
379 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++) {
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100380 int service = 1 << i;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100381 if (!(capabilities & service))
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100382 continue;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900383 if (!pcie_device_init(dev, service, irqs[i]))
384 nr_service++;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100385 }
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900386 if (!nr_service)
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900387 goto error_cleanup_irqs;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 0;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100390
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900391error_cleanup_irqs:
392 cleanup_service_irqs(dev);
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900393error_disable:
394 pci_disable_device(dev);
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100395 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398#ifdef CONFIG_PM
longd0e2b4a2005-03-29 13:36:43 -0800399static int suspend_iter(struct device *dev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct pcie_port_service_driver *service_driver;
402
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900403 if ((dev->bus == &pcie_port_bus_type) && dev->driver) {
404 service_driver = to_service_driver(dev->driver);
405 if (service_driver->suspend)
406 service_driver->suspend(to_pcie_device(dev));
407 }
longd0e2b4a2005-03-29 13:36:43 -0800408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100411/**
412 * pcie_port_device_suspend - suspend port services associated with a PCIe port
413 * @dev: PCI Express port to handle
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100414 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100415int pcie_port_device_suspend(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800416{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100417 return device_for_each_child(dev, NULL, suspend_iter);
longd0e2b4a2005-03-29 13:36:43 -0800418}
419
420static int resume_iter(struct device *dev, void *data)
421{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 struct pcie_port_service_driver *service_driver;
423
longd0e2b4a2005-03-29 13:36:43 -0800424 if ((dev->bus == &pcie_port_bus_type) &&
425 (dev->driver)) {
426 service_driver = to_service_driver(dev->driver);
427 if (service_driver->resume)
428 service_driver->resume(to_pcie_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
longd0e2b4a2005-03-29 13:36:43 -0800430 return 0;
431}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100433/**
434 * pcie_port_device_suspend - resume port services associated with a PCIe port
435 * @dev: PCI Express port to handle
436 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100437int pcie_port_device_resume(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800438{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100439 return device_for_each_child(dev, NULL, resume_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100441#endif /* PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
longd0e2b4a2005-03-29 13:36:43 -0800443static int remove_iter(struct device *dev, void *data)
444{
longd0e2b4a2005-03-29 13:36:43 -0800445 if (dev->bus == &pcie_port_bus_type) {
Eric W. Biedermanae405822009-02-20 20:16:07 -0800446 put_device(dev);
447 device_unregister(dev);
longd0e2b4a2005-03-29 13:36:43 -0800448 }
449 return 0;
450}
451
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100452/**
453 * pcie_port_device_remove - unregister PCI Express port service devices
454 * @dev: PCI Express port the service devices to unregister are associated with
455 *
456 * Remove PCI Express port service devices associated with given port and
457 * disable MSI-X or MSI for the port.
458 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459void pcie_port_device_remove(struct pci_dev *dev)
460{
Eric W. Biedermanae405822009-02-20 20:16:07 -0800461 device_for_each_child(&dev->dev, NULL, remove_iter);
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900462 cleanup_service_irqs(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900463 pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100466/**
467 * pcie_port_probe_service - probe driver for given PCI Express port service
468 * @dev: PCI Express port service device to probe against
469 *
470 * If PCI Express port service driver is registered with
471 * pcie_port_service_register(), this function will be called by the driver core
472 * whenever match is found between the driver and a port service device.
473 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100474static int pcie_port_probe_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100476 struct pcie_device *pciedev;
477 struct pcie_port_service_driver *driver;
478 int status;
479
480 if (!dev || !dev->driver)
481 return -ENODEV;
482
483 driver = to_service_driver(dev->driver);
484 if (!driver || !driver->probe)
485 return -ENODEV;
486
487 pciedev = to_pcie_device(dev);
Rafael J. Wysocki0516c8b2009-01-13 14:44:19 +0100488 status = driver->probe(pciedev);
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100489 if (!status) {
490 dev_printk(KERN_DEBUG, dev, "service driver %s loaded\n",
491 driver->name);
492 get_device(dev);
493 }
494 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100497/**
498 * pcie_port_remove_service - detach driver from given PCI Express port service
499 * @dev: PCI Express port service device to handle
500 *
501 * If PCI Express port service driver is registered with
502 * pcie_port_service_register(), this function will be called by the driver core
503 * when device_unregister() is called for the port service device associated
504 * with the driver.
505 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100506static int pcie_port_remove_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100508 struct pcie_device *pciedev;
509 struct pcie_port_service_driver *driver;
510
511 if (!dev || !dev->driver)
512 return 0;
513
514 pciedev = to_pcie_device(dev);
515 driver = to_service_driver(dev->driver);
516 if (driver && driver->remove) {
517 dev_printk(KERN_DEBUG, dev, "unloading service driver %s\n",
518 driver->name);
519 driver->remove(pciedev);
520 put_device(dev);
521 }
522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100525/**
526 * pcie_port_shutdown_service - shut down given PCI Express port service
527 * @dev: PCI Express port service device to handle
528 *
529 * If PCI Express port service driver is registered with
530 * pcie_port_service_register(), this function will be called by the driver core
531 * when device_shutdown() is called for the port service device associated
532 * with the driver.
533 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100534static void pcie_port_shutdown_service(struct device *dev) {}
535
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100536/**
537 * pcie_port_service_register - register PCI Express port service driver
538 * @new: PCI Express port service driver to register
539 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540int pcie_port_service_register(struct pcie_port_service_driver *new)
541{
Rafael J. Wysocki79dd9182010-08-21 01:51:44 +0200542 if (pcie_ports_disabled)
543 return -ENODEV;
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 new->driver.name = (char *)new->name;
546 new->driver.bus = &pcie_port_bus_type;
547 new->driver.probe = pcie_port_probe_service;
548 new->driver.remove = pcie_port_remove_service;
549 new->driver.shutdown = pcie_port_shutdown_service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 return driver_register(&new->driver);
longd0e2b4a2005-03-29 13:36:43 -0800552}
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900553EXPORT_SYMBOL(pcie_port_service_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100555/**
556 * pcie_port_service_unregister - unregister PCI Express port service driver
557 * @drv: PCI Express port service driver to unregister
558 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100559void pcie_port_service_unregister(struct pcie_port_service_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100561 driver_unregister(&drv->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563EXPORT_SYMBOL(pcie_port_service_unregister);