3 * Purpose: PCI Express Port Bus Driver's Core Functions
5 * Copyright (C) 2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
9 #include <linux/module.h>
10 #include <linux/pci.h>
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
14 #include <linux/string.h>
15 #include <linux/slab.h>
16 #include <linux/pcieport_if.h>
17 #include <linux/aer.h>
23 * release_pcie_device - free PCI Express port service device structure
24 * @dev: Port service device to release
26 * Invoked automatically when device is being removed in response to
27 * device_unregister(dev). Release all resources being claimed.
29 static void release_pcie_device(struct device
*dev
)
31 kfree(to_pcie_device(dev
));
35 * pcie_port_msix_add_entry - add entry to given array of MSI-X entries
36 * @entries: Array of MSI-X entries
37 * @new_entry: Index of the entry to add to the array
38 * @nr_entries: Number of entries aleady in the array
40 * Return value: Position of the added entry in the array
42 static int pcie_port_msix_add_entry(
43 struct msix_entry
*entries
, int new_entry
, int nr_entries
)
47 for (j
= 0; j
< nr_entries
; j
++)
48 if (entries
[j
].entry
== new_entry
)
51 entries
[j
].entry
= new_entry
;
56 * pcie_port_enable_msix - try to set up MSI-X as interrupt mode for given port
57 * @dev: PCI Express port to handle
58 * @vectors: Array of interrupt vectors to populate
59 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
61 * Return value: 0 on success, error code on failure
63 static int pcie_port_enable_msix(struct pci_dev
*dev
, int *vectors
, int mask
)
65 struct msix_entry
*msix_entries
;
66 int idx
[PCIE_PORT_DEVICE_MAXSERVICES
];
67 int nr_entries
, status
, pos
, i
, nvec
;
71 nr_entries
= pci_msix_table_size(dev
);
74 if (nr_entries
> PCIE_PORT_MAX_MSIX_ENTRIES
)
75 nr_entries
= PCIE_PORT_MAX_MSIX_ENTRIES
;
77 msix_entries
= kzalloc(sizeof(*msix_entries
) * nr_entries
, GFP_KERNEL
);
82 * Allocate as many entries as the port wants, so that we can check
83 * which of them will be useful. Moreover, if nr_entries is correctly
84 * equal to the number of entries this port actually uses, we'll happily
85 * go through without any tricks.
87 for (i
= 0; i
< nr_entries
; i
++)
88 msix_entries
[i
].entry
= i
;
90 status
= pci_enable_msix(dev
, msix_entries
, nr_entries
);
94 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++)
99 if (mask
& (PCIE_PORT_SERVICE_PME
| PCIE_PORT_SERVICE_HP
)) {
103 * The code below follows the PCI Express Base Specification 2.0
104 * stating in Section 6.1.6 that "PME and Hot-Plug Event
105 * interrupts (when both are implemented) always share the same
106 * MSI or MSI-X vector, as indicated by the Interrupt Message
107 * Number field in the PCI Express Capabilities register", where
108 * according to Section 7.8.2 of the specification "For MSI-X,
109 * the value in this field indicates which MSI-X Table entry is
110 * used to generate the interrupt message."
112 pos
= pci_pcie_cap(dev
);
113 pci_read_config_word(dev
, pos
+ PCI_EXP_FLAGS
, ®16
);
114 entry
= (reg16
& PCI_EXP_FLAGS_IRQ
) >> 9;
115 if (entry
>= nr_entries
)
118 i
= pcie_port_msix_add_entry(msix_entries
, entry
, nvec
);
122 idx
[PCIE_PORT_SERVICE_PME_SHIFT
] = i
;
123 idx
[PCIE_PORT_SERVICE_HP_SHIFT
] = i
;
126 if (mask
& PCIE_PORT_SERVICE_AER
) {
130 * The code below follows Section 7.10.10 of the PCI Express
131 * Base Specification 2.0 stating that bits 31-27 of the Root
132 * Error Status Register contain a value indicating which of the
133 * MSI/MSI-X vectors assigned to the port is going to be used
134 * for AER, where "For MSI-X, the value in this register
135 * indicates which MSI-X Table entry is used to generate the
136 * interrupt message."
138 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
139 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
141 if (entry
>= nr_entries
)
144 i
= pcie_port_msix_add_entry(msix_entries
, entry
, nvec
);
148 idx
[PCIE_PORT_SERVICE_AER_SHIFT
] = i
;
152 * If nvec is equal to the allocated number of entries, we can just use
153 * what we have. Otherwise, the port has some extra entries not for the
154 * services we know and we need to work around that.
156 if (nvec
== nr_entries
) {
159 /* Drop the temporary MSI-X setup */
160 pci_disable_msix(dev
);
162 /* Now allocate the MSI-X vectors for real */
163 status
= pci_enable_msix(dev
, msix_entries
, nvec
);
168 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++)
169 vectors
[i
] = idx
[i
] >= 0 ? msix_entries
[idx
[i
]].vector
: -1;
176 pci_disable_msix(dev
);
181 * init_service_irqs - initialize irqs for PCI Express port services
182 * @dev: PCI Express port to handle
183 * @irqs: Array of irqs to populate
184 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
186 * Return value: Interrupt mode associated with the port
188 static int init_service_irqs(struct pci_dev
*dev
, int *irqs
, int mask
)
192 /* We have to use INTx if MSI cannot be used for PCIe PME. */
193 if ((mask
& PCIE_PORT_SERVICE_PME
) && pcie_pme_no_msi()) {
199 /* Try to use MSI-X if supported */
200 if (!pcie_port_enable_msix(dev
, irqs
, mask
))
203 /* We're not going to use MSI-X, so try MSI and fall back to INTx */
204 if (!pci_enable_msi(dev
) || dev
->pin
)
208 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++)
210 irqs
[PCIE_PORT_SERVICE_VC_SHIFT
] = -1;
217 static void cleanup_service_irqs(struct pci_dev
*dev
)
219 if (dev
->msix_enabled
)
220 pci_disable_msix(dev
);
221 else if (dev
->msi_enabled
)
222 pci_disable_msi(dev
);
226 * get_port_device_capability - discover capabilities of a PCI Express port
227 * @dev: PCI Express port to examine
229 * The capabilities are read from the port's PCI Express configuration registers
230 * as described in PCI Express Base Specification 1.0a sections 7.8.2, 7.8.9 and
233 * Return value: Bitmask of discovered port capabilities
235 static int get_port_device_capability(struct pci_dev
*dev
)
237 int services
= 0, pos
;
243 if (pcie_ports_disabled
)
246 err
= pcie_port_platform_notify(dev
, &cap_mask
);
247 if (!pcie_ports_auto
) {
248 cap_mask
= PCIE_PORT_SERVICE_PME
| PCIE_PORT_SERVICE_HP
249 | PCIE_PORT_SERVICE_VC
;
250 if (pci_aer_available())
251 cap_mask
|= PCIE_PORT_SERVICE_AER
;
256 pos
= pci_pcie_cap(dev
);
257 pci_read_config_word(dev
, pos
+ PCI_EXP_FLAGS
, ®16
);
258 /* Hot-Plug Capable */
259 if ((cap_mask
& PCIE_PORT_SERVICE_HP
) && (reg16
& PCI_EXP_FLAGS_SLOT
)) {
260 pci_read_config_dword(dev
, pos
+ PCI_EXP_SLTCAP
, ®32
);
261 if (reg32
& PCI_EXP_SLTCAP_HPC
) {
262 services
|= PCIE_PORT_SERVICE_HP
;
264 * Disable hot-plug interrupts in case they have been
265 * enabled by the BIOS and the hot-plug service driver
268 pos
+= PCI_EXP_SLTCTL
;
269 pci_read_config_word(dev
, pos
, ®16
);
270 reg16
&= ~(PCI_EXP_SLTCTL_CCIE
| PCI_EXP_SLTCTL_HPIE
);
271 pci_write_config_word(dev
, pos
, reg16
);
275 if ((cap_mask
& PCIE_PORT_SERVICE_AER
)
276 && pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
)) {
277 services
|= PCIE_PORT_SERVICE_AER
;
279 * Disable AER on this port in case it's been enabled by the
280 * BIOS (the AER service driver will enable it when necessary).
282 pci_disable_pcie_error_reporting(dev
);
285 if (pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_VC
))
286 services
|= PCIE_PORT_SERVICE_VC
;
287 /* Root ports are capable of generating PME too */
288 if ((cap_mask
& PCIE_PORT_SERVICE_PME
)
289 && dev
->pcie_type
== PCI_EXP_TYPE_ROOT_PORT
) {
290 services
|= PCIE_PORT_SERVICE_PME
;
292 * Disable PME interrupt on this port in case it's been enabled
293 * by the BIOS (the PME service driver will enable it when
296 pcie_pme_interrupt_enable(dev
, false);
303 * pcie_device_init - allocate and initialize PCI Express port service device
304 * @pdev: PCI Express port to associate the service device with
305 * @service: Type of service to associate with the service device
306 * @irq: Interrupt vector to associate with the service device
308 static int pcie_device_init(struct pci_dev
*pdev
, int service
, int irq
)
311 struct pcie_device
*pcie
;
312 struct device
*device
;
314 pcie
= kzalloc(sizeof(*pcie
), GFP_KERNEL
);
319 pcie
->service
= service
;
321 /* Initialize generic device interface */
322 device
= &pcie
->device
;
323 device
->bus
= &pcie_port_bus_type
;
324 device
->release
= release_pcie_device
; /* callback to free pcie dev */
325 dev_set_name(device
, "%s:pcie%02x",
327 get_descriptor_id(pdev
->pcie_type
, service
));
328 device
->parent
= &pdev
->dev
;
329 device_enable_async_suspend(device
);
331 retval
= device_register(device
);
340 * pcie_port_device_register - register PCI Express port
341 * @dev: PCI Express port to register
343 * Allocate the port extension structure and register services associated with
346 int pcie_port_device_register(struct pci_dev
*dev
)
348 int status
, capabilities
, i
, nr_service
;
349 int irqs
[PCIE_PORT_DEVICE_MAXSERVICES
];
351 /* Enable PCI Express port device */
352 status
= pci_enable_device(dev
);
356 /* Get and check PCI Express port services */
357 capabilities
= get_port_device_capability(dev
);
363 * Initialize service irqs. Don't use service devices that
364 * require interrupts if there is no way to generate them.
366 status
= init_service_irqs(dev
, irqs
, capabilities
);
368 capabilities
&= PCIE_PORT_SERVICE_VC
;
373 /* Allocate child services if any */
376 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++) {
377 int service
= 1 << i
;
378 if (!(capabilities
& service
))
380 if (!pcie_device_init(dev
, service
, irqs
[i
]))
384 goto error_cleanup_irqs
;
389 cleanup_service_irqs(dev
);
391 pci_disable_device(dev
);
396 static int suspend_iter(struct device
*dev
, void *data
)
398 struct pcie_port_service_driver
*service_driver
;
400 if ((dev
->bus
== &pcie_port_bus_type
) && dev
->driver
) {
401 service_driver
= to_service_driver(dev
->driver
);
402 if (service_driver
->suspend
)
403 service_driver
->suspend(to_pcie_device(dev
));
409 * pcie_port_device_suspend - suspend port services associated with a PCIe port
410 * @dev: PCI Express port to handle
412 int pcie_port_device_suspend(struct device
*dev
)
414 return device_for_each_child(dev
, NULL
, suspend_iter
);
417 static int resume_iter(struct device
*dev
, void *data
)
419 struct pcie_port_service_driver
*service_driver
;
421 if ((dev
->bus
== &pcie_port_bus_type
) &&
423 service_driver
= to_service_driver(dev
->driver
);
424 if (service_driver
->resume
)
425 service_driver
->resume(to_pcie_device(dev
));
431 * pcie_port_device_suspend - resume port services associated with a PCIe port
432 * @dev: PCI Express port to handle
434 int pcie_port_device_resume(struct device
*dev
)
436 return device_for_each_child(dev
, NULL
, resume_iter
);
440 static int remove_iter(struct device
*dev
, void *data
)
442 if (dev
->bus
== &pcie_port_bus_type
) {
444 device_unregister(dev
);
450 * pcie_port_device_remove - unregister PCI Express port service devices
451 * @dev: PCI Express port the service devices to unregister are associated with
453 * Remove PCI Express port service devices associated with given port and
454 * disable MSI-X or MSI for the port.
456 void pcie_port_device_remove(struct pci_dev
*dev
)
458 device_for_each_child(&dev
->dev
, NULL
, remove_iter
);
459 cleanup_service_irqs(dev
);
460 pci_disable_device(dev
);
464 * pcie_port_probe_service - probe driver for given PCI Express port service
465 * @dev: PCI Express port service device to probe against
467 * If PCI Express port service driver is registered with
468 * pcie_port_service_register(), this function will be called by the driver core
469 * whenever match is found between the driver and a port service device.
471 static int pcie_port_probe_service(struct device
*dev
)
473 struct pcie_device
*pciedev
;
474 struct pcie_port_service_driver
*driver
;
477 if (!dev
|| !dev
->driver
)
480 driver
= to_service_driver(dev
->driver
);
481 if (!driver
|| !driver
->probe
)
484 pciedev
= to_pcie_device(dev
);
485 status
= driver
->probe(pciedev
);
487 dev_printk(KERN_DEBUG
, dev
, "service driver %s loaded\n",
495 * pcie_port_remove_service - detach driver from given PCI Express port service
496 * @dev: PCI Express port service device to handle
498 * If PCI Express port service driver is registered with
499 * pcie_port_service_register(), this function will be called by the driver core
500 * when device_unregister() is called for the port service device associated
503 static int pcie_port_remove_service(struct device
*dev
)
505 struct pcie_device
*pciedev
;
506 struct pcie_port_service_driver
*driver
;
508 if (!dev
|| !dev
->driver
)
511 pciedev
= to_pcie_device(dev
);
512 driver
= to_service_driver(dev
->driver
);
513 if (driver
&& driver
->remove
) {
514 dev_printk(KERN_DEBUG
, dev
, "unloading service driver %s\n",
516 driver
->remove(pciedev
);
523 * pcie_port_shutdown_service - shut down given PCI Express port service
524 * @dev: PCI Express port service device to handle
526 * If PCI Express port service driver is registered with
527 * pcie_port_service_register(), this function will be called by the driver core
528 * when device_shutdown() is called for the port service device associated
531 static void pcie_port_shutdown_service(struct device
*dev
) {}
534 * pcie_port_service_register - register PCI Express port service driver
535 * @new: PCI Express port service driver to register
537 int pcie_port_service_register(struct pcie_port_service_driver
*new)
539 if (pcie_ports_disabled
)
542 new->driver
.name
= (char *)new->name
;
543 new->driver
.bus
= &pcie_port_bus_type
;
544 new->driver
.probe
= pcie_port_probe_service
;
545 new->driver
.remove
= pcie_port_remove_service
;
546 new->driver
.shutdown
= pcie_port_shutdown_service
;
548 return driver_register(&new->driver
);
550 EXPORT_SYMBOL(pcie_port_service_register
);
553 * pcie_port_service_unregister - unregister PCI Express port service driver
554 * @drv: PCI Express port service driver to unregister
556 void pcie_port_service_unregister(struct pcie_port_service_driver
*drv
)
558 driver_unregister(&drv
->driver
);
560 EXPORT_SYMBOL(pcie_port_service_unregister
);