blob: ad218fe4942dfcf258273ee22f56776f3a0b23c2 [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{
Arthur Jones124682c2008-07-25 01:49:12 -0700181 /* if field has not been initialized, there is nothing to send */
182 if (!csrow->channels[channel].label[0])
183 return 0;
184
185 return snprintf(data, EDAC_MC_LABEL_LEN, "%s\n",
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700186 csrow->channels[channel].label);
187}
188
189static ssize_t channel_dimm_label_store(struct csrow_info *csrow,
Douglas Thompson079708b2007-07-19 01:49:58 -0700190 const char *data,
191 size_t count, int channel)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700192{
193 ssize_t max_size = 0;
194
Douglas Thompson079708b2007-07-19 01:49:58 -0700195 max_size = min((ssize_t) count, (ssize_t) EDAC_MC_LABEL_LEN - 1);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700196 strncpy(csrow->channels[channel].label, data, max_size);
197 csrow->channels[channel].label[max_size] = '\0';
198
199 return max_size;
200}
201
202/* show function for dynamic chX_ce_count attribute */
203static ssize_t channel_ce_count_show(struct csrow_info *csrow,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700204 char *data, int channel)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700205{
206 return sprintf(data, "%u\n", csrow->channels[channel].ce_count);
207}
208
209/* csrow specific attribute structure */
210struct csrowdev_attribute {
211 struct attribute attr;
Douglas Thompson079708b2007-07-19 01:49:58 -0700212 ssize_t(*show) (struct csrow_info *, char *, int);
213 ssize_t(*store) (struct csrow_info *, const char *, size_t, int);
214 int private;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700215};
216
217#define to_csrow(k) container_of(k, struct csrow_info, kobj)
218#define to_csrowdev_attr(a) container_of(a, struct csrowdev_attribute, attr)
219
220/* Set of show/store higher level functions for default csrow attributes */
221static ssize_t csrowdev_show(struct kobject *kobj,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700222 struct attribute *attr, char *buffer)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700223{
224 struct csrow_info *csrow = to_csrow(kobj);
225 struct csrowdev_attribute *csrowdev_attr = to_csrowdev_attr(attr);
226
227 if (csrowdev_attr->show)
228 return csrowdev_attr->show(csrow,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700229 buffer, csrowdev_attr->private);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700230 return -EIO;
231}
232
233static ssize_t csrowdev_store(struct kobject *kobj, struct attribute *attr,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700234 const char *buffer, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700235{
236 struct csrow_info *csrow = to_csrow(kobj);
Douglas Thompson079708b2007-07-19 01:49:58 -0700237 struct csrowdev_attribute *csrowdev_attr = to_csrowdev_attr(attr);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700238
239 if (csrowdev_attr->store)
240 return csrowdev_attr->store(csrow,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700241 buffer,
242 count, csrowdev_attr->private);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700243 return -EIO;
244}
245
246static struct sysfs_ops csrowfs_ops = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700247 .show = csrowdev_show,
248 .store = csrowdev_store
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700249};
250
251#define CSROWDEV_ATTR(_name,_mode,_show,_store,_private) \
252static struct csrowdev_attribute attr_##_name = { \
253 .attr = {.name = __stringify(_name), .mode = _mode }, \
254 .show = _show, \
255 .store = _store, \
256 .private = _private, \
257};
258
259/* default cwrow<id>/attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700260CSROWDEV_ATTR(size_mb, S_IRUGO, csrow_size_show, NULL, 0);
261CSROWDEV_ATTR(dev_type, S_IRUGO, csrow_dev_type_show, NULL, 0);
262CSROWDEV_ATTR(mem_type, S_IRUGO, csrow_mem_type_show, NULL, 0);
263CSROWDEV_ATTR(edac_mode, S_IRUGO, csrow_edac_mode_show, NULL, 0);
264CSROWDEV_ATTR(ue_count, S_IRUGO, csrow_ue_count_show, NULL, 0);
265CSROWDEV_ATTR(ce_count, S_IRUGO, csrow_ce_count_show, NULL, 0);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700266
267/* default attributes of the CSROW<id> object */
268static struct csrowdev_attribute *default_csrow_attr[] = {
269 &attr_dev_type,
270 &attr_mem_type,
271 &attr_edac_mode,
272 &attr_size_mb,
273 &attr_ue_count,
274 &attr_ce_count,
275 NULL,
276};
277
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700278/* possible dynamic channel DIMM Label attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700279CSROWDEV_ATTR(ch0_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700280 channel_dimm_label_show, channel_dimm_label_store, 0);
Douglas Thompson079708b2007-07-19 01:49:58 -0700281CSROWDEV_ATTR(ch1_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700282 channel_dimm_label_show, channel_dimm_label_store, 1);
Douglas Thompson079708b2007-07-19 01:49:58 -0700283CSROWDEV_ATTR(ch2_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700284 channel_dimm_label_show, channel_dimm_label_store, 2);
Douglas Thompson079708b2007-07-19 01:49:58 -0700285CSROWDEV_ATTR(ch3_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700286 channel_dimm_label_show, channel_dimm_label_store, 3);
Douglas Thompson079708b2007-07-19 01:49:58 -0700287CSROWDEV_ATTR(ch4_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700288 channel_dimm_label_show, channel_dimm_label_store, 4);
Douglas Thompson079708b2007-07-19 01:49:58 -0700289CSROWDEV_ATTR(ch5_dimm_label, S_IRUGO | S_IWUSR,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700290 channel_dimm_label_show, channel_dimm_label_store, 5);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700291
292/* Total possible dynamic DIMM Label attribute file table */
293static struct csrowdev_attribute *dynamic_csrow_dimm_attr[] = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700294 &attr_ch0_dimm_label,
295 &attr_ch1_dimm_label,
296 &attr_ch2_dimm_label,
297 &attr_ch3_dimm_label,
298 &attr_ch4_dimm_label,
299 &attr_ch5_dimm_label
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700300};
301
302/* possible dynamic channel ce_count attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700303CSROWDEV_ATTR(ch0_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 0);
304CSROWDEV_ATTR(ch1_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 1);
305CSROWDEV_ATTR(ch2_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 2);
306CSROWDEV_ATTR(ch3_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 3);
307CSROWDEV_ATTR(ch4_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 4);
308CSROWDEV_ATTR(ch5_ce_count, S_IRUGO | S_IWUSR, channel_ce_count_show, NULL, 5);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700309
310/* Total possible dynamic ce_count attribute file table */
311static struct csrowdev_attribute *dynamic_csrow_ce_count_attr[] = {
Douglas Thompson079708b2007-07-19 01:49:58 -0700312 &attr_ch0_ce_count,
313 &attr_ch1_ce_count,
314 &attr_ch2_ce_count,
315 &attr_ch3_ce_count,
316 &attr_ch4_ce_count,
317 &attr_ch5_ce_count
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700318};
319
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700320#define EDAC_NR_CHANNELS 6
321
322/* Create dynamic CHANNEL files, indexed by 'chan', under specifed CSROW */
323static int edac_create_channel_files(struct kobject *kobj, int chan)
324{
Douglas Thompson079708b2007-07-19 01:49:58 -0700325 int err = -ENODEV;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700326
327 if (chan >= EDAC_NR_CHANNELS)
328 return err;
329
330 /* create the DIMM label attribute file */
331 err = sysfs_create_file(kobj,
Douglas Thompson079708b2007-07-19 01:49:58 -0700332 (struct attribute *)
333 dynamic_csrow_dimm_attr[chan]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700334
335 if (!err) {
336 /* create the CE Count attribute file */
337 err = sysfs_create_file(kobj,
Douglas Thompson079708b2007-07-19 01:49:58 -0700338 (struct attribute *)
339 dynamic_csrow_ce_count_attr[chan]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700340 } else {
Douglas Thompsone27e3da2007-07-19 01:49:36 -0700341 debugf1("%s() dimm labels and ce_count files created",
342 __func__);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700343 }
344
345 return err;
346}
347
348/* No memory to release for this kobj */
349static void edac_csrow_instance_release(struct kobject *kobj)
350{
Doug Thompson8096cfa2007-07-19 01:50:27 -0700351 struct mem_ctl_info *mci;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700352 struct csrow_info *cs;
353
Doug Thompson8096cfa2007-07-19 01:50:27 -0700354 debugf1("%s()\n", __func__);
355
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700356 cs = container_of(kobj, struct csrow_info, kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700357 mci = cs->mci;
358
359 kobject_put(&mci->edac_mci_kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700360}
361
362/* the kobj_type instance for a CSROW */
363static struct kobj_type ktype_csrow = {
364 .release = edac_csrow_instance_release,
365 .sysfs_ops = &csrowfs_ops,
Douglas Thompson079708b2007-07-19 01:49:58 -0700366 .default_attrs = (struct attribute **)default_csrow_attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700367};
368
369/* Create a CSROW object under specifed edac_mc_device */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700370static int edac_create_csrow_object(struct mem_ctl_info *mci,
371 struct csrow_info *csrow, int index)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700372{
Doug Thompson8096cfa2007-07-19 01:50:27 -0700373 struct kobject *kobj_mci = &mci->edac_mci_kobj;
374 struct kobject *kobj;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700375 int chan;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700376 int err;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700377
378 /* generate ..../edac/mc/mc<id>/csrow<index> */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700379 memset(&csrow->kobj, 0, sizeof(csrow->kobj));
380 csrow->mci = mci; /* include container up link */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700381
382 /* bump the mci instance's kobject's ref count */
383 kobj = kobject_get(&mci->edac_mci_kobj);
384 if (!kobj) {
385 err = -ENODEV;
386 goto err_out;
387 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700388
389 /* Instanstiate the csrow object */
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400390 err = kobject_init_and_add(&csrow->kobj, &ktype_csrow, kobj_mci,
391 "csrow%d", index);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700392 if (err)
393 goto err_release_top_kobj;
394
395 /* At this point, to release a csrow kobj, one must
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800396 * call the kobject_put and allow that tear down
Doug Thompson8096cfa2007-07-19 01:50:27 -0700397 * to work the releasing
398 */
399
400 /* Create the dyanmic attribute files on this csrow,
401 * namely, the DIMM labels and the channel ce_count
402 */
403 for (chan = 0; chan < csrow->nr_channels; chan++) {
404 err = edac_create_channel_files(&csrow->kobj, chan);
405 if (err) {
406 /* special case the unregister here */
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800407 kobject_put(&csrow->kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700408 goto err_out;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700409 }
410 }
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400411 kobject_uevent(&csrow->kobj, KOBJ_ADD);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700412 return 0;
413
414 /* error unwind stack */
415err_release_top_kobj:
416 kobject_put(&mci->edac_mci_kobj);
417
418err_out:
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700419 return err;
420}
421
422/* default sysfs methods and data structures for the main MCI kobject */
423
424static ssize_t mci_reset_counters_store(struct mem_ctl_info *mci,
Douglas Thompson079708b2007-07-19 01:49:58 -0700425 const char *data, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700426{
427 int row, chan;
428
429 mci->ue_noinfo_count = 0;
430 mci->ce_noinfo_count = 0;
431 mci->ue_count = 0;
432 mci->ce_count = 0;
433
434 for (row = 0; row < mci->nr_csrows; row++) {
435 struct csrow_info *ri = &mci->csrows[row];
436
437 ri->ue_count = 0;
438 ri->ce_count = 0;
439
440 for (chan = 0; chan < ri->nr_channels; chan++)
441 ri->channels[chan].ce_count = 0;
442 }
443
444 mci->start_time = jiffies;
445 return count;
446}
447
448/* memory scrubbing */
449static ssize_t mci_sdram_scrub_rate_store(struct mem_ctl_info *mci,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700450 const char *data, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700451{
452 u32 bandwidth = -1;
453
454 if (mci->set_sdram_scrub_rate) {
455
456 memctrl_int_store(&bandwidth, data, count);
457
Douglas Thompson079708b2007-07-19 01:49:58 -0700458 if (!(*mci->set_sdram_scrub_rate) (mci, &bandwidth)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700459 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700460 "Scrub rate set successfully, applied: %d\n",
461 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700462 } else {
463 /* FIXME: error codes maybe? */
464 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700465 "Scrub rate set FAILED, could not apply: %d\n",
466 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700467 }
468 } else {
469 /* FIXME: produce "not implemented" ERROR for user-side. */
470 edac_printk(KERN_WARNING, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700471 "Memory scrubbing 'set'control is not implemented!\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700472 }
473 return count;
474}
475
476static ssize_t mci_sdram_scrub_rate_show(struct mem_ctl_info *mci, char *data)
477{
478 u32 bandwidth = -1;
479
480 if (mci->get_sdram_scrub_rate) {
Douglas Thompson079708b2007-07-19 01:49:58 -0700481 if (!(*mci->get_sdram_scrub_rate) (mci, &bandwidth)) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700482 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700483 "Scrub rate successfully, fetched: %d\n",
484 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700485 } else {
486 /* FIXME: error codes maybe? */
487 edac_printk(KERN_DEBUG, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700488 "Scrub rate fetch FAILED, got: %d\n",
489 bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700490 }
491 } else {
492 /* FIXME: produce "not implemented" ERROR for user-side. */
493 edac_printk(KERN_WARNING, EDAC_MC,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700494 "Memory scrubbing 'get' control is not implemented\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700495 }
496 return sprintf(data, "%d\n", bandwidth);
497}
498
499/* default attribute files for the MCI object */
500static ssize_t mci_ue_count_show(struct mem_ctl_info *mci, char *data)
501{
Douglas Thompson079708b2007-07-19 01:49:58 -0700502 return sprintf(data, "%d\n", mci->ue_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700503}
504
505static ssize_t mci_ce_count_show(struct mem_ctl_info *mci, char *data)
506{
Douglas Thompson079708b2007-07-19 01:49:58 -0700507 return sprintf(data, "%d\n", mci->ce_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700508}
509
510static ssize_t mci_ce_noinfo_show(struct mem_ctl_info *mci, char *data)
511{
Douglas Thompson079708b2007-07-19 01:49:58 -0700512 return sprintf(data, "%d\n", mci->ce_noinfo_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700513}
514
515static ssize_t mci_ue_noinfo_show(struct mem_ctl_info *mci, char *data)
516{
Douglas Thompson079708b2007-07-19 01:49:58 -0700517 return sprintf(data, "%d\n", mci->ue_noinfo_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700518}
519
520static ssize_t mci_seconds_show(struct mem_ctl_info *mci, char *data)
521{
Douglas Thompson079708b2007-07-19 01:49:58 -0700522 return sprintf(data, "%ld\n", (jiffies - mci->start_time) / HZ);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700523}
524
525static ssize_t mci_ctl_name_show(struct mem_ctl_info *mci, char *data)
526{
Douglas Thompson079708b2007-07-19 01:49:58 -0700527 return sprintf(data, "%s\n", mci->ctl_name);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700528}
529
530static ssize_t mci_size_mb_show(struct mem_ctl_info *mci, char *data)
531{
532 int total_pages, csrow_idx;
533
534 for (total_pages = csrow_idx = 0; csrow_idx < mci->nr_csrows;
Douglas Thompson052dfb42007-07-19 01:50:13 -0700535 csrow_idx++) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700536 struct csrow_info *csrow = &mci->csrows[csrow_idx];
537
538 if (!csrow->nr_pages)
539 continue;
540
541 total_pages += csrow->nr_pages;
542 }
543
Douglas Thompson079708b2007-07-19 01:49:58 -0700544 return sprintf(data, "%u\n", PAGES_TO_MiB(total_pages));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700545}
546
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700547#define to_mci(k) container_of(k, struct mem_ctl_info, edac_mci_kobj)
Douglas Thompson42a8e392007-07-19 01:50:10 -0700548#define to_mcidev_attr(a) container_of(a,struct mcidev_sysfs_attribute,attr)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700549
550/* MCI show/store functions for top most object */
551static ssize_t mcidev_show(struct kobject *kobj, struct attribute *attr,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700552 char *buffer)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700553{
554 struct mem_ctl_info *mem_ctl_info = to_mci(kobj);
Douglas Thompson42a8e392007-07-19 01:50:10 -0700555 struct mcidev_sysfs_attribute *mcidev_attr = to_mcidev_attr(attr);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700556
557 if (mcidev_attr->show)
558 return mcidev_attr->show(mem_ctl_info, buffer);
559
560 return -EIO;
561}
562
563static ssize_t mcidev_store(struct kobject *kobj, struct attribute *attr,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700564 const char *buffer, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700565{
566 struct mem_ctl_info *mem_ctl_info = to_mci(kobj);
Douglas Thompson42a8e392007-07-19 01:50:10 -0700567 struct mcidev_sysfs_attribute *mcidev_attr = to_mcidev_attr(attr);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700568
569 if (mcidev_attr->store)
570 return mcidev_attr->store(mem_ctl_info, buffer, count);
571
572 return -EIO;
573}
574
Doug Thompson8096cfa2007-07-19 01:50:27 -0700575/* Intermediate show/store table */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700576static struct sysfs_ops mci_ops = {
577 .show = mcidev_show,
578 .store = mcidev_store
579};
580
581#define MCIDEV_ATTR(_name,_mode,_show,_store) \
Douglas Thompson42a8e392007-07-19 01:50:10 -0700582static struct mcidev_sysfs_attribute mci_attr_##_name = { \
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700583 .attr = {.name = __stringify(_name), .mode = _mode }, \
584 .show = _show, \
585 .store = _store, \
586};
587
588/* default Control file */
Douglas Thompson079708b2007-07-19 01:49:58 -0700589MCIDEV_ATTR(reset_counters, S_IWUSR, NULL, mci_reset_counters_store);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700590
591/* default Attribute files */
Douglas Thompson079708b2007-07-19 01:49:58 -0700592MCIDEV_ATTR(mc_name, S_IRUGO, mci_ctl_name_show, NULL);
593MCIDEV_ATTR(size_mb, S_IRUGO, mci_size_mb_show, NULL);
594MCIDEV_ATTR(seconds_since_reset, S_IRUGO, mci_seconds_show, NULL);
595MCIDEV_ATTR(ue_noinfo_count, S_IRUGO, mci_ue_noinfo_show, NULL);
596MCIDEV_ATTR(ce_noinfo_count, S_IRUGO, mci_ce_noinfo_show, NULL);
597MCIDEV_ATTR(ue_count, S_IRUGO, mci_ue_count_show, NULL);
598MCIDEV_ATTR(ce_count, S_IRUGO, mci_ce_count_show, NULL);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700599
600/* memory scrubber attribute file */
Douglas Thompson079708b2007-07-19 01:49:58 -0700601MCIDEV_ATTR(sdram_scrub_rate, S_IRUGO | S_IWUSR, mci_sdram_scrub_rate_show,
Douglas Thompson052dfb42007-07-19 01:50:13 -0700602 mci_sdram_scrub_rate_store);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700603
Douglas Thompson42a8e392007-07-19 01:50:10 -0700604static struct mcidev_sysfs_attribute *mci_attr[] = {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700605 &mci_attr_reset_counters,
606 &mci_attr_mc_name,
607 &mci_attr_size_mb,
608 &mci_attr_seconds_since_reset,
609 &mci_attr_ue_noinfo_count,
610 &mci_attr_ce_noinfo_count,
611 &mci_attr_ue_count,
612 &mci_attr_ce_count,
613 &mci_attr_sdram_scrub_rate,
614 NULL
615};
616
Doug Thompson8096cfa2007-07-19 01:50:27 -0700617
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700618/*
619 * Release of a MC controlling instance
Doug Thompson8096cfa2007-07-19 01:50:27 -0700620 *
621 * each MC control instance has the following resources upon entry:
622 * a) a ref count on the top memctl kobj
623 * b) a ref count on this module
624 *
625 * this function must decrement those ref counts and then
626 * issue a free on the instance's memory
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700627 */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700628static void edac_mci_control_release(struct kobject *kobj)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700629{
630 struct mem_ctl_info *mci;
631
632 mci = to_mci(kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700633
634 debugf0("%s() mci instance idx=%d releasing\n", __func__, mci->mc_idx);
635
636 /* decrement the module ref count */
637 module_put(mci->owner);
638
639 /* free the mci instance memory here */
640 kfree(mci);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700641}
642
643static struct kobj_type ktype_mci = {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700644 .release = edac_mci_control_release,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700645 .sysfs_ops = &mci_ops,
Douglas Thompson079708b2007-07-19 01:49:58 -0700646 .default_attrs = (struct attribute **)mci_attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700647};
648
Doug Thompson8096cfa2007-07-19 01:50:27 -0700649/* EDAC memory controller sysfs kset:
650 * /sys/devices/system/edac/mc
651 */
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700652static struct kset *mc_kset;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700653
654/*
655 * edac_mc_register_sysfs_main_kobj
656 *
657 * setups and registers the main kobject for each mci
658 */
659int edac_mc_register_sysfs_main_kobj(struct mem_ctl_info *mci)
660{
661 struct kobject *kobj_mci;
662 int err;
663
664 debugf1("%s()\n", __func__);
665
666 kobj_mci = &mci->edac_mci_kobj;
667
668 /* Init the mci's kobject */
669 memset(kobj_mci, 0, sizeof(*kobj_mci));
670
Doug Thompson8096cfa2007-07-19 01:50:27 -0700671 /* Record which module 'owns' this control structure
672 * and bump the ref count of the module
673 */
674 mci->owner = THIS_MODULE;
675
676 /* bump ref count on this module */
677 if (!try_module_get(mci->owner)) {
678 err = -ENODEV;
679 goto fail_out;
680 }
681
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400682 /* this instance become part of the mc_kset */
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700683 kobj_mci->kset = mc_kset;
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400684
Doug Thompson8096cfa2007-07-19 01:50:27 -0700685 /* register the mc<id> kobject to the mc_kset */
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400686 err = kobject_init_and_add(kobj_mci, &ktype_mci, NULL,
687 "mc%d", mci->mc_idx);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700688 if (err) {
689 debugf1("%s()Failed to register '.../edac/mc%d'\n",
690 __func__, mci->mc_idx);
691 goto kobj_reg_fail;
692 }
Greg Kroah-Hartmanb2ed2152007-12-17 15:54:39 -0400693 kobject_uevent(kobj_mci, KOBJ_ADD);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700694
695 /* At this point, to 'free' the control struct,
696 * edac_mc_unregister_sysfs_main_kobj() must be used
697 */
698
699 debugf1("%s() Registered '.../edac/mc%d' kobject\n",
700 __func__, mci->mc_idx);
701
702 return 0;
703
704 /* Error exit stack */
705
706kobj_reg_fail:
707 module_put(mci->owner);
708
709fail_out:
710 return err;
711}
712
713/*
714 * edac_mc_register_sysfs_main_kobj
715 *
716 * tears down and the main mci kobject from the mc_kset
717 */
718void edac_mc_unregister_sysfs_main_kobj(struct mem_ctl_info *mci)
719{
720 /* delete the kobj from the mc_kset */
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800721 kobject_put(&mci->edac_mci_kobj);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700722}
723
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700724#define EDAC_DEVICE_SYMLINK "device"
725
726/*
Doug Thompson8096cfa2007-07-19 01:50:27 -0700727 * edac_create_mci_instance_attributes
Douglas Thompson42a8e392007-07-19 01:50:10 -0700728 * create MC driver specific attributes at the topmost level
729 * directory of this mci instance.
730 */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700731static int edac_create_mci_instance_attributes(struct mem_ctl_info *mci)
Douglas Thompson42a8e392007-07-19 01:50:10 -0700732{
733 int err;
734 struct mcidev_sysfs_attribute *sysfs_attrib;
735
736 /* point to the start of the array and iterate over it
737 * adding each attribute listed to this mci instance's kobject
738 */
739 sysfs_attrib = mci->mc_driver_sysfs_attributes;
740
Doug Thompson8096cfa2007-07-19 01:50:27 -0700741 while (sysfs_attrib && sysfs_attrib->attr.name) {
Douglas Thompson42a8e392007-07-19 01:50:10 -0700742 err = sysfs_create_file(&mci->edac_mci_kobj,
743 (struct attribute*) sysfs_attrib);
744 if (err) {
745 return err;
746 }
747
748 sysfs_attrib++;
749 }
750
751 return 0;
752}
753
754/*
Doug Thompson8096cfa2007-07-19 01:50:27 -0700755 * edac_remove_mci_instance_attributes
756 * remove MC driver specific attributes at the topmost level
757 * directory of this mci instance.
758 */
759static void edac_remove_mci_instance_attributes(struct mem_ctl_info *mci)
760{
761 struct mcidev_sysfs_attribute *sysfs_attrib;
762
763 /* point to the start of the array and iterate over it
764 * adding each attribute listed to this mci instance's kobject
765 */
766 sysfs_attrib = mci->mc_driver_sysfs_attributes;
767
768 /* loop if there are attributes and until we hit a NULL entry */
769 while (sysfs_attrib && sysfs_attrib->attr.name) {
770 sysfs_remove_file(&mci->edac_mci_kobj,
771 (struct attribute *) sysfs_attrib);
772 sysfs_attrib++;
773 }
774}
775
776
777/*
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700778 * Create a new Memory Controller kobject instance,
779 * mc<id> under the 'mc' directory
780 *
781 * Return:
782 * 0 Success
783 * !0 Failure
784 */
785int edac_create_sysfs_mci_device(struct mem_ctl_info *mci)
786{
787 int i;
788 int err;
789 struct csrow_info *csrow;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700790 struct kobject *kobj_mci = &mci->edac_mci_kobj;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700791
792 debugf0("%s() idx=%d\n", __func__, mci->mc_idx);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700793
794 /* create a symlink for the device */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700795 err = sysfs_create_link(kobj_mci, &mci->dev->kobj,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700796 EDAC_DEVICE_SYMLINK);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700797 if (err) {
798 debugf1("%s() failure to create symlink\n", __func__);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700799 goto fail0;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700800 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700801
Douglas Thompson42a8e392007-07-19 01:50:10 -0700802 /* If the low level driver desires some attributes,
803 * then create them now for the driver.
804 */
805 if (mci->mc_driver_sysfs_attributes) {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700806 err = edac_create_mci_instance_attributes(mci);
807 if (err) {
808 debugf1("%s() failure to create mci attributes\n",
809 __func__);
Douglas Thompson42a8e392007-07-19 01:50:10 -0700810 goto fail0;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700811 }
Douglas Thompson42a8e392007-07-19 01:50:10 -0700812 }
813
Doug Thompson8096cfa2007-07-19 01:50:27 -0700814 /* Make directories for each CSROW object under the mc<id> kobject
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700815 */
816 for (i = 0; i < mci->nr_csrows; i++) {
817 csrow = &mci->csrows[i];
818
819 /* Only expose populated CSROWs */
820 if (csrow->nr_pages > 0) {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700821 err = edac_create_csrow_object(mci, csrow, i);
822 if (err) {
823 debugf1("%s() failure: create csrow %d obj\n",
824 __func__, i);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700825 goto fail1;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700826 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700827 }
828 }
829
830 return 0;
831
832 /* CSROW error: backout what has already been registered, */
Douglas Thompson052dfb42007-07-19 01:50:13 -0700833fail1:
Douglas Thompson079708b2007-07-19 01:49:58 -0700834 for (i--; i >= 0; i--) {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700835 if (csrow->nr_pages > 0) {
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800836 kobject_put(&mci->csrows[i].kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700837 }
838 }
839
Doug Thompson8096cfa2007-07-19 01:50:27 -0700840 /* remove the mci instance's attributes, if any */
841 edac_remove_mci_instance_attributes(mci);
842
843 /* remove the symlink */
844 sysfs_remove_link(kobj_mci, EDAC_DEVICE_SYMLINK);
845
Douglas Thompson052dfb42007-07-19 01:50:13 -0700846fail0:
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700847 return err;
848}
849
850/*
851 * remove a Memory Controller instance
852 */
853void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci)
854{
855 int i;
856
857 debugf0("%s()\n", __func__);
858
859 /* remove all csrow kobjects */
860 for (i = 0; i < mci->nr_csrows; i++) {
861 if (mci->csrows[i].nr_pages > 0) {
Doug Thompson8096cfa2007-07-19 01:50:27 -0700862 debugf0("%s() unreg csrow-%d\n", __func__, i);
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800863 kobject_put(&mci->csrows[i].kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700864 }
865 }
866
Doug Thompson8096cfa2007-07-19 01:50:27 -0700867 debugf0("%s() remove_link\n", __func__);
868
869 /* remove the symlink */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700870 sysfs_remove_link(&mci->edac_mci_kobj, EDAC_DEVICE_SYMLINK);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700871
872 debugf0("%s() remove_mci_instance\n", __func__);
873
874 /* remove this mci instance's attribtes */
875 edac_remove_mci_instance_attributes(mci);
876
877 debugf0("%s() unregister this mci kobj\n", __func__);
878
879 /* unregister this instance's kobject */
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800880 kobject_put(&mci->edac_mci_kobj);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700881}
Doug Thompson8096cfa2007-07-19 01:50:27 -0700882
883
884
885
886/*
887 * edac_setup_sysfs_mc_kset(void)
888 *
889 * Initialize the mc_kset for the 'mc' entry
890 * This requires creating the top 'mc' directory with a kset
891 * and its controls/attributes.
892 *
893 * To this 'mc' kset, instance 'mci' will be grouped as children.
894 *
895 * Return: 0 SUCCESS
896 * !0 FAILURE error code
897 */
898int edac_sysfs_setup_mc_kset(void)
899{
900 int err = 0;
901 struct sysdev_class *edac_class;
902
903 debugf1("%s()\n", __func__);
904
905 /* get the /sys/devices/system/edac class reference */
906 edac_class = edac_get_edac_class();
907 if (edac_class == NULL) {
908 debugf1("%s() no edac_class error=%d\n", __func__, err);
909 goto fail_out;
910 }
911
912 /* Init the MC's kobject */
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700913 mc_kset = kset_create_and_add("mc", NULL, &edac_class->kset.kobj);
914 if (!mc_kset) {
915 err = -ENOMEM;
Doug Thompson8096cfa2007-07-19 01:50:27 -0700916 debugf1("%s() Failed to register '.../edac/mc'\n", __func__);
917 goto fail_out;
918 }
919
920 debugf1("%s() Registered '.../edac/mc' kobject\n", __func__);
921
922 return 0;
923
924
925 /* error unwind stack */
926fail_out:
927 return err;
928}
929
930/*
931 * edac_sysfs_teardown_mc_kset
932 *
933 * deconstruct the mc_ket for memory controllers
934 */
935void edac_sysfs_teardown_mc_kset(void)
936{
Arthur Jonesf9fc82a2008-07-25 01:49:11 -0700937 kset_unregister(mc_kset);
Doug Thompson8096cfa2007-07-19 01:50:27 -0700938}
939