1
2
3
4
5
6
7
8
9#include <linux/module.h>
10#include <linux/edac.h>
11#include <linux/slab.h>
12#include <linux/ctype.h>
13
14#include "edac_core.h"
15#include "edac_module.h"
16
17#define EDAC_PCI_SYMLINK "device"
18
19
20static int check_pci_errors;
21static int edac_pci_panic_on_pe;
22static int edac_pci_log_pe = 1;
23static int edac_pci_log_npe = 1;
24static int edac_pci_poll_msec = 1000;
25
26static atomic_t pci_parity_count = ATOMIC_INIT(0);
27static atomic_t pci_nonparity_count = ATOMIC_INIT(0);
28
29static struct kobject *edac_pci_top_main_kobj;
30static atomic_t edac_pci_sysfs_refcount = ATOMIC_INIT(0);
31
32
33int edac_pci_get_check_errors(void)
34{
35 return check_pci_errors;
36}
37
38static int edac_pci_get_log_pe(void)
39{
40 return edac_pci_log_pe;
41}
42
43static int edac_pci_get_log_npe(void)
44{
45 return edac_pci_log_npe;
46}
47
48static int edac_pci_get_panic_on_pe(void)
49{
50 return edac_pci_panic_on_pe;
51}
52
53int edac_pci_get_poll_msec(void)
54{
55 return edac_pci_poll_msec;
56}
57
58
59static ssize_t instance_pe_count_show(struct edac_pci_ctl_info *pci, char *data)
60{
61 return sprintf(data, "%u\n", atomic_read(&pci->counters.pe_count));
62}
63
64static ssize_t instance_npe_count_show(struct edac_pci_ctl_info *pci,
65 char *data)
66{
67 return sprintf(data, "%u\n", atomic_read(&pci->counters.npe_count));
68}
69
70#define to_instance(k) container_of(k, struct edac_pci_ctl_info, kobj)
71#define to_instance_attr(a) container_of(a, struct instance_attribute, attr)
72
73
74static void edac_pci_instance_release(struct kobject *kobj)
75{
76 struct edac_pci_ctl_info *pci;
77
78 edac_dbg(0, "\n");
79
80
81 pci = to_instance(kobj);
82
83
84 kobject_put(edac_pci_top_main_kobj);
85
86 kfree(pci);
87}
88
89
90struct instance_attribute {
91 struct attribute attr;
92 ssize_t(*show) (struct edac_pci_ctl_info *, char *);
93 ssize_t(*store) (struct edac_pci_ctl_info *, const char *, size_t);
94};
95
96
97static ssize_t edac_pci_instance_show(struct kobject *kobj,
98 struct attribute *attr, char *buffer)
99{
100 struct edac_pci_ctl_info *pci = to_instance(kobj);
101 struct instance_attribute *instance_attr = to_instance_attr(attr);
102
103 if (instance_attr->show)
104 return instance_attr->show(pci, buffer);
105 return -EIO;
106}
107
108
109static ssize_t edac_pci_instance_store(struct kobject *kobj,
110 struct attribute *attr,
111 const char *buffer, size_t count)
112{
113 struct edac_pci_ctl_info *pci = to_instance(kobj);
114 struct instance_attribute *instance_attr = to_instance_attr(attr);
115
116 if (instance_attr->store)
117 return instance_attr->store(pci, buffer, count);
118 return -EIO;
119}
120
121
122static const struct sysfs_ops pci_instance_ops = {
123 .show = edac_pci_instance_show,
124 .store = edac_pci_instance_store
125};
126
127#define INSTANCE_ATTR(_name, _mode, _show, _store) \
128static struct instance_attribute attr_instance_##_name = { \
129 .attr = {.name = __stringify(_name), .mode = _mode }, \
130 .show = _show, \
131 .store = _store, \
132};
133
134INSTANCE_ATTR(pe_count, S_IRUGO, instance_pe_count_show, NULL);
135INSTANCE_ATTR(npe_count, S_IRUGO, instance_npe_count_show, NULL);
136
137
138static struct instance_attribute *pci_instance_attr[] = {
139 &attr_instance_pe_count,
140 &attr_instance_npe_count,
141 NULL
142};
143
144
145static struct kobj_type ktype_pci_instance = {
146 .release = edac_pci_instance_release,
147 .sysfs_ops = &pci_instance_ops,
148 .default_attrs = (struct attribute **)pci_instance_attr,
149};
150
151
152
153
154
155
156static int edac_pci_create_instance_kobj(struct edac_pci_ctl_info *pci, int idx)
157{
158 struct kobject *main_kobj;
159 int err;
160
161 edac_dbg(0, "\n");
162
163
164
165
166
167 main_kobj = kobject_get(edac_pci_top_main_kobj);
168 if (!main_kobj) {
169 err = -ENODEV;
170 goto error_out;
171 }
172
173
174 err = kobject_init_and_add(&pci->kobj, &ktype_pci_instance,
175 edac_pci_top_main_kobj, "pci%d", idx);
176 if (err != 0) {
177 edac_dbg(2, "failed to register instance pci%d\n", idx);
178 kobject_put(edac_pci_top_main_kobj);
179 goto error_out;
180 }
181
182 kobject_uevent(&pci->kobj, KOBJ_ADD);
183 edac_dbg(1, "Register instance 'pci%d' kobject\n", idx);
184
185 return 0;
186
187
188error_out:
189 return err;
190}
191
192
193
194
195
196
197static void edac_pci_unregister_sysfs_instance_kobj(
198 struct edac_pci_ctl_info *pci)
199{
200 edac_dbg(0, "\n");
201
202
203
204
205
206 kobject_put(&pci->kobj);
207}
208
209
210#define to_edacpci(k) container_of(k, struct edac_pci_ctl_info, kobj)
211#define to_edacpci_attr(a) container_of(a, struct edac_pci_attr, attr)
212
213
214static ssize_t edac_pci_int_show(void *ptr, char *buffer)
215{
216 int *value = ptr;
217 return sprintf(buffer, "%d\n", *value);
218}
219
220static ssize_t edac_pci_int_store(void *ptr, const char *buffer, size_t count)
221{
222 int *value = ptr;
223
224 if (isdigit(*buffer))
225 *value = simple_strtoul(buffer, NULL, 0);
226
227 return count;
228}
229
230struct edac_pci_dev_attribute {
231 struct attribute attr;
232 void *value;
233 ssize_t(*show) (void *, char *);
234 ssize_t(*store) (void *, const char *, size_t);
235};
236
237
238static ssize_t edac_pci_dev_show(struct kobject *kobj, struct attribute *attr,
239 char *buffer)
240{
241 struct edac_pci_dev_attribute *edac_pci_dev;
242 edac_pci_dev = (struct edac_pci_dev_attribute *)attr;
243
244 if (edac_pci_dev->show)
245 return edac_pci_dev->show(edac_pci_dev->value, buffer);
246 return -EIO;
247}
248
249static ssize_t edac_pci_dev_store(struct kobject *kobj,
250 struct attribute *attr, const char *buffer,
251 size_t count)
252{
253 struct edac_pci_dev_attribute *edac_pci_dev;
254 edac_pci_dev = (struct edac_pci_dev_attribute *)attr;
255
256 if (edac_pci_dev->store)
257 return edac_pci_dev->store(edac_pci_dev->value, buffer, count);
258 return -EIO;
259}
260
261static const struct sysfs_ops edac_pci_sysfs_ops = {
262 .show = edac_pci_dev_show,
263 .store = edac_pci_dev_store
264};
265
266#define EDAC_PCI_ATTR(_name,_mode,_show,_store) \
267static struct edac_pci_dev_attribute edac_pci_attr_##_name = { \
268 .attr = {.name = __stringify(_name), .mode = _mode }, \
269 .value = &_name, \
270 .show = _show, \
271 .store = _store, \
272};
273
274#define EDAC_PCI_STRING_ATTR(_name,_data,_mode,_show,_store) \
275static struct edac_pci_dev_attribute edac_pci_attr_##_name = { \
276 .attr = {.name = __stringify(_name), .mode = _mode }, \
277 .value = _data, \
278 .show = _show, \
279 .store = _store, \
280};
281
282
283EDAC_PCI_ATTR(check_pci_errors, S_IRUGO | S_IWUSR, edac_pci_int_show,
284 edac_pci_int_store);
285EDAC_PCI_ATTR(edac_pci_log_pe, S_IRUGO | S_IWUSR, edac_pci_int_show,
286 edac_pci_int_store);
287EDAC_PCI_ATTR(edac_pci_log_npe, S_IRUGO | S_IWUSR, edac_pci_int_show,
288 edac_pci_int_store);
289EDAC_PCI_ATTR(edac_pci_panic_on_pe, S_IRUGO | S_IWUSR, edac_pci_int_show,
290 edac_pci_int_store);
291EDAC_PCI_ATTR(pci_parity_count, S_IRUGO, edac_pci_int_show, NULL);
292EDAC_PCI_ATTR(pci_nonparity_count, S_IRUGO, edac_pci_int_show, NULL);
293
294
295static struct edac_pci_dev_attribute *edac_pci_attr[] = {
296 &edac_pci_attr_check_pci_errors,
297 &edac_pci_attr_edac_pci_log_pe,
298 &edac_pci_attr_edac_pci_log_npe,
299 &edac_pci_attr_edac_pci_panic_on_pe,
300 &edac_pci_attr_pci_parity_count,
301 &edac_pci_attr_pci_nonparity_count,
302 NULL,
303};
304
305
306
307
308
309
310
311
312
313
314static void edac_pci_release_main_kobj(struct kobject *kobj)
315{
316 edac_dbg(0, "here to module_put(THIS_MODULE)\n");
317
318 kfree(kobj);
319
320
321
322
323 module_put(THIS_MODULE);
324}
325
326
327static struct kobj_type ktype_edac_pci_main_kobj = {
328 .release = edac_pci_release_main_kobj,
329 .sysfs_ops = &edac_pci_sysfs_ops,
330 .default_attrs = (struct attribute **)edac_pci_attr,
331};
332
333
334
335
336static int edac_pci_main_kobj_setup(void)
337{
338 int err;
339 struct bus_type *edac_subsys;
340
341 edac_dbg(0, "\n");
342
343
344 if (atomic_inc_return(&edac_pci_sysfs_refcount) != 1)
345 return 0;
346
347
348
349
350 edac_subsys = edac_get_sysfs_subsys();
351
352
353
354
355
356 if (!try_module_get(THIS_MODULE)) {
357 edac_dbg(1, "try_module_get() failed\n");
358 err = -ENODEV;
359 goto decrement_count_fail;
360 }
361
362 edac_pci_top_main_kobj = kzalloc(sizeof(struct kobject), GFP_KERNEL);
363 if (!edac_pci_top_main_kobj) {
364 edac_dbg(1, "Failed to allocate\n");
365 err = -ENOMEM;
366 goto kzalloc_fail;
367 }
368
369
370 err = kobject_init_and_add(edac_pci_top_main_kobj,
371 &ktype_edac_pci_main_kobj,
372 &edac_subsys->dev_root->kobj, "pci");
373 if (err) {
374 edac_dbg(1, "Failed to register '.../edac/pci'\n");
375 goto kobject_init_and_add_fail;
376 }
377
378
379
380
381
382 kobject_uevent(edac_pci_top_main_kobj, KOBJ_ADD);
383 edac_dbg(1, "Registered '.../edac/pci' kobject\n");
384
385 return 0;
386
387
388kobject_init_and_add_fail:
389 kfree(edac_pci_top_main_kobj);
390
391kzalloc_fail:
392 module_put(THIS_MODULE);
393
394decrement_count_fail:
395
396 atomic_dec(&edac_pci_sysfs_refcount);
397
398 return err;
399}
400
401
402
403
404
405
406
407static void edac_pci_main_kobj_teardown(void)
408{
409 edac_dbg(0, "\n");
410
411
412
413
414
415 if (atomic_dec_return(&edac_pci_sysfs_refcount) == 0) {
416 edac_dbg(0, "called kobject_put on main kobj\n");
417 kobject_put(edac_pci_top_main_kobj);
418 }
419}
420
421
422
423
424
425
426
427int edac_pci_create_sysfs(struct edac_pci_ctl_info *pci)
428{
429 int err;
430 struct kobject *edac_kobj = &pci->kobj;
431
432 edac_dbg(0, "idx=%d\n", pci->pci_idx);
433
434
435 err = edac_pci_main_kobj_setup();
436 if (err)
437 return err;
438
439
440 err = edac_pci_create_instance_kobj(pci, pci->pci_idx);
441 if (err)
442 goto unregister_cleanup;
443
444 err = sysfs_create_link(edac_kobj, &pci->dev->kobj, EDAC_PCI_SYMLINK);
445 if (err) {
446 edac_dbg(0, "sysfs_create_link() returned err= %d\n", err);
447 goto symlink_fail;
448 }
449
450 return 0;
451
452
453symlink_fail:
454 edac_pci_unregister_sysfs_instance_kobj(pci);
455
456unregister_cleanup:
457 edac_pci_main_kobj_teardown();
458
459 return err;
460}
461
462
463
464
465
466
467void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci)
468{
469 edac_dbg(0, "index=%d\n", pci->pci_idx);
470
471
472 sysfs_remove_link(&pci->kobj, EDAC_PCI_SYMLINK);
473
474
475 edac_pci_unregister_sysfs_instance_kobj(pci);
476
477
478
479
480
481 edac_dbg(0, "calling edac_pci_main_kobj_teardown()\n");
482 edac_pci_main_kobj_teardown();
483}
484
485
486static u16 get_pci_parity_status(struct pci_dev *dev, int secondary)
487{
488 int where;
489 u16 status;
490
491 where = secondary ? PCI_SEC_STATUS : PCI_STATUS;
492 pci_read_config_word(dev, where, &status);
493
494
495
496
497
498
499 if (status == 0xFFFF) {
500 u32 sanity;
501
502 pci_read_config_dword(dev, 0, &sanity);
503
504 if (sanity == 0xFFFFFFFF)
505 return 0;
506 }
507
508 status &= PCI_STATUS_DETECTED_PARITY | PCI_STATUS_SIG_SYSTEM_ERROR |
509 PCI_STATUS_PARITY;
510
511 if (status)
512
513 pci_write_config_word(dev, where, status);
514
515 return status;
516}
517
518
519
520static void edac_pci_dev_parity_clear(struct pci_dev *dev)
521{
522 u8 header_type;
523
524 get_pci_parity_status(dev, 0);
525
526
527 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
528
529 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE)
530 get_pci_parity_status(dev, 1);
531}
532
533
534
535
536
537
538
539
540static void edac_pci_dev_parity_test(struct pci_dev *dev)
541{
542 unsigned long flags;
543 u16 status;
544 u8 header_type;
545
546
547 local_irq_save(flags);
548
549
550 status = get_pci_parity_status(dev, 0);
551
552
553 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
554
555 local_irq_restore(flags);
556
557 edac_dbg(4, "PCI STATUS= 0x%04x %s\n", status, dev_name(&dev->dev));
558
559
560
561
562 if (status && !dev->broken_parity_status) {
563 if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) {
564 edac_printk(KERN_CRIT, EDAC_PCI,
565 "Signaled System Error on %s\n",
566 pci_name(dev));
567 atomic_inc(&pci_nonparity_count);
568 }
569
570 if (status & (PCI_STATUS_PARITY)) {
571 edac_printk(KERN_CRIT, EDAC_PCI,
572 "Master Data Parity Error on %s\n",
573 pci_name(dev));
574
575 atomic_inc(&pci_parity_count);
576 }
577
578 if (status & (PCI_STATUS_DETECTED_PARITY)) {
579 edac_printk(KERN_CRIT, EDAC_PCI,
580 "Detected Parity Error on %s\n",
581 pci_name(dev));
582
583 atomic_inc(&pci_parity_count);
584 }
585 }
586
587
588 edac_dbg(4, "PCI HEADER TYPE= 0x%02x %s\n",
589 header_type, dev_name(&dev->dev));
590
591 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) {
592
593 status = get_pci_parity_status(dev, 1);
594
595 edac_dbg(4, "PCI SEC_STATUS= 0x%04x %s\n",
596 status, dev_name(&dev->dev));
597
598
599
600
601 if (status && !dev->broken_parity_status) {
602 if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) {
603 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
604 "Signaled System Error on %s\n",
605 pci_name(dev));
606 atomic_inc(&pci_nonparity_count);
607 }
608
609 if (status & (PCI_STATUS_PARITY)) {
610 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
611 "Master Data Parity Error on "
612 "%s\n", pci_name(dev));
613
614 atomic_inc(&pci_parity_count);
615 }
616
617 if (status & (PCI_STATUS_DETECTED_PARITY)) {
618 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
619 "Detected Parity Error on %s\n",
620 pci_name(dev));
621
622 atomic_inc(&pci_parity_count);
623 }
624 }
625 }
626}
627
628
629typedef void (*pci_parity_check_fn_t) (struct pci_dev *dev);
630
631
632
633
634
635
636
637static inline void edac_pci_dev_parity_iterator(pci_parity_check_fn_t fn)
638{
639 struct pci_dev *dev = NULL;
640
641 for_each_pci_dev(dev)
642 fn(dev);
643}
644
645
646
647
648
649
650void edac_pci_do_parity_check(void)
651{
652 int before_count;
653
654 edac_dbg(3, "\n");
655
656
657 if (!check_pci_errors)
658 return;
659
660 before_count = atomic_read(&pci_parity_count);
661
662
663
664
665
666
667 edac_pci_dev_parity_iterator(edac_pci_dev_parity_test);
668
669
670 if (edac_pci_get_panic_on_pe()) {
671
672 if (before_count != atomic_read(&pci_parity_count))
673 panic("EDAC: PCI Parity Error");
674 }
675}
676
677
678
679
680
681
682
683void edac_pci_clear_parity_errors(void)
684{
685
686
687
688 edac_pci_dev_parity_iterator(edac_pci_dev_parity_clear);
689}
690
691
692
693
694
695
696void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg)
697{
698
699
700 atomic_inc(&pci->counters.pe_count);
701
702 if (edac_pci_get_log_pe())
703 edac_pci_printk(pci, KERN_WARNING,
704 "Parity Error ctl: %s %d: %s\n",
705 pci->ctl_name, pci->pci_idx, msg);
706
707
708
709
710
711 edac_pci_do_parity_check();
712}
713EXPORT_SYMBOL_GPL(edac_pci_handle_pe);
714
715
716
717
718
719
720
721void edac_pci_handle_npe(struct edac_pci_ctl_info *pci, const char *msg)
722{
723
724
725 atomic_inc(&pci->counters.npe_count);
726
727 if (edac_pci_get_log_npe())
728 edac_pci_printk(pci, KERN_WARNING,
729 "Non-Parity Error ctl: %s %d: %s\n",
730 pci->ctl_name, pci->pci_idx, msg);
731
732
733
734
735
736 edac_pci_do_parity_check();
737}
738EXPORT_SYMBOL_GPL(edac_pci_handle_npe);
739
740
741
742
743module_param(check_pci_errors, int, 0644);
744MODULE_PARM_DESC(check_pci_errors,
745 "Check for PCI bus parity errors: 0=off 1=on");
746module_param(edac_pci_panic_on_pe, int, 0644);
747MODULE_PARM_DESC(edac_pci_panic_on_pe,
748 "Panic on PCI Bus Parity error: 0=off 1=on");
749