Douglas Thompson | 20bcb7a | 2007-07-19 01:49:47 -0700 | [diff] [blame] | 1 | /* |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 2 | * (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 Petkov | 30e1f7a | 2010-09-02 17:26:48 +0200 | [diff] [blame] | 10 | #include <linux/edac.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 12 | #include <linux/ctype.h> |
| 13 | |
Douglas Thompson | 20bcb7a | 2007-07-19 01:49:47 -0700 | [diff] [blame] | 14 | #include "edac_core.h" |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 15 | #include "edac_module.h" |
| 16 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 17 | /* Turn off this whole feature if PCI is not configured */ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 18 | #ifdef CONFIG_PCI |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 19 | |
| 20 | #define EDAC_PCI_SYMLINK "device" |
| 21 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 22 | /* data variables exported via sysfs */ |
| 23 | static int check_pci_errors; /* default NO check PCI parity */ |
| 24 | static int edac_pci_panic_on_pe; /* default NO panic on PCI Parity */ |
| 25 | static int edac_pci_log_pe = 1; /* log PCI parity errors */ |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 26 | static int edac_pci_log_npe = 1; /* log PCI non-parity error errors */ |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 27 | static int edac_pci_poll_msec = 1000; /* one second workq period */ |
| 28 | |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 29 | static atomic_t pci_parity_count = ATOMIC_INIT(0); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 30 | static atomic_t pci_nonparity_count = ATOMIC_INIT(0); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 31 | |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 32 | static struct kobject *edac_pci_top_main_kobj; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 33 | static atomic_t edac_pci_sysfs_refcount = ATOMIC_INIT(0); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 34 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 35 | /* getter functions for the data variables */ |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 36 | int edac_pci_get_check_errors(void) |
| 37 | { |
| 38 | return check_pci_errors; |
| 39 | } |
| 40 | |
Adrian Bunk | 1a45027 | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 41 | static int edac_pci_get_log_pe(void) |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 42 | { |
| 43 | return edac_pci_log_pe; |
| 44 | } |
| 45 | |
Adrian Bunk | 1a45027 | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 46 | static int edac_pci_get_log_npe(void) |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 47 | { |
| 48 | return edac_pci_log_npe; |
| 49 | } |
| 50 | |
Adrian Bunk | 1a45027 | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 51 | static int edac_pci_get_panic_on_pe(void) |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 52 | { |
| 53 | return edac_pci_panic_on_pe; |
| 54 | } |
| 55 | |
| 56 | int edac_pci_get_poll_msec(void) |
| 57 | { |
| 58 | return edac_pci_poll_msec; |
| 59 | } |
| 60 | |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 61 | /**************************** EDAC PCI sysfs instance *******************/ |
| 62 | static ssize_t instance_pe_count_show(struct edac_pci_ctl_info *pci, char *data) |
| 63 | { |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 64 | return sprintf(data, "%u\n", atomic_read(&pci->counters.pe_count)); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static ssize_t instance_npe_count_show(struct edac_pci_ctl_info *pci, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 68 | char *data) |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 69 | { |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 70 | return sprintf(data, "%u\n", atomic_read(&pci->counters.npe_count)); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 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 | /* DEVICE instance kobject release() function */ |
| 77 | static void edac_pci_instance_release(struct kobject *kobj) |
| 78 | { |
| 79 | struct edac_pci_ctl_info *pci; |
| 80 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 81 | edac_dbg(0, "\n"); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 82 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 83 | /* Form pointer to containing struct, the pci control struct */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 84 | pci = to_instance(kobj); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 85 | |
| 86 | /* decrement reference count on top main kobj */ |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 87 | kobject_put(edac_pci_top_main_kobj); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 88 | |
| 89 | kfree(pci); /* Free the control struct */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | /* instance specific attribute structure */ |
| 93 | struct instance_attribute { |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 94 | struct attribute attr; |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 95 | ssize_t(*show) (struct edac_pci_ctl_info *, char *); |
| 96 | ssize_t(*store) (struct edac_pci_ctl_info *, const char *, size_t); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | /* Function to 'show' fields from the edac_pci 'instance' structure */ |
| 100 | static ssize_t edac_pci_instance_show(struct kobject *kobj, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 101 | struct attribute *attr, char *buffer) |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 102 | { |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 103 | struct edac_pci_ctl_info *pci = to_instance(kobj); |
| 104 | struct instance_attribute *instance_attr = to_instance_attr(attr); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 105 | |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 106 | if (instance_attr->show) |
| 107 | return instance_attr->show(pci, buffer); |
| 108 | return -EIO; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 111 | /* Function to 'store' fields into the edac_pci 'instance' structure */ |
| 112 | static ssize_t edac_pci_instance_store(struct kobject *kobj, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 113 | struct attribute *attr, |
| 114 | const char *buffer, size_t count) |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 115 | { |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 116 | struct edac_pci_ctl_info *pci = to_instance(kobj); |
| 117 | struct instance_attribute *instance_attr = to_instance_attr(attr); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 118 | |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 119 | if (instance_attr->store) |
| 120 | return instance_attr->store(pci, buffer, count); |
| 121 | return -EIO; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 124 | /* fs_ops table */ |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 125 | static const struct sysfs_ops pci_instance_ops = { |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 126 | .show = edac_pci_instance_show, |
| 127 | .store = edac_pci_instance_store |
| 128 | }; |
| 129 | |
| 130 | #define INSTANCE_ATTR(_name, _mode, _show, _store) \ |
| 131 | static struct instance_attribute attr_instance_##_name = { \ |
| 132 | .attr = {.name = __stringify(_name), .mode = _mode }, \ |
| 133 | .show = _show, \ |
| 134 | .store = _store, \ |
| 135 | }; |
| 136 | |
| 137 | INSTANCE_ATTR(pe_count, S_IRUGO, instance_pe_count_show, NULL); |
| 138 | INSTANCE_ATTR(npe_count, S_IRUGO, instance_npe_count_show, NULL); |
| 139 | |
| 140 | /* pci instance attributes */ |
| 141 | static struct instance_attribute *pci_instance_attr[] = { |
| 142 | &attr_instance_pe_count, |
| 143 | &attr_instance_npe_count, |
| 144 | NULL |
| 145 | }; |
| 146 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 147 | /* the ktype for a pci instance */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 148 | static 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 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 154 | /* |
| 155 | * edac_pci_create_instance_kobj |
| 156 | * |
| 157 | * construct one EDAC PCI instance's kobject for use |
| 158 | */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 159 | static int edac_pci_create_instance_kobj(struct edac_pci_ctl_info *pci, int idx) |
| 160 | { |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 161 | struct kobject *main_kobj; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 162 | int err; |
| 163 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 164 | edac_dbg(0, "\n"); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 165 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 166 | /* First bump the ref count on the top main kobj, which will |
| 167 | * track the number of PCI instances we have, and thus nest |
| 168 | * properly on keeping the module loaded |
| 169 | */ |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 170 | main_kobj = kobject_get(edac_pci_top_main_kobj); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 171 | if (!main_kobj) { |
| 172 | err = -ENODEV; |
| 173 | goto error_out; |
| 174 | } |
| 175 | |
| 176 | /* And now register this new kobject under the main kobj */ |
Greg Kroah-Hartman | b2ed215 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 177 | err = kobject_init_and_add(&pci->kobj, &ktype_pci_instance, |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 178 | edac_pci_top_main_kobj, "pci%d", idx); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 179 | if (err != 0) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 180 | edac_dbg(2, "failed to register instance pci%d\n", idx); |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 181 | kobject_put(edac_pci_top_main_kobj); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 182 | goto error_out; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Greg Kroah-Hartman | b2ed215 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 185 | kobject_uevent(&pci->kobj, KOBJ_ADD); |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 186 | edac_dbg(1, "Register instance 'pci%d' kobject\n", idx); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 187 | |
| 188 | return 0; |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 189 | |
| 190 | /* Error unwind statck */ |
| 191 | error_out: |
| 192 | return err; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 195 | /* |
| 196 | * edac_pci_unregister_sysfs_instance_kobj |
| 197 | * |
| 198 | * unregister the kobj for the EDAC PCI instance |
| 199 | */ |
Adrian Bunk | 1a45027 | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 200 | static void edac_pci_unregister_sysfs_instance_kobj( |
| 201 | struct edac_pci_ctl_info *pci) |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 202 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 203 | edac_dbg(0, "\n"); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 204 | |
| 205 | /* Unregister the instance kobject and allow its release |
| 206 | * function release the main reference count and then |
| 207 | * kfree the memory |
| 208 | */ |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 209 | kobject_put(&pci->kobj); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | /***************************** EDAC PCI sysfs root **********************/ |
| 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) |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 215 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 216 | /* simple show/store functions for attributes */ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 217 | static ssize_t edac_pci_int_show(void *ptr, char *buffer) |
| 218 | { |
| 219 | int *value = ptr; |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 220 | return sprintf(buffer, "%d\n", *value); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | static ssize_t edac_pci_int_store(void *ptr, const char *buffer, size_t count) |
| 224 | { |
| 225 | int *value = ptr; |
| 226 | |
| 227 | if (isdigit(*buffer)) |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 228 | *value = simple_strtoul(buffer, NULL, 0); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 229 | |
| 230 | return count; |
| 231 | } |
| 232 | |
| 233 | struct edac_pci_dev_attribute { |
| 234 | struct attribute attr; |
| 235 | void *value; |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 236 | ssize_t(*show) (void *, char *); |
| 237 | ssize_t(*store) (void *, const char *, size_t); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 238 | }; |
| 239 | |
| 240 | /* Set of show/store abstract level functions for PCI Parity object */ |
| 241 | static ssize_t edac_pci_dev_show(struct kobject *kobj, struct attribute *attr, |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 242 | char *buffer) |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 243 | { |
| 244 | struct edac_pci_dev_attribute *edac_pci_dev; |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 245 | edac_pci_dev = (struct edac_pci_dev_attribute *)attr; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 246 | |
| 247 | if (edac_pci_dev->show) |
| 248 | return edac_pci_dev->show(edac_pci_dev->value, buffer); |
| 249 | return -EIO; |
| 250 | } |
| 251 | |
| 252 | static ssize_t edac_pci_dev_store(struct kobject *kobj, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 253 | struct attribute *attr, const char *buffer, |
| 254 | size_t count) |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 255 | { |
| 256 | struct edac_pci_dev_attribute *edac_pci_dev; |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 257 | edac_pci_dev = (struct edac_pci_dev_attribute *)attr; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 258 | |
| 259 | if (edac_pci_dev->show) |
| 260 | return edac_pci_dev->store(edac_pci_dev->value, buffer, count); |
| 261 | return -EIO; |
| 262 | } |
| 263 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 264 | static const struct sysfs_ops edac_pci_sysfs_ops = { |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 265 | .show = edac_pci_dev_show, |
| 266 | .store = edac_pci_dev_store |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 267 | }; |
| 268 | |
| 269 | #define EDAC_PCI_ATTR(_name,_mode,_show,_store) \ |
| 270 | static 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) \ |
| 278 | static 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 | /* PCI Parity control files */ |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 286 | EDAC_PCI_ATTR(check_pci_errors, S_IRUGO | S_IWUSR, edac_pci_int_show, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 287 | edac_pci_int_store); |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 288 | EDAC_PCI_ATTR(edac_pci_log_pe, S_IRUGO | S_IWUSR, edac_pci_int_show, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 289 | edac_pci_int_store); |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 290 | EDAC_PCI_ATTR(edac_pci_log_npe, S_IRUGO | S_IWUSR, edac_pci_int_show, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 291 | edac_pci_int_store); |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 292 | EDAC_PCI_ATTR(edac_pci_panic_on_pe, S_IRUGO | S_IWUSR, edac_pci_int_show, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 293 | edac_pci_int_store); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 294 | EDAC_PCI_ATTR(pci_parity_count, S_IRUGO, edac_pci_int_show, NULL); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 295 | EDAC_PCI_ATTR(pci_nonparity_count, S_IRUGO, edac_pci_int_show, NULL); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 296 | |
| 297 | /* Base Attributes of the memory ECC object */ |
| 298 | static struct edac_pci_dev_attribute *edac_pci_attr[] = { |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 299 | &edac_pci_attr_check_pci_errors, |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 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, |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 303 | &edac_pci_attr_pci_parity_count, |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 304 | &edac_pci_attr_pci_nonparity_count, |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 305 | NULL, |
| 306 | }; |
| 307 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 308 | /* |
| 309 | * edac_pci_release_main_kobj |
| 310 | * |
| 311 | * This release function is called when the reference count to the |
| 312 | * passed kobj goes to zero. |
| 313 | * |
| 314 | * This kobj is the 'main' kobject that EDAC PCI instances |
| 315 | * link to, and thus provide for proper nesting counts |
| 316 | */ |
| 317 | static void edac_pci_release_main_kobj(struct kobject *kobj) |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 318 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 319 | edac_dbg(0, "here to module_put(THIS_MODULE)\n"); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 320 | |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 321 | kfree(kobj); |
| 322 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 323 | /* last reference to top EDAC PCI kobject has been removed, |
| 324 | * NOW release our ref count on the core module |
| 325 | */ |
| 326 | module_put(THIS_MODULE); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 329 | /* ktype struct for the EDAC PCI main kobj */ |
| 330 | static struct kobj_type ktype_edac_pci_main_kobj = { |
| 331 | .release = edac_pci_release_main_kobj, |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 332 | .sysfs_ops = &edac_pci_sysfs_ops, |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 333 | .default_attrs = (struct attribute **)edac_pci_attr, |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 334 | }; |
| 335 | |
| 336 | /** |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 337 | * edac_pci_main_kobj_setup() |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 338 | * |
| 339 | * setup the sysfs for EDAC PCI attributes |
Kay Sievers | fe5ff8b | 2011-12-14 15:21:07 -0800 | [diff] [blame] | 340 | * assumes edac_subsys has already been initialized |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 341 | */ |
Adrian Bunk | 1a45027 | 2008-04-29 01:03:18 -0700 | [diff] [blame] | 342 | static int edac_pci_main_kobj_setup(void) |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 343 | { |
| 344 | int err; |
Kay Sievers | fe5ff8b | 2011-12-14 15:21:07 -0800 | [diff] [blame] | 345 | struct bus_type *edac_subsys; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 346 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 347 | edac_dbg(0, "\n"); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 348 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 349 | /* check and count if we have already created the main kobject */ |
| 350 | if (atomic_inc_return(&edac_pci_sysfs_refcount) != 1) |
| 351 | return 0; |
| 352 | |
| 353 | /* First time, so create the main kobject and its |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 354 | * controls and attributes |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 355 | */ |
Kay Sievers | fe5ff8b | 2011-12-14 15:21:07 -0800 | [diff] [blame] | 356 | edac_subsys = edac_get_sysfs_subsys(); |
| 357 | if (edac_subsys == NULL) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 358 | edac_dbg(1, "no edac_subsys\n"); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 359 | err = -ENODEV; |
| 360 | goto decrement_count_fail; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 361 | } |
| 362 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 363 | /* Bump the reference count on this module to ensure the |
| 364 | * modules isn't unloaded until we deconstruct the top |
| 365 | * level main kobj for EDAC PCI |
| 366 | */ |
| 367 | if (!try_module_get(THIS_MODULE)) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 368 | edac_dbg(1, "try_module_get() failed\n"); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 369 | err = -ENODEV; |
Borislav Petkov | 30e1f7a | 2010-09-02 17:26:48 +0200 | [diff] [blame] | 370 | goto mod_get_fail; |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 371 | } |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 372 | |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 373 | edac_pci_top_main_kobj = kzalloc(sizeof(struct kobject), GFP_KERNEL); |
| 374 | if (!edac_pci_top_main_kobj) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 375 | edac_dbg(1, "Failed to allocate\n"); |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 376 | err = -ENOMEM; |
| 377 | goto kzalloc_fail; |
| 378 | } |
| 379 | |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 380 | /* Instanstiate the pci object */ |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 381 | err = kobject_init_and_add(edac_pci_top_main_kobj, |
| 382 | &ktype_edac_pci_main_kobj, |
Kay Sievers | fe5ff8b | 2011-12-14 15:21:07 -0800 | [diff] [blame] | 383 | &edac_subsys->dev_root->kobj, "pci"); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 384 | if (err) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 385 | edac_dbg(1, "Failed to register '.../edac/pci'\n"); |
Greg Kroah-Hartman | b2ed215 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 386 | goto kobject_init_and_add_fail; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 387 | } |
| 388 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 389 | /* At this point, to 'release' the top level kobject |
| 390 | * for EDAC PCI, then edac_pci_main_kobj_teardown() |
| 391 | * must be used, for resources to be cleaned up properly |
| 392 | */ |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 393 | kobject_uevent(edac_pci_top_main_kobj, KOBJ_ADD); |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 394 | edac_dbg(1, "Registered '.../edac/pci' kobject\n"); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 395 | |
| 396 | return 0; |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 397 | |
| 398 | /* Error unwind statck */ |
Greg Kroah-Hartman | b2ed215 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 399 | kobject_init_and_add_fail: |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 400 | kfree(edac_pci_top_main_kobj); |
| 401 | |
| 402 | kzalloc_fail: |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 403 | module_put(THIS_MODULE); |
| 404 | |
Borislav Petkov | 30e1f7a | 2010-09-02 17:26:48 +0200 | [diff] [blame] | 405 | mod_get_fail: |
Kay Sievers | fe5ff8b | 2011-12-14 15:21:07 -0800 | [diff] [blame] | 406 | edac_put_sysfs_subsys(); |
Borislav Petkov | 30e1f7a | 2010-09-02 17:26:48 +0200 | [diff] [blame] | 407 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 408 | decrement_count_fail: |
| 409 | /* if are on this error exit, nothing to tear down */ |
| 410 | atomic_dec(&edac_pci_sysfs_refcount); |
| 411 | |
| 412 | return err; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | /* |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 416 | * edac_pci_main_kobj_teardown() |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 417 | * |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 418 | * if no longer linked (needed) remove the top level EDAC PCI |
| 419 | * kobject with its controls and attributes |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 420 | */ |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 421 | static void edac_pci_main_kobj_teardown(void) |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 422 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 423 | edac_dbg(0, "\n"); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 424 | |
| 425 | /* Decrement the count and only if no more controller instances |
| 426 | * are connected perform the unregisteration of the top level |
| 427 | * main kobj |
| 428 | */ |
| 429 | if (atomic_dec_return(&edac_pci_sysfs_refcount) == 0) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 430 | edac_dbg(0, "called kobject_put on main kobj\n"); |
Arthur Jones | 14cc571 | 2008-07-25 01:49:08 -0700 | [diff] [blame] | 431 | kobject_put(edac_pci_top_main_kobj); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 432 | } |
Kay Sievers | fe5ff8b | 2011-12-14 15:21:07 -0800 | [diff] [blame] | 433 | edac_put_sysfs_subsys(); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 436 | /* |
| 437 | * |
| 438 | * edac_pci_create_sysfs |
| 439 | * |
| 440 | * Create the controls/attributes for the specified EDAC PCI device |
| 441 | */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 442 | int edac_pci_create_sysfs(struct edac_pci_ctl_info *pci) |
| 443 | { |
| 444 | int err; |
| 445 | struct kobject *edac_kobj = &pci->kobj; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 446 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 447 | edac_dbg(0, "idx=%d\n", pci->pci_idx); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 448 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 449 | /* create the top main EDAC PCI kobject, IF needed */ |
| 450 | err = edac_pci_main_kobj_setup(); |
| 451 | if (err) |
| 452 | return err; |
| 453 | |
| 454 | /* Create this instance's kobject under the MAIN kobject */ |
| 455 | err = edac_pci_create_instance_kobj(pci, pci->pci_idx); |
| 456 | if (err) |
| 457 | goto unregister_cleanup; |
| 458 | |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 459 | err = sysfs_create_link(edac_kobj, &pci->dev->kobj, EDAC_PCI_SYMLINK); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 460 | if (err) { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 461 | edac_dbg(0, "sysfs_create_link() returned err= %d\n", err); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 462 | goto symlink_fail; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | return 0; |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 466 | |
| 467 | /* Error unwind stack */ |
| 468 | symlink_fail: |
| 469 | edac_pci_unregister_sysfs_instance_kobj(pci); |
| 470 | |
| 471 | unregister_cleanup: |
| 472 | edac_pci_main_kobj_teardown(); |
| 473 | |
| 474 | return err; |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 477 | /* |
| 478 | * edac_pci_remove_sysfs |
| 479 | * |
| 480 | * remove the controls and attributes for this EDAC PCI device |
| 481 | */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 482 | void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci) |
| 483 | { |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 484 | edac_dbg(0, "index=%d\n", pci->pci_idx); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 485 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 486 | /* Remove the symlink */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 487 | sysfs_remove_link(&pci->kobj, EDAC_PCI_SYMLINK); |
| 488 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 489 | /* remove this PCI instance's sysfs entries */ |
| 490 | edac_pci_unregister_sysfs_instance_kobj(pci); |
| 491 | |
| 492 | /* Call the main unregister function, which will determine |
| 493 | * if this 'pci' is the last instance. |
| 494 | * If it is, the main kobject will be unregistered as a result |
| 495 | */ |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 496 | edac_dbg(0, "calling edac_pci_main_kobj_teardown()\n"); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 497 | edac_pci_main_kobj_teardown(); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | /************************ PCI error handling *************************/ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 501 | static 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 | /* If we get back 0xFFFF then we must suspect that the card has been |
| 510 | * pulled but the Linux PCI layer has not yet finished cleaning up. |
| 511 | * We don't want to report on such devices |
| 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 | |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 524 | PCI_STATUS_PARITY; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 525 | |
| 526 | if (status) |
| 527 | /* reset only the bits we are interested in */ |
| 528 | pci_write_config_word(dev, where, status); |
| 529 | |
| 530 | return status; |
| 531 | } |
| 532 | |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 533 | |
| 534 | /* Clear any PCI parity errors logged by this device. */ |
| 535 | static 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 | /* 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 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 551 | * Function to retrieve the current parity status |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 552 | * and decode it |
| 553 | * |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 554 | */ |
| 555 | static void edac_pci_dev_parity_test(struct pci_dev *dev) |
| 556 | { |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 557 | unsigned long flags; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 558 | u16 status; |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 559 | u8 header_type; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 560 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 561 | /* stop any interrupts until we can acquire the status */ |
| 562 | local_irq_save(flags); |
| 563 | |
| 564 | /* read the STATUS register on this device */ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 565 | status = get_pci_parity_status(dev, 0); |
| 566 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 567 | /* 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 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 572 | edac_dbg(4, "PCI STATUS= 0x%04x %s\n", status, dev_name(&dev->dev)); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 573 | |
Bryan Boatright | 6b09ff9 | 2008-02-07 00:14:58 -0800 | [diff] [blame] | 574 | /* check the status reg for errors on boards NOT marked as broken |
| 575 | * if broken, we cannot trust any of the status bits |
| 576 | */ |
| 577 | if (status && !dev->broken_parity_status) { |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 578 | if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) { |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 579 | edac_printk(KERN_CRIT, EDAC_PCI, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 580 | "Signaled System Error on %s\n", |
| 581 | pci_name(dev)); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 582 | atomic_inc(&pci_nonparity_count); |
| 583 | } |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 584 | |
| 585 | if (status & (PCI_STATUS_PARITY)) { |
| 586 | edac_printk(KERN_CRIT, EDAC_PCI, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 587 | "Master Data Parity Error on %s\n", |
| 588 | pci_name(dev)); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 589 | |
| 590 | atomic_inc(&pci_parity_count); |
| 591 | } |
| 592 | |
| 593 | if (status & (PCI_STATUS_DETECTED_PARITY)) { |
| 594 | edac_printk(KERN_CRIT, EDAC_PCI, |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 595 | "Detected Parity Error on %s\n", |
| 596 | pci_name(dev)); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 597 | |
| 598 | atomic_inc(&pci_parity_count); |
| 599 | } |
| 600 | } |
| 601 | |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 602 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 603 | edac_dbg(4, "PCI HEADER TYPE= 0x%02x %s\n", |
| 604 | header_type, dev_name(&dev->dev)); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 605 | |
| 606 | if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { |
| 607 | /* On bridges, need to examine secondary status register */ |
| 608 | status = get_pci_parity_status(dev, 1); |
| 609 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 610 | edac_dbg(4, "PCI SEC_STATUS= 0x%04x %s\n", |
| 611 | status, dev_name(&dev->dev)); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 612 | |
Bryan Boatright | 6b09ff9 | 2008-02-07 00:14:58 -0800 | [diff] [blame] | 613 | /* check the secondary status reg for errors, |
| 614 | * on NOT broken boards |
| 615 | */ |
| 616 | if (status && !dev->broken_parity_status) { |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 617 | if (status & (PCI_STATUS_SIG_SYSTEM_ERROR)) { |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 618 | edac_printk(KERN_CRIT, EDAC_PCI, "Bridge " |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 619 | "Signaled System Error on %s\n", |
| 620 | pci_name(dev)); |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 621 | atomic_inc(&pci_nonparity_count); |
| 622 | } |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 623 | |
| 624 | if (status & (PCI_STATUS_PARITY)) { |
| 625 | edac_printk(KERN_CRIT, EDAC_PCI, "Bridge " |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 626 | "Master Data Parity Error on " |
| 627 | "%s\n", pci_name(dev)); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 628 | |
| 629 | atomic_inc(&pci_parity_count); |
| 630 | } |
| 631 | |
| 632 | if (status & (PCI_STATUS_DETECTED_PARITY)) { |
| 633 | edac_printk(KERN_CRIT, EDAC_PCI, "Bridge " |
Douglas Thompson | 052dfb4 | 2007-07-19 01:50:13 -0700 | [diff] [blame] | 634 | "Detected Parity Error on %s\n", |
| 635 | pci_name(dev)); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 636 | |
| 637 | atomic_inc(&pci_parity_count); |
| 638 | } |
| 639 | } |
| 640 | } |
| 641 | } |
| 642 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 643 | /* reduce some complexity in definition of the iterator */ |
| 644 | typedef void (*pci_parity_check_fn_t) (struct pci_dev *dev); |
| 645 | |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 646 | /* |
| 647 | * pci_dev parity list iterator |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 648 | * Scan the PCI device list for one pass, looking for SERRORs |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 649 | * Master Parity ERRORS or Parity ERRORs on primary or secondary devices |
| 650 | */ |
| 651 | static inline void edac_pci_dev_parity_iterator(pci_parity_check_fn_t fn) |
| 652 | { |
| 653 | struct pci_dev *dev = NULL; |
| 654 | |
| 655 | /* request for kernel access to the next PCI device, if any, |
| 656 | * and while we are looking at it have its reference count |
| 657 | * bumped until we are done with it |
| 658 | */ |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 659 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 660 | fn(dev); |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | /* |
| 665 | * edac_pci_do_parity_check |
| 666 | * |
| 667 | * performs the actual PCI parity check operation |
| 668 | */ |
| 669 | void edac_pci_do_parity_check(void) |
| 670 | { |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 671 | int before_count; |
| 672 | |
Joe Perches | 956b9ba | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 673 | edac_dbg(3, "\n"); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 674 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 675 | /* if policy has PCI check off, leave now */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 676 | if (!check_pci_errors) |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 677 | return; |
| 678 | |
| 679 | before_count = atomic_read(&pci_parity_count); |
| 680 | |
| 681 | /* scan all PCI devices looking for a Parity Error on devices and |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 682 | * bridges. |
| 683 | * The iterator calls pci_get_device() which might sleep, thus |
| 684 | * we cannot disable interrupts in this scan. |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 685 | */ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 686 | edac_pci_dev_parity_iterator(edac_pci_dev_parity_test); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 687 | |
| 688 | /* Only if operator has selected panic on PCI Error */ |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 689 | if (edac_pci_get_panic_on_pe()) { |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 690 | /* If the count is different 'after' from 'before' */ |
| 691 | if (before_count != atomic_read(&pci_parity_count)) |
| 692 | panic("EDAC: PCI Parity Error"); |
| 693 | } |
| 694 | } |
| 695 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 696 | /* |
| 697 | * edac_pci_clear_parity_errors |
| 698 | * |
| 699 | * function to perform an iteration over the PCI devices |
| 700 | * and clearn their current status |
| 701 | */ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 702 | void edac_pci_clear_parity_errors(void) |
| 703 | { |
| 704 | /* Clear any PCI bus parity errors that devices initially have logged |
| 705 | * in their registers. |
| 706 | */ |
| 707 | edac_pci_dev_parity_iterator(edac_pci_dev_parity_clear); |
| 708 | } |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 709 | |
| 710 | /* |
| 711 | * edac_pci_handle_pe |
| 712 | * |
| 713 | * Called to handle a PARITY ERROR event |
| 714 | */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 715 | void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg) |
| 716 | { |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 717 | |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 718 | /* global PE counter incremented by edac_pci_do_parity_check() */ |
| 719 | atomic_inc(&pci->counters.pe_count); |
| 720 | |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 721 | if (edac_pci_get_log_pe()) |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 722 | edac_pci_printk(pci, KERN_WARNING, |
| 723 | "Parity Error ctl: %s %d: %s\n", |
| 724 | pci->ctl_name, pci->pci_idx, msg); |
| 725 | |
| 726 | /* |
| 727 | * poke all PCI devices and see which one is the troublemaker |
| 728 | * panic() is called if set |
| 729 | */ |
| 730 | edac_pci_do_parity_check(); |
| 731 | } |
| 732 | EXPORT_SYMBOL_GPL(edac_pci_handle_pe); |
| 733 | |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 734 | |
| 735 | /* |
| 736 | * edac_pci_handle_npe |
| 737 | * |
| 738 | * Called to handle a NON-PARITY ERROR event |
| 739 | */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 740 | void edac_pci_handle_npe(struct edac_pci_ctl_info *pci, const char *msg) |
| 741 | { |
| 742 | |
| 743 | /* global NPE counter incremented by edac_pci_do_parity_check() */ |
| 744 | atomic_inc(&pci->counters.npe_count); |
| 745 | |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 746 | if (edac_pci_get_log_npe()) |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 747 | edac_pci_printk(pci, KERN_WARNING, |
| 748 | "Non-Parity Error ctl: %s %d: %s\n", |
| 749 | pci->ctl_name, pci->pci_idx, msg); |
| 750 | |
| 751 | /* |
| 752 | * poke all PCI devices and see which one is the troublemaker |
| 753 | * panic() is called if set |
| 754 | */ |
| 755 | edac_pci_do_parity_check(); |
| 756 | } |
| 757 | EXPORT_SYMBOL_GPL(edac_pci_handle_npe); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 758 | |
| 759 | /* |
| 760 | * Define the PCI parameter to the module |
| 761 | */ |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 762 | module_param(check_pci_errors, int, 0644); |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 763 | MODULE_PARM_DESC(check_pci_errors, |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 764 | "Check for PCI bus parity errors: 0=off 1=on"); |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 765 | module_param(edac_pci_panic_on_pe, int, 0644); |
| 766 | MODULE_PARM_DESC(edac_pci_panic_on_pe, |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 767 | "Panic on PCI Bus Parity error: 0=off 1=on"); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 768 | |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 769 | #endif /* CONFIG_PCI */ |