powerpc/eeh: Cleanup eeh_gather_pci_data()
[linux-2.6-block.git] / arch / powerpc / kernel / eeh.c
CommitLineData
1da177e4 1/*
3c8c90ab
LV
2 * Copyright IBM Corporation 2001, 2005, 2006
3 * Copyright Dave Engebretsen & Todd Inglett 2001
4 * Copyright Linas Vepstas 2005, 2006
cb3bc9d0 5 * Copyright 2001-2012 IBM Corporation.
69376502 6 *
1da177e4
LT
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
69376502 11 *
1da177e4
LT
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
69376502 16 *
1da177e4
LT
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
3c8c90ab
LV
20 *
21 * Please address comments and feedback to Linas Vepstas <linas@austin.ibm.com>
1da177e4
LT
22 */
23
6dee3fb9 24#include <linux/delay.h>
cb3bc9d0 25#include <linux/sched.h>
1da177e4
LT
26#include <linux/init.h>
27#include <linux/list.h>
1da177e4
LT
28#include <linux/pci.h>
29#include <linux/proc_fs.h>
30#include <linux/rbtree.h>
66f9af83 31#include <linux/reboot.h>
1da177e4
LT
32#include <linux/seq_file.h>
33#include <linux/spinlock.h>
66b15db6 34#include <linux/export.h>
acaa6176
SR
35#include <linux/of.h>
36
60063497 37#include <linux/atomic.h>
1da177e4 38#include <asm/eeh.h>
172ca926 39#include <asm/eeh_event.h>
1da177e4
LT
40#include <asm/io.h>
41#include <asm/machdep.h>
172ca926 42#include <asm/ppc-pci.h>
1da177e4 43#include <asm/rtas.h>
1da177e4 44
1da177e4
LT
45
46/** Overview:
47 * EEH, or "Extended Error Handling" is a PCI bridge technology for
48 * dealing with PCI bus errors that can't be dealt with within the
49 * usual PCI framework, except by check-stopping the CPU. Systems
50 * that are designed for high-availability/reliability cannot afford
51 * to crash due to a "mere" PCI error, thus the need for EEH.
52 * An EEH-capable bridge operates by converting a detected error
53 * into a "slot freeze", taking the PCI adapter off-line, making
54 * the slot behave, from the OS'es point of view, as if the slot
55 * were "empty": all reads return 0xff's and all writes are silently
56 * ignored. EEH slot isolation events can be triggered by parity
57 * errors on the address or data busses (e.g. during posted writes),
69376502
LV
58 * which in turn might be caused by low voltage on the bus, dust,
59 * vibration, humidity, radioactivity or plain-old failed hardware.
1da177e4
LT
60 *
61 * Note, however, that one of the leading causes of EEH slot
62 * freeze events are buggy device drivers, buggy device microcode,
63 * or buggy device hardware. This is because any attempt by the
64 * device to bus-master data to a memory address that is not
65 * assigned to the device will trigger a slot freeze. (The idea
66 * is to prevent devices-gone-wild from corrupting system memory).
67 * Buggy hardware/drivers will have a miserable time co-existing
68 * with EEH.
69 *
70 * Ideally, a PCI device driver, when suspecting that an isolation
25985edc 71 * event has occurred (e.g. by reading 0xff's), will then ask EEH
1da177e4
LT
72 * whether this is the case, and then take appropriate steps to
73 * reset the PCI slot, the PCI device, and then resume operations.
74 * However, until that day, the checking is done here, with the
75 * eeh_check_failure() routine embedded in the MMIO macros. If
76 * the slot is found to be isolated, an "EEH Event" is synthesized
77 * and sent out for processing.
78 */
79
5c1344e9 80/* If a device driver keeps reading an MMIO register in an interrupt
f36c5227
MM
81 * handler after a slot isolation event, it might be broken.
82 * This sets the threshold for how many read attempts we allow
83 * before printing an error message.
1da177e4 84 */
2fd30be8 85#define EEH_MAX_FAILS 2100000
1da177e4 86
17213c3b 87/* Time to wait for a PCI slot to report status, in milliseconds */
fb48dc22 88#define PCI_BUS_RESET_WAIT_MSEC (5*60*1000)
9c547768 89
aa1e6374
GS
90/* Platform dependent EEH operations */
91struct eeh_ops *eeh_ops = NULL;
92
2ec5a0ad 93bool eeh_subsystem_enabled = false;
1e28a7dd 94EXPORT_SYMBOL(eeh_subsystem_enabled);
1da177e4 95
d7bb8862
GS
96/*
97 * EEH probe mode support. The intention is to support multiple
98 * platforms for EEH. Some platforms like pSeries do PCI emunation
99 * based on device tree. However, other platforms like powernv probe
100 * PCI devices from hardware. The flag is used to distinguish that.
101 * In addition, struct eeh_ops::probe would be invoked for particular
102 * OF node or PCI device so that the corresponding PE would be created
103 * there.
104 */
105int eeh_probe_mode;
106
fd761fd8 107/* Lock to avoid races due to multiple reports of an error */
4907581d 108DEFINE_RAW_SPINLOCK(confirm_error_lock);
fd761fd8 109
17213c3b
LV
110/* Buffer for reporting pci register dumps. Its here in BSS, and
111 * not dynamically alloced, so that it ends up in RMO where RTAS
112 * can access it.
113 */
d99bb1db
LV
114#define EEH_PCI_REGS_LOG_LEN 4096
115static unsigned char pci_regs_buf[EEH_PCI_REGS_LOG_LEN];
116
e575f8db
GS
117/*
118 * The struct is used to maintain the EEH global statistic
119 * information. Besides, the EEH global statistics will be
120 * exported to user space through procfs
121 */
122struct eeh_stats {
123 u64 no_device; /* PCI device not found */
124 u64 no_dn; /* OF node not found */
125 u64 no_cfg_addr; /* Config address not found */
126 u64 ignored_check; /* EEH check skipped */
127 u64 total_mmio_ffs; /* Total EEH checks */
128 u64 false_positives; /* Unnecessary EEH checks */
129 u64 slot_resets; /* PE reset */
130};
131
132static struct eeh_stats eeh_stats;
1da177e4 133
7684b40c
LV
134#define IS_BRIDGE(class_code) (((class_code)<<16) == PCI_BASE_CLASS_BRIDGE)
135
d99bb1db 136/**
cce4b2d2 137 * eeh_gather_pci_data - Copy assorted PCI config space registers to buff
f631acd3 138 * @edev: device to report data for
d99bb1db
LV
139 * @buf: point to buffer in which to log
140 * @len: amount of room in buffer
141 *
142 * This routine captures assorted PCI configuration space data,
143 * and puts them into a buffer for RTAS error logging.
144 */
f631acd3 145static size_t eeh_gather_pci_data(struct eeh_dev *edev, char * buf, size_t len)
d99bb1db 146{
f631acd3
GS
147 struct device_node *dn = eeh_dev_to_of_node(edev);
148 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
d99bb1db 149 u32 cfg;
fcf9892b 150 int cap, i;
d99bb1db
LV
151 int n = 0;
152
f631acd3 153 n += scnprintf(buf+n, len-n, "%s\n", dn->full_name);
2d86c385 154 pr_warn("EEH: of node=%s\n", dn->full_name);
fcf9892b 155
3780444c 156 eeh_ops->read_config(dn, PCI_VENDOR_ID, 4, &cfg);
fcf9892b 157 n += scnprintf(buf+n, len-n, "dev/vend:%08x\n", cfg);
2d86c385 158 pr_warn("EEH: PCI device/vendor: %08x\n", cfg);
fcf9892b 159
3780444c 160 eeh_ops->read_config(dn, PCI_COMMAND, 4, &cfg);
d99bb1db 161 n += scnprintf(buf+n, len-n, "cmd/stat:%x\n", cfg);
2d86c385 162 pr_warn("EEH: PCI cmd/status register: %08x\n", cfg);
fcf9892b 163
b37ceefe 164 if (!dev) {
2d86c385 165 pr_warn("EEH: no PCI device for this of node\n");
b37ceefe
LV
166 return n;
167 }
168
0b9369f4
LV
169 /* Gather bridge-specific registers */
170 if (dev->class >> 16 == PCI_BASE_CLASS_BRIDGE) {
3780444c 171 eeh_ops->read_config(dn, PCI_SEC_STATUS, 2, &cfg);
0b9369f4 172 n += scnprintf(buf+n, len-n, "sec stat:%x\n", cfg);
2d86c385 173 pr_warn("EEH: Bridge secondary status: %04x\n", cfg);
0b9369f4 174
3780444c 175 eeh_ops->read_config(dn, PCI_BRIDGE_CONTROL, 2, &cfg);
0b9369f4 176 n += scnprintf(buf+n, len-n, "brdg ctl:%x\n", cfg);
2d86c385 177 pr_warn("EEH: Bridge control: %04x\n", cfg);
0b9369f4
LV
178 }
179
fcf9892b 180 /* Dump out the PCI-X command and status regs */
b37ceefe 181 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
fcf9892b 182 if (cap) {
3780444c 183 eeh_ops->read_config(dn, cap, 4, &cfg);
fcf9892b 184 n += scnprintf(buf+n, len-n, "pcix-cmd:%x\n", cfg);
2d86c385 185 pr_warn("EEH: PCI-X cmd: %08x\n", cfg);
fcf9892b 186
3780444c 187 eeh_ops->read_config(dn, cap+4, 4, &cfg);
fcf9892b 188 n += scnprintf(buf+n, len-n, "pcix-stat:%x\n", cfg);
2d86c385 189 pr_warn("EEH: PCI-X status: %08x\n", cfg);
fcf9892b
LV
190 }
191
192 /* If PCI-E capable, dump PCI-E cap 10, and the AER */
f0308261 193 if (pci_is_pcie(dev)) {
fcf9892b 194 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
2d86c385 195 pr_warn("EEH: PCI-E capabilities and status follow:\n");
fcf9892b
LV
196
197 for (i=0; i<=8; i++) {
9437eca1 198 eeh_ops->read_config(dn, dev->pcie_cap+4*i, 4, &cfg);
fcf9892b 199 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
2d86c385 200 pr_warn("EEH: PCI-E %02x: %08x\n", i, cfg);
fcf9892b
LV
201 }
202
b37ceefe 203 cap = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
fcf9892b
LV
204 if (cap) {
205 n += scnprintf(buf+n, len-n, "pci-e AER:\n");
2d86c385
GS
206 pr_warn("EEH: PCI-E AER capability register "
207 "set follows:\n");
fcf9892b
LV
208
209 for (i=0; i<14; i++) {
3780444c 210 eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
fcf9892b 211 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
2d86c385 212 pr_warn("EEH: PCI-E AER %02x: %08x\n", i, cfg);
fcf9892b
LV
213 }
214 }
215 }
0b9369f4 216
d99bb1db
LV
217 return n;
218}
219
cb3bc9d0
GS
220/**
221 * eeh_slot_error_detail - Generate combined log including driver log and error log
ff477966 222 * @pe: EEH PE
cb3bc9d0
GS
223 * @severity: temporary or permanent error log
224 *
225 * This routine should be called to generate the combined log, which
226 * is comprised of driver log and error log. The driver log is figured
227 * out from the config space of the corresponding PCI device, while
228 * the error log is fetched through platform dependent function call.
229 */
ff477966 230void eeh_slot_error_detail(struct eeh_pe *pe, int severity)
d99bb1db
LV
231{
232 size_t loglen = 0;
9feed42e 233 struct eeh_dev *edev, *tmp;
d99bb1db 234
c35ae179
GS
235 /*
236 * When the PHB is fenced or dead, it's pointless to collect
237 * the data from PCI config space because it should return
238 * 0xFF's. For ER, we still retrieve the data from the PCI
239 * config space.
78954700
GS
240 *
241 * For pHyp, we have to enable IO for log retrieval. Otherwise,
242 * 0xFF's is always returned from PCI config space.
c35ae179 243 */
9e049375 244 if (!(pe->type & EEH_PE_PHB)) {
78954700
GS
245 if (eeh_probe_mode_devtree())
246 eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
c35ae179
GS
247 eeh_ops->configure_bridge(pe);
248 eeh_pe_restore_bars(pe);
249
250 pci_regs_buf[0] = 0;
9feed42e 251 eeh_pe_for_each_dev(pe, edev, tmp) {
c35ae179
GS
252 loglen += eeh_gather_pci_data(edev, pci_regs_buf + loglen,
253 EEH_PCI_REGS_LOG_LEN - loglen);
254 }
255 }
ff477966
GS
256
257 eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
d99bb1db
LV
258}
259
1da177e4 260/**
cb3bc9d0
GS
261 * eeh_token_to_phys - Convert EEH address token to phys address
262 * @token: I/O token, should be address in the form 0xA....
263 *
264 * This routine should be called to convert virtual I/O address
265 * to physical one.
1da177e4
LT
266 */
267static inline unsigned long eeh_token_to_phys(unsigned long token)
268{
269 pte_t *ptep;
270 unsigned long pa;
12bc9f6f 271 int hugepage_shift;
1da177e4 272
12bc9f6f
AK
273 /*
274 * We won't find hugepages here, iomem
275 */
276 ptep = find_linux_pte_or_hugepte(init_mm.pgd, token, &hugepage_shift);
1da177e4
LT
277 if (!ptep)
278 return token;
12bc9f6f 279 WARN_ON(hugepage_shift);
1da177e4
LT
280 pa = pte_pfn(*ptep) << PAGE_SHIFT;
281
282 return pa | (token & (PAGE_SIZE-1));
283}
284
b95cd2cd
GS
285/*
286 * On PowerNV platform, we might already have fenced PHB there.
287 * For that case, it's meaningless to recover frozen PE. Intead,
288 * We have to handle fenced PHB firstly.
289 */
290static int eeh_phb_check_failure(struct eeh_pe *pe)
291{
292 struct eeh_pe *phb_pe;
293 unsigned long flags;
294 int ret;
295
296 if (!eeh_probe_mode_dev())
297 return -EPERM;
298
299 /* Find the PHB PE */
300 phb_pe = eeh_phb_pe_get(pe->phb);
301 if (!phb_pe) {
302 pr_warning("%s Can't find PE for PHB#%d\n",
303 __func__, pe->phb->global_number);
304 return -EEXIST;
305 }
306
307 /* If the PHB has been in problematic state */
308 eeh_serialize_lock(&flags);
9e049375 309 if (phb_pe->state & EEH_PE_ISOLATED) {
b95cd2cd
GS
310 ret = 0;
311 goto out;
312 }
313
314 /* Check PHB state */
315 ret = eeh_ops->get_state(phb_pe, NULL);
316 if ((ret < 0) ||
317 (ret == EEH_STATE_NOT_SUPPORT) ||
318 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
319 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
320 ret = 0;
321 goto out;
322 }
323
324 /* Isolate the PHB and send event */
325 eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
326 eeh_serialize_unlock(flags);
b95cd2cd 327
56ca4fde
GS
328 pr_err("EEH: PHB#%x failure detected\n",
329 phb_pe->phb->global_number);
330 dump_stack();
5293bf97 331 eeh_send_failure_event(phb_pe);
b95cd2cd
GS
332
333 return 1;
334out:
335 eeh_serialize_unlock(flags);
336 return ret;
337}
338
1da177e4 339/**
f8f7d63f
GS
340 * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
341 * @edev: eeh device
1da177e4
LT
342 *
343 * Check for an EEH failure for the given device node. Call this
344 * routine if the result of a read was all 0xff's and you want to
345 * find out if this is due to an EEH slot freeze. This routine
346 * will query firmware for the EEH status.
347 *
348 * Returns 0 if there has not been an EEH error; otherwise returns
69376502 349 * a non-zero value and queues up a slot isolation event notification.
1da177e4
LT
350 *
351 * It is safe to call this routine in an interrupt context.
352 */
f8f7d63f 353int eeh_dev_check_failure(struct eeh_dev *edev)
1da177e4
LT
354{
355 int ret;
1da177e4 356 unsigned long flags;
f8f7d63f
GS
357 struct device_node *dn;
358 struct pci_dev *dev;
66523d9f 359 struct eeh_pe *pe;
fd761fd8 360 int rc = 0;
f36c5227 361 const char *location;
1da177e4 362
e575f8db 363 eeh_stats.total_mmio_ffs++;
1da177e4 364
2ec5a0ad 365 if (!eeh_enabled())
1da177e4
LT
366 return 0;
367
f8f7d63f 368 if (!edev) {
e575f8db 369 eeh_stats.no_dn++;
1da177e4 370 return 0;
177bc936 371 }
f8f7d63f
GS
372 dn = eeh_dev_to_of_node(edev);
373 dev = eeh_dev_to_pci_dev(edev);
66523d9f 374 pe = edev->pe;
1da177e4
LT
375
376 /* Access to IO BARs might get this far and still not want checking. */
66523d9f 377 if (!pe) {
e575f8db 378 eeh_stats.ignored_check++;
66523d9f
GS
379 pr_debug("EEH: Ignored check for %s %s\n",
380 eeh_pci_name(dev), dn->full_name);
1da177e4
LT
381 return 0;
382 }
383
66523d9f 384 if (!pe->addr && !pe->config_addr) {
e575f8db 385 eeh_stats.no_cfg_addr++;
1da177e4
LT
386 return 0;
387 }
388
b95cd2cd
GS
389 /*
390 * On PowerNV platform, we might already have fenced PHB
391 * there and we need take care of that firstly.
392 */
393 ret = eeh_phb_check_failure(pe);
394 if (ret > 0)
395 return ret;
396
fd761fd8
LV
397 /* If we already have a pending isolation event for this
398 * slot, we know it's bad already, we don't need to check.
399 * Do this checking under a lock; as multiple PCI devices
400 * in one slot might report errors simultaneously, and we
401 * only want one error recovery routine running.
1da177e4 402 */
4907581d 403 eeh_serialize_lock(&flags);
fd761fd8 404 rc = 1;
66523d9f
GS
405 if (pe->state & EEH_PE_ISOLATED) {
406 pe->check_count++;
407 if (pe->check_count % EEH_MAX_FAILS == 0) {
f36c5227 408 location = of_get_property(dn, "ibm,loc-code", NULL);
cb3bc9d0 409 printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
f36c5227 410 "location=%s driver=%s pci addr=%s\n",
66523d9f 411 pe->check_count, location,
778a785f 412 eeh_driver_name(dev), eeh_pci_name(dev));
cb3bc9d0 413 printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
778a785f 414 eeh_driver_name(dev));
5c1344e9 415 dump_stack();
1da177e4 416 }
fd761fd8 417 goto dn_unlock;
1da177e4
LT
418 }
419
420 /*
421 * Now test for an EEH failure. This is VERY expensive.
422 * Note that the eeh_config_addr may be a parent device
423 * in the case of a device behind a bridge, or it may be
424 * function zero of a multi-function device.
425 * In any case they must share a common PHB.
426 */
66523d9f 427 ret = eeh_ops->get_state(pe, NULL);
76e6faf7 428
39d16e29 429 /* Note that config-io to empty slots may fail;
cb3bc9d0 430 * they are empty when they don't have children.
eb594a47
GS
431 * We will punt with the following conditions: Failure to get
432 * PE's state, EEH not support and Permanently unavailable
433 * state, PE is in good state.
cb3bc9d0 434 */
eb594a47
GS
435 if ((ret < 0) ||
436 (ret == EEH_STATE_NOT_SUPPORT) ||
437 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
438 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
e575f8db 439 eeh_stats.false_positives++;
66523d9f 440 pe->false_positives++;
fd761fd8
LV
441 rc = 0;
442 goto dn_unlock;
76e6faf7
LV
443 }
444
e575f8db 445 eeh_stats.slot_resets++;
a84f273c 446
fd761fd8
LV
447 /* Avoid repeated reports of this failure, including problems
448 * with other functions on this device, and functions under
cb3bc9d0
GS
449 * bridges.
450 */
66523d9f 451 eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
4907581d 452 eeh_serialize_unlock(flags);
1da177e4 453
1da177e4
LT
454 /* Most EEH events are due to device driver bugs. Having
455 * a stack trace will help the device-driver authors figure
cb3bc9d0
GS
456 * out what happened. So print that out.
457 */
56ca4fde
GS
458 pr_err("EEH: Frozen PE#%x detected on PHB#%x\n",
459 pe->addr, pe->phb->global_number);
460 dump_stack();
461
5293bf97
GS
462 eeh_send_failure_event(pe);
463
fd761fd8
LV
464 return 1;
465
466dn_unlock:
4907581d 467 eeh_serialize_unlock(flags);
fd761fd8 468 return rc;
1da177e4
LT
469}
470
f8f7d63f 471EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
1da177e4
LT
472
473/**
cb3bc9d0
GS
474 * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
475 * @token: I/O token, should be address in the form 0xA....
476 * @val: value, should be all 1's (XXX why do we need this arg??)
1da177e4 477 *
1da177e4
LT
478 * Check for an EEH failure at the given token address. Call this
479 * routine if the result of a read was all 0xff's and you want to
480 * find out if this is due to an EEH slot freeze event. This routine
481 * will query firmware for the EEH status.
482 *
483 * Note this routine is safe to call in an interrupt context.
484 */
485unsigned long eeh_check_failure(const volatile void __iomem *token, unsigned long val)
486{
487 unsigned long addr;
f8f7d63f 488 struct eeh_dev *edev;
1da177e4
LT
489
490 /* Finding the phys addr + pci device; this is pretty quick. */
491 addr = eeh_token_to_phys((unsigned long __force) token);
3ab96a02 492 edev = eeh_addr_cache_get_dev(addr);
f8f7d63f 493 if (!edev) {
e575f8db 494 eeh_stats.no_device++;
1da177e4 495 return val;
177bc936 496 }
1da177e4 497
f8f7d63f 498 eeh_dev_check_failure(edev);
1da177e4
LT
499 return val;
500}
501
502EXPORT_SYMBOL(eeh_check_failure);
503
6dee3fb9 504
47b5c838 505/**
cce4b2d2 506 * eeh_pci_enable - Enable MMIO or DMA transfers for this slot
ff477966 507 * @pe: EEH PE
cb3bc9d0
GS
508 *
509 * This routine should be called to reenable frozen MMIO or DMA
510 * so that it would work correctly again. It's useful while doing
511 * recovery or log collection on the indicated device.
47b5c838 512 */
ff477966 513int eeh_pci_enable(struct eeh_pe *pe, int function)
47b5c838 514{
78954700
GS
515 int rc, flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
516
517 /*
518 * pHyp doesn't allow to enable IO or DMA on unfrozen PE.
519 * Also, it's pointless to enable them on unfrozen PE. So
520 * we have the check here.
521 */
522 if (function == EEH_OPT_THAW_MMIO ||
523 function == EEH_OPT_THAW_DMA) {
524 rc = eeh_ops->get_state(pe, NULL);
525 if (rc < 0)
526 return rc;
527
528 /* Needn't to enable or already enabled */
529 if ((rc == EEH_STATE_NOT_SUPPORT) ||
530 ((rc & flags) == flags))
531 return 0;
532 }
47b5c838 533
ff477966 534 rc = eeh_ops->set_option(pe, function);
47b5c838 535 if (rc)
78954700
GS
536 pr_warn("%s: Unexpected state change %d on "
537 "PHB#%d-PE#%x, err=%d\n",
538 __func__, function, pe->phb->global_number,
539 pe->addr, rc);
47b5c838 540
ff477966 541 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
78954700
GS
542 if (rc <= 0)
543 return rc;
544
545 if ((function == EEH_OPT_THAW_MMIO) &&
546 (rc & EEH_STATE_MMIO_ENABLED))
547 return 0;
548
549 if ((function == EEH_OPT_THAW_DMA) &&
550 (rc & EEH_STATE_DMA_ENABLED))
fa1be476
LV
551 return 0;
552
47b5c838
LV
553 return rc;
554}
555
00c2ae35
BK
556/**
557 * pcibios_set_pcie_slot_reset - Set PCI-E reset state
cb3bc9d0
GS
558 * @dev: pci device struct
559 * @state: reset state to enter
00c2ae35
BK
560 *
561 * Return value:
562 * 0 if success
cb3bc9d0 563 */
00c2ae35
BK
564int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
565{
c270a24c
GS
566 struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
567 struct eeh_pe *pe = edev->pe;
568
569 if (!pe) {
570 pr_err("%s: No PE found on PCI device %s\n",
571 __func__, pci_name(dev));
572 return -EINVAL;
573 }
00c2ae35
BK
574
575 switch (state) {
576 case pcie_deassert_reset:
c270a24c 577 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
00c2ae35
BK
578 break;
579 case pcie_hot_reset:
c270a24c 580 eeh_ops->reset(pe, EEH_RESET_HOT);
00c2ae35
BK
581 break;
582 case pcie_warm_reset:
c270a24c 583 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
00c2ae35
BK
584 break;
585 default:
586 return -EINVAL;
587 };
588
589 return 0;
590}
591
cb5b5624 592/**
c270a24c
GS
593 * eeh_set_pe_freset - Check the required reset for the indicated device
594 * @data: EEH device
595 * @flag: return value
cb3bc9d0
GS
596 *
597 * Each device might have its preferred reset type: fundamental or
598 * hot reset. The routine is used to collected the information for
599 * the indicated device and its children so that the bunch of the
600 * devices could be reset properly.
601 */
c270a24c 602static void *eeh_set_dev_freset(void *data, void *flag)
cb3bc9d0
GS
603{
604 struct pci_dev *dev;
c270a24c
GS
605 unsigned int *freset = (unsigned int *)flag;
606 struct eeh_dev *edev = (struct eeh_dev *)data;
6dee3fb9 607
c270a24c 608 dev = eeh_dev_to_pci_dev(edev);
cb3bc9d0
GS
609 if (dev)
610 *freset |= dev->needs_freset;
611
c270a24c 612 return NULL;
cb3bc9d0
GS
613}
614
615/**
cce4b2d2 616 * eeh_reset_pe_once - Assert the pci #RST line for 1/4 second
c270a24c 617 * @pe: EEH PE
cb3bc9d0
GS
618 *
619 * Assert the PCI #RST line for 1/4 second.
620 */
c270a24c 621static void eeh_reset_pe_once(struct eeh_pe *pe)
6dee3fb9 622{
308fc4f8 623 unsigned int freset = 0;
6e19314c 624
308fc4f8
RL
625 /* Determine type of EEH reset required for
626 * Partitionable Endpoint, a hot-reset (1)
627 * or a fundamental reset (3).
628 * A fundamental reset required by any device under
629 * Partitionable Endpoint trumps hot-reset.
a84f273c 630 */
c270a24c 631 eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
308fc4f8
RL
632
633 if (freset)
c270a24c 634 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
6e19314c 635 else
c270a24c 636 eeh_ops->reset(pe, EEH_RESET_HOT);
6dee3fb9
LV
637
638 /* The PCI bus requires that the reset be held high for at least
cb3bc9d0
GS
639 * a 100 milliseconds. We wait a bit longer 'just in case'.
640 */
6dee3fb9 641#define PCI_BUS_RST_HOLD_TIME_MSEC 250
cb3bc9d0 642 msleep(PCI_BUS_RST_HOLD_TIME_MSEC);
a84f273c 643
c270a24c 644 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
6dee3fb9
LV
645
646 /* After a PCI slot has been reset, the PCI Express spec requires
647 * a 1.5 second idle time for the bus to stabilize, before starting
cb3bc9d0
GS
648 * up traffic.
649 */
6dee3fb9 650#define PCI_BUS_SETTLE_TIME_MSEC 1800
cb3bc9d0 651 msleep(PCI_BUS_SETTLE_TIME_MSEC);
e1029263
LV
652}
653
cb3bc9d0 654/**
cce4b2d2 655 * eeh_reset_pe - Reset the indicated PE
c270a24c 656 * @pe: EEH PE
cb3bc9d0
GS
657 *
658 * This routine should be called to reset indicated device, including
659 * PE. A PE might include multiple PCI devices and sometimes PCI bridges
660 * might be involved as well.
661 */
c270a24c 662int eeh_reset_pe(struct eeh_pe *pe)
e1029263 663{
326a98ea 664 int flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
e1029263
LV
665 int i, rc;
666
9c547768
LV
667 /* Take three shots at resetting the bus */
668 for (i=0; i<3; i++) {
c270a24c 669 eeh_reset_pe_once(pe);
6dee3fb9 670
78954700
GS
671 /*
672 * EEH_PE_ISOLATED is expected to be removed after
673 * BAR restore.
674 */
c270a24c 675 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
78954700 676 if ((rc & flags) == flags)
b6495c0c 677 return 0;
e1029263 678
e1029263 679 if (rc < 0) {
c270a24c
GS
680 pr_err("%s: Unrecoverable slot failure on PHB#%d-PE#%x",
681 __func__, pe->phb->global_number, pe->addr);
b6495c0c 682 return -1;
e1029263 683 }
c270a24c
GS
684 pr_err("EEH: bus reset %d failed on PHB#%d-PE#%x, rc=%d\n",
685 i+1, pe->phb->global_number, pe->addr, rc);
6dee3fb9 686 }
b6495c0c 687
9c547768 688 return -1;
6dee3fb9
LV
689}
690
8b553f32 691/**
cb3bc9d0 692 * eeh_save_bars - Save device bars
f631acd3 693 * @edev: PCI device associated EEH device
8b553f32
LV
694 *
695 * Save the values of the device bars. Unlike the restore
696 * routine, this routine is *not* recursive. This is because
31116f0b 697 * PCI devices are added individually; but, for the restore,
8b553f32
LV
698 * an entire slot is reset at a time.
699 */
d7bb8862 700void eeh_save_bars(struct eeh_dev *edev)
8b553f32
LV
701{
702 int i;
f631acd3 703 struct device_node *dn;
8b553f32 704
f631acd3 705 if (!edev)
8b553f32 706 return;
f631acd3 707 dn = eeh_dev_to_of_node(edev);
a84f273c 708
8b553f32 709 for (i = 0; i < 16; i++)
3780444c 710 eeh_ops->read_config(dn, i * 4, 4, &edev->config_space[i]);
bf898ec5
GS
711
712 /*
713 * For PCI bridges including root port, we need enable bus
714 * master explicitly. Otherwise, it can't fetch IODA table
715 * entries correctly. So we cache the bit in advance so that
716 * we can restore it after reset, either PHB range or PE range.
717 */
718 if (edev->mode & EEH_DEV_BRIDGE)
719 edev->config_space[1] |= PCI_COMMAND_MASTER;
8b553f32
LV
720}
721
aa1e6374
GS
722/**
723 * eeh_ops_register - Register platform dependent EEH operations
724 * @ops: platform dependent EEH operations
725 *
726 * Register the platform dependent EEH operation callback
727 * functions. The platform should call this function before
728 * any other EEH operations.
729 */
730int __init eeh_ops_register(struct eeh_ops *ops)
731{
732 if (!ops->name) {
733 pr_warning("%s: Invalid EEH ops name for %p\n",
734 __func__, ops);
735 return -EINVAL;
736 }
737
738 if (eeh_ops && eeh_ops != ops) {
739 pr_warning("%s: EEH ops of platform %s already existing (%s)\n",
740 __func__, eeh_ops->name, ops->name);
741 return -EEXIST;
742 }
743
744 eeh_ops = ops;
745
746 return 0;
747}
748
749/**
750 * eeh_ops_unregister - Unreigster platform dependent EEH operations
751 * @name: name of EEH platform operations
752 *
753 * Unregister the platform dependent EEH operation callback
754 * functions.
755 */
756int __exit eeh_ops_unregister(const char *name)
757{
758 if (!name || !strlen(name)) {
759 pr_warning("%s: Invalid EEH ops name\n",
760 __func__);
761 return -EINVAL;
762 }
763
764 if (eeh_ops && !strcmp(eeh_ops->name, name)) {
765 eeh_ops = NULL;
766 return 0;
767 }
768
769 return -EEXIST;
770}
771
66f9af83
GS
772static int eeh_reboot_notifier(struct notifier_block *nb,
773 unsigned long action, void *unused)
774{
775 eeh_set_enable(false);
776 return NOTIFY_DONE;
777}
778
779static struct notifier_block eeh_reboot_nb = {
780 .notifier_call = eeh_reboot_notifier,
781};
782
cb3bc9d0
GS
783/**
784 * eeh_init - EEH initialization
785 *
1da177e4
LT
786 * Initialize EEH by trying to enable it for all of the adapters in the system.
787 * As a side effect we can determine here if eeh is supported at all.
788 * Note that we leave EEH on so failed config cycles won't cause a machine
789 * check. If a user turns off EEH for a particular adapter they are really
790 * telling Linux to ignore errors. Some hardware (e.g. POWER5) won't
791 * grant access to a slot if EEH isn't enabled, and so we always enable
792 * EEH for all slots/all devices.
793 *
794 * The eeh-force-off option disables EEH checking globally, for all slots.
795 * Even if force-off is set, the EEH hardware is still enabled, so that
796 * newer systems can boot.
797 */
eeb6361f 798int eeh_init(void)
1da177e4 799{
1a5c2e63
GS
800 struct pci_controller *hose, *tmp;
801 struct device_node *phb;
51fb5f56
GS
802 static int cnt = 0;
803 int ret = 0;
804
805 /*
806 * We have to delay the initialization on PowerNV after
807 * the PCI hierarchy tree has been built because the PEs
808 * are figured out based on PCI devices instead of device
809 * tree nodes
810 */
811 if (machine_is(powernv) && cnt++ <= 0)
812 return ret;
e2af155c 813
66f9af83
GS
814 /* Register reboot notifier */
815 ret = register_reboot_notifier(&eeh_reboot_nb);
816 if (ret) {
817 pr_warn("%s: Failed to register notifier (%d)\n",
818 __func__, ret);
819 return ret;
820 }
821
e2af155c
GS
822 /* call platform initialization function */
823 if (!eeh_ops) {
824 pr_warning("%s: Platform EEH operation not found\n",
825 __func__);
35e5cfe2 826 return -EEXIST;
e2af155c
GS
827 } else if ((ret = eeh_ops->init())) {
828 pr_warning("%s: Failed to call platform init function (%d)\n",
829 __func__, ret);
35e5cfe2 830 return ret;
e2af155c 831 }
1da177e4 832
c8608558
GS
833 /* Initialize EEH event */
834 ret = eeh_event_init();
835 if (ret)
836 return ret;
837
1a5c2e63 838 /* Enable EEH for all adapters */
d7bb8862
GS
839 if (eeh_probe_mode_devtree()) {
840 list_for_each_entry_safe(hose, tmp,
841 &hose_list, list_node) {
842 phb = hose->dn;
843 traverse_pci_devices(phb, eeh_ops->of_probe, NULL);
844 }
51fb5f56
GS
845 } else if (eeh_probe_mode_dev()) {
846 list_for_each_entry_safe(hose, tmp,
847 &hose_list, list_node)
848 pci_walk_bus(hose->bus, eeh_ops->dev_probe, NULL);
849 } else {
850 pr_warning("%s: Invalid probe mode %d\n",
851 __func__, eeh_probe_mode);
852 return -EINVAL;
1da177e4
LT
853 }
854
21fd21f5
GS
855 /*
856 * Call platform post-initialization. Actually, It's good chance
857 * to inform platform that EEH is ready to supply service if the
858 * I/O cache stuff has been built up.
859 */
860 if (eeh_ops->post_init) {
861 ret = eeh_ops->post_init();
862 if (ret)
863 return ret;
864 }
865
2ec5a0ad 866 if (eeh_enabled())
d7bb8862 867 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
1da177e4 868 else
d7bb8862 869 pr_warning("EEH: No capable adapters found\n");
35e5cfe2
GS
870
871 return ret;
1da177e4
LT
872}
873
35e5cfe2
GS
874core_initcall_sync(eeh_init);
875
1da177e4 876/**
cb3bc9d0 877 * eeh_add_device_early - Enable EEH for the indicated device_node
1da177e4
LT
878 * @dn: device node for which to set up EEH
879 *
880 * This routine must be used to perform EEH initialization for PCI
881 * devices that were added after system boot (e.g. hotplug, dlpar).
882 * This routine must be called before any i/o is performed to the
883 * adapter (inluding any config-space i/o).
884 * Whether this actually enables EEH or not for this device depends
885 * on the CEC architecture, type of the device, on earlier boot
886 * command-line arguments & etc.
887 */
f2856491 888void eeh_add_device_early(struct device_node *dn)
1da177e4
LT
889{
890 struct pci_controller *phb;
1da177e4 891
26a74850
GS
892 /*
893 * If we're doing EEH probe based on PCI device, we
894 * would delay the probe until late stage because
895 * the PCI device isn't available this moment.
896 */
897 if (!eeh_probe_mode_devtree())
898 return;
899
1e38b714 900 if (!of_node_to_eeh_dev(dn))
1da177e4 901 return;
f631acd3 902 phb = of_node_to_eeh_dev(dn)->phb;
f751f841
LV
903
904 /* USB Bus children of PCI devices will not have BUID's */
905 if (NULL == phb || 0 == phb->buid)
1da177e4 906 return;
1da177e4 907
d7bb8862 908 eeh_ops->of_probe(dn, NULL);
1da177e4 909}
1da177e4 910
cb3bc9d0
GS
911/**
912 * eeh_add_device_tree_early - Enable EEH for the indicated device
913 * @dn: device node
914 *
915 * This routine must be used to perform EEH initialization for the
916 * indicated PCI device that was added after system boot (e.g.
917 * hotplug, dlpar).
918 */
e2a296ee
LV
919void eeh_add_device_tree_early(struct device_node *dn)
920{
921 struct device_node *sib;
acaa6176
SR
922
923 for_each_child_of_node(dn, sib)
e2a296ee
LV
924 eeh_add_device_tree_early(sib);
925 eeh_add_device_early(dn);
926}
927EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
928
1da177e4 929/**
cb3bc9d0 930 * eeh_add_device_late - Perform EEH initialization for the indicated pci device
1da177e4
LT
931 * @dev: pci device for which to set up EEH
932 *
933 * This routine must be used to complete EEH initialization for PCI
934 * devices that were added after system boot (e.g. hotplug, dlpar).
935 */
f2856491 936void eeh_add_device_late(struct pci_dev *dev)
1da177e4 937{
56b0fca3 938 struct device_node *dn;
f631acd3 939 struct eeh_dev *edev;
56b0fca3 940
2ec5a0ad 941 if (!dev || !eeh_enabled())
1da177e4
LT
942 return;
943
57b066ff 944 pr_debug("EEH: Adding device %s\n", pci_name(dev));
1da177e4 945
56b0fca3 946 dn = pci_device_to_OF_node(dev);
2ef822c5 947 edev = of_node_to_eeh_dev(dn);
f631acd3 948 if (edev->pdev == dev) {
57b066ff
BH
949 pr_debug("EEH: Already referenced !\n");
950 return;
951 }
f5c57710
GS
952
953 /*
954 * The EEH cache might not be removed correctly because of
955 * unbalanced kref to the device during unplug time, which
956 * relies on pcibios_release_device(). So we have to remove
957 * that here explicitly.
958 */
959 if (edev->pdev) {
960 eeh_rmv_from_parent_pe(edev);
961 eeh_addr_cache_rmv_dev(edev->pdev);
962 eeh_sysfs_remove_device(edev->pdev);
ab55d218 963 edev->mode &= ~EEH_DEV_SYSFS;
f5c57710 964
f26c7a03
GS
965 /*
966 * We definitely should have the PCI device removed
967 * though it wasn't correctly. So we needn't call
968 * into error handler afterwards.
969 */
970 edev->mode |= EEH_DEV_NO_HANDLER;
971
f5c57710
GS
972 edev->pdev = NULL;
973 dev->dev.archdata.edev = NULL;
974 }
57b066ff 975
f631acd3
GS
976 edev->pdev = dev;
977 dev->dev.archdata.edev = edev;
56b0fca3 978
26a74850
GS
979 /*
980 * We have to do the EEH probe here because the PCI device
981 * hasn't been created yet in the early stage.
982 */
983 if (eeh_probe_mode_dev())
984 eeh_ops->dev_probe(dev, NULL);
985
3ab96a02 986 eeh_addr_cache_insert_dev(dev);
1da177e4 987}
794e085e 988
cb3bc9d0
GS
989/**
990 * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
991 * @bus: PCI bus
992 *
993 * This routine must be used to perform EEH initialization for PCI
994 * devices which are attached to the indicated PCI bus. The PCI bus
995 * is added after system boot through hotplug or dlpar.
996 */
794e085e
NF
997void eeh_add_device_tree_late(struct pci_bus *bus)
998{
999 struct pci_dev *dev;
1000
1001 list_for_each_entry(dev, &bus->devices, bus_list) {
a84f273c
GS
1002 eeh_add_device_late(dev);
1003 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1004 struct pci_bus *subbus = dev->subordinate;
1005 if (subbus)
1006 eeh_add_device_tree_late(subbus);
1007 }
794e085e
NF
1008 }
1009}
1010EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
1da177e4 1011
6a040ce7
TLSC
1012/**
1013 * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
1014 * @bus: PCI bus
1015 *
1016 * This routine must be used to add EEH sysfs files for PCI
1017 * devices which are attached to the indicated PCI bus. The PCI bus
1018 * is added after system boot through hotplug or dlpar.
1019 */
1020void eeh_add_sysfs_files(struct pci_bus *bus)
1021{
1022 struct pci_dev *dev;
1023
1024 list_for_each_entry(dev, &bus->devices, bus_list) {
1025 eeh_sysfs_add_device(dev);
1026 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1027 struct pci_bus *subbus = dev->subordinate;
1028 if (subbus)
1029 eeh_add_sysfs_files(subbus);
1030 }
1031 }
1032}
1033EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
1034
1da177e4 1035/**
cb3bc9d0 1036 * eeh_remove_device - Undo EEH setup for the indicated pci device
1da177e4
LT
1037 * @dev: pci device to be removed
1038 *
794e085e
NF
1039 * This routine should be called when a device is removed from
1040 * a running system (e.g. by hotplug or dlpar). It unregisters
1041 * the PCI device from the EEH subsystem. I/O errors affecting
1042 * this device will no longer be detected after this call; thus,
1043 * i/o errors affecting this slot may leave this device unusable.
1da177e4 1044 */
807a827d 1045void eeh_remove_device(struct pci_dev *dev)
1da177e4 1046{
f631acd3
GS
1047 struct eeh_dev *edev;
1048
2ec5a0ad 1049 if (!dev || !eeh_enabled())
1da177e4 1050 return;
f631acd3 1051 edev = pci_dev_to_eeh_dev(dev);
1da177e4
LT
1052
1053 /* Unregister the device with the EEH/PCI address search system */
57b066ff 1054 pr_debug("EEH: Removing device %s\n", pci_name(dev));
56b0fca3 1055
f5c57710 1056 if (!edev || !edev->pdev || !edev->pe) {
57b066ff
BH
1057 pr_debug("EEH: Not referenced !\n");
1058 return;
b055a9e1 1059 }
f5c57710
GS
1060
1061 /*
1062 * During the hotplug for EEH error recovery, we need the EEH
1063 * device attached to the parent PE in order for BAR restore
1064 * a bit later. So we keep it for BAR restore and remove it
1065 * from the parent PE during the BAR resotre.
1066 */
f631acd3
GS
1067 edev->pdev = NULL;
1068 dev->dev.archdata.edev = NULL;
f5c57710
GS
1069 if (!(edev->pe->state & EEH_PE_KEEP))
1070 eeh_rmv_from_parent_pe(edev);
1071 else
1072 edev->mode |= EEH_DEV_DISCONNECTED;
57b066ff 1073
f26c7a03
GS
1074 /*
1075 * We're removing from the PCI subsystem, that means
1076 * the PCI device driver can't support EEH or not
1077 * well. So we rely on hotplug completely to do recovery
1078 * for the specific PCI device.
1079 */
1080 edev->mode |= EEH_DEV_NO_HANDLER;
1081
3ab96a02 1082 eeh_addr_cache_rmv_dev(dev);
57b066ff 1083 eeh_sysfs_remove_device(dev);
ab55d218 1084 edev->mode &= ~EEH_DEV_SYSFS;
1da177e4 1085}
1da177e4
LT
1086
1087static int proc_eeh_show(struct seq_file *m, void *v)
1088{
2ec5a0ad 1089 if (!eeh_enabled()) {
1da177e4 1090 seq_printf(m, "EEH Subsystem is globally disabled\n");
e575f8db 1091 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
1da177e4
LT
1092 } else {
1093 seq_printf(m, "EEH Subsystem is enabled\n");
177bc936 1094 seq_printf(m,
e575f8db
GS
1095 "no device=%llu\n"
1096 "no device node=%llu\n"
1097 "no config address=%llu\n"
1098 "check not wanted=%llu\n"
1099 "eeh_total_mmio_ffs=%llu\n"
1100 "eeh_false_positives=%llu\n"
1101 "eeh_slot_resets=%llu\n",
1102 eeh_stats.no_device,
1103 eeh_stats.no_dn,
1104 eeh_stats.no_cfg_addr,
1105 eeh_stats.ignored_check,
1106 eeh_stats.total_mmio_ffs,
1107 eeh_stats.false_positives,
1108 eeh_stats.slot_resets);
1da177e4
LT
1109 }
1110
1111 return 0;
1112}
1113
1114static int proc_eeh_open(struct inode *inode, struct file *file)
1115{
1116 return single_open(file, proc_eeh_show, NULL);
1117}
1118
5dfe4c96 1119static const struct file_operations proc_eeh_operations = {
1da177e4
LT
1120 .open = proc_eeh_open,
1121 .read = seq_read,
1122 .llseek = seq_lseek,
1123 .release = single_release,
1124};
1125
1126static int __init eeh_init_proc(void)
1127{
144136dd 1128 if (machine_is(pseries) || machine_is(powernv))
8feaa434 1129 proc_create("powerpc/eeh", 0, NULL, &proc_eeh_operations);
1da177e4
LT
1130 return 0;
1131}
1132__initcall(eeh_init_proc);