blob: 46417468558945921e52cba2c997229bb87694aa [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 *
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -020010 * (c) 2012-2013 - Mauro Carvalho Chehab
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030011 * The entire API were re-written, and ported to use struct device
12 *
Douglas Thompson7c9281d2007-07-19 01:49:33 -070013 */
14
Douglas Thompson7c9281d2007-07-19 01:49:33 -070015#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Borislav Petkov30e1f7a2010-09-02 17:26:48 +020017#include <linux/edac.h>
Doug Thompson8096cfa2007-07-19 01:50:27 -070018#include <linux/bug.h>
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030019#include <linux/pm_runtime.h>
Mauro Carvalho Chehab452a6bf2012-03-26 09:35:11 -030020#include <linux/uaccess.h>
Douglas Thompson7c9281d2007-07-19 01:49:33 -070021
Mauro Carvalho Chehab78d88e82016-10-29 15:16:34 -020022#include "edac_mc.h"
Douglas Thompson7c9281d2007-07-19 01:49:33 -070023#include "edac_module.h"
24
25/* MC EDAC Controls, setable by module parameter, and sysfs */
Dave Jiang4de78c62007-07-19 01:49:54 -070026static int edac_mc_log_ue = 1;
27static int edac_mc_log_ce = 1;
Douglas Thompsonf0440912007-07-19 01:50:19 -070028static int edac_mc_panic_on_ue;
Dave Jiang4de78c62007-07-19 01:49:54 -070029static int edac_mc_poll_msec = 1000;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070030
31/* Getter functions for above */
Dave Jiang4de78c62007-07-19 01:49:54 -070032int edac_mc_get_log_ue(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -070033{
Dave Jiang4de78c62007-07-19 01:49:54 -070034 return edac_mc_log_ue;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070035}
36
Dave Jiang4de78c62007-07-19 01:49:54 -070037int edac_mc_get_log_ce(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -070038{
Dave Jiang4de78c62007-07-19 01:49:54 -070039 return edac_mc_log_ce;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070040}
41
Dave Jiang4de78c62007-07-19 01:49:54 -070042int edac_mc_get_panic_on_ue(void)
Douglas Thompson7c9281d2007-07-19 01:49:33 -070043{
Dave Jiang4de78c62007-07-19 01:49:54 -070044 return edac_mc_panic_on_ue;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070045}
46
Dave Jiang81d87cb2007-07-19 01:49:52 -070047/* this is temporary */
48int edac_mc_get_poll_msec(void)
49{
Dave Jiang4de78c62007-07-19 01:49:54 -070050 return edac_mc_poll_msec;
Douglas Thompson7c9281d2007-07-19 01:49:33 -070051}
52
Kees Cooke4dca7b2017-10-17 19:04:42 -070053static int edac_set_poll_msec(const char *val, const struct kernel_param *kp)
Arthur Jones096846e2008-07-25 01:49:09 -070054{
Borislav Petkov9da21b12014-02-03 15:05:13 -050055 unsigned long l;
Arthur Jones096846e2008-07-25 01:49:09 -070056 int ret;
57
58 if (!val)
59 return -EINVAL;
60
Borislav Petkov9da21b12014-02-03 15:05:13 -050061 ret = kstrtoul(val, 0, &l);
Jingoo Hanc542b532013-07-19 16:07:21 +090062 if (ret)
63 return ret;
Borislav Petkov9da21b12014-02-03 15:05:13 -050064
65 if (l < 1000)
Arthur Jones096846e2008-07-25 01:49:09 -070066 return -EINVAL;
Borislav Petkov9da21b12014-02-03 15:05:13 -050067
68 *((unsigned long *)kp->arg) = l;
Arthur Jones096846e2008-07-25 01:49:09 -070069
70 /* notify edac_mc engine to reset the poll period */
71 edac_mc_reset_delay_period(l);
72
73 return 0;
74}
75
Douglas Thompson7c9281d2007-07-19 01:49:33 -070076/* Parameter declarations for above */
Dave Jiang4de78c62007-07-19 01:49:54 -070077module_param(edac_mc_panic_on_ue, int, 0644);
78MODULE_PARM_DESC(edac_mc_panic_on_ue, "Panic on uncorrected error: 0=off 1=on");
79module_param(edac_mc_log_ue, int, 0644);
80MODULE_PARM_DESC(edac_mc_log_ue,
Douglas Thompson079708b2007-07-19 01:49:58 -070081 "Log uncorrectable error to console: 0=off 1=on");
Dave Jiang4de78c62007-07-19 01:49:54 -070082module_param(edac_mc_log_ce, int, 0644);
83MODULE_PARM_DESC(edac_mc_log_ce,
Douglas Thompson079708b2007-07-19 01:49:58 -070084 "Log correctable error to console: 0=off 1=on");
Arthur Jones096846e2008-07-25 01:49:09 -070085module_param_call(edac_mc_poll_msec, edac_set_poll_msec, param_get_int,
86 &edac_mc_poll_msec, 0644);
Dave Jiang4de78c62007-07-19 01:49:54 -070087MODULE_PARM_DESC(edac_mc_poll_msec, "Polling period in milliseconds");
Douglas Thompson7c9281d2007-07-19 01:49:33 -070088
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -030089static struct device *mci_pdev;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030090
Douglas Thompson7c9281d2007-07-19 01:49:33 -070091/*
92 * various constants for Memory Controllers
93 */
Borislav Petkov8b7719e2013-03-25 15:41:55 +010094static const char * const dev_types[] = {
Douglas Thompson7c9281d2007-07-19 01:49:33 -070095 [DEV_UNKNOWN] = "Unknown",
96 [DEV_X1] = "x1",
97 [DEV_X2] = "x2",
98 [DEV_X4] = "x4",
99 [DEV_X8] = "x8",
100 [DEV_X16] = "x16",
101 [DEV_X32] = "x32",
102 [DEV_X64] = "x64"
103};
104
Borislav Petkov8b7719e2013-03-25 15:41:55 +0100105static const char * const edac_caps[] = {
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700106 [EDAC_UNKNOWN] = "Unknown",
107 [EDAC_NONE] = "None",
108 [EDAC_RESERVED] = "Reserved",
109 [EDAC_PARITY] = "PARITY",
110 [EDAC_EC] = "EC",
111 [EDAC_SECDED] = "SECDED",
112 [EDAC_S2ECD2ED] = "S2ECD2ED",
113 [EDAC_S4ECD4ED] = "S4ECD4ED",
114 [EDAC_S8ECD8ED] = "S8ECD8ED",
115 [EDAC_S16ECD16ED] = "S16ECD16ED"
116};
117
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300118#ifdef CONFIG_EDAC_LEGACY_SYSFS
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300119/*
120 * EDAC sysfs CSROW data structures and methods
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700121 */
122
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300123#define to_csrow(k) container_of(k, struct csrow_info, dev)
124
125/*
126 * We need it to avoid namespace conflicts between the legacy API
127 * and the per-dimm/per-rank one
128 */
129#define DEVICE_ATTR_LEGACY(_name, _mode, _show, _store) \
Stephen Hemmingerfbe2d362013-02-21 21:44:17 -0800130 static struct device_attribute dev_attr_legacy_##_name = __ATTR(_name, _mode, _show, _store)
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300131
132struct dev_ch_attribute {
133 struct device_attribute attr;
134 int channel;
135};
136
137#define DEVICE_CHANNEL(_name, _mode, _show, _store, _var) \
Borislav Petkovf11135d2015-01-30 14:49:04 +0100138 static struct dev_ch_attribute dev_attr_legacy_##_name = \
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300139 { __ATTR(_name, _mode, _show, _store), (_var) }
140
141#define to_channel(k) (container_of(k, struct dev_ch_attribute, attr)->channel)
142
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700143/* Set of more default csrow<id> attribute show/store functions */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300144static ssize_t csrow_ue_count_show(struct device *dev,
145 struct device_attribute *mattr, char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700146{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300147 struct csrow_info *csrow = to_csrow(dev);
148
Douglas Thompson079708b2007-07-19 01:49:58 -0700149 return sprintf(data, "%u\n", csrow->ue_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700150}
151
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300152static ssize_t csrow_ce_count_show(struct device *dev,
153 struct device_attribute *mattr, char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700154{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300155 struct csrow_info *csrow = to_csrow(dev);
156
Douglas Thompson079708b2007-07-19 01:49:58 -0700157 return sprintf(data, "%u\n", csrow->ce_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700158}
159
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300160static ssize_t csrow_size_show(struct device *dev,
161 struct device_attribute *mattr, char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700162{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300163 struct csrow_info *csrow = to_csrow(dev);
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300164 int i;
165 u32 nr_pages = 0;
166
167 for (i = 0; i < csrow->nr_channels; i++)
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300168 nr_pages += csrow->channels[i]->dimm->nr_pages;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300169 return sprintf(data, "%u\n", PAGES_TO_MiB(nr_pages));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700170}
171
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300172static ssize_t csrow_mem_type_show(struct device *dev,
173 struct device_attribute *mattr, char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700174{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300175 struct csrow_info *csrow = to_csrow(dev);
176
Tony Luckd6dd77e2018-03-12 11:24:26 -0700177 return sprintf(data, "%s\n", edac_mem_types[csrow->channels[0]->dimm->mtype]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700178}
179
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300180static ssize_t csrow_dev_type_show(struct device *dev,
181 struct device_attribute *mattr, char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700182{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300183 struct csrow_info *csrow = to_csrow(dev);
184
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300185 return sprintf(data, "%s\n", dev_types[csrow->channels[0]->dimm->dtype]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700186}
187
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300188static ssize_t csrow_edac_mode_show(struct device *dev,
189 struct device_attribute *mattr,
190 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700191{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300192 struct csrow_info *csrow = to_csrow(dev);
193
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300194 return sprintf(data, "%s\n", edac_caps[csrow->channels[0]->dimm->edac_mode]);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700195}
196
197/* show/store functions for DIMM Label attributes */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300198static ssize_t channel_dimm_label_show(struct device *dev,
199 struct device_attribute *mattr,
200 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700201{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300202 struct csrow_info *csrow = to_csrow(dev);
203 unsigned chan = to_channel(mattr);
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300204 struct rank_info *rank = csrow->channels[chan];
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300205
Arthur Jones124682c2008-07-25 01:49:12 -0700206 /* if field has not been initialized, there is nothing to send */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300207 if (!rank->dimm->label[0])
Arthur Jones124682c2008-07-25 01:49:12 -0700208 return 0;
209
Toshi Kani1ea62c52015-09-22 08:58:02 -0600210 return snprintf(data, sizeof(rank->dimm->label) + 1, "%s\n",
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300211 rank->dimm->label);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700212}
213
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300214static ssize_t channel_dimm_label_store(struct device *dev,
215 struct device_attribute *mattr,
216 const char *data, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700217{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300218 struct csrow_info *csrow = to_csrow(dev);
219 unsigned chan = to_channel(mattr);
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300220 struct rank_info *rank = csrow->channels[chan];
Toshi Kani438470b2015-09-24 13:06:04 -0600221 size_t copy_count = count;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300222
Toshi Kani438470b2015-09-24 13:06:04 -0600223 if (count == 0)
224 return -EINVAL;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700225
Toshi Kani438470b2015-09-24 13:06:04 -0600226 if (data[count - 1] == '\0' || data[count - 1] == '\n')
227 copy_count -= 1;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700228
Toshi Kanid0c9c932015-09-24 13:59:27 -0600229 if (copy_count == 0 || copy_count >= sizeof(rank->dimm->label))
Toshi Kani438470b2015-09-24 13:06:04 -0600230 return -EINVAL;
231
232 strncpy(rank->dimm->label, data, copy_count);
233 rank->dimm->label[copy_count] = '\0';
234
235 return count;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700236}
237
238/* show function for dynamic chX_ce_count attribute */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300239static ssize_t channel_ce_count_show(struct device *dev,
240 struct device_attribute *mattr, char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700241{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300242 struct csrow_info *csrow = to_csrow(dev);
243 unsigned chan = to_channel(mattr);
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300244 struct rank_info *rank = csrow->channels[chan];
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300245
246 return sprintf(data, "%u\n", rank->ce_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700247}
248
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300249/* cwrow<id>/attribute files */
250DEVICE_ATTR_LEGACY(size_mb, S_IRUGO, csrow_size_show, NULL);
251DEVICE_ATTR_LEGACY(dev_type, S_IRUGO, csrow_dev_type_show, NULL);
252DEVICE_ATTR_LEGACY(mem_type, S_IRUGO, csrow_mem_type_show, NULL);
253DEVICE_ATTR_LEGACY(edac_mode, S_IRUGO, csrow_edac_mode_show, NULL);
254DEVICE_ATTR_LEGACY(ue_count, S_IRUGO, csrow_ue_count_show, NULL);
255DEVICE_ATTR_LEGACY(ce_count, S_IRUGO, csrow_ce_count_show, NULL);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700256
257/* default attributes of the CSROW<id> object */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300258static struct attribute *csrow_attrs[] = {
259 &dev_attr_legacy_dev_type.attr,
260 &dev_attr_legacy_mem_type.attr,
261 &dev_attr_legacy_edac_mode.attr,
262 &dev_attr_legacy_size_mb.attr,
263 &dev_attr_legacy_ue_count.attr,
264 &dev_attr_legacy_ce_count.attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700265 NULL,
266};
267
Arvind Yadav1c18be52017-07-17 10:20:25 +0200268static const struct attribute_group csrow_attr_grp = {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300269 .attrs = csrow_attrs,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700270};
271
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300272static const struct attribute_group *csrow_attr_groups[] = {
273 &csrow_attr_grp,
274 NULL
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700275};
276
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300277static void csrow_attr_release(struct device *dev)
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300278{
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300279 struct csrow_info *csrow = container_of(dev, struct csrow_info, dev);
280
Joe Perches956b9ba2012-04-29 17:08:39 -0300281 edac_dbg(1, "Releasing csrow device %s\n", dev_name(dev));
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300282 kfree(csrow);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300283}
284
Bhumika Goyalb2b3e7362017-08-19 13:52:12 +0530285static const struct device_type csrow_attr_type = {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300286 .groups = csrow_attr_groups,
287 .release = csrow_attr_release,
288};
289
290/*
291 * possible dynamic channel DIMM Label attribute files
292 *
293 */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300294DEVICE_CHANNEL(ch0_dimm_label, S_IRUGO | S_IWUSR,
295 channel_dimm_label_show, channel_dimm_label_store, 0);
296DEVICE_CHANNEL(ch1_dimm_label, S_IRUGO | S_IWUSR,
297 channel_dimm_label_show, channel_dimm_label_store, 1);
298DEVICE_CHANNEL(ch2_dimm_label, S_IRUGO | S_IWUSR,
299 channel_dimm_label_show, channel_dimm_label_store, 2);
300DEVICE_CHANNEL(ch3_dimm_label, S_IRUGO | S_IWUSR,
301 channel_dimm_label_show, channel_dimm_label_store, 3);
302DEVICE_CHANNEL(ch4_dimm_label, S_IRUGO | S_IWUSR,
303 channel_dimm_label_show, channel_dimm_label_store, 4);
304DEVICE_CHANNEL(ch5_dimm_label, S_IRUGO | S_IWUSR,
305 channel_dimm_label_show, channel_dimm_label_store, 5);
Borislav Petkovbba14292016-06-10 10:28:38 +0200306DEVICE_CHANNEL(ch6_dimm_label, S_IRUGO | S_IWUSR,
307 channel_dimm_label_show, channel_dimm_label_store, 6);
308DEVICE_CHANNEL(ch7_dimm_label, S_IRUGO | S_IWUSR,
309 channel_dimm_label_show, channel_dimm_label_store, 7);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700310
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300311/* Total possible dynamic DIMM Label attribute file table */
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100312static struct attribute *dynamic_csrow_dimm_attr[] = {
313 &dev_attr_legacy_ch0_dimm_label.attr.attr,
314 &dev_attr_legacy_ch1_dimm_label.attr.attr,
315 &dev_attr_legacy_ch2_dimm_label.attr.attr,
316 &dev_attr_legacy_ch3_dimm_label.attr.attr,
317 &dev_attr_legacy_ch4_dimm_label.attr.attr,
318 &dev_attr_legacy_ch5_dimm_label.attr.attr,
Borislav Petkovbba14292016-06-10 10:28:38 +0200319 &dev_attr_legacy_ch6_dimm_label.attr.attr,
320 &dev_attr_legacy_ch7_dimm_label.attr.attr,
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100321 NULL
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300322};
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700323
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300324/* possible dynamic channel ce_count attribute files */
Srivatsa S. Bhatc8c64d12013-04-30 15:17:16 +0530325DEVICE_CHANNEL(ch0_ce_count, S_IRUGO,
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300326 channel_ce_count_show, NULL, 0);
Srivatsa S. Bhatc8c64d12013-04-30 15:17:16 +0530327DEVICE_CHANNEL(ch1_ce_count, S_IRUGO,
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300328 channel_ce_count_show, NULL, 1);
Srivatsa S. Bhatc8c64d12013-04-30 15:17:16 +0530329DEVICE_CHANNEL(ch2_ce_count, S_IRUGO,
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300330 channel_ce_count_show, NULL, 2);
Srivatsa S. Bhatc8c64d12013-04-30 15:17:16 +0530331DEVICE_CHANNEL(ch3_ce_count, S_IRUGO,
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300332 channel_ce_count_show, NULL, 3);
Srivatsa S. Bhatc8c64d12013-04-30 15:17:16 +0530333DEVICE_CHANNEL(ch4_ce_count, S_IRUGO,
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300334 channel_ce_count_show, NULL, 4);
Srivatsa S. Bhatc8c64d12013-04-30 15:17:16 +0530335DEVICE_CHANNEL(ch5_ce_count, S_IRUGO,
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300336 channel_ce_count_show, NULL, 5);
Borislav Petkovbba14292016-06-10 10:28:38 +0200337DEVICE_CHANNEL(ch6_ce_count, S_IRUGO,
338 channel_ce_count_show, NULL, 6);
339DEVICE_CHANNEL(ch7_ce_count, S_IRUGO,
340 channel_ce_count_show, NULL, 7);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700341
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300342/* Total possible dynamic ce_count attribute file table */
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100343static struct attribute *dynamic_csrow_ce_count_attr[] = {
344 &dev_attr_legacy_ch0_ce_count.attr.attr,
345 &dev_attr_legacy_ch1_ce_count.attr.attr,
346 &dev_attr_legacy_ch2_ce_count.attr.attr,
347 &dev_attr_legacy_ch3_ce_count.attr.attr,
348 &dev_attr_legacy_ch4_ce_count.attr.attr,
349 &dev_attr_legacy_ch5_ce_count.attr.attr,
Borislav Petkovbba14292016-06-10 10:28:38 +0200350 &dev_attr_legacy_ch6_ce_count.attr.attr,
351 &dev_attr_legacy_ch7_ce_count.attr.attr,
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100352 NULL
353};
354
355static umode_t csrow_dev_is_visible(struct kobject *kobj,
356 struct attribute *attr, int idx)
357{
358 struct device *dev = kobj_to_dev(kobj);
359 struct csrow_info *csrow = container_of(dev, struct csrow_info, dev);
360
361 if (idx >= csrow->nr_channels)
362 return 0;
Borislav Petkovbba14292016-06-10 10:28:38 +0200363
364 if (idx >= ARRAY_SIZE(dynamic_csrow_ce_count_attr) - 1) {
365 WARN_ONCE(1, "idx: %d\n", idx);
366 return 0;
367 }
368
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100369 /* Only expose populated DIMMs */
370 if (!csrow->channels[idx]->dimm->nr_pages)
371 return 0;
Borislav Petkovbba14292016-06-10 10:28:38 +0200372
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100373 return attr->mode;
374}
375
376
377static const struct attribute_group csrow_dev_dimm_group = {
378 .attrs = dynamic_csrow_dimm_attr,
379 .is_visible = csrow_dev_is_visible,
380};
381
382static const struct attribute_group csrow_dev_ce_count_group = {
383 .attrs = dynamic_csrow_ce_count_attr,
384 .is_visible = csrow_dev_is_visible,
385};
386
387static const struct attribute_group *csrow_dev_groups[] = {
388 &csrow_dev_dimm_group,
389 &csrow_dev_ce_count_group,
390 NULL
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700391};
392
Mauro Carvalho Chehabe39f4ea2012-03-29 12:20:22 -0300393static inline int nr_pages_per_csrow(struct csrow_info *csrow)
394{
395 int chan, nr_pages = 0;
396
397 for (chan = 0; chan < csrow->nr_channels; chan++)
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300398 nr_pages += csrow->channels[chan]->dimm->nr_pages;
Mauro Carvalho Chehabe39f4ea2012-03-29 12:20:22 -0300399
400 return nr_pages;
401}
402
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700403/* Create a CSROW object under specifed edac_mc_device */
Doug Thompson8096cfa2007-07-19 01:50:27 -0700404static int edac_create_csrow_object(struct mem_ctl_info *mci,
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300405 struct csrow_info *csrow, int index)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700406{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300407 csrow->dev.type = &csrow_attr_type;
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100408 csrow->dev.groups = csrow_dev_groups;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300409 device_initialize(&csrow->dev);
410 csrow->dev.parent = &mci->dev;
Borislav Petkov921a6892012-09-13 18:46:39 +0200411 csrow->mci = mci;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300412 dev_set_name(&csrow->dev, "csrow%d", index);
413 dev_set_drvdata(&csrow->dev, csrow);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700414
Joe Perches956b9ba2012-04-29 17:08:39 -0300415 edac_dbg(0, "creating (virtual) csrow node %s\n",
416 dev_name(&csrow->dev));
Doug Thompson8096cfa2007-07-19 01:50:27 -0700417
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100418 return device_add(&csrow->dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700419}
420
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300421/* Create a CSROW object under specifed edac_mc_device */
422static int edac_create_csrow_objects(struct mem_ctl_info *mci)
423{
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100424 int err, i;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300425 struct csrow_info *csrow;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700426
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300427 for (i = 0; i < mci->nr_csrows; i++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300428 csrow = mci->csrows[i];
Mauro Carvalho Chehabe39f4ea2012-03-29 12:20:22 -0300429 if (!nr_pages_per_csrow(csrow))
430 continue;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300431 err = edac_create_csrow_object(mci, mci->csrows[i], i);
Mauro Carvalho Chehab3d958822013-02-15 07:51:25 -0300432 if (err < 0) {
433 edac_dbg(1,
434 "failure: create csrow objects for csrow %d\n",
435 i);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300436 goto error;
Mauro Carvalho Chehab3d958822013-02-15 07:51:25 -0300437 }
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300438 }
439 return 0;
440
441error:
442 for (--i; i >= 0; i--) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300443 csrow = mci->csrows[i];
Mauro Carvalho Chehabe39f4ea2012-03-29 12:20:22 -0300444 if (!nr_pages_per_csrow(csrow))
445 continue;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300446 put_device(&mci->csrows[i]->dev);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300447 }
448
449 return err;
450}
451
452static void edac_delete_csrow_objects(struct mem_ctl_info *mci)
453{
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100454 int i;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300455 struct csrow_info *csrow;
456
457 for (i = mci->nr_csrows - 1; i >= 0; i--) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300458 csrow = mci->csrows[i];
Mauro Carvalho Chehabe39f4ea2012-03-29 12:20:22 -0300459 if (!nr_pages_per_csrow(csrow))
460 continue;
Lans Zhang44d22e22012-12-24 14:01:34 +0100461 device_unregister(&mci->csrows[i]->dev);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300462 }
463}
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300464#endif
465
466/*
467 * Per-dimm (or per-rank) devices
468 */
469
470#define to_dimm(k) container_of(k, struct dimm_info, dev)
471
472/* show/store functions for DIMM Label attributes */
473static ssize_t dimmdev_location_show(struct device *dev,
474 struct device_attribute *mattr, char *data)
475{
476 struct dimm_info *dimm = to_dimm(dev);
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300477
Mauro Carvalho Chehab6e84d352012-04-30 10:24:43 -0300478 return edac_dimm_info_location(dimm, data, PAGE_SIZE);
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300479}
480
481static ssize_t dimmdev_label_show(struct device *dev,
482 struct device_attribute *mattr, char *data)
483{
484 struct dimm_info *dimm = to_dimm(dev);
485
486 /* if field has not been initialized, there is nothing to send */
487 if (!dimm->label[0])
488 return 0;
489
Toshi Kani1ea62c52015-09-22 08:58:02 -0600490 return snprintf(data, sizeof(dimm->label) + 1, "%s\n", dimm->label);
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300491}
492
493static ssize_t dimmdev_label_store(struct device *dev,
494 struct device_attribute *mattr,
495 const char *data,
496 size_t count)
497{
498 struct dimm_info *dimm = to_dimm(dev);
Toshi Kani438470b2015-09-24 13:06:04 -0600499 size_t copy_count = count;
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300500
Toshi Kani438470b2015-09-24 13:06:04 -0600501 if (count == 0)
502 return -EINVAL;
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300503
Toshi Kani438470b2015-09-24 13:06:04 -0600504 if (data[count - 1] == '\0' || data[count - 1] == '\n')
505 copy_count -= 1;
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300506
Toshi Kanid0c9c932015-09-24 13:59:27 -0600507 if (copy_count == 0 || copy_count >= sizeof(dimm->label))
Toshi Kani438470b2015-09-24 13:06:04 -0600508 return -EINVAL;
509
510 strncpy(dimm->label, data, copy_count);
511 dimm->label[copy_count] = '\0';
512
513 return count;
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300514}
515
516static ssize_t dimmdev_size_show(struct device *dev,
517 struct device_attribute *mattr, char *data)
518{
519 struct dimm_info *dimm = to_dimm(dev);
520
521 return sprintf(data, "%u\n", PAGES_TO_MiB(dimm->nr_pages));
522}
523
524static ssize_t dimmdev_mem_type_show(struct device *dev,
525 struct device_attribute *mattr, char *data)
526{
527 struct dimm_info *dimm = to_dimm(dev);
528
Tony Luckd6dd77e2018-03-12 11:24:26 -0700529 return sprintf(data, "%s\n", edac_mem_types[dimm->mtype]);
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300530}
531
532static ssize_t dimmdev_dev_type_show(struct device *dev,
533 struct device_attribute *mattr, char *data)
534{
535 struct dimm_info *dimm = to_dimm(dev);
536
537 return sprintf(data, "%s\n", dev_types[dimm->dtype]);
538}
539
540static ssize_t dimmdev_edac_mode_show(struct device *dev,
541 struct device_attribute *mattr,
542 char *data)
543{
544 struct dimm_info *dimm = to_dimm(dev);
545
546 return sprintf(data, "%s\n", edac_caps[dimm->edac_mode]);
547}
548
Aaron Miller4fb6fde2016-11-03 15:01:53 -0700549static ssize_t dimmdev_ce_count_show(struct device *dev,
550 struct device_attribute *mattr,
551 char *data)
552{
553 struct dimm_info *dimm = to_dimm(dev);
554 u32 count;
555 int off;
556
557 off = EDAC_DIMM_OFF(dimm->mci->layers,
558 dimm->mci->n_layers,
559 dimm->location[0],
560 dimm->location[1],
561 dimm->location[2]);
562 count = dimm->mci->ce_per_layer[dimm->mci->n_layers-1][off];
563 return sprintf(data, "%u\n", count);
564}
565
566static ssize_t dimmdev_ue_count_show(struct device *dev,
567 struct device_attribute *mattr,
568 char *data)
569{
570 struct dimm_info *dimm = to_dimm(dev);
571 u32 count;
572 int off;
573
574 off = EDAC_DIMM_OFF(dimm->mci->layers,
575 dimm->mci->n_layers,
576 dimm->location[0],
577 dimm->location[1],
578 dimm->location[2]);
579 count = dimm->mci->ue_per_layer[dimm->mci->n_layers-1][off];
580 return sprintf(data, "%u\n", count);
581}
582
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300583/* dimm/rank attribute files */
584static DEVICE_ATTR(dimm_label, S_IRUGO | S_IWUSR,
585 dimmdev_label_show, dimmdev_label_store);
586static DEVICE_ATTR(dimm_location, S_IRUGO, dimmdev_location_show, NULL);
587static DEVICE_ATTR(size, S_IRUGO, dimmdev_size_show, NULL);
588static DEVICE_ATTR(dimm_mem_type, S_IRUGO, dimmdev_mem_type_show, NULL);
589static DEVICE_ATTR(dimm_dev_type, S_IRUGO, dimmdev_dev_type_show, NULL);
590static DEVICE_ATTR(dimm_edac_mode, S_IRUGO, dimmdev_edac_mode_show, NULL);
Aaron Miller4fb6fde2016-11-03 15:01:53 -0700591static DEVICE_ATTR(dimm_ce_count, S_IRUGO, dimmdev_ce_count_show, NULL);
592static DEVICE_ATTR(dimm_ue_count, S_IRUGO, dimmdev_ue_count_show, NULL);
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300593
594/* attributes of the dimm<id>/rank<id> object */
595static struct attribute *dimm_attrs[] = {
596 &dev_attr_dimm_label.attr,
597 &dev_attr_dimm_location.attr,
598 &dev_attr_size.attr,
599 &dev_attr_dimm_mem_type.attr,
600 &dev_attr_dimm_dev_type.attr,
601 &dev_attr_dimm_edac_mode.attr,
Aaron Miller4fb6fde2016-11-03 15:01:53 -0700602 &dev_attr_dimm_ce_count.attr,
603 &dev_attr_dimm_ue_count.attr,
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300604 NULL,
605};
606
Arvind Yadav1c18be52017-07-17 10:20:25 +0200607static const struct attribute_group dimm_attr_grp = {
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300608 .attrs = dimm_attrs,
609};
610
611static const struct attribute_group *dimm_attr_groups[] = {
612 &dimm_attr_grp,
613 NULL
614};
615
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300616static void dimm_attr_release(struct device *dev)
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300617{
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300618 struct dimm_info *dimm = container_of(dev, struct dimm_info, dev);
619
Joe Perches956b9ba2012-04-29 17:08:39 -0300620 edac_dbg(1, "Releasing dimm device %s\n", dev_name(dev));
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300621 kfree(dimm);
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300622}
623
Bhumika Goyalb2b3e7362017-08-19 13:52:12 +0530624static const struct device_type dimm_attr_type = {
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300625 .groups = dimm_attr_groups,
626 .release = dimm_attr_release,
627};
628
629/* Create a DIMM object under specifed memory controller device */
630static int edac_create_dimm_object(struct mem_ctl_info *mci,
631 struct dimm_info *dimm,
632 int index)
633{
634 int err;
635 dimm->mci = mci;
636
637 dimm->dev.type = &dimm_attr_type;
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300638 device_initialize(&dimm->dev);
639
640 dimm->dev.parent = &mci->dev;
Mauro Carvalho Chehab9713fae2013-03-11 09:28:48 -0300641 if (mci->csbased)
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300642 dev_set_name(&dimm->dev, "rank%d", index);
643 else
644 dev_set_name(&dimm->dev, "dimm%d", index);
645 dev_set_drvdata(&dimm->dev, dimm);
646 pm_runtime_forbid(&mci->dev);
647
648 err = device_add(&dimm->dev);
649
Joe Perches956b9ba2012-04-29 17:08:39 -0300650 edac_dbg(0, "creating rank/dimm device %s\n", dev_name(&dimm->dev));
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300651
652 return err;
653}
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300654
655/*
656 * Memory controller device
657 */
658
659#define to_mci(k) container_of(k, struct mem_ctl_info, dev)
660
661static ssize_t mci_reset_counters_store(struct device *dev,
662 struct device_attribute *mattr,
Douglas Thompson079708b2007-07-19 01:49:58 -0700663 const char *data, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700664{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300665 struct mem_ctl_info *mci = to_mci(dev);
666 int cnt, row, chan, i;
Mauro Carvalho Chehab5926ff52012-02-09 11:05:20 -0300667 mci->ue_mc = 0;
668 mci->ce_mc = 0;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300669 mci->ue_noinfo_count = 0;
670 mci->ce_noinfo_count = 0;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700671
672 for (row = 0; row < mci->nr_csrows; row++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300673 struct csrow_info *ri = mci->csrows[row];
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700674
675 ri->ue_count = 0;
676 ri->ce_count = 0;
677
678 for (chan = 0; chan < ri->nr_channels; chan++)
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300679 ri->channels[chan]->ce_count = 0;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700680 }
681
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300682 cnt = 1;
683 for (i = 0; i < mci->n_layers; i++) {
684 cnt *= mci->layers[i].size;
685 memset(mci->ce_per_layer[i], 0, cnt * sizeof(u32));
686 memset(mci->ue_per_layer[i], 0, cnt * sizeof(u32));
687 }
688
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700689 mci->start_time = jiffies;
690 return count;
691}
692
Borislav Petkov39094442010-11-24 19:52:09 +0100693/* Memory scrubbing interface:
694 *
695 * A MC driver can limit the scrubbing bandwidth based on the CPU type.
696 * Therefore, ->set_sdram_scrub_rate should be made to return the actual
697 * bandwidth that is accepted or 0 when scrubbing is to be disabled.
698 *
699 * Negative value still means that an error has occurred while setting
700 * the scrub rate.
701 */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300702static ssize_t mci_sdram_scrub_rate_store(struct device *dev,
703 struct device_attribute *mattr,
Borislav Petkoveba042a2010-05-25 18:21:07 +0200704 const char *data, size_t count)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700705{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300706 struct mem_ctl_info *mci = to_mci(dev);
Borislav Petkoveba042a2010-05-25 18:21:07 +0200707 unsigned long bandwidth = 0;
Borislav Petkov39094442010-11-24 19:52:09 +0100708 int new_bw = 0;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700709
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900710 if (kstrtoul(data, 10, &bandwidth) < 0)
Borislav Petkoveba042a2010-05-25 18:21:07 +0200711 return -EINVAL;
712
Borislav Petkov39094442010-11-24 19:52:09 +0100713 new_bw = mci->set_sdram_scrub_rate(mci, bandwidth);
Markus Trippelsdorf49496032011-04-20 14:28:45 -0400714 if (new_bw < 0) {
715 edac_printk(KERN_WARNING, EDAC_MC,
716 "Error setting scrub rate to: %lu\n", bandwidth);
717 return -EINVAL;
Borislav Petkoveba042a2010-05-25 18:21:07 +0200718 }
Borislav Petkov39094442010-11-24 19:52:09 +0100719
Markus Trippelsdorf49496032011-04-20 14:28:45 -0400720 return count;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700721}
722
Borislav Petkov39094442010-11-24 19:52:09 +0100723/*
724 * ->get_sdram_scrub_rate() return value semantics same as above.
725 */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300726static ssize_t mci_sdram_scrub_rate_show(struct device *dev,
727 struct device_attribute *mattr,
728 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700729{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300730 struct mem_ctl_info *mci = to_mci(dev);
Borislav Petkov39094442010-11-24 19:52:09 +0100731 int bandwidth = 0;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700732
Borislav Petkov39094442010-11-24 19:52:09 +0100733 bandwidth = mci->get_sdram_scrub_rate(mci);
734 if (bandwidth < 0) {
735 edac_printk(KERN_DEBUG, EDAC_MC, "Error reading scrub rate\n");
736 return bandwidth;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700737 }
Borislav Petkoveba042a2010-05-25 18:21:07 +0200738
Borislav Petkov39094442010-11-24 19:52:09 +0100739 return sprintf(data, "%d\n", bandwidth);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700740}
741
742/* default attribute files for the MCI object */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300743static ssize_t mci_ue_count_show(struct device *dev,
744 struct device_attribute *mattr,
745 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700746{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300747 struct mem_ctl_info *mci = to_mci(dev);
748
Mauro Carvalho Chehab5926ff52012-02-09 11:05:20 -0300749 return sprintf(data, "%d\n", mci->ue_mc);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700750}
751
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300752static ssize_t mci_ce_count_show(struct device *dev,
753 struct device_attribute *mattr,
754 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700755{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300756 struct mem_ctl_info *mci = to_mci(dev);
757
Mauro Carvalho Chehab5926ff52012-02-09 11:05:20 -0300758 return sprintf(data, "%d\n", mci->ce_mc);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700759}
760
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300761static ssize_t mci_ce_noinfo_show(struct device *dev,
762 struct device_attribute *mattr,
763 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700764{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300765 struct mem_ctl_info *mci = to_mci(dev);
766
Douglas Thompson079708b2007-07-19 01:49:58 -0700767 return sprintf(data, "%d\n", mci->ce_noinfo_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700768}
769
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300770static ssize_t mci_ue_noinfo_show(struct device *dev,
771 struct device_attribute *mattr,
772 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700773{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300774 struct mem_ctl_info *mci = to_mci(dev);
775
Douglas Thompson079708b2007-07-19 01:49:58 -0700776 return sprintf(data, "%d\n", mci->ue_noinfo_count);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700777}
778
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300779static ssize_t mci_seconds_show(struct device *dev,
780 struct device_attribute *mattr,
781 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700782{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300783 struct mem_ctl_info *mci = to_mci(dev);
784
Douglas Thompson079708b2007-07-19 01:49:58 -0700785 return sprintf(data, "%ld\n", (jiffies - mci->start_time) / HZ);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700786}
787
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300788static ssize_t mci_ctl_name_show(struct device *dev,
789 struct device_attribute *mattr,
790 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700791{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300792 struct mem_ctl_info *mci = to_mci(dev);
793
Douglas Thompson079708b2007-07-19 01:49:58 -0700794 return sprintf(data, "%s\n", mci->ctl_name);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700795}
796
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300797static ssize_t mci_size_mb_show(struct device *dev,
798 struct device_attribute *mattr,
799 char *data)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700800{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300801 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300802 int total_pages = 0, csrow_idx, j;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700803
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300804 for (csrow_idx = 0; csrow_idx < mci->nr_csrows; csrow_idx++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300805 struct csrow_info *csrow = mci->csrows[csrow_idx];
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700806
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -0300807 for (j = 0; j < csrow->nr_channels; j++) {
808 struct dimm_info *dimm = csrow->channels[j]->dimm;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700809
Mauro Carvalho Chehab1eef1282013-03-11 09:07:46 -0300810 total_pages += dimm->nr_pages;
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300811 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700812 }
813
Douglas Thompson079708b2007-07-19 01:49:58 -0700814 return sprintf(data, "%u\n", PAGES_TO_MiB(total_pages));
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700815}
816
Mauro Carvalho Chehab8ad6c782012-03-21 17:13:24 -0300817static ssize_t mci_max_location_show(struct device *dev,
818 struct device_attribute *mattr,
819 char *data)
820{
821 struct mem_ctl_info *mci = to_mci(dev);
822 int i;
823 char *p = data;
824
825 for (i = 0; i < mci->n_layers; i++) {
826 p += sprintf(p, "%s %d ",
827 edac_layer_name[mci->layers[i].type],
828 mci->layers[i].size - 1);
829 }
830
831 return p - data;
832}
833
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700834/* default Control file */
Borislav Petkovf11135d2015-01-30 14:49:04 +0100835static DEVICE_ATTR(reset_counters, S_IWUSR, NULL, mci_reset_counters_store);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700836
837/* default Attribute files */
Borislav Petkovf11135d2015-01-30 14:49:04 +0100838static DEVICE_ATTR(mc_name, S_IRUGO, mci_ctl_name_show, NULL);
839static DEVICE_ATTR(size_mb, S_IRUGO, mci_size_mb_show, NULL);
840static DEVICE_ATTR(seconds_since_reset, S_IRUGO, mci_seconds_show, NULL);
841static DEVICE_ATTR(ue_noinfo_count, S_IRUGO, mci_ue_noinfo_show, NULL);
842static DEVICE_ATTR(ce_noinfo_count, S_IRUGO, mci_ce_noinfo_show, NULL);
843static DEVICE_ATTR(ue_count, S_IRUGO, mci_ue_count_show, NULL);
844static DEVICE_ATTR(ce_count, S_IRUGO, mci_ce_count_show, NULL);
845static DEVICE_ATTR(max_location, S_IRUGO, mci_max_location_show, NULL);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700846
847/* memory scrubber attribute file */
Ben Dooks628ea922016-06-08 18:35:56 +0100848static DEVICE_ATTR(sdram_scrub_rate, 0, mci_sdram_scrub_rate_show,
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100849 mci_sdram_scrub_rate_store); /* umode set later in is_visible */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700850
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300851static struct attribute *mci_attrs[] = {
852 &dev_attr_reset_counters.attr,
853 &dev_attr_mc_name.attr,
854 &dev_attr_size_mb.attr,
855 &dev_attr_seconds_since_reset.attr,
856 &dev_attr_ue_noinfo_count.attr,
857 &dev_attr_ce_noinfo_count.attr,
858 &dev_attr_ue_count.attr,
859 &dev_attr_ce_count.attr,
Mauro Carvalho Chehab8ad6c782012-03-21 17:13:24 -0300860 &dev_attr_max_location.attr,
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100861 &dev_attr_sdram_scrub_rate.attr,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700862 NULL
863};
864
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100865static umode_t mci_attr_is_visible(struct kobject *kobj,
866 struct attribute *attr, int idx)
867{
868 struct device *dev = kobj_to_dev(kobj);
869 struct mem_ctl_info *mci = to_mci(dev);
870 umode_t mode = 0;
871
872 if (attr != &dev_attr_sdram_scrub_rate.attr)
873 return attr->mode;
874 if (mci->get_sdram_scrub_rate)
875 mode |= S_IRUGO;
876 if (mci->set_sdram_scrub_rate)
877 mode |= S_IWUSR;
878 return mode;
879}
880
Arvind Yadav1c18be52017-07-17 10:20:25 +0200881static const struct attribute_group mci_attr_grp = {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300882 .attrs = mci_attrs,
Takashi Iwai2c1946b2015-02-04 11:48:51 +0100883 .is_visible = mci_attr_is_visible,
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700884};
885
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300886static const struct attribute_group *mci_attr_groups[] = {
887 &mci_attr_grp,
888 NULL
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300889};
890
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300891static void mci_attr_release(struct device *dev)
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300892{
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300893 struct mem_ctl_info *mci = container_of(dev, struct mem_ctl_info, dev);
894
Joe Perches956b9ba2012-04-29 17:08:39 -0300895 edac_dbg(1, "Releasing csrow device %s\n", dev_name(dev));
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300896 kfree(mci);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300897}
898
Bhumika Goyalb2b3e7362017-08-19 13:52:12 +0530899static const struct device_type mci_attr_type = {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300900 .groups = mci_attr_groups,
901 .release = mci_attr_release,
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300902};
903
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700904/*
905 * Create a new Memory Controller kobject instance,
906 * mc<id> under the 'mc' directory
907 *
908 * Return:
909 * 0 Success
910 * !0 Failure
911 */
Takashi Iwai4e8d2302015-02-04 11:48:52 +0100912int edac_create_sysfs_mci_device(struct mem_ctl_info *mci,
913 const struct attribute_group **groups)
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700914{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300915 int i, err;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700916
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300917 /* get the /sys/devices/system/edac subsys reference */
918 mci->dev.type = &mci_attr_type;
919 device_initialize(&mci->dev);
920
921 mci->dev.parent = mci_pdev;
Takashi Iwai4e8d2302015-02-04 11:48:52 +0100922 mci->dev.groups = groups;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300923 dev_set_name(&mci->dev, "mc%d", mci->mc_idx);
924 dev_set_drvdata(&mci->dev, mci);
925 pm_runtime_forbid(&mci->dev);
926
Joe Perches956b9ba2012-04-29 17:08:39 -0300927 edac_dbg(0, "creating device %s\n", dev_name(&mci->dev));
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300928 err = device_add(&mci->dev);
929 if (err < 0) {
Mauro Carvalho Chehab3d958822013-02-15 07:51:25 -0300930 edac_dbg(1, "failure: create device %s\n", dev_name(&mci->dev));
Borislav Petkov861e6ed2018-11-06 12:35:21 +0100931 goto out;
Douglas Thompson42a8e392007-07-19 01:50:10 -0700932 }
933
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300934 /*
935 * Create the dimm/rank devices
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700936 */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300937 for (i = 0; i < mci->tot_dimms; i++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300938 struct dimm_info *dimm = mci->dimms[i];
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300939 /* Only expose populated DIMMs */
Junjie Mao1bf19502015-01-29 09:13:55 +0800940 if (!dimm->nr_pages)
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300941 continue;
Junjie Mao1bf19502015-01-29 09:13:55 +0800942
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300943#ifdef CONFIG_EDAC_DEBUG
Joe Perches956b9ba2012-04-29 17:08:39 -0300944 edac_dbg(1, "creating dimm%d, located at ", i);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300945 if (edac_debug_level >= 1) {
946 int lay;
947 for (lay = 0; lay < mci->n_layers; lay++)
948 printk(KERN_CONT "%s %d ",
949 edac_layer_name[mci->layers[lay].type],
950 dimm->location[lay]);
951 printk(KERN_CONT "\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700952 }
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300953#endif
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300954 err = edac_create_dimm_object(mci, dimm, i);
955 if (err) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300956 edac_dbg(1, "failure: create dimm %d obj\n", i);
Junjie Mao1bf19502015-01-29 09:13:55 +0800957 goto fail_unregister_dimm;
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300958 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700959 }
960
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300961#ifdef CONFIG_EDAC_LEGACY_SYSFS
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300962 err = edac_create_csrow_objects(mci);
963 if (err < 0)
Junjie Mao1bf19502015-01-29 09:13:55 +0800964 goto fail_unregister_dimm;
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300965#endif
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300966
Borislav Petkov7ac8bf92015-09-22 11:56:04 +0200967 edac_create_debugfs_nodes(mci);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700968 return 0;
969
Junjie Mao1bf19502015-01-29 09:13:55 +0800970fail_unregister_dimm:
Douglas Thompson079708b2007-07-19 01:49:58 -0700971 for (i--; i >= 0; i--) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300972 struct dimm_info *dimm = mci->dimms[i];
Junjie Mao1bf19502015-01-29 09:13:55 +0800973 if (!dimm->nr_pages)
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300974 continue;
Junjie Mao1bf19502015-01-29 09:13:55 +0800975
Lans Zhang44d22e22012-12-24 14:01:34 +0100976 device_unregister(&dimm->dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700977 }
Lans Zhang44d22e22012-12-24 14:01:34 +0100978 device_unregister(&mci->dev);
Borislav Petkov12e26962015-12-01 15:52:36 +0100979
Borislav Petkov861e6ed2018-11-06 12:35:21 +0100980out:
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700981 return err;
982}
983
984/*
985 * remove a Memory Controller instance
986 */
987void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci)
988{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300989 int i;
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700990
Joe Perches956b9ba2012-04-29 17:08:39 -0300991 edac_dbg(0, "\n");
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700992
Mauro Carvalho Chehab452a6bf2012-03-26 09:35:11 -0300993#ifdef CONFIG_EDAC_DEBUG
Tan Xiaojun30f84a82015-10-14 09:49:24 +0800994 edac_debugfs_remove_recursive(mci->debugfs);
Mauro Carvalho Chehab452a6bf2012-03-26 09:35:11 -0300995#endif
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300996#ifdef CONFIG_EDAC_LEGACY_SYSFS
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300997 edac_delete_csrow_objects(mci);
Mauro Carvalho Chehab19974712012-03-21 17:06:53 -0300998#endif
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300999
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001000 for (i = 0; i < mci->tot_dimms; i++) {
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03001001 struct dimm_info *dimm = mci->dimms[i];
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001002 if (dimm->nr_pages == 0)
1003 continue;
Joe Perches956b9ba2012-04-29 17:08:39 -03001004 edac_dbg(0, "removing device %s\n", dev_name(&dimm->dev));
Lans Zhang44d22e22012-12-24 14:01:34 +01001005 device_unregister(&dimm->dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -07001006 }
Douglas Thompson7c9281d2007-07-19 01:49:33 -07001007}
Doug Thompson8096cfa2007-07-19 01:50:27 -07001008
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001009void edac_unregister_sysfs(struct mem_ctl_info *mci)
Doug Thompson8096cfa2007-07-19 01:50:27 -07001010{
Joe Perches956b9ba2012-04-29 17:08:39 -03001011 edac_dbg(1, "Unregistering device %s\n", dev_name(&mci->dev));
Lans Zhang44d22e22012-12-24 14:01:34 +01001012 device_unregister(&mci->dev);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001013}
Doug Thompson8096cfa2007-07-19 01:50:27 -07001014
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03001015static void mc_attr_release(struct device *dev)
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001016{
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03001017 /*
1018 * There's no container structure here, as this is just the mci
1019 * parent device, used to create the /sys/devices/mc sysfs node.
1020 * So, there are no attributes on it.
1021 */
Joe Perches956b9ba2012-04-29 17:08:39 -03001022 edac_dbg(1, "Releasing device %s\n", dev_name(dev));
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03001023 kfree(dev);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001024}
1025
Bhumika Goyalb2b3e7362017-08-19 13:52:12 +05301026static const struct device_type mc_attr_type = {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001027 .release = mc_attr_release,
1028};
1029/*
1030 * Init/exit code for the module. Basically, creates/removes /sys/class/rc
1031 */
1032int __init edac_mc_sysfs_init(void)
1033{
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001034 int err;
Doug Thompson8096cfa2007-07-19 01:50:27 -07001035
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03001036 mci_pdev = kzalloc(sizeof(*mci_pdev), GFP_KERNEL);
Denis Kirjanov2d56b102012-10-25 19:42:58 +04001037 if (!mci_pdev) {
1038 err = -ENOMEM;
Borislav Petkov733476c2015-11-27 11:40:43 +01001039 goto out;
Denis Kirjanov2d56b102012-10-25 19:42:58 +04001040 }
Doug Thompson8096cfa2007-07-19 01:50:27 -07001041
Borislav Petkovd4538002015-11-30 14:20:41 +01001042 mci_pdev->bus = edac_get_sysfs_subsys();
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03001043 mci_pdev->type = &mc_attr_type;
1044 device_initialize(mci_pdev);
1045 dev_set_name(mci_pdev, "mc");
1046
1047 err = device_add(mci_pdev);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -03001048 if (err < 0)
Johan Hovold4708aa82018-06-12 14:43:34 +02001049 goto out_put_device;
Doug Thompson8096cfa2007-07-19 01:50:27 -07001050
Joe Perches956b9ba2012-04-29 17:08:39 -03001051 edac_dbg(0, "device %s created\n", dev_name(mci_pdev));
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -03001052
Doug Thompson8096cfa2007-07-19 01:50:27 -07001053 return 0;
Denis Kirjanov2d56b102012-10-25 19:42:58 +04001054
Johan Hovold4708aa82018-06-12 14:43:34 +02001055 out_put_device:
1056 put_device(mci_pdev);
Denis Kirjanov2d56b102012-10-25 19:42:58 +04001057 out:
1058 return err;
Doug Thompson8096cfa2007-07-19 01:50:27 -07001059}
1060
Alexey Khoroshilovc6b97bc2015-02-05 22:12:42 -08001061void edac_mc_sysfs_exit(void)
Doug Thompson8096cfa2007-07-19 01:50:27 -07001062{
Lans Zhang44d22e22012-12-24 14:01:34 +01001063 device_unregister(mci_pdev);
Doug Thompson8096cfa2007-07-19 01:50:27 -07001064}