2 * edac_mc kernel module
3 * (C) 2005-2007 Linux Networx (http://lnxi.com)
5 * This file may be distributed under the terms of the
6 * GNU General Public License.
8 * Written Doug Thompson <norsk5@xmission.com> www.softwarebitmaker.com
12 #include <linux/ctype.h>
13 #include <linux/bug.h>
15 #include "edac_core.h"
16 #include "edac_module.h"
19 /* MC EDAC Controls, setable by module parameter, and sysfs */
20 static int edac_mc_log_ue
= 1;
21 static int edac_mc_log_ce
= 1;
22 static int edac_mc_panic_on_ue
;
23 static int edac_mc_poll_msec
= 1000;
25 /* Getter functions for above */
26 int edac_mc_get_log_ue(void)
28 return edac_mc_log_ue
;
31 int edac_mc_get_log_ce(void)
33 return edac_mc_log_ce
;
36 int edac_mc_get_panic_on_ue(void)
38 return edac_mc_panic_on_ue
;
41 /* this is temporary */
42 int edac_mc_get_poll_msec(void)
44 return edac_mc_poll_msec
;
47 /* Parameter declarations for above */
48 module_param(edac_mc_panic_on_ue
, int, 0644);
49 MODULE_PARM_DESC(edac_mc_panic_on_ue
, "Panic on uncorrected error: 0=off 1=on");
50 module_param(edac_mc_log_ue
, int, 0644);
51 MODULE_PARM_DESC(edac_mc_log_ue
,
52 "Log uncorrectable error to console: 0=off 1=on");
53 module_param(edac_mc_log_ce
, int, 0644);
54 MODULE_PARM_DESC(edac_mc_log_ce
,
55 "Log correctable error to console: 0=off 1=on");
56 module_param(edac_mc_poll_msec
, int, 0644);
57 MODULE_PARM_DESC(edac_mc_poll_msec
, "Polling period in milliseconds");
60 * various constants for Memory Controllers
62 static const char *mem_types
[] = {
63 [MEM_EMPTY
] = "Empty",
64 [MEM_RESERVED
] = "Reserved",
65 [MEM_UNKNOWN
] = "Unknown",
69 [MEM_SDR
] = "Unbuffered-SDR",
70 [MEM_RDR
] = "Registered-SDR",
71 [MEM_DDR
] = "Unbuffered-DDR",
72 [MEM_RDDR
] = "Registered-DDR",
74 [MEM_DDR2
] = "Unbuffered-DDR2",
75 [MEM_FB_DDR2
] = "FullyBuffered-DDR2",
76 [MEM_RDDR2
] = "Registered-DDR2",
80 static const char *dev_types
[] = {
81 [DEV_UNKNOWN
] = "Unknown",
91 static const char *edac_caps
[] = {
92 [EDAC_UNKNOWN
] = "Unknown",
94 [EDAC_RESERVED
] = "Reserved",
95 [EDAC_PARITY
] = "PARITY",
97 [EDAC_SECDED
] = "SECDED",
98 [EDAC_S2ECD2ED
] = "S2ECD2ED",
99 [EDAC_S4ECD4ED
] = "S4ECD4ED",
100 [EDAC_S8ECD8ED
] = "S8ECD8ED",
101 [EDAC_S16ECD16ED
] = "S16ECD16ED"
107 * /sys/devices/system/edac/mc;
108 * data structures and methods
110 static ssize_t
memctrl_int_show(void *ptr
, char *buffer
)
112 int *value
= (int *)ptr
;
113 return sprintf(buffer
, "%u\n", *value
);
116 static ssize_t
memctrl_int_store(void *ptr
, const char *buffer
, size_t count
)
118 int *value
= (int *)ptr
;
120 if (isdigit(*buffer
))
121 *value
= simple_strtoul(buffer
, NULL
, 0);
127 * mc poll_msec time value
129 static ssize_t
poll_msec_int_store(void *ptr
, const char *buffer
, size_t count
)
131 int *value
= (int *)ptr
;
133 if (isdigit(*buffer
)) {
134 *value
= simple_strtoul(buffer
, NULL
, 0);
136 /* notify edac_mc engine to reset the poll period */
137 edac_mc_reset_delay_period(*value
);
144 /* EDAC sysfs CSROW data structures and methods
147 /* Set of more default csrow<id> attribute show/store functions */
148 static ssize_t
csrow_ue_count_show(struct csrow_info
*csrow
, char *data
,
151 return sprintf(data
, "%u\n", csrow
->ue_count
);
154 static ssize_t
csrow_ce_count_show(struct csrow_info
*csrow
, char *data
,
157 return sprintf(data
, "%u\n", csrow
->ce_count
);
160 static ssize_t
csrow_size_show(struct csrow_info
*csrow
, char *data
,
163 return sprintf(data
, "%u\n", PAGES_TO_MiB(csrow
->nr_pages
));
166 static ssize_t
csrow_mem_type_show(struct csrow_info
*csrow
, char *data
,
169 return sprintf(data
, "%s\n", mem_types
[csrow
->mtype
]);
172 static ssize_t
csrow_dev_type_show(struct csrow_info
*csrow
, char *data
,
175 return sprintf(data
, "%s\n", dev_types
[csrow
->dtype
]);
178 static ssize_t
csrow_edac_mode_show(struct csrow_info
*csrow
, char *data
,
181 return sprintf(data
, "%s\n", edac_caps
[csrow
->edac_mode
]);
184 /* show/store functions for DIMM Label attributes */
185 static ssize_t
channel_dimm_label_show(struct csrow_info
*csrow
,
186 char *data
, int channel
)
188 return snprintf(data
, EDAC_MC_LABEL_LEN
, "%s",
189 csrow
->channels
[channel
].label
);
192 static ssize_t
channel_dimm_label_store(struct csrow_info
*csrow
,
194 size_t count
, int channel
)
196 ssize_t max_size
= 0;
198 max_size
= min((ssize_t
) count
, (ssize_t
) EDAC_MC_LABEL_LEN
- 1);
199 strncpy(csrow
->channels
[channel
].label
, data
, max_size
);
200 csrow
->channels
[channel
].label
[max_size
] = '\0';
205 /* show function for dynamic chX_ce_count attribute */
206 static ssize_t
channel_ce_count_show(struct csrow_info
*csrow
,
207 char *data
, int channel
)
209 return sprintf(data
, "%u\n", csrow
->channels
[channel
].ce_count
);
212 /* csrow specific attribute structure */
213 struct csrowdev_attribute
{
214 struct attribute attr
;
215 ssize_t(*show
) (struct csrow_info
*, char *, int);
216 ssize_t(*store
) (struct csrow_info
*, const char *, size_t, int);
220 #define to_csrow(k) container_of(k, struct csrow_info, kobj)
221 #define to_csrowdev_attr(a) container_of(a, struct csrowdev_attribute, attr)
223 /* Set of show/store higher level functions for default csrow attributes */
224 static ssize_t
csrowdev_show(struct kobject
*kobj
,
225 struct attribute
*attr
, char *buffer
)
227 struct csrow_info
*csrow
= to_csrow(kobj
);
228 struct csrowdev_attribute
*csrowdev_attr
= to_csrowdev_attr(attr
);
230 if (csrowdev_attr
->show
)
231 return csrowdev_attr
->show(csrow
,
232 buffer
, csrowdev_attr
->private);
236 static ssize_t
csrowdev_store(struct kobject
*kobj
, struct attribute
*attr
,
237 const char *buffer
, size_t count
)
239 struct csrow_info
*csrow
= to_csrow(kobj
);
240 struct csrowdev_attribute
*csrowdev_attr
= to_csrowdev_attr(attr
);
242 if (csrowdev_attr
->store
)
243 return csrowdev_attr
->store(csrow
,
245 count
, csrowdev_attr
->private);
249 static struct sysfs_ops csrowfs_ops
= {
250 .show
= csrowdev_show
,
251 .store
= csrowdev_store
254 #define CSROWDEV_ATTR(_name,_mode,_show,_store,_private) \
255 static struct csrowdev_attribute attr_##_name = { \
256 .attr = {.name = __stringify(_name), .mode = _mode }, \
259 .private = _private, \
262 /* default cwrow<id>/attribute files */
263 CSROWDEV_ATTR(size_mb
, S_IRUGO
, csrow_size_show
, NULL
, 0);
264 CSROWDEV_ATTR(dev_type
, S_IRUGO
, csrow_dev_type_show
, NULL
, 0);
265 CSROWDEV_ATTR(mem_type
, S_IRUGO
, csrow_mem_type_show
, NULL
, 0);
266 CSROWDEV_ATTR(edac_mode
, S_IRUGO
, csrow_edac_mode_show
, NULL
, 0);
267 CSROWDEV_ATTR(ue_count
, S_IRUGO
, csrow_ue_count_show
, NULL
, 0);
268 CSROWDEV_ATTR(ce_count
, S_IRUGO
, csrow_ce_count_show
, NULL
, 0);
270 /* default attributes of the CSROW<id> object */
271 static struct csrowdev_attribute
*default_csrow_attr
[] = {
281 /* possible dynamic channel DIMM Label attribute files */
282 CSROWDEV_ATTR(ch0_dimm_label
, S_IRUGO
| S_IWUSR
,
283 channel_dimm_label_show
, channel_dimm_label_store
, 0);
284 CSROWDEV_ATTR(ch1_dimm_label
, S_IRUGO
| S_IWUSR
,
285 channel_dimm_label_show
, channel_dimm_label_store
, 1);
286 CSROWDEV_ATTR(ch2_dimm_label
, S_IRUGO
| S_IWUSR
,
287 channel_dimm_label_show
, channel_dimm_label_store
, 2);
288 CSROWDEV_ATTR(ch3_dimm_label
, S_IRUGO
| S_IWUSR
,
289 channel_dimm_label_show
, channel_dimm_label_store
, 3);
290 CSROWDEV_ATTR(ch4_dimm_label
, S_IRUGO
| S_IWUSR
,
291 channel_dimm_label_show
, channel_dimm_label_store
, 4);
292 CSROWDEV_ATTR(ch5_dimm_label
, S_IRUGO
| S_IWUSR
,
293 channel_dimm_label_show
, channel_dimm_label_store
, 5);
295 /* Total possible dynamic DIMM Label attribute file table */
296 static struct csrowdev_attribute
*dynamic_csrow_dimm_attr
[] = {
297 &attr_ch0_dimm_label
,
298 &attr_ch1_dimm_label
,
299 &attr_ch2_dimm_label
,
300 &attr_ch3_dimm_label
,
301 &attr_ch4_dimm_label
,
305 /* possible dynamic channel ce_count attribute files */
306 CSROWDEV_ATTR(ch0_ce_count
, S_IRUGO
| S_IWUSR
, channel_ce_count_show
, NULL
, 0);
307 CSROWDEV_ATTR(ch1_ce_count
, S_IRUGO
| S_IWUSR
, channel_ce_count_show
, NULL
, 1);
308 CSROWDEV_ATTR(ch2_ce_count
, S_IRUGO
| S_IWUSR
, channel_ce_count_show
, NULL
, 2);
309 CSROWDEV_ATTR(ch3_ce_count
, S_IRUGO
| S_IWUSR
, channel_ce_count_show
, NULL
, 3);
310 CSROWDEV_ATTR(ch4_ce_count
, S_IRUGO
| S_IWUSR
, channel_ce_count_show
, NULL
, 4);
311 CSROWDEV_ATTR(ch5_ce_count
, S_IRUGO
| S_IWUSR
, channel_ce_count_show
, NULL
, 5);
313 /* Total possible dynamic ce_count attribute file table */
314 static struct csrowdev_attribute
*dynamic_csrow_ce_count_attr
[] = {
323 #define EDAC_NR_CHANNELS 6
325 /* Create dynamic CHANNEL files, indexed by 'chan', under specifed CSROW */
326 static int edac_create_channel_files(struct kobject
*kobj
, int chan
)
330 if (chan
>= EDAC_NR_CHANNELS
)
333 /* create the DIMM label attribute file */
334 err
= sysfs_create_file(kobj
,
336 dynamic_csrow_dimm_attr
[chan
]);
339 /* create the CE Count attribute file */
340 err
= sysfs_create_file(kobj
,
342 dynamic_csrow_ce_count_attr
[chan
]);
344 debugf1("%s() dimm labels and ce_count files created",
351 /* No memory to release for this kobj */
352 static void edac_csrow_instance_release(struct kobject
*kobj
)
354 struct mem_ctl_info
*mci
;
355 struct csrow_info
*cs
;
357 debugf1("%s()\n", __func__
);
359 cs
= container_of(kobj
, struct csrow_info
, kobj
);
362 kobject_put(&mci
->edac_mci_kobj
);
365 /* the kobj_type instance for a CSROW */
366 static struct kobj_type ktype_csrow
= {
367 .release
= edac_csrow_instance_release
,
368 .sysfs_ops
= &csrowfs_ops
,
369 .default_attrs
= (struct attribute
**)default_csrow_attr
,
372 /* Create a CSROW object under specifed edac_mc_device */
373 static int edac_create_csrow_object(struct mem_ctl_info
*mci
,
374 struct csrow_info
*csrow
, int index
)
376 struct kobject
*kobj_mci
= &mci
->edac_mci_kobj
;
377 struct kobject
*kobj
;
381 /* generate ..../edac/mc/mc<id>/csrow<index> */
382 memset(&csrow
->kobj
, 0, sizeof(csrow
->kobj
));
383 csrow
->mci
= mci
; /* include container up link */
384 csrow
->kobj
.parent
= kobj_mci
;
385 csrow
->kobj
.ktype
= &ktype_csrow
;
387 /* name this instance of csrow<id> */
388 err
= kobject_set_name(&csrow
->kobj
, "csrow%d", index
);
392 /* bump the mci instance's kobject's ref count */
393 kobj
= kobject_get(&mci
->edac_mci_kobj
);
399 /* Instanstiate the csrow object */
400 err
= kobject_register(&csrow
->kobj
);
402 goto err_release_top_kobj
;
404 /* At this point, to release a csrow kobj, one must
405 * call the kobject_unregister and allow that tear down
406 * to work the releasing
409 /* Create the dyanmic attribute files on this csrow,
410 * namely, the DIMM labels and the channel ce_count
412 for (chan
= 0; chan
< csrow
->nr_channels
; chan
++) {
413 err
= edac_create_channel_files(&csrow
->kobj
, chan
);
415 /* special case the unregister here */
416 kobject_unregister(&csrow
->kobj
);
423 /* error unwind stack */
424 err_release_top_kobj
:
425 kobject_put(&mci
->edac_mci_kobj
);
431 /* default sysfs methods and data structures for the main MCI kobject */
433 static ssize_t
mci_reset_counters_store(struct mem_ctl_info
*mci
,
434 const char *data
, size_t count
)
438 mci
->ue_noinfo_count
= 0;
439 mci
->ce_noinfo_count
= 0;
443 for (row
= 0; row
< mci
->nr_csrows
; row
++) {
444 struct csrow_info
*ri
= &mci
->csrows
[row
];
449 for (chan
= 0; chan
< ri
->nr_channels
; chan
++)
450 ri
->channels
[chan
].ce_count
= 0;
453 mci
->start_time
= jiffies
;
457 /* memory scrubbing */
458 static ssize_t
mci_sdram_scrub_rate_store(struct mem_ctl_info
*mci
,
459 const char *data
, size_t count
)
463 if (mci
->set_sdram_scrub_rate
) {
465 memctrl_int_store(&bandwidth
, data
, count
);
467 if (!(*mci
->set_sdram_scrub_rate
) (mci
, &bandwidth
)) {
468 edac_printk(KERN_DEBUG
, EDAC_MC
,
469 "Scrub rate set successfully, applied: %d\n",
472 /* FIXME: error codes maybe? */
473 edac_printk(KERN_DEBUG
, EDAC_MC
,
474 "Scrub rate set FAILED, could not apply: %d\n",
478 /* FIXME: produce "not implemented" ERROR for user-side. */
479 edac_printk(KERN_WARNING
, EDAC_MC
,
480 "Memory scrubbing 'set'control is not implemented!\n");
485 static ssize_t
mci_sdram_scrub_rate_show(struct mem_ctl_info
*mci
, char *data
)
489 if (mci
->get_sdram_scrub_rate
) {
490 if (!(*mci
->get_sdram_scrub_rate
) (mci
, &bandwidth
)) {
491 edac_printk(KERN_DEBUG
, EDAC_MC
,
492 "Scrub rate successfully, fetched: %d\n",
495 /* FIXME: error codes maybe? */
496 edac_printk(KERN_DEBUG
, EDAC_MC
,
497 "Scrub rate fetch FAILED, got: %d\n",
501 /* FIXME: produce "not implemented" ERROR for user-side. */
502 edac_printk(KERN_WARNING
, EDAC_MC
,
503 "Memory scrubbing 'get' control is not implemented\n");
505 return sprintf(data
, "%d\n", bandwidth
);
508 /* default attribute files for the MCI object */
509 static ssize_t
mci_ue_count_show(struct mem_ctl_info
*mci
, char *data
)
511 return sprintf(data
, "%d\n", mci
->ue_count
);
514 static ssize_t
mci_ce_count_show(struct mem_ctl_info
*mci
, char *data
)
516 return sprintf(data
, "%d\n", mci
->ce_count
);
519 static ssize_t
mci_ce_noinfo_show(struct mem_ctl_info
*mci
, char *data
)
521 return sprintf(data
, "%d\n", mci
->ce_noinfo_count
);
524 static ssize_t
mci_ue_noinfo_show(struct mem_ctl_info
*mci
, char *data
)
526 return sprintf(data
, "%d\n", mci
->ue_noinfo_count
);
529 static ssize_t
mci_seconds_show(struct mem_ctl_info
*mci
, char *data
)
531 return sprintf(data
, "%ld\n", (jiffies
- mci
->start_time
) / HZ
);
534 static ssize_t
mci_ctl_name_show(struct mem_ctl_info
*mci
, char *data
)
536 return sprintf(data
, "%s\n", mci
->ctl_name
);
539 static ssize_t
mci_size_mb_show(struct mem_ctl_info
*mci
, char *data
)
541 int total_pages
, csrow_idx
;
543 for (total_pages
= csrow_idx
= 0; csrow_idx
< mci
->nr_csrows
;
545 struct csrow_info
*csrow
= &mci
->csrows
[csrow_idx
];
547 if (!csrow
->nr_pages
)
550 total_pages
+= csrow
->nr_pages
;
553 return sprintf(data
, "%u\n", PAGES_TO_MiB(total_pages
));
556 #define to_mci(k) container_of(k, struct mem_ctl_info, edac_mci_kobj)
557 #define to_mcidev_attr(a) container_of(a,struct mcidev_sysfs_attribute,attr)
559 /* MCI show/store functions for top most object */
560 static ssize_t
mcidev_show(struct kobject
*kobj
, struct attribute
*attr
,
563 struct mem_ctl_info
*mem_ctl_info
= to_mci(kobj
);
564 struct mcidev_sysfs_attribute
*mcidev_attr
= to_mcidev_attr(attr
);
566 if (mcidev_attr
->show
)
567 return mcidev_attr
->show(mem_ctl_info
, buffer
);
572 static ssize_t
mcidev_store(struct kobject
*kobj
, struct attribute
*attr
,
573 const char *buffer
, size_t count
)
575 struct mem_ctl_info
*mem_ctl_info
= to_mci(kobj
);
576 struct mcidev_sysfs_attribute
*mcidev_attr
= to_mcidev_attr(attr
);
578 if (mcidev_attr
->store
)
579 return mcidev_attr
->store(mem_ctl_info
, buffer
, count
);
584 /* Intermediate show/store table */
585 static struct sysfs_ops mci_ops
= {
587 .store
= mcidev_store
590 #define MCIDEV_ATTR(_name,_mode,_show,_store) \
591 static struct mcidev_sysfs_attribute mci_attr_##_name = { \
592 .attr = {.name = __stringify(_name), .mode = _mode }, \
597 /* default Control file */
598 MCIDEV_ATTR(reset_counters
, S_IWUSR
, NULL
, mci_reset_counters_store
);
600 /* default Attribute files */
601 MCIDEV_ATTR(mc_name
, S_IRUGO
, mci_ctl_name_show
, NULL
);
602 MCIDEV_ATTR(size_mb
, S_IRUGO
, mci_size_mb_show
, NULL
);
603 MCIDEV_ATTR(seconds_since_reset
, S_IRUGO
, mci_seconds_show
, NULL
);
604 MCIDEV_ATTR(ue_noinfo_count
, S_IRUGO
, mci_ue_noinfo_show
, NULL
);
605 MCIDEV_ATTR(ce_noinfo_count
, S_IRUGO
, mci_ce_noinfo_show
, NULL
);
606 MCIDEV_ATTR(ue_count
, S_IRUGO
, mci_ue_count_show
, NULL
);
607 MCIDEV_ATTR(ce_count
, S_IRUGO
, mci_ce_count_show
, NULL
);
609 /* memory scrubber attribute file */
610 MCIDEV_ATTR(sdram_scrub_rate
, S_IRUGO
| S_IWUSR
, mci_sdram_scrub_rate_show
,
611 mci_sdram_scrub_rate_store
);
613 static struct mcidev_sysfs_attribute
*mci_attr
[] = {
614 &mci_attr_reset_counters
,
617 &mci_attr_seconds_since_reset
,
618 &mci_attr_ue_noinfo_count
,
619 &mci_attr_ce_noinfo_count
,
622 &mci_attr_sdram_scrub_rate
,
628 * Release of a MC controlling instance
630 * each MC control instance has the following resources upon entry:
631 * a) a ref count on the top memctl kobj
632 * b) a ref count on this module
634 * this function must decrement those ref counts and then
635 * issue a free on the instance's memory
637 static void edac_mci_control_release(struct kobject
*kobj
)
639 struct mem_ctl_info
*mci
;
643 debugf0("%s() mci instance idx=%d releasing\n", __func__
, mci
->mc_idx
);
645 /* decrement the module ref count */
646 module_put(mci
->owner
);
648 /* free the mci instance memory here */
652 static struct kobj_type ktype_mci
= {
653 .release
= edac_mci_control_release
,
654 .sysfs_ops
= &mci_ops
,
655 .default_attrs
= (struct attribute
**)mci_attr
,
658 /* show/store, tables, etc for the MC kset */
661 struct memctrl_dev_attribute
{
662 struct attribute attr
;
664 ssize_t(*show
) (void *, char *);
665 ssize_t(*store
) (void *, const char *, size_t);
668 /* Set of show/store abstract level functions for memory control object */
669 static ssize_t
memctrl_dev_show(struct kobject
*kobj
,
670 struct attribute
*attr
, char *buffer
)
672 struct memctrl_dev_attribute
*memctrl_dev
;
673 memctrl_dev
= (struct memctrl_dev_attribute
*)attr
;
675 if (memctrl_dev
->show
)
676 return memctrl_dev
->show(memctrl_dev
->value
, buffer
);
681 static ssize_t
memctrl_dev_store(struct kobject
*kobj
, struct attribute
*attr
,
682 const char *buffer
, size_t count
)
684 struct memctrl_dev_attribute
*memctrl_dev
;
685 memctrl_dev
= (struct memctrl_dev_attribute
*)attr
;
687 if (memctrl_dev
->store
)
688 return memctrl_dev
->store(memctrl_dev
->value
, buffer
, count
);
693 static struct sysfs_ops memctrlfs_ops
= {
694 .show
= memctrl_dev_show
,
695 .store
= memctrl_dev_store
698 #define MEMCTRL_ATTR(_name, _mode, _show, _store) \
699 static struct memctrl_dev_attribute attr_##_name = { \
700 .attr = {.name = __stringify(_name), .mode = _mode }, \
706 #define MEMCTRL_STRING_ATTR(_name, _data, _mode, _show, _store) \
707 static struct memctrl_dev_attribute attr_##_name = { \
708 .attr = {.name = __stringify(_name), .mode = _mode }, \
714 /* csrow<id> control files */
715 MEMCTRL_ATTR(edac_mc_panic_on_ue
,
716 S_IRUGO
| S_IWUSR
, memctrl_int_show
, memctrl_int_store
);
718 MEMCTRL_ATTR(edac_mc_log_ue
,
719 S_IRUGO
| S_IWUSR
, memctrl_int_show
, memctrl_int_store
);
721 MEMCTRL_ATTR(edac_mc_log_ce
,
722 S_IRUGO
| S_IWUSR
, memctrl_int_show
, memctrl_int_store
);
724 MEMCTRL_ATTR(edac_mc_poll_msec
,
725 S_IRUGO
| S_IWUSR
, memctrl_int_show
, poll_msec_int_store
);
727 /* Base Attributes of the memory ECC object */
728 static struct memctrl_dev_attribute
*memctrl_attr
[] = {
729 &attr_edac_mc_panic_on_ue
,
730 &attr_edac_mc_log_ue
,
731 &attr_edac_mc_log_ce
,
732 &attr_edac_mc_poll_msec
,
737 /* the ktype for the mc_kset internal kobj */
738 static struct kobj_type ktype_mc_set_attribs
= {
739 .sysfs_ops
= &memctrlfs_ops
,
740 .default_attrs
= (struct attribute
**)memctrl_attr
,
743 /* EDAC memory controller sysfs kset:
744 * /sys/devices/system/edac/mc
746 static struct kset mc_kset
= {
747 .kobj
= {.ktype
= &ktype_mc_set_attribs
},
752 * edac_mc_register_sysfs_main_kobj
754 * setups and registers the main kobject for each mci
756 int edac_mc_register_sysfs_main_kobj(struct mem_ctl_info
*mci
)
758 struct kobject
*kobj_mci
;
761 debugf1("%s()\n", __func__
);
763 kobj_mci
= &mci
->edac_mci_kobj
;
765 /* Init the mci's kobject */
766 memset(kobj_mci
, 0, sizeof(*kobj_mci
));
768 /* this instance become part of the mc_kset */
769 kobj_mci
->kset
= &mc_kset
;
770 kobj_mci
->ktype
= &ktype_mci
;
772 /* set the name of the mc<id> object */
773 err
= kobject_set_name(kobj_mci
, "mc%d", mci
->mc_idx
);
777 /* Record which module 'owns' this control structure
778 * and bump the ref count of the module
780 mci
->owner
= THIS_MODULE
;
782 /* bump ref count on this module */
783 if (!try_module_get(mci
->owner
)) {
788 /* register the mc<id> kobject to the mc_kset */
789 err
= kobject_register(kobj_mci
);
791 debugf1("%s()Failed to register '.../edac/mc%d'\n",
792 __func__
, mci
->mc_idx
);
796 /* At this point, to 'free' the control struct,
797 * edac_mc_unregister_sysfs_main_kobj() must be used
800 debugf1("%s() Registered '.../edac/mc%d' kobject\n",
801 __func__
, mci
->mc_idx
);
805 /* Error exit stack */
808 module_put(mci
->owner
);
815 * edac_mc_register_sysfs_main_kobj
817 * tears down and the main mci kobject from the mc_kset
819 void edac_mc_unregister_sysfs_main_kobj(struct mem_ctl_info
*mci
)
821 /* delete the kobj from the mc_kset */
822 kobject_unregister(&mci
->edac_mci_kobj
);
825 #define EDAC_DEVICE_SYMLINK "device"
828 * edac_create_mci_instance_attributes
829 * create MC driver specific attributes at the topmost level
830 * directory of this mci instance.
832 static int edac_create_mci_instance_attributes(struct mem_ctl_info
*mci
)
835 struct mcidev_sysfs_attribute
*sysfs_attrib
;
837 /* point to the start of the array and iterate over it
838 * adding each attribute listed to this mci instance's kobject
840 sysfs_attrib
= mci
->mc_driver_sysfs_attributes
;
842 while (sysfs_attrib
&& sysfs_attrib
->attr
.name
) {
843 err
= sysfs_create_file(&mci
->edac_mci_kobj
,
844 (struct attribute
*) sysfs_attrib
);
856 * edac_remove_mci_instance_attributes
857 * remove MC driver specific attributes at the topmost level
858 * directory of this mci instance.
860 static void edac_remove_mci_instance_attributes(struct mem_ctl_info
*mci
)
862 struct mcidev_sysfs_attribute
*sysfs_attrib
;
864 /* point to the start of the array and iterate over it
865 * adding each attribute listed to this mci instance's kobject
867 sysfs_attrib
= mci
->mc_driver_sysfs_attributes
;
869 /* loop if there are attributes and until we hit a NULL entry */
870 while (sysfs_attrib
&& sysfs_attrib
->attr
.name
) {
871 sysfs_remove_file(&mci
->edac_mci_kobj
,
872 (struct attribute
*) sysfs_attrib
);
879 * Create a new Memory Controller kobject instance,
880 * mc<id> under the 'mc' directory
886 int edac_create_sysfs_mci_device(struct mem_ctl_info
*mci
)
890 struct csrow_info
*csrow
;
891 struct kobject
*kobj_mci
= &mci
->edac_mci_kobj
;
893 debugf0("%s() idx=%d\n", __func__
, mci
->mc_idx
);
895 /* create a symlink for the device */
896 err
= sysfs_create_link(kobj_mci
, &mci
->dev
->kobj
,
897 EDAC_DEVICE_SYMLINK
);
899 debugf1("%s() failure to create symlink\n", __func__
);
903 /* If the low level driver desires some attributes,
904 * then create them now for the driver.
906 if (mci
->mc_driver_sysfs_attributes
) {
907 err
= edac_create_mci_instance_attributes(mci
);
909 debugf1("%s() failure to create mci attributes\n",
915 /* Make directories for each CSROW object under the mc<id> kobject
917 for (i
= 0; i
< mci
->nr_csrows
; i
++) {
918 csrow
= &mci
->csrows
[i
];
920 /* Only expose populated CSROWs */
921 if (csrow
->nr_pages
> 0) {
922 err
= edac_create_csrow_object(mci
, csrow
, i
);
924 debugf1("%s() failure: create csrow %d obj\n",
933 /* CSROW error: backout what has already been registered, */
935 for (i
--; i
>= 0; i
--) {
936 if (csrow
->nr_pages
> 0) {
937 kobject_unregister(&mci
->csrows
[i
].kobj
);
941 /* remove the mci instance's attributes, if any */
942 edac_remove_mci_instance_attributes(mci
);
944 /* remove the symlink */
945 sysfs_remove_link(kobj_mci
, EDAC_DEVICE_SYMLINK
);
952 * remove a Memory Controller instance
954 void edac_remove_sysfs_mci_device(struct mem_ctl_info
*mci
)
958 debugf0("%s()\n", __func__
);
960 /* remove all csrow kobjects */
961 for (i
= 0; i
< mci
->nr_csrows
; i
++) {
962 if (mci
->csrows
[i
].nr_pages
> 0) {
963 debugf0("%s() unreg csrow-%d\n", __func__
, i
);
964 kobject_unregister(&mci
->csrows
[i
].kobj
);
968 debugf0("%s() remove_link\n", __func__
);
970 /* remove the symlink */
971 sysfs_remove_link(&mci
->edac_mci_kobj
, EDAC_DEVICE_SYMLINK
);
973 debugf0("%s() remove_mci_instance\n", __func__
);
975 /* remove this mci instance's attribtes */
976 edac_remove_mci_instance_attributes(mci
);
978 debugf0("%s() unregister this mci kobj\n", __func__
);
980 /* unregister this instance's kobject */
981 kobject_unregister(&mci
->edac_mci_kobj
);
988 * edac_setup_sysfs_mc_kset(void)
990 * Initialize the mc_kset for the 'mc' entry
991 * This requires creating the top 'mc' directory with a kset
992 * and its controls/attributes.
994 * To this 'mc' kset, instance 'mci' will be grouped as children.
997 * !0 FAILURE error code
999 int edac_sysfs_setup_mc_kset(void)
1002 struct sysdev_class
*edac_class
;
1004 debugf1("%s()\n", __func__
);
1006 /* get the /sys/devices/system/edac class reference */
1007 edac_class
= edac_get_edac_class();
1008 if (edac_class
== NULL
) {
1009 debugf1("%s() no edac_class error=%d\n", __func__
, err
);
1013 /* Init the MC's kobject */
1014 kobject_set_name(&mc_kset
.kobj
, "mc");
1015 mc_kset
.kobj
.parent
= &edac_class
->kset
.kobj
;
1017 /* register the mc_kset */
1018 err
= kset_register(&mc_kset
);
1020 debugf1("%s() Failed to register '.../edac/mc'\n", __func__
);
1024 debugf1("%s() Registered '.../edac/mc' kobject\n", __func__
);
1029 /* error unwind stack */
1035 * edac_sysfs_teardown_mc_kset
1037 * deconstruct the mc_ket for memory controllers
1039 void edac_sysfs_teardown_mc_kset(void)
1041 kset_unregister(&mc_kset
);