1
2
3
4
5
6
7
8#include <linux/atomic.h>
9#include <linux/debugfs.h>
10#include <linux/delay.h>
11#include <linux/export.h>
12#include <linux/init.h>
13#include <linux/interrupt.h>
14#include <linux/list.h>
15#include <linux/msi.h>
16#include <linux/of.h>
17#include <linux/pci.h>
18#include <linux/proc_fs.h>
19#include <linux/rbtree.h>
20#include <linux/sched.h>
21#include <linux/seq_file.h>
22#include <linux/spinlock.h>
23
24#include <asm/eeh.h>
25#include <asm/eeh_event.h>
26#include <asm/firmware.h>
27#include <asm/io.h>
28#include <asm/iommu.h>
29#include <asm/machdep.h>
30#include <asm/msi_bitmap.h>
31#include <asm/opal.h>
32#include <asm/ppc-pci.h>
33#include <asm/pnv-pci.h>
34
35#include "powernv.h"
36#include "pci.h"
37#include "../../../../drivers/pci/pci.h"
38
39static int eeh_event_irq = -EINVAL;
40
41static void pnv_pcibios_bus_add_device(struct pci_dev *pdev)
42{
43 dev_dbg(&pdev->dev, "EEH: Setting up device\n");
44 eeh_probe_device(pdev);
45}
46
47static irqreturn_t pnv_eeh_event(int irq, void *data)
48{
49
50
51
52
53
54
55 disable_irq_nosync(irq);
56
57 if (eeh_enabled())
58 eeh_send_failure_event(NULL);
59
60 return IRQ_HANDLED;
61}
62
63#ifdef CONFIG_DEBUG_FS
64static ssize_t pnv_eeh_ei_write(struct file *filp,
65 const char __user *user_buf,
66 size_t count, loff_t *ppos)
67{
68 struct pci_controller *hose = filp->private_data;
69 struct eeh_pe *pe;
70 int pe_no, type, func;
71 unsigned long addr, mask;
72 char buf[50];
73 int ret;
74
75 if (!eeh_ops || !eeh_ops->err_inject)
76 return -ENXIO;
77
78
79 ret = simple_write_to_buffer(buf, sizeof(buf), ppos, user_buf, count);
80 if (!ret)
81 return -EFAULT;
82
83
84 ret = sscanf(buf, "%x:%x:%x:%lx:%lx",
85 &pe_no, &type, &func, &addr, &mask);
86 if (ret != 5)
87 return -EINVAL;
88
89
90 pe = eeh_pe_get(hose, pe_no);
91 if (!pe)
92 return -ENODEV;
93
94
95 ret = eeh_ops->err_inject(pe, type, func, addr, mask);
96 return ret < 0 ? ret : count;
97}
98
99static const struct file_operations pnv_eeh_ei_fops = {
100 .open = simple_open,
101 .llseek = no_llseek,
102 .write = pnv_eeh_ei_write,
103};
104
105static int pnv_eeh_dbgfs_set(void *data, int offset, u64 val)
106{
107 struct pci_controller *hose = data;
108 struct pnv_phb *phb = hose->private_data;
109
110 out_be64(phb->regs + offset, val);
111 return 0;
112}
113
114static int pnv_eeh_dbgfs_get(void *data, int offset, u64 *val)
115{
116 struct pci_controller *hose = data;
117 struct pnv_phb *phb = hose->private_data;
118
119 *val = in_be64(phb->regs + offset);
120 return 0;
121}
122
123#define PNV_EEH_DBGFS_ENTRY(name, reg) \
124static int pnv_eeh_dbgfs_set_##name(void *data, u64 val) \
125{ \
126 return pnv_eeh_dbgfs_set(data, reg, val); \
127} \
128 \
129static int pnv_eeh_dbgfs_get_##name(void *data, u64 *val) \
130{ \
131 return pnv_eeh_dbgfs_get(data, reg, val); \
132} \
133 \
134DEFINE_SIMPLE_ATTRIBUTE(pnv_eeh_dbgfs_ops_##name, \
135 pnv_eeh_dbgfs_get_##name, \
136 pnv_eeh_dbgfs_set_##name, \
137 "0x%llx\n")
138
139PNV_EEH_DBGFS_ENTRY(outb, 0xD10);
140PNV_EEH_DBGFS_ENTRY(inbA, 0xD90);
141PNV_EEH_DBGFS_ENTRY(inbB, 0xE10);
142
143#endif
144
145static void pnv_eeh_enable_phbs(void)
146{
147 struct pci_controller *hose;
148 struct pnv_phb *phb;
149
150 list_for_each_entry(hose, &hose_list, list_node) {
151 phb = hose->private_data;
152
153
154
155
156
157 if (eeh_enabled())
158 phb->flags |= PNV_PHB_FLAG_EEH;
159 else
160 phb->flags &= ~PNV_PHB_FLAG_EEH;
161 }
162}
163
164
165
166
167
168
169
170
171
172int pnv_eeh_post_init(void)
173{
174 struct pci_controller *hose;
175 struct pnv_phb *phb;
176 int ret = 0;
177
178 eeh_show_enabled();
179
180
181 eeh_event_irq = opal_event_request(ilog2(OPAL_EVENT_PCI_ERROR));
182 if (eeh_event_irq < 0) {
183 pr_err("%s: Can't register OPAL event interrupt (%d)\n",
184 __func__, eeh_event_irq);
185 return eeh_event_irq;
186 }
187
188 ret = request_irq(eeh_event_irq, pnv_eeh_event,
189 IRQ_TYPE_LEVEL_HIGH, "opal-eeh", NULL);
190 if (ret < 0) {
191 irq_dispose_mapping(eeh_event_irq);
192 pr_err("%s: Can't request OPAL event interrupt (%d)\n",
193 __func__, eeh_event_irq);
194 return ret;
195 }
196
197 if (!eeh_enabled())
198 disable_irq(eeh_event_irq);
199
200 pnv_eeh_enable_phbs();
201
202 list_for_each_entry(hose, &hose_list, list_node) {
203 phb = hose->private_data;
204
205
206#ifdef CONFIG_DEBUG_FS
207 if (phb->has_dbgfs || !phb->dbgfs)
208 continue;
209
210 phb->has_dbgfs = 1;
211 debugfs_create_file("err_injct", 0200,
212 phb->dbgfs, hose,
213 &pnv_eeh_ei_fops);
214
215 debugfs_create_file("err_injct_outbound", 0600,
216 phb->dbgfs, hose,
217 &pnv_eeh_dbgfs_ops_outb);
218 debugfs_create_file("err_injct_inboundA", 0600,
219 phb->dbgfs, hose,
220 &pnv_eeh_dbgfs_ops_inbA);
221 debugfs_create_file("err_injct_inboundB", 0600,
222 phb->dbgfs, hose,
223 &pnv_eeh_dbgfs_ops_inbB);
224#endif
225 }
226
227 return ret;
228}
229
230static int pnv_eeh_find_cap(struct pci_dn *pdn, int cap)
231{
232 int pos = PCI_CAPABILITY_LIST;
233 int cnt = 48;
234 u32 status, id;
235
236 if (!pdn)
237 return 0;
238
239
240 pnv_pci_cfg_read(pdn, PCI_STATUS, 2, &status);
241 if (!(status & PCI_STATUS_CAP_LIST))
242 return 0;
243
244 while (cnt--) {
245 pnv_pci_cfg_read(pdn, pos, 1, &pos);
246 if (pos < 0x40)
247 break;
248
249 pos &= ~3;
250 pnv_pci_cfg_read(pdn, pos + PCI_CAP_LIST_ID, 1, &id);
251 if (id == 0xff)
252 break;
253
254
255 if (id == cap)
256 return pos;
257
258
259 pos += PCI_CAP_LIST_NEXT;
260 }
261
262 return 0;
263}
264
265static int pnv_eeh_find_ecap(struct pci_dn *pdn, int cap)
266{
267 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
268 u32 header;
269 int pos = 256, ttl = (4096 - 256) / 8;
270
271 if (!edev || !edev->pcie_cap)
272 return 0;
273 if (pnv_pci_cfg_read(pdn, pos, 4, &header) != PCIBIOS_SUCCESSFUL)
274 return 0;
275 else if (!header)
276 return 0;
277
278 while (ttl-- > 0) {
279 if (PCI_EXT_CAP_ID(header) == cap && pos)
280 return pos;
281
282 pos = PCI_EXT_CAP_NEXT(header);
283 if (pos < 256)
284 break;
285
286 if (pnv_pci_cfg_read(pdn, pos, 4, &header) != PCIBIOS_SUCCESSFUL)
287 break;
288 }
289
290 return 0;
291}
292
293static struct eeh_pe *pnv_eeh_get_upstream_pe(struct pci_dev *pdev)
294{
295 struct pci_controller *hose = pdev->bus->sysdata;
296 struct pnv_phb *phb = hose->private_data;
297 struct pci_dev *parent = pdev->bus->self;
298
299#ifdef CONFIG_PCI_IOV
300
301 if (pdev->is_virtfn)
302 parent = pdev->physfn;
303#endif
304
305
306 if (parent) {
307 struct pnv_ioda_pe *ioda_pe = pnv_ioda_get_pe(parent);
308
309 return eeh_pe_get(phb->hose, ioda_pe->pe_number);
310 }
311
312 return NULL;
313}
314
315
316
317
318
319
320
321static struct eeh_dev *pnv_eeh_probe(struct pci_dev *pdev)
322{
323 struct pci_dn *pdn = pci_get_pdn(pdev);
324 struct pci_controller *hose = pdn->phb;
325 struct pnv_phb *phb = hose->private_data;
326 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
327 struct eeh_pe *upstream_pe;
328 uint32_t pcie_flags;
329 int ret;
330 int config_addr = (pdn->busno << 8) | (pdn->devfn);
331
332
333
334
335
336
337
338 if (!edev || edev->pe)
339 return NULL;
340
341
342 if (edev->pdev) {
343 pr_debug("%s: found existing edev for %04x:%02x:%02x.%01x\n",
344 __func__, hose->global_number, config_addr >> 8,
345 PCI_SLOT(config_addr), PCI_FUNC(config_addr));
346 return edev;
347 }
348
349
350 if ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
351 return NULL;
352
353 eeh_edev_dbg(edev, "Probing device\n");
354
355
356 edev->mode &= 0xFFFFFF00;
357 edev->pcix_cap = pnv_eeh_find_cap(pdn, PCI_CAP_ID_PCIX);
358 edev->pcie_cap = pnv_eeh_find_cap(pdn, PCI_CAP_ID_EXP);
359 edev->af_cap = pnv_eeh_find_cap(pdn, PCI_CAP_ID_AF);
360 edev->aer_cap = pnv_eeh_find_ecap(pdn, PCI_EXT_CAP_ID_ERR);
361 if ((pdev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
362 edev->mode |= EEH_DEV_BRIDGE;
363 if (edev->pcie_cap) {
364 pnv_pci_cfg_read(pdn, edev->pcie_cap + PCI_EXP_FLAGS,
365 2, &pcie_flags);
366 pcie_flags = (pcie_flags & PCI_EXP_FLAGS_TYPE) >> 4;
367 if (pcie_flags == PCI_EXP_TYPE_ROOT_PORT)
368 edev->mode |= EEH_DEV_ROOT_PORT;
369 else if (pcie_flags == PCI_EXP_TYPE_DOWNSTREAM)
370 edev->mode |= EEH_DEV_DS_PORT;
371 }
372 }
373
374 edev->pe_config_addr = phb->ioda.pe_rmap[config_addr];
375
376 upstream_pe = pnv_eeh_get_upstream_pe(pdev);
377
378
379 ret = eeh_pe_tree_insert(edev, upstream_pe);
380 if (ret) {
381 eeh_edev_warn(edev, "Failed to add device to PE (code %d)\n", ret);
382 return NULL;
383 }
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403 if ((pdn->vendor_id == PCI_VENDOR_ID_BROADCOM &&
404 pdn->device_id == 0x1656) ||
405 (pdn->vendor_id == PCI_VENDOR_ID_BROADCOM &&
406 pdn->device_id == 0x1657) ||
407 (pdn->vendor_id == PCI_VENDOR_ID_BROADCOM &&
408 pdn->device_id == 0x168a) ||
409 (pdn->vendor_id == PCI_VENDOR_ID_BROADCOM &&
410 pdn->device_id == 0x168e))
411 edev->pe->state |= EEH_PE_CFG_RESTRICTED;
412
413
414
415
416
417
418
419 if (!(edev->pe->state & EEH_PE_PRI_BUS)) {
420 edev->pe->bus = pci_find_bus(hose->global_number,
421 pdn->busno);
422 if (edev->pe->bus)
423 edev->pe->state |= EEH_PE_PRI_BUS;
424 }
425
426
427
428
429
430 if (!eeh_has_flag(EEH_ENABLED)) {
431 enable_irq(eeh_event_irq);
432 pnv_eeh_enable_phbs();
433 eeh_add_flag(EEH_ENABLED);
434 }
435
436
437 eeh_save_bars(edev);
438
439 eeh_edev_dbg(edev, "EEH enabled on device\n");
440
441 return edev;
442}
443
444
445
446
447
448
449
450
451
452
453static int pnv_eeh_set_option(struct eeh_pe *pe, int option)
454{
455 struct pci_controller *hose = pe->phb;
456 struct pnv_phb *phb = hose->private_data;
457 bool freeze_pe = false;
458 int opt;
459 s64 rc;
460
461 switch (option) {
462 case EEH_OPT_DISABLE:
463 return -EPERM;
464 case EEH_OPT_ENABLE:
465 return 0;
466 case EEH_OPT_THAW_MMIO:
467 opt = OPAL_EEH_ACTION_CLEAR_FREEZE_MMIO;
468 break;
469 case EEH_OPT_THAW_DMA:
470 opt = OPAL_EEH_ACTION_CLEAR_FREEZE_DMA;
471 break;
472 case EEH_OPT_FREEZE_PE:
473 freeze_pe = true;
474 opt = OPAL_EEH_ACTION_SET_FREEZE_ALL;
475 break;
476 default:
477 pr_warn("%s: Invalid option %d\n", __func__, option);
478 return -EINVAL;
479 }
480
481
482 if (freeze_pe) {
483 if (phb->freeze_pe) {
484 phb->freeze_pe(phb, pe->addr);
485 return 0;
486 }
487
488 rc = opal_pci_eeh_freeze_set(phb->opal_id, pe->addr, opt);
489 if (rc != OPAL_SUCCESS) {
490 pr_warn("%s: Failure %lld freezing PHB#%x-PE#%x\n",
491 __func__, rc, phb->hose->global_number,
492 pe->addr);
493 return -EIO;
494 }
495
496 return 0;
497 }
498
499
500 if (phb->unfreeze_pe)
501 return phb->unfreeze_pe(phb, pe->addr, opt);
502
503 rc = opal_pci_eeh_freeze_clear(phb->opal_id, pe->addr, opt);
504 if (rc != OPAL_SUCCESS) {
505 pr_warn("%s: Failure %lld enable %d for PHB#%x-PE#%x\n",
506 __func__, rc, option, phb->hose->global_number,
507 pe->addr);
508 return -EIO;
509 }
510
511 return 0;
512}
513
514static void pnv_eeh_get_phb_diag(struct eeh_pe *pe)
515{
516 struct pnv_phb *phb = pe->phb->private_data;
517 s64 rc;
518
519 rc = opal_pci_get_phb_diag_data2(phb->opal_id, pe->data,
520 phb->diag_data_size);
521 if (rc != OPAL_SUCCESS)
522 pr_warn("%s: Failure %lld getting PHB#%x diag-data\n",
523 __func__, rc, pe->phb->global_number);
524}
525
526static int pnv_eeh_get_phb_state(struct eeh_pe *pe)
527{
528 struct pnv_phb *phb = pe->phb->private_data;
529 u8 fstate = 0;
530 __be16 pcierr = 0;
531 s64 rc;
532 int result = 0;
533
534 rc = opal_pci_eeh_freeze_status(phb->opal_id,
535 pe->addr,
536 &fstate,
537 &pcierr,
538 NULL);
539 if (rc != OPAL_SUCCESS) {
540 pr_warn("%s: Failure %lld getting PHB#%x state\n",
541 __func__, rc, phb->hose->global_number);
542 return EEH_STATE_NOT_SUPPORT;
543 }
544
545
546
547
548
549 if (be16_to_cpu(pcierr) != OPAL_EEH_PHB_ERROR) {
550 result = (EEH_STATE_MMIO_ACTIVE |
551 EEH_STATE_DMA_ACTIVE |
552 EEH_STATE_MMIO_ENABLED |
553 EEH_STATE_DMA_ENABLED);
554 } else if (!(pe->state & EEH_PE_ISOLATED)) {
555 eeh_pe_mark_isolated(pe);
556 pnv_eeh_get_phb_diag(pe);
557
558 if (eeh_has_flag(EEH_EARLY_DUMP_LOG))
559 pnv_pci_dump_phb_diag_data(pe->phb, pe->data);
560 }
561
562 return result;
563}
564
565static int pnv_eeh_get_pe_state(struct eeh_pe *pe)
566{
567 struct pnv_phb *phb = pe->phb->private_data;
568 u8 fstate = 0;
569 __be16 pcierr = 0;
570 s64 rc;
571 int result;
572
573
574
575
576
577
578
579 if (pe->state & EEH_PE_RESET) {
580 result = (EEH_STATE_MMIO_ACTIVE |
581 EEH_STATE_DMA_ACTIVE |
582 EEH_STATE_MMIO_ENABLED |
583 EEH_STATE_DMA_ENABLED);
584 return result;
585 }
586
587
588
589
590
591 if (phb->get_pe_state) {
592 fstate = phb->get_pe_state(phb, pe->addr);
593 } else {
594 rc = opal_pci_eeh_freeze_status(phb->opal_id,
595 pe->addr,
596 &fstate,
597 &pcierr,
598 NULL);
599 if (rc != OPAL_SUCCESS) {
600 pr_warn("%s: Failure %lld getting PHB#%x-PE%x state\n",
601 __func__, rc, phb->hose->global_number,
602 pe->addr);
603 return EEH_STATE_NOT_SUPPORT;
604 }
605 }
606
607
608 switch (fstate) {
609 case OPAL_EEH_STOPPED_NOT_FROZEN:
610 result = (EEH_STATE_MMIO_ACTIVE |
611 EEH_STATE_DMA_ACTIVE |
612 EEH_STATE_MMIO_ENABLED |
613 EEH_STATE_DMA_ENABLED);
614 break;
615 case OPAL_EEH_STOPPED_MMIO_FREEZE:
616 result = (EEH_STATE_DMA_ACTIVE |
617 EEH_STATE_DMA_ENABLED);
618 break;
619 case OPAL_EEH_STOPPED_DMA_FREEZE:
620 result = (EEH_STATE_MMIO_ACTIVE |
621 EEH_STATE_MMIO_ENABLED);
622 break;
623 case OPAL_EEH_STOPPED_MMIO_DMA_FREEZE:
624 result = 0;
625 break;
626 case OPAL_EEH_STOPPED_RESET:
627 result = EEH_STATE_RESET_ACTIVE;
628 break;
629 case OPAL_EEH_STOPPED_TEMP_UNAVAIL:
630 result = EEH_STATE_UNAVAILABLE;
631 break;
632 case OPAL_EEH_STOPPED_PERM_UNAVAIL:
633 result = EEH_STATE_NOT_SUPPORT;
634 break;
635 default:
636 result = EEH_STATE_NOT_SUPPORT;
637 pr_warn("%s: Invalid PHB#%x-PE#%x state %x\n",
638 __func__, phb->hose->global_number,
639 pe->addr, fstate);
640 }
641
642
643
644
645
646
647
648
649 if (!(result & EEH_STATE_NOT_SUPPORT) &&
650 !(result & EEH_STATE_UNAVAILABLE) &&
651 !(result & EEH_STATE_MMIO_ACTIVE) &&
652 !(result & EEH_STATE_DMA_ACTIVE) &&
653 !(pe->state & EEH_PE_ISOLATED)) {
654 if (phb->freeze_pe)
655 phb->freeze_pe(phb, pe->addr);
656
657 eeh_pe_mark_isolated(pe);
658 pnv_eeh_get_phb_diag(pe);
659
660 if (eeh_has_flag(EEH_EARLY_DUMP_LOG))
661 pnv_pci_dump_phb_diag_data(pe->phb, pe->data);
662 }
663
664 return result;
665}
666
667
668
669
670
671
672
673
674
675
676
677static int pnv_eeh_get_state(struct eeh_pe *pe, int *delay)
678{
679 int ret;
680
681 if (pe->type & EEH_PE_PHB)
682 ret = pnv_eeh_get_phb_state(pe);
683 else
684 ret = pnv_eeh_get_pe_state(pe);
685
686 if (!delay)
687 return ret;
688
689
690
691
692
693
694 *delay = 0;
695 if (ret & EEH_STATE_UNAVAILABLE)
696 *delay = 1000;
697
698 return ret;
699}
700
701static s64 pnv_eeh_poll(unsigned long id)
702{
703 s64 rc = OPAL_HARDWARE;
704
705 while (1) {
706 rc = opal_pci_poll(id);
707 if (rc <= 0)
708 break;
709
710 if (system_state < SYSTEM_RUNNING)
711 udelay(1000 * rc);
712 else
713 msleep(rc);
714 }
715
716 return rc;
717}
718
719int pnv_eeh_phb_reset(struct pci_controller *hose, int option)
720{
721 struct pnv_phb *phb = hose->private_data;
722 s64 rc = OPAL_HARDWARE;
723
724 pr_debug("%s: Reset PHB#%x, option=%d\n",
725 __func__, hose->global_number, option);
726
727
728 if (option == EEH_RESET_FUNDAMENTAL ||
729 option == EEH_RESET_HOT)
730 rc = opal_pci_reset(phb->opal_id,
731 OPAL_RESET_PHB_COMPLETE,
732 OPAL_ASSERT_RESET);
733 else if (option == EEH_RESET_DEACTIVATE)
734 rc = opal_pci_reset(phb->opal_id,
735 OPAL_RESET_PHB_COMPLETE,
736 OPAL_DEASSERT_RESET);
737 if (rc < 0)
738 goto out;
739
740
741
742
743
744
745
746 if (rc > 0)
747 rc = pnv_eeh_poll(phb->opal_id);
748 if (option == EEH_RESET_DEACTIVATE) {
749 if (system_state < SYSTEM_RUNNING)
750 udelay(1000 * EEH_PE_RST_SETTLE_TIME);
751 else
752 msleep(EEH_PE_RST_SETTLE_TIME);
753 }
754out:
755 if (rc != OPAL_SUCCESS)
756 return -EIO;
757
758 return 0;
759}
760
761static int pnv_eeh_root_reset(struct pci_controller *hose, int option)
762{
763 struct pnv_phb *phb = hose->private_data;
764 s64 rc = OPAL_HARDWARE;
765
766 pr_debug("%s: Reset PHB#%x, option=%d\n",
767 __func__, hose->global_number, option);
768
769
770
771
772
773
774 if (option == EEH_RESET_FUNDAMENTAL)
775 rc = opal_pci_reset(phb->opal_id,
776 OPAL_RESET_PCI_FUNDAMENTAL,
777 OPAL_ASSERT_RESET);
778 else if (option == EEH_RESET_HOT)
779 rc = opal_pci_reset(phb->opal_id,
780 OPAL_RESET_PCI_HOT,
781 OPAL_ASSERT_RESET);
782 else if (option == EEH_RESET_DEACTIVATE)
783 rc = opal_pci_reset(phb->opal_id,
784 OPAL_RESET_PCI_HOT,
785 OPAL_DEASSERT_RESET);
786 if (rc < 0)
787 goto out;
788
789
790 if (rc > 0)
791 rc = pnv_eeh_poll(phb->opal_id);
792 if (option == EEH_RESET_DEACTIVATE)
793 msleep(EEH_PE_RST_SETTLE_TIME);
794out:
795 if (rc != OPAL_SUCCESS)
796 return -EIO;
797
798 return 0;
799}
800
801static int __pnv_eeh_bridge_reset(struct pci_dev *dev, int option)
802{
803 struct pci_dn *pdn = pci_get_pdn_by_devfn(dev->bus, dev->devfn);
804 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
805 int aer = edev ? edev->aer_cap : 0;
806 u32 ctrl;
807
808 pr_debug("%s: Secondary Reset PCI bus %04x:%02x with option %d\n",
809 __func__, pci_domain_nr(dev->bus),
810 dev->bus->number, option);
811
812 switch (option) {
813 case EEH_RESET_FUNDAMENTAL:
814 case EEH_RESET_HOT:
815
816 if (aer) {
817 eeh_ops->read_config(edev, aer + PCI_ERR_UNCOR_MASK,
818 4, &ctrl);
819 ctrl |= PCI_ERR_UNC_SURPDN;
820 eeh_ops->write_config(edev, aer + PCI_ERR_UNCOR_MASK,
821 4, ctrl);
822 }
823
824 eeh_ops->read_config(edev, PCI_BRIDGE_CONTROL, 2, &ctrl);
825 ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
826 eeh_ops->write_config(edev, PCI_BRIDGE_CONTROL, 2, ctrl);
827
828 msleep(EEH_PE_RST_HOLD_TIME);
829 break;
830 case EEH_RESET_DEACTIVATE:
831 eeh_ops->read_config(edev, PCI_BRIDGE_CONTROL, 2, &ctrl);
832 ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
833 eeh_ops->write_config(edev, PCI_BRIDGE_CONTROL, 2, ctrl);
834
835 msleep(EEH_PE_RST_SETTLE_TIME);
836
837
838 if (aer) {
839 eeh_ops->read_config(edev, aer + PCI_ERR_UNCOR_MASK,
840 4, &ctrl);
841 ctrl &= ~PCI_ERR_UNC_SURPDN;
842 eeh_ops->write_config(edev, aer + PCI_ERR_UNCOR_MASK,
843 4, ctrl);
844 }
845
846 break;
847 }
848
849 return 0;
850}
851
852static int pnv_eeh_bridge_reset(struct pci_dev *pdev, int option)
853{
854 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
855 struct pnv_phb *phb = hose->private_data;
856 struct device_node *dn = pci_device_to_OF_node(pdev);
857 uint64_t id = PCI_SLOT_ID(phb->opal_id,
858 (pdev->bus->number << 8) | pdev->devfn);
859 uint8_t scope;
860 int64_t rc;
861
862
863 if (!dn || !of_get_property(dn, "ibm,reset-by-firmware", NULL))
864 return __pnv_eeh_bridge_reset(pdev, option);
865
866 pr_debug("%s: FW reset PCI bus %04x:%02x with option %d\n",
867 __func__, pci_domain_nr(pdev->bus),
868 pdev->bus->number, option);
869
870 switch (option) {
871 case EEH_RESET_FUNDAMENTAL:
872 scope = OPAL_RESET_PCI_FUNDAMENTAL;
873 break;
874 case EEH_RESET_HOT:
875 scope = OPAL_RESET_PCI_HOT;
876 break;
877 case EEH_RESET_DEACTIVATE:
878 return 0;
879 default:
880 dev_dbg(&pdev->dev, "%s: Unsupported reset %d\n",
881 __func__, option);
882 return -EINVAL;
883 }
884
885 rc = opal_pci_reset(id, scope, OPAL_ASSERT_RESET);
886 if (rc <= OPAL_SUCCESS)
887 goto out;
888
889 rc = pnv_eeh_poll(id);
890out:
891 return (rc == OPAL_SUCCESS) ? 0 : -EIO;
892}
893
894void pnv_pci_reset_secondary_bus(struct pci_dev *dev)
895{
896 struct pci_controller *hose;
897
898 if (pci_is_root_bus(dev->bus)) {
899 hose = pci_bus_to_host(dev->bus);
900 pnv_eeh_root_reset(hose, EEH_RESET_HOT);
901 pnv_eeh_root_reset(hose, EEH_RESET_DEACTIVATE);
902 } else {
903 pnv_eeh_bridge_reset(dev, EEH_RESET_HOT);
904 pnv_eeh_bridge_reset(dev, EEH_RESET_DEACTIVATE);
905 }
906}
907
908static void pnv_eeh_wait_for_pending(struct pci_dn *pdn, const char *type,
909 int pos, u16 mask)
910{
911 struct eeh_dev *edev = pdn->edev;
912 int i, status = 0;
913
914
915 for (i = 0; i < 4; i++) {
916 eeh_ops->read_config(edev, pos, 2, &status);
917 if (!(status & mask))
918 return;
919
920 msleep((1 << i) * 100);
921 }
922
923 pr_warn("%s: Pending transaction while issuing %sFLR to %04x:%02x:%02x.%01x\n",
924 __func__, type,
925 pdn->phb->global_number, pdn->busno,
926 PCI_SLOT(pdn->devfn), PCI_FUNC(pdn->devfn));
927}
928
929static int pnv_eeh_do_flr(struct pci_dn *pdn, int option)
930{
931 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
932 u32 reg = 0;
933
934 if (WARN_ON(!edev->pcie_cap))
935 return -ENOTTY;
936
937 eeh_ops->read_config(edev, edev->pcie_cap + PCI_EXP_DEVCAP, 4, ®);
938 if (!(reg & PCI_EXP_DEVCAP_FLR))
939 return -ENOTTY;
940
941 switch (option) {
942 case EEH_RESET_HOT:
943 case EEH_RESET_FUNDAMENTAL:
944 pnv_eeh_wait_for_pending(pdn, "",
945 edev->pcie_cap + PCI_EXP_DEVSTA,
946 PCI_EXP_DEVSTA_TRPND);
947 eeh_ops->read_config(edev, edev->pcie_cap + PCI_EXP_DEVCTL,
948 4, ®);
949 reg |= PCI_EXP_DEVCTL_BCR_FLR;
950 eeh_ops->write_config(edev, edev->pcie_cap + PCI_EXP_DEVCTL,
951 4, reg);
952 msleep(EEH_PE_RST_HOLD_TIME);
953 break;
954 case EEH_RESET_DEACTIVATE:
955 eeh_ops->read_config(edev, edev->pcie_cap + PCI_EXP_DEVCTL,
956 4, ®);
957 reg &= ~PCI_EXP_DEVCTL_BCR_FLR;
958 eeh_ops->write_config(edev, edev->pcie_cap + PCI_EXP_DEVCTL,
959 4, reg);
960 msleep(EEH_PE_RST_SETTLE_TIME);
961 break;
962 }
963
964 return 0;
965}
966
967static int pnv_eeh_do_af_flr(struct pci_dn *pdn, int option)
968{
969 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
970 u32 cap = 0;
971
972 if (WARN_ON(!edev->af_cap))
973 return -ENOTTY;
974
975 eeh_ops->read_config(edev, edev->af_cap + PCI_AF_CAP, 1, &cap);
976 if (!(cap & PCI_AF_CAP_TP) || !(cap & PCI_AF_CAP_FLR))
977 return -ENOTTY;
978
979 switch (option) {
980 case EEH_RESET_HOT:
981 case EEH_RESET_FUNDAMENTAL:
982
983
984
985
986
987 pnv_eeh_wait_for_pending(pdn, "AF",
988 edev->af_cap + PCI_AF_CTRL,
989 PCI_AF_STATUS_TP << 8);
990 eeh_ops->write_config(edev, edev->af_cap + PCI_AF_CTRL,
991 1, PCI_AF_CTRL_FLR);
992 msleep(EEH_PE_RST_HOLD_TIME);
993 break;
994 case EEH_RESET_DEACTIVATE:
995 eeh_ops->write_config(edev, edev->af_cap + PCI_AF_CTRL, 1, 0);
996 msleep(EEH_PE_RST_SETTLE_TIME);
997 break;
998 }
999
1000 return 0;
1001}
1002
1003static int pnv_eeh_reset_vf_pe(struct eeh_pe *pe, int option)
1004{
1005 struct eeh_dev *edev;
1006 struct pci_dn *pdn;
1007 int ret;
1008
1009
1010 edev = list_first_entry_or_null(&pe->edevs, struct eeh_dev, entry);
1011 pdn = eeh_dev_to_pdn(edev);
1012 if (!pdn)
1013 return -ENXIO;
1014
1015 ret = pnv_eeh_do_flr(pdn, option);
1016 if (!ret)
1017 return ret;
1018
1019 return pnv_eeh_do_af_flr(pdn, option);
1020}
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034static int pnv_eeh_reset(struct eeh_pe *pe, int option)
1035{
1036 struct pci_controller *hose = pe->phb;
1037 struct pnv_phb *phb;
1038 struct pci_bus *bus;
1039 int64_t rc;
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055 if (pe->type & EEH_PE_PHB)
1056 return pnv_eeh_phb_reset(hose, option);
1057
1058
1059
1060
1061
1062
1063
1064
1065 phb = hose->private_data;
1066 if (phb->model == PNV_PHB_MODEL_P7IOC &&
1067 (option == EEH_RESET_HOT ||
1068 option == EEH_RESET_FUNDAMENTAL)) {
1069 rc = opal_pci_reset(phb->opal_id,
1070 OPAL_RESET_PHB_ERROR,
1071 OPAL_ASSERT_RESET);
1072 if (rc != OPAL_SUCCESS) {
1073 pr_warn("%s: Failure %lld clearing error injection registers\n",
1074 __func__, rc);
1075 return -EIO;
1076 }
1077 }
1078
1079 if (pe->type & EEH_PE_VF)
1080 return pnv_eeh_reset_vf_pe(pe, option);
1081
1082 bus = eeh_pe_bus_get(pe);
1083 if (!bus) {
1084 pr_err("%s: Cannot find PCI bus for PHB#%x-PE#%x\n",
1085 __func__, pe->phb->global_number, pe->addr);
1086 return -EIO;
1087 }
1088
1089 if (pci_is_root_bus(bus))
1090 return pnv_eeh_root_reset(hose, option);
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103 if (option != EEH_RESET_FUNDAMENTAL) {
1104
1105
1106
1107
1108
1109 if (option == EEH_RESET_DEACTIVATE)
1110 return 0;
1111
1112 rc = pci_bus_error_reset(bus->self);
1113 if (!rc)
1114 return 0;
1115 }
1116
1117
1118 if (pci_is_root_bus(bus->parent))
1119 return pnv_eeh_root_reset(hose, option);
1120 return pnv_eeh_bridge_reset(bus->self, option);
1121}
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132static int pnv_eeh_get_log(struct eeh_pe *pe, int severity,
1133 char *drv_log, unsigned long len)
1134{
1135 if (!eeh_has_flag(EEH_EARLY_DUMP_LOG))
1136 pnv_pci_dump_phb_diag_data(pe->phb, pe->data);
1137
1138 return 0;
1139}
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149static int pnv_eeh_configure_bridge(struct eeh_pe *pe)
1150{
1151 return 0;
1152}
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166static int pnv_eeh_err_inject(struct eeh_pe *pe, int type, int func,
1167 unsigned long addr, unsigned long mask)
1168{
1169 struct pci_controller *hose = pe->phb;
1170 struct pnv_phb *phb = hose->private_data;
1171 s64 rc;
1172
1173 if (type != OPAL_ERR_INJECT_TYPE_IOA_BUS_ERR &&
1174 type != OPAL_ERR_INJECT_TYPE_IOA_BUS_ERR64) {
1175 pr_warn("%s: Invalid error type %d\n",
1176 __func__, type);
1177 return -ERANGE;
1178 }
1179
1180 if (func < OPAL_ERR_INJECT_FUNC_IOA_LD_MEM_ADDR ||
1181 func > OPAL_ERR_INJECT_FUNC_IOA_DMA_WR_TARGET) {
1182 pr_warn("%s: Invalid error function %d\n",
1183 __func__, func);
1184 return -ERANGE;
1185 }
1186
1187
1188 if (!opal_check_token(OPAL_PCI_ERR_INJECT)) {
1189 pr_warn("%s: Firmware doesn't support error injection\n",
1190 __func__);
1191 return -ENXIO;
1192 }
1193
1194
1195 rc = opal_pci_err_inject(phb->opal_id, pe->addr,
1196 type, func, addr, mask);
1197 if (rc != OPAL_SUCCESS) {
1198 pr_warn("%s: Failure %lld injecting error "
1199 "%d-%d to PHB#%x-PE#%x\n",
1200 __func__, rc, type, func,
1201 hose->global_number, pe->addr);
1202 return -EIO;
1203 }
1204
1205 return 0;
1206}
1207
1208static inline bool pnv_eeh_cfg_blocked(struct pci_dn *pdn)
1209{
1210 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
1211
1212 if (!edev || !edev->pe)
1213 return false;
1214
1215
1216
1217
1218
1219
1220 if (edev->physfn && (edev->pe->state & EEH_PE_RESET))
1221 return false;
1222
1223 if (edev->pe->state & EEH_PE_CFG_BLOCKED)
1224 return true;
1225
1226 return false;
1227}
1228
1229static int pnv_eeh_read_config(struct eeh_dev *edev,
1230 int where, int size, u32 *val)
1231{
1232 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
1233
1234 if (!pdn)
1235 return PCIBIOS_DEVICE_NOT_FOUND;
1236
1237 if (pnv_eeh_cfg_blocked(pdn)) {
1238 *val = 0xFFFFFFFF;
1239 return PCIBIOS_SET_FAILED;
1240 }
1241
1242 return pnv_pci_cfg_read(pdn, where, size, val);
1243}
1244
1245static int pnv_eeh_write_config(struct eeh_dev *edev,
1246 int where, int size, u32 val)
1247{
1248 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
1249
1250 if (!pdn)
1251 return PCIBIOS_DEVICE_NOT_FOUND;
1252
1253 if (pnv_eeh_cfg_blocked(pdn))
1254 return PCIBIOS_SET_FAILED;
1255
1256 return pnv_pci_cfg_write(pdn, where, size, val);
1257}
1258
1259static void pnv_eeh_dump_hub_diag_common(struct OpalIoP7IOCErrorData *data)
1260{
1261
1262 if (data->gemXfir || data->gemRfir ||
1263 data->gemRirqfir || data->gemMask || data->gemRwof)
1264 pr_info(" GEM: %016llx %016llx %016llx %016llx %016llx\n",
1265 be64_to_cpu(data->gemXfir),
1266 be64_to_cpu(data->gemRfir),
1267 be64_to_cpu(data->gemRirqfir),
1268 be64_to_cpu(data->gemMask),
1269 be64_to_cpu(data->gemRwof));
1270
1271
1272 if (data->lemFir || data->lemErrMask ||
1273 data->lemAction0 || data->lemAction1 || data->lemWof)
1274 pr_info(" LEM: %016llx %016llx %016llx %016llx %016llx\n",
1275 be64_to_cpu(data->lemFir),
1276 be64_to_cpu(data->lemErrMask),
1277 be64_to_cpu(data->lemAction0),
1278 be64_to_cpu(data->lemAction1),
1279 be64_to_cpu(data->lemWof));
1280}
1281
1282static void pnv_eeh_get_and_dump_hub_diag(struct pci_controller *hose)
1283{
1284 struct pnv_phb *phb = hose->private_data;
1285 struct OpalIoP7IOCErrorData *data =
1286 (struct OpalIoP7IOCErrorData*)phb->diag_data;
1287 long rc;
1288
1289 rc = opal_pci_get_hub_diag_data(phb->hub_id, data, sizeof(*data));
1290 if (rc != OPAL_SUCCESS) {
1291 pr_warn("%s: Failed to get HUB#%llx diag-data (%ld)\n",
1292 __func__, phb->hub_id, rc);
1293 return;
1294 }
1295
1296 switch (be16_to_cpu(data->type)) {
1297 case OPAL_P7IOC_DIAG_TYPE_RGC:
1298 pr_info("P7IOC diag-data for RGC\n\n");
1299 pnv_eeh_dump_hub_diag_common(data);
1300 if (data->rgc.rgcStatus || data->rgc.rgcLdcp)
1301 pr_info(" RGC: %016llx %016llx\n",
1302 be64_to_cpu(data->rgc.rgcStatus),
1303 be64_to_cpu(data->rgc.rgcLdcp));
1304 break;
1305 case OPAL_P7IOC_DIAG_TYPE_BI:
1306 pr_info("P7IOC diag-data for BI %s\n\n",
1307 data->bi.biDownbound ? "Downbound" : "Upbound");
1308 pnv_eeh_dump_hub_diag_common(data);
1309 if (data->bi.biLdcp0 || data->bi.biLdcp1 ||
1310 data->bi.biLdcp2 || data->bi.biFenceStatus)
1311 pr_info(" BI: %016llx %016llx %016llx %016llx\n",
1312 be64_to_cpu(data->bi.biLdcp0),
1313 be64_to_cpu(data->bi.biLdcp1),
1314 be64_to_cpu(data->bi.biLdcp2),
1315 be64_to_cpu(data->bi.biFenceStatus));
1316 break;
1317 case OPAL_P7IOC_DIAG_TYPE_CI:
1318 pr_info("P7IOC diag-data for CI Port %d\n\n",
1319 data->ci.ciPort);
1320 pnv_eeh_dump_hub_diag_common(data);
1321 if (data->ci.ciPortStatus || data->ci.ciPortLdcp)
1322 pr_info(" CI: %016llx %016llx\n",
1323 be64_to_cpu(data->ci.ciPortStatus),
1324 be64_to_cpu(data->ci.ciPortLdcp));
1325 break;
1326 case OPAL_P7IOC_DIAG_TYPE_MISC:
1327 pr_info("P7IOC diag-data for MISC\n\n");
1328 pnv_eeh_dump_hub_diag_common(data);
1329 break;
1330 case OPAL_P7IOC_DIAG_TYPE_I2C:
1331 pr_info("P7IOC diag-data for I2C\n\n");
1332 pnv_eeh_dump_hub_diag_common(data);
1333 break;
1334 default:
1335 pr_warn("%s: Invalid type of HUB#%llx diag-data (%d)\n",
1336 __func__, phb->hub_id, data->type);
1337 }
1338}
1339
1340static int pnv_eeh_get_pe(struct pci_controller *hose,
1341 u16 pe_no, struct eeh_pe **pe)
1342{
1343 struct pnv_phb *phb = hose->private_data;
1344 struct pnv_ioda_pe *pnv_pe;
1345 struct eeh_pe *dev_pe;
1346
1347
1348
1349
1350
1351
1352 pnv_pe = &phb->ioda.pe_array[pe_no];
1353 if (pnv_pe->flags & PNV_IODA_PE_SLAVE) {
1354 pnv_pe = pnv_pe->master;
1355 WARN_ON(!pnv_pe ||
1356 !(pnv_pe->flags & PNV_IODA_PE_MASTER));
1357 pe_no = pnv_pe->pe_number;
1358 }
1359
1360
1361 dev_pe = eeh_pe_get(hose, pe_no);
1362 if (!dev_pe)
1363 return -EEXIST;
1364
1365
1366 *pe = dev_pe;
1367 if (!(dev_pe->state & EEH_PE_ISOLATED))
1368 phb->freeze_pe(phb, pe_no);
1369
1370
1371
1372
1373
1374
1375 dev_pe = dev_pe->parent;
1376 while (dev_pe && !(dev_pe->type & EEH_PE_PHB)) {
1377 int ret;
1378 ret = eeh_ops->get_state(dev_pe, NULL);
1379 if (ret <= 0 || eeh_state_active(ret)) {
1380 dev_pe = dev_pe->parent;
1381 continue;
1382 }
1383
1384
1385 *pe = dev_pe;
1386 if (!(dev_pe->state & EEH_PE_ISOLATED))
1387 phb->freeze_pe(phb, dev_pe->addr);
1388
1389
1390 dev_pe = dev_pe->parent;
1391 }
1392
1393 return 0;
1394}
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406static int pnv_eeh_next_error(struct eeh_pe **pe)
1407{
1408 struct pci_controller *hose;
1409 struct pnv_phb *phb;
1410 struct eeh_pe *phb_pe, *parent_pe;
1411 __be64 frozen_pe_no;
1412 __be16 err_type, severity;
1413 long rc;
1414 int state, ret = EEH_NEXT_ERR_NONE;
1415
1416
1417
1418
1419
1420 eeh_remove_event(NULL, false);
1421
1422 list_for_each_entry(hose, &hose_list, list_node) {
1423
1424
1425
1426
1427
1428 phb = hose->private_data;
1429 phb_pe = eeh_phb_pe_get(hose);
1430 if (!phb_pe || (phb_pe->state & EEH_PE_ISOLATED))
1431 continue;
1432
1433 rc = opal_pci_next_error(phb->opal_id,
1434 &frozen_pe_no, &err_type, &severity);
1435 if (rc != OPAL_SUCCESS) {
1436 pr_devel("%s: Invalid return value on "
1437 "PHB#%x (0x%lx) from opal_pci_next_error",
1438 __func__, hose->global_number, rc);
1439 continue;
1440 }
1441
1442
1443 if (be16_to_cpu(err_type) == OPAL_EEH_NO_ERROR ||
1444 be16_to_cpu(severity) == OPAL_EEH_SEV_NO_ERROR) {
1445 pr_devel("%s: No error found on PHB#%x\n",
1446 __func__, hose->global_number);
1447 continue;
1448 }
1449
1450
1451
1452
1453
1454
1455 pr_devel("%s: Error (%d, %d, %llu) on PHB#%x\n",
1456 __func__, be16_to_cpu(err_type),
1457 be16_to_cpu(severity), be64_to_cpu(frozen_pe_no),
1458 hose->global_number);
1459 switch (be16_to_cpu(err_type)) {
1460 case OPAL_EEH_IOC_ERROR:
1461 if (be16_to_cpu(severity) == OPAL_EEH_SEV_IOC_DEAD) {
1462 pr_err("EEH: dead IOC detected\n");
1463 ret = EEH_NEXT_ERR_DEAD_IOC;
1464 } else if (be16_to_cpu(severity) == OPAL_EEH_SEV_INF) {
1465 pr_info("EEH: IOC informative error "
1466 "detected\n");
1467 pnv_eeh_get_and_dump_hub_diag(hose);
1468 ret = EEH_NEXT_ERR_NONE;
1469 }
1470
1471 break;
1472 case OPAL_EEH_PHB_ERROR:
1473 if (be16_to_cpu(severity) == OPAL_EEH_SEV_PHB_DEAD) {
1474 *pe = phb_pe;
1475 pr_err("EEH: dead PHB#%x detected, "
1476 "location: %s\n",
1477 hose->global_number,
1478 eeh_pe_loc_get(phb_pe));
1479 ret = EEH_NEXT_ERR_DEAD_PHB;
1480 } else if (be16_to_cpu(severity) ==
1481 OPAL_EEH_SEV_PHB_FENCED) {
1482 *pe = phb_pe;
1483 pr_err("EEH: Fenced PHB#%x detected, "
1484 "location: %s\n",
1485 hose->global_number,
1486 eeh_pe_loc_get(phb_pe));
1487 ret = EEH_NEXT_ERR_FENCED_PHB;
1488 } else if (be16_to_cpu(severity) == OPAL_EEH_SEV_INF) {
1489 pr_info("EEH: PHB#%x informative error "
1490 "detected, location: %s\n",
1491 hose->global_number,
1492 eeh_pe_loc_get(phb_pe));
1493 pnv_eeh_get_phb_diag(phb_pe);
1494 pnv_pci_dump_phb_diag_data(hose, phb_pe->data);
1495 ret = EEH_NEXT_ERR_NONE;
1496 }
1497
1498 break;
1499 case OPAL_EEH_PE_ERROR:
1500
1501
1502
1503
1504 if (pnv_eeh_get_pe(hose,
1505 be64_to_cpu(frozen_pe_no), pe)) {
1506 pr_info("EEH: Clear non-existing PHB#%x-PE#%llx\n",
1507 hose->global_number, be64_to_cpu(frozen_pe_no));
1508 pr_info("EEH: PHB location: %s\n",
1509 eeh_pe_loc_get(phb_pe));
1510
1511
1512 rc = opal_pci_get_phb_diag_data2(phb->opal_id,
1513 phb->diag_data, phb->diag_data_size);
1514 if (rc == OPAL_SUCCESS)
1515 pnv_pci_dump_phb_diag_data(hose,
1516 phb->diag_data);
1517
1518
1519 opal_pci_eeh_freeze_clear(phb->opal_id,
1520 be64_to_cpu(frozen_pe_no),
1521 OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
1522 ret = EEH_NEXT_ERR_NONE;
1523 } else if ((*pe)->state & EEH_PE_ISOLATED ||
1524 eeh_pe_passed(*pe)) {
1525 ret = EEH_NEXT_ERR_NONE;
1526 } else {
1527 pr_err("EEH: Frozen PE#%x "
1528 "on PHB#%x detected\n",
1529 (*pe)->addr,
1530 (*pe)->phb->global_number);
1531 pr_err("EEH: PE location: %s, "
1532 "PHB location: %s\n",
1533 eeh_pe_loc_get(*pe),
1534 eeh_pe_loc_get(phb_pe));
1535 ret = EEH_NEXT_ERR_FROZEN_PE;
1536 }
1537
1538 break;
1539 default:
1540 pr_warn("%s: Unexpected error type %d\n",
1541 __func__, be16_to_cpu(err_type));
1542 }
1543
1544
1545
1546
1547
1548
1549
1550
1551 if ((ret == EEH_NEXT_ERR_FROZEN_PE ||
1552 ret == EEH_NEXT_ERR_FENCED_PHB) &&
1553 !((*pe)->state & EEH_PE_ISOLATED)) {
1554 eeh_pe_mark_isolated(*pe);
1555 pnv_eeh_get_phb_diag(*pe);
1556
1557 if (eeh_has_flag(EEH_EARLY_DUMP_LOG))
1558 pnv_pci_dump_phb_diag_data((*pe)->phb,
1559 (*pe)->data);
1560 }
1561
1562
1563
1564
1565
1566 if (ret == EEH_NEXT_ERR_FROZEN_PE) {
1567 parent_pe = (*pe)->parent;
1568 while (parent_pe) {
1569
1570 if (parent_pe->type & EEH_PE_PHB)
1571 break;
1572
1573
1574 state = eeh_ops->get_state(parent_pe, NULL);
1575 if (state > 0 && !eeh_state_active(state))
1576 *pe = parent_pe;
1577
1578
1579 parent_pe = parent_pe->parent;
1580 }
1581
1582
1583 eeh_pe_mark_isolated(*pe);
1584 }
1585
1586
1587
1588
1589
1590
1591
1592 if (ret > EEH_NEXT_ERR_INF)
1593 break;
1594 }
1595
1596
1597 if (ret == EEH_NEXT_ERR_NONE && eeh_enabled())
1598 enable_irq(eeh_event_irq);
1599
1600 return ret;
1601}
1602
1603static int pnv_eeh_restore_config(struct eeh_dev *edev)
1604{
1605 struct pnv_phb *phb;
1606 s64 ret = 0;
1607
1608 if (!edev)
1609 return -EEXIST;
1610
1611 if (edev->physfn)
1612 return 0;
1613
1614 phb = edev->controller->private_data;
1615 ret = opal_pci_reinit(phb->opal_id,
1616 OPAL_REINIT_PCI_DEV, edev->bdfn);
1617
1618 if (ret) {
1619 pr_warn("%s: Can't reinit PCI dev 0x%x (%lld)\n",
1620 __func__, edev->bdfn, ret);
1621 return -EIO;
1622 }
1623
1624 return ret;
1625}
1626
1627static struct eeh_ops pnv_eeh_ops = {
1628 .name = "powernv",
1629 .probe = pnv_eeh_probe,
1630 .set_option = pnv_eeh_set_option,
1631 .get_state = pnv_eeh_get_state,
1632 .reset = pnv_eeh_reset,
1633 .get_log = pnv_eeh_get_log,
1634 .configure_bridge = pnv_eeh_configure_bridge,
1635 .err_inject = pnv_eeh_err_inject,
1636 .read_config = pnv_eeh_read_config,
1637 .write_config = pnv_eeh_write_config,
1638 .next_error = pnv_eeh_next_error,
1639 .restore_config = pnv_eeh_restore_config,
1640 .notify_resume = NULL
1641};
1642
1643#ifdef CONFIG_PCI_IOV
1644static void pnv_pci_fixup_vf_mps(struct pci_dev *pdev)
1645{
1646 struct pci_dn *pdn = pci_get_pdn(pdev);
1647 int parent_mps;
1648
1649 if (!pdev->is_virtfn)
1650 return;
1651
1652
1653 parent_mps = pcie_get_mps(pdev->physfn);
1654 if ((128 << pdev->pcie_mpss) >= parent_mps)
1655 pcie_set_mps(pdev, parent_mps);
1656 pdn->mps = pcie_get_mps(pdev);
1657}
1658DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pnv_pci_fixup_vf_mps);
1659#endif
1660
1661
1662
1663
1664
1665
1666
1667static int __init eeh_powernv_init(void)
1668{
1669 int max_diag_size = PNV_PCI_DIAG_BUF_SIZE;
1670 struct pci_controller *hose;
1671 struct pnv_phb *phb;
1672 int ret = -EINVAL;
1673
1674 if (!firmware_has_feature(FW_FEATURE_OPAL)) {
1675 pr_warn("%s: OPAL is required !\n", __func__);
1676 return -EINVAL;
1677 }
1678
1679
1680 eeh_add_flag(EEH_PROBE_MODE_DEV);
1681
1682
1683
1684
1685
1686
1687 list_for_each_entry(hose, &hose_list, list_node) {
1688 phb = hose->private_data;
1689
1690 if (phb->model == PNV_PHB_MODEL_P7IOC)
1691 eeh_add_flag(EEH_ENABLE_IO_FOR_LOG);
1692
1693 if (phb->diag_data_size > max_diag_size)
1694 max_diag_size = phb->diag_data_size;
1695
1696 break;
1697 }
1698
1699
1700
1701
1702
1703 eeh_set_pe_aux_size(max_diag_size);
1704 ppc_md.pcibios_bus_add_device = pnv_pcibios_bus_add_device;
1705
1706 ret = eeh_init(&pnv_eeh_ops);
1707 if (!ret)
1708 pr_info("EEH: PowerNV platform initialized\n");
1709 else
1710 pr_info("EEH: Failed to initialize PowerNV platform (%d)\n", ret);
1711
1712 return ret;
1713}
1714machine_arch_initcall(powernv, eeh_powernv_init);
1715