blob: 0b1efb2760d13c3487dfc8f41a684d45b01b5e97 [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
Bjorn Helgaasf7625982013-11-14 11:28:18 -070049 * @nr_entries: Number of entries already in the array
Rafael J. Wysockib43d4512009-01-24 00:23:22 +010050 *
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
Alexander Gordeevff1aa432013-12-30 08:28:15 +010082 nr_entries = pci_msix_vec_count(dev);
83 if (nr_entries < 0)
84 return nr_entries;
85 BUG_ON(!nr_entries);
Rafael J. Wysockib43d4512009-01-24 00:23:22 +010086 if (nr_entries > PCIE_PORT_MAX_MSIX_ENTRIES)
87 nr_entries = PCIE_PORT_MAX_MSIX_ENTRIES;
88
89 msix_entries = kzalloc(sizeof(*msix_entries) * nr_entries, GFP_KERNEL);
90 if (!msix_entries)
91 return -ENOMEM;
92
93 /*
94 * Allocate as many entries as the port wants, so that we can check
95 * which of them will be useful. Moreover, if nr_entries is correctly
96 * equal to the number of entries this port actually uses, we'll happily
97 * go through without any tricks.
98 */
99 for (i = 0; i < nr_entries; i++)
100 msix_entries[i].entry = i;
101
Alexander Gordeev9ada07b2014-03-06 21:11:22 +0100102 status = pci_enable_msix_exact(dev, msix_entries, nr_entries);
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100103 if (status)
104 goto Exit;
105
106 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
107 idx[i] = -1;
108 status = -EIO;
109 nvec = 0;
110
111 if (mask & (PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP)) {
112 int entry;
113
114 /*
115 * The code below follows the PCI Express Base Specification 2.0
116 * stating in Section 6.1.6 that "PME and Hot-Plug Event
117 * interrupts (when both are implemented) always share the same
118 * MSI or MSI-X vector, as indicated by the Interrupt Message
119 * Number field in the PCI Express Capabilities register", where
120 * according to Section 7.8.2 of the specification "For MSI-X,
121 * the value in this field indicates which MSI-X Table entry is
122 * used to generate the interrupt message."
123 */
Bjorn Helgaas33e8b34fd2012-12-05 13:51:18 -0700124 pcie_capability_read_word(dev, PCI_EXP_FLAGS, &reg16);
Kenji Kaneshigef9f45602009-11-25 21:06:51 +0900125 entry = (reg16 & PCI_EXP_FLAGS_IRQ) >> 9;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100126 if (entry >= nr_entries)
127 goto Error;
128
129 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
130 if (i == nvec)
131 nvec++;
132
133 idx[PCIE_PORT_SERVICE_PME_SHIFT] = i;
134 idx[PCIE_PORT_SERVICE_HP_SHIFT] = i;
135 }
136
137 if (mask & PCIE_PORT_SERVICE_AER) {
138 int entry;
139
140 /*
141 * The code below follows Section 7.10.10 of the PCI Express
142 * Base Specification 2.0 stating that bits 31-27 of the Root
143 * Error Status Register contain a value indicating which of the
144 * MSI/MSI-X vectors assigned to the port is going to be used
145 * for AER, where "For MSI-X, the value in this register
146 * indicates which MSI-X Table entry is used to generate the
147 * interrupt message."
148 */
149 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
150 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &reg32);
151 entry = reg32 >> 27;
152 if (entry >= nr_entries)
153 goto Error;
154
155 i = pcie_port_msix_add_entry(msix_entries, entry, nvec);
156 if (i == nvec)
157 nvec++;
158
159 idx[PCIE_PORT_SERVICE_AER_SHIFT] = i;
160 }
161
162 /*
163 * If nvec is equal to the allocated number of entries, we can just use
164 * what we have. Otherwise, the port has some extra entries not for the
165 * services we know and we need to work around that.
166 */
167 if (nvec == nr_entries) {
168 status = 0;
169 } else {
170 /* Drop the temporary MSI-X setup */
171 pci_disable_msix(dev);
172
173 /* Now allocate the MSI-X vectors for real */
Alexander Gordeev9ada07b2014-03-06 21:11:22 +0100174 status = pci_enable_msix_exact(dev, msix_entries, nvec);
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100175 if (status)
176 goto Exit;
177 }
178
179 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
180 vectors[i] = idx[i] >= 0 ? msix_entries[idx[i]].vector : -1;
181
182 Exit:
183 kfree(msix_entries);
184 return status;
185
186 Error:
187 pci_disable_msix(dev);
188 goto Exit;
189}
190
191/**
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900192 * init_service_irqs - initialize irqs for PCI Express port services
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100193 * @dev: PCI Express port to handle
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900194 * @irqs: Array of irqs to populate
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100195 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
196 *
197 * Return value: Interrupt mode associated with the port
198 */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900199static int init_service_irqs(struct pci_dev *dev, int *irqs, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100201 int i, irq = -1;
202
Shengzhou Liue237d832012-07-18 14:06:54 +0800203 /*
204 * If MSI cannot be used for PCIe PME or hotplug, we have to use
205 * INTx or other interrupts, e.g. system shared interrupt.
206 */
MUNEDA Takahiro7570a332012-02-02 11:09:22 -0500207 if (((mask & PCIE_PORT_SERVICE_PME) && pcie_pme_no_msi()) ||
208 ((mask & PCIE_PORT_SERVICE_HP) && pciehp_no_msi())) {
Shengzhou Liue237d832012-07-18 14:06:54 +0800209 if (dev->irq)
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100210 irq = dev->irq;
211 goto no_msi;
212 }
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100213
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100214 /* Try to use MSI-X if supported */
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900215 if (!pcie_port_enable_msix(dev, irqs, mask))
216 return 0;
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100217
Shengzhou Liue237d832012-07-18 14:06:54 +0800218 /*
219 * We're not going to use MSI-X, so try MSI and fall back to INTx.
220 * If neither MSI/MSI-X nor INTx available, try other interrupt. On
221 * some platforms, root port doesn't support MSI/MSI-X/INTx in RC mode.
222 */
223 if (!pci_enable_msi(dev) || dev->irq)
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900224 irq = dev->irq;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100225
Rafael J. Wysockic39fae12010-02-17 23:40:07 +0100226 no_msi:
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100227 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900228 irqs[i] = irq;
229 irqs[PCIE_PORT_SERVICE_VC_SHIFT] = -1;
Rafael J. Wysockib43d4512009-01-24 00:23:22 +0100230
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900231 if (irq < 0)
232 return -ENODEV;
233 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900236static void cleanup_service_irqs(struct pci_dev *dev)
237{
238 if (dev->msix_enabled)
239 pci_disable_msix(dev);
240 else if (dev->msi_enabled)
241 pci_disable_msi(dev);
242}
243
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100244/**
245 * get_port_device_capability - discover capabilities of a PCI Express port
246 * @dev: PCI Express port to examine
247 *
248 * The capabilities are read from the port's PCI Express configuration registers
249 * as described in PCI Express Base Specification 1.0a sections 7.8.2, 7.8.9 and
250 * 7.9 - 7.11.
251 *
252 * Return value: Bitmask of discovered port capabilities
253 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254static int get_port_device_capability(struct pci_dev *dev)
255{
Jiang Liu2dcfaf82012-07-24 17:20:08 +0800256 int services = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 u32 reg32;
Chunhe Lan1267b3a2012-03-07 15:16:26 +0800258 int cap_mask = 0;
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200259 int err;
260
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100261 if (pcie_ports_disabled)
262 return 0;
263
Andrew Murray6b87e702013-10-26 18:23:25 +0100264 cap_mask = PCIE_PORT_SERVICE_PME | PCIE_PORT_SERVICE_HP
265 | PCIE_PORT_SERVICE_VC;
266 if (pci_aer_available())
267 cap_mask |= PCIE_PORT_SERVICE_AER;
268
269 if (pcie_ports_auto) {
270 err = pcie_port_platform_notify(dev, &cap_mask);
271 if (err)
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100272 return 0;
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Hot-Plug Capable */
Taku Izumiff8e59b2012-10-31 09:51:48 +0900276 if ((cap_mask & PCIE_PORT_SERVICE_HP) &&
Myron Stowe1c531d82013-01-25 17:55:45 -0700277 pcie_caps_reg(dev) & PCI_EXP_FLAGS_SLOT) {
Jiang Liu2dcfaf82012-07-24 17:20:08 +0800278 pcie_capability_read_dword(dev, PCI_EXP_SLTCAP, &reg32);
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200279 if (reg32 & PCI_EXP_SLTCAP_HPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 services |= PCIE_PORT_SERVICE_HP;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200281 /*
282 * Disable hot-plug interrupts in case they have been
283 * enabled by the BIOS and the hot-plug service driver
284 * is not loaded.
285 */
Jiang Liu2dcfaf82012-07-24 17:20:08 +0800286 pcie_capability_clear_word(dev, PCI_EXP_SLTCTL,
287 PCI_EXP_SLTCTL_CCIE | PCI_EXP_SLTCTL_HPIE);
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200288 }
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +0100289 }
290 /* AER capable */
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200291 if ((cap_mask & PCIE_PORT_SERVICE_AER)
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200292 && pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR)) {
Jesse Barnes09276782008-10-18 17:33:19 -0700293 services |= PCIE_PORT_SERVICE_AER;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200294 /*
295 * Disable AER on this port in case it's been enabled by the
296 * BIOS (the AER service driver will enable it when necessary).
297 */
298 pci_disable_pcie_error_reporting(dev);
299 }
Rafael J. Wysocki1bf83e552009-01-13 14:38:34 +0100300 /* VC support */
Jesse Barnes09276782008-10-18 17:33:19 -0700301 if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_VC))
302 services |= PCIE_PORT_SERVICE_VC;
Kenji Kaneshige9e5d0b12009-11-25 21:02:51 +0900303 /* Root ports are capable of generating PME too */
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200304 if ((cap_mask & PCIE_PORT_SERVICE_PME)
Yijing Wang62f87c02012-07-24 17:20:03 +0800305 && pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) {
Kenji Kaneshige9e5d0b12009-11-25 21:02:51 +0900306 services |= PCIE_PORT_SERVICE_PME;
Rafael J. Wysocki2bd50dd2010-08-21 01:57:39 +0200307 /*
308 * Disable PME interrupt on this port in case it's been enabled
309 * by the BIOS (the PME service driver will enable it when
310 * necessary).
311 */
312 pcie_pme_interrupt_enable(dev, false);
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 return services;
316}
317
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100318/**
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900319 * pcie_device_init - allocate and initialize PCI Express port service device
320 * @pdev: PCI Express port to associate the service device with
321 * @service: Type of service to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100322 * @irq: Interrupt vector to associate with the service device
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100323 */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900324static int pcie_device_init(struct pci_dev *pdev, int service, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900326 int retval;
327 struct pcie_device *pcie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct device *device;
329
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900330 pcie = kzalloc(sizeof(*pcie), GFP_KERNEL);
331 if (!pcie)
332 return -ENOMEM;
333 pcie->port = pdev;
334 pcie->irq = irq;
335 pcie->service = service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* Initialize generic device interface */
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900338 device = &pcie->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 device->bus = &pcie_port_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 device->release = release_pcie_device; /* callback to free pcie dev */
Kay Sievers1a927132008-10-30 02:17:49 +0100341 dev_set_name(device, "%s:pcie%02x",
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900342 pci_name(pdev),
Yijing Wang62f87c02012-07-24 17:20:03 +0800343 get_descriptor_id(pci_pcie_type(pdev), service));
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900344 device->parent = &pdev->dev;
Rafael J. Wysockia1e4d722010-02-08 19:16:33 +0100345 device_enable_async_suspend(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Kenji Kaneshige52a0f242009-11-25 21:01:28 +0900347 retval = device_register(device);
Bjorn Helgaas8f3acca2013-12-19 14:20:09 -0700348 if (retval) {
Levente Kurusaf3986202013-12-19 14:22:35 -0700349 put_device(device);
Bjorn Helgaas8f3acca2013-12-19 14:20:09 -0700350 return retval;
351 }
352
Bjorn Helgaas8f3acca2013-12-19 14:20:09 -0700353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100356/**
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100357 * pcie_port_device_register - register PCI Express port
358 * @dev: PCI Express port to register
359 *
360 * Allocate the port extension structure and register services associated with
361 * the port.
362 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363int pcie_port_device_register(struct pci_dev *dev)
364{
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900365 int status, capabilities, i, nr_service;
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900366 int irqs[PCIE_PORT_DEVICE_MAXSERVICES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900368 /* Enable PCI Express port device */
369 status = pci_enable_device(dev);
370 if (status)
Kenji Kaneshige694f88e2009-11-25 21:06:15 +0900371 return status;
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100372
373 /* Get and check PCI Express port services */
374 capabilities = get_port_device_capability(dev);
Naga Chumbalkareca67312011-03-21 03:29:20 +0000375 if (!capabilities)
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100376 return 0;
Rafael J. Wysockife31e692010-12-19 15:57:16 +0100377
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900378 pci_set_master(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900379 /*
380 * Initialize service irqs. Don't use service devices that
381 * require interrupts if there is no way to generate them.
382 */
383 status = init_service_irqs(dev, irqs, capabilities);
384 if (status) {
385 capabilities &= PCIE_PORT_SERVICE_VC;
386 if (!capabilities)
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900387 goto error_disable;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100388 }
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100389
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100390 /* Allocate child services if any */
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900391 status = -ENODEV;
392 nr_service = 0;
393 for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++) {
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100394 int service = 1 << i;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100395 if (!(capabilities & service))
Rafael J. Wysocki90e9cd52009-01-13 14:39:39 +0100396 continue;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900397 if (!pcie_device_init(dev, service, irqs[i]))
398 nr_service++;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100399 }
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900400 if (!nr_service)
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900401 goto error_cleanup_irqs;
Kenji Kaneshige40717c32009-11-25 21:05:35 +0900402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return 0;
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100404
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900405error_cleanup_irqs:
406 cleanup_service_irqs(dev);
Kenji Kaneshige1ce5e832009-11-25 21:04:30 +0900407error_disable:
408 pci_disable_device(dev);
Rafael J. Wysockif118c0c2009-01-13 14:42:01 +0100409 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
412#ifdef CONFIG_PM
longd0e2b4a2005-03-29 13:36:43 -0800413static int suspend_iter(struct device *dev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct pcie_port_service_driver *service_driver;
416
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900417 if ((dev->bus == &pcie_port_bus_type) && dev->driver) {
418 service_driver = to_service_driver(dev->driver);
419 if (service_driver->suspend)
420 service_driver->suspend(to_pcie_device(dev));
421 }
longd0e2b4a2005-03-29 13:36:43 -0800422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100425/**
426 * pcie_port_device_suspend - suspend port services associated with a PCIe port
427 * @dev: PCI Express port to handle
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100428 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100429int pcie_port_device_suspend(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800430{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100431 return device_for_each_child(dev, NULL, suspend_iter);
longd0e2b4a2005-03-29 13:36:43 -0800432}
433
434static int resume_iter(struct device *dev, void *data)
435{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct pcie_port_service_driver *service_driver;
437
longd0e2b4a2005-03-29 13:36:43 -0800438 if ((dev->bus == &pcie_port_bus_type) &&
439 (dev->driver)) {
440 service_driver = to_service_driver(dev->driver);
441 if (service_driver->resume)
442 service_driver->resume(to_pcie_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
longd0e2b4a2005-03-29 13:36:43 -0800444 return 0;
445}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100447/**
448 * pcie_port_device_suspend - resume port services associated with a PCIe port
449 * @dev: PCI Express port to handle
450 */
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100451int pcie_port_device_resume(struct device *dev)
longd0e2b4a2005-03-29 13:36:43 -0800452{
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100453 return device_for_each_child(dev, NULL, resume_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100455#endif /* PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
longd0e2b4a2005-03-29 13:36:43 -0800457static int remove_iter(struct device *dev, void *data)
458{
Bjorn Helgaase75f34c2013-12-19 14:24:13 -0700459 if (dev->bus == &pcie_port_bus_type)
Eric W. Biedermanae405822009-02-20 20:16:07 -0800460 device_unregister(dev);
longd0e2b4a2005-03-29 13:36:43 -0800461 return 0;
462}
463
Rafael J. Wysockifacf6d12009-01-01 19:48:55 +0100464/**
465 * pcie_port_device_remove - unregister PCI Express port service devices
466 * @dev: PCI Express port the service devices to unregister are associated with
467 *
468 * Remove PCI Express port service devices associated with given port and
469 * disable MSI-X or MSI for the port.
470 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471void pcie_port_device_remove(struct pci_dev *dev)
472{
Eric W. Biedermanae405822009-02-20 20:16:07 -0800473 device_for_each_child(&dev->dev, NULL, remove_iter);
Kenji Kaneshigefbb5de72009-11-25 21:05:01 +0900474 cleanup_service_irqs(dev);
Kenji Kaneshigedc535172009-11-25 21:04:00 +0900475 pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100478/**
479 * pcie_port_probe_service - probe driver for given PCI Express port service
480 * @dev: PCI Express port service device to probe against
481 *
482 * If PCI Express port service driver is registered with
483 * pcie_port_service_register(), this function will be called by the driver core
484 * whenever match is found between the driver and a port service device.
485 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100486static int pcie_port_probe_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100488 struct pcie_device *pciedev;
489 struct pcie_port_service_driver *driver;
490 int status;
491
492 if (!dev || !dev->driver)
493 return -ENODEV;
494
495 driver = to_service_driver(dev->driver);
496 if (!driver || !driver->probe)
497 return -ENODEV;
498
499 pciedev = to_pcie_device(dev);
Rafael J. Wysocki0516c8b2009-01-13 14:44:19 +0100500 status = driver->probe(pciedev);
Bjorn Helgaas8f3acca2013-12-19 14:20:09 -0700501 if (status)
502 return status;
503
504 dev_printk(KERN_DEBUG, dev, "service driver %s loaded\n", driver->name);
505 get_device(dev);
506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100509/**
510 * pcie_port_remove_service - detach driver from given PCI Express port service
511 * @dev: PCI Express port service device to handle
512 *
513 * If PCI Express port service driver is registered with
514 * pcie_port_service_register(), this function will be called by the driver core
515 * when device_unregister() is called for the port service device associated
516 * with the driver.
517 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100518static int pcie_port_remove_service(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100520 struct pcie_device *pciedev;
521 struct pcie_port_service_driver *driver;
522
523 if (!dev || !dev->driver)
524 return 0;
525
526 pciedev = to_pcie_device(dev);
527 driver = to_service_driver(dev->driver);
528 if (driver && driver->remove) {
529 dev_printk(KERN_DEBUG, dev, "unloading service driver %s\n",
530 driver->name);
531 driver->remove(pciedev);
532 put_device(dev);
533 }
534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100537/**
538 * pcie_port_shutdown_service - shut down given PCI Express port service
539 * @dev: PCI Express port service device to handle
540 *
541 * If PCI Express port service driver is registered with
542 * pcie_port_service_register(), this function will be called by the driver core
543 * when device_shutdown() is called for the port service device associated
544 * with the driver.
545 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100546static void pcie_port_shutdown_service(struct device *dev) {}
547
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100548/**
549 * pcie_port_service_register - register PCI Express port service driver
550 * @new: PCI Express port service driver to register
551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552int pcie_port_service_register(struct pcie_port_service_driver *new)
553{
Rafael J. Wysocki79dd9182010-08-21 01:51:44 +0200554 if (pcie_ports_disabled)
555 return -ENODEV;
556
Geert Uytterhoeven6f825b72013-11-12 20:07:17 +0100557 new->driver.name = new->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 new->driver.bus = &pcie_port_bus_type;
559 new->driver.probe = pcie_port_probe_service;
560 new->driver.remove = pcie_port_remove_service;
561 new->driver.shutdown = pcie_port_shutdown_service;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 return driver_register(&new->driver);
longd0e2b4a2005-03-29 13:36:43 -0800564}
Hidetoshi Seto40da4182009-12-15 11:38:04 +0900565EXPORT_SYMBOL(pcie_port_service_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Rafael J. Wysockid9347372009-01-01 19:53:32 +0100567/**
568 * pcie_port_service_unregister - unregister PCI Express port service driver
569 * @drv: PCI Express port service driver to unregister
570 */
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100571void pcie_port_service_unregister(struct pcie_port_service_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Rafael J. Wysockifa6c9932009-01-01 19:52:12 +0100573 driver_unregister(&drv->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575EXPORT_SYMBOL(pcie_port_service_unregister);