]>
Commit | Line | Data |
---|---|---|
e27e3dac DT |
1 | |
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 <[email protected]> | |
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> | |
52490c8d | 23 | #include <linux/jiffies.h> |
e27e3dac DT |
24 | #include <linux/spinlock.h> |
25 | #include <linux/list.h> | |
e27e3dac DT |
26 | #include <linux/ctype.h> |
27 | #include <linux/workqueue.h> | |
28 | #include <asm/uaccess.h> | |
29 | #include <asm/page.h> | |
30 | ||
31 | #include "edac_core.h" | |
32 | #include "edac_module.h" | |
33 | ||
bf52fa4a DT |
34 | /* lock for the list: 'edac_device_list', manipulation of this list |
35 | * is protected by the 'device_ctls_mutex' lock | |
36 | */ | |
0ca84761 | 37 | static DEFINE_MUTEX(device_ctls_mutex); |
ff6ac2a6 | 38 | static LIST_HEAD(edac_device_list); |
e27e3dac | 39 | |
e27e3dac DT |
40 | #ifdef CONFIG_EDAC_DEBUG |
41 | static void edac_device_dump_device(struct edac_device_ctl_info *edac_dev) | |
42 | { | |
956b9ba1 JP |
43 | edac_dbg(3, "\tedac_dev = %p dev_idx=%d\n", |
44 | edac_dev, edac_dev->dev_idx); | |
45 | edac_dbg(4, "\tedac_dev->edac_check = %p\n", edac_dev->edac_check); | |
46 | edac_dbg(3, "\tdev = %p\n", edac_dev->dev); | |
47 | edac_dbg(3, "\tmod_name:ctl_name = %s:%s\n", | |
48 | edac_dev->mod_name, edac_dev->ctl_name); | |
49 | edac_dbg(3, "\tpvt_info = %p\n\n", edac_dev->pvt_info); | |
e27e3dac | 50 | } |
079708b9 | 51 | #endif /* CONFIG_EDAC_DEBUG */ |
e27e3dac | 52 | |
1c3631ff | 53 | |
e27e3dac | 54 | /* |
52490c8d DT |
55 | * 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 | |
15ed103a | 60 | * various objects that compose the structure |
52490c8d DT |
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 | |
e27e3dac DT |
67 | */ |
68 | struct edac_device_ctl_info *edac_device_alloc_ctl_info( | |
69 | unsigned sz_private, | |
52490c8d DT |
70 | 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 */ | |
d45e7823 DT |
73 | struct edac_dev_sysfs_block_attribute *attrib_spec, unsigned nr_attrib, |
74 | int device_index) | |
e27e3dac DT |
75 | { |
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; | |
fd309a9d | 79 | struct edac_dev_sysfs_block_attribute *dev_attrib, *attrib_p, *attrib; |
e27e3dac DT |
80 | unsigned total_size; |
81 | unsigned count; | |
82 | unsigned instance, block, attr; | |
93e4fe64 | 83 | void *pvt, *p; |
1c3631ff | 84 | int err; |
e27e3dac | 85 | |
956b9ba1 | 86 | edac_dbg(4, "instances=%d blocks=%d\n", nr_instances, nr_blocks); |
e27e3dac | 87 | |
fd309a9d DT |
88 | /* Calculate the size of memory we need to allocate AND |
89 | * determine the offsets of the various item arrays | |
90 | * (instance,block,attrib) from the start of an allocated structure. | |
91 | * We want the alignment of each item (instance,block,attrib) | |
e27e3dac DT |
92 | * to be at least as stringent as what the compiler would |
93 | * provide if we could simply hardcode everything into a single struct. | |
94 | */ | |
93e4fe64 MCC |
95 | p = NULL; |
96 | dev_ctl = edac_align_ptr(&p, sizeof(*dev_ctl), 1); | |
e27e3dac | 97 | |
fd309a9d DT |
98 | /* Calc the 'end' offset past end of ONE ctl_info structure |
99 | * which will become the start of the 'instance' array | |
100 | */ | |
93e4fe64 | 101 | dev_inst = edac_align_ptr(&p, sizeof(*dev_inst), nr_instances); |
e27e3dac | 102 | |
fd309a9d DT |
103 | /* Calc the 'end' offset past the instance array within the ctl_info |
104 | * which will become the start of the block array | |
105 | */ | |
93e4fe64 MCC |
106 | count = nr_instances * nr_blocks; |
107 | dev_blk = edac_align_ptr(&p, sizeof(*dev_blk), count); | |
e27e3dac | 108 | |
fd309a9d DT |
109 | /* Calc the 'end' offset past the dev_blk array |
110 | * which will become the start of the attrib array, if any. | |
111 | */ | |
93e4fe64 MCC |
112 | /* calc how many nr_attrib we need */ |
113 | if (nr_attrib > 0) | |
fd309a9d | 114 | count *= nr_attrib; |
93e4fe64 | 115 | dev_attrib = edac_align_ptr(&p, sizeof(*dev_attrib), count); |
e27e3dac | 116 | |
93e4fe64 MCC |
117 | /* Calc the 'end' offset past the attributes array */ |
118 | pvt = edac_align_ptr(&p, sz_private, 1); | |
fd309a9d DT |
119 | |
120 | /* 'pvt' now points to where the private data area is. | |
121 | * At this point 'pvt' (like dev_inst,dev_blk and dev_attrib) | |
122 | * is baselined at ZERO | |
123 | */ | |
079708b9 | 124 | total_size = ((unsigned long)pvt) + sz_private; |
e27e3dac DT |
125 | |
126 | /* Allocate the amount of memory for the set of control structures */ | |
52490c8d DT |
127 | dev_ctl = kzalloc(total_size, GFP_KERNEL); |
128 | if (dev_ctl == NULL) | |
e27e3dac DT |
129 | return NULL; |
130 | ||
fd309a9d DT |
131 | /* Adjust pointers so they point within the actual memory we |
132 | * just allocated rather than an imaginary chunk of memory | |
133 | * located at address 0. | |
134 | * 'dev_ctl' points to REAL memory, while the others are | |
135 | * ZERO based and thus need to be adjusted to point within | |
136 | * the allocated memory. | |
e27e3dac DT |
137 | */ |
138 | dev_inst = (struct edac_device_instance *) | |
052dfb45 | 139 | (((char *)dev_ctl) + ((unsigned long)dev_inst)); |
e27e3dac | 140 | dev_blk = (struct edac_device_block *) |
052dfb45 | 141 | (((char *)dev_ctl) + ((unsigned long)dev_blk)); |
fd309a9d | 142 | dev_attrib = (struct edac_dev_sysfs_block_attribute *) |
052dfb45 | 143 | (((char *)dev_ctl) + ((unsigned long)dev_attrib)); |
079708b9 | 144 | pvt = sz_private ? (((char *)dev_ctl) + ((unsigned long)pvt)) : NULL; |
e27e3dac | 145 | |
fd309a9d | 146 | /* Begin storing the information into the control info structure */ |
d45e7823 | 147 | dev_ctl->dev_idx = device_index; |
e27e3dac DT |
148 | dev_ctl->nr_instances = nr_instances; |
149 | dev_ctl->instances = dev_inst; | |
150 | dev_ctl->pvt_info = pvt; | |
151 | ||
56e61a9c DT |
152 | /* Default logging of CEs and UEs */ |
153 | dev_ctl->log_ce = 1; | |
154 | dev_ctl->log_ue = 1; | |
155 | ||
52490c8d DT |
156 | /* Name of this edac device */ |
157 | snprintf(dev_ctl->name,sizeof(dev_ctl->name),"%s",edac_device_name); | |
e27e3dac | 158 | |
956b9ba1 JP |
159 | edac_dbg(4, "edac_dev=%p next after end=%p\n", |
160 | dev_ctl, pvt + sz_private); | |
b2a4ac0c | 161 | |
e27e3dac DT |
162 | /* Initialize every Instance */ |
163 | for (instance = 0; instance < nr_instances; instance++) { | |
164 | inst = &dev_inst[instance]; | |
165 | inst->ctl = dev_ctl; | |
166 | inst->nr_blocks = nr_blocks; | |
167 | blk_p = &dev_blk[instance * nr_blocks]; | |
168 | inst->blocks = blk_p; | |
169 | ||
170 | /* name of this instance */ | |
171 | snprintf(inst->name, sizeof(inst->name), | |
079708b9 | 172 | "%s%u", edac_device_name, instance); |
e27e3dac DT |
173 | |
174 | /* Initialize every block in each instance */ | |
079708b9 | 175 | for (block = 0; block < nr_blocks; block++) { |
e27e3dac DT |
176 | blk = &blk_p[block]; |
177 | blk->instance = inst; | |
e27e3dac | 178 | snprintf(blk->name, sizeof(blk->name), |
d391a7b8 | 179 | "%s%d", edac_block_name, block+offset_value); |
e27e3dac | 180 | |
956b9ba1 JP |
181 | edac_dbg(4, "instance=%d inst_p=%p block=#%d block_p=%p name='%s'\n", |
182 | instance, inst, block, blk, blk->name); | |
e27e3dac | 183 | |
fd309a9d DT |
184 | /* if there are NO attributes OR no attribute pointer |
185 | * then continue on to next block iteration | |
186 | */ | |
187 | if ((nr_attrib == 0) || (attrib_spec == NULL)) | |
188 | continue; | |
189 | ||
190 | /* setup the attribute array for this block */ | |
191 | blk->nr_attribs = nr_attrib; | |
192 | attrib_p = &dev_attrib[block*nr_instances*nr_attrib]; | |
193 | blk->block_attributes = attrib_p; | |
194 | ||
956b9ba1 JP |
195 | edac_dbg(4, "THIS BLOCK_ATTRIB=%p\n", |
196 | blk->block_attributes); | |
b2a4ac0c | 197 | |
fd309a9d DT |
198 | /* Initialize every user specified attribute in this |
199 | * block with the data the caller passed in | |
b2a4ac0c DT |
200 | * Each block gets its own copy of pointers, |
201 | * and its unique 'value' | |
fd309a9d DT |
202 | */ |
203 | for (attr = 0; attr < nr_attrib; attr++) { | |
204 | attrib = &attrib_p[attr]; | |
fd309a9d | 205 | |
b2a4ac0c DT |
206 | /* populate the unique per attrib |
207 | * with the code pointers and info | |
208 | */ | |
209 | attrib->attr = attrib_spec[attr].attr; | |
210 | attrib->show = attrib_spec[attr].show; | |
211 | attrib->store = attrib_spec[attr].store; | |
212 | ||
213 | attrib->block = blk; /* up link */ | |
214 | ||
956b9ba1 JP |
215 | edac_dbg(4, "alloc-attrib=%p attrib_name='%s' attrib-spec=%p spec-name=%s\n", |
216 | attrib, attrib->attr.name, | |
217 | &attrib_spec[attr], | |
218 | attrib_spec[attr].attr.name | |
b2a4ac0c | 219 | ); |
e27e3dac DT |
220 | } |
221 | } | |
222 | } | |
223 | ||
224 | /* Mark this instance as merely ALLOCATED */ | |
225 | dev_ctl->op_state = OP_ALLOC; | |
226 | ||
1c3631ff DT |
227 | /* |
228 | * Initialize the 'root' kobj for the edac_device controller | |
229 | */ | |
230 | err = edac_device_register_sysfs_main_kobj(dev_ctl); | |
231 | if (err) { | |
232 | kfree(dev_ctl); | |
233 | return NULL; | |
234 | } | |
235 | ||
236 | /* at this point, the root kobj is valid, and in order to | |
237 | * 'free' the object, then the function: | |
238 | * edac_device_unregister_sysfs_main_kobj() must be called | |
239 | * which will perform kobj unregistration and the actual free | |
240 | * will occur during the kobject callback operation | |
241 | */ | |
242 | ||
e27e3dac DT |
243 | return dev_ctl; |
244 | } | |
245 | EXPORT_SYMBOL_GPL(edac_device_alloc_ctl_info); | |
246 | ||
247 | /* | |
248 | * edac_device_free_ctl_info() | |
249 | * frees the memory allocated by the edac_device_alloc_ctl_info() | |
250 | * function | |
251 | */ | |
079708b9 DT |
252 | void edac_device_free_ctl_info(struct edac_device_ctl_info *ctl_info) |
253 | { | |
1c3631ff | 254 | edac_device_unregister_sysfs_main_kobj(ctl_info); |
e27e3dac | 255 | } |
079708b9 | 256 | EXPORT_SYMBOL_GPL(edac_device_free_ctl_info); |
e27e3dac DT |
257 | |
258 | /* | |
259 | * find_edac_device_by_dev | |
260 | * scans the edac_device list for a specific 'struct device *' | |
52490c8d DT |
261 | * |
262 | * lock to be held prior to call: device_ctls_mutex | |
263 | * | |
264 | * Return: | |
265 | * pointer to control structure managing 'dev' | |
266 | * NULL if not found on list | |
e27e3dac | 267 | */ |
079708b9 | 268 | static struct edac_device_ctl_info *find_edac_device_by_dev(struct device *dev) |
e27e3dac DT |
269 | { |
270 | struct edac_device_ctl_info *edac_dev; | |
271 | struct list_head *item; | |
272 | ||
956b9ba1 | 273 | edac_dbg(0, "\n"); |
e27e3dac DT |
274 | |
275 | list_for_each(item, &edac_device_list) { | |
276 | edac_dev = list_entry(item, struct edac_device_ctl_info, link); | |
277 | ||
278 | if (edac_dev->dev == dev) | |
279 | return edac_dev; | |
280 | } | |
281 | ||
282 | return NULL; | |
283 | } | |
284 | ||
285 | /* | |
286 | * add_edac_dev_to_global_list | |
287 | * Before calling this function, caller must | |
288 | * assign a unique value to edac_dev->dev_idx. | |
52490c8d DT |
289 | * |
290 | * lock to be held prior to call: device_ctls_mutex | |
291 | * | |
e27e3dac DT |
292 | * Return: |
293 | * 0 on success | |
294 | * 1 on failure. | |
295 | */ | |
079708b9 | 296 | static int add_edac_dev_to_global_list(struct edac_device_ctl_info *edac_dev) |
e27e3dac DT |
297 | { |
298 | struct list_head *item, *insert_before; | |
299 | struct edac_device_ctl_info *rover; | |
300 | ||
301 | insert_before = &edac_device_list; | |
302 | ||
303 | /* Determine if already on the list */ | |
52490c8d DT |
304 | rover = find_edac_device_by_dev(edac_dev->dev); |
305 | if (unlikely(rover != NULL)) | |
e27e3dac DT |
306 | goto fail0; |
307 | ||
308 | /* Insert in ascending order by 'dev_idx', so find position */ | |
309 | list_for_each(item, &edac_device_list) { | |
310 | rover = list_entry(item, struct edac_device_ctl_info, link); | |
311 | ||
312 | if (rover->dev_idx >= edac_dev->dev_idx) { | |
313 | if (unlikely(rover->dev_idx == edac_dev->dev_idx)) | |
314 | goto fail1; | |
315 | ||
316 | insert_before = item; | |
317 | break; | |
318 | } | |
319 | } | |
320 | ||
321 | list_add_tail_rcu(&edac_dev->link, insert_before); | |
322 | return 0; | |
323 | ||
052dfb45 | 324 | fail0: |
e27e3dac | 325 | edac_printk(KERN_WARNING, EDAC_MC, |
052dfb45 | 326 | "%s (%s) %s %s already assigned %d\n", |
281efb17 | 327 | dev_name(rover->dev), edac_dev_name(rover), |
052dfb45 | 328 | rover->mod_name, rover->ctl_name, rover->dev_idx); |
e27e3dac DT |
329 | return 1; |
330 | ||
052dfb45 | 331 | fail1: |
e27e3dac | 332 | edac_printk(KERN_WARNING, EDAC_MC, |
052dfb45 DT |
333 | "bug in low-level driver: attempt to assign\n" |
334 | " duplicate dev_idx %d in %s()\n", rover->dev_idx, | |
335 | __func__); | |
e27e3dac DT |
336 | return 1; |
337 | } | |
338 | ||
e27e3dac DT |
339 | /* |
340 | * del_edac_device_from_global_list | |
341 | */ | |
079708b9 | 342 | static void del_edac_device_from_global_list(struct edac_device_ctl_info |
052dfb45 | 343 | *edac_device) |
e27e3dac DT |
344 | { |
345 | list_del_rcu(&edac_device->link); | |
e2e77098 LJ |
346 | |
347 | /* these are for safe removal of devices from global list while | |
348 | * NMI handlers may be traversing list | |
349 | */ | |
350 | synchronize_rcu(); | |
351 | INIT_LIST_HEAD(&edac_device->link); | |
e27e3dac DT |
352 | } |
353 | ||
e27e3dac | 354 | /* |
81d87cb1 | 355 | * edac_device_workq_function |
e27e3dac | 356 | * performs the operation scheduled by a workq request |
bf52fa4a DT |
357 | * |
358 | * this workq is embedded within an edac_device_ctl_info | |
359 | * structure, that needs to be polled for possible error events. | |
360 | * | |
361 | * This operation is to acquire the list mutex lock | |
f70d4a95 | 362 | * (thus preventing insertation or deletion) |
bf52fa4a DT |
363 | * and then call the device's poll function IFF this device is |
364 | * running polled and there is a poll function defined. | |
e27e3dac | 365 | */ |
81d87cb1 | 366 | static void edac_device_workq_function(struct work_struct *work_req) |
e27e3dac | 367 | { |
fbeb4384 | 368 | struct delayed_work *d_work = to_delayed_work(work_req); |
079708b9 | 369 | struct edac_device_ctl_info *edac_dev = to_edac_device_ctl_work(d_work); |
e27e3dac | 370 | |
0ca84761 | 371 | mutex_lock(&device_ctls_mutex); |
e27e3dac | 372 | |
d519c8d9 HC |
373 | /* If we are being removed, bail out immediately */ |
374 | if (edac_dev->op_state == OP_OFFLINE) { | |
375 | mutex_unlock(&device_ctls_mutex); | |
376 | return; | |
377 | } | |
378 | ||
e27e3dac DT |
379 | /* Only poll controllers that are running polled and have a check */ |
380 | if ((edac_dev->op_state == OP_RUNNING_POLL) && | |
052dfb45 DT |
381 | (edac_dev->edac_check != NULL)) { |
382 | edac_dev->edac_check(edac_dev); | |
e27e3dac DT |
383 | } |
384 | ||
0ca84761 | 385 | mutex_unlock(&device_ctls_mutex); |
e27e3dac | 386 | |
bf52fa4a DT |
387 | /* Reschedule the workq for the next time period to start again |
388 | * if the number of msec is for 1 sec, then adjust to the next | |
15ed103a | 389 | * whole one second to save timers firing all over the period |
bf52fa4a DT |
390 | * between integral seconds |
391 | */ | |
392 | if (edac_dev->poll_msec == 1000) | |
c4cf3b45 | 393 | edac_queue_work(&edac_dev->work, round_jiffies_relative(edac_dev->delay)); |
bf52fa4a | 394 | else |
c4cf3b45 | 395 | edac_queue_work(&edac_dev->work, edac_dev->delay); |
e27e3dac DT |
396 | } |
397 | ||
398 | /* | |
81d87cb1 | 399 | * edac_device_workq_setup |
e27e3dac DT |
400 | * initialize a workq item for this edac_device instance |
401 | * passing in the new delay period in msec | |
402 | */ | |
e136fa01 BP |
403 | static void edac_device_workq_setup(struct edac_device_ctl_info *edac_dev, |
404 | unsigned msec) | |
e27e3dac | 405 | { |
956b9ba1 | 406 | edac_dbg(0, "\n"); |
e27e3dac | 407 | |
bf52fa4a DT |
408 | /* take the arg 'msec' and set it into the control structure |
409 | * to used in the time period calculation | |
410 | * then calc the number of jiffies that represents | |
411 | */ | |
e27e3dac | 412 | edac_dev->poll_msec = msec; |
bf52fa4a | 413 | edac_dev->delay = msecs_to_jiffies(msec); |
e27e3dac | 414 | |
81d87cb1 | 415 | INIT_DELAYED_WORK(&edac_dev->work, edac_device_workq_function); |
bf52fa4a DT |
416 | |
417 | /* optimize here for the 1 second case, which will be normal value, to | |
418 | * fire ON the 1 second time event. This helps reduce all sorts of | |
419 | * timers firing on sub-second basis, while they are happy | |
420 | * to fire together on the 1 second exactly | |
421 | */ | |
422 | if (edac_dev->poll_msec == 1000) | |
c4cf3b45 | 423 | edac_queue_work(&edac_dev->work, round_jiffies_relative(edac_dev->delay)); |
bf52fa4a | 424 | else |
c4cf3b45 | 425 | edac_queue_work(&edac_dev->work, edac_dev->delay); |
e27e3dac DT |
426 | } |
427 | ||
428 | /* | |
81d87cb1 | 429 | * edac_device_workq_teardown |
e27e3dac DT |
430 | * stop the workq processing on this edac_dev |
431 | */ | |
e136fa01 | 432 | static void edac_device_workq_teardown(struct edac_device_ctl_info *edac_dev) |
e27e3dac | 433 | { |
881f0fce SB |
434 | if (!edac_dev->edac_check) |
435 | return; | |
436 | ||
fcd5c4dd BP |
437 | edac_dev->op_state = OP_OFFLINE; |
438 | ||
c4cf3b45 | 439 | edac_stop_work(&edac_dev->work); |
e27e3dac DT |
440 | } |
441 | ||
442 | /* | |
443 | * edac_device_reset_delay_period | |
bf52fa4a DT |
444 | * |
445 | * need to stop any outstanding workq queued up at this time | |
446 | * because we will be resetting the sleep time. | |
447 | * Then restart the workq on the new delay | |
e27e3dac | 448 | */ |
079708b9 | 449 | void edac_device_reset_delay_period(struct edac_device_ctl_info *edac_dev, |
052dfb45 | 450 | unsigned long value) |
e27e3dac | 451 | { |
c4cf3b45 | 452 | unsigned long jiffs = msecs_to_jiffies(value); |
e27e3dac | 453 | |
c4cf3b45 BP |
454 | if (value == 1000) |
455 | jiffs = round_jiffies_relative(value); | |
bf52fa4a | 456 | |
c4cf3b45 BP |
457 | edac_dev->poll_msec = value; |
458 | edac_dev->delay = jiffs; | |
e27e3dac | 459 | |
c4cf3b45 | 460 | edac_mod_work(&edac_dev->work, jiffs); |
e27e3dac DT |
461 | } |
462 | ||
1dc9b70d HC |
463 | /* |
464 | * edac_device_alloc_index: Allocate a unique device index number | |
465 | * | |
466 | * Return: | |
467 | * allocated index number | |
468 | */ | |
469 | int edac_device_alloc_index(void) | |
470 | { | |
471 | static atomic_t device_indexes = ATOMIC_INIT(0); | |
472 | ||
473 | return atomic_inc_return(&device_indexes) - 1; | |
474 | } | |
475 | EXPORT_SYMBOL_GPL(edac_device_alloc_index); | |
476 | ||
e27e3dac DT |
477 | /** |
478 | * edac_device_add_device: Insert the 'edac_dev' structure into the | |
479 | * edac_device global list and create sysfs entries associated with | |
480 | * edac_device structure. | |
481 | * @edac_device: pointer to the edac_device structure to be added to the list | |
e27e3dac DT |
482 | * 'edac_device' structure. |
483 | * | |
484 | * Return: | |
485 | * 0 Success | |
486 | * !0 Failure | |
487 | */ | |
d45e7823 | 488 | int edac_device_add_device(struct edac_device_ctl_info *edac_dev) |
e27e3dac | 489 | { |
956b9ba1 | 490 | edac_dbg(0, "\n"); |
e27e3dac | 491 | |
e27e3dac DT |
492 | #ifdef CONFIG_EDAC_DEBUG |
493 | if (edac_debug_level >= 3) | |
494 | edac_device_dump_device(edac_dev); | |
495 | #endif | |
0ca84761 | 496 | mutex_lock(&device_ctls_mutex); |
e27e3dac DT |
497 | |
498 | if (add_edac_dev_to_global_list(edac_dev)) | |
499 | goto fail0; | |
500 | ||
501 | /* set load time so that error rate can be tracked */ | |
502 | edac_dev->start_time = jiffies; | |
503 | ||
504 | /* create this instance's sysfs entries */ | |
505 | if (edac_device_create_sysfs(edac_dev)) { | |
506 | edac_device_printk(edac_dev, KERN_WARNING, | |
052dfb45 | 507 | "failed to create sysfs device\n"); |
e27e3dac DT |
508 | goto fail1; |
509 | } | |
510 | ||
511 | /* If there IS a check routine, then we are running POLLED */ | |
512 | if (edac_dev->edac_check != NULL) { | |
513 | /* This instance is NOW RUNNING */ | |
514 | edac_dev->op_state = OP_RUNNING_POLL; | |
515 | ||
81d87cb1 DJ |
516 | /* |
517 | * enable workq processing on this instance, | |
518 | * default = 1000 msec | |
519 | */ | |
520 | edac_device_workq_setup(edac_dev, 1000); | |
e27e3dac DT |
521 | } else { |
522 | edac_dev->op_state = OP_RUNNING_INTERRUPT; | |
523 | } | |
524 | ||
e27e3dac DT |
525 | /* Report action taken */ |
526 | edac_device_printk(edac_dev, KERN_INFO, | |
7270a608 RR |
527 | "Giving out device to module %s controller %s: DEV %s (%s)\n", |
528 | edac_dev->mod_name, edac_dev->ctl_name, edac_dev->dev_name, | |
529 | edac_op_state_to_string(edac_dev->op_state)); | |
e27e3dac | 530 | |
0ca84761 | 531 | mutex_unlock(&device_ctls_mutex); |
e27e3dac DT |
532 | return 0; |
533 | ||
052dfb45 | 534 | fail1: |
e27e3dac DT |
535 | /* Some error, so remove the entry from the lsit */ |
536 | del_edac_device_from_global_list(edac_dev); | |
537 | ||
052dfb45 | 538 | fail0: |
0ca84761 | 539 | mutex_unlock(&device_ctls_mutex); |
e27e3dac DT |
540 | return 1; |
541 | } | |
542 | EXPORT_SYMBOL_GPL(edac_device_add_device); | |
543 | ||
544 | /** | |
545 | * edac_device_del_device: | |
546 | * Remove sysfs entries for specified edac_device structure and | |
547 | * then remove edac_device structure from global list | |
548 | * | |
15ed103a | 549 | * @dev: |
e27e3dac DT |
550 | * Pointer to 'struct device' representing edac_device |
551 | * structure to remove. | |
552 | * | |
553 | * Return: | |
554 | * Pointer to removed edac_device structure, | |
555 | * OR NULL if device not found. | |
556 | */ | |
079708b9 | 557 | struct edac_device_ctl_info *edac_device_del_device(struct device *dev) |
e27e3dac DT |
558 | { |
559 | struct edac_device_ctl_info *edac_dev; | |
560 | ||
956b9ba1 | 561 | edac_dbg(0, "\n"); |
e27e3dac | 562 | |
0ca84761 | 563 | mutex_lock(&device_ctls_mutex); |
e27e3dac | 564 | |
52490c8d DT |
565 | /* Find the structure on the list, if not there, then leave */ |
566 | edac_dev = find_edac_device_by_dev(dev); | |
567 | if (edac_dev == NULL) { | |
0ca84761 | 568 | mutex_unlock(&device_ctls_mutex); |
e27e3dac DT |
569 | return NULL; |
570 | } | |
571 | ||
572 | /* mark this instance as OFFLINE */ | |
573 | edac_dev->op_state = OP_OFFLINE; | |
574 | ||
e27e3dac DT |
575 | /* deregister from global list */ |
576 | del_edac_device_from_global_list(edac_dev); | |
577 | ||
0ca84761 | 578 | mutex_unlock(&device_ctls_mutex); |
e27e3dac | 579 | |
d519c8d9 HC |
580 | /* clear workq processing on this instance */ |
581 | edac_device_workq_teardown(edac_dev); | |
582 | ||
1c3631ff DT |
583 | /* Tear down the sysfs entries for this instance */ |
584 | edac_device_remove_sysfs(edac_dev); | |
585 | ||
e27e3dac | 586 | edac_printk(KERN_INFO, EDAC_MC, |
052dfb45 DT |
587 | "Removed device %d for %s %s: DEV %s\n", |
588 | edac_dev->dev_idx, | |
17aa7e03 | 589 | edac_dev->mod_name, edac_dev->ctl_name, edac_dev_name(edac_dev)); |
e27e3dac DT |
590 | |
591 | return edac_dev; | |
592 | } | |
079708b9 | 593 | EXPORT_SYMBOL_GPL(edac_device_del_device); |
e27e3dac DT |
594 | |
595 | static inline int edac_device_get_log_ce(struct edac_device_ctl_info *edac_dev) | |
596 | { | |
597 | return edac_dev->log_ce; | |
598 | } | |
599 | ||
600 | static inline int edac_device_get_log_ue(struct edac_device_ctl_info *edac_dev) | |
601 | { | |
602 | return edac_dev->log_ue; | |
603 | } | |
604 | ||
079708b9 | 605 | static inline int edac_device_get_panic_on_ue(struct edac_device_ctl_info |
052dfb45 | 606 | *edac_dev) |
e27e3dac DT |
607 | { |
608 | return edac_dev->panic_on_ue; | |
609 | } | |
610 | ||
611 | /* | |
612 | * edac_device_handle_ce | |
613 | * perform a common output and handling of an 'edac_dev' CE event | |
614 | */ | |
615 | void edac_device_handle_ce(struct edac_device_ctl_info *edac_dev, | |
052dfb45 | 616 | int inst_nr, int block_nr, const char *msg) |
e27e3dac DT |
617 | { |
618 | struct edac_device_instance *instance; | |
619 | struct edac_device_block *block = NULL; | |
620 | ||
621 | if ((inst_nr >= edac_dev->nr_instances) || (inst_nr < 0)) { | |
622 | edac_device_printk(edac_dev, KERN_ERR, | |
052dfb45 DT |
623 | "INTERNAL ERROR: 'instance' out of range " |
624 | "(%d >= %d)\n", inst_nr, | |
625 | edac_dev->nr_instances); | |
e27e3dac DT |
626 | return; |
627 | } | |
628 | ||
629 | instance = edac_dev->instances + inst_nr; | |
630 | ||
631 | if ((block_nr >= instance->nr_blocks) || (block_nr < 0)) { | |
632 | edac_device_printk(edac_dev, KERN_ERR, | |
052dfb45 DT |
633 | "INTERNAL ERROR: instance %d 'block' " |
634 | "out of range (%d >= %d)\n", | |
635 | inst_nr, block_nr, | |
636 | instance->nr_blocks); | |
e27e3dac DT |
637 | return; |
638 | } | |
639 | ||
640 | if (instance->nr_blocks > 0) { | |
641 | block = instance->blocks + block_nr; | |
642 | block->counters.ce_count++; | |
643 | } | |
644 | ||
25985edc | 645 | /* Propagate the count up the 'totals' tree */ |
e27e3dac DT |
646 | instance->counters.ce_count++; |
647 | edac_dev->counters.ce_count++; | |
648 | ||
649 | if (edac_device_get_log_ce(edac_dev)) | |
650 | edac_device_printk(edac_dev, KERN_WARNING, | |
052dfb45 DT |
651 | "CE: %s instance: %s block: %s '%s'\n", |
652 | edac_dev->ctl_name, instance->name, | |
653 | block ? block->name : "N/A", msg); | |
e27e3dac DT |
654 | } |
655 | EXPORT_SYMBOL_GPL(edac_device_handle_ce); | |
656 | ||
657 | /* | |
658 | * edac_device_handle_ue | |
659 | * perform a common output and handling of an 'edac_dev' UE event | |
660 | */ | |
661 | void edac_device_handle_ue(struct edac_device_ctl_info *edac_dev, | |
052dfb45 | 662 | int inst_nr, int block_nr, const char *msg) |
e27e3dac DT |
663 | { |
664 | struct edac_device_instance *instance; | |
665 | struct edac_device_block *block = NULL; | |
666 | ||
667 | if ((inst_nr >= edac_dev->nr_instances) || (inst_nr < 0)) { | |
668 | edac_device_printk(edac_dev, KERN_ERR, | |
052dfb45 DT |
669 | "INTERNAL ERROR: 'instance' out of range " |
670 | "(%d >= %d)\n", inst_nr, | |
671 | edac_dev->nr_instances); | |
e27e3dac DT |
672 | return; |
673 | } | |
674 | ||
675 | instance = edac_dev->instances + inst_nr; | |
676 | ||
677 | if ((block_nr >= instance->nr_blocks) || (block_nr < 0)) { | |
678 | edac_device_printk(edac_dev, KERN_ERR, | |
052dfb45 DT |
679 | "INTERNAL ERROR: instance %d 'block' " |
680 | "out of range (%d >= %d)\n", | |
681 | inst_nr, block_nr, | |
682 | instance->nr_blocks); | |
e27e3dac DT |
683 | return; |
684 | } | |
685 | ||
686 | if (instance->nr_blocks > 0) { | |
687 | block = instance->blocks + block_nr; | |
688 | block->counters.ue_count++; | |
689 | } | |
690 | ||
25985edc | 691 | /* Propagate the count up the 'totals' tree */ |
e27e3dac DT |
692 | instance->counters.ue_count++; |
693 | edac_dev->counters.ue_count++; | |
694 | ||
695 | if (edac_device_get_log_ue(edac_dev)) | |
696 | edac_device_printk(edac_dev, KERN_EMERG, | |
052dfb45 DT |
697 | "UE: %s instance: %s block: %s '%s'\n", |
698 | edac_dev->ctl_name, instance->name, | |
699 | block ? block->name : "N/A", msg); | |
e27e3dac DT |
700 | |
701 | if (edac_device_get_panic_on_ue(edac_dev)) | |
d391a7b8 | 702 | panic("EDAC %s: UE instance: %s block %s '%s'\n", |
052dfb45 DT |
703 | edac_dev->ctl_name, instance->name, |
704 | block ? block->name : "N/A", msg); | |
e27e3dac | 705 | } |
079708b9 | 706 | EXPORT_SYMBOL_GPL(edac_device_handle_ue); |