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