]> rtime.felk.cvut.cz Git - lisovros/linux_canprio.git/blob - drivers/pci/pcie/portdrv_core.c
PCI: portdrv: remove redundant pcie type calculation
[lisovros/linux_canprio.git] / drivers / pci / pcie / portdrv_core.c
1 /*
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>
14 #include <linux/string.h>
15 #include <linux/slab.h>
16 #include <linux/pcieport_if.h>
17
18 #include "../pci.h"
19 #include "portdrv.h"
20
21 /**
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.
27  */
28 static void release_pcie_device(struct device *dev)
29 {
30         kfree(to_pcie_device(dev));                     
31 }
32
33 /**
34  * 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  */
41 static 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  */
62 static 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                  */
111                 pos = pci_pcie_cap(dev);
112                 pci_read_config_word(dev, pos + PCIE_CAPABILITIES_REG, &reg16);
113                 entry = (reg16 >> 9) & PCIE_PORT_MSI_VECTOR_MASK;
114                 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 /**
180  * assign_interrupt_mode - choose interrupt mode for PCI Express port services
181  *                         (INTx, MSI-X, MSI) and set up vectors
182  * @dev: PCI Express port to handle
183  * @vectors: Array of interrupt vectors to populate
184  * @mask: Bitmask of port capabilities returned by get_port_device_capability()
185  *
186  * Return value: Interrupt mode associated with the port
187  */
188 static int assign_interrupt_mode(struct pci_dev *dev, int *vectors, int mask)
189 {
190         int irq, interrupt_mode = PCIE_PORT_NO_IRQ;
191         int i;
192
193         /* Try to use MSI-X if supported */
194         if (!pcie_port_enable_msix(dev, vectors, mask))
195                 return PCIE_PORT_MSIX_MODE;
196
197         /* We're not going to use MSI-X, so try MSI and fall back to INTx */
198         if (!pci_enable_msi(dev))
199                 interrupt_mode = PCIE_PORT_MSI_MODE;
200
201         if (interrupt_mode == PCIE_PORT_NO_IRQ && dev->pin)
202                 interrupt_mode = PCIE_PORT_INTx_MODE;
203
204         irq = interrupt_mode != PCIE_PORT_NO_IRQ ? dev->irq : -1;
205         for (i = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++)
206                 vectors[i] = irq;
207
208         vectors[PCIE_PORT_SERVICE_VC_SHIFT] = -1;
209
210         return interrupt_mode;
211 }
212
213 /**
214  * get_port_device_capability - discover capabilities of a PCI Express port
215  * @dev: PCI Express port to examine
216  *
217  * The capabilities are read from the port's PCI Express configuration registers
218  * as described in PCI Express Base Specification 1.0a sections 7.8.2, 7.8.9 and
219  * 7.9 - 7.11.
220  *
221  * Return value: Bitmask of discovered port capabilities
222  */
223 static int get_port_device_capability(struct pci_dev *dev)
224 {
225         int services = 0, pos;
226         u16 reg16;
227         u32 reg32;
228
229         pos = pci_pcie_cap(dev);
230         pci_read_config_word(dev, pos + PCIE_CAPABILITIES_REG, &reg16);
231         /* Hot-Plug Capable */
232         if (reg16 & PORT_TO_SLOT_MASK) {
233                 pci_read_config_dword(dev, 
234                         pos + PCIE_SLOT_CAPABILITIES_REG, &reg32);
235                 if (reg32 & SLOT_HP_CAPABLE_MASK)
236                         services |= PCIE_PORT_SERVICE_HP;
237         }
238         /* AER capable */
239         if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR))
240                 services |= PCIE_PORT_SERVICE_AER;
241         /* VC support */
242         if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_VC))
243                 services |= PCIE_PORT_SERVICE_VC;
244
245         return services;
246 }
247
248 /**
249  * pcie_device_init - allocate and initialize PCI Express port service device
250  * @pdev: PCI Express port to associate the service device with
251  * @service: Type of service to associate with the service device
252  * @irq: Interrupt vector to associate with the service device
253  */
254 static int pcie_device_init(struct pci_dev *pdev, int service, int irq)
255 {
256         int retval;
257         struct pcie_device *pcie;
258         struct device *device;
259
260         pcie = kzalloc(sizeof(*pcie), GFP_KERNEL);
261         if (!pcie)
262                 return -ENOMEM;
263         pcie->port = pdev;
264         pcie->irq = irq;
265         pcie->service = service;
266
267         /* Initialize generic device interface */
268         device = &pcie->device;
269         device->bus = &pcie_port_bus_type;
270         device->release = release_pcie_device;  /* callback to free pcie dev */
271         dev_set_name(device, "%s:pcie%02x",
272                      pci_name(pdev),
273                      get_descriptor_id(pdev->pcie_type, service));
274         device->parent = &pdev->dev;
275
276         retval = device_register(device);
277         if (retval)
278                 kfree(pcie);
279         else
280                 get_device(device);
281         return retval;
282 }
283
284 /**
285  * pcie_port_device_register - register PCI Express port
286  * @dev: PCI Express port to register
287  *
288  * Allocate the port extension structure and register services associated with
289  * the port.
290  */
291 int pcie_port_device_register(struct pci_dev *dev)
292 {
293         struct pcie_port_data *port_data;
294         int status, capabilities, irq_mode, i, nr_serv;
295         int vectors[PCIE_PORT_DEVICE_MAXSERVICES];
296
297         port_data = kzalloc(sizeof(*port_data), GFP_KERNEL);
298         if (!port_data)
299                 return -ENOMEM;
300         pci_set_drvdata(dev, port_data);
301
302         port_data->port_type = dev->pcie_type;
303
304         capabilities = get_port_device_capability(dev);
305         /* Root ports are capable of generating PME too */
306         if (port_data->port_type == PCIE_RC_PORT)
307                 capabilities |= PCIE_PORT_SERVICE_PME;
308
309         irq_mode = assign_interrupt_mode(dev, vectors, capabilities);
310         if (irq_mode == PCIE_PORT_NO_IRQ) {
311                 /*
312                  * Don't use service devices that require interrupts if there is
313                  * no way to generate them.
314                  */
315                 if (!(capabilities & PCIE_PORT_SERVICE_VC)) {
316                         status = -ENODEV;
317                         goto Error;
318                 }
319                 capabilities = PCIE_PORT_SERVICE_VC;
320         }
321         port_data->port_irq_mode = irq_mode;
322
323         status = pci_enable_device(dev);
324         if (status)
325                 goto Error;
326         pci_set_master(dev);
327
328         /* Allocate child services if any */
329         for (i = 0, nr_serv = 0; i < PCIE_PORT_DEVICE_MAXSERVICES; i++) {
330                 int service = 1 << i;
331
332                 if (!(capabilities & service))
333                         continue;
334
335                 status = pcie_device_init(dev, service, vectors[i]);
336                 if (!status)
337                         nr_serv++;
338         }
339         if (!nr_serv) {
340                 pci_disable_device(dev);
341                 status = -ENODEV;
342                 goto Error;
343         }
344
345         return 0;
346
347  Error:
348         kfree(port_data);
349         return status;
350 }
351
352 #ifdef CONFIG_PM
353 static int suspend_iter(struct device *dev, void *data)
354 {
355         struct pcie_port_service_driver *service_driver;
356
357         if ((dev->bus == &pcie_port_bus_type) &&
358             (dev->driver)) {
359                 service_driver = to_service_driver(dev->driver);
360                 if (service_driver->suspend)
361                         service_driver->suspend(to_pcie_device(dev));
362         }
363         return 0;
364 }
365
366 /**
367  * pcie_port_device_suspend - suspend port services associated with a PCIe port
368  * @dev: PCI Express port to handle
369  */
370 int pcie_port_device_suspend(struct device *dev)
371 {
372         return device_for_each_child(dev, NULL, suspend_iter);
373 }
374
375 static int resume_iter(struct device *dev, void *data)
376 {
377         struct pcie_port_service_driver *service_driver;
378
379         if ((dev->bus == &pcie_port_bus_type) &&
380             (dev->driver)) {
381                 service_driver = to_service_driver(dev->driver);
382                 if (service_driver->resume)
383                         service_driver->resume(to_pcie_device(dev));
384         }
385         return 0;
386 }
387
388 /**
389  * pcie_port_device_suspend - resume port services associated with a PCIe port
390  * @dev: PCI Express port to handle
391  */
392 int pcie_port_device_resume(struct device *dev)
393 {
394         return device_for_each_child(dev, NULL, resume_iter);
395 }
396 #endif /* PM */
397
398 static int remove_iter(struct device *dev, void *data)
399 {
400         if (dev->bus == &pcie_port_bus_type) {
401                 put_device(dev);
402                 device_unregister(dev);
403         }
404         return 0;
405 }
406
407 /**
408  * pcie_port_device_remove - unregister PCI Express port service devices
409  * @dev: PCI Express port the service devices to unregister are associated with
410  *
411  * Remove PCI Express port service devices associated with given port and
412  * disable MSI-X or MSI for the port.
413  */
414 void pcie_port_device_remove(struct pci_dev *dev)
415 {
416         struct pcie_port_data *port_data = pci_get_drvdata(dev);
417
418         device_for_each_child(&dev->dev, NULL, remove_iter);
419         pci_disable_device(dev);
420
421         switch (port_data->port_irq_mode) {
422         case PCIE_PORT_MSIX_MODE:
423                 pci_disable_msix(dev);
424                 break;
425         case PCIE_PORT_MSI_MODE:
426                 pci_disable_msi(dev);
427                 break;
428         }
429
430         kfree(port_data);
431 }
432
433 /**
434  * pcie_port_probe_service - probe driver for given PCI Express port service
435  * @dev: PCI Express port service device to probe against
436  *
437  * If PCI Express port service driver is registered with
438  * pcie_port_service_register(), this function will be called by the driver core
439  * whenever match is found between the driver and a port service device.
440  */
441 static int pcie_port_probe_service(struct device *dev)
442 {
443         struct pcie_device *pciedev;
444         struct pcie_port_service_driver *driver;
445         int status;
446
447         if (!dev || !dev->driver)
448                 return -ENODEV;
449
450         driver = to_service_driver(dev->driver);
451         if (!driver || !driver->probe)
452                 return -ENODEV;
453
454         pciedev = to_pcie_device(dev);
455         status = driver->probe(pciedev);
456         if (!status) {
457                 dev_printk(KERN_DEBUG, dev, "service driver %s loaded\n",
458                         driver->name);
459                 get_device(dev);
460         }
461         return status;
462 }
463
464 /**
465  * pcie_port_remove_service - detach driver from given PCI Express port service
466  * @dev: PCI Express port service device to handle
467  *
468  * If PCI Express port service driver is registered with
469  * pcie_port_service_register(), this function will be called by the driver core
470  * when device_unregister() is called for the port service device associated
471  * with the driver.
472  */
473 static int pcie_port_remove_service(struct device *dev)
474 {
475         struct pcie_device *pciedev;
476         struct pcie_port_service_driver *driver;
477
478         if (!dev || !dev->driver)
479                 return 0;
480
481         pciedev = to_pcie_device(dev);
482         driver = to_service_driver(dev->driver);
483         if (driver && driver->remove) {
484                 dev_printk(KERN_DEBUG, dev, "unloading service driver %s\n",
485                         driver->name);
486                 driver->remove(pciedev);
487                 put_device(dev);
488         }
489         return 0;
490 }
491
492 /**
493  * pcie_port_shutdown_service - shut down given PCI Express port service
494  * @dev: PCI Express port service device to handle
495  *
496  * If PCI Express port service driver is registered with
497  * pcie_port_service_register(), this function will be called by the driver core
498  * when device_shutdown() is called for the port service device associated
499  * with the driver.
500  */
501 static void pcie_port_shutdown_service(struct device *dev) {}
502
503 /**
504  * pcie_port_service_register - register PCI Express port service driver
505  * @new: PCI Express port service driver to register
506  */
507 int pcie_port_service_register(struct pcie_port_service_driver *new)
508 {
509         new->driver.name = (char *)new->name;
510         new->driver.bus = &pcie_port_bus_type;
511         new->driver.probe = pcie_port_probe_service;
512         new->driver.remove = pcie_port_remove_service;
513         new->driver.shutdown = pcie_port_shutdown_service;
514
515         return driver_register(&new->driver);
516 }
517
518 /**
519  * pcie_port_service_unregister - unregister PCI Express port service driver
520  * @drv: PCI Express port service driver to unregister
521  */
522 void pcie_port_service_unregister(struct pcie_port_service_driver *drv)
523 {
524         driver_unregister(&drv->driver);
525 }
526
527 EXPORT_SYMBOL(pcie_port_service_register);
528 EXPORT_SYMBOL(pcie_port_service_unregister);