PCI: aerdrv: rework find_aer_service
[pandora-kernel.git] / drivers / pci / pcie / aer / aerdrv_core.c
1 /*
2  * drivers/pci/pcie/aer/aerdrv_core.c
3  *
4  * This file is subject to the terms and conditions of the GNU General Public
5  * License.  See the file "COPYING" in the main directory of this archive
6  * for more details.
7  *
8  * This file implements the core part of PCI-Express AER. When an pci-express
9  * error is delivered, an error message will be collected and printed to
10  * console, then, an error recovery procedure will be executed by following
11  * the pci error recovery rules.
12  *
13  * Copyright (C) 2006 Intel Corp.
14  *      Tom Long Nguyen (tom.l.nguyen@intel.com)
15  *      Zhang Yanmin (yanmin.zhang@intel.com)
16  *
17  */
18
19 #include <linux/module.h>
20 #include <linux/pci.h>
21 #include <linux/kernel.h>
22 #include <linux/errno.h>
23 #include <linux/pm.h>
24 #include <linux/suspend.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include "aerdrv.h"
28
29 static int forceload;
30 static int nosourceid;
31 module_param(forceload, bool, 0);
32 module_param(nosourceid, bool, 0);
33
34 int pci_enable_pcie_error_reporting(struct pci_dev *dev)
35 {
36         u16 reg16 = 0;
37         int pos;
38
39         if (dev->aer_firmware_first)
40                 return -EIO;
41
42         pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
43         if (!pos)
44                 return -EIO;
45
46         pos = pci_pcie_cap(dev);
47         if (!pos)
48                 return -EIO;
49
50         pci_read_config_word(dev, pos+PCI_EXP_DEVCTL, &reg16);
51         reg16 = reg16 |
52                 PCI_EXP_DEVCTL_CERE |
53                 PCI_EXP_DEVCTL_NFERE |
54                 PCI_EXP_DEVCTL_FERE |
55                 PCI_EXP_DEVCTL_URRE;
56         pci_write_config_word(dev, pos+PCI_EXP_DEVCTL, reg16);
57
58         return 0;
59 }
60 EXPORT_SYMBOL_GPL(pci_enable_pcie_error_reporting);
61
62 int pci_disable_pcie_error_reporting(struct pci_dev *dev)
63 {
64         u16 reg16 = 0;
65         int pos;
66
67         if (dev->aer_firmware_first)
68                 return -EIO;
69
70         pos = pci_pcie_cap(dev);
71         if (!pos)
72                 return -EIO;
73
74         pci_read_config_word(dev, pos+PCI_EXP_DEVCTL, &reg16);
75         reg16 = reg16 & ~(PCI_EXP_DEVCTL_CERE |
76                         PCI_EXP_DEVCTL_NFERE |
77                         PCI_EXP_DEVCTL_FERE |
78                         PCI_EXP_DEVCTL_URRE);
79         pci_write_config_word(dev, pos+PCI_EXP_DEVCTL, reg16);
80
81         return 0;
82 }
83 EXPORT_SYMBOL_GPL(pci_disable_pcie_error_reporting);
84
85 int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
86 {
87         int pos;
88         u32 status;
89
90         pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
91         if (!pos)
92                 return -EIO;
93
94         pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
95         if (status)
96                 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
97
98         return 0;
99 }
100 EXPORT_SYMBOL_GPL(pci_cleanup_aer_uncorrect_error_status);
101
102 /**
103  * add_error_device - list device to be handled
104  * @e_info: pointer to error info
105  * @dev: pointer to pci_dev to be added
106  */
107 static int add_error_device(struct aer_err_info *e_info, struct pci_dev *dev)
108 {
109         if (e_info->error_dev_num < AER_MAX_MULTI_ERR_DEVICES) {
110                 e_info->dev[e_info->error_dev_num] = dev;
111                 e_info->error_dev_num++;
112                 return 0;
113         }
114         return -ENOSPC;
115 }
116
117 #define PCI_BUS(x)      (((x) >> 8) & 0xff)
118
119 /**
120  * is_error_source - check whether the device is source of reported error
121  * @dev: pointer to pci_dev to be checked
122  * @e_info: pointer to reported error info
123  */
124 static bool is_error_source(struct pci_dev *dev, struct aer_err_info *e_info)
125 {
126         int pos;
127         u32 status, mask;
128         u16 reg16;
129
130         /*
131          * When bus id is equal to 0, it might be a bad id
132          * reported by root port.
133          */
134         if (!nosourceid && (PCI_BUS(e_info->id) != 0)) {
135                 /* Device ID match? */
136                 if (e_info->id == ((dev->bus->number << 8) | dev->devfn))
137                         return true;
138
139                 /* Continue id comparing if there is no multiple error */
140                 if (!e_info->multi_error_valid)
141                         return false;
142         }
143
144         /*
145          * When either
146          *      1) nosourceid==y;
147          *      2) bus id is equal to 0. Some ports might lose the bus
148          *              id of error source id;
149          *      3) There are multiple errors and prior id comparing fails;
150          * We check AER status registers to find possible reporter.
151          */
152         if (atomic_read(&dev->enable_cnt) == 0)
153                 return false;
154         pos = pci_pcie_cap(dev);
155         if (!pos)
156                 return false;
157
158         /* Check if AER is enabled */
159         pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &reg16);
160         if (!(reg16 & (
161                 PCI_EXP_DEVCTL_CERE |
162                 PCI_EXP_DEVCTL_NFERE |
163                 PCI_EXP_DEVCTL_FERE |
164                 PCI_EXP_DEVCTL_URRE)))
165                 return false;
166         pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
167         if (!pos)
168                 return false;
169
170         /* Check if error is recorded */
171         if (e_info->severity == AER_CORRECTABLE) {
172                 pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS, &status);
173                 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &mask);
174         } else {
175                 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
176                 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, &mask);
177         }
178         if (status & ~mask)
179                 return true;
180
181         return false;
182 }
183
184 static int find_device_iter(struct pci_dev *dev, void *data)
185 {
186         struct aer_err_info *e_info = (struct aer_err_info *)data;
187
188         if (is_error_source(dev, e_info)) {
189                 /* List this device */
190                 if (add_error_device(e_info, dev)) {
191                         /* We cannot handle more... Stop iteration */
192                         /* TODO: Should print error message here? */
193                         return 1;
194                 }
195
196                 /* If there is only a single error, stop iteration */
197                 if (!e_info->multi_error_valid)
198                         return 1;
199         }
200         return 0;
201 }
202
203 /**
204  * find_source_device - search through device hierarchy for source device
205  * @parent: pointer to Root Port pci_dev data structure
206  * @e_info: including detailed error information such like id
207  *
208  * Return true if found.
209  *
210  * Invoked by DPC when error is detected at the Root Port.
211  * Caller of this function must set id, severity, and multi_error_valid of
212  * struct aer_err_info pointed by @e_info properly.  This function must fill
213  * e_info->error_dev_num and e_info->dev[], based on the given information.
214  */
215 static bool find_source_device(struct pci_dev *parent,
216                 struct aer_err_info *e_info)
217 {
218         struct pci_dev *dev = parent;
219         int result;
220
221         /* Must reset in this function */
222         e_info->error_dev_num = 0;
223
224         /* Is Root Port an agent that sends error message? */
225         result = find_device_iter(dev, e_info);
226         if (result)
227                 return true;
228
229         pci_walk_bus(parent->subordinate, find_device_iter, e_info);
230
231         if (!e_info->error_dev_num) {
232                 dev_printk(KERN_DEBUG, &parent->dev,
233                                 "can't find device of ID%04x\n",
234                                 e_info->id);
235                 return false;
236         }
237         return true;
238 }
239
240 static int report_error_detected(struct pci_dev *dev, void *data)
241 {
242         pci_ers_result_t vote;
243         struct pci_error_handlers *err_handler;
244         struct aer_broadcast_data *result_data;
245         result_data = (struct aer_broadcast_data *) data;
246
247         dev->error_state = result_data->state;
248
249         if (!dev->driver ||
250                 !dev->driver->err_handler ||
251                 !dev->driver->err_handler->error_detected) {
252                 if (result_data->state == pci_channel_io_frozen &&
253                         !(dev->hdr_type & PCI_HEADER_TYPE_BRIDGE)) {
254                         /*
255                          * In case of fatal recovery, if one of down-
256                          * stream device has no driver. We might be
257                          * unable to recover because a later insmod
258                          * of a driver for this device is unaware of
259                          * its hw state.
260                          */
261                         dev_printk(KERN_DEBUG, &dev->dev, "device has %s\n",
262                                    dev->driver ?
263                                    "no AER-aware driver" : "no driver");
264                 }
265                 return 0;
266         }
267
268         err_handler = dev->driver->err_handler;
269         vote = err_handler->error_detected(dev, result_data->state);
270         result_data->result = merge_result(result_data->result, vote);
271         return 0;
272 }
273
274 static int report_mmio_enabled(struct pci_dev *dev, void *data)
275 {
276         pci_ers_result_t vote;
277         struct pci_error_handlers *err_handler;
278         struct aer_broadcast_data *result_data;
279         result_data = (struct aer_broadcast_data *) data;
280
281         if (!dev->driver ||
282                 !dev->driver->err_handler ||
283                 !dev->driver->err_handler->mmio_enabled)
284                 return 0;
285
286         err_handler = dev->driver->err_handler;
287         vote = err_handler->mmio_enabled(dev);
288         result_data->result = merge_result(result_data->result, vote);
289         return 0;
290 }
291
292 static int report_slot_reset(struct pci_dev *dev, void *data)
293 {
294         pci_ers_result_t vote;
295         struct pci_error_handlers *err_handler;
296         struct aer_broadcast_data *result_data;
297         result_data = (struct aer_broadcast_data *) data;
298
299         if (!dev->driver ||
300                 !dev->driver->err_handler ||
301                 !dev->driver->err_handler->slot_reset)
302                 return 0;
303
304         err_handler = dev->driver->err_handler;
305         vote = err_handler->slot_reset(dev);
306         result_data->result = merge_result(result_data->result, vote);
307         return 0;
308 }
309
310 static int report_resume(struct pci_dev *dev, void *data)
311 {
312         struct pci_error_handlers *err_handler;
313
314         dev->error_state = pci_channel_io_normal;
315
316         if (!dev->driver ||
317                 !dev->driver->err_handler ||
318                 !dev->driver->err_handler->resume)
319                 return 0;
320
321         err_handler = dev->driver->err_handler;
322         err_handler->resume(dev);
323         return 0;
324 }
325
326 /**
327  * broadcast_error_message - handle message broadcast to downstream drivers
328  * @dev: pointer to from where in a hierarchy message is broadcasted down
329  * @state: error state
330  * @error_mesg: message to print
331  * @cb: callback to be broadcasted
332  *
333  * Invoked during error recovery process. Once being invoked, the content
334  * of error severity will be broadcasted to all downstream drivers in a
335  * hierarchy in question.
336  */
337 static pci_ers_result_t broadcast_error_message(struct pci_dev *dev,
338         enum pci_channel_state state,
339         char *error_mesg,
340         int (*cb)(struct pci_dev *, void *))
341 {
342         struct aer_broadcast_data result_data;
343
344         dev_printk(KERN_DEBUG, &dev->dev, "broadcast %s message\n", error_mesg);
345         result_data.state = state;
346         if (cb == report_error_detected)
347                 result_data.result = PCI_ERS_RESULT_CAN_RECOVER;
348         else
349                 result_data.result = PCI_ERS_RESULT_RECOVERED;
350
351         if (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE) {
352                 /*
353                  * If the error is reported by a bridge, we think this error
354                  * is related to the downstream link of the bridge, so we
355                  * do error recovery on all subordinates of the bridge instead
356                  * of the bridge and clear the error status of the bridge.
357                  */
358                 if (cb == report_error_detected)
359                         dev->error_state = state;
360                 pci_walk_bus(dev->subordinate, cb, &result_data);
361                 if (cb == report_resume) {
362                         pci_cleanup_aer_uncorrect_error_status(dev);
363                         dev->error_state = pci_channel_io_normal;
364                 }
365         } else {
366                 /*
367                  * If the error is reported by an end point, we think this
368                  * error is related to the upstream link of the end point.
369                  */
370                 pci_walk_bus(dev->bus, cb, &result_data);
371         }
372
373         return result_data.result;
374 }
375
376 static int find_aer_service_iter(struct device *device, void *data)
377 {
378         struct pcie_port_service_driver *service_driver, **drv;
379
380         drv = (struct pcie_port_service_driver **) data;
381
382         if (device->bus == &pcie_port_bus_type && device->driver) {
383                 service_driver = to_service_driver(device->driver);
384                 if (service_driver->service == PCIE_PORT_SERVICE_AER) {
385                         *drv = service_driver;
386                         return 1;
387                 }
388         }
389
390         return 0;
391 }
392
393 static struct pcie_port_service_driver *find_aer_service(struct pci_dev *dev)
394 {
395         struct pcie_port_service_driver *drv = NULL;
396
397         device_for_each_child(&dev->dev, &drv, find_aer_service_iter);
398
399         return drv;
400 }
401
402 static pci_ers_result_t reset_link(struct pcie_device *aerdev,
403                 struct pci_dev *dev)
404 {
405         struct pci_dev *udev;
406         pci_ers_result_t status;
407         struct pcie_port_service_driver *driver;
408
409         if (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE)
410                 udev = dev;
411         else
412                 udev = dev->bus->self;
413
414         /* Use the aer driver of the component firstly */
415         driver = find_aer_service(udev);
416
417         /*
418          * If it hasn't the driver and is downstream port, use the root port's
419          */
420         if (!driver || !driver->reset_link) {
421                 if (udev->pcie_type == PCI_EXP_TYPE_DOWNSTREAM &&
422                         aerdev->device.driver &&
423                         to_service_driver(aerdev->device.driver)->reset_link) {
424                         driver = to_service_driver(aerdev->device.driver);
425                 } else {
426                         dev_printk(KERN_DEBUG, &dev->dev,
427                                 "no link-reset support at upstream device %s\n",
428                                 pci_name(udev));
429                         return PCI_ERS_RESULT_DISCONNECT;
430                 }
431         }
432
433         status = driver->reset_link(udev);
434         if (status != PCI_ERS_RESULT_RECOVERED) {
435                 dev_printk(KERN_DEBUG, &dev->dev,
436                         "link reset at upstream device %s failed\n",
437                         pci_name(udev));
438                 return PCI_ERS_RESULT_DISCONNECT;
439         }
440
441         return status;
442 }
443
444 /**
445  * do_recovery - handle nonfatal/fatal error recovery process
446  * @aerdev: pointer to a pcie_device data structure of root port
447  * @dev: pointer to a pci_dev data structure of agent detecting an error
448  * @severity: error severity type
449  *
450  * Invoked when an error is nonfatal/fatal. Once being invoked, broadcast
451  * error detected message to all downstream drivers within a hierarchy in
452  * question and return the returned code.
453  */
454 static void do_recovery(struct pcie_device *aerdev, struct pci_dev *dev,
455                 int severity)
456 {
457         pci_ers_result_t status, result = PCI_ERS_RESULT_RECOVERED;
458         enum pci_channel_state state;
459
460         if (severity == AER_FATAL)
461                 state = pci_channel_io_frozen;
462         else
463                 state = pci_channel_io_normal;
464
465         status = broadcast_error_message(dev,
466                         state,
467                         "error_detected",
468                         report_error_detected);
469
470         if (severity == AER_FATAL) {
471                 result = reset_link(aerdev, dev);
472                 if (result != PCI_ERS_RESULT_RECOVERED)
473                         goto failed;
474         }
475
476         if (status == PCI_ERS_RESULT_CAN_RECOVER)
477                 status = broadcast_error_message(dev,
478                                 state,
479                                 "mmio_enabled",
480                                 report_mmio_enabled);
481
482         if (status == PCI_ERS_RESULT_NEED_RESET) {
483                 /*
484                  * TODO: Should call platform-specific
485                  * functions to reset slot before calling
486                  * drivers' slot_reset callbacks?
487                  */
488                 status = broadcast_error_message(dev,
489                                 state,
490                                 "slot_reset",
491                                 report_slot_reset);
492         }
493
494         if (status != PCI_ERS_RESULT_RECOVERED)
495                 goto failed;
496
497         broadcast_error_message(dev,
498                                 state,
499                                 "resume",
500                                 report_resume);
501
502         dev_printk(KERN_DEBUG, &dev->dev,
503                 "AER driver successfully recovered\n");
504         return;
505
506 failed:
507         /* TODO: Should kernel panic here? */
508         dev_printk(KERN_DEBUG, &dev->dev,
509                 "AER driver didn't recover\n");
510 }
511
512 /**
513  * handle_error_source - handle logging error into an event log
514  * @aerdev: pointer to pcie_device data structure of the root port
515  * @dev: pointer to pci_dev data structure of error source device
516  * @info: comprehensive error information
517  *
518  * Invoked when an error being detected by Root Port.
519  */
520 static void handle_error_source(struct pcie_device *aerdev,
521         struct pci_dev *dev,
522         struct aer_err_info *info)
523 {
524         int pos;
525
526         if (info->severity == AER_CORRECTABLE) {
527                 /*
528                  * Correctable error does not need software intevention.
529                  * No need to go through error recovery process.
530                  */
531                 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
532                 if (pos)
533                         pci_write_config_dword(dev, pos + PCI_ERR_COR_STATUS,
534                                         info->status);
535         } else
536                 do_recovery(aerdev, dev, info->severity);
537 }
538
539 /**
540  * get_device_error_info - read error status from dev and store it to info
541  * @dev: pointer to the device expected to have a error record
542  * @info: pointer to structure to store the error record
543  *
544  * Return 1 on success, 0 on error.
545  *
546  * Note that @info is reused among all error devices. Clear fields properly.
547  */
548 static int get_device_error_info(struct pci_dev *dev, struct aer_err_info *info)
549 {
550         int pos, temp;
551
552         /* Must reset in this function */
553         info->status = 0;
554         info->tlp_header_valid = 0;
555
556         pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
557
558         /* The device might not support AER */
559         if (!pos)
560                 return 1;
561
562         if (info->severity == AER_CORRECTABLE) {
563                 pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS,
564                         &info->status);
565                 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK,
566                         &info->mask);
567                 if (!(info->status & ~info->mask))
568                         return 0;
569         } else if (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE ||
570                 info->severity == AER_NONFATAL) {
571
572                 /* Link is still healthy for IO reads */
573                 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS,
574                         &info->status);
575                 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK,
576                         &info->mask);
577                 if (!(info->status & ~info->mask))
578                         return 0;
579
580                 /* Get First Error Pointer */
581                 pci_read_config_dword(dev, pos + PCI_ERR_CAP, &temp);
582                 info->first_error = PCI_ERR_CAP_FEP(temp);
583
584                 if (info->status & AER_LOG_TLP_MASKS) {
585                         info->tlp_header_valid = 1;
586                         pci_read_config_dword(dev,
587                                 pos + PCI_ERR_HEADER_LOG, &info->tlp.dw0);
588                         pci_read_config_dword(dev,
589                                 pos + PCI_ERR_HEADER_LOG + 4, &info->tlp.dw1);
590                         pci_read_config_dword(dev,
591                                 pos + PCI_ERR_HEADER_LOG + 8, &info->tlp.dw2);
592                         pci_read_config_dword(dev,
593                                 pos + PCI_ERR_HEADER_LOG + 12, &info->tlp.dw3);
594                 }
595         }
596
597         return 1;
598 }
599
600 static inline void aer_process_err_devices(struct pcie_device *p_device,
601                         struct aer_err_info *e_info)
602 {
603         int i;
604
605         /* Report all before handle them, not to lost records by reset etc. */
606         for (i = 0; i < e_info->error_dev_num && e_info->dev[i]; i++) {
607                 if (get_device_error_info(e_info->dev[i], e_info))
608                         aer_print_error(e_info->dev[i], e_info);
609         }
610         for (i = 0; i < e_info->error_dev_num && e_info->dev[i]; i++) {
611                 if (get_device_error_info(e_info->dev[i], e_info))
612                         handle_error_source(p_device, e_info->dev[i], e_info);
613         }
614 }
615
616 /**
617  * aer_isr_one_error - consume an error detected by root port
618  * @p_device: pointer to error root port service device
619  * @e_src: pointer to an error source
620  */
621 static void aer_isr_one_error(struct pcie_device *p_device,
622                 struct aer_err_source *e_src)
623 {
624         struct aer_err_info *e_info;
625
626         /* struct aer_err_info might be big, so we allocate it with slab */
627         e_info = kmalloc(sizeof(struct aer_err_info), GFP_KERNEL);
628         if (!e_info) {
629                 dev_printk(KERN_DEBUG, &p_device->port->dev,
630                         "Can't allocate mem when processing AER errors\n");
631                 return;
632         }
633
634         /*
635          * There is a possibility that both correctable error and
636          * uncorrectable error being logged. Report correctable error first.
637          */
638         if (e_src->status & PCI_ERR_ROOT_COR_RCV) {
639                 e_info->id = ERR_COR_ID(e_src->id);
640                 e_info->severity = AER_CORRECTABLE;
641
642                 if (e_src->status & PCI_ERR_ROOT_MULTI_COR_RCV)
643                         e_info->multi_error_valid = 1;
644                 else
645                         e_info->multi_error_valid = 0;
646
647                 aer_print_port_info(p_device->port, e_info);
648
649                 if (find_source_device(p_device->port, e_info))
650                         aer_process_err_devices(p_device, e_info);
651         }
652
653         if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) {
654                 e_info->id = ERR_UNCOR_ID(e_src->id);
655
656                 if (e_src->status & PCI_ERR_ROOT_FATAL_RCV)
657                         e_info->severity = AER_FATAL;
658                 else
659                         e_info->severity = AER_NONFATAL;
660
661                 if (e_src->status & PCI_ERR_ROOT_MULTI_UNCOR_RCV)
662                         e_info->multi_error_valid = 1;
663                 else
664                         e_info->multi_error_valid = 0;
665
666                 aer_print_port_info(p_device->port, e_info);
667
668                 if (find_source_device(p_device->port, e_info))
669                         aer_process_err_devices(p_device, e_info);
670         }
671
672         kfree(e_info);
673 }
674
675 /**
676  * get_e_source - retrieve an error source
677  * @rpc: pointer to the root port which holds an error
678  * @e_src: pointer to store retrieved error source
679  *
680  * Return 1 if an error source is retrieved, otherwise 0.
681  *
682  * Invoked by DPC handler to consume an error.
683  */
684 static int get_e_source(struct aer_rpc *rpc, struct aer_err_source *e_src)
685 {
686         unsigned long flags;
687         int ret = 0;
688
689         /* Lock access to Root error producer/consumer index */
690         spin_lock_irqsave(&rpc->e_lock, flags);
691         if (rpc->prod_idx != rpc->cons_idx) {
692                 *e_src = rpc->e_sources[rpc->cons_idx];
693                 rpc->cons_idx++;
694                 if (rpc->cons_idx == AER_ERROR_SOURCES_MAX)
695                         rpc->cons_idx = 0;
696                 ret = 1;
697         }
698         spin_unlock_irqrestore(&rpc->e_lock, flags);
699
700         return ret;
701 }
702
703 /**
704  * aer_isr - consume errors detected by root port
705  * @work: definition of this work item
706  *
707  * Invoked, as DPC, when root port records new detected error
708  */
709 void aer_isr(struct work_struct *work)
710 {
711         struct aer_rpc *rpc = container_of(work, struct aer_rpc, dpc_handler);
712         struct pcie_device *p_device = rpc->rpd;
713         struct aer_err_source e_src;
714
715         mutex_lock(&rpc->rpc_mutex);
716         while (get_e_source(rpc, &e_src))
717                 aer_isr_one_error(p_device, &e_src);
718         mutex_unlock(&rpc->rpc_mutex);
719
720         wake_up(&rpc->wait_release);
721 }
722
723 /**
724  * aer_init - provide AER initialization
725  * @dev: pointer to AER pcie device
726  *
727  * Invoked when AER service driver is loaded.
728  */
729 int aer_init(struct pcie_device *dev)
730 {
731         if (dev->port->aer_firmware_first) {
732                 dev_printk(KERN_DEBUG, &dev->device,
733                            "PCIe errors handled by platform firmware.\n");
734                 goto out;
735         }
736
737         if (aer_osc_setup(dev))
738                 goto out;
739
740         return 0;
741 out:
742         if (forceload) {
743                 dev_printk(KERN_DEBUG, &dev->device,
744                            "aerdrv forceload requested.\n");
745                 dev->port->aer_firmware_first = 0;
746                 return 0;
747         }
748         return -ENXIO;
749 }