blob: 7e3723768acaece4ef364480f205e409439eb8f1 [file] [log] [blame]
Douglas Thompsone27e3da2007-07-19 01:49:36 -07001
2/*
3 * edac_device.c
4 * (C) 2007 www.douglaskthompson.com
5 *
6 * This file may be distributed under the terms of the
7 * GNU General Public License.
8 *
9 * Written by Doug Thompson <norsk5@xmission.com>
10 *
11 * edac_device API implementation
12 * 19 Jan 2007
13 */
14
15#include <linux/module.h>
16#include <linux/types.h>
17#include <linux/smp.h>
18#include <linux/init.h>
19#include <linux/sysctl.h>
20#include <linux/highmem.h>
21#include <linux/timer.h>
22#include <linux/slab.h>
Douglas Thompson52490c82007-07-19 01:50:20 -070023#include <linux/jiffies.h>
Douglas Thompsone27e3da2007-07-19 01:49:36 -070024#include <linux/spinlock.h>
25#include <linux/list.h>
26#include <linux/sysdev.h>
27#include <linux/ctype.h>
28#include <linux/workqueue.h>
29#include <asm/uaccess.h>
30#include <asm/page.h>
31
32#include "edac_core.h"
33#include "edac_module.h"
34
Doug Thompsonbf52fa42007-07-19 01:50:30 -070035/* lock for the list: 'edac_device_list', manipulation of this list
36 * is protected by the 'device_ctls_mutex' lock
37 */
Doug Thompson0ca84762007-07-19 01:50:22 -070038static DEFINE_MUTEX(device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -070039static struct list_head edac_device_list = LIST_HEAD_INIT(edac_device_list);
40
Douglas Thompsone27e3da2007-07-19 01:49:36 -070041#ifdef CONFIG_EDAC_DEBUG
42static void edac_device_dump_device(struct edac_device_ctl_info *edac_dev)
43{
Douglas Thompson079708b2007-07-19 01:49:58 -070044 debugf3("\tedac_dev = %p dev_idx=%d \n", edac_dev, edac_dev->dev_idx);
Douglas Thompsone27e3da2007-07-19 01:49:36 -070045 debugf4("\tedac_dev->edac_check = %p\n", edac_dev->edac_check);
46 debugf3("\tdev = %p\n", edac_dev->dev);
47 debugf3("\tmod_name:ctl_name = %s:%s\n",
48 edac_dev->mod_name, edac_dev->ctl_name);
49 debugf3("\tpvt_info = %p\n\n", edac_dev->pvt_info);
50}
Douglas Thompson079708b2007-07-19 01:49:58 -070051#endif /* CONFIG_EDAC_DEBUG */
Douglas Thompsone27e3da2007-07-19 01:49:36 -070052
Douglas Thompson1c3631f2007-07-19 01:50:29 -070053
Douglas Thompsone27e3da2007-07-19 01:49:36 -070054/*
Douglas Thompson52490c82007-07-19 01:50:20 -070055 * edac_device_alloc_ctl_info()
56 * Allocate a new edac device control info structure
57 *
58 * The control structure is allocated in complete chunk
59 * from the OS. It is in turn sub allocated to the
60 * various objects that compose the struture
61 *
62 * The structure has a 'nr_instance' array within itself.
63 * Each instance represents a major component
64 * Example: L1 cache and L2 cache are 2 instance components
65 *
66 * Within each instance is an array of 'nr_blocks' blockoffsets
Douglas Thompsone27e3da2007-07-19 01:49:36 -070067 */
68struct edac_device_ctl_info *edac_device_alloc_ctl_info(
69 unsigned sz_private,
Douglas Thompson52490c82007-07-19 01:50:20 -070070 char *edac_device_name, unsigned nr_instances,
71 char *edac_block_name, unsigned nr_blocks,
72 unsigned offset_value, /* zero, 1, or other based offset */
Doug Thompsond45e7822007-07-19 01:50:27 -070073 struct edac_dev_sysfs_block_attribute *attrib_spec, unsigned nr_attrib,
74 int device_index)
Douglas Thompsone27e3da2007-07-19 01:49:36 -070075{
76 struct edac_device_ctl_info *dev_ctl;
77 struct edac_device_instance *dev_inst, *inst;
78 struct edac_device_block *dev_blk, *blk_p, *blk;
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -070079 struct edac_dev_sysfs_block_attribute *dev_attrib, *attrib_p, *attrib;
Douglas Thompsone27e3da2007-07-19 01:49:36 -070080 unsigned total_size;
81 unsigned count;
82 unsigned instance, block, attr;
83 void *pvt;
Douglas Thompson1c3631f2007-07-19 01:50:29 -070084 int err;
Douglas Thompsone27e3da2007-07-19 01:49:36 -070085
86 debugf1("%s() instances=%d blocks=%d\n",
Douglas Thompson079708b2007-07-19 01:49:58 -070087 __func__, nr_instances, nr_blocks);
Douglas Thompsone27e3da2007-07-19 01:49:36 -070088
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -070089 /* Calculate the size of memory we need to allocate AND
90 * determine the offsets of the various item arrays
91 * (instance,block,attrib) from the start of an allocated structure.
92 * We want the alignment of each item (instance,block,attrib)
Douglas Thompsone27e3da2007-07-19 01:49:36 -070093 * to be at least as stringent as what the compiler would
94 * provide if we could simply hardcode everything into a single struct.
95 */
Douglas Thompson52490c82007-07-19 01:50:20 -070096 dev_ctl = (struct edac_device_ctl_info *)NULL;
Douglas Thompsone27e3da2007-07-19 01:49:36 -070097
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -070098 /* Calc the 'end' offset past end of ONE ctl_info structure
99 * which will become the start of the 'instance' array
100 */
Douglas Thompson7391c6d2007-07-19 01:50:21 -0700101 dev_inst = edac_align_ptr(&dev_ctl[1], sizeof(*dev_inst));
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700102
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700103 /* Calc the 'end' offset past the instance array within the ctl_info
104 * which will become the start of the block array
105 */
Douglas Thompson7391c6d2007-07-19 01:50:21 -0700106 dev_blk = edac_align_ptr(&dev_inst[nr_instances], sizeof(*dev_blk));
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700107
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700108 /* Calc the 'end' offset past the dev_blk array
109 * which will become the start of the attrib array, if any.
110 */
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700111 count = nr_instances * nr_blocks;
Douglas Thompson7391c6d2007-07-19 01:50:21 -0700112 dev_attrib = edac_align_ptr(&dev_blk[count], sizeof(*dev_attrib));
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700113
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700114 /* Check for case of when an attribute array is specified */
115 if (nr_attrib > 0) {
116 /* calc how many nr_attrib we need */
117 count *= nr_attrib;
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700118
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700119 /* Calc the 'end' offset past the attributes array */
120 pvt = edac_align_ptr(&dev_attrib[count], sz_private);
121 } else {
122 /* no attribute array specificed */
123 pvt = edac_align_ptr(dev_attrib, sz_private);
124 }
125
126 /* 'pvt' now points to where the private data area is.
127 * At this point 'pvt' (like dev_inst,dev_blk and dev_attrib)
128 * is baselined at ZERO
129 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700130 total_size = ((unsigned long)pvt) + sz_private;
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700131
132 /* Allocate the amount of memory for the set of control structures */
Douglas Thompson52490c82007-07-19 01:50:20 -0700133 dev_ctl = kzalloc(total_size, GFP_KERNEL);
134 if (dev_ctl == NULL)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700135 return NULL;
136
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700137 /* Adjust pointers so they point within the actual memory we
138 * just allocated rather than an imaginary chunk of memory
139 * located at address 0.
140 * 'dev_ctl' points to REAL memory, while the others are
141 * ZERO based and thus need to be adjusted to point within
142 * the allocated memory.
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700143 */
144 dev_inst = (struct edac_device_instance *)
Douglas Thompson052dfb42007-07-19 01:50:13 -0700145 (((char *)dev_ctl) + ((unsigned long)dev_inst));
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700146 dev_blk = (struct edac_device_block *)
Douglas Thompson052dfb42007-07-19 01:50:13 -0700147 (((char *)dev_ctl) + ((unsigned long)dev_blk));
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700148 dev_attrib = (struct edac_dev_sysfs_block_attribute *)
Douglas Thompson052dfb42007-07-19 01:50:13 -0700149 (((char *)dev_ctl) + ((unsigned long)dev_attrib));
Douglas Thompson079708b2007-07-19 01:49:58 -0700150 pvt = sz_private ? (((char *)dev_ctl) + ((unsigned long)pvt)) : NULL;
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700151
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700152 /* Begin storing the information into the control info structure */
Doug Thompsond45e7822007-07-19 01:50:27 -0700153 dev_ctl->dev_idx = device_index;
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700154 dev_ctl->nr_instances = nr_instances;
155 dev_ctl->instances = dev_inst;
156 dev_ctl->pvt_info = pvt;
157
Douglas Thompson52490c82007-07-19 01:50:20 -0700158 /* Name of this edac device */
159 snprintf(dev_ctl->name,sizeof(dev_ctl->name),"%s",edac_device_name);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700160
161 /* Initialize every Instance */
162 for (instance = 0; instance < nr_instances; instance++) {
163 inst = &dev_inst[instance];
164 inst->ctl = dev_ctl;
165 inst->nr_blocks = nr_blocks;
166 blk_p = &dev_blk[instance * nr_blocks];
167 inst->blocks = blk_p;
168
169 /* name of this instance */
170 snprintf(inst->name, sizeof(inst->name),
Douglas Thompson079708b2007-07-19 01:49:58 -0700171 "%s%u", edac_device_name, instance);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700172
173 /* Initialize every block in each instance */
Douglas Thompson079708b2007-07-19 01:49:58 -0700174 for (block = 0; block < nr_blocks; block++) {
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700175 blk = &blk_p[block];
176 blk->instance = inst;
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700177 snprintf(blk->name, sizeof(blk->name),
Douglas Thompsond391a7b2007-07-19 01:50:11 -0700178 "%s%d", edac_block_name, block+offset_value);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700179
180 debugf1("%s() instance=%d block=%d name=%s\n",
Douglas Thompson079708b2007-07-19 01:49:58 -0700181 __func__, instance, block, blk->name);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700182
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700183 /* if there are NO attributes OR no attribute pointer
184 * then continue on to next block iteration
185 */
186 if ((nr_attrib == 0) || (attrib_spec == NULL))
187 continue;
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700188
Douglas Thompsonfd309a9d2007-07-19 01:50:25 -0700189 /* setup the attribute array for this block */
190 blk->nr_attribs = nr_attrib;
191 attrib_p = &dev_attrib[block*nr_instances*nr_attrib];
192 blk->block_attributes = attrib_p;
193
194 /* Initialize every user specified attribute in this
195 * block with the data the caller passed in
196 */
197 for (attr = 0; attr < nr_attrib; attr++) {
198 attrib = &attrib_p[attr];
199 attrib->attr = attrib_spec->attr;
200 attrib->show = attrib_spec->show;
201 attrib->store = attrib_spec->store;
202
203 /* up reference this block */
204 attrib->block = blk;
205
206 /* bump the attrib_spec */
207 attrib_spec++;
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700208 }
209 }
210 }
211
212 /* Mark this instance as merely ALLOCATED */
213 dev_ctl->op_state = OP_ALLOC;
214
Douglas Thompson1c3631f2007-07-19 01:50:29 -0700215 /*
216 * Initialize the 'root' kobj for the edac_device controller
217 */
218 err = edac_device_register_sysfs_main_kobj(dev_ctl);
219 if (err) {
220 kfree(dev_ctl);
221 return NULL;
222 }
223
224 /* at this point, the root kobj is valid, and in order to
225 * 'free' the object, then the function:
226 * edac_device_unregister_sysfs_main_kobj() must be called
227 * which will perform kobj unregistration and the actual free
228 * will occur during the kobject callback operation
229 */
230
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700231 return dev_ctl;
232}
233EXPORT_SYMBOL_GPL(edac_device_alloc_ctl_info);
234
235/*
236 * edac_device_free_ctl_info()
237 * frees the memory allocated by the edac_device_alloc_ctl_info()
238 * function
239 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700240void edac_device_free_ctl_info(struct edac_device_ctl_info *ctl_info)
241{
Douglas Thompson1c3631f2007-07-19 01:50:29 -0700242 edac_device_unregister_sysfs_main_kobj(ctl_info);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700243}
244EXPORT_SYMBOL_GPL(edac_device_free_ctl_info);
245
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700246/*
247 * find_edac_device_by_dev
248 * scans the edac_device list for a specific 'struct device *'
Douglas Thompson52490c82007-07-19 01:50:20 -0700249 *
250 * lock to be held prior to call: device_ctls_mutex
251 *
252 * Return:
253 * pointer to control structure managing 'dev'
254 * NULL if not found on list
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700255 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700256static struct edac_device_ctl_info *find_edac_device_by_dev(struct device *dev)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700257{
258 struct edac_device_ctl_info *edac_dev;
259 struct list_head *item;
260
261 debugf3("%s()\n", __func__);
262
263 list_for_each(item, &edac_device_list) {
264 edac_dev = list_entry(item, struct edac_device_ctl_info, link);
265
266 if (edac_dev->dev == dev)
267 return edac_dev;
268 }
269
270 return NULL;
271}
272
273/*
274 * add_edac_dev_to_global_list
275 * Before calling this function, caller must
276 * assign a unique value to edac_dev->dev_idx.
Douglas Thompson52490c82007-07-19 01:50:20 -0700277 *
278 * lock to be held prior to call: device_ctls_mutex
279 *
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700280 * Return:
281 * 0 on success
282 * 1 on failure.
283 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700284static int add_edac_dev_to_global_list(struct edac_device_ctl_info *edac_dev)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700285{
286 struct list_head *item, *insert_before;
287 struct edac_device_ctl_info *rover;
288
289 insert_before = &edac_device_list;
290
291 /* Determine if already on the list */
Douglas Thompson52490c82007-07-19 01:50:20 -0700292 rover = find_edac_device_by_dev(edac_dev->dev);
293 if (unlikely(rover != NULL))
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700294 goto fail0;
295
296 /* Insert in ascending order by 'dev_idx', so find position */
297 list_for_each(item, &edac_device_list) {
298 rover = list_entry(item, struct edac_device_ctl_info, link);
299
300 if (rover->dev_idx >= edac_dev->dev_idx) {
301 if (unlikely(rover->dev_idx == edac_dev->dev_idx))
302 goto fail1;
303
304 insert_before = item;
305 break;
306 }
307 }
308
309 list_add_tail_rcu(&edac_dev->link, insert_before);
310 return 0;
311
Douglas Thompson052dfb42007-07-19 01:50:13 -0700312fail0:
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700313 edac_printk(KERN_WARNING, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700314 "%s (%s) %s %s already assigned %d\n",
315 rover->dev->bus_id, dev_name(rover),
316 rover->mod_name, rover->ctl_name, rover->dev_idx);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700317 return 1;
318
Douglas Thompson052dfb42007-07-19 01:50:13 -0700319fail1:
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700320 edac_printk(KERN_WARNING, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700321 "bug in low-level driver: attempt to assign\n"
322 " duplicate dev_idx %d in %s()\n", rover->dev_idx,
323 __func__);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700324 return 1;
325}
326
327/*
328 * complete_edac_device_list_del
Douglas Thompson52490c82007-07-19 01:50:20 -0700329 *
330 * callback function when reference count is zero
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700331 */
332static void complete_edac_device_list_del(struct rcu_head *head)
333{
334 struct edac_device_ctl_info *edac_dev;
335
336 edac_dev = container_of(head, struct edac_device_ctl_info, rcu);
337 INIT_LIST_HEAD(&edac_dev->link);
Douglas Thompson1c3631f2007-07-19 01:50:29 -0700338 complete(&edac_dev->removal_complete);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700339}
340
341/*
342 * del_edac_device_from_global_list
Douglas Thompson52490c82007-07-19 01:50:20 -0700343 *
Douglas Thompson1c3631f2007-07-19 01:50:29 -0700344 * remove the RCU, setup for a callback call,
345 * then wait for the callback to occur
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700346 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700347static void del_edac_device_from_global_list(struct edac_device_ctl_info
Douglas Thompson052dfb42007-07-19 01:50:13 -0700348 *edac_device)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700349{
350 list_del_rcu(&edac_device->link);
Douglas Thompson1c3631f2007-07-19 01:50:29 -0700351
352 init_completion(&edac_device->removal_complete);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700353 call_rcu(&edac_device->rcu, complete_edac_device_list_del);
Douglas Thompson1c3631f2007-07-19 01:50:29 -0700354 wait_for_completion(&edac_device->removal_complete);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700355}
356
357/**
358 * edac_device_find
359 * Search for a edac_device_ctl_info structure whose index is 'idx'.
360 *
361 * If found, return a pointer to the structure.
362 * Else return NULL.
363 *
364 * Caller must hold device_ctls_mutex.
365 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700366struct edac_device_ctl_info *edac_device_find(int idx)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700367{
368 struct list_head *item;
369 struct edac_device_ctl_info *edac_dev;
370
371 /* Iterate over list, looking for exact match of ID */
372 list_for_each(item, &edac_device_list) {
373 edac_dev = list_entry(item, struct edac_device_ctl_info, link);
374
375 if (edac_dev->dev_idx >= idx) {
376 if (edac_dev->dev_idx == idx)
377 return edac_dev;
378
379 /* not on list, so terminate early */
380 break;
381 }
382 }
383
384 return NULL;
385}
Douglas Thompson52490c82007-07-19 01:50:20 -0700386EXPORT_SYMBOL_GPL(edac_device_find);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700387
388/*
Dave Jiang81d87cb2007-07-19 01:49:52 -0700389 * edac_device_workq_function
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700390 * performs the operation scheduled by a workq request
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700391 *
392 * this workq is embedded within an edac_device_ctl_info
393 * structure, that needs to be polled for possible error events.
394 *
395 * This operation is to acquire the list mutex lock
396 * (thus preventing insertation or deletion)
397 * and then call the device's poll function IFF this device is
398 * running polled and there is a poll function defined.
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700399 */
Dave Jiang81d87cb2007-07-19 01:49:52 -0700400static void edac_device_workq_function(struct work_struct *work_req)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700401{
Douglas Thompson079708b2007-07-19 01:49:58 -0700402 struct delayed_work *d_work = (struct delayed_work *)work_req;
403 struct edac_device_ctl_info *edac_dev = to_edac_device_ctl_work(d_work);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700404
405 //debugf0("%s() here and running\n", __func__);
Doug Thompson0ca84762007-07-19 01:50:22 -0700406 mutex_lock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700407
408 /* Only poll controllers that are running polled and have a check */
409 if ((edac_dev->op_state == OP_RUNNING_POLL) &&
Douglas Thompson052dfb42007-07-19 01:50:13 -0700410 (edac_dev->edac_check != NULL)) {
411 edac_dev->edac_check(edac_dev);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700412 }
413
Doug Thompson0ca84762007-07-19 01:50:22 -0700414 mutex_unlock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700415
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700416 /* Reschedule the workq for the next time period to start again
417 * if the number of msec is for 1 sec, then adjust to the next
418 * whole one second to save timers fireing all over the period
419 * between integral seconds
420 */
421 if (edac_dev->poll_msec == 1000)
422 queue_delayed_work(edac_workqueue, &edac_dev->work,
423 round_jiffies(edac_dev->delay));
424 else
425 queue_delayed_work(edac_workqueue, &edac_dev->work,
426 edac_dev->delay);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700427}
428
429/*
Dave Jiang81d87cb2007-07-19 01:49:52 -0700430 * edac_device_workq_setup
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700431 * initialize a workq item for this edac_device instance
432 * passing in the new delay period in msec
433 */
Dave Jiang81d87cb2007-07-19 01:49:52 -0700434void edac_device_workq_setup(struct edac_device_ctl_info *edac_dev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700435 unsigned msec)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700436{
437 debugf0("%s()\n", __func__);
438
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700439 /* take the arg 'msec' and set it into the control structure
440 * to used in the time period calculation
441 * then calc the number of jiffies that represents
442 */
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700443 edac_dev->poll_msec = msec;
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700444 edac_dev->delay = msecs_to_jiffies(msec);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700445
Dave Jiang81d87cb2007-07-19 01:49:52 -0700446 INIT_DELAYED_WORK(&edac_dev->work, edac_device_workq_function);
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700447
448 /* optimize here for the 1 second case, which will be normal value, to
449 * fire ON the 1 second time event. This helps reduce all sorts of
450 * timers firing on sub-second basis, while they are happy
451 * to fire together on the 1 second exactly
452 */
453 if (edac_dev->poll_msec == 1000)
454 queue_delayed_work(edac_workqueue, &edac_dev->work,
455 round_jiffies(edac_dev->delay));
456 else
457 queue_delayed_work(edac_workqueue, &edac_dev->work,
458 edac_dev->delay);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700459}
460
461/*
Dave Jiang81d87cb2007-07-19 01:49:52 -0700462 * edac_device_workq_teardown
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700463 * stop the workq processing on this edac_dev
464 */
Dave Jiang81d87cb2007-07-19 01:49:52 -0700465void edac_device_workq_teardown(struct edac_device_ctl_info *edac_dev)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700466{
467 int status;
468
469 status = cancel_delayed_work(&edac_dev->work);
470 if (status == 0) {
471 /* workq instance might be running, wait for it */
472 flush_workqueue(edac_workqueue);
473 }
474}
475
476/*
477 * edac_device_reset_delay_period
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700478 *
479 * need to stop any outstanding workq queued up at this time
480 * because we will be resetting the sleep time.
481 * Then restart the workq on the new delay
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700482 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700483void edac_device_reset_delay_period(struct edac_device_ctl_info *edac_dev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700484 unsigned long value)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700485{
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700486 /* cancel the current workq request, without the mutex lock */
Dave Jiang81d87cb2007-07-19 01:49:52 -0700487 edac_device_workq_teardown(edac_dev);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700488
Doug Thompsonbf52fa42007-07-19 01:50:30 -0700489 /* acquire the mutex before doing the workq setup */
490 mutex_lock(&device_ctls_mutex);
491
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700492 /* restart the workq request, with new delay value */
Dave Jiang81d87cb2007-07-19 01:49:52 -0700493 edac_device_workq_setup(edac_dev, value);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700494
Doug Thompson0ca84762007-07-19 01:50:22 -0700495 mutex_unlock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700496}
497
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700498/**
499 * edac_device_add_device: Insert the 'edac_dev' structure into the
500 * edac_device global list and create sysfs entries associated with
501 * edac_device structure.
502 * @edac_device: pointer to the edac_device structure to be added to the list
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700503 * 'edac_device' structure.
504 *
505 * Return:
506 * 0 Success
507 * !0 Failure
508 */
Doug Thompsond45e7822007-07-19 01:50:27 -0700509int edac_device_add_device(struct edac_device_ctl_info *edac_dev)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700510{
511 debugf0("%s()\n", __func__);
512
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700513#ifdef CONFIG_EDAC_DEBUG
514 if (edac_debug_level >= 3)
515 edac_device_dump_device(edac_dev);
516#endif
Doug Thompson0ca84762007-07-19 01:50:22 -0700517 mutex_lock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700518
519 if (add_edac_dev_to_global_list(edac_dev))
520 goto fail0;
521
522 /* set load time so that error rate can be tracked */
523 edac_dev->start_time = jiffies;
524
525 /* create this instance's sysfs entries */
526 if (edac_device_create_sysfs(edac_dev)) {
527 edac_device_printk(edac_dev, KERN_WARNING,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700528 "failed to create sysfs device\n");
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700529 goto fail1;
530 }
531
532 /* If there IS a check routine, then we are running POLLED */
533 if (edac_dev->edac_check != NULL) {
534 /* This instance is NOW RUNNING */
535 edac_dev->op_state = OP_RUNNING_POLL;
536
Dave Jiang81d87cb2007-07-19 01:49:52 -0700537 /*
538 * enable workq processing on this instance,
539 * default = 1000 msec
540 */
541 edac_device_workq_setup(edac_dev, 1000);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700542 } else {
543 edac_dev->op_state = OP_RUNNING_INTERRUPT;
544 }
545
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700546 /* Report action taken */
547 edac_device_printk(edac_dev, KERN_INFO,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700548 "Giving out device to module '%s' controller "
549 "'%s': DEV '%s' (%s)\n",
550 edac_dev->mod_name,
551 edac_dev->ctl_name,
552 dev_name(edac_dev),
Douglas Thompson494d0d52007-07-19 01:50:21 -0700553 edac_op_state_to_string(edac_dev->op_state));
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700554
Doug Thompson0ca84762007-07-19 01:50:22 -0700555 mutex_unlock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700556 return 0;
557
Douglas Thompson052dfb42007-07-19 01:50:13 -0700558fail1:
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700559 /* Some error, so remove the entry from the lsit */
560 del_edac_device_from_global_list(edac_dev);
561
Douglas Thompson052dfb42007-07-19 01:50:13 -0700562fail0:
Doug Thompson0ca84762007-07-19 01:50:22 -0700563 mutex_unlock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700564 return 1;
565}
566EXPORT_SYMBOL_GPL(edac_device_add_device);
567
568/**
569 * edac_device_del_device:
570 * Remove sysfs entries for specified edac_device structure and
571 * then remove edac_device structure from global list
572 *
573 * @pdev:
574 * Pointer to 'struct device' representing edac_device
575 * structure to remove.
576 *
577 * Return:
578 * Pointer to removed edac_device structure,
579 * OR NULL if device not found.
580 */
Douglas Thompson079708b2007-07-19 01:49:58 -0700581struct edac_device_ctl_info *edac_device_del_device(struct device *dev)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700582{
583 struct edac_device_ctl_info *edac_dev;
584
585 debugf0("MC: %s()\n", __func__);
586
Doug Thompson0ca84762007-07-19 01:50:22 -0700587 mutex_lock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700588
Douglas Thompson52490c82007-07-19 01:50:20 -0700589 /* Find the structure on the list, if not there, then leave */
590 edac_dev = find_edac_device_by_dev(dev);
591 if (edac_dev == NULL) {
Doug Thompson0ca84762007-07-19 01:50:22 -0700592 mutex_unlock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700593 return NULL;
594 }
595
596 /* mark this instance as OFFLINE */
597 edac_dev->op_state = OP_OFFLINE;
598
599 /* clear workq processing on this instance */
Dave Jiang81d87cb2007-07-19 01:49:52 -0700600 edac_device_workq_teardown(edac_dev);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700601
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700602 /* deregister from global list */
603 del_edac_device_from_global_list(edac_dev);
604
Doug Thompson0ca84762007-07-19 01:50:22 -0700605 mutex_unlock(&device_ctls_mutex);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700606
Douglas Thompson1c3631f2007-07-19 01:50:29 -0700607 /* Tear down the sysfs entries for this instance */
608 edac_device_remove_sysfs(edac_dev);
609
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700610 edac_printk(KERN_INFO, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700611 "Removed device %d for %s %s: DEV %s\n",
612 edac_dev->dev_idx,
613 edac_dev->mod_name, edac_dev->ctl_name, dev_name(edac_dev));
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700614
615 return edac_dev;
616}
Douglas Thompson079708b2007-07-19 01:49:58 -0700617EXPORT_SYMBOL_GPL(edac_device_del_device);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700618
619static inline int edac_device_get_log_ce(struct edac_device_ctl_info *edac_dev)
620{
621 return edac_dev->log_ce;
622}
623
624static inline int edac_device_get_log_ue(struct edac_device_ctl_info *edac_dev)
625{
626 return edac_dev->log_ue;
627}
628
Douglas Thompson079708b2007-07-19 01:49:58 -0700629static inline int edac_device_get_panic_on_ue(struct edac_device_ctl_info
Douglas Thompson052dfb42007-07-19 01:50:13 -0700630 *edac_dev)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700631{
632 return edac_dev->panic_on_ue;
633}
634
635/*
636 * edac_device_handle_ce
637 * perform a common output and handling of an 'edac_dev' CE event
638 */
639void edac_device_handle_ce(struct edac_device_ctl_info *edac_dev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700640 int inst_nr, int block_nr, const char *msg)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700641{
642 struct edac_device_instance *instance;
643 struct edac_device_block *block = NULL;
644
645 if ((inst_nr >= edac_dev->nr_instances) || (inst_nr < 0)) {
646 edac_device_printk(edac_dev, KERN_ERR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700647 "INTERNAL ERROR: 'instance' out of range "
648 "(%d >= %d)\n", inst_nr,
649 edac_dev->nr_instances);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700650 return;
651 }
652
653 instance = edac_dev->instances + inst_nr;
654
655 if ((block_nr >= instance->nr_blocks) || (block_nr < 0)) {
656 edac_device_printk(edac_dev, KERN_ERR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700657 "INTERNAL ERROR: instance %d 'block' "
658 "out of range (%d >= %d)\n",
659 inst_nr, block_nr,
660 instance->nr_blocks);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700661 return;
662 }
663
664 if (instance->nr_blocks > 0) {
665 block = instance->blocks + block_nr;
666 block->counters.ce_count++;
667 }
668
669 /* Propogate the count up the 'totals' tree */
670 instance->counters.ce_count++;
671 edac_dev->counters.ce_count++;
672
673 if (edac_device_get_log_ce(edac_dev))
674 edac_device_printk(edac_dev, KERN_WARNING,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700675 "CE: %s instance: %s block: %s '%s'\n",
676 edac_dev->ctl_name, instance->name,
677 block ? block->name : "N/A", msg);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700678}
679EXPORT_SYMBOL_GPL(edac_device_handle_ce);
680
681/*
682 * edac_device_handle_ue
683 * perform a common output and handling of an 'edac_dev' UE event
684 */
685void edac_device_handle_ue(struct edac_device_ctl_info *edac_dev,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700686 int inst_nr, int block_nr, const char *msg)
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700687{
688 struct edac_device_instance *instance;
689 struct edac_device_block *block = NULL;
690
691 if ((inst_nr >= edac_dev->nr_instances) || (inst_nr < 0)) {
692 edac_device_printk(edac_dev, KERN_ERR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700693 "INTERNAL ERROR: 'instance' out of range "
694 "(%d >= %d)\n", inst_nr,
695 edac_dev->nr_instances);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700696 return;
697 }
698
699 instance = edac_dev->instances + inst_nr;
700
701 if ((block_nr >= instance->nr_blocks) || (block_nr < 0)) {
702 edac_device_printk(edac_dev, KERN_ERR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700703 "INTERNAL ERROR: instance %d 'block' "
704 "out of range (%d >= %d)\n",
705 inst_nr, block_nr,
706 instance->nr_blocks);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700707 return;
708 }
709
710 if (instance->nr_blocks > 0) {
711 block = instance->blocks + block_nr;
712 block->counters.ue_count++;
713 }
714
715 /* Propogate the count up the 'totals' tree */
716 instance->counters.ue_count++;
717 edac_dev->counters.ue_count++;
718
719 if (edac_device_get_log_ue(edac_dev))
720 edac_device_printk(edac_dev, KERN_EMERG,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700721 "UE: %s instance: %s block: %s '%s'\n",
722 edac_dev->ctl_name, instance->name,
723 block ? block->name : "N/A", msg);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700724
725 if (edac_device_get_panic_on_ue(edac_dev))
Douglas Thompsond391a7b2007-07-19 01:50:11 -0700726 panic("EDAC %s: UE instance: %s block %s '%s'\n",
Douglas Thompson052dfb42007-07-19 01:50:13 -0700727 edac_dev->ctl_name, instance->name,
728 block ? block->name : "N/A", msg);
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700729}
Douglas Thompson079708b2007-07-19 01:49:58 -0700730EXPORT_SYMBOL_GPL(edac_device_handle_ue);