Merge tag 'xfs-for-linus-4.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / drivers / edac / amd64_edac_inj.c
CommitLineData
eb919690
DT
1#include "amd64_edac.h"
2
c5608759
MCC
3static ssize_t amd64_inject_section_show(struct device *dev,
4 struct device_attribute *mattr,
5 char *buf)
94baaee4 6{
c5608759 7 struct mem_ctl_info *mci = to_mci(dev);
94baaee4
BP
8 struct amd64_pvt *pvt = mci->pvt_info;
9 return sprintf(buf, "0x%x\n", pvt->injection.section);
10}
11
eb919690
DT
12/*
13 * store error injection section value which refers to one of 4 16-byte sections
14 * within a 64-byte cacheline
15 *
16 * range: 0..3
17 */
c5608759
MCC
18static ssize_t amd64_inject_section_store(struct device *dev,
19 struct device_attribute *mattr,
eb919690
DT
20 const char *data, size_t count)
21{
c5608759 22 struct mem_ctl_info *mci = to_mci(dev);
eb919690
DT
23 struct amd64_pvt *pvt = mci->pvt_info;
24 unsigned long value;
6e71a870 25 int ret;
eb919690 26
c7f62fc8 27 ret = kstrtoul(data, 10, &value);
6e71a870
BP
28 if (ret < 0)
29 return ret;
94baaee4 30
6e71a870
BP
31 if (value > 3) {
32 amd64_warn("%s: invalid section 0x%lx\n", __func__, value);
33 return -EINVAL;
eb919690 34 }
6e71a870
BP
35
36 pvt->injection.section = (u32) value;
37 return count;
eb919690
DT
38}
39
c5608759
MCC
40static ssize_t amd64_inject_word_show(struct device *dev,
41 struct device_attribute *mattr,
42 char *buf)
94baaee4 43{
c5608759 44 struct mem_ctl_info *mci = to_mci(dev);
94baaee4
BP
45 struct amd64_pvt *pvt = mci->pvt_info;
46 return sprintf(buf, "0x%x\n", pvt->injection.word);
47}
48
eb919690
DT
49/*
50 * store error injection word value which refers to one of 9 16-bit word of the
51 * 16-byte (128-bit + ECC bits) section
52 *
53 * range: 0..8
54 */
c5608759
MCC
55static ssize_t amd64_inject_word_store(struct device *dev,
56 struct device_attribute *mattr,
57 const char *data, size_t count)
eb919690 58{
c5608759 59 struct mem_ctl_info *mci = to_mci(dev);
eb919690
DT
60 struct amd64_pvt *pvt = mci->pvt_info;
61 unsigned long value;
6e71a870 62 int ret;
eb919690 63
c7f62fc8 64 ret = kstrtoul(data, 10, &value);
6e71a870
BP
65 if (ret < 0)
66 return ret;
eb919690 67
6e71a870
BP
68 if (value > 8) {
69 amd64_warn("%s: invalid word 0x%lx\n", __func__, value);
70 return -EINVAL;
eb919690 71 }
6e71a870
BP
72
73 pvt->injection.word = (u32) value;
74 return count;
eb919690
DT
75}
76
c5608759
MCC
77static ssize_t amd64_inject_ecc_vector_show(struct device *dev,
78 struct device_attribute *mattr,
79 char *buf)
94baaee4 80{
c5608759 81 struct mem_ctl_info *mci = to_mci(dev);
94baaee4
BP
82 struct amd64_pvt *pvt = mci->pvt_info;
83 return sprintf(buf, "0x%x\n", pvt->injection.bit_map);
84}
85
eb919690
DT
86/*
87 * store 16 bit error injection vector which enables injecting errors to the
88 * corresponding bit within the error injection word above. When used during a
89 * DRAM ECC read, it holds the contents of the of the DRAM ECC bits.
90 */
c5608759
MCC
91static ssize_t amd64_inject_ecc_vector_store(struct device *dev,
92 struct device_attribute *mattr,
93 const char *data, size_t count)
eb919690 94{
c5608759 95 struct mem_ctl_info *mci = to_mci(dev);
eb919690
DT
96 struct amd64_pvt *pvt = mci->pvt_info;
97 unsigned long value;
6e71a870 98 int ret;
eb919690 99
c7f62fc8 100 ret = kstrtoul(data, 16, &value);
6e71a870
BP
101 if (ret < 0)
102 return ret;
eb919690 103
6e71a870
BP
104 if (value & 0xFFFF0000) {
105 amd64_warn("%s: invalid EccVector: 0x%lx\n", __func__, value);
106 return -EINVAL;
eb919690 107 }
6e71a870
BP
108
109 pvt->injection.bit_map = (u32) value;
110 return count;
eb919690
DT
111}
112
113/*
114 * Do a DRAM ECC read. Assemble staged values in the pvt area, format into
115 * fields needed by the injection registers and read the NB Array Data Port.
116 */
c5608759
MCC
117static ssize_t amd64_inject_read_store(struct device *dev,
118 struct device_attribute *mattr,
119 const char *data, size_t count)
eb919690 120{
c5608759 121 struct mem_ctl_info *mci = to_mci(dev);
eb919690
DT
122 struct amd64_pvt *pvt = mci->pvt_info;
123 unsigned long value;
124 u32 section, word_bits;
6e71a870 125 int ret;
eb919690 126
c7f62fc8 127 ret = kstrtoul(data, 10, &value);
6e71a870
BP
128 if (ret < 0)
129 return ret;
eb919690 130
6e71a870
BP
131 /* Form value to choose 16-byte section of cacheline */
132 section = F10_NB_ARRAY_DRAM | SET_NB_ARRAY_ADDR(pvt->injection.section);
eb919690 133
6e71a870 134 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_ADDR, section);
eb919690 135
6e71a870 136 word_bits = SET_NB_DRAM_INJECTION_READ(pvt->injection);
eb919690 137
6e71a870
BP
138 /* Issue 'word' and 'bit' along with the READ request */
139 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, word_bits);
eb919690 140
6e71a870
BP
141 edac_dbg(0, "section=0x%x word_bits=0x%x\n", section, word_bits);
142
143 return count;
eb919690
DT
144}
145
146/*
147 * Do a DRAM ECC write. Assemble staged values in the pvt area and format into
148 * fields needed by the injection registers.
149 */
c5608759
MCC
150static ssize_t amd64_inject_write_store(struct device *dev,
151 struct device_attribute *mattr,
eb919690
DT
152 const char *data, size_t count)
153{
c5608759 154 struct mem_ctl_info *mci = to_mci(dev);
eb919690 155 struct amd64_pvt *pvt = mci->pvt_info;
66fed2d4 156 u32 section, word_bits, tmp;
eb919690 157 unsigned long value;
6e71a870 158 int ret;
eb919690 159
c7f62fc8 160 ret = kstrtoul(data, 10, &value);
6e71a870
BP
161 if (ret < 0)
162 return ret;
eb919690 163
6e71a870
BP
164 /* Form value to choose 16-byte section of cacheline */
165 section = F10_NB_ARRAY_DRAM | SET_NB_ARRAY_ADDR(pvt->injection.section);
eb919690 166
6e71a870 167 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_ADDR, section);
eb919690 168
6e71a870 169 word_bits = SET_NB_DRAM_INJECTION_WRITE(pvt->injection);
eb919690 170
66fed2d4
BP
171 pr_notice_once("Don't forget to decrease MCE polling interval in\n"
172 "/sys/bus/machinecheck/devices/machinecheck<CPUNUM>/check_interval\n"
173 "so that you can get the error report faster.\n");
174
175 on_each_cpu(disable_caches, NULL, 1);
176
6e71a870
BP
177 /* Issue 'word' and 'bit' along with the READ request */
178 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, word_bits);
eb919690 179
66fed2d4
BP
180 retry:
181 /* wait until injection happens */
182 amd64_read_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, &tmp);
183 if (tmp & F10_NB_ARR_ECC_WR_REQ) {
184 cpu_relax();
185 goto retry;
186 }
187
188 on_each_cpu(enable_caches, NULL, 1);
189
6e71a870
BP
190 edac_dbg(0, "section=0x%x word_bits=0x%x\n", section, word_bits);
191
192 return count;
eb919690
DT
193}
194
195/*
196 * update NUM_INJ_ATTRS in case you add new members
197 */
c5608759
MCC
198
199static DEVICE_ATTR(inject_section, S_IRUGO | S_IWUSR,
200 amd64_inject_section_show, amd64_inject_section_store);
201static DEVICE_ATTR(inject_word, S_IRUGO | S_IWUSR,
202 amd64_inject_word_show, amd64_inject_word_store);
203static DEVICE_ATTR(inject_ecc_vector, S_IRUGO | S_IWUSR,
204 amd64_inject_ecc_vector_show, amd64_inject_ecc_vector_store);
bbb013b9 205static DEVICE_ATTR(inject_write, S_IWUSR,
c5608759 206 NULL, amd64_inject_write_store);
bbb013b9 207static DEVICE_ATTR(inject_read, S_IWUSR,
c5608759
MCC
208 NULL, amd64_inject_read_store);
209
e339f1ec
TI
210static struct attribute *amd64_edac_inj_attrs[] = {
211 &dev_attr_inject_section.attr,
212 &dev_attr_inject_word.attr,
213 &dev_attr_inject_ecc_vector.attr,
214 &dev_attr_inject_write.attr,
215 &dev_attr_inject_read.attr,
216 NULL
217};
218
219static umode_t amd64_edac_inj_is_visible(struct kobject *kobj,
220 struct attribute *attr, int idx)
c5608759 221{
e339f1ec
TI
222 struct device *dev = kobj_to_dev(kobj);
223 struct mem_ctl_info *mci = container_of(dev, struct mem_ctl_info, dev);
224 struct amd64_pvt *pvt = mci->pvt_info;
c5608759 225
e339f1ec
TI
226 if (pvt->fam < 0x10)
227 return 0;
228 return attr->mode;
c5608759 229}
e339f1ec
TI
230
231const struct attribute_group amd64_edac_inj_group = {
232 .attrs = amd64_edac_inj_attrs,
233 .is_visible = amd64_edac_inj_is_visible,
234};