blob: 24d877f6e57751b07123771c2f9e7b898c17cee6 [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>
Borislav Petkov30e1f7a2010-09-02 17:26:48 +020010#include <linux/edac.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Douglas Thompson7c9281d2007-07-19 01:49:33 -070012#include <linux/ctype.h>
13
Douglas Thompson20bcb7a2007-07-19 01:49:47 -070014#include "edac_core.h"
Douglas Thompson7c9281d2007-07-19 01:49:33 -070015#include "edac_module.h"
16
Dave Jiang91b99042007-07-19 01:49:52 -070017#define EDAC_PCI_SYMLINK "device"
18
Doug Thompsond4c14652007-07-26 10:41:15 -070019/* data variables exported via sysfs */
20static int check_pci_errors; /* default NO check PCI parity */
21static int edac_pci_panic_on_pe; /* default NO panic on PCI Parity */
22static int edac_pci_log_pe = 1; /* log PCI parity errors */
Dave Jiang4de78c62007-07-19 01:49:54 -070023static int edac_pci_log_npe = 1; /* log PCI non-parity error errors */
Doug Thompsond4c14652007-07-26 10:41:15 -070024static int edac_pci_poll_msec = 1000; /* one second workq period */
25
Douglas Thompson7c9281d2007-07-19 01:49:33 -070026static atomic_t pci_parity_count = ATOMIC_INIT(0);
Dave Jiang91b99042007-07-19 01:49:52 -070027static atomic_t pci_nonparity_count = ATOMIC_INIT(0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070028
Arthur Jones14cc5712008-07-25 01:49:08 -070029static struct kobject *edac_pci_top_main_kobj;
Dave Jiang91b99042007-07-19 01:49:52 -070030static atomic_t edac_pci_sysfs_refcount = ATOMIC_INIT(0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070031
Doug Thompsond4c14652007-07-26 10:41:15 -070032/* getter functions for the data variables */
Dave Jiang4de78c62007-07-19 01:49:54 -070033int edac_pci_get_check_errors(void)
34{
35 return check_pci_errors;
36}
37
Adrian Bunk1a450272008-04-29 01:03:18 -070038static int edac_pci_get_log_pe(void)
Dave Jiang4de78c62007-07-19 01:49:54 -070039{
40 return edac_pci_log_pe;
41}
42
Adrian Bunk1a450272008-04-29 01:03:18 -070043static int edac_pci_get_log_npe(void)
Dave Jiang4de78c62007-07-19 01:49:54 -070044{
45 return edac_pci_log_npe;
46}
47
Adrian Bunk1a450272008-04-29 01:03:18 -070048static int edac_pci_get_panic_on_pe(void)
Dave Jiang4de78c62007-07-19 01:49:54 -070049{
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
Dave Jiang91b99042007-07-19 01:49:52 -070058/**************************** EDAC PCI sysfs instance *******************/
59static ssize_t instance_pe_count_show(struct edac_pci_ctl_info *pci, char *data)
60{
Douglas Thompson079708b2007-07-19 01:49:58 -070061 return sprintf(data, "%u\n", atomic_read(&pci->counters.pe_count));
Dave Jiang91b99042007-07-19 01:49:52 -070062}
63
64static ssize_t instance_npe_count_show(struct edac_pci_ctl_info *pci,
Douglas Thompson052dfb42007-07-19 01:50:13 -070065 char *data)
Dave Jiang91b99042007-07-19 01:49:52 -070066{
Douglas Thompson079708b2007-07-19 01:49:58 -070067 return sprintf(data, "%u\n", atomic_read(&pci->counters.npe_count));
Dave Jiang91b99042007-07-19 01:49:52 -070068}
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/* DEVICE instance kobject release() function */
74static void edac_pci_instance_release(struct kobject *kobj)
75{
76 struct edac_pci_ctl_info *pci;
77
Joe Perches956b9ba2012-04-29 17:08:39 -030078 edac_dbg(0, "\n");
Dave Jiang91b99042007-07-19 01:49:52 -070079
Doug Thompsond4c14652007-07-26 10:41:15 -070080 /* Form pointer to containing struct, the pci control struct */
Dave Jiang91b99042007-07-19 01:49:52 -070081 pci = to_instance(kobj);
Doug Thompsond4c14652007-07-26 10:41:15 -070082
83 /* decrement reference count on top main kobj */
Arthur Jones14cc5712008-07-25 01:49:08 -070084 kobject_put(edac_pci_top_main_kobj);
Doug Thompsond4c14652007-07-26 10:41:15 -070085
86 kfree(pci); /* Free the control struct */
Dave Jiang91b99042007-07-19 01:49:52 -070087}
88
89/* instance specific attribute structure */
90struct instance_attribute {
Douglas Thompson079708b2007-07-19 01:49:58 -070091 struct attribute attr;
Doug Thompsond4c14652007-07-26 10:41:15 -070092 ssize_t(*show) (struct edac_pci_ctl_info *, char *);
93 ssize_t(*store) (struct edac_pci_ctl_info *, const char *, size_t);
Dave Jiang91b99042007-07-19 01:49:52 -070094};
95
96/* Function to 'show' fields from the edac_pci 'instance' structure */
97static ssize_t edac_pci_instance_show(struct kobject *kobj,
Douglas Thompson052dfb42007-07-19 01:50:13 -070098 struct attribute *attr, char *buffer)
Dave Jiang91b99042007-07-19 01:49:52 -070099{
Douglas Thompson079708b2007-07-19 01:49:58 -0700100 struct edac_pci_ctl_info *pci = to_instance(kobj);
101 struct instance_attribute *instance_attr = to_instance_attr(attr);
Dave Jiang91b99042007-07-19 01:49:52 -0700102
Douglas Thompson079708b2007-07-19 01:49:58 -0700103 if (instance_attr->show)
104 return instance_attr->show(pci, buffer);
105 return -EIO;
Dave Jiang91b99042007-07-19 01:49:52 -0700106}
107
Dave Jiang91b99042007-07-19 01:49:52 -0700108/* Function to 'store' fields into the edac_pci 'instance' structure */
109static ssize_t edac_pci_instance_store(struct kobject *kobj,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700110 struct attribute *attr,
111 const char *buffer, size_t count)
Dave Jiang91b99042007-07-19 01:49:52 -0700112{
Douglas Thompson079708b2007-07-19 01:49:58 -0700113 struct edac_pci_ctl_info *pci = to_instance(kobj);
114 struct instance_attribute *instance_attr = to_instance_attr(attr);
Dave Jiang91b99042007-07-19 01:49:52 -0700115
Douglas Thompson079708b2007-07-19 01:49:58 -0700116 if (instance_attr->store)
117 return instance_attr->store(pci, buffer, count);
118 return -EIO;
Dave Jiang91b99042007-07-19 01:49:52 -0700119}
120
Doug Thompsond4c14652007-07-26 10:41:15 -0700121/* fs_ops table */
Emese Revfy52cf25d2010-01-19 02:58:23 +0100122static const struct sysfs_ops pci_instance_ops = {
Dave Jiang91b99042007-07-19 01:49:52 -0700123 .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/* pci instance attributes */
138static struct instance_attribute *pci_instance_attr[] = {
139 &attr_instance_pe_count,
140 &attr_instance_npe_count,
141 NULL
142};
143
Doug Thompsond4c14652007-07-26 10:41:15 -0700144/* the ktype for a pci instance */
Dave Jiang91b99042007-07-19 01:49:52 -0700145static 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
Doug Thompsond4c14652007-07-26 10:41:15 -0700151/*
152 * edac_pci_create_instance_kobj
153 *
154 * construct one EDAC PCI instance's kobject for use
155 */
Dave Jiang91b99042007-07-19 01:49:52 -0700156static int edac_pci_create_instance_kobj(struct edac_pci_ctl_info *pci, int idx)
157{
Doug Thompsond4c14652007-07-26 10:41:15 -0700158 struct kobject *main_kobj;
Dave Jiang91b99042007-07-19 01:49:52 -0700159 int err;
160
Joe Perches956b9ba2012-04-29 17:08:39 -0300161 edac_dbg(0, "\n");
Doug Thompsond4c14652007-07-26 10:41:15 -0700162
Doug Thompsond4c14652007-07-26 10:41:15 -0700163 /* First bump the ref count on the top main kobj, which will
164 * track the number of PCI instances we have, and thus nest
165 * properly on keeping the module loaded
166 */
Arthur Jones14cc5712008-07-25 01:49:08 -0700167 main_kobj = kobject_get(edac_pci_top_main_kobj);
Doug Thompsond4c14652007-07-26 10:41:15 -0700168 if (!main_kobj) {
169 err = -ENODEV;
170 goto error_out;
171 }
172
173 /* And now register this new kobject under the main kobj */
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400174 err = kobject_init_and_add(&pci->kobj, &ktype_pci_instance,
Arthur Jones14cc5712008-07-25 01:49:08 -0700175 edac_pci_top_main_kobj, "pci%d", idx);
Dave Jiang91b99042007-07-19 01:49:52 -0700176 if (err != 0) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300177 edac_dbg(2, "failed to register instance pci%d\n", idx);
Arthur Jones14cc5712008-07-25 01:49:08 -0700178 kobject_put(edac_pci_top_main_kobj);
Doug Thompsond4c14652007-07-26 10:41:15 -0700179 goto error_out;
Dave Jiang91b99042007-07-19 01:49:52 -0700180 }
181
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400182 kobject_uevent(&pci->kobj, KOBJ_ADD);
Joe Perches956b9ba2012-04-29 17:08:39 -0300183 edac_dbg(1, "Register instance 'pci%d' kobject\n", idx);
Dave Jiang91b99042007-07-19 01:49:52 -0700184
185 return 0;
Doug Thompsond4c14652007-07-26 10:41:15 -0700186
187 /* Error unwind statck */
188error_out:
189 return err;
Dave Jiang91b99042007-07-19 01:49:52 -0700190}
191
Doug Thompsond4c14652007-07-26 10:41:15 -0700192/*
193 * edac_pci_unregister_sysfs_instance_kobj
194 *
195 * unregister the kobj for the EDAC PCI instance
196 */
Adrian Bunk1a450272008-04-29 01:03:18 -0700197static void edac_pci_unregister_sysfs_instance_kobj(
198 struct edac_pci_ctl_info *pci)
Dave Jiang91b99042007-07-19 01:49:52 -0700199{
Joe Perches956b9ba2012-04-29 17:08:39 -0300200 edac_dbg(0, "\n");
Doug Thompsond4c14652007-07-26 10:41:15 -0700201
202 /* Unregister the instance kobject and allow its release
203 * function release the main reference count and then
204 * kfree the memory
205 */
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800206 kobject_put(&pci->kobj);
Dave Jiang91b99042007-07-19 01:49:52 -0700207}
208
209/***************************** EDAC PCI sysfs root **********************/
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)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700212
Doug Thompsond4c14652007-07-26 10:41:15 -0700213/* simple show/store functions for attributes */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700214static ssize_t edac_pci_int_show(void *ptr, char *buffer)
215{
216 int *value = ptr;
Douglas Thompson079708b2007-07-19 01:49:58 -0700217 return sprintf(buffer, "%d\n", *value);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700218}
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))
Douglas Thompson079708b2007-07-19 01:49:58 -0700225 *value = simple_strtoul(buffer, NULL, 0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700226
227 return count;
228}
229
230struct edac_pci_dev_attribute {
231 struct attribute attr;
232 void *value;
Douglas Thompson079708b2007-07-19 01:49:58 -0700233 ssize_t(*show) (void *, char *);
234 ssize_t(*store) (void *, const char *, size_t);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700235};
236
237/* Set of show/store abstract level functions for PCI Parity object */
238static ssize_t edac_pci_dev_show(struct kobject *kobj, struct attribute *attr,
Douglas Thompson079708b2007-07-19 01:49:58 -0700239 char *buffer)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700240{
241 struct edac_pci_dev_attribute *edac_pci_dev;
Douglas Thompson079708b2007-07-19 01:49:58 -0700242 edac_pci_dev = (struct edac_pci_dev_attribute *)attr;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700243
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,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700250 struct attribute *attr, const char *buffer,
251 size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700252{
253 struct edac_pci_dev_attribute *edac_pci_dev;
Douglas Thompson079708b2007-07-19 01:49:58 -0700254 edac_pci_dev = (struct edac_pci_dev_attribute *)attr;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700255
Dan Carpenter8024c4c2013-01-26 10:49:24 +0300256 if (edac_pci_dev->store)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700257 return edac_pci_dev->store(edac_pci_dev->value, buffer, count);
258 return -EIO;
259}
260
Emese Revfy52cf25d2010-01-19 02:58:23 +0100261static const struct sysfs_ops edac_pci_sysfs_ops = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700262 .show = edac_pci_dev_show,
263 .store = edac_pci_dev_store
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700264};
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/* PCI Parity control files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700283EDAC_PCI_ATTR(check_pci_errors, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700284 edac_pci_int_store);
Douglas Thompson079708b2007-07-19 01:49:58 -0700285EDAC_PCI_ATTR(edac_pci_log_pe, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700286 edac_pci_int_store);
Douglas Thompson079708b2007-07-19 01:49:58 -0700287EDAC_PCI_ATTR(edac_pci_log_npe, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700288 edac_pci_int_store);
Douglas Thompson079708b2007-07-19 01:49:58 -0700289EDAC_PCI_ATTR(edac_pci_panic_on_pe, S_IRUGO | S_IWUSR, edac_pci_int_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700290 edac_pci_int_store);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700291EDAC_PCI_ATTR(pci_parity_count, S_IRUGO, edac_pci_int_show, NULL);
Dave Jiang91b99042007-07-19 01:49:52 -0700292EDAC_PCI_ATTR(pci_nonparity_count, S_IRUGO, edac_pci_int_show, NULL);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700293
294/* Base Attributes of the memory ECC object */
295static struct edac_pci_dev_attribute *edac_pci_attr[] = {
Dave Jiang91b99042007-07-19 01:49:52 -0700296 &edac_pci_attr_check_pci_errors,
Dave Jiang4de78c62007-07-19 01:49:54 -0700297 &edac_pci_attr_edac_pci_log_pe,
298 &edac_pci_attr_edac_pci_log_npe,
299 &edac_pci_attr_edac_pci_panic_on_pe,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700300 &edac_pci_attr_pci_parity_count,
Dave Jiang91b99042007-07-19 01:49:52 -0700301 &edac_pci_attr_pci_nonparity_count,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700302 NULL,
303};
304
Doug Thompsond4c14652007-07-26 10:41:15 -0700305/*
306 * edac_pci_release_main_kobj
307 *
308 * This release function is called when the reference count to the
309 * passed kobj goes to zero.
310 *
311 * This kobj is the 'main' kobject that EDAC PCI instances
312 * link to, and thus provide for proper nesting counts
313 */
314static void edac_pci_release_main_kobj(struct kobject *kobj)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700315{
Joe Perches956b9ba2012-04-29 17:08:39 -0300316 edac_dbg(0, "here to module_put(THIS_MODULE)\n");
Dave Jiang91b99042007-07-19 01:49:52 -0700317
Arthur Jones14cc5712008-07-25 01:49:08 -0700318 kfree(kobj);
319
Doug Thompsond4c14652007-07-26 10:41:15 -0700320 /* last reference to top EDAC PCI kobject has been removed,
321 * NOW release our ref count on the core module
322 */
323 module_put(THIS_MODULE);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700324}
325
Doug Thompsond4c14652007-07-26 10:41:15 -0700326/* ktype struct for the EDAC PCI main kobj */
327static struct kobj_type ktype_edac_pci_main_kobj = {
328 .release = edac_pci_release_main_kobj,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700329 .sysfs_ops = &edac_pci_sysfs_ops,
Douglas Thompson079708b2007-07-19 01:49:58 -0700330 .default_attrs = (struct attribute **)edac_pci_attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700331};
332
333/**
Doug Thompsond4c14652007-07-26 10:41:15 -0700334 * edac_pci_main_kobj_setup()
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700335 *
336 * setup the sysfs for EDAC PCI attributes
Kay Sieversfe5ff8b2011-12-14 15:21:07 -0800337 * assumes edac_subsys has already been initialized
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700338 */
Adrian Bunk1a450272008-04-29 01:03:18 -0700339static int edac_pci_main_kobj_setup(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700340{
341 int err;
Kay Sieversfe5ff8b2011-12-14 15:21:07 -0800342 struct bus_type *edac_subsys;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700343
Joe Perches956b9ba2012-04-29 17:08:39 -0300344 edac_dbg(0, "\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700345
Doug Thompsond4c14652007-07-26 10:41:15 -0700346 /* check and count if we have already created the main kobject */
347 if (atomic_inc_return(&edac_pci_sysfs_refcount) != 1)
348 return 0;
349
350 /* First time, so create the main kobject and its
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300351 * controls and attributes
Doug Thompsond4c14652007-07-26 10:41:15 -0700352 */
Kay Sieversfe5ff8b2011-12-14 15:21:07 -0800353 edac_subsys = edac_get_sysfs_subsys();
354 if (edac_subsys == NULL) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300355 edac_dbg(1, "no edac_subsys\n");
Doug Thompsond4c14652007-07-26 10:41:15 -0700356 err = -ENODEV;
357 goto decrement_count_fail;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700358 }
359
Doug Thompsond4c14652007-07-26 10:41:15 -0700360 /* Bump the reference count on this module to ensure the
361 * modules isn't unloaded until we deconstruct the top
362 * level main kobj for EDAC PCI
363 */
364 if (!try_module_get(THIS_MODULE)) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300365 edac_dbg(1, "try_module_get() failed\n");
Doug Thompsond4c14652007-07-26 10:41:15 -0700366 err = -ENODEV;
Borislav Petkov30e1f7a2010-09-02 17:26:48 +0200367 goto mod_get_fail;
Doug Thompsond4c14652007-07-26 10:41:15 -0700368 }
Dave Jiang91b99042007-07-19 01:49:52 -0700369
Arthur Jones14cc5712008-07-25 01:49:08 -0700370 edac_pci_top_main_kobj = kzalloc(sizeof(struct kobject), GFP_KERNEL);
371 if (!edac_pci_top_main_kobj) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300372 edac_dbg(1, "Failed to allocate\n");
Arthur Jones14cc5712008-07-25 01:49:08 -0700373 err = -ENOMEM;
374 goto kzalloc_fail;
375 }
376
Dave Jiang91b99042007-07-19 01:49:52 -0700377 /* Instanstiate the pci object */
Arthur Jones14cc5712008-07-25 01:49:08 -0700378 err = kobject_init_and_add(edac_pci_top_main_kobj,
379 &ktype_edac_pci_main_kobj,
Kay Sieversfe5ff8b2011-12-14 15:21:07 -0800380 &edac_subsys->dev_root->kobj, "pci");
Dave Jiang91b99042007-07-19 01:49:52 -0700381 if (err) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300382 edac_dbg(1, "Failed to register '.../edac/pci'\n");
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400383 goto kobject_init_and_add_fail;
Dave Jiang91b99042007-07-19 01:49:52 -0700384 }
385
Doug Thompsond4c14652007-07-26 10:41:15 -0700386 /* At this point, to 'release' the top level kobject
387 * for EDAC PCI, then edac_pci_main_kobj_teardown()
388 * must be used, for resources to be cleaned up properly
389 */
Arthur Jones14cc5712008-07-25 01:49:08 -0700390 kobject_uevent(edac_pci_top_main_kobj, KOBJ_ADD);
Joe Perches956b9ba2012-04-29 17:08:39 -0300391 edac_dbg(1, "Registered '.../edac/pci' kobject\n");
Dave Jiang91b99042007-07-19 01:49:52 -0700392
393 return 0;
Doug Thompsond4c14652007-07-26 10:41:15 -0700394
395 /* Error unwind statck */
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400396kobject_init_and_add_fail:
Arthur Jones14cc5712008-07-25 01:49:08 -0700397 kfree(edac_pci_top_main_kobj);
398
399kzalloc_fail:
Doug Thompsond4c14652007-07-26 10:41:15 -0700400 module_put(THIS_MODULE);
401
Borislav Petkov30e1f7a2010-09-02 17:26:48 +0200402mod_get_fail:
Kay Sieversfe5ff8b2011-12-14 15:21:07 -0800403 edac_put_sysfs_subsys();
Borislav Petkov30e1f7a2010-09-02 17:26:48 +0200404
Doug Thompsond4c14652007-07-26 10:41:15 -0700405decrement_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{
Joe Perches956b9ba2012-04-29 17:08:39 -0300420 edac_dbg(0, "\n");
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) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300427 edac_dbg(0, "called kobject_put on main kobj\n");
Arthur Jones14cc5712008-07-25 01:49:08 -0700428 kobject_put(edac_pci_top_main_kobj);
Lans Zhang1c069102012-12-20 10:16:07 +0800429 edac_put_sysfs_subsys();
Doug Thompsond4c14652007-07-26 10:41:15 -0700430 }
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
Joe Perches956b9ba2012-04-29 17:08:39 -0300444 edac_dbg(0, "idx=%d\n", pci->pci_idx);
Dave Jiang91b99042007-07-19 01:49:52 -0700445
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) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300458 edac_dbg(0, "sysfs_create_link() returned err= %d\n", err);
Doug Thompsond4c14652007-07-26 10:41:15 -0700459 goto symlink_fail;
Dave Jiang91b99042007-07-19 01:49:52 -0700460 }
461
462 return 0;
Doug Thompsond4c14652007-07-26 10:41:15 -0700463
464 /* Error unwind stack */
465symlink_fail:
466 edac_pci_unregister_sysfs_instance_kobj(pci);
467
468unregister_cleanup:
469 edac_pci_main_kobj_teardown();
470
471 return err;
Dave Jiang91b99042007-07-19 01:49:52 -0700472}
473
Doug Thompsond4c14652007-07-26 10:41:15 -0700474/*
475 * edac_pci_remove_sysfs
476 *
477 * remove the controls and attributes for this EDAC PCI device
478 */
Dave Jiang91b99042007-07-19 01:49:52 -0700479void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci)
480{
Joe Perches956b9ba2012-04-29 17:08:39 -0300481 edac_dbg(0, "index=%d\n", pci->pci_idx);
Dave Jiang91b99042007-07-19 01:49:52 -0700482
Doug Thompsond4c14652007-07-26 10:41:15 -0700483 /* Remove the symlink */
Dave Jiang91b99042007-07-19 01:49:52 -0700484 sysfs_remove_link(&pci->kobj, EDAC_PCI_SYMLINK);
485
Doug Thompsond4c14652007-07-26 10:41:15 -0700486 /* remove this PCI instance's sysfs entries */
487 edac_pci_unregister_sysfs_instance_kobj(pci);
488
489 /* Call the main unregister function, which will determine
490 * if this 'pci' is the last instance.
491 * If it is, the main kobject will be unregistered as a result
492 */
Joe Perches956b9ba2012-04-29 17:08:39 -0300493 edac_dbg(0, "calling edac_pci_main_kobj_teardown()\n");
Doug Thompsond4c14652007-07-26 10:41:15 -0700494 edac_pci_main_kobj_teardown();
Dave Jiang91b99042007-07-19 01:49:52 -0700495}
496
497/************************ PCI error handling *************************/
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700498static u16 get_pci_parity_status(struct pci_dev *dev, int secondary)
499{
500 int where;
501 u16 status;
502
503 where = secondary ? PCI_SEC_STATUS : PCI_STATUS;
504 pci_read_config_word(dev, where, &status);
505
506 /* If we get back 0xFFFF then we must suspect that the card has been
507 * pulled but the Linux PCI layer has not yet finished cleaning up.
508 * We don't want to report on such devices
509 */
510
511 if (status == 0xFFFF) {
512 u32 sanity;
513
514 pci_read_config_dword(dev, 0, &sanity);
515
516 if (sanity == 0xFFFFFFFF)
517 return 0;
518 }
519
520 status &= PCI_STATUS_DETECTED_PARITY | PCI_STATUS_SIG_SYSTEM_ERROR |
Douglas Thompson052dfb42007-07-19 01:50:13 -0700521 PCI_STATUS_PARITY;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700522
523 if (status)
524 /* reset only the bits we are interested in */
525 pci_write_config_word(dev, where, status);
526
527 return status;
528}
529
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700530
531/* Clear any PCI parity errors logged by this device. */
532static void edac_pci_dev_parity_clear(struct pci_dev *dev)
533{
534 u8 header_type;
535
536 get_pci_parity_status(dev, 0);
537
538 /* read the device TYPE, looking for bridges */
539 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
540
541 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE)
542 get_pci_parity_status(dev, 1);
543}
544
545/*
546 * PCI Parity polling
547 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300548 * Function to retrieve the current parity status
Doug Thompsond4c14652007-07-26 10:41:15 -0700549 * and decode it
550 *
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700551 */
552static void edac_pci_dev_parity_test(struct pci_dev *dev)
553{
Doug Thompsond4c14652007-07-26 10:41:15 -0700554 unsigned long flags;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700555 u16 status;
Douglas Thompson079708b2007-07-19 01:49:58 -0700556 u8 header_type;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700557
Doug Thompsond4c14652007-07-26 10:41:15 -0700558 /* stop any interrupts until we can acquire the status */
559 local_irq_save(flags);
560
561 /* read the STATUS register on this device */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700562 status = get_pci_parity_status(dev, 0);
563
Doug Thompsond4c14652007-07-26 10:41:15 -0700564 /* read the device TYPE, looking for bridges */
565 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
566
567 local_irq_restore(flags);
568
Joe Perches956b9ba2012-04-29 17:08:39 -0300569 edac_dbg(4, "PCI STATUS= 0x%04x %s\n", status, dev_name(&dev->dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700570
Bryan Boatright6b09ff92008-02-07 00:14:58 -0800571 /* check the status reg for errors on boards NOT marked as broken
572 * if broken, we cannot trust any of the status bits
573 */
574 if (status && !dev->broken_parity_status) {
Dave Jiang91b99042007-07-19 01:49:52 -0700575 if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700576 edac_printk(KERN_CRIT, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700577 "Signaled System Error on %s\n",
578 pci_name(dev));
Dave Jiang91b99042007-07-19 01:49:52 -0700579 atomic_inc(&pci_nonparity_count);
580 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700581
582 if (status & (PCI_STATUS_PARITY)) {
583 edac_printk(KERN_CRIT, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700584 "Master Data Parity Error on %s\n",
585 pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700586
587 atomic_inc(&pci_parity_count);
588 }
589
590 if (status & (PCI_STATUS_DETECTED_PARITY)) {
591 edac_printk(KERN_CRIT, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700592 "Detected Parity Error on %s\n",
593 pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700594
595 atomic_inc(&pci_parity_count);
596 }
597 }
598
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700599
Joe Perches956b9ba2012-04-29 17:08:39 -0300600 edac_dbg(4, "PCI HEADER TYPE= 0x%02x %s\n",
601 header_type, dev_name(&dev->dev));
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
Joe Perches956b9ba2012-04-29 17:08:39 -0300607 edac_dbg(4, "PCI SEC_STATUS= 0x%04x %s\n",
608 status, dev_name(&dev->dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700609
Bryan Boatright6b09ff92008-02-07 00:14:58 -0800610 /* check the secondary status reg for errors,
611 * on NOT broken boards
612 */
613 if (status && !dev->broken_parity_status) {
Dave Jiang91b99042007-07-19 01:49:52 -0700614 if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700615 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
Douglas Thompson052dfb42007-07-19 01:50:13 -0700616 "Signaled System Error on %s\n",
617 pci_name(dev));
Dave Jiang91b99042007-07-19 01:49:52 -0700618 atomic_inc(&pci_nonparity_count);
619 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700620
621 if (status & (PCI_STATUS_PARITY)) {
622 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
Douglas Thompson052dfb42007-07-19 01:50:13 -0700623 "Master Data Parity Error on "
624 "%s\n", pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700625
626 atomic_inc(&pci_parity_count);
627 }
628
629 if (status & (PCI_STATUS_DETECTED_PARITY)) {
630 edac_printk(KERN_CRIT, EDAC_PCI, "Bridge "
Douglas Thompson052dfb42007-07-19 01:50:13 -0700631 "Detected Parity Error on %s\n",
632 pci_name(dev));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700633
634 atomic_inc(&pci_parity_count);
635 }
636 }
637 }
638}
639
Doug Thompsond4c14652007-07-26 10:41:15 -0700640/* reduce some complexity in definition of the iterator */
641typedef void (*pci_parity_check_fn_t) (struct pci_dev *dev);
642
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700643/*
644 * pci_dev parity list iterator
Wei Yongjun3bfe5aa2012-12-04 00:01:42 -0500645 *
646 * Scan the PCI device list looking for SERRORs, Master Parity ERRORS or
647 * Parity ERRORs on primary or secondary devices.
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700648 */
649static inline void edac_pci_dev_parity_iterator(pci_parity_check_fn_t fn)
650{
651 struct pci_dev *dev = NULL;
652
Wei Yongjun3bfe5aa2012-12-04 00:01:42 -0500653 for_each_pci_dev(dev)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700654 fn(dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700655}
656
657/*
658 * edac_pci_do_parity_check
659 *
660 * performs the actual PCI parity check operation
661 */
662void edac_pci_do_parity_check(void)
663{
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700664 int before_count;
665
Joe Perches956b9ba2012-04-29 17:08:39 -0300666 edac_dbg(3, "\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700667
Doug Thompsond4c14652007-07-26 10:41:15 -0700668 /* if policy has PCI check off, leave now */
Dave Jiang91b99042007-07-19 01:49:52 -0700669 if (!check_pci_errors)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700670 return;
671
672 before_count = atomic_read(&pci_parity_count);
673
674 /* scan all PCI devices looking for a Parity Error on devices and
Doug Thompsond4c14652007-07-26 10:41:15 -0700675 * bridges.
676 * The iterator calls pci_get_device() which might sleep, thus
677 * we cannot disable interrupts in this scan.
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700678 */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700679 edac_pci_dev_parity_iterator(edac_pci_dev_parity_test);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700680
681 /* Only if operator has selected panic on PCI Error */
Dave Jiang4de78c62007-07-19 01:49:54 -0700682 if (edac_pci_get_panic_on_pe()) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700683 /* If the count is different 'after' from 'before' */
684 if (before_count != atomic_read(&pci_parity_count))
685 panic("EDAC: PCI Parity Error");
686 }
687}
688
Doug Thompsond4c14652007-07-26 10:41:15 -0700689/*
690 * edac_pci_clear_parity_errors
691 *
692 * function to perform an iteration over the PCI devices
693 * and clearn their current status
694 */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700695void edac_pci_clear_parity_errors(void)
696{
697 /* Clear any PCI bus parity errors that devices initially have logged
698 * in their registers.
699 */
700 edac_pci_dev_parity_iterator(edac_pci_dev_parity_clear);
701}
Doug Thompsond4c14652007-07-26 10:41:15 -0700702
703/*
704 * edac_pci_handle_pe
705 *
706 * Called to handle a PARITY ERROR event
707 */
Dave Jiang91b99042007-07-19 01:49:52 -0700708void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg)
709{
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700710
Dave Jiang91b99042007-07-19 01:49:52 -0700711 /* global PE counter incremented by edac_pci_do_parity_check() */
712 atomic_inc(&pci->counters.pe_count);
713
Dave Jiang4de78c62007-07-19 01:49:54 -0700714 if (edac_pci_get_log_pe())
Dave Jiang91b99042007-07-19 01:49:52 -0700715 edac_pci_printk(pci, KERN_WARNING,
716 "Parity Error ctl: %s %d: %s\n",
717 pci->ctl_name, pci->pci_idx, msg);
718
719 /*
720 * poke all PCI devices and see which one is the troublemaker
721 * panic() is called if set
722 */
723 edac_pci_do_parity_check();
724}
725EXPORT_SYMBOL_GPL(edac_pci_handle_pe);
726
Doug Thompsond4c14652007-07-26 10:41:15 -0700727
728/*
729 * edac_pci_handle_npe
730 *
731 * Called to handle a NON-PARITY ERROR event
732 */
Dave Jiang91b99042007-07-19 01:49:52 -0700733void edac_pci_handle_npe(struct edac_pci_ctl_info *pci, const char *msg)
734{
735
736 /* global NPE counter incremented by edac_pci_do_parity_check() */
737 atomic_inc(&pci->counters.npe_count);
738
Dave Jiang4de78c62007-07-19 01:49:54 -0700739 if (edac_pci_get_log_npe())
Dave Jiang91b99042007-07-19 01:49:52 -0700740 edac_pci_printk(pci, KERN_WARNING,
741 "Non-Parity Error ctl: %s %d: %s\n",
742 pci->ctl_name, pci->pci_idx, msg);
743
744 /*
745 * poke all PCI devices and see which one is the troublemaker
746 * panic() is called if set
747 */
748 edac_pci_do_parity_check();
749}
750EXPORT_SYMBOL_GPL(edac_pci_handle_npe);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700751
752/*
753 * Define the PCI parameter to the module
754 */
Dave Jiang91b99042007-07-19 01:49:52 -0700755module_param(check_pci_errors, int, 0644);
Dave Jiang4de78c62007-07-19 01:49:54 -0700756MODULE_PARM_DESC(check_pci_errors,
Douglas Thompson079708b2007-07-19 01:49:58 -0700757 "Check for PCI bus parity errors: 0=off 1=on");
Dave Jiang4de78c62007-07-19 01:49:54 -0700758module_param(edac_pci_panic_on_pe, int, 0644);
759MODULE_PARM_DESC(edac_pci_panic_on_pe,
Douglas Thompson079708b2007-07-19 01:49:58 -0700760 "Panic on PCI Bus Parity error: 0=off 1=on");