powerpc/powernv: Drop PHB operation configure_bridge()
[linux-2.6-block.git] / arch / powerpc / platforms / powernv / eeh-powernv.c
CommitLineData
29310e5e
GS
1/*
2 * The file intends to implement the platform dependent EEH operations on
3 * powernv platform. Actually, the powernv was created in order to fully
4 * hypervisor support.
5 *
6 * Copyright Benjamin Herrenschmidt & Gavin Shan, IBM Corporation 2013.
7 *
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.
12 */
13
14#include <linux/atomic.h>
4cf17445 15#include <linux/debugfs.h>
29310e5e
GS
16#include <linux/delay.h>
17#include <linux/export.h>
18#include <linux/init.h>
19#include <linux/list.h>
20#include <linux/msi.h>
21#include <linux/of.h>
22#include <linux/pci.h>
23#include <linux/proc_fs.h>
24#include <linux/rbtree.h>
25#include <linux/sched.h>
26#include <linux/seq_file.h>
27#include <linux/spinlock.h>
28
29#include <asm/eeh.h>
30#include <asm/eeh_event.h>
31#include <asm/firmware.h>
32#include <asm/io.h>
33#include <asm/iommu.h>
34#include <asm/machdep.h>
35#include <asm/msi_bitmap.h>
36#include <asm/opal.h>
37#include <asm/ppc-pci.h>
38
39#include "powernv.h"
40#include "pci.h"
41
4cf17445
GS
42static bool pnv_eeh_nb_init = false;
43
29310e5e 44/**
01f3bfb7 45 * pnv_eeh_init - EEH platform dependent initialization
29310e5e
GS
46 *
47 * EEH platform dependent initialization on powernv
48 */
01f3bfb7 49static int pnv_eeh_init(void)
29310e5e 50{
dc561fb9
GS
51 struct pci_controller *hose;
52 struct pnv_phb *phb;
53
29310e5e
GS
54 /* We require OPALv3 */
55 if (!firmware_has_feature(FW_FEATURE_OPALv3)) {
0dae2743
GS
56 pr_warn("%s: OPALv3 is required !\n",
57 __func__);
29310e5e
GS
58 return -EINVAL;
59 }
60
05b1721d
GS
61 /* Set probe mode */
62 eeh_add_flag(EEH_PROBE_MODE_DEV);
29310e5e 63
dc561fb9
GS
64 /*
65 * P7IOC blocks PCI config access to frozen PE, but PHB3
66 * doesn't do that. So we have to selectively enable I/O
67 * prior to collecting error log.
68 */
69 list_for_each_entry(hose, &hose_list, list_node) {
70 phb = hose->private_data;
71
72 if (phb->model == PNV_PHB_MODEL_P7IOC)
73 eeh_add_flag(EEH_ENABLE_IO_FOR_LOG);
2aa5cf9e
GS
74
75 /*
76 * PE#0 should be regarded as valid by EEH core
77 * if it's not the reserved one. Currently, we
78 * have the reserved PE#0 and PE#127 for PHB3
79 * and P7IOC separately. So we should regard
80 * PE#0 as valid for P7IOC.
81 */
82 if (phb->ioda.reserved_pe != 0)
83 eeh_add_flag(EEH_VALID_PE_ZERO);
84
dc561fb9
GS
85 break;
86 }
87
29310e5e
GS
88 return 0;
89}
90
4cf17445
GS
91static int pnv_eeh_event(struct notifier_block *nb,
92 unsigned long events, void *change)
93{
94 uint64_t changed_evts = (uint64_t)change;
95
96 /*
97 * We simply send special EEH event if EEH has
98 * been enabled, or clear pending events in
99 * case that we enable EEH soon
100 */
101 if (!(changed_evts & OPAL_EVENT_PCI_ERROR) ||
102 !(events & OPAL_EVENT_PCI_ERROR))
103 return 0;
104
105 if (eeh_enabled())
106 eeh_send_failure_event(NULL);
107 else
108 opal_notifier_update_evt(OPAL_EVENT_PCI_ERROR, 0x0ul);
109
110 return 0;
111}
112
113static struct notifier_block pnv_eeh_nb = {
114 .notifier_call = pnv_eeh_event,
115 .next = NULL,
116 .priority = 0
117};
118
119#ifdef CONFIG_DEBUG_FS
120static ssize_t pnv_eeh_ei_write(struct file *filp,
121 const char __user *user_buf,
122 size_t count, loff_t *ppos)
123{
124 struct pci_controller *hose = filp->private_data;
125 struct eeh_dev *edev;
126 struct eeh_pe *pe;
127 int pe_no, type, func;
128 unsigned long addr, mask;
129 char buf[50];
130 int ret;
131
132 if (!eeh_ops || !eeh_ops->err_inject)
133 return -ENXIO;
134
135 /* Copy over argument buffer */
136 ret = simple_write_to_buffer(buf, sizeof(buf), ppos, user_buf, count);
137 if (!ret)
138 return -EFAULT;
139
140 /* Retrieve parameters */
141 ret = sscanf(buf, "%x:%x:%x:%lx:%lx",
142 &pe_no, &type, &func, &addr, &mask);
143 if (ret != 5)
144 return -EINVAL;
145
146 /* Retrieve PE */
147 edev = kzalloc(sizeof(*edev), GFP_KERNEL);
148 if (!edev)
149 return -ENOMEM;
150 edev->phb = hose;
151 edev->pe_config_addr = pe_no;
152 pe = eeh_pe_get(edev);
153 kfree(edev);
154 if (!pe)
155 return -ENODEV;
156
157 /* Do error injection */
158 ret = eeh_ops->err_inject(pe, type, func, addr, mask);
159 return ret < 0 ? ret : count;
160}
161
162static const struct file_operations pnv_eeh_ei_fops = {
163 .open = simple_open,
164 .llseek = no_llseek,
165 .write = pnv_eeh_ei_write,
166};
167
168static int pnv_eeh_dbgfs_set(void *data, int offset, u64 val)
169{
170 struct pci_controller *hose = data;
171 struct pnv_phb *phb = hose->private_data;
172
173 out_be64(phb->regs + offset, val);
174 return 0;
175}
176
177static int pnv_eeh_dbgfs_get(void *data, int offset, u64 *val)
178{
179 struct pci_controller *hose = data;
180 struct pnv_phb *phb = hose->private_data;
181
182 *val = in_be64(phb->regs + offset);
183 return 0;
184}
185
186static int pnv_eeh_outb_dbgfs_set(void *data, u64 val)
187{
188 return pnv_eeh_dbgfs_set(data, 0xD10, val);
189}
190
191static int pnv_eeh_outb_dbgfs_get(void *data, u64 *val)
192{
193 return pnv_eeh_dbgfs_get(data, 0xD10, val);
194}
195
196static int pnv_eeh_inbA_dbgfs_set(void *data, u64 val)
197{
198 return pnv_eeh_dbgfs_set(data, 0xD90, val);
199}
200
201static int pnv_eeh_inbA_dbgfs_get(void *data, u64 *val)
202{
203 return pnv_eeh_dbgfs_get(data, 0xD90, val);
204}
205
206static int pnv_eeh_inbB_dbgfs_set(void *data, u64 val)
207{
208 return pnv_eeh_dbgfs_set(data, 0xE10, val);
209}
210
211static int pnv_eeh_inbB_dbgfs_get(void *data, u64 *val)
212{
213 return pnv_eeh_dbgfs_get(data, 0xE10, val);
214}
215
216DEFINE_SIMPLE_ATTRIBUTE(pnv_eeh_outb_dbgfs_ops, pnv_eeh_outb_dbgfs_get,
217 pnv_eeh_outb_dbgfs_set, "0x%llx\n");
218DEFINE_SIMPLE_ATTRIBUTE(pnv_eeh_inbA_dbgfs_ops, pnv_eeh_inbA_dbgfs_get,
219 pnv_eeh_inbA_dbgfs_set, "0x%llx\n");
220DEFINE_SIMPLE_ATTRIBUTE(pnv_eeh_inbB_dbgfs_ops, pnv_eeh_inbB_dbgfs_get,
221 pnv_eeh_inbB_dbgfs_set, "0x%llx\n");
222#endif /* CONFIG_DEBUG_FS */
223
29310e5e 224/**
01f3bfb7 225 * pnv_eeh_post_init - EEH platform dependent post initialization
29310e5e
GS
226 *
227 * EEH platform dependent post initialization on powernv. When
228 * the function is called, the EEH PEs and devices should have
229 * been built. If the I/O cache staff has been built, EEH is
230 * ready to supply service.
231 */
01f3bfb7 232static int pnv_eeh_post_init(void)
29310e5e
GS
233{
234 struct pci_controller *hose;
235 struct pnv_phb *phb;
236 int ret = 0;
237
4cf17445
GS
238 /* Register OPAL event notifier */
239 if (!pnv_eeh_nb_init) {
240 ret = opal_notifier_register(&pnv_eeh_nb);
241 if (ret) {
242 pr_warn("%s: Can't register OPAL event notifier (%d)\n",
243 __func__, ret);
244 return ret;
245 }
246
247 pnv_eeh_nb_init = true;
248 }
249
29310e5e
GS
250 list_for_each_entry(hose, &hose_list, list_node) {
251 phb = hose->private_data;
252
4cf17445
GS
253 /*
254 * If EEH is enabled, we're going to rely on that.
255 * Otherwise, we restore to conventional mechanism
256 * to clear frozen PE during PCI config access.
257 */
258 if (eeh_enabled())
259 phb->flags |= PNV_PHB_FLAG_EEH;
260 else
261 phb->flags &= ~PNV_PHB_FLAG_EEH;
262
263 /* Create debugfs entries */
264#ifdef CONFIG_DEBUG_FS
265 if (phb->has_dbgfs || !phb->dbgfs)
266 continue;
267
268 phb->has_dbgfs = 1;
269 debugfs_create_file("err_injct", 0200,
270 phb->dbgfs, hose,
271 &pnv_eeh_ei_fops);
272
273 debugfs_create_file("err_injct_outbound", 0600,
274 phb->dbgfs, hose,
275 &pnv_eeh_outb_dbgfs_ops);
276 debugfs_create_file("err_injct_inboundA", 0600,
277 phb->dbgfs, hose,
278 &pnv_eeh_inbA_dbgfs_ops);
279 debugfs_create_file("err_injct_inboundB", 0600,
280 phb->dbgfs, hose,
281 &pnv_eeh_inbB_dbgfs_ops);
282#endif /* CONFIG_DEBUG_FS */
29310e5e
GS
283 }
284
4cf17445 285
29310e5e
GS
286 return ret;
287}
288
289/**
01f3bfb7 290 * pnv_eeh_dev_probe - Do probe on PCI device
29310e5e
GS
291 * @dev: PCI device
292 * @flag: unused
293 *
294 * When EEH module is installed during system boot, all PCI devices
295 * are checked one by one to see if it supports EEH. The function
296 * is introduced for the purpose. By default, EEH has been enabled
297 * on all PCI devices. That's to say, we only need do necessary
298 * initialization on the corresponding eeh device and create PE
299 * accordingly.
300 *
301 * It's notable that's unsafe to retrieve the EEH device through
302 * the corresponding PCI device. During the PCI device hotplug, which
303 * was possiblly triggered by EEH core, the binding between EEH device
304 * and the PCI device isn't built yet.
305 */
01f3bfb7 306static int pnv_eeh_dev_probe(struct pci_dev *dev, void *flag)
29310e5e
GS
307{
308 struct pci_controller *hose = pci_bus_to_host(dev->bus);
309 struct pnv_phb *phb = hose->private_data;
310 struct device_node *dn = pci_device_to_OF_node(dev);
311 struct eeh_dev *edev = of_node_to_eeh_dev(dn);
dadcd6d6 312 int ret;
29310e5e
GS
313
314 /*
315 * When probing the root bridge, which doesn't have any
316 * subordinate PCI devices. We don't have OF node for
317 * the root bridge. So it's not reasonable to continue
318 * the probing.
319 */
f5c57710 320 if (!dn || !edev || edev->pe)
29310e5e
GS
321 return 0;
322
323 /* Skip for PCI-ISA bridge */
324 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_ISA)
325 return 0;
326
327 /* Initialize eeh device */
ab55d218
GS
328 edev->class_code = dev->class;
329 edev->mode &= 0xFFFFFF00;
4b83bd45
GS
330 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE)
331 edev->mode |= EEH_DEV_BRIDGE;
2a18dfc6 332 edev->pcix_cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
4b83bd45
GS
333 if (pci_is_pcie(dev)) {
334 edev->pcie_cap = pci_pcie_cap(dev);
335
336 if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT)
337 edev->mode |= EEH_DEV_ROOT_PORT;
338 else if (pci_pcie_type(dev) == PCI_EXP_TYPE_DOWNSTREAM)
339 edev->mode |= EEH_DEV_DS_PORT;
2a18dfc6
GS
340
341 edev->aer_cap = pci_find_ext_capability(dev,
342 PCI_EXT_CAP_ID_ERR);
4b83bd45
GS
343 }
344
29310e5e
GS
345 edev->config_addr = ((dev->bus->number << 8) | dev->devfn);
346 edev->pe_config_addr = phb->bdfn_to_pe(phb, dev->bus, dev->devfn & 0xff);
347
348 /* Create PE */
dadcd6d6
MQ
349 ret = eeh_add_to_parent_pe(edev);
350 if (ret) {
351 pr_warn("%s: Can't add PCI dev %s to parent PE (%d)\n",
352 __func__, pci_name(dev), ret);
353 return ret;
354 }
355
b6541db1
GS
356 /*
357 * If the PE contains any one of following adapters, the
358 * PCI config space can't be accessed when dumping EEH log.
359 * Otherwise, we will run into fenced PHB caused by shortage
360 * of outbound credits in the adapter. The PCI config access
361 * should be blocked until PE reset. MMIO access is dropped
362 * by hardware certainly. In order to drop PCI config requests,
363 * one more flag (EEH_PE_CFG_RESTRICTED) is introduced, which
364 * will be checked in the backend for PE state retrival. If
365 * the PE becomes frozen for the first time and the flag has
366 * been set for the PE, we will set EEH_PE_CFG_BLOCKED for
367 * that PE to block its config space.
368 *
369 * Broadcom Austin 4-ports NICs (14e4:1657)
179ea48b 370 * Broadcom Shiner 2-ports 10G NICs (14e4:168e)
b6541db1 371 */
179ea48b
GS
372 if ((dev->vendor == PCI_VENDOR_ID_BROADCOM && dev->device == 0x1657) ||
373 (dev->vendor == PCI_VENDOR_ID_BROADCOM && dev->device == 0x168e))
b6541db1
GS
374 edev->pe->state |= EEH_PE_CFG_RESTRICTED;
375
dadcd6d6
MQ
376 /*
377 * Cache the PE primary bus, which can't be fetched when
378 * full hotplug is in progress. In that case, all child
379 * PCI devices of the PE are expected to be removed prior
380 * to PE reset.
381 */
382 if (!edev->pe->bus)
383 edev->pe->bus = dev->bus;
29310e5e
GS
384
385 /*
386 * Enable EEH explicitly so that we will do EEH check
387 * while accessing I/O stuff
29310e5e 388 */
05b1721d 389 eeh_add_flag(EEH_ENABLED);
29310e5e
GS
390
391 /* Save memory bars */
392 eeh_save_bars(edev);
393
394 return 0;
395}
396
397/**
01f3bfb7 398 * pnv_eeh_set_option - Initialize EEH or MMIO/DMA reenable
29310e5e
GS
399 * @pe: EEH PE
400 * @option: operation to be issued
401 *
402 * The function is used to control the EEH functionality globally.
403 * Currently, following options are support according to PAPR:
404 * Enable EEH, Disable EEH, Enable MMIO and Enable DMA
405 */
01f3bfb7 406static int pnv_eeh_set_option(struct eeh_pe *pe, int option)
29310e5e
GS
407{
408 struct pci_controller *hose = pe->phb;
409 struct pnv_phb *phb = hose->private_data;
410 int ret = -EEXIST;
411
412 /*
413 * What we need do is pass it down for hardware
414 * implementation to handle it.
415 */
416 if (phb->eeh_ops && phb->eeh_ops->set_option)
417 ret = phb->eeh_ops->set_option(pe, option);
418
419 return ret;
420}
421
422/**
01f3bfb7 423 * pnv_eeh_get_pe_addr - Retrieve PE address
29310e5e
GS
424 * @pe: EEH PE
425 *
426 * Retrieve the PE address according to the given tranditional
427 * PCI BDF (Bus/Device/Function) address.
428 */
01f3bfb7 429static int pnv_eeh_get_pe_addr(struct eeh_pe *pe)
29310e5e
GS
430{
431 return pe->addr;
432}
433
434/**
01f3bfb7 435 * pnv_eeh_get_state - Retrieve PE state
29310e5e
GS
436 * @pe: EEH PE
437 * @delay: delay while PE state is temporarily unavailable
438 *
439 * Retrieve the state of the specified PE. For IODA-compitable
440 * platform, it should be retrieved from IODA table. Therefore,
441 * we prefer passing down to hardware implementation to handle
442 * it.
443 */
01f3bfb7 444static int pnv_eeh_get_state(struct eeh_pe *pe, int *delay)
29310e5e
GS
445{
446 struct pci_controller *hose = pe->phb;
447 struct pnv_phb *phb = hose->private_data;
448 int ret = EEH_STATE_NOT_SUPPORT;
449
450 if (phb->eeh_ops && phb->eeh_ops->get_state) {
451 ret = phb->eeh_ops->get_state(pe);
452
453 /*
454 * If the PE state is temporarily unavailable,
455 * to inform the EEH core delay for default
456 * period (1 second)
457 */
458 if (delay) {
459 *delay = 0;
460 if (ret & EEH_STATE_UNAVAILABLE)
461 *delay = 1000;
462 }
463 }
464
465 return ret;
466}
467
468/**
01f3bfb7 469 * pnv_eeh_reset - Reset the specified PE
29310e5e
GS
470 * @pe: EEH PE
471 * @option: reset option
472 *
473 * Reset the specified PE
474 */
01f3bfb7 475static int pnv_eeh_reset(struct eeh_pe *pe, int option)
29310e5e
GS
476{
477 struct pci_controller *hose = pe->phb;
478 struct pnv_phb *phb = hose->private_data;
479 int ret = -EEXIST;
480
481 if (phb->eeh_ops && phb->eeh_ops->reset)
482 ret = phb->eeh_ops->reset(pe, option);
483
484 return ret;
485}
486
487/**
01f3bfb7 488 * pnv_eeh_wait_state - Wait for PE state
29310e5e
GS
489 * @pe: EEH PE
490 * @max_wait: maximal period in microsecond
491 *
492 * Wait for the state of associated PE. It might take some time
493 * to retrieve the PE's state.
494 */
01f3bfb7 495static int pnv_eeh_wait_state(struct eeh_pe *pe, int max_wait)
29310e5e
GS
496{
497 int ret;
498 int mwait;
499
500 while (1) {
01f3bfb7 501 ret = pnv_eeh_get_state(pe, &mwait);
29310e5e
GS
502
503 /*
504 * If the PE's state is temporarily unavailable,
505 * we have to wait for the specified time. Otherwise,
506 * the PE's state will be returned immediately.
507 */
508 if (ret != EEH_STATE_UNAVAILABLE)
509 return ret;
510
511 max_wait -= mwait;
512 if (max_wait <= 0) {
0dae2743
GS
513 pr_warn("%s: Timeout getting PE#%x's state (%d)\n",
514 __func__, pe->addr, max_wait);
29310e5e
GS
515 return EEH_STATE_NOT_SUPPORT;
516 }
517
518 msleep(mwait);
519 }
520
521 return EEH_STATE_NOT_SUPPORT;
522}
523
524/**
01f3bfb7 525 * pnv_eeh_get_log - Retrieve error log
29310e5e
GS
526 * @pe: EEH PE
527 * @severity: temporary or permanent error log
528 * @drv_log: driver log to be combined with retrieved error log
529 * @len: length of driver log
530 *
531 * Retrieve the temporary or permanent error from the PE.
532 */
01f3bfb7
GS
533static int pnv_eeh_get_log(struct eeh_pe *pe, int severity,
534 char *drv_log, unsigned long len)
29310e5e 535{
95edcdea
GS
536 if (!eeh_has_flag(EEH_EARLY_DUMP_LOG))
537 pnv_pci_dump_phb_diag_data(pe->phb, pe->data);
29310e5e 538
95edcdea 539 return 0;
29310e5e
GS
540}
541
542/**
01f3bfb7 543 * pnv_eeh_configure_bridge - Configure PCI bridges in the indicated PE
29310e5e
GS
544 * @pe: EEH PE
545 *
546 * The function will be called to reconfigure the bridges included
547 * in the specified PE so that the mulfunctional PE would be recovered
548 * again.
549 */
01f3bfb7 550static int pnv_eeh_configure_bridge(struct eeh_pe *pe)
29310e5e 551{
bbe170ed 552 return 0;
29310e5e
GS
553}
554
131c123a 555/**
01f3bfb7 556 * pnv_pe_err_inject - Inject specified error to the indicated PE
131c123a
GS
557 * @pe: the indicated PE
558 * @type: error type
559 * @func: specific error type
560 * @addr: address
561 * @mask: address mask
562 *
563 * The routine is called to inject specified error, which is
564 * determined by @type and @func, to the indicated PE for
565 * testing purpose.
566 */
01f3bfb7
GS
567static int pnv_eeh_err_inject(struct eeh_pe *pe, int type, int func,
568 unsigned long addr, unsigned long mask)
131c123a
GS
569{
570 struct pci_controller *hose = pe->phb;
571 struct pnv_phb *phb = hose->private_data;
fa646c3c
GS
572 s64 rc;
573
574 /* Sanity check on error type */
575 if (type != OPAL_ERR_INJECT_TYPE_IOA_BUS_ERR &&
576 type != OPAL_ERR_INJECT_TYPE_IOA_BUS_ERR64) {
577 pr_warn("%s: Invalid error type %d\n",
578 __func__, type);
579 return -ERANGE;
580 }
131c123a 581
fa646c3c
GS
582 if (func < OPAL_ERR_INJECT_FUNC_IOA_LD_MEM_ADDR ||
583 func > OPAL_ERR_INJECT_FUNC_IOA_DMA_WR_TARGET) {
584 pr_warn("%s: Invalid error function %d\n",
585 __func__, func);
586 return -ERANGE;
587 }
131c123a 588
fa646c3c
GS
589 /* Firmware supports error injection ? */
590 if (!opal_check_token(OPAL_PCI_ERR_INJECT)) {
591 pr_warn("%s: Firmware doesn't support error injection\n",
592 __func__);
593 return -ENXIO;
594 }
595
596 /* Do error injection */
597 rc = opal_pci_err_inject(phb->opal_id, pe->addr,
598 type, func, addr, mask);
599 if (rc != OPAL_SUCCESS) {
600 pr_warn("%s: Failure %lld injecting error "
601 "%d-%d to PHB#%x-PE#%x\n",
602 __func__, rc, type, func,
603 hose->global_number, pe->addr);
604 return -EIO;
605 }
606
607 return 0;
131c123a
GS
608}
609
01f3bfb7 610static inline bool pnv_eeh_cfg_blocked(struct device_node *dn)
d2cfbcd7
GS
611{
612 struct eeh_dev *edev = of_node_to_eeh_dev(dn);
613
614 if (!edev || !edev->pe)
615 return false;
616
617 if (edev->pe->state & EEH_PE_CFG_BLOCKED)
618 return true;
619
620 return false;
621}
622
01f3bfb7
GS
623static int pnv_eeh_read_config(struct device_node *dn,
624 int where, int size, u32 *val)
d2cfbcd7 625{
01f3bfb7 626 if (pnv_eeh_cfg_blocked(dn)) {
d2cfbcd7
GS
627 *val = 0xFFFFFFFF;
628 return PCIBIOS_SET_FAILED;
629 }
630
631 return pnv_pci_cfg_read(dn, where, size, val);
632}
633
01f3bfb7
GS
634static int pnv_eeh_write_config(struct device_node *dn,
635 int where, int size, u32 val)
d2cfbcd7 636{
01f3bfb7 637 if (pnv_eeh_cfg_blocked(dn))
d2cfbcd7
GS
638 return PCIBIOS_SET_FAILED;
639
640 return pnv_pci_cfg_write(dn, where, size, val);
641}
642
29310e5e 643/**
01f3bfb7 644 * pnv_eeh_next_error - Retrieve next EEH error to handle
29310e5e
GS
645 * @pe: Affected PE
646 *
647 * Using OPAL API, to retrieve next EEH error for EEH core to handle
648 */
01f3bfb7 649static int pnv_eeh_next_error(struct eeh_pe **pe)
29310e5e
GS
650{
651 struct pci_controller *hose;
652 struct pnv_phb *phb = NULL;
653
654 list_for_each_entry(hose, &hose_list, list_node) {
655 phb = hose->private_data;
656 break;
657 }
658
659 if (phb && phb->eeh_ops->next_error)
660 return phb->eeh_ops->next_error(pe);
661
662 return -EEXIST;
663}
664
01f3bfb7 665static int pnv_eeh_restore_config(struct device_node *dn)
9be3becc
GS
666{
667 struct eeh_dev *edev = of_node_to_eeh_dev(dn);
668 struct pnv_phb *phb;
669 s64 ret;
670
671 if (!edev)
672 return -EEXIST;
673
674 phb = edev->phb->private_data;
675 ret = opal_pci_reinit(phb->opal_id,
676 OPAL_REINIT_PCI_DEV, edev->config_addr);
677 if (ret) {
678 pr_warn("%s: Can't reinit PCI dev 0x%x (%lld)\n",
679 __func__, edev->config_addr, ret);
680 return -EIO;
681 }
682
683 return 0;
684}
685
01f3bfb7 686static struct eeh_ops pnv_eeh_ops = {
29310e5e 687 .name = "powernv",
01f3bfb7
GS
688 .init = pnv_eeh_init,
689 .post_init = pnv_eeh_post_init,
29310e5e 690 .of_probe = NULL,
01f3bfb7
GS
691 .dev_probe = pnv_eeh_dev_probe,
692 .set_option = pnv_eeh_set_option,
693 .get_pe_addr = pnv_eeh_get_pe_addr,
694 .get_state = pnv_eeh_get_state,
695 .reset = pnv_eeh_reset,
696 .wait_state = pnv_eeh_wait_state,
697 .get_log = pnv_eeh_get_log,
698 .configure_bridge = pnv_eeh_configure_bridge,
699 .err_inject = pnv_eeh_err_inject,
700 .read_config = pnv_eeh_read_config,
701 .write_config = pnv_eeh_write_config,
702 .next_error = pnv_eeh_next_error,
703 .restore_config = pnv_eeh_restore_config
29310e5e
GS
704};
705
706/**
707 * eeh_powernv_init - Register platform dependent EEH operations
708 *
709 * EEH initialization on powernv platform. This function should be
710 * called before any EEH related functions.
711 */
712static int __init eeh_powernv_init(void)
713{
714 int ret = -EINVAL;
715
bb593c00 716 eeh_set_pe_aux_size(PNV_PCI_DIAG_BUF_SIZE);
01f3bfb7 717 ret = eeh_ops_register(&pnv_eeh_ops);
29310e5e
GS
718 if (!ret)
719 pr_info("EEH: PowerNV platform initialized\n");
720 else
721 pr_info("EEH: Failed to initialize PowerNV platform (%d)\n", ret);
722
723 return ret;
724}
b14726c5 725machine_early_initcall(powernv, eeh_powernv_init);