x86/efi: Enforce CONFIG_RELOCATABLE for EFI boot stub
[linux/fpc-iii.git] / arch / powerpc / platforms / powernv / eeh-ioda.c
blobb91083370bc6dfa1fd66a6bae58ee0aa14cf265b
1 /*
2 * The file intends to implement the functions needed by EEH, which is
3 * built on IODA compliant chip. Actually, lots of functions related
4 * to EEH would be built based on the OPAL APIs.
6 * Copyright Benjamin Herrenschmidt & Gavin Shan, IBM Corporation 2013.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/bootmem.h>
15 #include <linux/debugfs.h>
16 #include <linux/delay.h>
17 #include <linux/init.h>
18 #include <linux/io.h>
19 #include <linux/irq.h>
20 #include <linux/kernel.h>
21 #include <linux/msi.h>
22 #include <linux/notifier.h>
23 #include <linux/pci.h>
24 #include <linux/string.h>
26 #include <asm/eeh.h>
27 #include <asm/eeh_event.h>
28 #include <asm/io.h>
29 #include <asm/iommu.h>
30 #include <asm/msi_bitmap.h>
31 #include <asm/opal.h>
32 #include <asm/pci-bridge.h>
33 #include <asm/ppc-pci.h>
34 #include <asm/tce.h>
36 #include "powernv.h"
37 #include "pci.h"
39 static char *hub_diag = NULL;
40 static int ioda_eeh_nb_init = 0;
42 static int ioda_eeh_event(struct notifier_block *nb,
43 unsigned long events, void *change)
45 uint64_t changed_evts = (uint64_t)change;
47 /* We simply send special EEH event */
48 if ((changed_evts & OPAL_EVENT_PCI_ERROR) &&
49 (events & OPAL_EVENT_PCI_ERROR))
50 eeh_send_failure_event(NULL);
52 return 0;
55 static struct notifier_block ioda_eeh_nb = {
56 .notifier_call = ioda_eeh_event,
57 .next = NULL,
58 .priority = 0
61 #ifdef CONFIG_DEBUG_FS
62 static int ioda_eeh_dbgfs_set(void *data, u64 val)
64 struct pci_controller *hose = data;
65 struct pnv_phb *phb = hose->private_data;
67 out_be64(phb->regs + 0xD10, val);
68 return 0;
71 static int ioda_eeh_dbgfs_get(void *data, u64 *val)
73 struct pci_controller *hose = data;
74 struct pnv_phb *phb = hose->private_data;
76 *val = in_be64(phb->regs + 0xD10);
77 return 0;
80 DEFINE_SIMPLE_ATTRIBUTE(ioda_eeh_dbgfs_ops, ioda_eeh_dbgfs_get,
81 ioda_eeh_dbgfs_set, "0x%llx\n");
82 #endif /* CONFIG_DEBUG_FS */
84 /**
85 * ioda_eeh_post_init - Chip dependent post initialization
86 * @hose: PCI controller
88 * The function will be called after eeh PEs and devices
89 * have been built. That means the EEH is ready to supply
90 * service with I/O cache.
92 static int ioda_eeh_post_init(struct pci_controller *hose)
94 struct pnv_phb *phb = hose->private_data;
95 int ret;
97 /* Register OPAL event notifier */
98 if (!ioda_eeh_nb_init) {
99 ret = opal_notifier_register(&ioda_eeh_nb);
100 if (ret) {
101 pr_err("%s: Can't register OPAL event notifier (%d)\n",
102 __func__, ret);
103 return ret;
106 ioda_eeh_nb_init = 1;
109 /* FIXME: Enable it for PHB3 later */
110 if (phb->type == PNV_PHB_IODA1) {
111 if (!hub_diag) {
112 hub_diag = (char *)__get_free_page(GFP_KERNEL |
113 __GFP_ZERO);
114 if (!hub_diag) {
115 pr_err("%s: Out of memory !\n",
116 __func__);
117 return -ENOMEM;
121 #ifdef CONFIG_DEBUG_FS
122 if (phb->dbgfs)
123 debugfs_create_file("err_injct", 0600,
124 phb->dbgfs, hose,
125 &ioda_eeh_dbgfs_ops);
126 #endif
128 phb->eeh_state |= PNV_EEH_STATE_ENABLED;
131 return 0;
135 * ioda_eeh_set_option - Set EEH operation or I/O setting
136 * @pe: EEH PE
137 * @option: options
139 * Enable or disable EEH option for the indicated PE. The
140 * function also can be used to enable I/O or DMA for the
141 * PE.
143 static int ioda_eeh_set_option(struct eeh_pe *pe, int option)
145 s64 ret;
146 u32 pe_no;
147 struct pci_controller *hose = pe->phb;
148 struct pnv_phb *phb = hose->private_data;
150 /* Check on PE number */
151 if (pe->addr < 0 || pe->addr >= phb->ioda.total_pe) {
152 pr_err("%s: PE address %x out of range [0, %x] "
153 "on PHB#%x\n",
154 __func__, pe->addr, phb->ioda.total_pe,
155 hose->global_number);
156 return -EINVAL;
159 pe_no = pe->addr;
160 switch (option) {
161 case EEH_OPT_DISABLE:
162 ret = -EEXIST;
163 break;
164 case EEH_OPT_ENABLE:
165 ret = 0;
166 break;
167 case EEH_OPT_THAW_MMIO:
168 ret = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no,
169 OPAL_EEH_ACTION_CLEAR_FREEZE_MMIO);
170 if (ret) {
171 pr_warning("%s: Failed to enable MMIO for "
172 "PHB#%x-PE#%x, err=%lld\n",
173 __func__, hose->global_number, pe_no, ret);
174 return -EIO;
177 break;
178 case EEH_OPT_THAW_DMA:
179 ret = opal_pci_eeh_freeze_clear(phb->opal_id, pe_no,
180 OPAL_EEH_ACTION_CLEAR_FREEZE_DMA);
181 if (ret) {
182 pr_warning("%s: Failed to enable DMA for "
183 "PHB#%x-PE#%x, err=%lld\n",
184 __func__, hose->global_number, pe_no, ret);
185 return -EIO;
188 break;
189 default:
190 pr_warning("%s: Invalid option %d\n", __func__, option);
191 return -EINVAL;
194 return ret;
198 * ioda_eeh_get_state - Retrieve the state of PE
199 * @pe: EEH PE
201 * The PE's state should be retrieved from the PEEV, PEST
202 * IODA tables. Since the OPAL has exported the function
203 * to do it, it'd better to use that.
205 static int ioda_eeh_get_state(struct eeh_pe *pe)
207 s64 ret = 0;
208 u8 fstate;
209 u16 pcierr;
210 u32 pe_no;
211 int result;
212 struct pci_controller *hose = pe->phb;
213 struct pnv_phb *phb = hose->private_data;
216 * Sanity check on PE address. The PHB PE address should
217 * be zero.
219 if (pe->addr < 0 || pe->addr >= phb->ioda.total_pe) {
220 pr_err("%s: PE address %x out of range [0, %x] "
221 "on PHB#%x\n",
222 __func__, pe->addr, phb->ioda.total_pe,
223 hose->global_number);
224 return EEH_STATE_NOT_SUPPORT;
227 /* Retrieve PE status through OPAL */
228 pe_no = pe->addr;
229 ret = opal_pci_eeh_freeze_status(phb->opal_id, pe_no,
230 &fstate, &pcierr, NULL);
231 if (ret) {
232 pr_err("%s: Failed to get EEH status on "
233 "PHB#%x-PE#%x\n, err=%lld\n",
234 __func__, hose->global_number, pe_no, ret);
235 return EEH_STATE_NOT_SUPPORT;
238 /* Check PHB status */
239 if (pe->type & EEH_PE_PHB) {
240 result = 0;
241 result &= ~EEH_STATE_RESET_ACTIVE;
243 if (pcierr != OPAL_EEH_PHB_ERROR) {
244 result |= EEH_STATE_MMIO_ACTIVE;
245 result |= EEH_STATE_DMA_ACTIVE;
246 result |= EEH_STATE_MMIO_ENABLED;
247 result |= EEH_STATE_DMA_ENABLED;
250 return result;
253 /* Parse result out */
254 result = 0;
255 switch (fstate) {
256 case OPAL_EEH_STOPPED_NOT_FROZEN:
257 result &= ~EEH_STATE_RESET_ACTIVE;
258 result |= EEH_STATE_MMIO_ACTIVE;
259 result |= EEH_STATE_DMA_ACTIVE;
260 result |= EEH_STATE_MMIO_ENABLED;
261 result |= EEH_STATE_DMA_ENABLED;
262 break;
263 case OPAL_EEH_STOPPED_MMIO_FREEZE:
264 result &= ~EEH_STATE_RESET_ACTIVE;
265 result |= EEH_STATE_DMA_ACTIVE;
266 result |= EEH_STATE_DMA_ENABLED;
267 break;
268 case OPAL_EEH_STOPPED_DMA_FREEZE:
269 result &= ~EEH_STATE_RESET_ACTIVE;
270 result |= EEH_STATE_MMIO_ACTIVE;
271 result |= EEH_STATE_MMIO_ENABLED;
272 break;
273 case OPAL_EEH_STOPPED_MMIO_DMA_FREEZE:
274 result &= ~EEH_STATE_RESET_ACTIVE;
275 break;
276 case OPAL_EEH_STOPPED_RESET:
277 result |= EEH_STATE_RESET_ACTIVE;
278 break;
279 case OPAL_EEH_STOPPED_TEMP_UNAVAIL:
280 result |= EEH_STATE_UNAVAILABLE;
281 break;
282 case OPAL_EEH_STOPPED_PERM_UNAVAIL:
283 result |= EEH_STATE_NOT_SUPPORT;
284 break;
285 default:
286 pr_warning("%s: Unexpected EEH status 0x%x "
287 "on PHB#%x-PE#%x\n",
288 __func__, fstate, hose->global_number, pe_no);
291 return result;
294 static int ioda_eeh_pe_clear(struct eeh_pe *pe)
296 struct pci_controller *hose;
297 struct pnv_phb *phb;
298 u32 pe_no;
299 u8 fstate;
300 u16 pcierr;
301 s64 ret;
303 pe_no = pe->addr;
304 hose = pe->phb;
305 phb = pe->phb->private_data;
307 /* Clear the EEH error on the PE */
308 ret = opal_pci_eeh_freeze_clear(phb->opal_id,
309 pe_no, OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
310 if (ret) {
311 pr_err("%s: Failed to clear EEH error for "
312 "PHB#%x-PE#%x, err=%lld\n",
313 __func__, hose->global_number, pe_no, ret);
314 return -EIO;
318 * Read the PE state back and verify that the frozen
319 * state has been removed.
321 ret = opal_pci_eeh_freeze_status(phb->opal_id, pe_no,
322 &fstate, &pcierr, NULL);
323 if (ret) {
324 pr_err("%s: Failed to get EEH status on "
325 "PHB#%x-PE#%x\n, err=%lld\n",
326 __func__, hose->global_number, pe_no, ret);
327 return -EIO;
330 if (fstate != OPAL_EEH_STOPPED_NOT_FROZEN) {
331 pr_err("%s: Frozen state not cleared on "
332 "PHB#%x-PE#%x, sts=%x\n",
333 __func__, hose->global_number, pe_no, fstate);
334 return -EIO;
337 return 0;
340 static s64 ioda_eeh_phb_poll(struct pnv_phb *phb)
342 s64 rc = OPAL_HARDWARE;
344 while (1) {
345 rc = opal_pci_poll(phb->opal_id);
346 if (rc <= 0)
347 break;
349 msleep(rc);
352 return rc;
355 static int ioda_eeh_phb_reset(struct pci_controller *hose, int option)
357 struct pnv_phb *phb = hose->private_data;
358 s64 rc = OPAL_HARDWARE;
360 pr_debug("%s: Reset PHB#%x, option=%d\n",
361 __func__, hose->global_number, option);
363 /* Issue PHB complete reset request */
364 if (option == EEH_RESET_FUNDAMENTAL ||
365 option == EEH_RESET_HOT)
366 rc = opal_pci_reset(phb->opal_id,
367 OPAL_PHB_COMPLETE,
368 OPAL_ASSERT_RESET);
369 else if (option == EEH_RESET_DEACTIVATE)
370 rc = opal_pci_reset(phb->opal_id,
371 OPAL_PHB_COMPLETE,
372 OPAL_DEASSERT_RESET);
373 if (rc < 0)
374 goto out;
377 * Poll state of the PHB until the request is done
378 * successfully.
380 rc = ioda_eeh_phb_poll(phb);
381 out:
382 if (rc != OPAL_SUCCESS)
383 return -EIO;
385 return 0;
388 static int ioda_eeh_root_reset(struct pci_controller *hose, int option)
390 struct pnv_phb *phb = hose->private_data;
391 s64 rc = OPAL_SUCCESS;
393 pr_debug("%s: Reset PHB#%x, option=%d\n",
394 __func__, hose->global_number, option);
397 * During the reset deassert time, we needn't care
398 * the reset scope because the firmware does nothing
399 * for fundamental or hot reset during deassert phase.
401 if (option == EEH_RESET_FUNDAMENTAL)
402 rc = opal_pci_reset(phb->opal_id,
403 OPAL_PCI_FUNDAMENTAL_RESET,
404 OPAL_ASSERT_RESET);
405 else if (option == EEH_RESET_HOT)
406 rc = opal_pci_reset(phb->opal_id,
407 OPAL_PCI_HOT_RESET,
408 OPAL_ASSERT_RESET);
409 else if (option == EEH_RESET_DEACTIVATE)
410 rc = opal_pci_reset(phb->opal_id,
411 OPAL_PCI_HOT_RESET,
412 OPAL_DEASSERT_RESET);
413 if (rc < 0)
414 goto out;
416 /* Poll state of the PHB until the request is done */
417 rc = ioda_eeh_phb_poll(phb);
418 out:
419 if (rc != OPAL_SUCCESS)
420 return -EIO;
422 return 0;
425 static int ioda_eeh_bridge_reset(struct pci_controller *hose,
426 struct pci_dev *dev, int option)
428 u16 ctrl;
430 pr_debug("%s: Reset device %04x:%02x:%02x.%01x with option %d\n",
431 __func__, hose->global_number, dev->bus->number,
432 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn), option);
434 switch (option) {
435 case EEH_RESET_FUNDAMENTAL:
436 case EEH_RESET_HOT:
437 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
438 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
439 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
440 break;
441 case EEH_RESET_DEACTIVATE:
442 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
443 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
444 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
445 break;
448 return 0;
452 * ioda_eeh_reset - Reset the indicated PE
453 * @pe: EEH PE
454 * @option: reset option
456 * Do reset on the indicated PE. For PCI bus sensitive PE,
457 * we need to reset the parent p2p bridge. The PHB has to
458 * be reinitialized if the p2p bridge is root bridge. For
459 * PCI device sensitive PE, we will try to reset the device
460 * through FLR. For now, we don't have OPAL APIs to do HARD
461 * reset yet, so all reset would be SOFT (HOT) reset.
463 static int ioda_eeh_reset(struct eeh_pe *pe, int option)
465 struct pci_controller *hose = pe->phb;
466 struct pci_bus *bus;
467 int ret;
470 * Anyway, we have to clear the problematic state for the
471 * corresponding PE. However, we needn't do it if the PE
472 * is PHB associated. That means the PHB is having fatal
473 * errors and it needs reset. Further more, the AIB interface
474 * isn't reliable any more.
476 if (!(pe->type & EEH_PE_PHB) &&
477 (option == EEH_RESET_HOT ||
478 option == EEH_RESET_FUNDAMENTAL)) {
479 ret = ioda_eeh_pe_clear(pe);
480 if (ret)
481 return -EIO;
485 * The rules applied to reset, either fundamental or hot reset:
487 * We always reset the direct upstream bridge of the PE. If the
488 * direct upstream bridge isn't root bridge, we always take hot
489 * reset no matter what option (fundamental or hot) is. Otherwise,
490 * we should do the reset according to the required option.
492 if (pe->type & EEH_PE_PHB) {
493 ret = ioda_eeh_phb_reset(hose, option);
494 } else {
495 bus = eeh_pe_bus_get(pe);
496 if (pci_is_root_bus(bus) ||
497 pci_is_root_bus(bus->parent))
498 ret = ioda_eeh_root_reset(hose, option);
499 else
500 ret = ioda_eeh_bridge_reset(hose, bus->self, option);
503 return ret;
507 * ioda_eeh_get_log - Retrieve error log
508 * @pe: EEH PE
509 * @severity: Severity level of the log
510 * @drv_log: buffer to store the log
511 * @len: space of the log buffer
513 * The function is used to retrieve error log from P7IOC.
515 static int ioda_eeh_get_log(struct eeh_pe *pe, int severity,
516 char *drv_log, unsigned long len)
518 s64 ret;
519 unsigned long flags;
520 struct pci_controller *hose = pe->phb;
521 struct pnv_phb *phb = hose->private_data;
523 spin_lock_irqsave(&phb->lock, flags);
525 ret = opal_pci_get_phb_diag_data2(phb->opal_id,
526 phb->diag.blob, PNV_PCI_DIAG_BUF_SIZE);
527 if (ret) {
528 spin_unlock_irqrestore(&phb->lock, flags);
529 pr_warning("%s: Failed to get log for PHB#%x-PE#%x\n",
530 __func__, hose->global_number, pe->addr);
531 return -EIO;
535 * FIXME: We probably need log the error in somewhere.
536 * Lets make it up in future.
538 /* pr_info("%s", phb->diag.blob); */
540 spin_unlock_irqrestore(&phb->lock, flags);
542 return 0;
546 * ioda_eeh_configure_bridge - Configure the PCI bridges for the indicated PE
547 * @pe: EEH PE
549 * For particular PE, it might have included PCI bridges. In order
550 * to make the PE work properly, those PCI bridges should be configured
551 * correctly. However, we need do nothing on P7IOC since the reset
552 * function will do everything that should be covered by the function.
554 static int ioda_eeh_configure_bridge(struct eeh_pe *pe)
556 return 0;
559 static void ioda_eeh_hub_diag_common(struct OpalIoP7IOCErrorData *data)
561 /* GEM */
562 pr_info(" GEM XFIR: %016llx\n", data->gemXfir);
563 pr_info(" GEM RFIR: %016llx\n", data->gemRfir);
564 pr_info(" GEM RIRQFIR: %016llx\n", data->gemRirqfir);
565 pr_info(" GEM Mask: %016llx\n", data->gemMask);
566 pr_info(" GEM RWOF: %016llx\n", data->gemRwof);
568 /* LEM */
569 pr_info(" LEM FIR: %016llx\n", data->lemFir);
570 pr_info(" LEM Error Mask: %016llx\n", data->lemErrMask);
571 pr_info(" LEM Action 0: %016llx\n", data->lemAction0);
572 pr_info(" LEM Action 1: %016llx\n", data->lemAction1);
573 pr_info(" LEM WOF: %016llx\n", data->lemWof);
576 static void ioda_eeh_hub_diag(struct pci_controller *hose)
578 struct pnv_phb *phb = hose->private_data;
579 struct OpalIoP7IOCErrorData *data;
580 long rc;
582 data = (struct OpalIoP7IOCErrorData *)ioda_eeh_hub_diag;
583 rc = opal_pci_get_hub_diag_data(phb->hub_id, data, PAGE_SIZE);
584 if (rc != OPAL_SUCCESS) {
585 pr_warning("%s: Failed to get HUB#%llx diag-data (%ld)\n",
586 __func__, phb->hub_id, rc);
587 return;
590 switch (data->type) {
591 case OPAL_P7IOC_DIAG_TYPE_RGC:
592 pr_info("P7IOC diag-data for RGC\n\n");
593 ioda_eeh_hub_diag_common(data);
594 pr_info(" RGC Status: %016llx\n", data->rgc.rgcStatus);
595 pr_info(" RGC LDCP: %016llx\n", data->rgc.rgcLdcp);
596 break;
597 case OPAL_P7IOC_DIAG_TYPE_BI:
598 pr_info("P7IOC diag-data for BI %s\n\n",
599 data->bi.biDownbound ? "Downbound" : "Upbound");
600 ioda_eeh_hub_diag_common(data);
601 pr_info(" BI LDCP 0: %016llx\n", data->bi.biLdcp0);
602 pr_info(" BI LDCP 1: %016llx\n", data->bi.biLdcp1);
603 pr_info(" BI LDCP 2: %016llx\n", data->bi.biLdcp2);
604 pr_info(" BI Fence Status: %016llx\n", data->bi.biFenceStatus);
605 break;
606 case OPAL_P7IOC_DIAG_TYPE_CI:
607 pr_info("P7IOC diag-data for CI Port %d\\nn",
608 data->ci.ciPort);
609 ioda_eeh_hub_diag_common(data);
610 pr_info(" CI Port Status: %016llx\n", data->ci.ciPortStatus);
611 pr_info(" CI Port LDCP: %016llx\n", data->ci.ciPortLdcp);
612 break;
613 case OPAL_P7IOC_DIAG_TYPE_MISC:
614 pr_info("P7IOC diag-data for MISC\n\n");
615 ioda_eeh_hub_diag_common(data);
616 break;
617 case OPAL_P7IOC_DIAG_TYPE_I2C:
618 pr_info("P7IOC diag-data for I2C\n\n");
619 ioda_eeh_hub_diag_common(data);
620 break;
621 default:
622 pr_warning("%s: Invalid type of HUB#%llx diag-data (%d)\n",
623 __func__, phb->hub_id, data->type);
627 static void ioda_eeh_p7ioc_phb_diag(struct pci_controller *hose,
628 struct OpalIoPhbErrorCommon *common)
630 struct OpalIoP7IOCPhbErrorData *data;
631 int i;
633 data = (struct OpalIoP7IOCPhbErrorData *)common;
635 pr_info("P7IOC PHB#%x Diag-data (Version: %d)\n\n",
636 hose->global_number, common->version);
638 pr_info(" brdgCtl: %08x\n", data->brdgCtl);
640 pr_info(" portStatusReg: %08x\n", data->portStatusReg);
641 pr_info(" rootCmplxStatus: %08x\n", data->rootCmplxStatus);
642 pr_info(" busAgentStatus: %08x\n", data->busAgentStatus);
644 pr_info(" deviceStatus: %08x\n", data->deviceStatus);
645 pr_info(" slotStatus: %08x\n", data->slotStatus);
646 pr_info(" linkStatus: %08x\n", data->linkStatus);
647 pr_info(" devCmdStatus: %08x\n", data->devCmdStatus);
648 pr_info(" devSecStatus: %08x\n", data->devSecStatus);
650 pr_info(" rootErrorStatus: %08x\n", data->rootErrorStatus);
651 pr_info(" uncorrErrorStatus: %08x\n", data->uncorrErrorStatus);
652 pr_info(" corrErrorStatus: %08x\n", data->corrErrorStatus);
653 pr_info(" tlpHdr1: %08x\n", data->tlpHdr1);
654 pr_info(" tlpHdr2: %08x\n", data->tlpHdr2);
655 pr_info(" tlpHdr3: %08x\n", data->tlpHdr3);
656 pr_info(" tlpHdr4: %08x\n", data->tlpHdr4);
657 pr_info(" sourceId: %08x\n", data->sourceId);
659 pr_info(" errorClass: %016llx\n", data->errorClass);
660 pr_info(" correlator: %016llx\n", data->correlator);
661 pr_info(" p7iocPlssr: %016llx\n", data->p7iocPlssr);
662 pr_info(" p7iocCsr: %016llx\n", data->p7iocCsr);
663 pr_info(" lemFir: %016llx\n", data->lemFir);
664 pr_info(" lemErrorMask: %016llx\n", data->lemErrorMask);
665 pr_info(" lemWOF: %016llx\n", data->lemWOF);
666 pr_info(" phbErrorStatus: %016llx\n", data->phbErrorStatus);
667 pr_info(" phbFirstErrorStatus: %016llx\n", data->phbFirstErrorStatus);
668 pr_info(" phbErrorLog0: %016llx\n", data->phbErrorLog0);
669 pr_info(" phbErrorLog1: %016llx\n", data->phbErrorLog1);
670 pr_info(" mmioErrorStatus: %016llx\n", data->mmioErrorStatus);
671 pr_info(" mmioFirstErrorStatus: %016llx\n", data->mmioFirstErrorStatus);
672 pr_info(" mmioErrorLog0: %016llx\n", data->mmioErrorLog0);
673 pr_info(" mmioErrorLog1: %016llx\n", data->mmioErrorLog1);
674 pr_info(" dma0ErrorStatus: %016llx\n", data->dma0ErrorStatus);
675 pr_info(" dma0FirstErrorStatus: %016llx\n", data->dma0FirstErrorStatus);
676 pr_info(" dma0ErrorLog0: %016llx\n", data->dma0ErrorLog0);
677 pr_info(" dma0ErrorLog1: %016llx\n", data->dma0ErrorLog1);
678 pr_info(" dma1ErrorStatus: %016llx\n", data->dma1ErrorStatus);
679 pr_info(" dma1FirstErrorStatus: %016llx\n", data->dma1FirstErrorStatus);
680 pr_info(" dma1ErrorLog0: %016llx\n", data->dma1ErrorLog0);
681 pr_info(" dma1ErrorLog1: %016llx\n", data->dma1ErrorLog1);
683 for (i = 0; i < OPAL_P7IOC_NUM_PEST_REGS; i++) {
684 if ((data->pestA[i] >> 63) == 0 &&
685 (data->pestB[i] >> 63) == 0)
686 continue;
688 pr_info(" PE[%3d] PESTA: %016llx\n", i, data->pestA[i]);
689 pr_info(" PESTB: %016llx\n", data->pestB[i]);
693 static void ioda_eeh_phb_diag(struct pci_controller *hose)
695 struct pnv_phb *phb = hose->private_data;
696 struct OpalIoPhbErrorCommon *common;
697 long rc;
699 common = (struct OpalIoPhbErrorCommon *)phb->diag.blob;
700 rc = opal_pci_get_phb_diag_data2(phb->opal_id, common, PAGE_SIZE);
701 if (rc != OPAL_SUCCESS) {
702 pr_warning("%s: Failed to get diag-data for PHB#%x (%ld)\n",
703 __func__, hose->global_number, rc);
704 return;
707 switch (common->ioType) {
708 case OPAL_PHB_ERROR_DATA_TYPE_P7IOC:
709 ioda_eeh_p7ioc_phb_diag(hose, common);
710 break;
711 default:
712 pr_warning("%s: Unrecognized I/O chip %d\n",
713 __func__, common->ioType);
717 static int ioda_eeh_get_phb_pe(struct pci_controller *hose,
718 struct eeh_pe **pe)
720 struct eeh_pe *phb_pe;
722 phb_pe = eeh_phb_pe_get(hose);
723 if (!phb_pe) {
724 pr_warning("%s Can't find PE for PHB#%d\n",
725 __func__, hose->global_number);
726 return -EEXIST;
729 *pe = phb_pe;
730 return 0;
733 static int ioda_eeh_get_pe(struct pci_controller *hose,
734 u16 pe_no, struct eeh_pe **pe)
736 struct eeh_pe *phb_pe, *dev_pe;
737 struct eeh_dev dev;
739 /* Find the PHB PE */
740 if (ioda_eeh_get_phb_pe(hose, &phb_pe))
741 return -EEXIST;
743 /* Find the PE according to PE# */
744 memset(&dev, 0, sizeof(struct eeh_dev));
745 dev.phb = hose;
746 dev.pe_config_addr = pe_no;
747 dev_pe = eeh_pe_get(&dev);
748 if (!dev_pe) {
749 pr_warning("%s: Can't find PE for PHB#%x - PE#%x\n",
750 __func__, hose->global_number, pe_no);
751 return -EEXIST;
754 *pe = dev_pe;
755 return 0;
759 * ioda_eeh_next_error - Retrieve next error for EEH core to handle
760 * @pe: The affected PE
762 * The function is expected to be called by EEH core while it gets
763 * special EEH event (without binding PE). The function calls to
764 * OPAL APIs for next error to handle. The informational error is
765 * handled internally by platform. However, the dead IOC, dead PHB,
766 * fenced PHB and frozen PE should be handled by EEH core eventually.
768 static int ioda_eeh_next_error(struct eeh_pe **pe)
770 struct pci_controller *hose;
771 struct pnv_phb *phb;
772 u64 frozen_pe_no;
773 u16 err_type, severity;
774 long rc;
775 int ret = EEH_NEXT_ERR_NONE;
778 * While running here, it's safe to purge the event queue.
779 * And we should keep the cached OPAL notifier event sychronized
780 * between the kernel and firmware.
782 eeh_remove_event(NULL);
783 opal_notifier_update_evt(OPAL_EVENT_PCI_ERROR, 0x0ul);
785 list_for_each_entry(hose, &hose_list, list_node) {
787 * If the subordinate PCI buses of the PHB has been
788 * removed, we needn't take care of it any more.
790 phb = hose->private_data;
791 if (phb->eeh_state & PNV_EEH_STATE_REMOVED)
792 continue;
794 rc = opal_pci_next_error(phb->opal_id,
795 &frozen_pe_no, &err_type, &severity);
797 /* If OPAL API returns error, we needn't proceed */
798 if (rc != OPAL_SUCCESS) {
799 pr_devel("%s: Invalid return value on "
800 "PHB#%x (0x%lx) from opal_pci_next_error",
801 __func__, hose->global_number, rc);
802 continue;
805 /* If the PHB doesn't have error, stop processing */
806 if (err_type == OPAL_EEH_NO_ERROR ||
807 severity == OPAL_EEH_SEV_NO_ERROR) {
808 pr_devel("%s: No error found on PHB#%x\n",
809 __func__, hose->global_number);
810 continue;
814 * Processing the error. We're expecting the error with
815 * highest priority reported upon multiple errors on the
816 * specific PHB.
818 pr_devel("%s: Error (%d, %d, %llu) on PHB#%x\n",
819 __func__, err_type, severity,
820 frozen_pe_no, hose->global_number);
821 switch (err_type) {
822 case OPAL_EEH_IOC_ERROR:
823 if (severity == OPAL_EEH_SEV_IOC_DEAD) {
824 list_for_each_entry(hose, &hose_list,
825 list_node) {
826 phb = hose->private_data;
827 phb->eeh_state |= PNV_EEH_STATE_REMOVED;
830 pr_err("EEH: dead IOC detected\n");
831 ret = EEH_NEXT_ERR_DEAD_IOC;
832 } else if (severity == OPAL_EEH_SEV_INF) {
833 pr_info("EEH: IOC informative error "
834 "detected\n");
835 ioda_eeh_hub_diag(hose);
836 ret = EEH_NEXT_ERR_NONE;
839 break;
840 case OPAL_EEH_PHB_ERROR:
841 if (severity == OPAL_EEH_SEV_PHB_DEAD) {
842 if (ioda_eeh_get_phb_pe(hose, pe))
843 break;
845 pr_err("EEH: dead PHB#%x detected\n",
846 hose->global_number);
847 phb->eeh_state |= PNV_EEH_STATE_REMOVED;
848 ret = EEH_NEXT_ERR_DEAD_PHB;
849 } else if (severity == OPAL_EEH_SEV_PHB_FENCED) {
850 if (ioda_eeh_get_phb_pe(hose, pe))
851 break;
853 pr_err("EEH: fenced PHB#%x detected\n",
854 hose->global_number);
855 ret = EEH_NEXT_ERR_FENCED_PHB;
856 } else if (severity == OPAL_EEH_SEV_INF) {
857 pr_info("EEH: PHB#%x informative error "
858 "detected\n",
859 hose->global_number);
860 ioda_eeh_phb_diag(hose);
861 ret = EEH_NEXT_ERR_NONE;
864 break;
865 case OPAL_EEH_PE_ERROR:
866 if (ioda_eeh_get_pe(hose, frozen_pe_no, pe))
867 break;
869 pr_err("EEH: Frozen PE#%x on PHB#%x detected\n",
870 (*pe)->addr, (*pe)->phb->global_number);
871 ret = EEH_NEXT_ERR_FROZEN_PE;
872 break;
873 default:
874 pr_warn("%s: Unexpected error type %d\n",
875 __func__, err_type);
879 * If we have no errors on the specific PHB or only
880 * informative error there, we continue poking it.
881 * Otherwise, we need actions to be taken by upper
882 * layer.
884 if (ret > EEH_NEXT_ERR_INF)
885 break;
888 return ret;
891 struct pnv_eeh_ops ioda_eeh_ops = {
892 .post_init = ioda_eeh_post_init,
893 .set_option = ioda_eeh_set_option,
894 .get_state = ioda_eeh_get_state,
895 .reset = ioda_eeh_reset,
896 .get_log = ioda_eeh_get_log,
897 .configure_bridge = ioda_eeh_configure_bridge,
898 .next_error = ioda_eeh_next_error