blob: 766687094706114d5d954ad8330003396b3e5f3f [file] [log] [blame]
Bjorn Helgaase1e86ee2018-01-26 14:12:23 -06001// SPDX-License-Identifier: GPL-2.0
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08002/*
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06003 * Implement the AER root port service driver. The driver registers an IRQ
4 * handler. When a root port triggers an AER interrupt, the IRQ handler
5 * collects root port status and schedules work.
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08006 *
7 * Copyright (C) 2006 Intel Corp.
8 * Tom Long Nguyen (tom.l.nguyen@intel.com)
9 * Zhang Yanmin (yanmin.zhang@intel.com)
Bjorn Helgaas41cbc9e2018-06-08 08:40:00 -050010 *
11 * (C) Copyright 2009 Hewlett-Packard Development Company, L.P.
12 * Andrew Patterson <andrew.patterson@hp.com>
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080013 */
14
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -050015#include <linux/cper.h>
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080016#include <linux/pci.h>
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010017#include <linux/pci-acpi.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040018#include <linux/sched.h>
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080019#include <linux/kernel.h>
20#include <linux/errno.h>
21#include <linux/pm.h>
22#include <linux/init.h>
23#include <linux/interrupt.h>
24#include <linux/delay.h>
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -050025#include <linux/kfifo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Bjorn Helgaas256a4592018-06-08 08:39:45 -050027#include <acpi/apei.h>
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -050028#include <ras/ras_event.h>
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080029
Bjorn Helgaas4696b822018-06-08 08:48:47 -050030#include "../pci.h"
31#include "portdrv.h"
Bjorn Helgaas23e672b2018-06-08 08:41:28 -050032
33#define AER_ERROR_SOURCES_MAX 100
Bjorn Helgaas23e672b2018-06-08 08:41:28 -050034
Rajat Jaindb89ccb2018-06-30 15:07:17 -050035#define AER_MAX_TYPEOF_COR_ERRS 16 /* as per PCI_ERR_COR_STATUS */
36#define AER_MAX_TYPEOF_UNCOR_ERRS 26 /* as per PCI_ERR_UNCOR_STATUS*/
37
Bjorn Helgaas23e672b2018-06-08 08:41:28 -050038struct aer_err_source {
39 unsigned int status;
40 unsigned int id;
41};
42
43struct aer_rpc {
44 struct pci_dev *rpd; /* Root Port device */
45 struct work_struct dpc_handler;
46 struct aer_err_source e_sources[AER_ERROR_SOURCES_MAX];
47 struct aer_err_info e_info;
48 unsigned short prod_idx; /* Error Producer Index */
49 unsigned short cons_idx; /* Error Consumer Index */
50 int isr;
51 spinlock_t e_lock; /*
52 * Lock access to Error Status/ID Regs
53 * and error producer/consumer index
54 */
55 struct mutex rpc_mutex; /*
56 * only one thread could do
57 * recovery on the same
58 * root port hierarchy
59 */
60};
61
Rajat Jaindb89ccb2018-06-30 15:07:17 -050062/* AER stats for the device */
63struct aer_stats {
64
65 /*
66 * Fields for all AER capable devices. They indicate the errors
67 * "as seen by this device". Note that this may mean that if an
68 * end point is causing problems, the AER counters may increment
69 * at its link partner (e.g. root port) because the errors will be
70 * "seen" by the link partner and not the the problematic end point
71 * itself (which may report all counters as 0 as it never saw any
72 * problems).
73 */
74 /* Counters for different type of correctable errors */
75 u64 dev_cor_errs[AER_MAX_TYPEOF_COR_ERRS];
76 /* Counters for different type of fatal uncorrectable errors */
77 u64 dev_fatal_errs[AER_MAX_TYPEOF_UNCOR_ERRS];
78 /* Counters for different type of nonfatal uncorrectable errors */
79 u64 dev_nonfatal_errs[AER_MAX_TYPEOF_UNCOR_ERRS];
80 /* Total number of ERR_COR sent by this device */
81 u64 dev_total_cor_errs;
82 /* Total number of ERR_FATAL sent by this device */
83 u64 dev_total_fatal_errs;
84 /* Total number of ERR_NONFATAL sent by this device */
85 u64 dev_total_nonfatal_errs;
86
87 /*
88 * Fields for Root ports & root complex event collectors only, these
89 * indicate the total number of ERR_COR, ERR_FATAL, and ERR_NONFATAL
90 * messages received by the root port / event collector, INCLUDING the
91 * ones that are generated internally (by the rootport itself)
92 */
93 u64 rootport_total_cor_errs;
94 u64 rootport_total_fatal_errs;
95 u64 rootport_total_nonfatal_errs;
96};
97
Bjorn Helgaas23e672b2018-06-08 08:41:28 -050098#define AER_LOG_TLP_MASKS (PCI_ERR_UNC_POISON_TLP| \
99 PCI_ERR_UNC_ECRC| \
100 PCI_ERR_UNC_UNSUP| \
101 PCI_ERR_UNC_COMP_ABORT| \
102 PCI_ERR_UNC_UNX_COMP| \
103 PCI_ERR_UNC_MALF_TLP)
104
105#define SYSTEM_ERROR_INTR_ON_MESG_MASK (PCI_EXP_RTCTL_SECEE| \
106 PCI_EXP_RTCTL_SENFEE| \
107 PCI_EXP_RTCTL_SEFEE)
108#define ROOT_PORT_INTR_ON_MESG_MASK (PCI_ERR_ROOT_CMD_COR_EN| \
109 PCI_ERR_ROOT_CMD_NONFATAL_EN| \
110 PCI_ERR_ROOT_CMD_FATAL_EN)
111#define ERR_COR_ID(d) (d & 0xffff)
112#define ERR_UNCOR_ID(d) (d >> 16)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800113
Randy Dunlap7f785762007-10-05 13:17:58 -0700114static int pcie_aer_disable;
115
116void pci_no_aer(void)
117{
Bjorn Helgaas7ece1412016-09-06 16:24:37 -0500118 pcie_aer_disable = 1;
Randy Dunlap7f785762007-10-05 13:17:58 -0700119}
120
Rafael J. Wysockif1a7bfa2010-08-21 01:50:52 +0200121bool pci_aer_available(void)
122{
123 return !pcie_aer_disable && pci_msi_enabled();
124}
125
Bjorn Helgaas41cbc9e2018-06-08 08:40:00 -0500126#ifdef CONFIG_PCIE_ECRC
127
128#define ECRC_POLICY_DEFAULT 0 /* ECRC set by BIOS */
129#define ECRC_POLICY_OFF 1 /* ECRC off for performance */
130#define ECRC_POLICY_ON 2 /* ECRC on for data integrity */
131
132static int ecrc_policy = ECRC_POLICY_DEFAULT;
133
134static const char *ecrc_policy_str[] = {
135 [ECRC_POLICY_DEFAULT] = "bios",
136 [ECRC_POLICY_OFF] = "off",
137 [ECRC_POLICY_ON] = "on"
138};
139
140/**
141 * enable_ercr_checking - enable PCIe ECRC checking for a device
142 * @dev: the PCI device
143 *
144 * Returns 0 on success, or negative on failure.
145 */
146static int enable_ecrc_checking(struct pci_dev *dev)
147{
148 int pos;
149 u32 reg32;
150
151 if (!pci_is_pcie(dev))
152 return -ENODEV;
153
154 pos = dev->aer_cap;
155 if (!pos)
156 return -ENODEV;
157
158 pci_read_config_dword(dev, pos + PCI_ERR_CAP, &reg32);
159 if (reg32 & PCI_ERR_CAP_ECRC_GENC)
160 reg32 |= PCI_ERR_CAP_ECRC_GENE;
161 if (reg32 & PCI_ERR_CAP_ECRC_CHKC)
162 reg32 |= PCI_ERR_CAP_ECRC_CHKE;
163 pci_write_config_dword(dev, pos + PCI_ERR_CAP, reg32);
164
165 return 0;
166}
167
168/**
169 * disable_ercr_checking - disables PCIe ECRC checking for a device
170 * @dev: the PCI device
171 *
172 * Returns 0 on success, or negative on failure.
173 */
174static int disable_ecrc_checking(struct pci_dev *dev)
175{
176 int pos;
177 u32 reg32;
178
179 if (!pci_is_pcie(dev))
180 return -ENODEV;
181
182 pos = dev->aer_cap;
183 if (!pos)
184 return -ENODEV;
185
186 pci_read_config_dword(dev, pos + PCI_ERR_CAP, &reg32);
187 reg32 &= ~(PCI_ERR_CAP_ECRC_GENE | PCI_ERR_CAP_ECRC_CHKE);
188 pci_write_config_dword(dev, pos + PCI_ERR_CAP, reg32);
189
190 return 0;
191}
192
193/**
194 * pcie_set_ecrc_checking - set/unset PCIe ECRC checking for a device based on global policy
195 * @dev: the PCI device
196 */
197void pcie_set_ecrc_checking(struct pci_dev *dev)
198{
199 switch (ecrc_policy) {
200 case ECRC_POLICY_DEFAULT:
201 return;
202 case ECRC_POLICY_OFF:
203 disable_ecrc_checking(dev);
204 break;
205 case ECRC_POLICY_ON:
206 enable_ecrc_checking(dev);
207 break;
208 default:
209 return;
210 }
211}
212
213/**
214 * pcie_ecrc_get_policy - parse kernel command-line ecrc option
215 */
216void pcie_ecrc_get_policy(char *str)
217{
218 int i;
219
220 for (i = 0; i < ARRAY_SIZE(ecrc_policy_str); i++)
221 if (!strncmp(str, ecrc_policy_str[i],
222 strlen(ecrc_policy_str[i])))
223 break;
224 if (i >= ARRAY_SIZE(ecrc_policy_str))
225 return;
226
227 ecrc_policy = i;
228}
229#endif /* CONFIG_PCIE_ECRC */
230
Bjorn Helgaas256a4592018-06-08 08:39:45 -0500231#ifdef CONFIG_ACPI_APEI
232static inline int hest_match_pci(struct acpi_hest_aer_common *p,
233 struct pci_dev *pci)
234{
235 return ACPI_HEST_SEGMENT(p->bus) == pci_domain_nr(pci->bus) &&
236 ACPI_HEST_BUS(p->bus) == pci->bus->number &&
237 p->device == PCI_SLOT(pci->devfn) &&
238 p->function == PCI_FUNC(pci->devfn);
239}
240
241static inline bool hest_match_type(struct acpi_hest_header *hest_hdr,
242 struct pci_dev *dev)
243{
244 u16 hest_type = hest_hdr->type;
245 u8 pcie_type = pci_pcie_type(dev);
246
247 if ((hest_type == ACPI_HEST_TYPE_AER_ROOT_PORT &&
248 pcie_type == PCI_EXP_TYPE_ROOT_PORT) ||
249 (hest_type == ACPI_HEST_TYPE_AER_ENDPOINT &&
250 pcie_type == PCI_EXP_TYPE_ENDPOINT) ||
251 (hest_type == ACPI_HEST_TYPE_AER_BRIDGE &&
252 (dev->class >> 16) == PCI_BASE_CLASS_BRIDGE))
253 return true;
254 return false;
255}
256
257struct aer_hest_parse_info {
258 struct pci_dev *pci_dev;
259 int firmware_first;
260};
261
262static int hest_source_is_pcie_aer(struct acpi_hest_header *hest_hdr)
263{
264 if (hest_hdr->type == ACPI_HEST_TYPE_AER_ROOT_PORT ||
265 hest_hdr->type == ACPI_HEST_TYPE_AER_ENDPOINT ||
266 hest_hdr->type == ACPI_HEST_TYPE_AER_BRIDGE)
267 return 1;
268 return 0;
269}
270
271static int aer_hest_parse(struct acpi_hest_header *hest_hdr, void *data)
272{
273 struct aer_hest_parse_info *info = data;
274 struct acpi_hest_aer_common *p;
275 int ff;
276
277 if (!hest_source_is_pcie_aer(hest_hdr))
278 return 0;
279
280 p = (struct acpi_hest_aer_common *)(hest_hdr + 1);
281 ff = !!(p->flags & ACPI_HEST_FIRMWARE_FIRST);
282
283 /*
284 * If no specific device is supplied, determine whether
285 * FIRMWARE_FIRST is set for *any* PCIe device.
286 */
287 if (!info->pci_dev) {
288 info->firmware_first |= ff;
289 return 0;
290 }
291
292 /* Otherwise, check the specific device */
293 if (p->flags & ACPI_HEST_GLOBAL) {
294 if (hest_match_type(hest_hdr, info->pci_dev))
295 info->firmware_first = ff;
296 } else
297 if (hest_match_pci(p, info->pci_dev))
298 info->firmware_first = ff;
299
300 return 0;
301}
302
303static void aer_set_firmware_first(struct pci_dev *pci_dev)
304{
305 int rc;
306 struct aer_hest_parse_info info = {
307 .pci_dev = pci_dev,
308 .firmware_first = 0,
309 };
310
311 rc = apei_hest_parse(aer_hest_parse, &info);
312
313 if (rc)
314 pci_dev->__aer_firmware_first = 0;
315 else
316 pci_dev->__aer_firmware_first = info.firmware_first;
317 pci_dev->__aer_firmware_first_valid = 1;
318}
319
320int pcie_aer_get_firmware_first(struct pci_dev *dev)
321{
322 if (!pci_is_pcie(dev))
323 return 0;
324
Alexandru Gagniuc7af02fc2018-07-03 18:27:43 -0500325 if (pcie_ports_native)
326 return 0;
327
Bjorn Helgaas256a4592018-06-08 08:39:45 -0500328 if (!dev->__aer_firmware_first_valid)
329 aer_set_firmware_first(dev);
330 return dev->__aer_firmware_first;
331}
Bjorn Helgaas41cbc9e2018-06-08 08:40:00 -0500332#define PCI_EXP_AER_FLAGS (PCI_EXP_DEVCTL_CERE | PCI_EXP_DEVCTL_NFERE | \
333 PCI_EXP_DEVCTL_FERE | PCI_EXP_DEVCTL_URRE)
Bjorn Helgaas256a4592018-06-08 08:39:45 -0500334
335static bool aer_firmware_first;
336
337/**
338 * aer_acpi_firmware_first - Check if APEI should control AER.
339 */
340bool aer_acpi_firmware_first(void)
341{
342 static bool parsed = false;
343 struct aer_hest_parse_info info = {
344 .pci_dev = NULL, /* Check all PCIe devices */
345 .firmware_first = 0,
346 };
347
Alexandru Gagniuc7af02fc2018-07-03 18:27:43 -0500348 if (pcie_ports_native)
349 return false;
350
Bjorn Helgaas256a4592018-06-08 08:39:45 -0500351 if (!parsed) {
352 apei_hest_parse(aer_hest_parse, &info);
353 aer_firmware_first = info.firmware_first;
354 parsed = true;
355 }
356 return aer_firmware_first;
357}
358#endif
359
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -0500360#define PCI_EXP_AER_FLAGS (PCI_EXP_DEVCTL_CERE | PCI_EXP_DEVCTL_NFERE | \
361 PCI_EXP_DEVCTL_FERE | PCI_EXP_DEVCTL_URRE)
362
363int pci_enable_pcie_error_reporting(struct pci_dev *dev)
364{
365 if (pcie_aer_get_firmware_first(dev))
366 return -EIO;
367
368 if (!dev->aer_cap)
369 return -EIO;
370
371 return pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_AER_FLAGS);
372}
373EXPORT_SYMBOL_GPL(pci_enable_pcie_error_reporting);
374
375int pci_disable_pcie_error_reporting(struct pci_dev *dev)
376{
377 if (pcie_aer_get_firmware_first(dev))
378 return -EIO;
379
380 return pcie_capability_clear_word(dev, PCI_EXP_DEVCTL,
381 PCI_EXP_AER_FLAGS);
382}
383EXPORT_SYMBOL_GPL(pci_disable_pcie_error_reporting);
384
385int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
386{
387 int pos;
388 u32 status;
389
390 pos = dev->aer_cap;
391 if (!pos)
392 return -EIO;
393
394 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
395 if (status)
396 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
397
398 return 0;
399}
400EXPORT_SYMBOL_GPL(pci_cleanup_aer_uncorrect_error_status);
401
402int pci_cleanup_aer_error_status_regs(struct pci_dev *dev)
403{
404 int pos;
405 u32 status;
406 int port_type;
407
408 if (!pci_is_pcie(dev))
409 return -ENODEV;
410
411 pos = dev->aer_cap;
412 if (!pos)
413 return -EIO;
414
415 port_type = pci_pcie_type(dev);
416 if (port_type == PCI_EXP_TYPE_ROOT_PORT) {
417 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &status);
418 pci_write_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, status);
419 }
420
421 pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS, &status);
422 pci_write_config_dword(dev, pos + PCI_ERR_COR_STATUS, status);
423
424 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
425 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
426
427 return 0;
428}
429
Rajat Jain60ed9822018-06-21 16:48:26 -0700430void pci_aer_init(struct pci_dev *dev)
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -0500431{
432 dev->aer_cap = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500433
434 if (dev->aer_cap)
435 dev->aer_stats = kzalloc(sizeof(struct aer_stats), GFP_KERNEL);
436
Rajat Jain60ed9822018-06-21 16:48:26 -0700437 pci_cleanup_aer_error_status_regs(dev);
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -0500438}
439
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500440void pci_aer_exit(struct pci_dev *dev)
441{
442 kfree(dev->aer_stats);
443 dev->aer_stats = NULL;
444}
445
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500446#define AER_AGENT_RECEIVER 0
447#define AER_AGENT_REQUESTER 1
448#define AER_AGENT_COMPLETER 2
449#define AER_AGENT_TRANSMITTER 3
450
451#define AER_AGENT_REQUESTER_MASK(t) ((t == AER_CORRECTABLE) ? \
452 0 : (PCI_ERR_UNC_COMP_TIME|PCI_ERR_UNC_UNSUP))
453#define AER_AGENT_COMPLETER_MASK(t) ((t == AER_CORRECTABLE) ? \
454 0 : PCI_ERR_UNC_COMP_ABORT)
455#define AER_AGENT_TRANSMITTER_MASK(t) ((t == AER_CORRECTABLE) ? \
456 (PCI_ERR_COR_REP_ROLL|PCI_ERR_COR_REP_TIMER) : 0)
457
458#define AER_GET_AGENT(t, e) \
459 ((e & AER_AGENT_COMPLETER_MASK(t)) ? AER_AGENT_COMPLETER : \
460 (e & AER_AGENT_REQUESTER_MASK(t)) ? AER_AGENT_REQUESTER : \
461 (e & AER_AGENT_TRANSMITTER_MASK(t)) ? AER_AGENT_TRANSMITTER : \
462 AER_AGENT_RECEIVER)
463
464#define AER_PHYSICAL_LAYER_ERROR 0
465#define AER_DATA_LINK_LAYER_ERROR 1
466#define AER_TRANSACTION_LAYER_ERROR 2
467
468#define AER_PHYSICAL_LAYER_ERROR_MASK(t) ((t == AER_CORRECTABLE) ? \
469 PCI_ERR_COR_RCVR : 0)
470#define AER_DATA_LINK_LAYER_ERROR_MASK(t) ((t == AER_CORRECTABLE) ? \
471 (PCI_ERR_COR_BAD_TLP| \
472 PCI_ERR_COR_BAD_DLLP| \
473 PCI_ERR_COR_REP_ROLL| \
474 PCI_ERR_COR_REP_TIMER) : PCI_ERR_UNC_DLP)
475
476#define AER_GET_LAYER_ERROR(t, e) \
477 ((e & AER_PHYSICAL_LAYER_ERROR_MASK(t)) ? AER_PHYSICAL_LAYER_ERROR : \
478 (e & AER_DATA_LINK_LAYER_ERROR_MASK(t)) ? AER_DATA_LINK_LAYER_ERROR : \
479 AER_TRANSACTION_LAYER_ERROR)
480
481/*
482 * AER error strings
483 */
484static const char *aer_error_severity_string[] = {
485 "Uncorrected (Non-Fatal)",
486 "Uncorrected (Fatal)",
487 "Corrected"
488};
489
490static const char *aer_error_layer[] = {
491 "Physical Layer",
492 "Data Link Layer",
493 "Transaction Layer"
494};
495
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500496static const char *aer_correctable_error_string[AER_MAX_TYPEOF_COR_ERRS] = {
Tyler Baicarbd237802018-06-26 11:44:15 -0400497 "RxErr", /* Bit Position 0 */
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500498 NULL,
499 NULL,
500 NULL,
501 NULL,
502 NULL,
Tyler Baicarbd237802018-06-26 11:44:15 -0400503 "BadTLP", /* Bit Position 6 */
504 "BadDLLP", /* Bit Position 7 */
505 "Rollover", /* Bit Position 8 */
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500506 NULL,
507 NULL,
508 NULL,
Tyler Baicarbd237802018-06-26 11:44:15 -0400509 "Timeout", /* Bit Position 12 */
510 "NonFatalErr", /* Bit Position 13 */
511 "CorrIntErr", /* Bit Position 14 */
512 "HeaderOF", /* Bit Position 15 */
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500513};
514
Rajat Jaindb89ccb2018-06-30 15:07:17 -0500515static const char *aer_uncorrectable_error_string[AER_MAX_TYPEOF_UNCOR_ERRS] = {
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500516 "Undefined", /* Bit Position 0 */
517 NULL,
518 NULL,
519 NULL,
Tyler Baicarbd237802018-06-26 11:44:15 -0400520 "DLP", /* Bit Position 4 */
521 "SDES", /* Bit Position 5 */
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500522 NULL,
523 NULL,
524 NULL,
525 NULL,
526 NULL,
527 NULL,
Tyler Baicarbd237802018-06-26 11:44:15 -0400528 "TLP", /* Bit Position 12 */
529 "FCP", /* Bit Position 13 */
530 "CmpltTO", /* Bit Position 14 */
531 "CmpltAbrt", /* Bit Position 15 */
532 "UnxCmplt", /* Bit Position 16 */
533 "RxOF", /* Bit Position 17 */
534 "MalfTLP", /* Bit Position 18 */
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500535 "ECRC", /* Bit Position 19 */
Tyler Baicarbd237802018-06-26 11:44:15 -0400536 "UnsupReq", /* Bit Position 20 */
537 "ACSViol", /* Bit Position 21 */
538 "UncorrIntErr", /* Bit Position 22 */
539 "BlockedTLP", /* Bit Position 23 */
540 "AtomicOpBlocked", /* Bit Position 24 */
541 "TLPBlockedErr", /* Bit Position 25 */
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500542};
543
544static const char *aer_agent_string[] = {
545 "Receiver ID",
546 "Requester ID",
547 "Completer ID",
548 "Transmitter ID"
549};
550
Rajat Jain81aa5202018-06-21 16:48:28 -0700551#define aer_stats_dev_attr(name, stats_array, strings_array, \
552 total_string, total_field) \
553 static ssize_t \
554 name##_show(struct device *dev, struct device_attribute *attr, \
555 char *buf) \
556{ \
557 unsigned int i; \
558 char *str = buf; \
559 struct pci_dev *pdev = to_pci_dev(dev); \
560 u64 *stats = pdev->aer_stats->stats_array; \
561 \
562 for (i = 0; i < ARRAY_SIZE(strings_array); i++) { \
563 if (strings_array[i]) \
564 str += sprintf(str, "%s %llu\n", \
565 strings_array[i], stats[i]); \
566 else if (stats[i]) \
567 str += sprintf(str, #stats_array "_bit[%d] %llu\n",\
568 i, stats[i]); \
569 } \
570 str += sprintf(str, "TOTAL_%s %llu\n", total_string, \
571 pdev->aer_stats->total_field); \
572 return str-buf; \
573} \
574static DEVICE_ATTR_RO(name)
575
576aer_stats_dev_attr(aer_dev_correctable, dev_cor_errs,
577 aer_correctable_error_string, "ERR_COR",
578 dev_total_cor_errs);
579aer_stats_dev_attr(aer_dev_fatal, dev_fatal_errs,
580 aer_uncorrectable_error_string, "ERR_FATAL",
581 dev_total_fatal_errs);
582aer_stats_dev_attr(aer_dev_nonfatal, dev_nonfatal_errs,
583 aer_uncorrectable_error_string, "ERR_NONFATAL",
584 dev_total_nonfatal_errs);
585
Rajat Jain12833012018-06-21 16:48:29 -0700586#define aer_stats_rootport_attr(name, field) \
587 static ssize_t \
588 name##_show(struct device *dev, struct device_attribute *attr, \
589 char *buf) \
590{ \
591 struct pci_dev *pdev = to_pci_dev(dev); \
592 return sprintf(buf, "%llu\n", pdev->aer_stats->field); \
593} \
594static DEVICE_ATTR_RO(name)
595
596aer_stats_rootport_attr(aer_rootport_total_err_cor,
597 rootport_total_cor_errs);
598aer_stats_rootport_attr(aer_rootport_total_err_fatal,
599 rootport_total_fatal_errs);
600aer_stats_rootport_attr(aer_rootport_total_err_nonfatal,
601 rootport_total_nonfatal_errs);
602
Rajat Jain81aa5202018-06-21 16:48:28 -0700603static struct attribute *aer_stats_attrs[] __ro_after_init = {
604 &dev_attr_aer_dev_correctable.attr,
605 &dev_attr_aer_dev_fatal.attr,
606 &dev_attr_aer_dev_nonfatal.attr,
Rajat Jain12833012018-06-21 16:48:29 -0700607 &dev_attr_aer_rootport_total_err_cor.attr,
608 &dev_attr_aer_rootport_total_err_fatal.attr,
609 &dev_attr_aer_rootport_total_err_nonfatal.attr,
Rajat Jain81aa5202018-06-21 16:48:28 -0700610 NULL
611};
612
613static umode_t aer_stats_attrs_are_visible(struct kobject *kobj,
614 struct attribute *a, int n)
615{
616 struct device *dev = kobj_to_dev(kobj);
617 struct pci_dev *pdev = to_pci_dev(dev);
618
619 if (!pdev->aer_stats)
620 return 0;
621
Rajat Jain12833012018-06-21 16:48:29 -0700622 if ((a == &dev_attr_aer_rootport_total_err_cor.attr ||
623 a == &dev_attr_aer_rootport_total_err_fatal.attr ||
624 a == &dev_attr_aer_rootport_total_err_nonfatal.attr) &&
625 pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT)
626 return 0;
627
Rajat Jain81aa5202018-06-21 16:48:28 -0700628 return a->mode;
629}
630
631const struct attribute_group aer_stats_attr_group = {
632 .attrs = aer_stats_attrs,
633 .is_visible = aer_stats_attrs_are_visible,
634};
635
636static void pci_dev_aer_stats_incr(struct pci_dev *pdev,
637 struct aer_err_info *info)
638{
639 int status, i, max = -1;
640 u64 *counter = NULL;
641 struct aer_stats *aer_stats = pdev->aer_stats;
642
643 if (!aer_stats)
644 return;
645
646 switch (info->severity) {
647 case AER_CORRECTABLE:
648 aer_stats->dev_total_cor_errs++;
649 counter = &aer_stats->dev_cor_errs[0];
650 max = AER_MAX_TYPEOF_COR_ERRS;
651 break;
652 case AER_NONFATAL:
653 aer_stats->dev_total_nonfatal_errs++;
654 counter = &aer_stats->dev_nonfatal_errs[0];
655 max = AER_MAX_TYPEOF_UNCOR_ERRS;
656 break;
657 case AER_FATAL:
658 aer_stats->dev_total_fatal_errs++;
659 counter = &aer_stats->dev_fatal_errs[0];
660 max = AER_MAX_TYPEOF_UNCOR_ERRS;
661 break;
662 }
663
664 status = (info->status & ~info->mask);
665 for (i = 0; i < max; i++)
666 if (status & (1 << i))
667 counter[i]++;
668}
669
Rajat Jain12833012018-06-21 16:48:29 -0700670static void pci_rootport_aer_stats_incr(struct pci_dev *pdev,
671 struct aer_err_source *e_src)
672{
673 struct aer_stats *aer_stats = pdev->aer_stats;
674
675 if (!aer_stats)
676 return;
677
678 if (e_src->status & PCI_ERR_ROOT_COR_RCV)
679 aer_stats->rootport_total_cor_errs++;
680
681 if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) {
682 if (e_src->status & PCI_ERR_ROOT_FATAL_RCV)
683 aer_stats->rootport_total_fatal_errs++;
684 else
685 aer_stats->rootport_total_nonfatal_errs++;
686 }
687}
688
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500689static void __print_tlp_header(struct pci_dev *dev,
690 struct aer_header_log_regs *t)
691{
692 pci_err(dev, " TLP Header: %08x %08x %08x %08x\n",
693 t->dw0, t->dw1, t->dw2, t->dw3);
694}
695
696static void __aer_print_error(struct pci_dev *dev,
697 struct aer_err_info *info)
698{
699 int i, status;
700 const char *errmsg = NULL;
701 status = (info->status & ~info->mask);
702
703 for (i = 0; i < 32; i++) {
704 if (!(status & (1 << i)))
705 continue;
706
707 if (info->severity == AER_CORRECTABLE)
708 errmsg = i < ARRAY_SIZE(aer_correctable_error_string) ?
709 aer_correctable_error_string[i] : NULL;
710 else
711 errmsg = i < ARRAY_SIZE(aer_uncorrectable_error_string) ?
712 aer_uncorrectable_error_string[i] : NULL;
713
714 if (errmsg)
715 pci_err(dev, " [%2d] %-22s%s\n", i, errmsg,
716 info->first_error == i ? " (First)" : "");
717 else
718 pci_err(dev, " [%2d] Unknown Error Bit%s\n",
719 i, info->first_error == i ? " (First)" : "");
720 }
Rajat Jain81aa5202018-06-21 16:48:28 -0700721 pci_dev_aer_stats_incr(dev, info);
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500722}
723
Keith Busch1e451162018-07-19 16:16:55 -0500724void aer_print_error(struct pci_dev *dev, struct aer_err_info *info)
Bjorn Helgaas0319c9a2018-06-08 08:39:38 -0500725{
726 int layer, agent;
727 int id = ((dev->bus->number << 8) | dev->devfn);
728
729 if (!info->status) {
730 pci_err(dev, "PCIe Bus Error: severity=%s, type=Inaccessible, (Unregistered Agent ID)\n",
731 aer_error_severity_string[info->severity]);
732 goto out;
733 }
734
735 layer = AER_GET_LAYER_ERROR(info->severity, info->status);
736 agent = AER_GET_AGENT(info->severity, info->status);
737
738 pci_err(dev, "PCIe Bus Error: severity=%s, type=%s, (%s)\n",
739 aer_error_severity_string[info->severity],
740 aer_error_layer[layer], aer_agent_string[agent]);
741
742 pci_err(dev, " device [%04x:%04x] error status/mask=%08x/%08x\n",
743 dev->vendor, dev->device,
744 info->status, info->mask);
745
746 __aer_print_error(dev, info);
747
748 if (info->tlp_header_valid)
749 __print_tlp_header(dev, &info->tlp);
750
751out:
752 if (info->id && info->error_dev_num > 1 && info->id == id)
753 pci_err(dev, " Error of this Agent is reported first\n");
754
755 trace_aer_event(dev_name(&dev->dev), (info->status & ~info->mask),
756 info->severity, info->tlp_header_valid, &info->tlp);
757}
758
759static void aer_print_port_info(struct pci_dev *dev, struct aer_err_info *info)
760{
761 u8 bus = info->id >> 8;
762 u8 devfn = info->id & 0xff;
763
764 pci_info(dev, "AER: %s%s error received: %04x:%02x:%02x.%d\n",
765 info->multi_error_valid ? "Multiple " : "",
766 aer_error_severity_string[info->severity],
767 pci_domain_nr(dev->bus), bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
768}
769
770#ifdef CONFIG_ACPI_APEI_PCIEAER
771int cper_severity_to_aer(int cper_severity)
772{
773 switch (cper_severity) {
774 case CPER_SEV_RECOVERABLE:
775 return AER_NONFATAL;
776 case CPER_SEV_FATAL:
777 return AER_FATAL;
778 default:
779 return AER_CORRECTABLE;
780 }
781}
782EXPORT_SYMBOL_GPL(cper_severity_to_aer);
783
784void cper_print_aer(struct pci_dev *dev, int aer_severity,
785 struct aer_capability_regs *aer)
786{
787 int layer, agent, tlp_header_valid = 0;
788 u32 status, mask;
789 struct aer_err_info info;
790
791 if (aer_severity == AER_CORRECTABLE) {
792 status = aer->cor_status;
793 mask = aer->cor_mask;
794 } else {
795 status = aer->uncor_status;
796 mask = aer->uncor_mask;
797 tlp_header_valid = status & AER_LOG_TLP_MASKS;
798 }
799
800 layer = AER_GET_LAYER_ERROR(aer_severity, status);
801 agent = AER_GET_AGENT(aer_severity, status);
802
803 memset(&info, 0, sizeof(info));
804 info.severity = aer_severity;
805 info.status = status;
806 info.mask = mask;
807 info.first_error = PCI_ERR_CAP_FEP(aer->cap_control);
808
809 pci_err(dev, "aer_status: 0x%08x, aer_mask: 0x%08x\n", status, mask);
810 __aer_print_error(dev, &info);
811 pci_err(dev, "aer_layer=%s, aer_agent=%s\n",
812 aer_error_layer[layer], aer_agent_string[agent]);
813
814 if (aer_severity != AER_CORRECTABLE)
815 pci_err(dev, "aer_uncor_severity: 0x%08x\n",
816 aer->uncor_severity);
817
818 if (tlp_header_valid)
819 __print_tlp_header(dev, &aer->header_log);
820
821 trace_aer_event(dev_name(&dev->dev), (status & ~mask),
822 aer_severity, tlp_header_valid, &aer->header_log);
823}
824#endif
825
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -0500826/**
827 * add_error_device - list device to be handled
828 * @e_info: pointer to error info
829 * @dev: pointer to pci_dev to be added
830 */
831static int add_error_device(struct aer_err_info *e_info, struct pci_dev *dev)
832{
833 if (e_info->error_dev_num < AER_MAX_MULTI_ERR_DEVICES) {
834 e_info->dev[e_info->error_dev_num] = dev;
835 e_info->error_dev_num++;
836 return 0;
837 }
838 return -ENOSPC;
839}
840
841/**
842 * is_error_source - check whether the device is source of reported error
843 * @dev: pointer to pci_dev to be checked
844 * @e_info: pointer to reported error info
845 */
846static bool is_error_source(struct pci_dev *dev, struct aer_err_info *e_info)
847{
848 int pos;
849 u32 status, mask;
850 u16 reg16;
851
852 /*
853 * When bus id is equal to 0, it might be a bad id
854 * reported by root port.
855 */
856 if ((PCI_BUS_NUM(e_info->id) != 0) &&
857 !(dev->bus->bus_flags & PCI_BUS_FLAGS_NO_AERSID)) {
858 /* Device ID match? */
859 if (e_info->id == ((dev->bus->number << 8) | dev->devfn))
860 return true;
861
862 /* Continue id comparing if there is no multiple error */
863 if (!e_info->multi_error_valid)
864 return false;
865 }
866
867 /*
868 * When either
869 * 1) bus id is equal to 0. Some ports might lose the bus
870 * id of error source id;
871 * 2) bus flag PCI_BUS_FLAGS_NO_AERSID is set
872 * 3) There are multiple errors and prior ID comparing fails;
873 * We check AER status registers to find possible reporter.
874 */
875 if (atomic_read(&dev->enable_cnt) == 0)
876 return false;
877
878 /* Check if AER is enabled */
879 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &reg16);
880 if (!(reg16 & PCI_EXP_AER_FLAGS))
881 return false;
882
883 pos = dev->aer_cap;
884 if (!pos)
885 return false;
886
887 /* Check if error is recorded */
888 if (e_info->severity == AER_CORRECTABLE) {
889 pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS, &status);
890 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &mask);
891 } else {
892 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
893 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, &mask);
894 }
895 if (status & ~mask)
896 return true;
897
898 return false;
899}
900
901static int find_device_iter(struct pci_dev *dev, void *data)
902{
903 struct aer_err_info *e_info = (struct aer_err_info *)data;
904
905 if (is_error_source(dev, e_info)) {
906 /* List this device */
907 if (add_error_device(e_info, dev)) {
908 /* We cannot handle more... Stop iteration */
909 /* TODO: Should print error message here? */
910 return 1;
911 }
912
913 /* If there is only a single error, stop iteration */
914 if (!e_info->multi_error_valid)
915 return 1;
916 }
917 return 0;
918}
919
920/**
921 * find_source_device - search through device hierarchy for source device
922 * @parent: pointer to Root Port pci_dev data structure
923 * @e_info: including detailed error information such like id
924 *
925 * Return true if found.
926 *
927 * Invoked by DPC when error is detected at the Root Port.
928 * Caller of this function must set id, severity, and multi_error_valid of
929 * struct aer_err_info pointed by @e_info properly. This function must fill
930 * e_info->error_dev_num and e_info->dev[], based on the given information.
931 */
932static bool find_source_device(struct pci_dev *parent,
933 struct aer_err_info *e_info)
934{
935 struct pci_dev *dev = parent;
936 int result;
937
938 /* Must reset in this function */
939 e_info->error_dev_num = 0;
940
941 /* Is Root Port an agent that sends error message? */
942 result = find_device_iter(dev, e_info);
943 if (result)
944 return true;
945
946 pci_walk_bus(parent->subordinate, find_device_iter, e_info);
947
948 if (!e_info->error_dev_num) {
949 pci_printk(KERN_DEBUG, parent, "can't find device of ID%04x\n",
950 e_info->id);
951 return false;
952 }
953 return true;
954}
955
956/**
957 * handle_error_source - handle logging error into an event log
958 * @dev: pointer to pci_dev data structure of error source device
959 * @info: comprehensive error information
960 *
961 * Invoked when an error being detected by Root Port.
962 */
963static void handle_error_source(struct pci_dev *dev, struct aer_err_info *info)
964{
965 int pos;
966
967 if (info->severity == AER_CORRECTABLE) {
968 /*
969 * Correctable error does not need software intervention.
970 * No need to go through error recovery process.
971 */
972 pos = dev->aer_cap;
973 if (pos)
974 pci_write_config_dword(dev, pos + PCI_ERR_COR_STATUS,
975 info->status);
976 } else if (info->severity == AER_NONFATAL)
977 pcie_do_nonfatal_recovery(dev);
978 else if (info->severity == AER_FATAL)
979 pcie_do_fatal_recovery(dev, PCIE_PORT_SERVICE_AER);
980}
981
982#ifdef CONFIG_ACPI_APEI_PCIEAER
983
984#define AER_RECOVER_RING_ORDER 4
985#define AER_RECOVER_RING_SIZE (1 << AER_RECOVER_RING_ORDER)
986
987struct aer_recover_entry {
988 u8 bus;
989 u8 devfn;
990 u16 domain;
991 int severity;
992 struct aer_capability_regs *regs;
993};
994
995static DEFINE_KFIFO(aer_recover_ring, struct aer_recover_entry,
996 AER_RECOVER_RING_SIZE);
997
998static void aer_recover_work_func(struct work_struct *work)
999{
1000 struct aer_recover_entry entry;
1001 struct pci_dev *pdev;
1002
1003 while (kfifo_get(&aer_recover_ring, &entry)) {
1004 pdev = pci_get_domain_bus_and_slot(entry.domain, entry.bus,
1005 entry.devfn);
1006 if (!pdev) {
1007 pr_err("AER recover: Can not find pci_dev for %04x:%02x:%02x:%x\n",
1008 entry.domain, entry.bus,
1009 PCI_SLOT(entry.devfn), PCI_FUNC(entry.devfn));
1010 continue;
1011 }
1012 cper_print_aer(pdev, entry.severity, entry.regs);
1013 if (entry.severity == AER_NONFATAL)
1014 pcie_do_nonfatal_recovery(pdev);
1015 else if (entry.severity == AER_FATAL)
1016 pcie_do_fatal_recovery(pdev, PCIE_PORT_SERVICE_AER);
1017 pci_dev_put(pdev);
1018 }
1019}
1020
1021/*
1022 * Mutual exclusion for writers of aer_recover_ring, reader side don't
1023 * need lock, because there is only one reader and lock is not needed
1024 * between reader and writer.
1025 */
1026static DEFINE_SPINLOCK(aer_recover_ring_lock);
1027static DECLARE_WORK(aer_recover_work, aer_recover_work_func);
1028
1029void aer_recover_queue(int domain, unsigned int bus, unsigned int devfn,
1030 int severity, struct aer_capability_regs *aer_regs)
1031{
1032 unsigned long flags;
1033 struct aer_recover_entry entry = {
1034 .bus = bus,
1035 .devfn = devfn,
1036 .domain = domain,
1037 .severity = severity,
1038 .regs = aer_regs,
1039 };
1040
1041 spin_lock_irqsave(&aer_recover_ring_lock, flags);
1042 if (kfifo_put(&aer_recover_ring, entry))
1043 schedule_work(&aer_recover_work);
1044 else
1045 pr_err("AER recover: Buffer overflow when recovering AER for %04x:%02x:%02x:%x\n",
1046 domain, bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
1047 spin_unlock_irqrestore(&aer_recover_ring_lock, flags);
1048}
1049EXPORT_SYMBOL_GPL(aer_recover_queue);
1050#endif
1051
1052/**
Keith Busch1e451162018-07-19 16:16:55 -05001053 * aer_get_device_error_info - read error status from dev and store it to info
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -05001054 * @dev: pointer to the device expected to have a error record
1055 * @info: pointer to structure to store the error record
1056 *
1057 * Return 1 on success, 0 on error.
1058 *
1059 * Note that @info is reused among all error devices. Clear fields properly.
1060 */
Keith Busch1e451162018-07-19 16:16:55 -05001061int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info)
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -05001062{
1063 int pos, temp;
1064
1065 /* Must reset in this function */
1066 info->status = 0;
1067 info->tlp_header_valid = 0;
1068
1069 pos = dev->aer_cap;
1070
1071 /* The device might not support AER */
1072 if (!pos)
1073 return 0;
1074
1075 if (info->severity == AER_CORRECTABLE) {
1076 pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS,
1077 &info->status);
1078 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK,
1079 &info->mask);
1080 if (!(info->status & ~info->mask))
1081 return 0;
1082 } else if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
1083 info->severity == AER_NONFATAL) {
1084
1085 /* Link is still healthy for IO reads */
1086 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS,
1087 &info->status);
1088 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK,
1089 &info->mask);
1090 if (!(info->status & ~info->mask))
1091 return 0;
1092
1093 /* Get First Error Pointer */
1094 pci_read_config_dword(dev, pos + PCI_ERR_CAP, &temp);
1095 info->first_error = PCI_ERR_CAP_FEP(temp);
1096
1097 if (info->status & AER_LOG_TLP_MASKS) {
1098 info->tlp_header_valid = 1;
1099 pci_read_config_dword(dev,
1100 pos + PCI_ERR_HEADER_LOG, &info->tlp.dw0);
1101 pci_read_config_dword(dev,
1102 pos + PCI_ERR_HEADER_LOG + 4, &info->tlp.dw1);
1103 pci_read_config_dword(dev,
1104 pos + PCI_ERR_HEADER_LOG + 8, &info->tlp.dw2);
1105 pci_read_config_dword(dev,
1106 pos + PCI_ERR_HEADER_LOG + 12, &info->tlp.dw3);
1107 }
1108 }
1109
1110 return 1;
1111}
1112
1113static inline void aer_process_err_devices(struct aer_err_info *e_info)
1114{
1115 int i;
1116
1117 /* Report all before handle them, not to lost records by reset etc. */
1118 for (i = 0; i < e_info->error_dev_num && e_info->dev[i]; i++) {
Keith Busch1e451162018-07-19 16:16:55 -05001119 if (aer_get_device_error_info(e_info->dev[i], e_info))
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -05001120 aer_print_error(e_info->dev[i], e_info);
1121 }
1122 for (i = 0; i < e_info->error_dev_num && e_info->dev[i]; i++) {
Keith Busch1e451162018-07-19 16:16:55 -05001123 if (aer_get_device_error_info(e_info->dev[i], e_info))
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -05001124 handle_error_source(e_info->dev[i], e_info);
1125 }
1126}
1127
1128/**
1129 * aer_isr_one_error - consume an error detected by root port
1130 * @rpc: pointer to the root port which holds an error
1131 * @e_src: pointer to an error source
1132 */
1133static void aer_isr_one_error(struct aer_rpc *rpc,
1134 struct aer_err_source *e_src)
1135{
1136 struct pci_dev *pdev = rpc->rpd;
1137 struct aer_err_info *e_info = &rpc->e_info;
1138
Rajat Jain12833012018-06-21 16:48:29 -07001139 pci_rootport_aer_stats_incr(pdev, e_src);
1140
Bjorn Helgaasfd3362c2018-06-08 08:33:39 -05001141 /*
1142 * There is a possibility that both correctable error and
1143 * uncorrectable error being logged. Report correctable error first.
1144 */
1145 if (e_src->status & PCI_ERR_ROOT_COR_RCV) {
1146 e_info->id = ERR_COR_ID(e_src->id);
1147 e_info->severity = AER_CORRECTABLE;
1148
1149 if (e_src->status & PCI_ERR_ROOT_MULTI_COR_RCV)
1150 e_info->multi_error_valid = 1;
1151 else
1152 e_info->multi_error_valid = 0;
1153 aer_print_port_info(pdev, e_info);
1154
1155 if (find_source_device(pdev, e_info))
1156 aer_process_err_devices(e_info);
1157 }
1158
1159 if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) {
1160 e_info->id = ERR_UNCOR_ID(e_src->id);
1161
1162 if (e_src->status & PCI_ERR_ROOT_FATAL_RCV)
1163 e_info->severity = AER_FATAL;
1164 else
1165 e_info->severity = AER_NONFATAL;
1166
1167 if (e_src->status & PCI_ERR_ROOT_MULTI_UNCOR_RCV)
1168 e_info->multi_error_valid = 1;
1169 else
1170 e_info->multi_error_valid = 0;
1171
1172 aer_print_port_info(pdev, e_info);
1173
1174 if (find_source_device(pdev, e_info))
1175 aer_process_err_devices(e_info);
1176 }
1177}
1178
1179/**
1180 * get_e_source - retrieve an error source
1181 * @rpc: pointer to the root port which holds an error
1182 * @e_src: pointer to store retrieved error source
1183 *
1184 * Return 1 if an error source is retrieved, otherwise 0.
1185 *
1186 * Invoked by DPC handler to consume an error.
1187 */
1188static int get_e_source(struct aer_rpc *rpc, struct aer_err_source *e_src)
1189{
1190 unsigned long flags;
1191
1192 /* Lock access to Root error producer/consumer index */
1193 spin_lock_irqsave(&rpc->e_lock, flags);
1194 if (rpc->prod_idx == rpc->cons_idx) {
1195 spin_unlock_irqrestore(&rpc->e_lock, flags);
1196 return 0;
1197 }
1198
1199 *e_src = rpc->e_sources[rpc->cons_idx];
1200 rpc->cons_idx++;
1201 if (rpc->cons_idx == AER_ERROR_SOURCES_MAX)
1202 rpc->cons_idx = 0;
1203 spin_unlock_irqrestore(&rpc->e_lock, flags);
1204
1205 return 1;
1206}
1207
1208/**
1209 * aer_isr - consume errors detected by root port
1210 * @work: definition of this work item
1211 *
1212 * Invoked, as DPC, when root port records new detected error
1213 */
1214static void aer_isr(struct work_struct *work)
1215{
1216 struct aer_rpc *rpc = container_of(work, struct aer_rpc, dpc_handler);
1217 struct aer_err_source uninitialized_var(e_src);
1218
1219 mutex_lock(&rpc->rpc_mutex);
1220 while (get_e_source(rpc, &e_src))
1221 aer_isr_one_error(rpc, &e_src);
1222 mutex_unlock(&rpc->rpc_mutex);
1223}
1224
Bjorn Helgaas3c43a642018-06-08 08:31:57 -05001225/**
1226 * aer_irq - Root Port's ISR
1227 * @irq: IRQ assigned to Root Port
1228 * @context: pointer to Root Port data structure
1229 *
1230 * Invoked when Root Port detects AER messages.
1231 */
1232irqreturn_t aer_irq(int irq, void *context)
1233{
1234 unsigned int status, id;
1235 struct pcie_device *pdev = (struct pcie_device *)context;
1236 struct aer_rpc *rpc = get_service_data(pdev);
1237 int next_prod_idx;
1238 unsigned long flags;
1239 int pos;
1240
1241 pos = pdev->port->aer_cap;
1242 /*
1243 * Must lock access to Root Error Status Reg, Root Error ID Reg,
1244 * and Root error producer/consumer index
1245 */
1246 spin_lock_irqsave(&rpc->e_lock, flags);
1247
1248 /* Read error status */
1249 pci_read_config_dword(pdev->port, pos + PCI_ERR_ROOT_STATUS, &status);
1250 if (!(status & (PCI_ERR_ROOT_UNCOR_RCV|PCI_ERR_ROOT_COR_RCV))) {
1251 spin_unlock_irqrestore(&rpc->e_lock, flags);
1252 return IRQ_NONE;
1253 }
1254
1255 /* Read error source and clear error status */
1256 pci_read_config_dword(pdev->port, pos + PCI_ERR_ROOT_ERR_SRC, &id);
1257 pci_write_config_dword(pdev->port, pos + PCI_ERR_ROOT_STATUS, status);
1258
1259 /* Store error source for later DPC handler */
1260 next_prod_idx = rpc->prod_idx + 1;
1261 if (next_prod_idx == AER_ERROR_SOURCES_MAX)
1262 next_prod_idx = 0;
1263 if (next_prod_idx == rpc->cons_idx) {
1264 /*
1265 * Error Storm Condition - possibly the same error occurred.
1266 * Drop the error.
1267 */
1268 spin_unlock_irqrestore(&rpc->e_lock, flags);
1269 return IRQ_HANDLED;
1270 }
1271 rpc->e_sources[rpc->prod_idx].status = status;
1272 rpc->e_sources[rpc->prod_idx].id = id;
1273 rpc->prod_idx = next_prod_idx;
1274 spin_unlock_irqrestore(&rpc->e_lock, flags);
1275
1276 /* Invoke DPC handler */
1277 schedule_work(&rpc->dpc_handler);
1278
1279 return IRQ_HANDLED;
1280}
1281EXPORT_SYMBOL_GPL(aer_irq);
1282
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001283static int set_device_error_reporting(struct pci_dev *dev, void *data)
1284{
1285 bool enable = *((bool *)data);
Yijing Wang62f87c02012-07-24 17:20:03 +08001286 int type = pci_pcie_type(dev);
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001287
Yijing Wang62f87c02012-07-24 17:20:03 +08001288 if ((type == PCI_EXP_TYPE_ROOT_PORT) ||
1289 (type == PCI_EXP_TYPE_UPSTREAM) ||
1290 (type == PCI_EXP_TYPE_DOWNSTREAM)) {
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001291 if (enable)
1292 pci_enable_pcie_error_reporting(dev);
1293 else
1294 pci_disable_pcie_error_reporting(dev);
1295 }
1296
1297 if (enable)
1298 pcie_set_ecrc_checking(dev);
1299
1300 return 0;
1301}
1302
1303/**
1304 * set_downstream_devices_error_reporting - enable/disable the error reporting bits on the root port and its downstream ports.
1305 * @dev: pointer to root port's pci_dev data structure
1306 * @enable: true = enable error reporting, false = disable error reporting.
1307 */
1308static void set_downstream_devices_error_reporting(struct pci_dev *dev,
1309 bool enable)
1310{
1311 set_device_error_reporting(dev, &enable);
1312
1313 if (!dev->subordinate)
1314 return;
1315 pci_walk_bus(dev->subordinate, set_device_error_reporting, &enable);
1316}
1317
1318/**
1319 * aer_enable_rootport - enable Root Port's interrupts when receiving messages
1320 * @rpc: pointer to a Root Port data structure
1321 *
1322 * Invoked when PCIe bus loads AER service driver.
1323 */
1324static void aer_enable_rootport(struct aer_rpc *rpc)
1325{
Keith Busche13d17f2018-04-09 16:04:42 -06001326 struct pci_dev *pdev = rpc->rpd;
Jiang Liu43bd4ee2012-07-24 17:20:11 +08001327 int aer_pos;
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001328 u16 reg16;
1329 u32 reg32;
1330
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001331 /* Clear PCIe Capability's Device Status */
Jiang Liu43bd4ee2012-07-24 17:20:11 +08001332 pcie_capability_read_word(pdev, PCI_EXP_DEVSTA, &reg16);
1333 pcie_capability_write_word(pdev, PCI_EXP_DEVSTA, reg16);
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001334
1335 /* Disable system error generation in response to error messages */
Jiang Liu43bd4ee2012-07-24 17:20:11 +08001336 pcie_capability_clear_word(pdev, PCI_EXP_RTCTL,
1337 SYSTEM_ERROR_INTR_ON_MESG_MASK);
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001338
Keith Busch66b80802016-09-27 16:23:34 -04001339 aer_pos = pdev->aer_cap;
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001340 /* Clear error status */
1341 pci_read_config_dword(pdev, aer_pos + PCI_ERR_ROOT_STATUS, &reg32);
1342 pci_write_config_dword(pdev, aer_pos + PCI_ERR_ROOT_STATUS, reg32);
1343 pci_read_config_dword(pdev, aer_pos + PCI_ERR_COR_STATUS, &reg32);
1344 pci_write_config_dword(pdev, aer_pos + PCI_ERR_COR_STATUS, reg32);
1345 pci_read_config_dword(pdev, aer_pos + PCI_ERR_UNCOR_STATUS, &reg32);
1346 pci_write_config_dword(pdev, aer_pos + PCI_ERR_UNCOR_STATUS, reg32);
1347
1348 /*
1349 * Enable error reporting for the root port device and downstream port
1350 * devices.
1351 */
1352 set_downstream_devices_error_reporting(pdev, true);
1353
1354 /* Enable Root Port's interrupt in response to error messages */
1355 pci_read_config_dword(pdev, aer_pos + PCI_ERR_ROOT_COMMAND, &reg32);
1356 reg32 |= ROOT_PORT_INTR_ON_MESG_MASK;
1357 pci_write_config_dword(pdev, aer_pos + PCI_ERR_ROOT_COMMAND, reg32);
1358}
1359
1360/**
1361 * aer_disable_rootport - disable Root Port's interrupts when receiving messages
1362 * @rpc: pointer to a Root Port data structure
1363 *
1364 * Invoked when PCIe bus unloads AER service driver.
1365 */
1366static void aer_disable_rootport(struct aer_rpc *rpc)
1367{
Keith Busche13d17f2018-04-09 16:04:42 -06001368 struct pci_dev *pdev = rpc->rpd;
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001369 u32 reg32;
1370 int pos;
1371
1372 /*
1373 * Disable error reporting for the root port device and downstream port
1374 * devices.
1375 */
1376 set_downstream_devices_error_reporting(pdev, false);
1377
Keith Busch66b80802016-09-27 16:23:34 -04001378 pos = pdev->aer_cap;
Hidetoshi Seto843f4692010-04-15 13:10:53 +09001379 /* Disable Root's interrupt in response to error messages */
1380 pci_read_config_dword(pdev, pos + PCI_ERR_ROOT_COMMAND, &reg32);
1381 reg32 &= ~ROOT_PORT_INTR_ON_MESG_MASK;
1382 pci_write_config_dword(pdev, pos + PCI_ERR_ROOT_COMMAND, reg32);
1383
1384 /* Clear Root's error status reg */
1385 pci_read_config_dword(pdev, pos + PCI_ERR_ROOT_STATUS, &reg32);
1386 pci_write_config_dword(pdev, pos + PCI_ERR_ROOT_STATUS, reg32);
1387}
1388
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001389/**
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001390 * aer_alloc_rpc - allocate Root Port data structure
1391 * @dev: pointer to the pcie_dev data structure
1392 *
1393 * Invoked when Root Port's AER service is loaded.
Hidetoshi Setof6d37802010-04-15 13:22:11 +09001394 */
Hidetoshi Setoc9a91882009-09-07 17:07:29 +09001395static struct aer_rpc *aer_alloc_rpc(struct pcie_device *dev)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001396{
1397 struct aer_rpc *rpc;
1398
Hidetoshi Setoc9a91882009-09-07 17:07:29 +09001399 rpc = kzalloc(sizeof(struct aer_rpc), GFP_KERNEL);
1400 if (!rpc)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001401 return NULL;
1402
Hidetoshi Setof6d37802010-04-15 13:22:11 +09001403 /* Initialize Root lock access, e_lock, to Root Error Status Reg */
Milind Arun Choudharyf5609d72007-07-09 11:55:54 -07001404 spin_lock_init(&rpc->e_lock);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001405
Keith Busche13d17f2018-04-09 16:04:42 -06001406 rpc->rpd = dev->port;
David Howells65f27f32006-11-22 14:55:48 +00001407 INIT_WORK(&rpc->dpc_handler, aer_isr);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001408 mutex_init(&rpc->rpc_mutex);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001409
Stefan Assmann45e829e2009-12-03 06:49:24 -05001410 /* Use PCIe bus function to store rpc into PCIe device */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001411 set_service_data(dev, rpc);
1412
1413 return rpc;
1414}
1415
1416/**
1417 * aer_remove - clean up resources
1418 * @dev: pointer to the pcie_dev data structure
1419 *
1420 * Invoked when PCI Express bus unloads or AER probe fails.
Hidetoshi Setof6d37802010-04-15 13:22:11 +09001421 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001422static void aer_remove(struct pcie_device *dev)
1423{
1424 struct aer_rpc *rpc = get_service_data(dev);
1425
1426 if (rpc) {
1427 /* If register interrupt service, it must be free. */
1428 if (rpc->isr)
1429 free_irq(dev->irq, dev);
1430
Sebastian Andrzej Siewior4ae21822016-01-25 10:08:00 -06001431 flush_work(&rpc->dpc_handler);
Hidetoshi Seto460d2982010-04-15 13:10:03 +09001432 aer_disable_rootport(rpc);
1433 kfree(rpc);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001434 set_service_data(dev, NULL);
1435 }
1436}
1437
1438/**
1439 * aer_probe - initialize resources
1440 * @dev: pointer to the pcie_dev data structure
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001441 *
1442 * Invoked when PCI Express bus loads AER service driver.
Hidetoshi Setof6d37802010-04-15 13:22:11 +09001443 */
Bill Pemberton15856ad2012-11-21 15:35:00 -05001444static int aer_probe(struct pcie_device *dev)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001445{
1446 int status;
1447 struct aer_rpc *rpc;
Bjorn Helgaas576700b2016-11-21 15:24:25 -06001448 struct device *device = &dev->port->dev;
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001449
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001450 /* Alloc rpc data structure */
Hidetoshi Setoc9a91882009-09-07 17:07:29 +09001451 rpc = aer_alloc_rpc(dev);
1452 if (!rpc) {
Bjorn Helgaas576700b2016-11-21 15:24:25 -06001453 dev_printk(KERN_DEBUG, device, "alloc AER rpc failed\n");
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001454 aer_remove(dev);
1455 return -ENOMEM;
1456 }
1457
1458 /* Request IRQ ISR */
Hidetoshi Setoc9a91882009-09-07 17:07:29 +09001459 status = request_irq(dev->irq, aer_irq, IRQF_SHARED, "aerdrv", dev);
1460 if (status) {
Bjorn Helgaas576700b2016-11-21 15:24:25 -06001461 dev_printk(KERN_DEBUG, device, "request AER IRQ %d failed\n",
1462 dev->irq);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001463 aer_remove(dev);
1464 return status;
1465 }
1466
1467 rpc->isr = 1;
1468
1469 aer_enable_rootport(rpc);
Bjorn Helgaas68a55ae2016-11-21 15:34:02 -06001470 dev_info(device, "AER enabled with IRQ %d\n", dev->irq);
1471 return 0;
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001472}
1473
1474/**
1475 * aer_root_reset - reset link on Root Port
1476 * @dev: pointer to Root Port's pci_dev data structure
1477 *
1478 * Invoked by Port Bus driver when performing link reset at Root Port.
Hidetoshi Setof6d37802010-04-15 13:22:11 +09001479 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001480static pci_ers_result_t aer_root_reset(struct pci_dev *dev)
1481{
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +09001482 u32 reg32;
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001483 int pos;
1484
Keith Busch66b80802016-09-27 16:23:34 -04001485 pos = dev->aer_cap;
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001486
1487 /* Disable Root's interrupt in response to error messages */
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +09001488 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, &reg32);
1489 reg32 &= ~ROOT_PORT_INTR_ON_MESG_MASK;
1490 pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, reg32);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001491
Alex Williamson1b95ce82013-08-08 14:10:20 -06001492 pci_reset_bridge_secondary_bus(dev);
Frederick Lawler7506dc72018-01-18 12:55:24 -06001493 pci_printk(KERN_DEBUG, dev, "Root Port link has been reset\n");
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001494
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +09001495 /* Clear Root Error Status */
1496 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &reg32);
1497 pci_write_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, reg32);
1498
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001499 /* Enable Root Port's interrupt in response to error messages */
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +09001500 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, &reg32);
1501 reg32 |= ROOT_PORT_INTR_ON_MESG_MASK;
1502 pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, reg32);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001503
1504 return PCI_ERS_RESULT_RECOVERED;
1505}
1506
1507/**
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001508 * aer_error_resume - clean up corresponding error status bits
1509 * @dev: pointer to Root Port's pci_dev data structure
1510 *
1511 * Invoked by Port Bus driver during nonfatal recovery.
Hidetoshi Setof6d37802010-04-15 13:22:11 +09001512 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001513static void aer_error_resume(struct pci_dev *dev)
1514{
1515 int pos;
1516 u32 status, mask;
1517 u16 reg16;
1518
1519 /* Clean up Root device status */
Jiang Liu43bd4ee2012-07-24 17:20:11 +08001520 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &reg16);
1521 pcie_capability_write_word(dev, PCI_EXP_DEVSTA, reg16);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001522
1523 /* Clean AER Root Error Status */
Keith Busch66b80802016-09-27 16:23:34 -04001524 pos = dev->aer_cap;
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001525 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
1526 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
Oza Pawandeep7e9084b2018-05-17 16:44:13 -05001527 status &= ~mask; /* Clear corresponding nonfatal bits */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001528 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
1529}
1530
Bjorn Helgaas0054ca82018-06-08 08:31:42 -05001531static struct pcie_port_service_driver aerdriver = {
1532 .name = "aer",
1533 .port_type = PCI_EXP_TYPE_ROOT_PORT,
1534 .service = PCIE_PORT_SERVICE_AER,
1535
1536 .probe = aer_probe,
1537 .remove = aer_remove,
1538 .error_resume = aer_error_resume,
1539 .reset_link = aer_root_reset,
1540};
1541
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001542/**
1543 * aer_service_init - register AER root service driver
1544 *
1545 * Invoked when AER root service driver is loaded.
Hidetoshi Setof6d37802010-04-15 13:22:11 +09001546 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001547static int __init aer_service_init(void)
1548{
Rafael J. Wysockib22c3d82010-09-20 18:50:00 +02001549 if (!pci_aer_available() || aer_acpi_firmware_first())
Andi Kleen3e77a3f2009-09-16 22:40:22 +02001550 return -ENXIO;
Sam Ravnborgc1996c22007-02-27 10:22:00 +01001551 return pcie_port_service_register(&aerdriver);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001552}
Paul Gortmaker87563362016-08-24 16:57:46 -04001553device_initcall(aer_service_init);