blob: 69f5dddabddfcfcb0294e374c42bf70c3104c89f [file] [log] [blame]
Douglas Thompson20bcb7a2007-07-19 01:49:47 -07001/*
Douglas Thompson7c9281d2007-07-19 01:49:33 -07002 * (C) 2005, 2006 Linux Networx (http://lnxi.com)
3 * This file may be distributed under the terms of the
4 * GNU General Public License.
5 *
6 * Written Doug Thompson <norsk5@xmission.com>
7 *
8 */
9#include <linux/module.h>
10#include <linux/sysdev.h>
11#include <linux/ctype.h>
12
Douglas Thompson20bcb7a2007-07-19 01:49:47 -070013#include "edac_core.h"
Douglas Thompson7c9281d2007-07-19 01:49:33 -070014#include "edac_module.h"
15
Doug Thompsond4c14652007-07-26 10:41:15 -070016/* Turn off this whole feature if PCI is not configured */
Douglas Thompson7c9281d2007-07-19 01:49:33 -070017#ifdef CONFIG_PCI
Dave Jiang91b99042007-07-19 01:49:52 -070018
19#define EDAC_PCI_SYMLINK "device"
20
Doug Thompsond4c14652007-07-26 10:41:15 -070021/* data variables exported via sysfs */
22static int check_pci_errors; /* default NO check PCI parity */
23static int edac_pci_panic_on_pe; /* default NO panic on PCI Parity */
24static int edac_pci_log_pe = 1; /* log PCI parity errors */
Dave Jiang4de78c62007-07-19 01:49:54 -070025static int edac_pci_log_npe = 1; /* log PCI non-parity error errors */
Doug Thompsond4c14652007-07-26 10:41:15 -070026static int edac_pci_poll_msec = 1000; /* one second workq period */
27
Douglas Thompson7c9281d2007-07-19 01:49:33 -070028static atomic_t pci_parity_count = ATOMIC_INIT(0);
Dave Jiang91b99042007-07-19 01:49:52 -070029static atomic_t pci_nonparity_count = ATOMIC_INIT(0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070030
Doug Thompsond4c14652007-07-26 10:41:15 -070031static struct kobject edac_pci_top_main_kobj;
Dave Jiang91b99042007-07-19 01:49:52 -070032static atomic_t edac_pci_sysfs_refcount = ATOMIC_INIT(0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070033
Doug Thompsond4c14652007-07-26 10:41:15 -070034/* getter functions for the data variables */
Dave Jiang4de78c62007-07-19 01:49:54 -070035int edac_pci_get_check_errors(void)
36{
37 return check_pci_errors;
38}
39
40int edac_pci_get_log_pe(void)
41{
42 return edac_pci_log_pe;
43}
44
45int edac_pci_get_log_npe(void)
46{
47 return edac_pci_log_npe;
48}
49
50int edac_pci_get_panic_on_pe(void)
51{
52 return edac_pci_panic_on_pe;
53}
54
55int edac_pci_get_poll_msec(void)
56{
57 return edac_pci_poll_msec;
58}
59
Dave Jiang91b99042007-07-19 01:49:52 -070060/**************************** EDAC PCI sysfs instance *******************/
61static ssize_t instance_pe_count_show(struct edac_pci_ctl_info *pci, char *data)
62{
Douglas Thompson079708b2007-07-19 01:49:58 -070063 return sprintf(data, "%u\n", atomic_read(&pci->counters.pe_count));
Dave Jiang91b99042007-07-19 01:49:52 -070064}
65
66static ssize_t instance_npe_count_show(struct edac_pci_ctl_info *pci,
Douglas Thompson052dfb42007-07-19 01:50:13 -070067 char *data)
Dave Jiang91b99042007-07-19 01:49:52 -070068{
Douglas Thompson079708b2007-07-19 01:49:58 -070069 return sprintf(data, "%u\n", atomic_read(&pci->counters.npe_count));
Dave Jiang91b99042007-07-19 01:49:52 -070070}
71
72#define to_instance(k) container_of(k, struct edac_pci_ctl_info, kobj)
73#define to_instance_attr(a) container_of(a, struct instance_attribute, attr)
74
75/* DEVICE instance kobject release() function */
76static void edac_pci_instance_release(struct kobject *kobj)
77{
78 struct edac_pci_ctl_info *pci;
79
Doug Thompsond4c14652007-07-26 10:41:15 -070080 debugf0("%s()\n", __func__);
Dave Jiang91b99042007-07-19 01:49:52 -070081
Doug Thompsond4c14652007-07-26 10:41:15 -070082 /* Form pointer to containing struct, the pci control struct */
Dave Jiang91b99042007-07-19 01:49:52 -070083 pci = to_instance(kobj);
Doug Thompsond4c14652007-07-26 10:41:15 -070084
85 /* decrement reference count on top main kobj */
86 kobject_put(&edac_pci_top_main_kobj);
87
88 kfree(pci); /* Free the control struct */
Dave Jiang91b99042007-07-19 01:49:52 -070089}
90
91/* instance specific attribute structure */
92struct instance_attribute {
Douglas Thompson079708b2007-07-19 01:49:58 -070093 struct attribute attr;
Doug Thompsond4c14652007-07-26 10:41:15 -070094 ssize_t(*show) (struct edac_pci_ctl_info *, char *);
95 ssize_t(*store) (struct edac_pci_ctl_info *, const char *, size_t);
Dave Jiang91b99042007-07-19 01:49:52 -070096};
97
98/* Function to 'show' fields from the edac_pci 'instance' structure */
99static ssize_t edac_pci_instance_show(struct kobject *kobj,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700100 struct attribute *attr, char *buffer)
Dave Jiang91b99042007-07-19 01:49:52 -0700101{
Douglas Thompson079708b2007-07-19 01:49:58 -0700102 struct edac_pci_ctl_info *pci = to_instance(kobj);
103 struct instance_attribute *instance_attr = to_instance_attr(attr);
Dave Jiang91b99042007-07-19 01:49:52 -0700104
Douglas Thompson079708b2007-07-19 01:49:58 -0700105 if (instance_attr->show)
106 return instance_attr->show(pci, buffer);
107 return -EIO;
Dave Jiang91b99042007-07-19 01:49:52 -0700108}
109
Dave Jiang91b99042007-07-19 01:49:52 -0700110/* Function to 'store' fields into the edac_pci 'instance' structure */
111static ssize_t edac_pci_instance_store(struct kobject *kobj,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700112 struct attribute *attr,
113 const char *buffer, size_t count)
Dave Jiang91b99042007-07-19 01:49:52 -0700114{
Douglas Thompson079708b2007-07-19 01:49:58 -0700115 struct edac_pci_ctl_info *pci = to_instance(kobj);
116 struct instance_attribute *instance_attr = to_instance_attr(attr);
Dave Jiang91b99042007-07-19 01:49:52 -0700117
Douglas Thompson079708b2007-07-19 01:49:58 -0700118 if (instance_attr->store)
119 return instance_attr->store(pci, buffer, count);
120 return -EIO;
Dave Jiang91b99042007-07-19 01:49:52 -0700121}
122
Doug Thompsond4c14652007-07-26 10:41:15 -0700123/* fs_ops table */
Dave Jiang91b99042007-07-19 01:49:52 -0700124static struct sysfs_ops pci_instance_ops = {
125 .show = edac_pci_instance_show,
126 .store = edac_pci_instance_store
127};
128
129#define INSTANCE_ATTR(_name, _mode, _show, _store) \
130static struct instance_attribute attr_instance_##_name = { \
131 .attr = {.name = __stringify(_name), .mode = _mode }, \
132 .show = _show, \
133 .store = _store, \
134};
135
136INSTANCE_ATTR(pe_count, S_IRUGO, instance_pe_count_show, NULL);
137INSTANCE_ATTR(npe_count, S_IRUGO, instance_npe_count_show, NULL);
138
139/* pci instance attributes */
140static struct instance_attribute *pci_instance_attr[] = {
141 &attr_instance_pe_count,
142 &attr_instance_npe_count,
143 NULL
144};
145
Doug Thompsond4c14652007-07-26 10:41:15 -0700146/* the ktype for a pci instance */
Dave Jiang91b99042007-07-19 01:49:52 -0700147static struct kobj_type ktype_pci_instance = {
148 .release = edac_pci_instance_release,
149 .sysfs_ops = &pci_instance_ops,
150 .default_attrs = (struct attribute **)pci_instance_attr,
151};
152
Doug Thompsond4c14652007-07-26 10:41:15 -0700153/*
154 * edac_pci_create_instance_kobj
155 *
156 * construct one EDAC PCI instance's kobject for use
157 */
Dave Jiang91b99042007-07-19 01:49:52 -0700158static int edac_pci_create_instance_kobj(struct edac_pci_ctl_info *pci, int idx)
159{
Doug Thompsond4c14652007-07-26 10:41:15 -0700160 struct kobject *main_kobj;
Dave Jiang91b99042007-07-19 01:49:52 -0700161 int err;
162
Doug Thompsond4c14652007-07-26 10:41:15 -0700163 debugf0("%s()\n", __func__);
164
165 /* Set the parent and the instance's ktype */
166 pci->kobj.parent = &edac_pci_top_main_kobj;
Dave Jiang91b99042007-07-19 01:49:52 -0700167 pci->kobj.ktype = &ktype_pci_instance;
168
169 err = kobject_set_name(&pci->kobj, "pci%d", idx);
170 if (err)
171 return err;
172
Doug Thompsond4c14652007-07-26 10:41:15 -0700173 /* First bump the ref count on the top main kobj, which will
174 * track the number of PCI instances we have, and thus nest
175 * properly on keeping the module loaded
176 */
177 main_kobj = kobject_get(&edac_pci_top_main_kobj);
178 if (!main_kobj) {
179 err = -ENODEV;
180 goto error_out;
181 }
182
183 /* And now register this new kobject under the main kobj */
Dave Jiang91b99042007-07-19 01:49:52 -0700184 err = kobject_register(&pci->kobj);
185 if (err != 0) {
186 debugf2("%s() failed to register instance pci%d\n",
Douglas Thompson079708b2007-07-19 01:49:58 -0700187 __func__, idx);
Doug Thompsond4c14652007-07-26 10:41:15 -0700188 kobject_put(&edac_pci_top_main_kobj);
189 goto error_out;
Dave Jiang91b99042007-07-19 01:49:52 -0700190 }
191
192 debugf1("%s() Register instance 'pci%d' kobject\n", __func__, idx);
193
194 return 0;
Doug Thompsond4c14652007-07-26 10:41:15 -0700195
196 /* Error unwind statck */
197error_out:
198 return err;
Dave Jiang91b99042007-07-19 01:49:52 -0700199}
200
Doug Thompsond4c14652007-07-26 10:41:15 -0700201/*
202 * edac_pci_unregister_sysfs_instance_kobj
203 *
204 * unregister the kobj for the EDAC PCI instance
205 */
206void edac_pci_unregister_sysfs_instance_kobj(struct edac_pci_ctl_info *pci)
Dave Jiang91b99042007-07-19 01:49:52 -0700207{
Doug Thompsond4c14652007-07-26 10:41:15 -0700208 debugf0("%s()\n", __func__);
209
210 /* Unregister the instance kobject and allow its release
211 * function release the main reference count and then
212 * kfree the memory
213 */
Dave Jiang91b99042007-07-19 01:49:52 -0700214 kobject_unregister(&pci->kobj);
Dave Jiang91b99042007-07-19 01:49:52 -0700215}
216
217/***************************** EDAC PCI sysfs root **********************/
218#define to_edacpci(k) container_of(k, struct edac_pci_ctl_info, kobj)
219#define to_edacpci_attr(a) container_of(a, struct edac_pci_attr, attr)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700220
Doug Thompsond4c14652007-07-26 10:41:15 -0700221/* simple show/store functions for attributes */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700222static ssize_t edac_pci_int_show(void *ptr, char *buffer)
223{
224 int *value = ptr;
Douglas Thompson079708b2007-07-19 01:49:58 -0700225 return sprintf(buffer, "%d\n", *value);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700226}
227
228static ssize_t edac_pci_int_store(void *ptr, const char *buffer, size_t count)
229{
230 int *value = ptr;
231
232 if (isdigit(*buffer))
Douglas Thompson079708b2007-07-19 01:49:58 -0700233 *value = simple_strtoul(buffer, NULL, 0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700234
235 return count;
236}
237
238struct edac_pci_dev_attribute {
239 struct attribute attr;
240 void *value;
Douglas Thompson079708b2007-07-19 01:49:58 -0700241 ssize_t(*show) (void *, char *);
242 ssize_t(*store) (void *, const char *, size_t);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700243};
244
245/* Set of show/store abstract level functions for PCI Parity object */
246static ssize_t edac_pci_dev_show(struct kobject *kobj, struct attribute *attr,
Douglas Thompson079708b2007-07-19 01:49:58 -0700247 char *buffer)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700248{
249 struct edac_pci_dev_attribute *edac_pci_dev;
Douglas Thompson079708b2007-07-19 01:49:58 -0700250 edac_pci_dev = (struct edac_pci_dev_attribute *)attr;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700251
252 if (edac_pci_dev->show)
253 return edac_pci_dev->show(edac_pci_dev->value, buffer);
254 return -EIO;
255}
256
257static ssize_t edac_pci_dev_store(struct kobject *kobj,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700258 struct attribute *attr, const char *buffer,
259 size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700260{
261 struct edac_pci_dev_attribute *edac_pci_dev;
Douglas Thompson079708b2007-07-19 01:49:58 -0700262 edac_pci_dev = (struct edac_pci_dev_attribute *)attr;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700263
264 if (edac_pci_dev->show)
265 return edac_pci_dev->store(edac_pci_dev->value, buffer, count);
266 return -EIO;
267}
268
269static struct sysfs_ops edac_pci_sysfs_ops = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700270 .show = edac_pci_dev_show,
271 .store = edac_pci_dev_store
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700272};
273
274#define EDAC_PCI_ATTR(_name,_mode,_show,_store) \
275static struct edac_pci_dev_attribute edac_pci_attr_##_name = { \
276 .attr = {.name = __stringify(_name), .mode = _mode }, \
277 .value = &_name, \
278 .show = _show, \
279 .store = _store, \
280};
281
282#define EDAC_PCI_STRING_ATTR(_name,_data,_mode,_show,_store) \
283static struct edac_pci_dev_attribute edac_pci_attr_##_name = { \
284 .attr = {.name = __stringify(_name), .mode = _mode }, \
285 .value = _data, \
286 .show = _show, \
287 .store = _store, \
288};
289
290/* PCI Parity control files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700291EDAC_PCI_ATTR(check_pci_errors, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700292 edac_pci_int_store);
Douglas Thompson079708b2007-07-19 01:49:58 -0700293EDAC_PCI_ATTR(edac_pci_log_pe, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700294 edac_pci_int_store);
Douglas Thompson079708b2007-07-19 01:49:58 -0700295EDAC_PCI_ATTR(edac_pci_log_npe, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700296 edac_pci_int_store);
Douglas Thompson079708b2007-07-19 01:49:58 -0700297EDAC_PCI_ATTR(edac_pci_panic_on_pe, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700298 edac_pci_int_store);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700299EDAC_PCI_ATTR(pci_parity_count, S_IRUGO, edac_pci_int_show, NULL);
Dave Jiang91b99042007-07-19 01:49:52 -0700300EDAC_PCI_ATTR(pci_nonparity_count, S_IRUGO, edac_pci_int_show, NULL);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700301
302/* Base Attributes of the memory ECC object */
303static struct edac_pci_dev_attribute *edac_pci_attr[] = {
Dave Jiang91b99042007-07-19 01:49:52 -0700304 &edac_pci_attr_check_pci_errors,
Dave Jiang4de78c62007-07-19 01:49:54 -0700305 &edac_pci_attr_edac_pci_log_pe,
306 &edac_pci_attr_edac_pci_log_npe,
307 &edac_pci_attr_edac_pci_panic_on_pe,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700308 &edac_pci_attr_pci_parity_count,
Dave Jiang91b99042007-07-19 01:49:52 -0700309 &edac_pci_attr_pci_nonparity_count,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700310 NULL,
311};
312
Doug Thompsond4c14652007-07-26 10:41:15 -0700313/*
314 * edac_pci_release_main_kobj
315 *
316 * This release function is called when the reference count to the
317 * passed kobj goes to zero.
318 *
319 * This kobj is the 'main' kobject that EDAC PCI instances
320 * link to, and thus provide for proper nesting counts
321 */
322static void edac_pci_release_main_kobj(struct kobject *kobj)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700323{
Dave Jiang91b99042007-07-19 01:49:52 -0700324
Doug Thompsond4c14652007-07-26 10:41:15 -0700325 debugf0("%s() here to module_put(THIS_MODULE)\n", __func__);
Dave Jiang91b99042007-07-19 01:49:52 -0700326
Doug Thompsond4c14652007-07-26 10:41:15 -0700327 /* last reference to top EDAC PCI kobject has been removed,
328 * NOW release our ref count on the core module
329 */
330 module_put(THIS_MODULE);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700331}
332
Doug Thompsond4c14652007-07-26 10:41:15 -0700333/* ktype struct for the EDAC PCI main kobj */
334static struct kobj_type ktype_edac_pci_main_kobj = {
335 .release = edac_pci_release_main_kobj,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700336 .sysfs_ops = &edac_pci_sysfs_ops,
Douglas Thompson079708b2007-07-19 01:49:58 -0700337 .default_attrs = (struct attribute **)edac_pci_attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700338};
339
340/**
Doug Thompsond4c14652007-07-26 10:41:15 -0700341 * edac_pci_main_kobj_setup()
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700342 *
343 * setup the sysfs for EDAC PCI attributes
344 * assumes edac_class has already been initialized
345 */
Doug Thompsond4c14652007-07-26 10:41:15 -0700346int edac_pci_main_kobj_setup(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700347{
348 int err;
349 struct sysdev_class *edac_class;
350
Doug Thompsond4c14652007-07-26 10:41:15 -0700351 debugf0("%s()\n", __func__);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700352
Doug Thompsond4c14652007-07-26 10:41:15 -0700353 /* check and count if we have already created the main kobject */
354 if (atomic_inc_return(&edac_pci_sysfs_refcount) != 1)
355 return 0;
356
357 /* First time, so create the main kobject and its
358 * controls and atributes
359 */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700360 edac_class = edac_get_edac_class();
Dave Jiang91b99042007-07-19 01:49:52 -0700361 if (edac_class == NULL) {
362 debugf1("%s() no edac_class\n", __func__);
Doug Thompsond4c14652007-07-26 10:41:15 -0700363 err = -ENODEV;
364 goto decrement_count_fail;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700365 }
366
Doug Thompsond4c14652007-07-26 10:41:15 -0700367 /* Need the kobject hook ups, and name setting */
368 edac_pci_top_main_kobj.ktype = &ktype_edac_pci_main_kobj;
369 edac_pci_top_main_kobj.parent = &edac_class->kset.kobj;
Dave Jiang91b99042007-07-19 01:49:52 -0700370
Doug Thompsond4c14652007-07-26 10:41:15 -0700371 err = kobject_set_name(&edac_pci_top_main_kobj, "pci");
Douglas Thompson079708b2007-07-19 01:49:58 -0700372 if (err)
Doug Thompsond4c14652007-07-26 10:41:15 -0700373 goto decrement_count_fail;
374
375 /* Bump the reference count on this module to ensure the
376 * modules isn't unloaded until we deconstruct the top
377 * level main kobj for EDAC PCI
378 */
379 if (!try_module_get(THIS_MODULE)) {
380 debugf1("%s() try_module_get() failed\n", __func__);
381 err = -ENODEV;
382 goto decrement_count_fail;
383 }
Dave Jiang91b99042007-07-19 01:49:52 -0700384
385 /* Instanstiate the pci object */
386 /* FIXME: maybe new sysdev_create_subdir() */
Doug Thompsond4c14652007-07-26 10:41:15 -0700387 err = kobject_register(&edac_pci_top_main_kobj);
Dave Jiang91b99042007-07-19 01:49:52 -0700388 if (err) {
389 debugf1("Failed to register '.../edac/pci'\n");
Doug Thompsond4c14652007-07-26 10:41:15 -0700390 goto kobject_register_fail;
Dave Jiang91b99042007-07-19 01:49:52 -0700391 }
392
Doug Thompsond4c14652007-07-26 10:41:15 -0700393 /* At this point, to 'release' the top level kobject
394 * for EDAC PCI, then edac_pci_main_kobj_teardown()
395 * must be used, for resources to be cleaned up properly
396 */
Dave Jiang91b99042007-07-19 01:49:52 -0700397 debugf1("Registered '.../edac/pci' kobject\n");
398
399 return 0;
Doug Thompsond4c14652007-07-26 10:41:15 -0700400
401 /* Error unwind statck */
402kobject_register_fail:
403 module_put(THIS_MODULE);
404
405decrement_count_fail:
406 /* if are on this error exit, nothing to tear down */
407 atomic_dec(&edac_pci_sysfs_refcount);
408
409 return err;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700410}
411
412/*
Doug Thompsond4c14652007-07-26 10:41:15 -0700413 * edac_pci_main_kobj_teardown()
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700414 *
Doug Thompsond4c14652007-07-26 10:41:15 -0700415 * if no longer linked (needed) remove the top level EDAC PCI
416 * kobject with its controls and attributes
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700417 */
Doug Thompsond4c14652007-07-26 10:41:15 -0700418static void edac_pci_main_kobj_teardown(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700419{
420 debugf0("%s()\n", __func__);
Doug Thompsond4c14652007-07-26 10:41:15 -0700421
422 /* Decrement the count and only if no more controller instances
423 * are connected perform the unregisteration of the top level
424 * main kobj
425 */
426 if (atomic_dec_return(&edac_pci_sysfs_refcount) == 0) {
427 debugf0("%s() called kobject_unregister on main kobj\n",
428 __func__);
429 kobject_unregister(&edac_pci_top_main_kobj);
430 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700431}
432
Doug Thompsond4c14652007-07-26 10:41:15 -0700433/*
434 *
435 * edac_pci_create_sysfs
436 *
437 * Create the controls/attributes for the specified EDAC PCI device
438 */
Dave Jiang91b99042007-07-19 01:49:52 -0700439int edac_pci_create_sysfs(struct edac_pci_ctl_info *pci)
440{
441 int err;
442 struct kobject *edac_kobj = &pci->kobj;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700443
Dave Jiang91b99042007-07-19 01:49:52 -0700444 debugf0("%s() idx=%d\n", __func__, pci->pci_idx);
445
Doug Thompsond4c14652007-07-26 10:41:15 -0700446 /* create the top main EDAC PCI kobject, IF needed */
447 err = edac_pci_main_kobj_setup();
448 if (err)
449 return err;
450
451 /* Create this instance's kobject under the MAIN kobject */
452 err = edac_pci_create_instance_kobj(pci, pci->pci_idx);
453 if (err)
454 goto unregister_cleanup;
455
Douglas Thompson079708b2007-07-19 01:49:58 -0700456 err = sysfs_create_link(edac_kobj, &pci->dev->kobj, EDAC_PCI_SYMLINK);
Dave Jiang91b99042007-07-19 01:49:52 -0700457 if (err) {
458 debugf0("%s() sysfs_create_link() returned err= %d\n",
Douglas Thompson079708b2007-07-19 01:49:58 -0700459 __func__, err);
Doug Thompsond4c14652007-07-26 10:41:15 -0700460 goto symlink_fail;
Dave Jiang91b99042007-07-19 01:49:52 -0700461 }
462
463 return 0;
Doug Thompsond4c14652007-07-26 10:41:15 -0700464
465 /* Error unwind stack */
466symlink_fail:
467 edac_pci_unregister_sysfs_instance_kobj(pci);
468
469unregister_cleanup:
470 edac_pci_main_kobj_teardown();
471
472 return err;
Dave Jiang91b99042007-07-19 01:49:52 -0700473}
474
Doug Thompsond4c14652007-07-26 10:41:15 -0700475/*
476 * edac_pci_remove_sysfs
477 *
478 * remove the controls and attributes for this EDAC PCI device
479 */
Dave Jiang91b99042007-07-19 01:49:52 -0700480void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci)
481{
Doug Thompsond4c14652007-07-26 10:41:15 -0700482 debugf0("%s() index=%d\n", __func__, pci->pci_idx);
Dave Jiang91b99042007-07-19 01:49:52 -0700483
Doug Thompsond4c14652007-07-26 10:41:15 -0700484 /* Remove the symlink */
Dave Jiang91b99042007-07-19 01:49:52 -0700485 sysfs_remove_link(&pci->kobj, EDAC_PCI_SYMLINK);
486
Doug Thompsond4c14652007-07-26 10:41:15 -0700487 /* remove this PCI instance's sysfs entries */
488 edac_pci_unregister_sysfs_instance_kobj(pci);
489
490 /* Call the main unregister function, which will determine
491 * if this 'pci' is the last instance.
492 * If it is, the main kobject will be unregistered as a result
493 */
494 debugf0("%s() calling edac_pci_main_kobj_teardown()\n", __func__);
495 edac_pci_main_kobj_teardown();
Dave Jiang91b99042007-07-19 01:49:52 -0700496}
497
498/************************ PCI error handling *************************/
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700499static u16 get_pci_parity_status(struct pci_dev *dev, int secondary)
500{
501 int where;
502 u16 status;
503
504 where = secondary ? PCI_SEC_STATUS : PCI_STATUS;
505 pci_read_config_word(dev, where, &status);
506
507 /* If we get back 0xFFFF then we must suspect that the card has been
508 * pulled but the Linux PCI layer has not yet finished cleaning up.
509 * We don't want to report on such devices
510 */
511
512 if (status == 0xFFFF) {
513 u32 sanity;
514
515 pci_read_config_dword(dev, 0, &sanity);
516
517 if (sanity == 0xFFFFFFFF)
518 return 0;
519 }
520
521 status &= PCI_STATUS_DETECTED_PARITY | PCI_STATUS_SIG_SYSTEM_ERROR |
Douglas Thompson052dfb42007-07-19 01:50:13 -0700522 PCI_STATUS_PARITY;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700523
524 if (status)
525 /* reset only the bits we are interested in */
526 pci_write_config_word(dev, where, status);
527
528 return status;
529}
530
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700531
532/* Clear any PCI parity errors logged by this device. */
533static void edac_pci_dev_parity_clear(struct pci_dev *dev)
534{
535 u8 header_type;
536
Doug Thompsond4c14652007-07-26 10:41:15 -0700537 debugf0("%s()\n", __func__);
538
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700539 get_pci_parity_status(dev, 0);
540
541 /* read the device TYPE, looking for bridges */
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 * PCI Parity polling
550 *
Doug Thompsond4c14652007-07-26 10:41:15 -0700551 * Fucntion to retrieve the current parity status
552 * and decode it
553 *
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700554 */
555static void edac_pci_dev_parity_test(struct pci_dev *dev)
556{
Doug Thompsond4c14652007-07-26 10:41:15 -0700557 unsigned long flags;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700558 u16 status;
Douglas Thompson079708b2007-07-19 01:49:58 -0700559 u8 header_type;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700560
Doug Thompsond4c14652007-07-26 10:41:15 -0700561 /* stop any interrupts until we can acquire the status */
562 local_irq_save(flags);
563
564 /* read the STATUS register on this device */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700565 status = get_pci_parity_status(dev, 0);
566
Doug Thompsond4c14652007-07-26 10:41:15 -0700567 /* read the device TYPE, looking for bridges */
568 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
569
570 local_irq_restore(flags);
571
572 debugf4("PCI STATUS= 0x%04x %s\n", status, dev->dev.bus_id);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700573
574 /* check the status reg for errors */
575 if (status) {
Dave Jiang91b99042007-07-19 01:49:52 -0700576 if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700577 edac_printk(KERN_CRIT, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700578 "Signaled System Error on %s\n",
579 pci_name(dev));
Dave Jiang91b99042007-07-19 01:49:52 -0700580 atomic_inc(&pci_nonparity_count);
581 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700582
583 if (status & (PCI_STATUS_PARITY)) {
584 edac_printk(KERN_CRIT, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700585 "Master Data Parity Error on %s\n",
586 pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700587
588 atomic_inc(&pci_parity_count);
589 }
590
591 if (status & (PCI_STATUS_DETECTED_PARITY)) {
592 edac_printk(KERN_CRIT, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700593 "Detected Parity Error on %s\n",
594 pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700595
596 atomic_inc(&pci_parity_count);
597 }
598 }
599
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700600
Doug Thompsond4c14652007-07-26 10:41:15 -0700601 debugf4("PCI HEADER TYPE= 0x%02x %s\n", header_type, dev->dev.bus_id);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700602
603 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) {
604 /* On bridges, need to examine secondary status register */
605 status = get_pci_parity_status(dev, 1);
606
Doug Thompsond4c14652007-07-26 10:41:15 -0700607 debugf4("PCI SEC_STATUS= 0x%04x %s\n", status, dev->dev.bus_id);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700608
609 /* check the secondary status reg for errors */
610 if (status) {
Dave Jiang91b99042007-07-19 01:49:52 -0700611 if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700612 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
Douglas Thompson052dfb42007-07-19 01:50:13 -0700613 "Signaled System Error on %s\n",
614 pci_name(dev));
Dave Jiang91b99042007-07-19 01:49:52 -0700615 atomic_inc(&pci_nonparity_count);
616 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700617
618 if (status & (PCI_STATUS_PARITY)) {
619 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
Douglas Thompson052dfb42007-07-19 01:50:13 -0700620 "Master Data Parity Error on "
621 "%s\n", pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700622
623 atomic_inc(&pci_parity_count);
624 }
625
626 if (status & (PCI_STATUS_DETECTED_PARITY)) {
627 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
Douglas Thompson052dfb42007-07-19 01:50:13 -0700628 "Detected Parity Error on %s\n",
629 pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700630
631 atomic_inc(&pci_parity_count);
632 }
633 }
634 }
635}
636
Doug Thompsond4c14652007-07-26 10:41:15 -0700637/* reduce some complexity in definition of the iterator */
638typedef void (*pci_parity_check_fn_t) (struct pci_dev *dev);
639
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700640/*
641 * pci_dev parity list iterator
Doug Thompsond4c14652007-07-26 10:41:15 -0700642 * Scan the PCI device list for one pass, looking for SERRORs
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700643 * Master Parity ERRORS or Parity ERRORs on primary or secondary devices
644 */
645static inline void edac_pci_dev_parity_iterator(pci_parity_check_fn_t fn)
646{
647 struct pci_dev *dev = NULL;
648
649 /* request for kernel access to the next PCI device, if any,
650 * and while we are looking at it have its reference count
651 * bumped until we are done with it
652 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700653 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700654 fn(dev);
655 }
656}
657
658/*
659 * edac_pci_do_parity_check
660 *
661 * performs the actual PCI parity check operation
662 */
663void edac_pci_do_parity_check(void)
664{
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700665 int before_count;
666
667 debugf3("%s()\n", __func__);
668
Doug Thompsond4c14652007-07-26 10:41:15 -0700669 /* if policy has PCI check off, leave now */
Dave Jiang91b99042007-07-19 01:49:52 -0700670 if (!check_pci_errors)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700671 return;
672
673 before_count = atomic_read(&pci_parity_count);
674
675 /* scan all PCI devices looking for a Parity Error on devices and
Doug Thompsond4c14652007-07-26 10:41:15 -0700676 * bridges.
677 * The iterator calls pci_get_device() which might sleep, thus
678 * we cannot disable interrupts in this scan.
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700679 */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700680 edac_pci_dev_parity_iterator(edac_pci_dev_parity_test);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700681
682 /* Only if operator has selected panic on PCI Error */
Dave Jiang4de78c62007-07-19 01:49:54 -0700683 if (edac_pci_get_panic_on_pe()) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700684 /* If the count is different 'after' from 'before' */
685 if (before_count != atomic_read(&pci_parity_count))
686 panic("EDAC: PCI Parity Error");
687 }
688}
689
Doug Thompsond4c14652007-07-26 10:41:15 -0700690/*
691 * edac_pci_clear_parity_errors
692 *
693 * function to perform an iteration over the PCI devices
694 * and clearn their current status
695 */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700696void edac_pci_clear_parity_errors(void)
697{
698 /* Clear any PCI bus parity errors that devices initially have logged
699 * in their registers.
700 */
701 edac_pci_dev_parity_iterator(edac_pci_dev_parity_clear);
702}
Doug Thompsond4c14652007-07-26 10:41:15 -0700703
704/*
705 * edac_pci_handle_pe
706 *
707 * Called to handle a PARITY ERROR event
708 */
Dave Jiang91b99042007-07-19 01:49:52 -0700709void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg)
710{
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700711
Dave Jiang91b99042007-07-19 01:49:52 -0700712 /* global PE counter incremented by edac_pci_do_parity_check() */
713 atomic_inc(&pci->counters.pe_count);
714
Dave Jiang4de78c62007-07-19 01:49:54 -0700715 if (edac_pci_get_log_pe())
Dave Jiang91b99042007-07-19 01:49:52 -0700716 edac_pci_printk(pci, KERN_WARNING,
717 "Parity Error ctl: %s %d: %s\n",
718 pci->ctl_name, pci->pci_idx, msg);
719
720 /*
721 * poke all PCI devices and see which one is the troublemaker
722 * panic() is called if set
723 */
724 edac_pci_do_parity_check();
725}
726EXPORT_SYMBOL_GPL(edac_pci_handle_pe);
727
Doug Thompsond4c14652007-07-26 10:41:15 -0700728
729/*
730 * edac_pci_handle_npe
731 *
732 * Called to handle a NON-PARITY ERROR event
733 */
Dave Jiang91b99042007-07-19 01:49:52 -0700734void edac_pci_handle_npe(struct edac_pci_ctl_info *pci, const char *msg)
735{
736
737 /* global NPE counter incremented by edac_pci_do_parity_check() */
738 atomic_inc(&pci->counters.npe_count);
739
Dave Jiang4de78c62007-07-19 01:49:54 -0700740 if (edac_pci_get_log_npe())
Dave Jiang91b99042007-07-19 01:49:52 -0700741 edac_pci_printk(pci, KERN_WARNING,
742 "Non-Parity Error ctl: %s %d: %s\n",
743 pci->ctl_name, pci->pci_idx, msg);
744
745 /*
746 * poke all PCI devices and see which one is the troublemaker
747 * panic() is called if set
748 */
749 edac_pci_do_parity_check();
750}
751EXPORT_SYMBOL_GPL(edac_pci_handle_npe);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700752
753/*
754 * Define the PCI parameter to the module
755 */
Dave Jiang91b99042007-07-19 01:49:52 -0700756module_param(check_pci_errors, int, 0644);
Dave Jiang4de78c62007-07-19 01:49:54 -0700757MODULE_PARM_DESC(check_pci_errors,
Douglas Thompson079708b2007-07-19 01:49:58 -0700758 "Check for PCI bus parity errors: 0=off 1=on");
Dave Jiang4de78c62007-07-19 01:49:54 -0700759module_param(edac_pci_panic_on_pe, int, 0644);
760MODULE_PARM_DESC(edac_pci_panic_on_pe,
Douglas Thompson079708b2007-07-19 01:49:58 -0700761 "Panic on PCI Bus Parity error: 0=off 1=on");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700762
Douglas Thompson079708b2007-07-19 01:49:58 -0700763#endif /* CONFIG_PCI */