blob: 48c844a72a278bc13e72e0af0674b53f3fe06e04 [file] [log] [blame]
Dave Jiang91b99042007-07-19 01:49:52 -07001/*
2 * EDAC PCI component
3 *
4 * Author: Dave Jiang <djiang@mvista.com>
5 *
6 * 2007 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 *
11 */
Dave Jiang91b99042007-07-19 01:49:52 -070012#include <asm/page.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080013#include <linux/uaccess.h>
Mauro Carvalho Chehab0b892c72016-10-29 09:56:00 -020014#include <linux/ctype.h>
15#include <linux/highmem.h>
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/slab.h>
19#include <linux/smp.h>
20#include <linux/spinlock.h>
21#include <linux/sysctl.h>
22#include <linux/timer.h>
Dave Jiang91b99042007-07-19 01:49:52 -070023
Mauro Carvalho Chehab0b892c72016-10-29 09:56:00 -020024#include "edac_pci.h"
Dave Jiang91b99042007-07-19 01:49:52 -070025#include "edac_module.h"
26
27static DEFINE_MUTEX(edac_pci_ctls_mutex);
Robert P. J. Dayff6ac2a2008-04-29 01:03:17 -070028static LIST_HEAD(edac_pci_list);
Harry Ciao8641a382009-04-02 16:58:47 -070029static atomic_t pci_indexes = ATOMIC_INIT(0);
Dave Jiang91b99042007-07-19 01:49:52 -070030
Douglas Thompson079708b2007-07-19 01:49:58 -070031struct edac_pci_ctl_info *edac_pci_alloc_ctl_info(unsigned int sz_pvt,
Douglas Thompson052dfb42007-07-19 01:50:13 -070032 const char *edac_pci_name)
Dave Jiang91b99042007-07-19 01:49:52 -070033{
34 struct edac_pci_ctl_info *pci;
Mauro Carvalho Chehab93e4fe62012-04-16 10:18:12 -030035 void *p = NULL, *pvt;
Dave Jiang91b99042007-07-19 01:49:52 -070036 unsigned int size;
37
Joe Perches956b9ba2012-04-29 17:08:39 -030038 edac_dbg(1, "\n");
Doug Thompsond4c14652007-07-26 10:41:15 -070039
Mauro Carvalho Chehab93e4fe62012-04-16 10:18:12 -030040 pci = edac_align_ptr(&p, sizeof(*pci), 1);
41 pvt = edac_align_ptr(&p, 1, sz_pvt);
Dave Jiang91b99042007-07-19 01:49:52 -070042 size = ((unsigned long)pvt) + sz_pvt;
43
Doug Thompsond4c14652007-07-26 10:41:15 -070044 /* Alloc the needed control struct memory */
45 pci = kzalloc(size, GFP_KERNEL);
46 if (pci == NULL)
Dave Jiang91b99042007-07-19 01:49:52 -070047 return NULL;
48
Doug Thompsond4c14652007-07-26 10:41:15 -070049 /* Now much private space */
Dave Jiang91b99042007-07-19 01:49:52 -070050 pvt = sz_pvt ? ((char *)pci) + ((unsigned long)pvt) : NULL;
51
52 pci->pvt_info = pvt;
Dave Jiang91b99042007-07-19 01:49:52 -070053 pci->op_state = OP_ALLOC;
54
Douglas Thompson079708b2007-07-19 01:49:58 -070055 snprintf(pci->name, strlen(edac_pci_name) + 1, "%s", edac_pci_name);
Dave Jiang91b99042007-07-19 01:49:52 -070056
57 return pci;
58}
59EXPORT_SYMBOL_GPL(edac_pci_alloc_ctl_info);
60
Dave Jiang91b99042007-07-19 01:49:52 -070061void edac_pci_free_ctl_info(struct edac_pci_ctl_info *pci)
62{
Joe Perches956b9ba2012-04-29 17:08:39 -030063 edac_dbg(1, "\n");
Douglas Thompson079708b2007-07-19 01:49:58 -070064
Doug Thompsond4c14652007-07-26 10:41:15 -070065 edac_pci_remove_sysfs(pci);
66}
Dave Jiang91b99042007-07-19 01:49:52 -070067EXPORT_SYMBOL_GPL(edac_pci_free_ctl_info);
68
69/*
70 * find_edac_pci_by_dev()
71 * scans the edac_pci list for a specific 'struct device *'
Doug Thompsond4c14652007-07-26 10:41:15 -070072 *
73 * return NULL if not found, or return control struct pointer
Dave Jiang91b99042007-07-19 01:49:52 -070074 */
Douglas Thompson079708b2007-07-19 01:49:58 -070075static struct edac_pci_ctl_info *find_edac_pci_by_dev(struct device *dev)
Dave Jiang91b99042007-07-19 01:49:52 -070076{
77 struct edac_pci_ctl_info *pci;
78 struct list_head *item;
79
Joe Perches956b9ba2012-04-29 17:08:39 -030080 edac_dbg(1, "\n");
Dave Jiang91b99042007-07-19 01:49:52 -070081
82 list_for_each(item, &edac_pci_list) {
83 pci = list_entry(item, struct edac_pci_ctl_info, link);
84
85 if (pci->dev == dev)
86 return pci;
87 }
88
89 return NULL;
90}
91
92/*
93 * add_edac_pci_to_global_list
94 * Before calling this function, caller must assign a unique value to
95 * edac_dev->pci_idx.
96 * Return:
97 * 0 on success
98 * 1 on failure
99 */
100static int add_edac_pci_to_global_list(struct edac_pci_ctl_info *pci)
101{
102 struct list_head *item, *insert_before;
103 struct edac_pci_ctl_info *rover;
104
Joe Perches956b9ba2012-04-29 17:08:39 -0300105 edac_dbg(1, "\n");
Doug Thompsond4c14652007-07-26 10:41:15 -0700106
Dave Jiang91b99042007-07-19 01:49:52 -0700107 insert_before = &edac_pci_list;
108
109 /* Determine if already on the list */
Doug Thompsond4c14652007-07-26 10:41:15 -0700110 rover = find_edac_pci_by_dev(pci->dev);
111 if (unlikely(rover != NULL))
Dave Jiang91b99042007-07-19 01:49:52 -0700112 goto fail0;
113
114 /* Insert in ascending order by 'pci_idx', so find position */
115 list_for_each(item, &edac_pci_list) {
116 rover = list_entry(item, struct edac_pci_ctl_info, link);
117
118 if (rover->pci_idx >= pci->pci_idx) {
119 if (unlikely(rover->pci_idx == pci->pci_idx))
120 goto fail1;
121
122 insert_before = item;
123 break;
124 }
125 }
126
127 list_add_tail_rcu(&pci->link, insert_before);
128 return 0;
129
Douglas Thompson052dfb42007-07-19 01:50:13 -0700130fail0:
Dave Jiang91b99042007-07-19 01:49:52 -0700131 edac_printk(KERN_WARNING, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700132 "%s (%s) %s %s already assigned %d\n",
Kay Sievers281efb12009-01-06 14:42:57 -0800133 dev_name(rover->dev), edac_dev_name(rover),
Douglas Thompson052dfb42007-07-19 01:50:13 -0700134 rover->mod_name, rover->ctl_name, rover->pci_idx);
Dave Jiang91b99042007-07-19 01:49:52 -0700135 return 1;
136
Douglas Thompson052dfb42007-07-19 01:50:13 -0700137fail1:
Dave Jiang91b99042007-07-19 01:49:52 -0700138 edac_printk(KERN_WARNING, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700139 "but in low-level driver: attempt to assign\n"
140 "\tduplicate pci_idx %d in %s()\n", rover->pci_idx,
141 __func__);
Dave Jiang91b99042007-07-19 01:49:52 -0700142 return 1;
143}
144
145/*
Dave Jiang91b99042007-07-19 01:49:52 -0700146 * del_edac_pci_from_global_list
Doug Thompsond4c14652007-07-26 10:41:15 -0700147 *
148 * remove the PCI control struct from the global list
Dave Jiang91b99042007-07-19 01:49:52 -0700149 */
150static void del_edac_pci_from_global_list(struct edac_pci_ctl_info *pci)
151{
152 list_del_rcu(&pci->link);
Lai Jiangshane2e77092011-05-26 16:25:58 -0700153
154 /* these are for safe removal of devices from global list while
155 * NMI handlers may be traversing list
156 */
157 synchronize_rcu();
158 INIT_LIST_HEAD(&pci->link);
Dave Jiang91b99042007-07-19 01:49:52 -0700159}
160
Dave Jiang91b99042007-07-19 01:49:52 -0700161/*
162 * edac_pci_workq_function()
Doug Thompsond4c14652007-07-26 10:41:15 -0700163 *
164 * periodic function that performs the operation
165 * scheduled by a workq request, for a given PCI control struct
Dave Jiang91b99042007-07-19 01:49:52 -0700166 */
Dave Jiang91b99042007-07-19 01:49:52 -0700167static void edac_pci_workq_function(struct work_struct *work_req)
168{
Jean Delvarefbeb4382009-04-13 14:40:21 -0700169 struct delayed_work *d_work = to_delayed_work(work_req);
Dave Jiang91b99042007-07-19 01:49:52 -0700170 struct edac_pci_ctl_info *pci = to_edac_pci_ctl_work(d_work);
Doug Thompsond4c14652007-07-26 10:41:15 -0700171 int msec;
172 unsigned long delay;
Dave Jiang91b99042007-07-19 01:49:52 -0700173
Joe Perches956b9ba2012-04-29 17:08:39 -0300174 edac_dbg(3, "checking\n");
Dave Jiang91b99042007-07-19 01:49:52 -0700175
Doug Thompsond4c14652007-07-26 10:41:15 -0700176 mutex_lock(&edac_pci_ctls_mutex);
Dave Jiang91b99042007-07-19 01:49:52 -0700177
Borislav Petkov06e912d2016-02-02 11:36:11 +0100178 if (pci->op_state != OP_RUNNING_POLL) {
179 mutex_unlock(&edac_pci_ctls_mutex);
180 return;
Doug Thompsond4c14652007-07-26 10:41:15 -0700181 }
182
Borislav Petkov06e912d2016-02-02 11:36:11 +0100183 if (edac_pci_get_check_errors())
184 pci->edac_check(pci);
185
186 /* if we are on a one second period, then use round */
187 msec = edac_pci_get_poll_msec();
188 if (msec == 1000)
189 delay = round_jiffies_relative(msecs_to_jiffies(msec));
190 else
191 delay = msecs_to_jiffies(msec);
192
193 edac_queue_work(&pci->work, delay);
194
Doug Thompsond4c14652007-07-26 10:41:15 -0700195 mutex_unlock(&edac_pci_ctls_mutex);
Dave Jiang91b99042007-07-19 01:49:52 -0700196}
197
Harry Ciao8641a382009-04-02 16:58:47 -0700198int edac_pci_alloc_index(void)
199{
200 return atomic_inc_return(&pci_indexes) - 1;
201}
202EXPORT_SYMBOL_GPL(edac_pci_alloc_index);
203
Dave Jiang91b99042007-07-19 01:49:52 -0700204int edac_pci_add_device(struct edac_pci_ctl_info *pci, int edac_idx)
205{
Joe Perches956b9ba2012-04-29 17:08:39 -0300206 edac_dbg(0, "\n");
Dave Jiang91b99042007-07-19 01:49:52 -0700207
208 pci->pci_idx = edac_idx;
Doug Thompsond4c14652007-07-26 10:41:15 -0700209 pci->start_time = jiffies;
Dave Jiang91b99042007-07-19 01:49:52 -0700210
Doug Thompsond4c14652007-07-26 10:41:15 -0700211 mutex_lock(&edac_pci_ctls_mutex);
Dave Jiang91b99042007-07-19 01:49:52 -0700212
213 if (add_edac_pci_to_global_list(pci))
214 goto fail0;
215
Dave Jiang91b99042007-07-19 01:49:52 -0700216 if (edac_pci_create_sysfs(pci)) {
217 edac_pci_printk(pci, KERN_WARNING,
218 "failed to create sysfs pci\n");
219 goto fail1;
220 }
221
Borislav Petkov09667602016-02-02 10:59:53 +0100222 if (pci->edac_check) {
Dave Jiang91b99042007-07-19 01:49:52 -0700223 pci->op_state = OP_RUNNING_POLL;
224
Borislav Petkov626a7a42016-02-02 11:06:41 +0100225 INIT_DELAYED_WORK(&pci->work, edac_pci_workq_function);
226 edac_queue_work(&pci->work, msecs_to_jiffies(edac_pci_get_poll_msec()));
227
Dave Jiang91b99042007-07-19 01:49:52 -0700228 } else {
229 pci->op_state = OP_RUNNING_INTERRUPT;
230 }
231
232 edac_pci_printk(pci, KERN_INFO,
Robert Richter7270a602013-10-10 18:22:36 +0200233 "Giving out device to module %s controller %s: DEV %s (%s)\n",
234 pci->mod_name, pci->ctl_name, pci->dev_name,
235 edac_op_state_to_string(pci->op_state));
Dave Jiang91b99042007-07-19 01:49:52 -0700236
Doug Thompsond4c14652007-07-26 10:41:15 -0700237 mutex_unlock(&edac_pci_ctls_mutex);
Dave Jiang91b99042007-07-19 01:49:52 -0700238 return 0;
239
Doug Thompsond4c14652007-07-26 10:41:15 -0700240 /* error unwind stack */
Douglas Thompson052dfb42007-07-19 01:50:13 -0700241fail1:
Dave Jiang91b99042007-07-19 01:49:52 -0700242 del_edac_pci_from_global_list(pci);
Douglas Thompson052dfb42007-07-19 01:50:13 -0700243fail0:
Doug Thompsond4c14652007-07-26 10:41:15 -0700244 mutex_unlock(&edac_pci_ctls_mutex);
Dave Jiang91b99042007-07-19 01:49:52 -0700245 return 1;
246}
247EXPORT_SYMBOL_GPL(edac_pci_add_device);
248
Douglas Thompson079708b2007-07-19 01:49:58 -0700249struct edac_pci_ctl_info *edac_pci_del_device(struct device *dev)
Dave Jiang91b99042007-07-19 01:49:52 -0700250{
251 struct edac_pci_ctl_info *pci;
252
Joe Perches956b9ba2012-04-29 17:08:39 -0300253 edac_dbg(0, "\n");
Dave Jiang91b99042007-07-19 01:49:52 -0700254
Doug Thompsond4c14652007-07-26 10:41:15 -0700255 mutex_lock(&edac_pci_ctls_mutex);
Dave Jiang91b99042007-07-19 01:49:52 -0700256
Doug Thompsond4c14652007-07-26 10:41:15 -0700257 /* ensure the control struct is on the global list
258 * if not, then leave
259 */
260 pci = find_edac_pci_by_dev(dev);
261 if (pci == NULL) {
262 mutex_unlock(&edac_pci_ctls_mutex);
Dave Jiang91b99042007-07-19 01:49:52 -0700263 return NULL;
264 }
265
266 pci->op_state = OP_OFFLINE;
267
Dave Jiang91b99042007-07-19 01:49:52 -0700268 del_edac_pci_from_global_list(pci);
269
Doug Thompsond4c14652007-07-26 10:41:15 -0700270 mutex_unlock(&edac_pci_ctls_mutex);
271
Borislav Petkov09667602016-02-02 10:59:53 +0100272 if (pci->edac_check)
Borislav Petkov626a7a42016-02-02 11:06:41 +0100273 edac_stop_work(&pci->work);
Dave Jiang91b99042007-07-19 01:49:52 -0700274
275 edac_printk(KERN_INFO, EDAC_PCI,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700276 "Removed device %d for %s %s: DEV %s\n",
Stephen Rothwell17aa7e02008-05-05 13:54:19 +1000277 pci->pci_idx, pci->mod_name, pci->ctl_name, edac_dev_name(pci));
Dave Jiang91b99042007-07-19 01:49:52 -0700278
279 return pci;
280}
281EXPORT_SYMBOL_GPL(edac_pci_del_device);
282
Doug Thompsond4c14652007-07-26 10:41:15 -0700283/*
284 * edac_pci_generic_check
285 *
286 * a Generic parity check API
287 */
Adrian Bunk1a450272008-04-29 01:03:18 -0700288static void edac_pci_generic_check(struct edac_pci_ctl_info *pci)
Dave Jiang91b99042007-07-19 01:49:52 -0700289{
Joe Perches956b9ba2012-04-29 17:08:39 -0300290 edac_dbg(4, "\n");
Dave Jiang91b99042007-07-19 01:49:52 -0700291 edac_pci_do_parity_check();
292}
293
Doug Thompsond4c14652007-07-26 10:41:15 -0700294/* free running instance index counter */
Douglas Thompsonf0440912007-07-19 01:50:19 -0700295static int edac_pci_idx;
Dave Jiang91b99042007-07-19 01:49:52 -0700296#define EDAC_PCI_GENCTL_NAME "EDAC PCI controller"
297
298struct edac_pci_gen_data {
299 int edac_idx;
300};
301
Douglas Thompson079708b2007-07-19 01:49:58 -0700302struct edac_pci_ctl_info *edac_pci_create_generic_ctl(struct device *dev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700303 const char *mod_name)
Dave Jiang91b99042007-07-19 01:49:52 -0700304{
305 struct edac_pci_ctl_info *pci;
306 struct edac_pci_gen_data *pdata;
307
308 pci = edac_pci_alloc_ctl_info(sizeof(*pdata), EDAC_PCI_GENCTL_NAME);
309 if (!pci)
310 return NULL;
311
312 pdata = pci->pvt_info;
313 pci->dev = dev;
314 dev_set_drvdata(pci->dev, pci);
315 pci->dev_name = pci_name(to_pci_dev(dev));
316
317 pci->mod_name = mod_name;
318 pci->ctl_name = EDAC_PCI_GENCTL_NAME;
Borislav Petkov876bb332012-09-10 15:52:27 +0200319 if (edac_op_state == EDAC_OPSTATE_POLL)
320 pci->edac_check = edac_pci_generic_check;
Dave Jiang91b99042007-07-19 01:49:52 -0700321
322 pdata->edac_idx = edac_pci_idx++;
323
324 if (edac_pci_add_device(pci, pdata->edac_idx) > 0) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300325 edac_dbg(3, "failed edac_pci_add_device()\n");
Dave Jiang91b99042007-07-19 01:49:52 -0700326 edac_pci_free_ctl_info(pci);
327 return NULL;
328 }
329
330 return pci;
331}
332EXPORT_SYMBOL_GPL(edac_pci_create_generic_ctl);
333
334void edac_pci_release_generic_ctl(struct edac_pci_ctl_info *pci)
335{
Joe Perches956b9ba2012-04-29 17:08:39 -0300336 edac_dbg(0, "pci mod=%s\n", pci->mod_name);
Doug Thompsond4c14652007-07-26 10:41:15 -0700337
Dave Jiang91b99042007-07-19 01:49:52 -0700338 edac_pci_del_device(pci->dev);
339 edac_pci_free_ctl_info(pci);
340}
Dave Jiang91b99042007-07-19 01:49:52 -0700341EXPORT_SYMBOL_GPL(edac_pci_release_generic_ctl);