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>
22 bool pciehp_msi_disabled
;
24 static int __init
pciehp_setup(char *str
)
26 if (!strncmp(str
, "nomsi", 5))
27 pciehp_msi_disabled
= true;
31 __setup("pcie_hp=", pciehp_setup
);
34 * release_pcie_device - free PCI Express port service device structure
35 * @dev: Port service device to release
37 * Invoked automatically when device is being removed in response to
38 * device_unregister(dev). Release all resources being claimed.
40 static void release_pcie_device(struct device
*dev
)
42 kfree(to_pcie_device(dev
));
46 * 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 already in the array
51 * Return value: Position of the added entry in the array
53 static int pcie_port_msix_add_entry(
54 struct msix_entry
*entries
, int new_entry
, int nr_entries
)
58 for (j
= 0; j
< nr_entries
; j
++)
59 if (entries
[j
].entry
== new_entry
)
62 entries
[j
].entry
= new_entry
;
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()
72 * Return value: 0 on success, error code on failure
74 static int pcie_port_enable_msix(struct pci_dev
*dev
, int *vectors
, int mask
)
76 struct msix_entry
*msix_entries
;
77 int idx
[PCIE_PORT_DEVICE_MAXSERVICES
];
78 int nr_entries
, status
, pos
, i
, nvec
;
82 nr_entries
= pci_msix_vec_count(dev
);
86 if (nr_entries
> PCIE_PORT_MAX_MSIX_ENTRIES
)
87 nr_entries
= PCIE_PORT_MAX_MSIX_ENTRIES
;
89 msix_entries
= kzalloc(sizeof(*msix_entries
) * nr_entries
, GFP_KERNEL
);
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.
99 for (i
= 0; i
< nr_entries
; i
++)
100 msix_entries
[i
].entry
= i
;
102 status
= pci_enable_msix_exact(dev
, msix_entries
, nr_entries
);
106 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++)
111 if (mask
& (PCIE_PORT_SERVICE_PME
| PCIE_PORT_SERVICE_HP
)) {
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."
124 pcie_capability_read_word(dev
, PCI_EXP_FLAGS
, ®16
);
125 entry
= (reg16
& PCI_EXP_FLAGS_IRQ
) >> 9;
126 if (entry
>= nr_entries
)
129 i
= pcie_port_msix_add_entry(msix_entries
, entry
, nvec
);
133 idx
[PCIE_PORT_SERVICE_PME_SHIFT
] = i
;
134 idx
[PCIE_PORT_SERVICE_HP_SHIFT
] = i
;
137 if (mask
& PCIE_PORT_SERVICE_AER
) {
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."
149 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
150 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
152 if (entry
>= nr_entries
)
155 i
= pcie_port_msix_add_entry(msix_entries
, entry
, nvec
);
159 idx
[PCIE_PORT_SERVICE_AER_SHIFT
] = i
;
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.
167 if (nvec
== nr_entries
) {
170 /* Drop the temporary MSI-X setup */
171 pci_disable_msix(dev
);
173 /* Now allocate the MSI-X vectors for real */
174 status
= pci_enable_msix_exact(dev
, msix_entries
, nvec
);
179 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++)
180 vectors
[i
] = idx
[i
] >= 0 ? msix_entries
[idx
[i
]].vector
: -1;
187 pci_disable_msix(dev
);
192 * init_service_irqs - initialize irqs for PCI Express port services
193 * @dev: PCI Express port to handle
194 * @irqs: Array of irqs to populate
195 * @mask: Bitmask of port capabilities returned by get_port_device_capability()
197 * Return value: Interrupt mode associated with the port
199 static int init_service_irqs(struct pci_dev
*dev
, int *irqs
, int mask
)
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.
207 if (((mask
& PCIE_PORT_SERVICE_PME
) && pcie_pme_no_msi()) ||
208 ((mask
& PCIE_PORT_SERVICE_HP
) && pciehp_no_msi())) {
214 /* Try to use MSI-X if supported */
215 if (!pcie_port_enable_msix(dev
, irqs
, mask
))
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.
223 if (!pci_enable_msi(dev
) || dev
->irq
)
227 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++)
229 irqs
[PCIE_PORT_SERVICE_VC_SHIFT
] = -1;
236 static void cleanup_service_irqs(struct pci_dev
*dev
)
238 if (dev
->msix_enabled
)
239 pci_disable_msix(dev
);
240 else if (dev
->msi_enabled
)
241 pci_disable_msi(dev
);
245 * get_port_device_capability - discover capabilities of a PCI Express port
246 * @dev: PCI Express port to examine
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
252 * Return value: Bitmask of discovered port capabilities
254 static int get_port_device_capability(struct pci_dev
*dev
)
261 if (pcie_ports_disabled
)
264 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
;
269 if (pcie_ports_auto
) {
270 err
= pcie_port_platform_notify(dev
, &cap_mask
);
275 /* Hot-Plug Capable */
276 if ((cap_mask
& PCIE_PORT_SERVICE_HP
) &&
277 pcie_caps_reg(dev
) & PCI_EXP_FLAGS_SLOT
) {
278 pcie_capability_read_dword(dev
, PCI_EXP_SLTCAP
, ®32
);
279 if (reg32
& PCI_EXP_SLTCAP_HPC
) {
280 services
|= PCIE_PORT_SERVICE_HP
;
282 * Disable hot-plug interrupts in case they have been
283 * enabled by the BIOS and the hot-plug service driver
286 pcie_capability_clear_word(dev
, PCI_EXP_SLTCTL
,
287 PCI_EXP_SLTCTL_CCIE
| PCI_EXP_SLTCTL_HPIE
);
291 if ((cap_mask
& PCIE_PORT_SERVICE_AER
)
292 && pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
)) {
293 services
|= PCIE_PORT_SERVICE_AER
;
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).
298 pci_disable_pcie_error_reporting(dev
);
301 if (pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_VC
))
302 services
|= PCIE_PORT_SERVICE_VC
;
303 /* Root ports are capable of generating PME too */
304 if ((cap_mask
& PCIE_PORT_SERVICE_PME
)
305 && pci_pcie_type(dev
) == PCI_EXP_TYPE_ROOT_PORT
) {
306 services
|= PCIE_PORT_SERVICE_PME
;
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
312 pcie_pme_interrupt_enable(dev
, false);
319 * 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
322 * @irq: Interrupt vector to associate with the service device
324 static int pcie_device_init(struct pci_dev
*pdev
, int service
, int irq
)
327 struct pcie_device
*pcie
;
328 struct device
*device
;
330 pcie
= kzalloc(sizeof(*pcie
), GFP_KERNEL
);
335 pcie
->service
= service
;
337 /* Initialize generic device interface */
338 device
= &pcie
->device
;
339 device
->bus
= &pcie_port_bus_type
;
340 device
->release
= release_pcie_device
; /* callback to free pcie dev */
341 dev_set_name(device
, "%s:pcie%02x",
343 get_descriptor_id(pci_pcie_type(pdev
), service
));
344 device
->parent
= &pdev
->dev
;
345 device_enable_async_suspend(device
);
347 retval
= device_register(device
);
357 * pcie_port_device_register - register PCI Express port
358 * @dev: PCI Express port to register
360 * Allocate the port extension structure and register services associated with
363 int pcie_port_device_register(struct pci_dev
*dev
)
365 int status
, capabilities
, i
, nr_service
;
366 int irqs
[PCIE_PORT_DEVICE_MAXSERVICES
];
368 /* Enable PCI Express port device */
369 status
= pci_enable_device(dev
);
373 /* Get and check PCI Express port services */
374 capabilities
= get_port_device_capability(dev
);
380 * Initialize service irqs. Don't use service devices that
381 * require interrupts if there is no way to generate them.
382 * However, some drivers may have a polling mode (e.g. pciehp_poll_mode)
383 * that can be used in the absence of irqs. Allow them to determine
384 * if that is to be used.
386 status
= init_service_irqs(dev
, irqs
, capabilities
);
388 capabilities
&= PCIE_PORT_SERVICE_VC
| PCIE_PORT_SERVICE_HP
;
393 /* Allocate child services if any */
396 for (i
= 0; i
< PCIE_PORT_DEVICE_MAXSERVICES
; i
++) {
397 int service
= 1 << i
;
398 if (!(capabilities
& service
))
400 if (!pcie_device_init(dev
, service
, irqs
[i
]))
404 goto error_cleanup_irqs
;
409 cleanup_service_irqs(dev
);
411 pci_disable_device(dev
);
416 static int suspend_iter(struct device
*dev
, void *data
)
418 struct pcie_port_service_driver
*service_driver
;
420 if ((dev
->bus
== &pcie_port_bus_type
) && dev
->driver
) {
421 service_driver
= to_service_driver(dev
->driver
);
422 if (service_driver
->suspend
)
423 service_driver
->suspend(to_pcie_device(dev
));
429 * pcie_port_device_suspend - suspend port services associated with a PCIe port
430 * @dev: PCI Express port to handle
432 int pcie_port_device_suspend(struct device
*dev
)
434 return device_for_each_child(dev
, NULL
, suspend_iter
);
437 static int resume_iter(struct device
*dev
, void *data
)
439 struct pcie_port_service_driver
*service_driver
;
441 if ((dev
->bus
== &pcie_port_bus_type
) &&
443 service_driver
= to_service_driver(dev
->driver
);
444 if (service_driver
->resume
)
445 service_driver
->resume(to_pcie_device(dev
));
451 * pcie_port_device_resume - resume port services associated with a PCIe port
452 * @dev: PCI Express port to handle
454 int pcie_port_device_resume(struct device
*dev
)
456 return device_for_each_child(dev
, NULL
, resume_iter
);
460 static int remove_iter(struct device
*dev
, void *data
)
462 if (dev
->bus
== &pcie_port_bus_type
)
463 device_unregister(dev
);
468 * pcie_port_device_remove - unregister PCI Express port service devices
469 * @dev: PCI Express port the service devices to unregister are associated with
471 * Remove PCI Express port service devices associated with given port and
472 * disable MSI-X or MSI for the port.
474 void pcie_port_device_remove(struct pci_dev
*dev
)
476 device_for_each_child(&dev
->dev
, NULL
, remove_iter
);
477 cleanup_service_irqs(dev
);
478 pci_disable_device(dev
);
482 * pcie_port_probe_service - probe driver for given PCI Express port service
483 * @dev: PCI Express port service device to probe against
485 * If PCI Express port service driver is registered with
486 * pcie_port_service_register(), this function will be called by the driver core
487 * whenever match is found between the driver and a port service device.
489 static int pcie_port_probe_service(struct device
*dev
)
491 struct pcie_device
*pciedev
;
492 struct pcie_port_service_driver
*driver
;
495 if (!dev
|| !dev
->driver
)
498 driver
= to_service_driver(dev
->driver
);
499 if (!driver
|| !driver
->probe
)
502 pciedev
= to_pcie_device(dev
);
503 status
= driver
->probe(pciedev
);
507 dev_printk(KERN_DEBUG
, dev
, "service driver %s loaded\n", driver
->name
);
513 * pcie_port_remove_service - detach driver from given PCI Express port service
514 * @dev: PCI Express port service device to handle
516 * If PCI Express port service driver is registered with
517 * pcie_port_service_register(), this function will be called by the driver core
518 * when device_unregister() is called for the port service device associated
521 static int pcie_port_remove_service(struct device
*dev
)
523 struct pcie_device
*pciedev
;
524 struct pcie_port_service_driver
*driver
;
526 if (!dev
|| !dev
->driver
)
529 pciedev
= to_pcie_device(dev
);
530 driver
= to_service_driver(dev
->driver
);
531 if (driver
&& driver
->remove
) {
532 dev_printk(KERN_DEBUG
, dev
, "unloading service driver %s\n",
534 driver
->remove(pciedev
);
541 * pcie_port_shutdown_service - shut down given PCI Express port service
542 * @dev: PCI Express port service device to handle
544 * If PCI Express port service driver is registered with
545 * pcie_port_service_register(), this function will be called by the driver core
546 * when device_shutdown() is called for the port service device associated
549 static void pcie_port_shutdown_service(struct device
*dev
) {}
552 * pcie_port_service_register - register PCI Express port service driver
553 * @new: PCI Express port service driver to register
555 int pcie_port_service_register(struct pcie_port_service_driver
*new)
557 if (pcie_ports_disabled
)
560 new->driver
.name
= new->name
;
561 new->driver
.bus
= &pcie_port_bus_type
;
562 new->driver
.probe
= pcie_port_probe_service
;
563 new->driver
.remove
= pcie_port_remove_service
;
564 new->driver
.shutdown
= pcie_port_shutdown_service
;
566 return driver_register(&new->driver
);
568 EXPORT_SYMBOL(pcie_port_service_register
);
571 * pcie_port_service_unregister - unregister PCI Express port service driver
572 * @drv: PCI Express port service driver to unregister
574 void pcie_port_service_unregister(struct pcie_port_service_driver
*drv
)
576 driver_unregister(&drv
->driver
);
578 EXPORT_SYMBOL(pcie_port_service_unregister
);