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