blob: 0d34ff4153998ca823ebf7b928b428e165691f3a [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>
17
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +010018#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "portdrv.h"
20
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +010021/**
22 * release_pcie_device - free PCI Express port service device structure
23 * @dev: Port service device to release
24 *
25 * Invoked automatically when device is being removed in response to
26 * device_unregister(dev). Release all resources being claimed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28static void release_pcie_device(struct device *dev)
29{
Hidetoshi Seto40da4182009-12-15 11:38:04 +090030 kfree(to_pcie_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070031}
32
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +010033/**
Rafael J. Wysockib43d4512009-01-24 00:23:22 +010034 * pcie_port_msix_add_entry - add entry to given array of MSI-X entries
35 * @entries: Array of MSI-X entries
36 * @new_entry: Index of the entry to add to the array
37 * @nr_entries: Number of entries aleady in the array
38 *
39 * Return value: Position of the added entry in the array
40 */
41static int pcie_port_msix_add_entry(
42 struct msix_entry *entries, int new_entry, int nr_entries)
43{
44 int j;
45
46 for (j = 0; j < nr_entries; j++)
47 if (entries[j].entry == new_entry)
48 return j;
49
50 entries[j].entry = new_entry;
51 return j;
52}
53
54/**
55 * pcie_port_enable_msix - try to set up MSI-X as interrupt mode for given port
56 * @dev: PCI Express port to handle
57 * @vectors: Array of interrupt vectors to populate
58 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
59 *
60 * Return value: 0 on success, error code on failure
61 */
62static int pcie_port_enable_msix(struct pci_dev *dev, int *vectors, int mask)
63{
64 struct msix_entry *msix_entries;
65 int idx[PCIE_PORT_DEVICE_MAXSERVICES];
66 int nr_entries, status, pos, i, nvec;
67 u16 reg16;
68 u32 reg32;
69
70 nr_entries = pci_msix_table_size(dev);
71 if (!nr_entries)
72 return -EINVAL;
73 if (nr_entries > PCIE_PORT_MAX_MSIX_ENTRIES)
74 nr_entries = PCIE_PORT_MAX_MSIX_ENTRIES;
75
76 msix_entries = kzalloc(sizeof(*msix_entries) * nr_entries, GFP_KERNEL);
77 if (!msix_entries)
78 return -ENOMEM;
79
80 /*
81 * Allocate as many entries as the port wants, so that we can check
82 * which of them will be useful. Moreover, if nr_entries is correctly
83 * equal to the number of entries this port actually uses, we'll happily
84 * go through without any tricks.
85 */
86 for (i = 0; i < nr_entries; i++)
87 msix_entries[i].entry = i;
88
89 status = pci_enable_msix(dev, msix_entries, nr_entries);
90 if (status)
91 goto Exit;
92
93 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
94 idx[i] = -1;
95 status = -EIO;
96 nvec = 0;
97
98 if (mask & (PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP)) {
99 int entry;
100
101 /*
102 * The code below follows the PCI Express Base Specification 2.0
103 * stating in Section 6.1.6 that "PME and Hot-Plug Event
104 * interrupts (when both are implemented) always share the same
105 * MSI or MSI-X vector, as indicated by the Interrupt Message
106 * Number field in the PCI Express Capabilities register", where
107 * according to Section 7.8.2 of the specification "For MSI-X,
108 * the value in this field indicates which MSI-X Table entry is
109 * used to generate the interrupt message."
110 */
Kenji Kaneshigedba90df2009-11-11 14:32:42 +0900111 pos = pci_pcie_cap(dev);
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900112 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &reg16);
113 entry = (reg16 & PCI_EXP_FLAGS_IRQ) >> 9;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100114 if (entry >= nr_entries)
115 goto Error;
116
117 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
118 if (i == nvec)
119 nvec++;
120
121 idx[PCIE_PORT_SERVICE_PME_SHIFT] = i;
122 idx[PCIE_PORT_SERVICE_HP_SHIFT] = i;
123 }
124
125 if (mask & PCIE_PORT_SERVICE_AER) {
126 int entry;
127
128 /*
129 * The code below follows Section 7.10.10 of the PCI Express
130 * Base Specification 2.0 stating that bits 31-27 of the Root
131 * Error Status Register contain a value indicating which of the
132 * MSI/MSI-X vectors assigned to the port is going to be used
133 * for AER, where "For MSI-X, the value in this register
134 * indicates which MSI-X Table entry is used to generate the
135 * interrupt message."
136 */
137 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
138 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &reg32);
139 entry = reg32 >> 27;
140 if (entry >= nr_entries)
141 goto Error;
142
143 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
144 if (i == nvec)
145 nvec++;
146
147 idx[PCIE_PORT_SERVICE_AER_SHIFT] = i;
148 }
149
150 /*
151 * If nvec is equal to the allocated number of entries, we can just use
152 * what we have. Otherwise, the port has some extra entries not for the
153 * services we know and we need to work around that.
154 */
155 if (nvec == nr_entries) {
156 status = 0;
157 } else {
158 /* Drop the temporary MSI-X setup */
159 pci_disable_msix(dev);
160
161 /* Now allocate the MSI-X vectors for real */
162 status = pci_enable_msix(dev, msix_entries, nvec);
163 if (status)
164 goto Exit;
165 }
166
167 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
168 vectors[i] = idx[i] >= 0 ? msix_entries[idx[i]].vector : -1;
169
170 Exit:
171 kfree(msix_entries);
172 return status;
173
174 Error:
175 pci_disable_msix(dev);
176 goto Exit;
177}
178
179/**
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900180 * init_service_irqs - initialize irqs for PCI Express port services
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100181 * @dev: PCI Express port to handle
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900182 * @irqs: Array of irqs to populate
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100183 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
184 *
185 * Return value: Interrupt mode associated with the port
186 */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900187static int init_service_irqs(struct pci_dev *dev, int *irqs, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100189 int i, irq = -1;
190
191 /* We have to use INTx if MSI cannot be used for PCIe PME. */
192 if ((mask & PCIE_PORT_SERVICE_PME) && pcie_pme_no_msi()) {
193 if (dev->pin)
194 irq = dev->irq;
195 goto no_msi;
196 }
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100197
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100198 /* Try to use MSI-X if supported */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900199 if (!pcie_port_enable_msix(dev, irqs, mask))
200 return 0;
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100201
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100202 /* We're not going to use MSI-X, so try MSI and fall back to INTx */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900203 if (!pci_enable_msi(dev) || dev->pin)
204 irq = dev->irq;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100205
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100206 no_msi:
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100207 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900208 irqs[i] = irq;
209 irqs[PCIE_PORT_SERVICE_VC_SHIFT] = -1;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100210
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900211 if (irq < 0)
212 return -ENODEV;
213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900216static void cleanup_service_irqs(struct pci_dev *dev)
217{
218 if (dev->msix_enabled)
219 pci_disable_msix(dev);
220 else if (dev->msi_enabled)
221 pci_disable_msi(dev);
222}
223
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100224/**
225 * get_port_device_capability - discover capabilities of a PCI Express port
226 * @dev: PCI Express port to examine
227 *
228 * The capabilities are read from the port's PCI Express configuration registers
229 * as described in PCI Express Base Specification 1.0a sections 7.8.2, 7.8.9 and
230 * 7.9 - 7.11.
231 *
232 * Return value: Bitmask of discovered port capabilities
233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234static int get_port_device_capability(struct pci_dev *dev)
235{
236 int services = 0, pos;
237 u16 reg16;
238 u32 reg32;
239
Kenji Kaneshigedba90df2009-11-11 14:32:42 +0900240 pos = pci_pcie_cap(dev);
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900241 pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &reg16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* Hot-Plug Capable */
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900243 if (reg16 & PCI_EXP_FLAGS_SLOT) {
244 pci_read_config_dword(dev, pos + PCI_EXP_SLTCAP, &reg32);
245 if (reg32 & PCI_EXP_SLTCAP_HPC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 services |= PCIE_PORT_SERVICE_HP;
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +0100247 }
248 /* AER capable */
Jesse Barnes09276782008-10-18 17:33:19 -0700249 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR))
250 services |= PCIE_PORT_SERVICE_AER;
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +0100251 /* VC support */
Jesse Barnes09276782008-10-18 17:33:19 -0700252 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_VC))
253 services |= PCIE_PORT_SERVICE_VC;
Kenji Kaneshige9e5d0b12009-11-25 21:02:51 +0900254 /* Root ports are capable of generating PME too */
255 if (dev->pcie_type == PCI_EXP_TYPE_ROOT_PORT)
256 services |= PCIE_PORT_SERVICE_PME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 return services;
259}
260
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100261/**
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900262 * pcie_device_init - allocate and initialize PCI Express port service device
263 * @pdev: PCI Express port to associate the service device with
264 * @service: Type of service to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100265 * @irq: Interrupt vector to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100266 */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900267static int pcie_device_init(struct pci_dev *pdev, int service, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900269 int retval;
270 struct pcie_device *pcie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct device *device;
272
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900273 pcie = kzalloc(sizeof(*pcie), GFP_KERNEL);
274 if (!pcie)
275 return -ENOMEM;
276 pcie->port = pdev;
277 pcie->irq = irq;
278 pcie->service = service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* Initialize generic device interface */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900281 device = &pcie->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 device->bus = &pcie_port_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 device->release = release_pcie_device; /* callback to free pcie dev */
Kay Sievers1a927132008-10-30 02:17:49 +0100284 dev_set_name(device, "%s:pcie%02x",
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900285 pci_name(pdev),
286 get_descriptor_id(pdev->pcie_type, service));
287 device->parent = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900289 retval = device_register(device);
290 if (retval)
291 kfree(pcie);
292 else
293 get_device(device);
294 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100297/**
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100298 * pcie_port_device_register - register PCI Express port
299 * @dev: PCI Express port to register
300 *
301 * Allocate the port extension structure and register services associated with
302 * the port.
303 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304int pcie_port_device_register(struct pci_dev *dev)
305{
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900306 int status, capabilities, i, nr_service;
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900307 int irqs[PCIE_PORT_DEVICE_MAXSERVICES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900309 /* Get and check PCI Express port services */
Kenji Kaneshiged0135982009-11-25 21:03:27 +0900310 capabilities = get_port_device_capability(dev);
311 if (!capabilities)
312 return -ENODEV;
313
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900314 /* Enable PCI Express port device */
315 status = pci_enable_device(dev);
316 if (status)
Kenji Kaneshige694f88e2009-11-25 21:06:15 +0900317 return status;
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900318 pci_set_master(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900319 /*
320 * Initialize service irqs. Don't use service devices that
321 * require interrupts if there is no way to generate them.
322 */
323 status = init_service_irqs(dev, irqs, capabilities);
324 if (status) {
325 capabilities &= PCIE_PORT_SERVICE_VC;
326 if (!capabilities)
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900327 goto error_disable;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100328 }
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100329
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100330 /* Allocate child services if any */
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900331 status = -ENODEV;
332 nr_service = 0;
333 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++) {
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100334 int service = 1 << i;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100335 if (!(capabilities & service))
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100336 continue;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900337 if (!pcie_device_init(dev, service, irqs[i]))
338 nr_service++;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100339 }
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900340 if (!nr_service)
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900341 goto error_cleanup_irqs;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100344
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900345error_cleanup_irqs:
346 cleanup_service_irqs(dev);
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900347error_disable:
348 pci_disable_device(dev);
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100349 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352#ifdef CONFIG_PM
longd0e2b4a2005-03-29 13:36:43 -0800353static int suspend_iter(struct device *dev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct pcie_port_service_driver *service_driver;
356
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900357 if ((dev->bus == &pcie_port_bus_type) && dev->driver) {
358 service_driver = to_service_driver(dev->driver);
359 if (service_driver->suspend)
360 service_driver->suspend(to_pcie_device(dev));
361 }
longd0e2b4a2005-03-29 13:36:43 -0800362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100365/**
366 * pcie_port_device_suspend - suspend port services associated with a PCIe port
367 * @dev: PCI Express port to handle
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100368 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100369int pcie_port_device_suspend(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800370{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100371 return device_for_each_child(dev, NULL, suspend_iter);
longd0e2b4a2005-03-29 13:36:43 -0800372}
373
374static int resume_iter(struct device *dev, void *data)
375{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct pcie_port_service_driver *service_driver;
377
longd0e2b4a2005-03-29 13:36:43 -0800378 if ((dev->bus == &pcie_port_bus_type) &&
379 (dev->driver)) {
380 service_driver = to_service_driver(dev->driver);
381 if (service_driver->resume)
382 service_driver->resume(to_pcie_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
longd0e2b4a2005-03-29 13:36:43 -0800384 return 0;
385}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100387/**
388 * pcie_port_device_suspend - resume port services associated with a PCIe port
389 * @dev: PCI Express port to handle
390 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100391int pcie_port_device_resume(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800392{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100393 return device_for_each_child(dev, NULL, resume_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100395#endif /* PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
longd0e2b4a2005-03-29 13:36:43 -0800397static int remove_iter(struct device *dev, void *data)
398{
longd0e2b4a2005-03-29 13:36:43 -0800399 if (dev->bus == &pcie_port_bus_type) {
Eric W. Biedermanae405822009-02-20 20:16:07 -0800400 put_device(dev);
401 device_unregister(dev);
longd0e2b4a2005-03-29 13:36:43 -0800402 }
403 return 0;
404}
405
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100406/**
407 * pcie_port_device_remove - unregister PCI Express port service devices
408 * @dev: PCI Express port the service devices to unregister are associated with
409 *
410 * Remove PCI Express port service devices associated with given port and
411 * disable MSI-X or MSI for the port.
412 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413void pcie_port_device_remove(struct pci_dev *dev)
414{
Eric W. Biedermanae405822009-02-20 20:16:07 -0800415 device_for_each_child(&dev->dev, NULL, remove_iter);
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900416 cleanup_service_irqs(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900417 pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100420/**
421 * pcie_port_probe_service - probe driver for given PCI Express port service
422 * @dev: PCI Express port service device to probe against
423 *
424 * If PCI Express port service driver is registered with
425 * pcie_port_service_register(), this function will be called by the driver core
426 * whenever match is found between the driver and a port service device.
427 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100428static int pcie_port_probe_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100430 struct pcie_device *pciedev;
431 struct pcie_port_service_driver *driver;
432 int status;
433
434 if (!dev || !dev->driver)
435 return -ENODEV;
436
437 driver = to_service_driver(dev->driver);
438 if (!driver || !driver->probe)
439 return -ENODEV;
440
441 pciedev = to_pcie_device(dev);
Rafael J. Wysocki0516c8b2009-01-13 14:44:19 +0100442 status = driver->probe(pciedev);
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100443 if (!status) {
444 dev_printk(KERN_DEBUG, dev, "service driver %s loaded\n",
445 driver->name);
446 get_device(dev);
447 }
448 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100451/**
452 * pcie_port_remove_service - detach driver from given PCI Express port service
453 * @dev: PCI Express port service device to handle
454 *
455 * If PCI Express port service driver is registered with
456 * pcie_port_service_register(), this function will be called by the driver core
457 * when device_unregister() is called for the port service device associated
458 * with the driver.
459 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100460static int pcie_port_remove_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100462 struct pcie_device *pciedev;
463 struct pcie_port_service_driver *driver;
464
465 if (!dev || !dev->driver)
466 return 0;
467
468 pciedev = to_pcie_device(dev);
469 driver = to_service_driver(dev->driver);
470 if (driver && driver->remove) {
471 dev_printk(KERN_DEBUG, dev, "unloading service driver %s\n",
472 driver->name);
473 driver->remove(pciedev);
474 put_device(dev);
475 }
476 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100479/**
480 * pcie_port_shutdown_service - shut down given PCI Express port service
481 * @dev: PCI Express port service device to handle
482 *
483 * If PCI Express port service driver is registered with
484 * pcie_port_service_register(), this function will be called by the driver core
485 * when device_shutdown() is called for the port service device associated
486 * with the driver.
487 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100488static void pcie_port_shutdown_service(struct device *dev) {}
489
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100490/**
491 * pcie_port_service_register - register PCI Express port service driver
492 * @new: PCI Express port service driver to register
493 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494int pcie_port_service_register(struct pcie_port_service_driver *new)
495{
496 new->driver.name = (char *)new->name;
497 new->driver.bus = &pcie_port_bus_type;
498 new->driver.probe = pcie_port_probe_service;
499 new->driver.remove = pcie_port_remove_service;
500 new->driver.shutdown = pcie_port_shutdown_service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 return driver_register(&new->driver);
longd0e2b4a2005-03-29 13:36:43 -0800503}
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900504EXPORT_SYMBOL(pcie_port_service_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100506/**
507 * pcie_port_service_unregister - unregister PCI Express port service driver
508 * @drv: PCI Express port service driver to unregister
509 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100510void pcie_port_service_unregister(struct pcie_port_service_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100512 driver_unregister(&drv->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514EXPORT_SYMBOL(pcie_port_service_unregister);