blob: 479492819dba57da8d94bb546bf66996a32b18dc [file] [log] [blame]
Douglas Thompson7c9281d2007-07-19 01:49:33 -07001/*
2 * edac_mc kernel module
Douglas Thompson42a8e392007-07-19 01:50:10 -07003 * (C) 2005-2007 Linux Networx (http://lnxi.com)
4 *
Douglas Thompson7c9281d2007-07-19 01:49:33 -07005 * This file may be distributed under the terms of the
6 * GNU General Public License.
7 *
Douglas Thompson42a8e392007-07-19 01:50:10 -07008 * Written Doug Thompson <norsk5@xmission.com> www.softwarebitmaker.com
Douglas Thompson7c9281d2007-07-19 01:49:33 -07009 *
10 */
11
Douglas Thompson7c9281d2007-07-19 01:49:33 -070012#include <linux/ctype.h>
Doug Thompson8096cfa2007-07-19 01:50:27 -070013#include <linux/bug.h>
Douglas Thompson7c9281d2007-07-19 01:49:33 -070014
Douglas Thompson20bcb7a2007-07-19 01:49:47 -070015#include "edac_core.h"
Douglas Thompson7c9281d2007-07-19 01:49:33 -070016#include "edac_module.h"
17
Doug Thompson8096cfa2007-07-19 01:50:27 -070018
Douglas Thompson7c9281d2007-07-19 01:49:33 -070019/* MC EDAC Controls, setable by module parameter, and sysfs */
Dave Jiang4de78c62007-07-19 01:49:54 -070020static int edac_mc_log_ue = 1;
21static int edac_mc_log_ce = 1;
Douglas Thompsonf0440912007-07-19 01:50:19 -070022static int edac_mc_panic_on_ue;
Dave Jiang4de78c62007-07-19 01:49:54 -070023static int edac_mc_poll_msec = 1000;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070024
25/* Getter functions for above */
Dave Jiang4de78c62007-07-19 01:49:54 -070026int edac_mc_get_log_ue(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -070027{
Dave Jiang4de78c62007-07-19 01:49:54 -070028 return edac_mc_log_ue;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070029}
30
Dave Jiang4de78c62007-07-19 01:49:54 -070031int edac_mc_get_log_ce(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -070032{
Dave Jiang4de78c62007-07-19 01:49:54 -070033 return edac_mc_log_ce;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070034}
35
Dave Jiang4de78c62007-07-19 01:49:54 -070036int edac_mc_get_panic_on_ue(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -070037{
Dave Jiang4de78c62007-07-19 01:49:54 -070038 return edac_mc_panic_on_ue;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070039}
40
Dave Jiang81d87cb2007-07-19 01:49:52 -070041/* this is temporary */
42int edac_mc_get_poll_msec(void)
43{
Dave Jiang4de78c62007-07-19 01:49:54 -070044 return edac_mc_poll_msec;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070045}
46
Arthur Jones096846e2008-07-25 01:49:09 -070047static int edac_set_poll_msec(const char *val, struct kernel_param *kp)
48{
49 long l;
50 int ret;
51
52 if (!val)
53 return -EINVAL;
54
55 ret = strict_strtol(val, 0, &l);
56 if (ret == -EINVAL || ((int)l != l))
57 return -EINVAL;
58 *((int *)kp->arg) = l;
59
60 /* notify edac_mc engine to reset the poll period */
61 edac_mc_reset_delay_period(l);
62
63 return 0;
64}
65
Douglas Thompson7c9281d2007-07-19 01:49:33 -070066/* Parameter declarations for above */
Dave Jiang4de78c62007-07-19 01:49:54 -070067module_param(edac_mc_panic_on_ue, int, 0644);
68MODULE_PARM_DESC(edac_mc_panic_on_ue, "Panic on uncorrected error: 0=off 1=on");
69module_param(edac_mc_log_ue, int, 0644);
70MODULE_PARM_DESC(edac_mc_log_ue,
Douglas Thompson079708b2007-07-19 01:49:58 -070071 "Log uncorrectable error to console: 0=off 1=on");
Dave Jiang4de78c62007-07-19 01:49:54 -070072module_param(edac_mc_log_ce, int, 0644);
73MODULE_PARM_DESC(edac_mc_log_ce,
Douglas Thompson079708b2007-07-19 01:49:58 -070074 "Log correctable error to console: 0=off 1=on");
Arthur Jones096846e2008-07-25 01:49:09 -070075module_param_call(edac_mc_poll_msec, edac_set_poll_msec, param_get_int,
76 &edac_mc_poll_msec, 0644);
Dave Jiang4de78c62007-07-19 01:49:54 -070077MODULE_PARM_DESC(edac_mc_poll_msec, "Polling period in milliseconds");
Douglas Thompson7c9281d2007-07-19 01:49:33 -070078
Douglas Thompson7c9281d2007-07-19 01:49:33 -070079/*
80 * various constants for Memory Controllers
81 */
82static const char *mem_types[] = {
83 [MEM_EMPTY] = "Empty",
84 [MEM_RESERVED] = "Reserved",
85 [MEM_UNKNOWN] = "Unknown",
86 [MEM_FPM] = "FPM",
87 [MEM_EDO] = "EDO",
88 [MEM_BEDO] = "BEDO",
89 [MEM_SDR] = "Unbuffered-SDR",
90 [MEM_RDR] = "Registered-SDR",
91 [MEM_DDR] = "Unbuffered-DDR",
92 [MEM_RDDR] = "Registered-DDR",
Dave Jiang1a9b85e2007-07-19 01:49:38 -070093 [MEM_RMBS] = "RMBS",
94 [MEM_DDR2] = "Unbuffered-DDR2",
95 [MEM_FB_DDR2] = "FullyBuffered-DDR2",
Benjamin Herrenschmidt1d5f7262008-02-07 00:14:52 -080096 [MEM_RDDR2] = "Registered-DDR2",
97 [MEM_XDR] = "XDR"
Douglas Thompson7c9281d2007-07-19 01:49:33 -070098};
99
100static const char *dev_types[] = {
101 [DEV_UNKNOWN] = "Unknown",
102 [DEV_X1] = "x1",
103 [DEV_X2] = "x2",
104 [DEV_X4] = "x4",
105 [DEV_X8] = "x8",
106 [DEV_X16] = "x16",
107 [DEV_X32] = "x32",
108 [DEV_X64] = "x64"
109};
110
111static const char *edac_caps[] = {
112 [EDAC_UNKNOWN] = "Unknown",
113 [EDAC_NONE] = "None",
114 [EDAC_RESERVED] = "Reserved",
115 [EDAC_PARITY] = "PARITY",
116 [EDAC_EC] = "EC",
117 [EDAC_SECDED] = "SECDED",
118 [EDAC_S2ECD2ED] = "S2ECD2ED",
119 [EDAC_S4ECD4ED] = "S4ECD4ED",
120 [EDAC_S8ECD8ED] = "S8ECD8ED",
121 [EDAC_S16ECD16ED] = "S16ECD16ED"
122};
123
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700124
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700125
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700126static ssize_t memctrl_int_store(void *ptr, const char *buffer, size_t count)
127{
Douglas Thompson079708b2007-07-19 01:49:58 -0700128 int *value = (int *)ptr;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700129
130 if (isdigit(*buffer))
131 *value = simple_strtoul(buffer, NULL, 0);
132
133 return count;
134}
135
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700136
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700137/* EDAC sysfs CSROW data structures and methods
138 */
139
140/* Set of more default csrow<id> attribute show/store functions */
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700141static ssize_t csrow_ue_count_show(struct csrow_info *csrow, char *data,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700142 int private)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700143{
Douglas Thompson079708b2007-07-19 01:49:58 -0700144 return sprintf(data, "%u\n", csrow->ue_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700145}
146
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700147static ssize_t csrow_ce_count_show(struct csrow_info *csrow, char *data,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700148 int private)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700149{
Douglas Thompson079708b2007-07-19 01:49:58 -0700150 return sprintf(data, "%u\n", csrow->ce_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700151}
152
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700153static ssize_t csrow_size_show(struct csrow_info *csrow, char *data,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700154 int private)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700155{
Douglas Thompson079708b2007-07-19 01:49:58 -0700156 return sprintf(data, "%u\n", PAGES_TO_MiB(csrow->nr_pages));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700157}
158
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700159static ssize_t csrow_mem_type_show(struct csrow_info *csrow, char *data,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700160 int private)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700161{
Douglas Thompson079708b2007-07-19 01:49:58 -0700162 return sprintf(data, "%s\n", mem_types[csrow->mtype]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700163}
164
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700165static ssize_t csrow_dev_type_show(struct csrow_info *csrow, char *data,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700166 int private)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700167{
Douglas Thompson079708b2007-07-19 01:49:58 -0700168 return sprintf(data, "%s\n", dev_types[csrow->dtype]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700169}
170
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700171static ssize_t csrow_edac_mode_show(struct csrow_info *csrow, char *data,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700172 int private)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700173{
Douglas Thompson079708b2007-07-19 01:49:58 -0700174 return sprintf(data, "%s\n", edac_caps[csrow->edac_mode]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700175}
176
177/* show/store functions for DIMM Label attributes */
178static ssize_t channel_dimm_label_show(struct csrow_info *csrow,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700179 char *data, int channel)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700180{
Douglas Thompson079708b2007-07-19 01:49:58 -0700181 return snprintf(data, EDAC_MC_LABEL_LEN, "%s",
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700182 csrow->channels[channel].label);
183}
184
185static ssize_t channel_dimm_label_store(struct csrow_info *csrow,
Douglas Thompson079708b2007-07-19 01:49:58 -0700186 const char *data,
187 size_t count, int channel)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700188{
189 ssize_t max_size = 0;
190
Douglas Thompson079708b2007-07-19 01:49:58 -0700191 max_size = min((ssize_t) count, (ssize_t) EDAC_MC_LABEL_LEN - 1);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700192 strncpy(csrow->channels[channel].label, data, max_size);
193 csrow->channels[channel].label[max_size] = '\0';
194
195 return max_size;
196}
197
198/* show function for dynamic chX_ce_count attribute */
199static ssize_t channel_ce_count_show(struct csrow_info *csrow,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700200 char *data, int channel)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700201{
202 return sprintf(data, "%u\n", csrow->channels[channel].ce_count);
203}
204
205/* csrow specific attribute structure */
206struct csrowdev_attribute {
207 struct attribute attr;
Douglas Thompson079708b2007-07-19 01:49:58 -0700208 ssize_t(*show) (struct csrow_info *, char *, int);
209 ssize_t(*store) (struct csrow_info *, const char *, size_t, int);
210 int private;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700211};
212
213#define to_csrow(k) container_of(k, struct csrow_info, kobj)
214#define to_csrowdev_attr(a) container_of(a, struct csrowdev_attribute, attr)
215
216/* Set of show/store higher level functions for default csrow attributes */
217static ssize_t csrowdev_show(struct kobject *kobj,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700218 struct attribute *attr, char *buffer)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700219{
220 struct csrow_info *csrow = to_csrow(kobj);
221 struct csrowdev_attribute *csrowdev_attr = to_csrowdev_attr(attr);
222
223 if (csrowdev_attr->show)
224 return csrowdev_attr->show(csrow,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700225 buffer, csrowdev_attr->private);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700226 return -EIO;
227}
228
229static ssize_t csrowdev_store(struct kobject *kobj, struct attribute *attr,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700230 const char *buffer, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700231{
232 struct csrow_info *csrow = to_csrow(kobj);
Douglas Thompson079708b2007-07-19 01:49:58 -0700233 struct csrowdev_attribute *csrowdev_attr = to_csrowdev_attr(attr);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700234
235 if (csrowdev_attr->store)
236 return csrowdev_attr->store(csrow,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700237 buffer,
238 count, csrowdev_attr->private);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700239 return -EIO;
240}
241
242static struct sysfs_ops csrowfs_ops = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700243 .show = csrowdev_show,
244 .store = csrowdev_store
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700245};
246
247#define CSROWDEV_ATTR(_name,_mode,_show,_store,_private) \
248static struct csrowdev_attribute attr_##_name = { \
249 .attr = {.name = __stringify(_name), .mode = _mode }, \
250 .show = _show, \
251 .store = _store, \
252 .private = _private, \
253};
254
255/* default cwrow<id>/attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700256CSROWDEV_ATTR(size_mb, S_IRUGO, csrow_size_show, NULL, 0);
257CSROWDEV_ATTR(dev_type, S_IRUGO, csrow_dev_type_show, NULL, 0);
258CSROWDEV_ATTR(mem_type, S_IRUGO, csrow_mem_type_show, NULL, 0);
259CSROWDEV_ATTR(edac_mode, S_IRUGO, csrow_edac_mode_show, NULL, 0);
260CSROWDEV_ATTR(ue_count, S_IRUGO, csrow_ue_count_show, NULL, 0);
261CSROWDEV_ATTR(ce_count, S_IRUGO, csrow_ce_count_show, NULL, 0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700262
263/* default attributes of the CSROW<id> object */
264static struct csrowdev_attribute *default_csrow_attr[] = {
265 &attr_dev_type,
266 &attr_mem_type,
267 &attr_edac_mode,
268 &attr_size_mb,
269 &attr_ue_count,
270 &attr_ce_count,
271 NULL,
272};
273
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700274/* possible dynamic channel DIMM Label attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700275CSROWDEV_ATTR(ch0_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700276 channel_dimm_label_show, channel_dimm_label_store, 0);
Douglas Thompson079708b2007-07-19 01:49:58 -0700277CSROWDEV_ATTR(ch1_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700278 channel_dimm_label_show, channel_dimm_label_store, 1);
Douglas Thompson079708b2007-07-19 01:49:58 -0700279CSROWDEV_ATTR(ch2_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700280 channel_dimm_label_show, channel_dimm_label_store, 2);
Douglas Thompson079708b2007-07-19 01:49:58 -0700281CSROWDEV_ATTR(ch3_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700282 channel_dimm_label_show, channel_dimm_label_store, 3);
Douglas Thompson079708b2007-07-19 01:49:58 -0700283CSROWDEV_ATTR(ch4_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700284 channel_dimm_label_show, channel_dimm_label_store, 4);
Douglas Thompson079708b2007-07-19 01:49:58 -0700285CSROWDEV_ATTR(ch5_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700286 channel_dimm_label_show, channel_dimm_label_store, 5);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700287
288/* Total possible dynamic DIMM Label attribute file table */
289static struct csrowdev_attribute *dynamic_csrow_dimm_attr[] = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700290 &attr_ch0_dimm_label,
291 &attr_ch1_dimm_label,
292 &attr_ch2_dimm_label,
293 &attr_ch3_dimm_label,
294 &attr_ch4_dimm_label,
295 &attr_ch5_dimm_label
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700296};
297
298/* possible dynamic channel ce_count attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700299CSROWDEV_ATTR(ch0_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 0);
300CSROWDEV_ATTR(ch1_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 1);
301CSROWDEV_ATTR(ch2_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 2);
302CSROWDEV_ATTR(ch3_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 3);
303CSROWDEV_ATTR(ch4_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 4);
304CSROWDEV_ATTR(ch5_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 5);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700305
306/* Total possible dynamic ce_count attribute file table */
307static struct csrowdev_attribute *dynamic_csrow_ce_count_attr[] = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700308 &attr_ch0_ce_count,
309 &attr_ch1_ce_count,
310 &attr_ch2_ce_count,
311 &attr_ch3_ce_count,
312 &attr_ch4_ce_count,
313 &attr_ch5_ce_count
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700314};
315
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700316#define EDAC_NR_CHANNELS 6
317
318/* Create dynamic CHANNEL files, indexed by 'chan', under specifed CSROW */
319static int edac_create_channel_files(struct kobject *kobj, int chan)
320{
Douglas Thompson079708b2007-07-19 01:49:58 -0700321 int err = -ENODEV;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700322
323 if (chan >= EDAC_NR_CHANNELS)
324 return err;
325
326 /* create the DIMM label attribute file */
327 err = sysfs_create_file(kobj,
Douglas Thompson079708b2007-07-19 01:49:58 -0700328 (struct attribute *)
329 dynamic_csrow_dimm_attr[chan]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700330
331 if (!err) {
332 /* create the CE Count attribute file */
333 err = sysfs_create_file(kobj,
Douglas Thompson079708b2007-07-19 01:49:58 -0700334 (struct attribute *)
335 dynamic_csrow_ce_count_attr[chan]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700336 } else {
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700337 debugf1("%s() dimm labels and ce_count files created",
338 __func__);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700339 }
340
341 return err;
342}
343
344/* No memory to release for this kobj */
345static void edac_csrow_instance_release(struct kobject *kobj)
346{
Doug Thompson8096cfa2007-07-19 01:50:27 -0700347 struct mem_ctl_info *mci;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700348 struct csrow_info *cs;
349
Doug Thompson8096cfa2007-07-19 01:50:27 -0700350 debugf1("%s()\n", __func__);
351
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700352 cs = container_of(kobj, struct csrow_info, kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700353 mci = cs->mci;
354
355 kobject_put(&mci->edac_mci_kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700356}
357
358/* the kobj_type instance for a CSROW */
359static struct kobj_type ktype_csrow = {
360 .release = edac_csrow_instance_release,
361 .sysfs_ops = &csrowfs_ops,
Douglas Thompson079708b2007-07-19 01:49:58 -0700362 .default_attrs = (struct attribute **)default_csrow_attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700363};
364
365/* Create a CSROW object under specifed edac_mc_device */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700366static int edac_create_csrow_object(struct mem_ctl_info *mci,
367 struct csrow_info *csrow, int index)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700368{
Doug Thompson8096cfa2007-07-19 01:50:27 -0700369 struct kobject *kobj_mci = &mci->edac_mci_kobj;
370 struct kobject *kobj;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700371 int chan;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700372 int err;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700373
374 /* generate ..../edac/mc/mc<id>/csrow<index> */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700375 memset(&csrow->kobj, 0, sizeof(csrow->kobj));
376 csrow->mci = mci; /* include container up link */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700377
378 /* bump the mci instance's kobject's ref count */
379 kobj = kobject_get(&mci->edac_mci_kobj);
380 if (!kobj) {
381 err = -ENODEV;
382 goto err_out;
383 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700384
385 /* Instanstiate the csrow object */
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400386 err = kobject_init_and_add(&csrow->kobj, &ktype_csrow, kobj_mci,
387 "csrow%d", index);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700388 if (err)
389 goto err_release_top_kobj;
390
391 /* At this point, to release a csrow kobj, one must
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800392 * call the kobject_put and allow that tear down
Doug Thompson8096cfa2007-07-19 01:50:27 -0700393 * to work the releasing
394 */
395
396 /* Create the dyanmic attribute files on this csrow,
397 * namely, the DIMM labels and the channel ce_count
398 */
399 for (chan = 0; chan < csrow->nr_channels; chan++) {
400 err = edac_create_channel_files(&csrow->kobj, chan);
401 if (err) {
402 /* special case the unregister here */
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800403 kobject_put(&csrow->kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700404 goto err_out;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700405 }
406 }
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400407 kobject_uevent(&csrow->kobj, KOBJ_ADD);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700408 return 0;
409
410 /* error unwind stack */
411err_release_top_kobj:
412 kobject_put(&mci->edac_mci_kobj);
413
414err_out:
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700415 return err;
416}
417
418/* default sysfs methods and data structures for the main MCI kobject */
419
420static ssize_t mci_reset_counters_store(struct mem_ctl_info *mci,
Douglas Thompson079708b2007-07-19 01:49:58 -0700421 const char *data, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700422{
423 int row, chan;
424
425 mci->ue_noinfo_count = 0;
426 mci->ce_noinfo_count = 0;
427 mci->ue_count = 0;
428 mci->ce_count = 0;
429
430 for (row = 0; row < mci->nr_csrows; row++) {
431 struct csrow_info *ri = &mci->csrows[row];
432
433 ri->ue_count = 0;
434 ri->ce_count = 0;
435
436 for (chan = 0; chan < ri->nr_channels; chan++)
437 ri->channels[chan].ce_count = 0;
438 }
439
440 mci->start_time = jiffies;
441 return count;
442}
443
444/* memory scrubbing */
445static ssize_t mci_sdram_scrub_rate_store(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700446 const char *data, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700447{
448 u32 bandwidth = -1;
449
450 if (mci->set_sdram_scrub_rate) {
451
452 memctrl_int_store(&bandwidth, data, count);
453
Douglas Thompson079708b2007-07-19 01:49:58 -0700454 if (!(*mci->set_sdram_scrub_rate) (mci, &bandwidth)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700455 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700456 "Scrub rate set successfully, applied: %d\n",
457 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700458 } else {
459 /* FIXME: error codes maybe? */
460 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700461 "Scrub rate set FAILED, could not apply: %d\n",
462 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700463 }
464 } else {
465 /* FIXME: produce "not implemented" ERROR for user-side. */
466 edac_printk(KERN_WARNING, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700467 "Memory scrubbing 'set'control is not implemented!\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700468 }
469 return count;
470}
471
472static ssize_t mci_sdram_scrub_rate_show(struct mem_ctl_info *mci, char *data)
473{
474 u32 bandwidth = -1;
475
476 if (mci->get_sdram_scrub_rate) {
Douglas Thompson079708b2007-07-19 01:49:58 -0700477 if (!(*mci->get_sdram_scrub_rate) (mci, &bandwidth)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700478 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700479 "Scrub rate successfully, fetched: %d\n",
480 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700481 } else {
482 /* FIXME: error codes maybe? */
483 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700484 "Scrub rate fetch FAILED, got: %d\n",
485 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700486 }
487 } else {
488 /* FIXME: produce "not implemented" ERROR for user-side. */
489 edac_printk(KERN_WARNING, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700490 "Memory scrubbing 'get' control is not implemented\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700491 }
492 return sprintf(data, "%d\n", bandwidth);
493}
494
495/* default attribute files for the MCI object */
496static ssize_t mci_ue_count_show(struct mem_ctl_info *mci, char *data)
497{
Douglas Thompson079708b2007-07-19 01:49:58 -0700498 return sprintf(data, "%d\n", mci->ue_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700499}
500
501static ssize_t mci_ce_count_show(struct mem_ctl_info *mci, char *data)
502{
Douglas Thompson079708b2007-07-19 01:49:58 -0700503 return sprintf(data, "%d\n", mci->ce_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700504}
505
506static ssize_t mci_ce_noinfo_show(struct mem_ctl_info *mci, char *data)
507{
Douglas Thompson079708b2007-07-19 01:49:58 -0700508 return sprintf(data, "%d\n", mci->ce_noinfo_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700509}
510
511static ssize_t mci_ue_noinfo_show(struct mem_ctl_info *mci, char *data)
512{
Douglas Thompson079708b2007-07-19 01:49:58 -0700513 return sprintf(data, "%d\n", mci->ue_noinfo_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700514}
515
516static ssize_t mci_seconds_show(struct mem_ctl_info *mci, char *data)
517{
Douglas Thompson079708b2007-07-19 01:49:58 -0700518 return sprintf(data, "%ld\n", (jiffies - mci->start_time) / HZ);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700519}
520
521static ssize_t mci_ctl_name_show(struct mem_ctl_info *mci, char *data)
522{
Douglas Thompson079708b2007-07-19 01:49:58 -0700523 return sprintf(data, "%s\n", mci->ctl_name);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700524}
525
526static ssize_t mci_size_mb_show(struct mem_ctl_info *mci, char *data)
527{
528 int total_pages, csrow_idx;
529
530 for (total_pages = csrow_idx = 0; csrow_idx < mci->nr_csrows;
Douglas Thompson052dfb42007-07-19 01:50:13 -0700531 csrow_idx++) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700532 struct csrow_info *csrow = &mci->csrows[csrow_idx];
533
534 if (!csrow->nr_pages)
535 continue;
536
537 total_pages += csrow->nr_pages;
538 }
539
Douglas Thompson079708b2007-07-19 01:49:58 -0700540 return sprintf(data, "%u\n", PAGES_TO_MiB(total_pages));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700541}
542
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700543#define to_mci(k) container_of(k, struct mem_ctl_info, edac_mci_kobj)
Douglas Thompson42a8e392007-07-19 01:50:10 -0700544#define to_mcidev_attr(a) container_of(a,struct mcidev_sysfs_attribute,attr)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700545
546/* MCI show/store functions for top most object */
547static ssize_t mcidev_show(struct kobject *kobj, struct attribute *attr,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700548 char *buffer)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700549{
550 struct mem_ctl_info *mem_ctl_info = to_mci(kobj);
Douglas Thompson42a8e392007-07-19 01:50:10 -0700551 struct mcidev_sysfs_attribute *mcidev_attr = to_mcidev_attr(attr);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700552
553 if (mcidev_attr->show)
554 return mcidev_attr->show(mem_ctl_info, buffer);
555
556 return -EIO;
557}
558
559static ssize_t mcidev_store(struct kobject *kobj, struct attribute *attr,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700560 const char *buffer, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700561{
562 struct mem_ctl_info *mem_ctl_info = to_mci(kobj);
Douglas Thompson42a8e392007-07-19 01:50:10 -0700563 struct mcidev_sysfs_attribute *mcidev_attr = to_mcidev_attr(attr);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700564
565 if (mcidev_attr->store)
566 return mcidev_attr->store(mem_ctl_info, buffer, count);
567
568 return -EIO;
569}
570
Doug Thompson8096cfa2007-07-19 01:50:27 -0700571/* Intermediate show/store table */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700572static struct sysfs_ops mci_ops = {
573 .show = mcidev_show,
574 .store = mcidev_store
575};
576
577#define MCIDEV_ATTR(_name,_mode,_show,_store) \
Douglas Thompson42a8e392007-07-19 01:50:10 -0700578static struct mcidev_sysfs_attribute mci_attr_##_name = { \
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700579 .attr = {.name = __stringify(_name), .mode = _mode }, \
580 .show = _show, \
581 .store = _store, \
582};
583
584/* default Control file */
Douglas Thompson079708b2007-07-19 01:49:58 -0700585MCIDEV_ATTR(reset_counters, S_IWUSR, NULL, mci_reset_counters_store);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700586
587/* default Attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700588MCIDEV_ATTR(mc_name, S_IRUGO, mci_ctl_name_show, NULL);
589MCIDEV_ATTR(size_mb, S_IRUGO, mci_size_mb_show, NULL);
590MCIDEV_ATTR(seconds_since_reset, S_IRUGO, mci_seconds_show, NULL);
591MCIDEV_ATTR(ue_noinfo_count, S_IRUGO, mci_ue_noinfo_show, NULL);
592MCIDEV_ATTR(ce_noinfo_count, S_IRUGO, mci_ce_noinfo_show, NULL);
593MCIDEV_ATTR(ue_count, S_IRUGO, mci_ue_count_show, NULL);
594MCIDEV_ATTR(ce_count, S_IRUGO, mci_ce_count_show, NULL);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700595
596/* memory scrubber attribute file */
Douglas Thompson079708b2007-07-19 01:49:58 -0700597MCIDEV_ATTR(sdram_scrub_rate, S_IRUGO | S_IWUSR, mci_sdram_scrub_rate_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700598 mci_sdram_scrub_rate_store);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700599
Douglas Thompson42a8e392007-07-19 01:50:10 -0700600static struct mcidev_sysfs_attribute *mci_attr[] = {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700601 &mci_attr_reset_counters,
602 &mci_attr_mc_name,
603 &mci_attr_size_mb,
604 &mci_attr_seconds_since_reset,
605 &mci_attr_ue_noinfo_count,
606 &mci_attr_ce_noinfo_count,
607 &mci_attr_ue_count,
608 &mci_attr_ce_count,
609 &mci_attr_sdram_scrub_rate,
610 NULL
611};
612
Doug Thompson8096cfa2007-07-19 01:50:27 -0700613
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700614/*
615 * Release of a MC controlling instance
Doug Thompson8096cfa2007-07-19 01:50:27 -0700616 *
617 * each MC control instance has the following resources upon entry:
618 * a) a ref count on the top memctl kobj
619 * b) a ref count on this module
620 *
621 * this function must decrement those ref counts and then
622 * issue a free on the instance's memory
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700623 */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700624static void edac_mci_control_release(struct kobject *kobj)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700625{
626 struct mem_ctl_info *mci;
627
628 mci = to_mci(kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700629
630 debugf0("%s() mci instance idx=%d releasing\n", __func__, mci->mc_idx);
631
632 /* decrement the module ref count */
633 module_put(mci->owner);
634
635 /* free the mci instance memory here */
636 kfree(mci);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700637}
638
639static struct kobj_type ktype_mci = {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700640 .release = edac_mci_control_release,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700641 .sysfs_ops = &mci_ops,
Douglas Thompson079708b2007-07-19 01:49:58 -0700642 .default_attrs = (struct attribute **)mci_attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700643};
644
Doug Thompson8096cfa2007-07-19 01:50:27 -0700645/* EDAC memory controller sysfs kset:
646 * /sys/devices/system/edac/mc
647 */
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700648static struct kset *mc_kset;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700649
650/*
651 * edac_mc_register_sysfs_main_kobj
652 *
653 * setups and registers the main kobject for each mci
654 */
655int edac_mc_register_sysfs_main_kobj(struct mem_ctl_info *mci)
656{
657 struct kobject *kobj_mci;
658 int err;
659
660 debugf1("%s()\n", __func__);
661
662 kobj_mci = &mci->edac_mci_kobj;
663
664 /* Init the mci's kobject */
665 memset(kobj_mci, 0, sizeof(*kobj_mci));
666
Doug Thompson8096cfa2007-07-19 01:50:27 -0700667 /* Record which module 'owns' this control structure
668 * and bump the ref count of the module
669 */
670 mci->owner = THIS_MODULE;
671
672 /* bump ref count on this module */
673 if (!try_module_get(mci->owner)) {
674 err = -ENODEV;
675 goto fail_out;
676 }
677
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400678 /* this instance become part of the mc_kset */
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700679 kobj_mci->kset = mc_kset;
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400680
Doug Thompson8096cfa2007-07-19 01:50:27 -0700681 /* register the mc<id> kobject to the mc_kset */
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400682 err = kobject_init_and_add(kobj_mci, &ktype_mci, NULL,
683 "mc%d", mci->mc_idx);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700684 if (err) {
685 debugf1("%s()Failed to register '.../edac/mc%d'\n",
686 __func__, mci->mc_idx);
687 goto kobj_reg_fail;
688 }
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400689 kobject_uevent(kobj_mci, KOBJ_ADD);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700690
691 /* At this point, to 'free' the control struct,
692 * edac_mc_unregister_sysfs_main_kobj() must be used
693 */
694
695 debugf1("%s() Registered '.../edac/mc%d' kobject\n",
696 __func__, mci->mc_idx);
697
698 return 0;
699
700 /* Error exit stack */
701
702kobj_reg_fail:
703 module_put(mci->owner);
704
705fail_out:
706 return err;
707}
708
709/*
710 * edac_mc_register_sysfs_main_kobj
711 *
712 * tears down and the main mci kobject from the mc_kset
713 */
714void edac_mc_unregister_sysfs_main_kobj(struct mem_ctl_info *mci)
715{
716 /* delete the kobj from the mc_kset */
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800717 kobject_put(&mci->edac_mci_kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700718}
719
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700720#define EDAC_DEVICE_SYMLINK "device"
721
722/*
Doug Thompson8096cfa2007-07-19 01:50:27 -0700723 * edac_create_mci_instance_attributes
Douglas Thompson42a8e392007-07-19 01:50:10 -0700724 * create MC driver specific attributes at the topmost level
725 * directory of this mci instance.
726 */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700727static int edac_create_mci_instance_attributes(struct mem_ctl_info *mci)
Douglas Thompson42a8e392007-07-19 01:50:10 -0700728{
729 int err;
730 struct mcidev_sysfs_attribute *sysfs_attrib;
731
732 /* point to the start of the array and iterate over it
733 * adding each attribute listed to this mci instance's kobject
734 */
735 sysfs_attrib = mci->mc_driver_sysfs_attributes;
736
Doug Thompson8096cfa2007-07-19 01:50:27 -0700737 while (sysfs_attrib && sysfs_attrib->attr.name) {
Douglas Thompson42a8e392007-07-19 01:50:10 -0700738 err = sysfs_create_file(&mci->edac_mci_kobj,
739 (struct attribute*) sysfs_attrib);
740 if (err) {
741 return err;
742 }
743
744 sysfs_attrib++;
745 }
746
747 return 0;
748}
749
750/*
Doug Thompson8096cfa2007-07-19 01:50:27 -0700751 * edac_remove_mci_instance_attributes
752 * remove MC driver specific attributes at the topmost level
753 * directory of this mci instance.
754 */
755static void edac_remove_mci_instance_attributes(struct mem_ctl_info *mci)
756{
757 struct mcidev_sysfs_attribute *sysfs_attrib;
758
759 /* point to the start of the array and iterate over it
760 * adding each attribute listed to this mci instance's kobject
761 */
762 sysfs_attrib = mci->mc_driver_sysfs_attributes;
763
764 /* loop if there are attributes and until we hit a NULL entry */
765 while (sysfs_attrib && sysfs_attrib->attr.name) {
766 sysfs_remove_file(&mci->edac_mci_kobj,
767 (struct attribute *) sysfs_attrib);
768 sysfs_attrib++;
769 }
770}
771
772
773/*
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700774 * Create a new Memory Controller kobject instance,
775 * mc<id> under the 'mc' directory
776 *
777 * Return:
778 * 0 Success
779 * !0 Failure
780 */
781int edac_create_sysfs_mci_device(struct mem_ctl_info *mci)
782{
783 int i;
784 int err;
785 struct csrow_info *csrow;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700786 struct kobject *kobj_mci = &mci->edac_mci_kobj;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700787
788 debugf0("%s() idx=%d\n", __func__, mci->mc_idx);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700789
790 /* create a symlink for the device */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700791 err = sysfs_create_link(kobj_mci, &mci->dev->kobj,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700792 EDAC_DEVICE_SYMLINK);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700793 if (err) {
794 debugf1("%s() failure to create symlink\n", __func__);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700795 goto fail0;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700796 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700797
Douglas Thompson42a8e392007-07-19 01:50:10 -0700798 /* If the low level driver desires some attributes,
799 * then create them now for the driver.
800 */
801 if (mci->mc_driver_sysfs_attributes) {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700802 err = edac_create_mci_instance_attributes(mci);
803 if (err) {
804 debugf1("%s() failure to create mci attributes\n",
805 __func__);
Douglas Thompson42a8e392007-07-19 01:50:10 -0700806 goto fail0;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700807 }
Douglas Thompson42a8e392007-07-19 01:50:10 -0700808 }
809
Doug Thompson8096cfa2007-07-19 01:50:27 -0700810 /* Make directories for each CSROW object under the mc<id> kobject
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700811 */
812 for (i = 0; i < mci->nr_csrows; i++) {
813 csrow = &mci->csrows[i];
814
815 /* Only expose populated CSROWs */
816 if (csrow->nr_pages > 0) {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700817 err = edac_create_csrow_object(mci, csrow, i);
818 if (err) {
819 debugf1("%s() failure: create csrow %d obj\n",
820 __func__, i);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700821 goto fail1;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700822 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700823 }
824 }
825
826 return 0;
827
828 /* CSROW error: backout what has already been registered, */
Douglas Thompson052dfb42007-07-19 01:50:13 -0700829fail1:
Douglas Thompson079708b2007-07-19 01:49:58 -0700830 for (i--; i >= 0; i--) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700831 if (csrow->nr_pages > 0) {
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800832 kobject_put(&mci->csrows[i].kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700833 }
834 }
835
Doug Thompson8096cfa2007-07-19 01:50:27 -0700836 /* remove the mci instance's attributes, if any */
837 edac_remove_mci_instance_attributes(mci);
838
839 /* remove the symlink */
840 sysfs_remove_link(kobj_mci, EDAC_DEVICE_SYMLINK);
841
Douglas Thompson052dfb42007-07-19 01:50:13 -0700842fail0:
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700843 return err;
844}
845
846/*
847 * remove a Memory Controller instance
848 */
849void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci)
850{
851 int i;
852
853 debugf0("%s()\n", __func__);
854
855 /* remove all csrow kobjects */
856 for (i = 0; i < mci->nr_csrows; i++) {
857 if (mci->csrows[i].nr_pages > 0) {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700858 debugf0("%s() unreg csrow-%d\n", __func__, i);
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800859 kobject_put(&mci->csrows[i].kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700860 }
861 }
862
Doug Thompson8096cfa2007-07-19 01:50:27 -0700863 debugf0("%s() remove_link\n", __func__);
864
865 /* remove the symlink */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700866 sysfs_remove_link(&mci->edac_mci_kobj, EDAC_DEVICE_SYMLINK);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700867
868 debugf0("%s() remove_mci_instance\n", __func__);
869
870 /* remove this mci instance's attribtes */
871 edac_remove_mci_instance_attributes(mci);
872
873 debugf0("%s() unregister this mci kobj\n", __func__);
874
875 /* unregister this instance's kobject */
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800876 kobject_put(&mci->edac_mci_kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700877}
Doug Thompson8096cfa2007-07-19 01:50:27 -0700878
879
880
881
882/*
883 * edac_setup_sysfs_mc_kset(void)
884 *
885 * Initialize the mc_kset for the 'mc' entry
886 * This requires creating the top 'mc' directory with a kset
887 * and its controls/attributes.
888 *
889 * To this 'mc' kset, instance 'mci' will be grouped as children.
890 *
891 * Return: 0 SUCCESS
892 * !0 FAILURE error code
893 */
894int edac_sysfs_setup_mc_kset(void)
895{
896 int err = 0;
897 struct sysdev_class *edac_class;
898
899 debugf1("%s()\n", __func__);
900
901 /* get the /sys/devices/system/edac class reference */
902 edac_class = edac_get_edac_class();
903 if (edac_class == NULL) {
904 debugf1("%s() no edac_class error=%d\n", __func__, err);
905 goto fail_out;
906 }
907
908 /* Init the MC's kobject */
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700909 mc_kset = kset_create_and_add("mc", NULL, &edac_class->kset.kobj);
910 if (!mc_kset) {
911 err = -ENOMEM;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700912 debugf1("%s() Failed to register '.../edac/mc'\n", __func__);
913 goto fail_out;
914 }
915
916 debugf1("%s() Registered '.../edac/mc' kobject\n", __func__);
917
918 return 0;
919
920
921 /* error unwind stack */
922fail_out:
923 return err;
924}
925
926/*
927 * edac_sysfs_teardown_mc_kset
928 *
929 * deconstruct the mc_ket for memory controllers
930 */
931void edac_sysfs_teardown_mc_kset(void)
932{
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700933 kset_unregister(mc_kset);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700934}
935