mfd: Copy the device pointer to the twl4030-madc structure
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / edac / amd64_edac_inj.c
blob303f10e03dda946b5aebce3c82c1f07b564ca53b
1 #include "amd64_edac.h"
3 static ssize_t amd64_inject_section_show(struct mem_ctl_info *mci, char *buf)
5 struct amd64_pvt *pvt = mci->pvt_info;
6 return sprintf(buf, "0x%x\n", pvt->injection.section);
9 /*
10 * store error injection section value which refers to one of 4 16-byte sections
11 * within a 64-byte cacheline
13 * range: 0..3
15 static ssize_t amd64_inject_section_store(struct mem_ctl_info *mci,
16 const char *data, size_t count)
18 struct amd64_pvt *pvt = mci->pvt_info;
19 unsigned long value;
20 int ret = 0;
22 ret = strict_strtoul(data, 10, &value);
23 if (ret != -EINVAL) {
25 if (value > 3) {
26 amd64_warn("%s: invalid section 0x%lx\n", __func__, value);
27 return -EINVAL;
30 pvt->injection.section = (u32) value;
31 return count;
33 return ret;
36 static ssize_t amd64_inject_word_show(struct mem_ctl_info *mci, char *buf)
38 struct amd64_pvt *pvt = mci->pvt_info;
39 return sprintf(buf, "0x%x\n", pvt->injection.word);
43 * store error injection word value which refers to one of 9 16-bit word of the
44 * 16-byte (128-bit + ECC bits) section
46 * range: 0..8
48 static ssize_t amd64_inject_word_store(struct mem_ctl_info *mci,
49 const char *data, size_t count)
51 struct amd64_pvt *pvt = mci->pvt_info;
52 unsigned long value;
53 int ret = 0;
55 ret = strict_strtoul(data, 10, &value);
56 if (ret != -EINVAL) {
58 if (value > 8) {
59 amd64_warn("%s: invalid word 0x%lx\n", __func__, value);
60 return -EINVAL;
63 pvt->injection.word = (u32) value;
64 return count;
66 return ret;
69 static ssize_t amd64_inject_ecc_vector_show(struct mem_ctl_info *mci, char *buf)
71 struct amd64_pvt *pvt = mci->pvt_info;
72 return sprintf(buf, "0x%x\n", pvt->injection.bit_map);
76 * store 16 bit error injection vector which enables injecting errors to the
77 * corresponding bit within the error injection word above. When used during a
78 * DRAM ECC read, it holds the contents of the of the DRAM ECC bits.
80 static ssize_t amd64_inject_ecc_vector_store(struct mem_ctl_info *mci,
81 const char *data, size_t count)
83 struct amd64_pvt *pvt = mci->pvt_info;
84 unsigned long value;
85 int ret = 0;
87 ret = strict_strtoul(data, 16, &value);
88 if (ret != -EINVAL) {
90 if (value & 0xFFFF0000) {
91 amd64_warn("%s: invalid EccVector: 0x%lx\n",
92 __func__, value);
93 return -EINVAL;
96 pvt->injection.bit_map = (u32) value;
97 return count;
99 return ret;
103 * Do a DRAM ECC read. Assemble staged values in the pvt area, format into
104 * fields needed by the injection registers and read the NB Array Data Port.
106 static ssize_t amd64_inject_read_store(struct mem_ctl_info *mci,
107 const char *data, size_t count)
109 struct amd64_pvt *pvt = mci->pvt_info;
110 unsigned long value;
111 u32 section, word_bits;
112 int ret = 0;
114 ret = strict_strtoul(data, 10, &value);
115 if (ret != -EINVAL) {
117 /* Form value to choose 16-byte section of cacheline */
118 section = F10_NB_ARRAY_DRAM_ECC |
119 SET_NB_ARRAY_ADDRESS(pvt->injection.section);
120 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_ADDR, section);
122 word_bits = SET_NB_DRAM_INJECTION_READ(pvt->injection.word,
123 pvt->injection.bit_map);
125 /* Issue 'word' and 'bit' along with the READ request */
126 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, word_bits);
128 debugf0("section=0x%x word_bits=0x%x\n", section, word_bits);
130 return count;
132 return ret;
136 * Do a DRAM ECC write. Assemble staged values in the pvt area and format into
137 * fields needed by the injection registers.
139 static ssize_t amd64_inject_write_store(struct mem_ctl_info *mci,
140 const char *data, size_t count)
142 struct amd64_pvt *pvt = mci->pvt_info;
143 unsigned long value;
144 u32 section, word_bits;
145 int ret = 0;
147 ret = strict_strtoul(data, 10, &value);
148 if (ret != -EINVAL) {
150 /* Form value to choose 16-byte section of cacheline */
151 section = F10_NB_ARRAY_DRAM_ECC |
152 SET_NB_ARRAY_ADDRESS(pvt->injection.section);
153 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_ADDR, section);
155 word_bits = SET_NB_DRAM_INJECTION_WRITE(pvt->injection.word,
156 pvt->injection.bit_map);
158 /* Issue 'word' and 'bit' along with the READ request */
159 amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, word_bits);
161 debugf0("section=0x%x word_bits=0x%x\n", section, word_bits);
163 return count;
165 return ret;
169 * update NUM_INJ_ATTRS in case you add new members
171 struct mcidev_sysfs_attribute amd64_inj_attrs[] = {
174 .attr = {
175 .name = "inject_section",
176 .mode = (S_IRUGO | S_IWUSR)
178 .show = amd64_inject_section_show,
179 .store = amd64_inject_section_store,
182 .attr = {
183 .name = "inject_word",
184 .mode = (S_IRUGO | S_IWUSR)
186 .show = amd64_inject_word_show,
187 .store = amd64_inject_word_store,
190 .attr = {
191 .name = "inject_ecc_vector",
192 .mode = (S_IRUGO | S_IWUSR)
194 .show = amd64_inject_ecc_vector_show,
195 .store = amd64_inject_ecc_vector_store,
198 .attr = {
199 .name = "inject_write",
200 .mode = (S_IRUGO | S_IWUSR)
202 .show = NULL,
203 .store = amd64_inject_write_store,
206 .attr = {
207 .name = "inject_read",
208 .mode = (S_IRUGO | S_IWUSR)
210 .show = NULL,
211 .store = amd64_inject_read_store,