blob: 70d3555903ae5c6bc42d4ee16165c6073da8c743 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +010019#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "portdrv.h"
21
MUNEDA Takahiro7570a332012-02-02 11:09:22 -050022bool pciehp_msi_disabled;
23
24static int __init pciehp_setup(char *str)
25{
26 if (!strncmp(str, "nomsi", 5))
27 pciehp_msi_disabled = true;
28
29 return 1;
30}
31__setup("pcie_hp=", pciehp_setup);
32
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +010033/**
34 * release_pcie_device - free PCI Express port service device structure
35 * @dev: Port service device to release
36 *
37 * Invoked automatically when device is being removed in response to
38 * device_unregister(dev). Release all resources being claimed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40static void release_pcie_device(struct device *dev)
41{
Hidetoshi Seto40da4182009-12-15 11:38:04 +090042 kfree(to_pcie_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +010045/**
Rafael J. Wysockib43d4512009-01-24 00:23:22 +010046 * pcie_port_msix_add_entry - add entry to given array of MSI-X entries
47 * @entries: Array of MSI-X entries
48 * @new_entry: Index of the entry to add to the array
49 * @nr_entries: Number of entries aleady in the array
50 *
51 * Return value: Position of the added entry in the array
52 */
53static int pcie_port_msix_add_entry(
54 struct msix_entry *entries, int new_entry, int nr_entries)
55{
56 int j;
57
58 for (j = 0; j < nr_entries; j++)
59 if (entries[j].entry == new_entry)
60 return j;
61
62 entries[j].entry = new_entry;
63 return j;
64}
65
66/**
67 * pcie_port_enable_msix - try to set up MSI-X as interrupt mode for given port
68 * @dev: PCI Express port to handle
69 * @vectors: Array of interrupt vectors to populate
70 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
71 *
72 * Return value: 0 on success, error code on failure
73 */
74static int pcie_port_enable_msix(struct pci_dev *dev, int *vectors, int mask)
75{
76 struct msix_entry *msix_entries;
77 int idx[PCIE_PORT_DEVICE_MAXSERVICES];
78 int nr_entries, status, pos, i, nvec;
79 u16 reg16;
80 u32 reg32;
81
82 nr_entries = pci_msix_table_size(dev);
83 if (!nr_entries)
84 return -EINVAL;
85 if (nr_entries > PCIE_PORT_MAX_MSIX_ENTRIES)
86 nr_entries = PCIE_PORT_MAX_MSIX_ENTRIES;
87
88 msix_entries = kzalloc(sizeof(*msix_entries) * nr_entries, GFP_KERNEL);
89 if (!msix_entries)
90 return -ENOMEM;
91
92 /*
93 * Allocate as many entries as the port wants, so that we can check
94 * which of them will be useful. Moreover, if nr_entries is correctly
95 * equal to the number of entries this port actually uses, we'll happily
96 * go through without any tricks.
97 */
98 for (i = 0; i < nr_entries; i++)
99 msix_entries[i].entry = i;
100
101 status = pci_enable_msix(dev, msix_entries, nr_entries);
102 if (status)
103 goto Exit;
104
105 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
106 idx[i] = -1;
107 status = -EIO;
108 nvec = 0;
109
110 if (mask & (PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP)) {
111 int entry;
112
113 /*
114 * The code below follows the PCI Express Base Specification 2.0
115 * stating in Section 6.1.6 that "PME and Hot-Plug Event
116 * interrupts (when both are implemented) always share the same
117 * MSI or MSI-X vector, as indicated by the Interrupt Message
118 * Number field in the PCI Express Capabilities register", where
119 * according to Section 7.8.2 of the specification "For MSI-X,
120 * the value in this field indicates which MSI-X Table entry is
121 * used to generate the interrupt message."
122 */
Bjorn Helgaas33e8b34fd2012-12-05 13:51:18 -0700123 pcie_capability_read_word(dev, PCI_EXP_FLAGS, &reg16);
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900124 entry = (reg16 & PCI_EXP_FLAGS_IRQ) >> 9;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100125 if (entry >= nr_entries)
126 goto Error;
127
128 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
129 if (i == nvec)
130 nvec++;
131
132 idx[PCIE_PORT_SERVICE_PME_SHIFT] = i;
133 idx[PCIE_PORT_SERVICE_HP_SHIFT] = i;
134 }
135
136 if (mask & PCIE_PORT_SERVICE_AER) {
137 int entry;
138
139 /*
140 * The code below follows Section 7.10.10 of the PCI Express
141 * Base Specification 2.0 stating that bits 31-27 of the Root
142 * Error Status Register contain a value indicating which of the
143 * MSI/MSI-X vectors assigned to the port is going to be used
144 * for AER, where "For MSI-X, the value in this register
145 * indicates which MSI-X Table entry is used to generate the
146 * interrupt message."
147 */
148 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
149 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &reg32);
150 entry = reg32 >> 27;
151 if (entry >= nr_entries)
152 goto Error;
153
154 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
155 if (i == nvec)
156 nvec++;
157
158 idx[PCIE_PORT_SERVICE_AER_SHIFT] = i;
159 }
160
161 /*
162 * If nvec is equal to the allocated number of entries, we can just use
163 * what we have. Otherwise, the port has some extra entries not for the
164 * services we know and we need to work around that.
165 */
166 if (nvec == nr_entries) {
167 status = 0;
168 } else {
169 /* Drop the temporary MSI-X setup */
170 pci_disable_msix(dev);
171
172 /* Now allocate the MSI-X vectors for real */
173 status = pci_enable_msix(dev, msix_entries, nvec);
174 if (status)
175 goto Exit;
176 }
177
178 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
179 vectors[i] = idx[i] >= 0 ? msix_entries[idx[i]].vector : -1;
180
181 Exit:
182 kfree(msix_entries);
183 return status;
184
185 Error:
186 pci_disable_msix(dev);
187 goto Exit;
188}
189
190/**
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900191 * init_service_irqs - initialize irqs for PCI Express port services
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100192 * @dev: PCI Express port to handle
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900193 * @irqs: Array of irqs to populate
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100194 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
195 *
196 * Return value: Interrupt mode associated with the port
197 */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900198static int init_service_irqs(struct pci_dev *dev, int *irqs, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100200 int i, irq = -1;
201
Shengzhou Liue237d832012-07-18 14:06:54 +0800202 /*
203 * If MSI cannot be used for PCIe PME or hotplug, we have to use
204 * INTx or other interrupts, e.g. system shared interrupt.
205 */
MUNEDA Takahiro7570a332012-02-02 11:09:22 -0500206 if (((mask & PCIE_PORT_SERVICE_PME) && pcie_pme_no_msi()) ||
207 ((mask & PCIE_PORT_SERVICE_HP) && pciehp_no_msi())) {
Shengzhou Liue237d832012-07-18 14:06:54 +0800208 if (dev->irq)
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100209 irq = dev->irq;
210 goto no_msi;
211 }
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100212
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100213 /* Try to use MSI-X if supported */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900214 if (!pcie_port_enable_msix(dev, irqs, mask))
215 return 0;
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100216
Shengzhou Liue237d832012-07-18 14:06:54 +0800217 /*
218 * We're not going to use MSI-X, so try MSI and fall back to INTx.
219 * If neither MSI/MSI-X nor INTx available, try other interrupt. On
220 * some platforms, root port doesn't support MSI/MSI-X/INTx in RC mode.
221 */
222 if (!pci_enable_msi(dev) || dev->irq)
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900223 irq = dev->irq;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100224
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100225 no_msi:
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100226 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900227 irqs[i] = irq;
228 irqs[PCIE_PORT_SERVICE_VC_SHIFT] = -1;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100229
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900230 if (irq < 0)
231 return -ENODEV;
232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900235static void cleanup_service_irqs(struct pci_dev *dev)
236{
237 if (dev->msix_enabled)
238 pci_disable_msix(dev);
239 else if (dev->msi_enabled)
240 pci_disable_msi(dev);
241}
242
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100243/**
244 * get_port_device_capability - discover capabilities of a PCI Express port
245 * @dev: PCI Express port to examine
246 *
247 * The capabilities are read from the port's PCI Express configuration registers
248 * as described in PCI Express Base Specification 1.0a sections 7.8.2, 7.8.9 and
249 * 7.9 - 7.11.
250 *
251 * Return value: Bitmask of discovered port capabilities
252 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253static int get_port_device_capability(struct pci_dev *dev)
254{
Jiang Liu2dcfaf82012-07-24 17:20:08 +0800255 int services = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 u32 reg32;
Chunhe Lan1267b3a2012-03-07 15:16:26 +0800257 int cap_mask = 0;
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200258 int err;
259
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100260 if (pcie_ports_disabled)
261 return 0;
262
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200263 err = pcie_port_platform_notify(dev, &cap_mask);
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100264 if (!pcie_ports_auto) {
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200265 cap_mask = PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP
266 | PCIE_PORT_SERVICE_VC;
267 if (pci_aer_available())
268 cap_mask |= PCIE_PORT_SERVICE_AER;
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100269 } else if (err) {
270 return 0;
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* Hot-Plug Capable */
Jiang Liu2dcfaf82012-07-24 17:20:08 +0800274 if (cap_mask & PCIE_PORT_SERVICE_HP) {
275 pcie_capability_read_dword(dev, PCI_EXP_SLTCAP, &reg32);
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200276 if (reg32 & PCI_EXP_SLTCAP_HPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 services |= PCIE_PORT_SERVICE_HP;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200278 /*
279 * Disable hot-plug interrupts in case they have been
280 * enabled by the BIOS and the hot-plug service driver
281 * is not loaded.
282 */
Jiang Liu2dcfaf82012-07-24 17:20:08 +0800283 pcie_capability_clear_word(dev, PCI_EXP_SLTCTL,
284 PCI_EXP_SLTCTL_CCIE | PCI_EXP_SLTCTL_HPIE);
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200285 }
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +0100286 }
287 /* AER capable */
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200288 if ((cap_mask & PCIE_PORT_SERVICE_AER)
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200289 && pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR)) {
Jesse Barnes09276782008-10-18 17:33:19 -0700290 services |= PCIE_PORT_SERVICE_AER;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200291 /*
292 * Disable AER on this port in case it's been enabled by the
293 * BIOS (the AER service driver will enable it when necessary).
294 */
295 pci_disable_pcie_error_reporting(dev);
296 }
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +0100297 /* VC support */
Jesse Barnes09276782008-10-18 17:33:19 -0700298 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_VC))
299 services |= PCIE_PORT_SERVICE_VC;
Kenji Kaneshige9e5d0b12009-11-25 21:02:51 +0900300 /* Root ports are capable of generating PME too */
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200301 if ((cap_mask & PCIE_PORT_SERVICE_PME)
Yijing Wang62f87c02012-07-24 17:20:03 +0800302 && pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) {
Kenji Kaneshige9e5d0b12009-11-25 21:02:51 +0900303 services |= PCIE_PORT_SERVICE_PME;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200304 /*
305 * Disable PME interrupt on this port in case it's been enabled
306 * by the BIOS (the PME service driver will enable it when
307 * necessary).
308 */
309 pcie_pme_interrupt_enable(dev, false);
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 return services;
313}
314
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100315/**
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900316 * pcie_device_init - allocate and initialize PCI Express port service device
317 * @pdev: PCI Express port to associate the service device with
318 * @service: Type of service to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100319 * @irq: Interrupt vector to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100320 */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900321static int pcie_device_init(struct pci_dev *pdev, int service, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900323 int retval;
324 struct pcie_device *pcie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 struct device *device;
326
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900327 pcie = kzalloc(sizeof(*pcie), GFP_KERNEL);
328 if (!pcie)
329 return -ENOMEM;
330 pcie->port = pdev;
331 pcie->irq = irq;
332 pcie->service = service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /* Initialize generic device interface */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900335 device = &pcie->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 device->bus = &pcie_port_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 device->release = release_pcie_device; /* callback to free pcie dev */
Kay Sievers1a927132008-10-30 02:17:49 +0100338 dev_set_name(device, "%s:pcie%02x",
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900339 pci_name(pdev),
Yijing Wang62f87c02012-07-24 17:20:03 +0800340 get_descriptor_id(pci_pcie_type(pdev), service));
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900341 device->parent = &pdev->dev;
Rafael J. Wysockia1e4d722010-02-08 19:16:33 +0100342 device_enable_async_suspend(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900344 retval = device_register(device);
345 if (retval)
346 kfree(pcie);
347 else
348 get_device(device);
349 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100352/**
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100353 * pcie_port_device_register - register PCI Express port
354 * @dev: PCI Express port to register
355 *
356 * Allocate the port extension structure and register services associated with
357 * the port.
358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359int pcie_port_device_register(struct pci_dev *dev)
360{
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900361 int status, capabilities, i, nr_service;
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900362 int irqs[PCIE_PORT_DEVICE_MAXSERVICES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900364 /* Enable PCI Express port device */
365 status = pci_enable_device(dev);
366 if (status)
Kenji Kaneshige694f88e2009-11-25 21:06:15 +0900367 return status;
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100368
369 /* Get and check PCI Express port services */
370 capabilities = get_port_device_capability(dev);
Naga Chumbalkareca67312011-03-21 03:29:20 +0000371 if (!capabilities)
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100372 return 0;
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100373
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900374 pci_set_master(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900375 /*
376 * Initialize service irqs. Don't use service devices that
377 * require interrupts if there is no way to generate them.
378 */
379 status = init_service_irqs(dev, irqs, capabilities);
380 if (status) {
381 capabilities &= PCIE_PORT_SERVICE_VC;
382 if (!capabilities)
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900383 goto error_disable;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100384 }
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100385
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100386 /* Allocate child services if any */
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900387 status = -ENODEV;
388 nr_service = 0;
389 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++) {
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100390 int service = 1 << i;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100391 if (!(capabilities & service))
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100392 continue;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900393 if (!pcie_device_init(dev, service, irqs[i]))
394 nr_service++;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100395 }
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900396 if (!nr_service)
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900397 goto error_cleanup_irqs;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 0;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100400
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900401error_cleanup_irqs:
402 cleanup_service_irqs(dev);
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900403error_disable:
404 pci_disable_device(dev);
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100405 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
408#ifdef CONFIG_PM
longd0e2b4a2005-03-29 13:36:43 -0800409static int suspend_iter(struct device *dev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct pcie_port_service_driver *service_driver;
412
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900413 if ((dev->bus == &pcie_port_bus_type) && dev->driver) {
414 service_driver = to_service_driver(dev->driver);
415 if (service_driver->suspend)
416 service_driver->suspend(to_pcie_device(dev));
417 }
longd0e2b4a2005-03-29 13:36:43 -0800418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100421/**
422 * pcie_port_device_suspend - suspend port services associated with a PCIe port
423 * @dev: PCI Express port to handle
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100424 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100425int pcie_port_device_suspend(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800426{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100427 return device_for_each_child(dev, NULL, suspend_iter);
longd0e2b4a2005-03-29 13:36:43 -0800428}
429
430static int resume_iter(struct device *dev, void *data)
431{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct pcie_port_service_driver *service_driver;
433
longd0e2b4a2005-03-29 13:36:43 -0800434 if ((dev->bus == &pcie_port_bus_type) &&
435 (dev->driver)) {
436 service_driver = to_service_driver(dev->driver);
437 if (service_driver->resume)
438 service_driver->resume(to_pcie_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
longd0e2b4a2005-03-29 13:36:43 -0800440 return 0;
441}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100443/**
444 * pcie_port_device_suspend - resume port services associated with a PCIe port
445 * @dev: PCI Express port to handle
446 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100447int pcie_port_device_resume(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800448{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100449 return device_for_each_child(dev, NULL, resume_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100451#endif /* PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
longd0e2b4a2005-03-29 13:36:43 -0800453static int remove_iter(struct device *dev, void *data)
454{
longd0e2b4a2005-03-29 13:36:43 -0800455 if (dev->bus == &pcie_port_bus_type) {
Eric W. Biedermanae405822009-02-20 20:16:07 -0800456 put_device(dev);
457 device_unregister(dev);
longd0e2b4a2005-03-29 13:36:43 -0800458 }
459 return 0;
460}
461
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100462/**
463 * pcie_port_device_remove - unregister PCI Express port service devices
464 * @dev: PCI Express port the service devices to unregister are associated with
465 *
466 * Remove PCI Express port service devices associated with given port and
467 * disable MSI-X or MSI for the port.
468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469void pcie_port_device_remove(struct pci_dev *dev)
470{
Eric W. Biedermanae405822009-02-20 20:16:07 -0800471 device_for_each_child(&dev->dev, NULL, remove_iter);
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900472 cleanup_service_irqs(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900473 pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100476/**
477 * pcie_port_probe_service - probe driver for given PCI Express port service
478 * @dev: PCI Express port service device to probe against
479 *
480 * If PCI Express port service driver is registered with
481 * pcie_port_service_register(), this function will be called by the driver core
482 * whenever match is found between the driver and a port service device.
483 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100484static int pcie_port_probe_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100486 struct pcie_device *pciedev;
487 struct pcie_port_service_driver *driver;
488 int status;
489
490 if (!dev || !dev->driver)
491 return -ENODEV;
492
493 driver = to_service_driver(dev->driver);
494 if (!driver || !driver->probe)
495 return -ENODEV;
496
497 pciedev = to_pcie_device(dev);
Rafael J. Wysocki0516c8b2009-01-13 14:44:19 +0100498 status = driver->probe(pciedev);
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100499 if (!status) {
500 dev_printk(KERN_DEBUG, dev, "service driver %s loaded\n",
501 driver->name);
502 get_device(dev);
503 }
504 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100507/**
508 * pcie_port_remove_service - detach driver from given PCI Express port service
509 * @dev: PCI Express port service device to handle
510 *
511 * If PCI Express port service driver is registered with
512 * pcie_port_service_register(), this function will be called by the driver core
513 * when device_unregister() is called for the port service device associated
514 * with the driver.
515 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100516static int pcie_port_remove_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100518 struct pcie_device *pciedev;
519 struct pcie_port_service_driver *driver;
520
521 if (!dev || !dev->driver)
522 return 0;
523
524 pciedev = to_pcie_device(dev);
525 driver = to_service_driver(dev->driver);
526 if (driver && driver->remove) {
527 dev_printk(KERN_DEBUG, dev, "unloading service driver %s\n",
528 driver->name);
529 driver->remove(pciedev);
530 put_device(dev);
531 }
532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100535/**
536 * pcie_port_shutdown_service - shut down given PCI Express port service
537 * @dev: PCI Express port service device to handle
538 *
539 * If PCI Express port service driver is registered with
540 * pcie_port_service_register(), this function will be called by the driver core
541 * when device_shutdown() is called for the port service device associated
542 * with the driver.
543 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100544static void pcie_port_shutdown_service(struct device *dev) {}
545
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100546/**
547 * pcie_port_service_register - register PCI Express port service driver
548 * @new: PCI Express port service driver to register
549 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550int pcie_port_service_register(struct pcie_port_service_driver *new)
551{
Rafael J. Wysocki79dd9182010-08-21 01:51:44 +0200552 if (pcie_ports_disabled)
553 return -ENODEV;
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 new->driver.name = (char *)new->name;
556 new->driver.bus = &pcie_port_bus_type;
557 new->driver.probe = pcie_port_probe_service;
558 new->driver.remove = pcie_port_remove_service;
559 new->driver.shutdown = pcie_port_shutdown_service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 return driver_register(&new->driver);
longd0e2b4a2005-03-29 13:36:43 -0800562}
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900563EXPORT_SYMBOL(pcie_port_service_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100565/**
566 * pcie_port_service_unregister - unregister PCI Express port service driver
567 * @drv: PCI Express port service driver to unregister
568 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100569void pcie_port_service_unregister(struct pcie_port_service_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100571 driver_unregister(&drv->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573EXPORT_SYMBOL(pcie_port_service_unregister);