blob: a76a4c06785899def496986e167fd70d09205d1c [file] [log] [blame]
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -03001/* Intel i7 core/Nehalem Memory Controller kernel module
2 *
3 * This driver supports yhe memory controllers found on the Intel
4 * processor families i7core, i7core 7xx/8xx, i5core, Xeon 35xx,
5 * Xeon 55xx and Xeon 56xx also known as Nehalem, Nehalem-EP, Lynnfield
6 * and Westmere-EP.
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03007 *
8 * This file may be distributed under the terms of the
9 * GNU General Public License version 2 only.
10 *
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -030011 * Copyright (c) 2009-2010 by:
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030012 * Mauro Carvalho Chehab <mchehab@redhat.com>
13 *
14 * Red Hat Inc. http://www.redhat.com
15 *
16 * Forked and adapted from the i5400_edac driver
17 *
18 * Based on the following public Intel datasheets:
19 * Intel Core i7 Processor Extreme Edition and Intel Core i7 Processor
20 * Datasheet, Volume 2:
21 * http://download.intel.com/design/processor/datashts/320835.pdf
22 * Intel Xeon Processor 5500 Series Datasheet Volume 2
23 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
24 * also available at:
25 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
26 */
27
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030028#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/pci_ids.h>
32#include <linux/slab.h>
Randy Dunlap3b918c12009-11-08 01:36:40 -020033#include <linux/delay.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030034#include <linux/edac.h>
35#include <linux/mmzone.h>
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -030036#include <linux/edac_mce.h>
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030037#include <linux/smp.h>
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -030038#include <asm/processor.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030039
40#include "edac_core.h"
41
Mauro Carvalho Chehab18c29002010-08-10 18:33:27 -030042/* Static vars */
43static LIST_HEAD(i7core_edac_list);
44static DEFINE_MUTEX(i7core_edac_lock);
45static int probed;
46
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -030047static int use_pci_fixup;
48module_param(use_pci_fixup, int, 0444);
49MODULE_PARM_DESC(use_pci_fixup, "Enable PCI fixup to seek for hidden devices");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030050/*
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030051 * This is used for Nehalem-EP and Nehalem-EX devices, where the non-core
52 * registers start at bus 255, and are not reported by BIOS.
53 * We currently find devices with only 2 sockets. In order to support more QPI
54 * Quick Path Interconnect, just increment this number.
55 */
56#define MAX_SOCKET_BUSES 2
57
58
59/*
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030060 * Alter this version for the module when modifications are made
61 */
62#define I7CORE_REVISION " Ver: 1.0.0 " __DATE__
63#define EDAC_MOD_STR "i7core_edac"
64
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030065/*
66 * Debug macros
67 */
68#define i7core_printk(level, fmt, arg...) \
69 edac_printk(level, "i7core", fmt, ##arg)
70
71#define i7core_mc_printk(mci, level, fmt, arg...) \
72 edac_mc_chipset_printk(mci, level, "i7core", fmt, ##arg)
73
74/*
75 * i7core Memory Controller Registers
76 */
77
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030078 /* OFFSETS for Device 0 Function 0 */
79
80#define MC_CFG_CONTROL 0x90
81
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030082 /* OFFSETS for Device 3 Function 0 */
83
84#define MC_CONTROL 0x48
85#define MC_STATUS 0x4c
86#define MC_MAX_DOD 0x64
87
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030088/*
89 * OFFSETS for Device 3 Function 4, as inicated on Xeon 5500 datasheet:
90 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
91 */
92
93#define MC_TEST_ERR_RCV1 0x60
94 #define DIMM2_COR_ERR(r) ((r) & 0x7fff)
95
96#define MC_TEST_ERR_RCV0 0x64
97 #define DIMM1_COR_ERR(r) (((r) >> 16) & 0x7fff)
98 #define DIMM0_COR_ERR(r) ((r) & 0x7fff)
99
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300100/* OFFSETS for Device 3 Function 2, as inicated on Xeon 5500 datasheet */
101#define MC_COR_ECC_CNT_0 0x80
102#define MC_COR_ECC_CNT_1 0x84
103#define MC_COR_ECC_CNT_2 0x88
104#define MC_COR_ECC_CNT_3 0x8c
105#define MC_COR_ECC_CNT_4 0x90
106#define MC_COR_ECC_CNT_5 0x94
107
108#define DIMM_TOP_COR_ERR(r) (((r) >> 16) & 0x7fff)
109#define DIMM_BOT_COR_ERR(r) ((r) & 0x7fff)
110
111
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300112 /* OFFSETS for Devices 4,5 and 6 Function 0 */
113
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300114#define MC_CHANNEL_DIMM_INIT_PARAMS 0x58
115 #define THREE_DIMMS_PRESENT (1 << 24)
116 #define SINGLE_QUAD_RANK_PRESENT (1 << 23)
117 #define QUAD_RANK_PRESENT (1 << 22)
118 #define REGISTERED_DIMM (1 << 15)
119
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300120#define MC_CHANNEL_MAPPER 0x60
121 #define RDLCH(r, ch) ((((r) >> (3 + (ch * 6))) & 0x07) - 1)
122 #define WRLCH(r, ch) ((((r) >> (ch * 6)) & 0x07) - 1)
123
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300124#define MC_CHANNEL_RANK_PRESENT 0x7c
125 #define RANK_PRESENT_MASK 0xffff
126
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300127#define MC_CHANNEL_ADDR_MATCH 0xf0
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300128#define MC_CHANNEL_ERROR_MASK 0xf8
129#define MC_CHANNEL_ERROR_INJECT 0xfc
130 #define INJECT_ADDR_PARITY 0x10
131 #define INJECT_ECC 0x08
132 #define MASK_CACHELINE 0x06
133 #define MASK_FULL_CACHELINE 0x06
134 #define MASK_MSB32_CACHELINE 0x04
135 #define MASK_LSB32_CACHELINE 0x02
136 #define NO_MASK_CACHELINE 0x00
137 #define REPEAT_EN 0x01
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300138
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300139 /* OFFSETS for Devices 4,5 and 6 Function 1 */
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300140
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300141#define MC_DOD_CH_DIMM0 0x48
142#define MC_DOD_CH_DIMM1 0x4c
143#define MC_DOD_CH_DIMM2 0x50
144 #define RANKOFFSET_MASK ((1 << 12) | (1 << 11) | (1 << 10))
145 #define RANKOFFSET(x) ((x & RANKOFFSET_MASK) >> 10)
146 #define DIMM_PRESENT_MASK (1 << 9)
147 #define DIMM_PRESENT(x) (((x) & DIMM_PRESENT_MASK) >> 9)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300148 #define MC_DOD_NUMBANK_MASK ((1 << 8) | (1 << 7))
149 #define MC_DOD_NUMBANK(x) (((x) & MC_DOD_NUMBANK_MASK) >> 7)
150 #define MC_DOD_NUMRANK_MASK ((1 << 6) | (1 << 5))
151 #define MC_DOD_NUMRANK(x) (((x) & MC_DOD_NUMRANK_MASK) >> 5)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300152 #define MC_DOD_NUMROW_MASK ((1 << 4) | (1 << 3) | (1 << 2))
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300153 #define MC_DOD_NUMROW(x) (((x) & MC_DOD_NUMROW_MASK) >> 2)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300154 #define MC_DOD_NUMCOL_MASK 3
155 #define MC_DOD_NUMCOL(x) ((x) & MC_DOD_NUMCOL_MASK)
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300156
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300157#define MC_RANK_PRESENT 0x7c
158
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300159#define MC_SAG_CH_0 0x80
160#define MC_SAG_CH_1 0x84
161#define MC_SAG_CH_2 0x88
162#define MC_SAG_CH_3 0x8c
163#define MC_SAG_CH_4 0x90
164#define MC_SAG_CH_5 0x94
165#define MC_SAG_CH_6 0x98
166#define MC_SAG_CH_7 0x9c
167
168#define MC_RIR_LIMIT_CH_0 0x40
169#define MC_RIR_LIMIT_CH_1 0x44
170#define MC_RIR_LIMIT_CH_2 0x48
171#define MC_RIR_LIMIT_CH_3 0x4C
172#define MC_RIR_LIMIT_CH_4 0x50
173#define MC_RIR_LIMIT_CH_5 0x54
174#define MC_RIR_LIMIT_CH_6 0x58
175#define MC_RIR_LIMIT_CH_7 0x5C
176#define MC_RIR_LIMIT_MASK ((1 << 10) - 1)
177
178#define MC_RIR_WAY_CH 0x80
179 #define MC_RIR_WAY_OFFSET_MASK (((1 << 14) - 1) & ~0x7)
180 #define MC_RIR_WAY_RANK_MASK 0x7
181
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300182/*
183 * i7core structs
184 */
185
186#define NUM_CHANS 3
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300187#define MAX_DIMMS 3 /* Max DIMMS per channel */
188#define MAX_MCR_FUNC 4
189#define MAX_CHAN_FUNC 3
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300190
191struct i7core_info {
192 u32 mc_control;
193 u32 mc_status;
194 u32 max_dod;
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300195 u32 ch_map;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300196};
197
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300198
199struct i7core_inject {
200 int enable;
201
202 u32 section;
203 u32 type;
204 u32 eccmask;
205
206 /* Error address mask */
207 int channel, dimm, rank, bank, page, col;
208};
209
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300210struct i7core_channel {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300211 u32 ranks;
212 u32 dimms;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300213};
214
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300215struct pci_id_descr {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300216 int dev;
217 int func;
218 int dev_id;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300219 int optional;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300220};
221
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300222struct pci_id_table {
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300223 const struct pci_id_descr *descr;
224 int n_devs;
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300225};
226
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300227struct i7core_dev {
228 struct list_head list;
229 u8 socket;
230 struct pci_dev **pdev;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300231 int n_devs;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300232 struct mem_ctl_info *mci;
233};
234
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300235struct i7core_pvt {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300236 struct pci_dev *pci_noncore;
237 struct pci_dev *pci_mcr[MAX_MCR_FUNC + 1];
238 struct pci_dev *pci_ch[NUM_CHANS][MAX_CHAN_FUNC + 1];
239
240 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300241
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300242 struct i7core_info info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300243 struct i7core_inject inject;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300244 struct i7core_channel channel[NUM_CHANS];
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300245
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300246 int channels; /* Number of active channels */
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300247
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300248 int ce_count_available;
249 int csrow_map[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300250
251 /* ECC corrected errors counts per udimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300252 unsigned long udimm_ce_count[MAX_DIMMS];
253 int udimm_last_ce_count[MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300254 /* ECC corrected errors counts per rdimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300255 unsigned long rdimm_ce_count[NUM_CHANS][MAX_DIMMS];
256 int rdimm_last_ce_count[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300257
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300258 unsigned int is_registered;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300259
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300260 /* mcelog glue */
261 struct edac_mce edac_mce;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300262
263 /* Fifo double buffers */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300264 struct mce mce_entry[MCE_LOG_LEN];
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300265 struct mce mce_outentry[MCE_LOG_LEN];
266
267 /* Fifo in/out counters */
268 unsigned mce_in, mce_out;
269
270 /* Count indicator to show errors not got */
271 unsigned mce_overrun;
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300272
273 /* Struct to control EDAC polling */
274 struct edac_pci_ctl_info *i7core_pci;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300275};
276
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300277#define PCI_DESCR(device, function, device_id) \
278 .dev = (device), \
279 .func = (function), \
280 .dev_id = (device_id)
281
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300282static const struct pci_id_descr pci_dev_descr_i7core_nehalem[] = {
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300283 /* Memory controller */
284 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_I7_MCR) },
285 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_I7_MC_TAD) },
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300286 /* Exists only for RDIMM */
287 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_I7_MC_RAS), .optional = 1 },
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300288 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_I7_MC_TEST) },
289
290 /* Channel 0 */
291 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH0_CTRL) },
292 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH0_ADDR) },
293 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH0_RANK) },
294 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH0_TC) },
295
296 /* Channel 1 */
297 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH1_CTRL) },
298 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH1_ADDR) },
299 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH1_RANK) },
300 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH1_TC) },
301
302 /* Channel 2 */
303 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH2_CTRL) },
304 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH2_ADDR) },
305 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH2_RANK) },
306 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH2_TC) },
Mauro Carvalho Chehab310cbb72009-07-17 00:09:10 -0300307
308 /* Generic Non-core registers */
309 /*
310 * This is the PCI device on i7core and on Xeon 35xx (8086:2c41)
311 * On Xeon 55xx, however, it has a different id (8086:2c40). So,
312 * the probing code needs to test for the other address in case of
313 * failure of this one
314 */
Mauro Carvalho Chehabfd382652009-10-14 06:07:07 -0300315 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_I7_NONCORE) },
Mauro Carvalho Chehab310cbb72009-07-17 00:09:10 -0300316
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300317};
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300318
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300319static const struct pci_id_descr pci_dev_descr_lynnfield[] = {
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300320 { PCI_DESCR( 3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR) },
321 { PCI_DESCR( 3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD) },
322 { PCI_DESCR( 3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST) },
323
324 { PCI_DESCR( 4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL) },
325 { PCI_DESCR( 4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR) },
326 { PCI_DESCR( 4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK) },
327 { PCI_DESCR( 4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC) },
328
Mauro Carvalho Chehab508fa172009-10-14 13:44:37 -0300329 { PCI_DESCR( 5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL) },
330 { PCI_DESCR( 5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR) },
331 { PCI_DESCR( 5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK) },
332 { PCI_DESCR( 5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC) },
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300333
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300334 /*
335 * This is the PCI device has an alternate address on some
336 * processors like Core i7 860
337 */
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300338 { PCI_DESCR( 0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE) },
339};
340
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300341static const struct pci_id_descr pci_dev_descr_i7core_westmere[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300342 /* Memory controller */
343 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR_REV2) },
344 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD_REV2) },
345 /* Exists only for RDIMM */
346 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_RAS_REV2), .optional = 1 },
347 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST_REV2) },
348
349 /* Channel 0 */
350 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL_REV2) },
351 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR_REV2) },
352 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK_REV2) },
353 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC_REV2) },
354
355 /* Channel 1 */
356 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL_REV2) },
357 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR_REV2) },
358 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK_REV2) },
359 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC_REV2) },
360
361 /* Channel 2 */
362 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_CTRL_REV2) },
363 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_ADDR_REV2) },
364 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_RANK_REV2) },
365 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_TC_REV2) },
366
367 /* Generic Non-core registers */
368 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2) },
369
370};
371
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300372#define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) }
373static const struct pci_id_table pci_dev_table[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300374 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_nehalem),
375 PCI_ID_TABLE_ENTRY(pci_dev_descr_lynnfield),
376 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_westmere),
377};
378
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300379/*
380 * pci_device_id table for which devices we are looking for
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300381 */
382static const struct pci_device_id i7core_pci_tbl[] __devinitdata = {
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -0300383 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300384 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300385 {0,} /* 0 terminated list. */
386};
387
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300388/****************************************************************************
389 Anciliary status routines
390 ****************************************************************************/
391
392 /* MC_CONTROL bits */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300393#define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch)))
394#define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300395
396 /* MC_STATUS bits */
Keith Mannthey61053fd2009-09-02 23:46:59 -0300397#define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300398#define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300399
400 /* MC_MAX_DOD read functions */
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300401static inline int numdimms(u32 dimms)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300402{
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300403 return (dimms & 0x3) + 1;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300404}
405
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300406static inline int numrank(u32 rank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300407{
408 static int ranks[4] = { 1, 2, 4, -EINVAL };
409
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300410 return ranks[rank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300411}
412
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300413static inline int numbank(u32 bank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300414{
415 static int banks[4] = { 4, 8, 16, -EINVAL };
416
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300417 return banks[bank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300418}
419
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300420static inline int numrow(u32 row)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300421{
422 static int rows[8] = {
423 1 << 12, 1 << 13, 1 << 14, 1 << 15,
424 1 << 16, -EINVAL, -EINVAL, -EINVAL,
425 };
426
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300427 return rows[row & 0x7];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300428}
429
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300430static inline int numcol(u32 col)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300431{
432 static int cols[8] = {
433 1 << 10, 1 << 11, 1 << 12, -EINVAL,
434 };
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300435 return cols[col & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300436}
437
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300438static struct i7core_dev *get_i7core_dev(u8 socket)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300439{
440 struct i7core_dev *i7core_dev;
441
442 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
443 if (i7core_dev->socket == socket)
444 return i7core_dev;
445 }
446
447 return NULL;
448}
449
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300450/****************************************************************************
451 Memory check routines
452 ****************************************************************************/
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300453static struct pci_dev *get_pdev_slot_func(u8 socket, unsigned slot,
454 unsigned func)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300455{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300456 struct i7core_dev *i7core_dev = get_i7core_dev(socket);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300457 int i;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300458
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300459 if (!i7core_dev)
460 return NULL;
461
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300462 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300463 if (!i7core_dev->pdev[i])
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300464 continue;
465
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300466 if (PCI_SLOT(i7core_dev->pdev[i]->devfn) == slot &&
467 PCI_FUNC(i7core_dev->pdev[i]->devfn) == func) {
468 return i7core_dev->pdev[i];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300469 }
470 }
471
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300472 return NULL;
473}
474
Mauro Carvalho Chehabec6df242009-07-18 10:44:30 -0300475/**
476 * i7core_get_active_channels() - gets the number of channels and csrows
477 * @socket: Quick Path Interconnect socket
478 * @channels: Number of channels that will be returned
479 * @csrows: Number of csrows found
480 *
481 * Since EDAC core needs to know in advance the number of available channels
482 * and csrows, in order to allocate memory for csrows/channels, it is needed
483 * to run two similar steps. At the first step, implemented on this function,
484 * it checks the number of csrows/channels present at one socket.
485 * this is used in order to properly allocate the size of mci components.
486 *
487 * It should be noticed that none of the current available datasheets explain
488 * or even mention how csrows are seen by the memory controller. So, we need
489 * to add a fake description for csrows.
490 * So, this driver is attributing one DIMM memory for one csrow.
491 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300492static int i7core_get_active_channels(const u8 socket, unsigned *channels,
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300493 unsigned *csrows)
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300494{
495 struct pci_dev *pdev = NULL;
496 int i, j;
497 u32 status, control;
498
499 *channels = 0;
500 *csrows = 0;
501
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300502 pdev = get_pdev_slot_func(socket, 3, 0);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -0300503 if (!pdev) {
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300504 i7core_printk(KERN_ERR, "Couldn't find socket %d fn 3.0!!!\n",
505 socket);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300506 return -ENODEV;
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -0300507 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300508
509 /* Device 3 function 0 reads */
510 pci_read_config_dword(pdev, MC_STATUS, &status);
511 pci_read_config_dword(pdev, MC_CONTROL, &control);
512
513 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300514 u32 dimm_dod[3];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300515 /* Check if the channel is active */
516 if (!(control & (1 << (8 + i))))
517 continue;
518
519 /* Check if the channel is disabled */
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300520 if (status & (1 << i))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300521 continue;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300522
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300523 pdev = get_pdev_slot_func(socket, i + 4, 1);
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300524 if (!pdev) {
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300525 i7core_printk(KERN_ERR, "Couldn't find socket %d "
526 "fn %d.%d!!!\n",
527 socket, i + 4, 1);
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300528 return -ENODEV;
529 }
530 /* Devices 4-6 function 1 */
531 pci_read_config_dword(pdev,
532 MC_DOD_CH_DIMM0, &dimm_dod[0]);
533 pci_read_config_dword(pdev,
534 MC_DOD_CH_DIMM1, &dimm_dod[1]);
535 pci_read_config_dword(pdev,
536 MC_DOD_CH_DIMM2, &dimm_dod[2]);
537
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300538 (*channels)++;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300539
540 for (j = 0; j < 3; j++) {
541 if (!DIMM_PRESENT(dimm_dod[j]))
542 continue;
543 (*csrows)++;
544 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300545 }
546
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -0300547 debugf0("Number of active channels on socket %d: %d\n",
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300548 socket, *channels);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300549
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300550 return 0;
551}
552
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300553static int get_dimm_config(const struct mem_ctl_info *mci, int *csrow)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300554{
555 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300556 struct csrow_info *csr;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300557 struct pci_dev *pdev;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300558 int i, j;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300559 unsigned long last_page = 0;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300560 enum edac_type mode;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300561 enum mem_type mtype;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300562
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300563 /* Get data from the MC register, function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300564 pdev = pvt->pci_mcr[0];
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300565 if (!pdev)
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300566 return -ENODEV;
567
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300568 /* Device 3 function 0 reads */
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300569 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control);
570 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status);
571 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod);
572 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300573
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300574 debugf0("QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
Mauro Carvalho Chehab4af91882009-09-24 09:58:26 -0300575 pvt->i7core_dev->socket, pvt->info.mc_control, pvt->info.mc_status,
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300576 pvt->info.max_dod, pvt->info.ch_map);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300577
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300578 if (ECC_ENABLED(pvt)) {
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300579 debugf0("ECC enabled with x%d SDCC\n", ECCx8(pvt) ? 8 : 4);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300580 if (ECCx8(pvt))
581 mode = EDAC_S8ECD8ED;
582 else
583 mode = EDAC_S4ECD4ED;
584 } else {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300585 debugf0("ECC disabled\n");
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300586 mode = EDAC_NONE;
587 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300588
589 /* FIXME: need to handle the error codes */
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300590 debugf0("DOD Max limits: DIMMS: %d, %d-ranked, %d-banked "
591 "x%x x 0x%x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300592 numdimms(pvt->info.max_dod),
593 numrank(pvt->info.max_dod >> 2),
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300594 numbank(pvt->info.max_dod >> 4),
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300595 numrow(pvt->info.max_dod >> 6),
596 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300597
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300598 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300599 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300600
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300601 if (!pvt->pci_ch[i][0])
602 continue;
603
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300604 if (!CH_ACTIVE(pvt, i)) {
605 debugf0("Channel %i is not active\n", i);
606 continue;
607 }
608 if (CH_DISABLED(pvt, i)) {
609 debugf0("Channel %i is disabled\n", i);
610 continue;
611 }
612
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300613 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300614 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300615 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
616
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300617 pvt->channel[i].ranks = (data & QUAD_RANK_PRESENT) ?
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300618 4 : 2;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300619
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300620 if (data & REGISTERED_DIMM)
621 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300622 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300623 mtype = MEM_DDR3;
624#if 0
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300625 if (data & THREE_DIMMS_PRESENT)
626 pvt->channel[i].dimms = 3;
627 else if (data & SINGLE_QUAD_RANK_PRESENT)
628 pvt->channel[i].dimms = 1;
629 else
630 pvt->channel[i].dimms = 2;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300631#endif
632
633 /* Devices 4-6 function 1 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300634 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300635 MC_DOD_CH_DIMM0, &dimm_dod[0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300636 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300637 MC_DOD_CH_DIMM1, &dimm_dod[1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300638 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300639 MC_DOD_CH_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300640
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300641 debugf0("Ch%d phy rd%d, wr%d (0x%08x): "
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300642 "%d ranks, %cDIMMs\n",
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300643 i,
644 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
645 data,
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300646 pvt->channel[i].ranks,
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300647 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300648
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300649 for (j = 0; j < 3; j++) {
650 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300651 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300652
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300653 if (!DIMM_PRESENT(dimm_dod[j]))
654 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300655
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300656 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
657 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
658 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
659 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300660
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300661 /* DDR3 has 8 I/O banks */
662 size = (rows * cols * banks * ranks) >> (20 - 3);
663
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300664 pvt->channel[i].dimms++;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300665
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300666 debugf0("\tdimm %d %d Mb offset: %x, "
667 "bank: %d, rank: %d, row: %#x, col: %#x\n",
668 j, size,
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300669 RANKOFFSET(dimm_dod[j]),
670 banks, ranks, rows, cols);
671
Mauro Carvalho Chehabe9144602010-08-10 20:26:35 -0300672 npages = MiB_TO_PAGES(size);
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300673
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300674 csr = &mci->csrows[*csrow];
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300675 csr->first_page = last_page + 1;
676 last_page += npages;
677 csr->last_page = last_page;
678 csr->nr_pages = npages;
679
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300680 csr->page_mask = 0;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300681 csr->grain = 8;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300682 csr->csrow_idx = *csrow;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300683 csr->nr_channels = 1;
684
685 csr->channels[0].chan_idx = i;
686 csr->channels[0].ce_count = 0;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300687
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300688 pvt->csrow_map[i][j] = *csrow;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300689
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300690 switch (banks) {
691 case 4:
692 csr->dtype = DEV_X4;
693 break;
694 case 8:
695 csr->dtype = DEV_X8;
696 break;
697 case 16:
698 csr->dtype = DEV_X16;
699 break;
700 default:
701 csr->dtype = DEV_UNKNOWN;
702 }
703
704 csr->edac_mode = mode;
705 csr->mtype = mtype;
706
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300707 (*csrow)++;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300708 }
709
710 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
711 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
712 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
713 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
714 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
715 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
716 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
717 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300718 debugf1("\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300719 for (j = 0; j < 8; j++)
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300720 debugf1("\t\t%#x\t%#x\t%#x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300721 (value[j] >> 27) & 0x1,
722 (value[j] >> 24) & 0x7,
723 (value[j] && ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300724 }
725
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300726 return 0;
727}
728
729/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300730 Error insertion routines
731 ****************************************************************************/
732
733/* The i7core has independent error injection features per channel.
734 However, to have a simpler code, we don't allow enabling error injection
735 on more than one channel.
736 Also, since a change at an inject parameter will be applied only at enable,
737 we're disabling error injection on all write calls to the sysfs nodes that
738 controls the error code injection.
739 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300740static int disable_inject(const struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300741{
742 struct i7core_pvt *pvt = mci->pvt_info;
743
744 pvt->inject.enable = 0;
745
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300746 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300747 return -ENODEV;
748
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300749 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300750 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300751
752 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300753}
754
755/*
756 * i7core inject inject.section
757 *
758 * accept and store error injection inject.section value
759 * bit 0 - refers to the lower 32-byte half cacheline
760 * bit 1 - refers to the upper 32-byte half cacheline
761 */
762static ssize_t i7core_inject_section_store(struct mem_ctl_info *mci,
763 const char *data, size_t count)
764{
765 struct i7core_pvt *pvt = mci->pvt_info;
766 unsigned long value;
767 int rc;
768
769 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300770 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300771
772 rc = strict_strtoul(data, 10, &value);
773 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300774 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300775
776 pvt->inject.section = (u32) value;
777 return count;
778}
779
780static ssize_t i7core_inject_section_show(struct mem_ctl_info *mci,
781 char *data)
782{
783 struct i7core_pvt *pvt = mci->pvt_info;
784 return sprintf(data, "0x%08x\n", pvt->inject.section);
785}
786
787/*
788 * i7core inject.type
789 *
790 * accept and store error injection inject.section value
791 * bit 0 - repeat enable - Enable error repetition
792 * bit 1 - inject ECC error
793 * bit 2 - inject parity error
794 */
795static ssize_t i7core_inject_type_store(struct mem_ctl_info *mci,
796 const char *data, size_t count)
797{
798 struct i7core_pvt *pvt = mci->pvt_info;
799 unsigned long value;
800 int rc;
801
802 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300803 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300804
805 rc = strict_strtoul(data, 10, &value);
806 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300807 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300808
809 pvt->inject.type = (u32) value;
810 return count;
811}
812
813static ssize_t i7core_inject_type_show(struct mem_ctl_info *mci,
814 char *data)
815{
816 struct i7core_pvt *pvt = mci->pvt_info;
817 return sprintf(data, "0x%08x\n", pvt->inject.type);
818}
819
820/*
821 * i7core_inject_inject.eccmask_store
822 *
823 * The type of error (UE/CE) will depend on the inject.eccmask value:
824 * Any bits set to a 1 will flip the corresponding ECC bit
825 * Correctable errors can be injected by flipping 1 bit or the bits within
826 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
827 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
828 * uncorrectable error to be injected.
829 */
830static ssize_t i7core_inject_eccmask_store(struct mem_ctl_info *mci,
831 const char *data, size_t count)
832{
833 struct i7core_pvt *pvt = mci->pvt_info;
834 unsigned long value;
835 int rc;
836
837 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300838 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300839
840 rc = strict_strtoul(data, 10, &value);
841 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300842 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300843
844 pvt->inject.eccmask = (u32) value;
845 return count;
846}
847
848static ssize_t i7core_inject_eccmask_show(struct mem_ctl_info *mci,
849 char *data)
850{
851 struct i7core_pvt *pvt = mci->pvt_info;
852 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
853}
854
855/*
856 * i7core_addrmatch
857 *
858 * The type of error (UE/CE) will depend on the inject.eccmask value:
859 * Any bits set to a 1 will flip the corresponding ECC bit
860 * Correctable errors can be injected by flipping 1 bit or the bits within
861 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
862 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
863 * uncorrectable error to be injected.
864 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300865
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300866#define DECLARE_ADDR_MATCH(param, limit) \
867static ssize_t i7core_inject_store_##param( \
868 struct mem_ctl_info *mci, \
869 const char *data, size_t count) \
870{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300871 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300872 long value; \
873 int rc; \
874 \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300875 debugf1("%s()\n", __func__); \
876 pvt = mci->pvt_info; \
877 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300878 if (pvt->inject.enable) \
879 disable_inject(mci); \
880 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300881 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300882 value = -1; \
883 else { \
884 rc = strict_strtoul(data, 10, &value); \
885 if ((rc < 0) || (value >= limit)) \
886 return -EIO; \
887 } \
888 \
889 pvt->inject.param = value; \
890 \
891 return count; \
892} \
893 \
894static ssize_t i7core_inject_show_##param( \
895 struct mem_ctl_info *mci, \
896 char *data) \
897{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300898 struct i7core_pvt *pvt; \
899 \
900 pvt = mci->pvt_info; \
901 debugf1("%s() pvt=%p\n", __func__, pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300902 if (pvt->inject.param < 0) \
903 return sprintf(data, "any\n"); \
904 else \
905 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300906}
907
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300908#define ATTR_ADDR_MATCH(param) \
909 { \
910 .attr = { \
911 .name = #param, \
912 .mode = (S_IRUGO | S_IWUSR) \
913 }, \
914 .show = i7core_inject_show_##param, \
915 .store = i7core_inject_store_##param, \
916 }
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300917
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300918DECLARE_ADDR_MATCH(channel, 3);
919DECLARE_ADDR_MATCH(dimm, 3);
920DECLARE_ADDR_MATCH(rank, 4);
921DECLARE_ADDR_MATCH(bank, 32);
922DECLARE_ADDR_MATCH(page, 0x10000);
923DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300924
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300925static int write_and_test(struct pci_dev *dev, const int where, const u32 val)
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300926{
927 u32 read;
928 int count;
929
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300930 debugf0("setting pci %02x:%02x.%x reg=%02x value=%08x\n",
931 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
932 where, val);
933
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300934 for (count = 0; count < 10; count++) {
935 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300936 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300937 pci_write_config_dword(dev, where, val);
938 pci_read_config_dword(dev, where, &read);
939
940 if (read == val)
941 return 0;
942 }
943
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300944 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
945 "write=%08x. Read=%08x\n",
946 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
947 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300948
949 return -EINVAL;
950}
951
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300952/*
953 * This routine prepares the Memory Controller for error injection.
954 * The error will be injected when some process tries to write to the
955 * memory that matches the given criteria.
956 * The criteria can be set in terms of a mask where dimm, rank, bank, page
957 * and col can be specified.
958 * A -1 value for any of the mask items will make the MCU to ignore
959 * that matching criteria for error injection.
960 *
961 * It should be noticed that the error will only happen after a write operation
962 * on a memory that matches the condition. if REPEAT_EN is not enabled at
963 * inject mask, then it will produce just one error. Otherwise, it will repeat
964 * until the injectmask would be cleaned.
965 *
966 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
967 * is reliable enough to check if the MC is using the
968 * three channels. However, this is not clear at the datasheet.
969 */
970static ssize_t i7core_inject_enable_store(struct mem_ctl_info *mci,
971 const char *data, size_t count)
972{
973 struct i7core_pvt *pvt = mci->pvt_info;
974 u32 injectmask;
975 u64 mask = 0;
976 int rc;
977 long enable;
978
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300979 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300980 return 0;
981
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300982 rc = strict_strtoul(data, 10, &enable);
983 if ((rc < 0))
984 return 0;
985
986 if (enable) {
987 pvt->inject.enable = 1;
988 } else {
989 disable_inject(mci);
990 return count;
991 }
992
993 /* Sets pvt->inject.dimm mask */
994 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200995 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300996 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300997 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200998 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300999 else
Alan Cox486dd092009-11-08 01:34:27 -02001000 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001001 }
1002
1003 /* Sets pvt->inject.rank mask */
1004 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001005 mask |= 1LL << 40;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001006 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001007 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -02001008 mask |= (pvt->inject.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001009 else
Alan Cox486dd092009-11-08 01:34:27 -02001010 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001011 }
1012
1013 /* Sets pvt->inject.bank mask */
1014 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001015 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001016 else
Alan Cox486dd092009-11-08 01:34:27 -02001017 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001018
1019 /* Sets pvt->inject.page mask */
1020 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001021 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001022 else
Alan Cox486dd092009-11-08 01:34:27 -02001023 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001024
1025 /* Sets pvt->inject.column mask */
1026 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001027 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001028 else
Alan Cox486dd092009-11-08 01:34:27 -02001029 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001030
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001031 /*
1032 * bit 0: REPEAT_EN
1033 * bits 1-2: MASK_HALF_CACHELINE
1034 * bit 3: INJECT_ECC
1035 * bit 4: INJECT_ADDR_PARITY
1036 */
1037
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001038 injectmask = (pvt->inject.type & 1) |
1039 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001040 (pvt->inject.type & 0x6) << (3 - 1);
1041
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001042 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001043 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001044 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001045
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001046 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001047 MC_CHANNEL_ADDR_MATCH, mask);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001048 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001049 MC_CHANNEL_ADDR_MATCH + 4, mask >> 32L);
1050
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001051 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001052 MC_CHANNEL_ERROR_MASK, pvt->inject.eccmask);
1053
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001054 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001055 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001056
1057 /*
1058 * This is something undocumented, based on my tests
1059 * Without writing 8 to this register, errors aren't injected. Not sure
1060 * why.
1061 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001062 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001063 MC_CFG_CONTROL, 8);
1064
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001065 debugf0("Error inject addr match 0x%016llx, ecc 0x%08x,"
1066 " inject 0x%08x\n",
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001067 mask, pvt->inject.eccmask, injectmask);
1068
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001069
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001070 return count;
1071}
1072
1073static ssize_t i7core_inject_enable_show(struct mem_ctl_info *mci,
1074 char *data)
1075{
1076 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001077 u32 injectmask;
1078
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001079 if (!pvt->pci_ch[pvt->inject.channel][0])
1080 return 0;
1081
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001082 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001083 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001084
1085 debugf0("Inject error read: 0x%018x\n", injectmask);
1086
1087 if (injectmask & 0x0c)
1088 pvt->inject.enable = 1;
1089
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001090 return sprintf(data, "%d\n", pvt->inject.enable);
1091}
1092
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001093#define DECLARE_COUNTER(param) \
1094static ssize_t i7core_show_counter_##param( \
1095 struct mem_ctl_info *mci, \
1096 char *data) \
1097{ \
1098 struct i7core_pvt *pvt = mci->pvt_info; \
1099 \
1100 debugf1("%s() \n", __func__); \
1101 if (!pvt->ce_count_available || (pvt->is_registered)) \
1102 return sprintf(data, "data unavailable\n"); \
1103 return sprintf(data, "%lu\n", \
1104 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001105}
1106
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001107#define ATTR_COUNTER(param) \
1108 { \
1109 .attr = { \
1110 .name = __stringify(udimm##param), \
1111 .mode = (S_IRUGO | S_IWUSR) \
1112 }, \
1113 .show = i7core_show_counter_##param \
1114 }
1115
1116DECLARE_COUNTER(0);
1117DECLARE_COUNTER(1);
1118DECLARE_COUNTER(2);
1119
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001120/*
1121 * Sysfs struct
1122 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001123
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001124static const struct mcidev_sysfs_attribute i7core_addrmatch_attrs[] = {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001125 ATTR_ADDR_MATCH(channel),
1126 ATTR_ADDR_MATCH(dimm),
1127 ATTR_ADDR_MATCH(rank),
1128 ATTR_ADDR_MATCH(bank),
1129 ATTR_ADDR_MATCH(page),
1130 ATTR_ADDR_MATCH(col),
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001131 { } /* End of list */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001132};
1133
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001134static const struct mcidev_sysfs_group i7core_inject_addrmatch = {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001135 .name = "inject_addrmatch",
1136 .mcidev_attr = i7core_addrmatch_attrs,
1137};
1138
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001139static const struct mcidev_sysfs_attribute i7core_udimm_counters_attrs[] = {
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001140 ATTR_COUNTER(0),
1141 ATTR_COUNTER(1),
1142 ATTR_COUNTER(2),
Marcin Slusarz64aab722010-09-30 15:15:30 -07001143 { .attr = { .name = NULL } }
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001144};
1145
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001146static const struct mcidev_sysfs_group i7core_udimm_counters = {
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001147 .name = "all_channel_counts",
1148 .mcidev_attr = i7core_udimm_counters_attrs,
1149};
1150
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001151static const struct mcidev_sysfs_attribute i7core_sysfs_rdimm_attrs[] = {
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001152 {
1153 .attr = {
1154 .name = "inject_section",
1155 .mode = (S_IRUGO | S_IWUSR)
1156 },
1157 .show = i7core_inject_section_show,
1158 .store = i7core_inject_section_store,
1159 }, {
1160 .attr = {
1161 .name = "inject_type",
1162 .mode = (S_IRUGO | S_IWUSR)
1163 },
1164 .show = i7core_inject_type_show,
1165 .store = i7core_inject_type_store,
1166 }, {
1167 .attr = {
1168 .name = "inject_eccmask",
1169 .mode = (S_IRUGO | S_IWUSR)
1170 },
1171 .show = i7core_inject_eccmask_show,
1172 .store = i7core_inject_eccmask_store,
1173 }, {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001174 .grp = &i7core_inject_addrmatch,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001175 }, {
1176 .attr = {
1177 .name = "inject_enable",
1178 .mode = (S_IRUGO | S_IWUSR)
1179 },
1180 .show = i7core_inject_enable_show,
1181 .store = i7core_inject_enable_store,
1182 },
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001183 { } /* End of list */
1184};
1185
1186static const struct mcidev_sysfs_attribute i7core_sysfs_udimm_attrs[] = {
1187 {
1188 .attr = {
1189 .name = "inject_section",
1190 .mode = (S_IRUGO | S_IWUSR)
1191 },
1192 .show = i7core_inject_section_show,
1193 .store = i7core_inject_section_store,
1194 }, {
1195 .attr = {
1196 .name = "inject_type",
1197 .mode = (S_IRUGO | S_IWUSR)
1198 },
1199 .show = i7core_inject_type_show,
1200 .store = i7core_inject_type_store,
1201 }, {
1202 .attr = {
1203 .name = "inject_eccmask",
1204 .mode = (S_IRUGO | S_IWUSR)
1205 },
1206 .show = i7core_inject_eccmask_show,
1207 .store = i7core_inject_eccmask_store,
1208 }, {
1209 .grp = &i7core_inject_addrmatch,
1210 }, {
1211 .attr = {
1212 .name = "inject_enable",
1213 .mode = (S_IRUGO | S_IWUSR)
1214 },
1215 .show = i7core_inject_enable_show,
1216 .store = i7core_inject_enable_store,
1217 }, {
1218 .grp = &i7core_udimm_counters,
1219 },
1220 { } /* End of list */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001221};
1222
1223/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001224 Device initialization routines: put/get, init/exit
1225 ****************************************************************************/
1226
1227/*
1228 * i7core_put_devices 'put' all the devices that we have
1229 * reserved via 'get'
1230 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001231static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001232{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001233 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001234
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001235 debugf0(__FILE__ ": %s()\n", __func__);
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001236 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001237 struct pci_dev *pdev = i7core_dev->pdev[i];
1238 if (!pdev)
1239 continue;
1240 debugf0("Removing dev %02x:%02x.%d\n",
1241 pdev->bus->number,
1242 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
1243 pci_dev_put(pdev);
1244 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001245 kfree(i7core_dev->pdev);
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001246}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001247
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001248static void i7core_put_all_devices(void)
1249{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001250 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001251
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001252 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001253 i7core_put_devices(i7core_dev);
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001254 list_del(&i7core_dev->list);
1255 kfree(i7core_dev);
1256 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001257}
1258
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001259static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001260{
1261 struct pci_dev *pdev = NULL;
1262 int i;
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03001263
Keith Manntheybc2d7242009-09-03 00:05:05 -03001264 /*
1265 * On Xeon 55xx, the Intel Quckpath Arch Generic Non-core pci buses
1266 * aren't announced by acpi. So, we need to use a legacy scan probing
1267 * to detect them
1268 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001269 while (table && table->descr) {
1270 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1271 if (unlikely(!pdev)) {
1272 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1273 pcibios_scan_specific_bus(255-i);
1274 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001275 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001276 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001277 }
1278}
1279
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001280static unsigned i7core_pci_lastbus(void)
1281{
1282 int last_bus = 0, bus;
1283 struct pci_bus *b = NULL;
1284
1285 while ((b = pci_find_next_bus(b)) != NULL) {
1286 bus = b->number;
1287 debugf0("Found bus %d\n", bus);
1288 if (bus > last_bus)
1289 last_bus = bus;
1290 }
1291
1292 debugf0("Last bus %d\n", last_bus);
1293
1294 return last_bus;
1295}
1296
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001297/*
1298 * i7core_get_devices Find and perform 'get' operation on the MCH's
1299 * device/functions we want to reference for this driver
1300 *
1301 * Need to 'get' device 16 func 1 and func 2
1302 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001303int i7core_get_onedevice(struct pci_dev **prev, const int devno,
1304 const struct pci_id_descr *dev_descr,
1305 const unsigned n_devs,
1306 const unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001307{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001308 struct i7core_dev *i7core_dev;
1309
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001310 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001311 u8 bus = 0;
1312 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001313
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001314 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001315 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001316
1317 /*
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001318 * On Xeon 55xx, the Intel Quckpath Arch Generic Non-core regs
1319 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1320 * to probe for the alternate address in case of failure
1321 */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001322 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001323 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabfd382652009-10-14 06:07:07 -03001324 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001325
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001326 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE && !pdev)
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -03001327 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1328 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1329 *prev);
1330
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001331 if (!pdev) {
1332 if (*prev) {
1333 *prev = pdev;
1334 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001335 }
1336
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001337 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001338 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001339
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001340 if (devno == 0)
1341 return -ENODEV;
1342
Daniel J Bluemanab089372010-07-23 23:16:52 +01001343 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001344 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001345 dev_descr->dev, dev_descr->func,
1346 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001347
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001348 /* End of list, leave */
1349 return -ENODEV;
1350 }
1351 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001352
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001353 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001354
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001355 i7core_dev = get_i7core_dev(socket);
1356 if (!i7core_dev) {
1357 i7core_dev = kzalloc(sizeof(*i7core_dev), GFP_KERNEL);
1358 if (!i7core_dev)
1359 return -ENOMEM;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001360 i7core_dev->pdev = kzalloc(sizeof(*i7core_dev->pdev) * n_devs,
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001361 GFP_KERNEL);
Alexander Beregalov2a6fae32010-01-07 23:27:30 -03001362 if (!i7core_dev->pdev) {
1363 kfree(i7core_dev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001364 return -ENOMEM;
Alexander Beregalov2a6fae32010-01-07 23:27:30 -03001365 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001366 i7core_dev->socket = socket;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001367 i7core_dev->n_devs = n_devs;
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001368 list_add_tail(&i7core_dev->list, &i7core_edac_list);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001369 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001370
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001371 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001372 i7core_printk(KERN_ERR,
1373 "Duplicated device for "
1374 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001375 bus, dev_descr->dev, dev_descr->func,
1376 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001377 pci_dev_put(pdev);
1378 return -ENODEV;
1379 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001380
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001381 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001382
1383 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001384 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1385 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001386 i7core_printk(KERN_ERR,
1387 "Device PCI ID %04x:%04x "
1388 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001389 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001390 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001391 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001392 return -ENODEV;
1393 }
1394
1395 /* Be sure that the device is enabled */
1396 if (unlikely(pci_enable_device(pdev) < 0)) {
1397 i7core_printk(KERN_ERR,
1398 "Couldn't enable "
1399 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001400 bus, dev_descr->dev, dev_descr->func,
1401 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001402 return -ENODEV;
1403 }
1404
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001405 debugf0("Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001406 socket, bus, dev_descr->dev,
1407 dev_descr->func,
1408 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001409
1410 *prev = pdev;
1411
1412 return 0;
1413}
1414
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001415static int i7core_get_devices(const struct pci_id_table *table)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001416{
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001417 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001418 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001419 const struct pci_id_descr *dev_descr;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001420
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001421 last_bus = i7core_pci_lastbus();
1422
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001423 while (table && table->descr) {
1424 dev_descr = table->descr;
1425 for (i = 0; i < table->n_devs; i++) {
1426 pdev = NULL;
1427 do {
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001428 rc = i7core_get_onedevice(&pdev, i,
1429 &dev_descr[i],
1430 table->n_devs,
1431 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001432 if (rc < 0) {
1433 if (i == 0) {
1434 i = table->n_devs;
1435 break;
1436 }
1437 i7core_put_all_devices();
1438 return -ENODEV;
1439 }
1440 } while (pdev);
1441 }
1442 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001443 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001444
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001445 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001446}
1447
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001448static int mci_bind_devs(struct mem_ctl_info *mci,
1449 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001450{
1451 struct i7core_pvt *pvt = mci->pvt_info;
1452 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001453 int i, func, slot;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001454
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001455 /* Associates i7core_dev and mci for future usage */
1456 pvt->i7core_dev = i7core_dev;
1457 i7core_dev->mci = mci;
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001458
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001459 pvt->is_registered = 0;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001460 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001461 pdev = i7core_dev->pdev[i];
1462 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001463 continue;
1464
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001465 func = PCI_FUNC(pdev->devfn);
1466 slot = PCI_SLOT(pdev->devfn);
1467 if (slot == 3) {
1468 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001469 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001470 pvt->pci_mcr[func] = pdev;
1471 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1472 if (unlikely(func > MAX_CHAN_FUNC))
1473 goto error;
1474 pvt->pci_ch[slot - 4][func] = pdev;
1475 } else if (!slot && !func)
1476 pvt->pci_noncore = pdev;
1477 else
1478 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001479
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001480 debugf0("Associated fn %d.%d, dev = %p, socket %d\n",
1481 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1482 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001483
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001484 if (PCI_SLOT(pdev->devfn) == 3 &&
1485 PCI_FUNC(pdev->devfn) == 2)
1486 pvt->is_registered = 1;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001487 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001488
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001489 return 0;
1490
1491error:
1492 i7core_printk(KERN_ERR, "Device %d, function %d "
1493 "is out of the expected range\n",
1494 slot, func);
1495 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001496}
1497
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001498/****************************************************************************
1499 Error check routines
1500 ****************************************************************************/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001501static void i7core_rdimm_update_csrow(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001502 const int chan,
1503 const int dimm,
1504 const int add)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001505{
1506 char *msg;
1507 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001508 int row = pvt->csrow_map[chan][dimm], i;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001509
1510 for (i = 0; i < add; i++) {
1511 msg = kasprintf(GFP_KERNEL, "Corrected error "
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001512 "(Socket=%d channel=%d dimm=%d)",
1513 pvt->i7core_dev->socket, chan, dimm);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001514
1515 edac_mc_handle_fbd_ce(mci, row, 0, msg);
1516 kfree (msg);
1517 }
1518}
1519
1520static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001521 const int chan,
1522 const int new0,
1523 const int new1,
1524 const int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001525{
1526 struct i7core_pvt *pvt = mci->pvt_info;
1527 int add0 = 0, add1 = 0, add2 = 0;
1528 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001529 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001530 /* Updates CE counters */
1531
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001532 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1533 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1534 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001535
1536 if (add2 < 0)
1537 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001538 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001539
1540 if (add1 < 0)
1541 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001542 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001543
1544 if (add0 < 0)
1545 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001546 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001547 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001548 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001549
1550 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001551 pvt->rdimm_last_ce_count[chan][2] = new2;
1552 pvt->rdimm_last_ce_count[chan][1] = new1;
1553 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001554
1555 /*updated the edac core */
1556 if (add0 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001557 i7core_rdimm_update_csrow(mci, chan, 0, add0);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001558 if (add1 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001559 i7core_rdimm_update_csrow(mci, chan, 1, add1);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001560 if (add2 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001561 i7core_rdimm_update_csrow(mci, chan, 2, add2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001562
1563}
1564
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001565static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001566{
1567 struct i7core_pvt *pvt = mci->pvt_info;
1568 u32 rcv[3][2];
1569 int i, new0, new1, new2;
1570
1571 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001572 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001573 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001574 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001575 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001576 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001577 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001578 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001579 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001580 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001581 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001582 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001583 &rcv[2][1]);
1584 for (i = 0 ; i < 3; i++) {
1585 debugf3("MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1586 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
1587 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001588 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001589 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1590 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1591 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1592 } else {
1593 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1594 DIMM_BOT_COR_ERR(rcv[i][0]);
1595 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1596 DIMM_BOT_COR_ERR(rcv[i][1]);
1597 new2 = 0;
1598 }
1599
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001600 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001601 }
1602}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001603
1604/* This function is based on the device 3 function 4 registers as described on:
1605 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1606 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1607 * also available at:
1608 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1609 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001610static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001611{
1612 struct i7core_pvt *pvt = mci->pvt_info;
1613 u32 rcv1, rcv0;
1614 int new0, new1, new2;
1615
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001616 if (!pvt->pci_mcr[4]) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001617 debugf0("%s MCR registers not found\n", __func__);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001618 return;
1619 }
1620
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001621 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001622 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1623 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001624
1625 /* Store the new values */
1626 new2 = DIMM2_COR_ERR(rcv1);
1627 new1 = DIMM1_COR_ERR(rcv0);
1628 new0 = DIMM0_COR_ERR(rcv0);
1629
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001630 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001631 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001632 /* Updates CE counters */
1633 int add0, add1, add2;
1634
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001635 add2 = new2 - pvt->udimm_last_ce_count[2];
1636 add1 = new1 - pvt->udimm_last_ce_count[1];
1637 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001638
1639 if (add2 < 0)
1640 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001641 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001642
1643 if (add1 < 0)
1644 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001645 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001646
1647 if (add0 < 0)
1648 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001649 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001650
1651 if (add0 | add1 | add2)
1652 i7core_printk(KERN_ERR, "New Corrected error(s): "
1653 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1654 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001655 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001656 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001657
1658 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001659 pvt->udimm_last_ce_count[2] = new2;
1660 pvt->udimm_last_ce_count[1] = new1;
1661 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001662}
1663
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001664/*
1665 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1666 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001667 * Nehalem are defined as family 0x06, model 0x1a
1668 *
1669 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001670 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001671 * m->status MSR_IA32_MC8_STATUS
1672 * m->addr MSR_IA32_MC8_ADDR
1673 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001674 * In the case of Nehalem, the error information is masked at .status and .misc
1675 * fields
1676 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001677static void i7core_mce_output_error(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001678 const struct mce *m)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001679{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001680 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001681 char *type, *optype, *err, *msg;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001682 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001683 u32 optypenum = (m->status >> 4) & 0x07;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001684 u32 core_err_cnt = (m->status >> 38) && 0x7fff;
1685 u32 dimm = (m->misc >> 16) & 0x3;
1686 u32 channel = (m->misc >> 18) & 0x3;
1687 u32 syndrome = m->misc >> 32;
1688 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001689 int csrow;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001690
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001691 if (m->mcgstatus & 1)
1692 type = "FATAL";
1693 else
1694 type = "NON_FATAL";
1695
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001696 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001697 case 0:
1698 optype = "generic undef request";
1699 break;
1700 case 1:
1701 optype = "read error";
1702 break;
1703 case 2:
1704 optype = "write error";
1705 break;
1706 case 3:
1707 optype = "addr/cmd error";
1708 break;
1709 case 4:
1710 optype = "scrubbing error";
1711 break;
1712 default:
1713 optype = "reserved";
1714 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001715 }
1716
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001717 switch (errnum) {
1718 case 16:
1719 err = "read ECC error";
1720 break;
1721 case 17:
1722 err = "RAS ECC error";
1723 break;
1724 case 18:
1725 err = "write parity error";
1726 break;
1727 case 19:
1728 err = "redundacy loss";
1729 break;
1730 case 20:
1731 err = "reserved";
1732 break;
1733 case 21:
1734 err = "memory range error";
1735 break;
1736 case 22:
1737 err = "RTID out of range";
1738 break;
1739 case 23:
1740 err = "address parity error";
1741 break;
1742 case 24:
1743 err = "byte enable parity error";
1744 break;
1745 default:
1746 err = "unknown";
1747 }
1748
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001749 /* FIXME: should convert addr into bank and rank information */
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001750 msg = kasprintf(GFP_ATOMIC,
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001751 "%s (addr = 0x%08llx, cpu=%d, Dimm=%d, Channel=%d, "
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001752 "syndrome=0x%08x, count=%d, Err=%08llx:%08llx (%s: %s))\n",
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001753 type, (long long) m->addr, m->cpu, dimm, channel,
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001754 syndrome, core_err_cnt, (long long)m->status,
1755 (long long)m->misc, optype, err);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001756
1757 debugf0("%s", msg);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001758
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001759 csrow = pvt->csrow_map[channel][dimm];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001760
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001761 /* Call the helper to output message */
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001762 if (m->mcgstatus & 1)
1763 edac_mc_handle_fbd_ue(mci, csrow, 0,
1764 0 /* FIXME: should be channel here */, msg);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001765 else if (!pvt->is_registered)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001766 edac_mc_handle_fbd_ce(mci, csrow,
1767 0 /* FIXME: should be channel here */, msg);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001768
1769 kfree(msg);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001770}
1771
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001772/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001773 * i7core_check_error Retrieve and process errors reported by the
1774 * hardware. Called by the Core module.
1775 */
1776static void i7core_check_error(struct mem_ctl_info *mci)
1777{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001778 struct i7core_pvt *pvt = mci->pvt_info;
1779 int i;
1780 unsigned count = 0;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001781 struct mce *m;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001782
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001783 /*
1784 * MCE first step: Copy all mce errors into a temporary buffer
1785 * We use a double buffering here, to reduce the risk of
1786 * loosing an error.
1787 */
1788 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001789 count = (pvt->mce_out + MCE_LOG_LEN - pvt->mce_in)
1790 % MCE_LOG_LEN;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001791 if (!count)
Vernon Mauery8a311e12010-04-16 19:40:19 -03001792 goto check_ce_error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001793
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001794 m = pvt->mce_outentry;
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001795 if (pvt->mce_in + count > MCE_LOG_LEN) {
1796 unsigned l = MCE_LOG_LEN - pvt->mce_in;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001797
1798 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * l);
1799 smp_wmb();
1800 pvt->mce_in = 0;
1801 count -= l;
1802 m += l;
1803 }
1804 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * count);
1805 smp_wmb();
1806 pvt->mce_in += count;
1807
1808 smp_rmb();
1809 if (pvt->mce_overrun) {
1810 i7core_printk(KERN_ERR, "Lost %d memory errors\n",
1811 pvt->mce_overrun);
1812 smp_wmb();
1813 pvt->mce_overrun = 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001814 }
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001815
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001816 /*
1817 * MCE second step: parse errors and display
1818 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001819 for (i = 0; i < count; i++)
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001820 i7core_mce_output_error(mci, &pvt->mce_outentry[i]);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001821
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001822 /*
1823 * Now, let's increment CE error counts
1824 */
Vernon Mauery8a311e12010-04-16 19:40:19 -03001825check_ce_error:
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001826 if (!pvt->is_registered)
1827 i7core_udimm_check_mc_ecc_err(mci);
1828 else
1829 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001830}
1831
1832/*
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001833 * i7core_mce_check_error Replicates mcelog routine to get errors
1834 * This routine simply queues mcelog errors, and
1835 * return. The error itself should be handled later
1836 * by i7core_check_error.
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001837 * WARNING: As this routine should be called at NMI time, extra care should
1838 * be taken to avoid deadlocks, and to be as fast as possible.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001839 */
1840static int i7core_mce_check_error(void *priv, struct mce *mce)
1841{
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001842 struct mem_ctl_info *mci = priv;
1843 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001844
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001845 /*
1846 * Just let mcelog handle it if the error is
1847 * outside the memory controller
1848 */
1849 if (((mce->status & 0xffff) >> 7) != 1)
1850 return 0;
1851
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001852 /* Bank 8 registers are the only ones that we know how to handle */
1853 if (mce->bank != 8)
1854 return 0;
1855
Randy Dunlap3b918c12009-11-08 01:36:40 -02001856#ifdef CONFIG_SMP
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001857 /* Only handle if it is the right mc controller */
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001858 if (cpu_data(mce->cpu).phys_proc_id != pvt->i7core_dev->socket)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001859 return 0;
Randy Dunlap3b918c12009-11-08 01:36:40 -02001860#endif
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001861
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001862 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001863 if ((pvt->mce_out + 1) % MCE_LOG_LEN == pvt->mce_in) {
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001864 smp_wmb();
1865 pvt->mce_overrun++;
1866 return 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001867 }
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001868
1869 /* Copy memory error at the ringbuffer */
1870 memcpy(&pvt->mce_entry[pvt->mce_out], mce, sizeof(*mce));
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001871 smp_wmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001872 pvt->mce_out = (pvt->mce_out + 1) % MCE_LOG_LEN;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001873
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001874 /* Handle fatal errors immediately */
1875 if (mce->mcgstatus & 1)
1876 i7core_check_error(mci);
1877
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001878 /* Advice mcelog that the error were handled */
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001879 return 1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001880}
1881
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001882static int i7core_register_mci(struct i7core_dev *i7core_dev,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001883 const int num_channels, const int num_csrows)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001884{
1885 struct mem_ctl_info *mci;
1886 struct i7core_pvt *pvt;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -03001887 int csrow = 0;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001888 int rc;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001889
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001890 /* allocate a new MC control structure */
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001891 mci = edac_mc_alloc(sizeof(*pvt), num_csrows, num_channels,
1892 i7core_dev->socket);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001893 if (unlikely(!mci))
1894 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001895
Mauro Carvalho Chehab3cfd0142010-08-10 23:23:46 -03001896 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
1897 __func__, mci, &i7core_dev->pdev[0]->dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001898
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001899 /* record ptr to the generic device */
1900 mci->dev = &i7core_dev->pdev[0]->dev;
1901
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001902 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001903 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001904
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001905 /*
1906 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
1907 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
1908 * memory channels
1909 */
1910 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001911 mci->edac_ctl_cap = EDAC_FLAG_NONE;
1912 mci->edac_cap = EDAC_FLAG_NONE;
1913 mci->mod_name = "i7core_edac.c";
1914 mci->mod_ver = I7CORE_REVISION;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001915 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d",
1916 i7core_dev->socket);
1917 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001918 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001919
1920 if (pvt->is_registered)
1921 mci->mc_driver_sysfs_attributes = i7core_sysfs_rdimm_attrs;
1922 else
1923 mci->mc_driver_sysfs_attributes = i7core_sysfs_udimm_attrs;
1924
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001925 /* Set the function pointer to an actual operation function */
1926 mci->edac_check = i7core_check_error;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001927
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001928 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001929 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001930 if (unlikely(rc < 0))
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001931 goto fail;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001932
1933 /* Get dimm basic config */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001934 get_dimm_config(mci, &csrow);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001935
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001936 /* add this new MC control structure to EDAC's list of MCs */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03001937 if (unlikely(edac_mc_add_mc(mci))) {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001938 debugf0("MC: " __FILE__
1939 ": %s(): failed edac_mc_add_mc()\n", __func__);
1940 /* FIXME: perhaps some code should go here that disables error
1941 * reporting if we just enabled it
1942 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03001943
1944 rc = -EINVAL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001945 goto fail;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001946 }
1947
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001948 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001949 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001950 pvt->inject.dimm = -1;
1951 pvt->inject.rank = -1;
1952 pvt->inject.bank = -1;
1953 pvt->inject.page = -1;
1954 pvt->inject.col = -1;
1955
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001956 /* Registers on edac_mce in order to receive memory errors */
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001957 pvt->edac_mce.priv = mci;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001958 pvt->edac_mce.check_error = i7core_mce_check_error;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001959
Mauro Carvalho Chehab6ee7dd52010-08-10 23:24:16 -03001960 /* allocating generic PCI control info */
1961 pvt->i7core_pci = edac_pci_create_generic_ctl(&i7core_dev->pdev[0]->dev,
1962 EDAC_MOD_STR);
1963 if (unlikely(!pvt->i7core_pci)) {
1964 printk(KERN_WARNING
1965 "%s(): Unable to create PCI control\n",
1966 __func__);
1967 printk(KERN_WARNING
1968 "%s(): PCI error report via EDAC not setup\n",
1969 __func__);
1970 }
1971
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001972 rc = edac_mce_register(&pvt->edac_mce);
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001973 if (unlikely(rc < 0)) {
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001974 debugf0("MC: " __FILE__
1975 ": %s(): failed edac_mce_register()\n", __func__);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001976 }
1977
1978fail:
Tony Luckd4d1ef42010-05-18 10:53:25 -03001979 if (rc < 0)
1980 edac_mc_free(mci);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001981 return rc;
1982}
1983
1984/*
1985 * i7core_probe Probe for ONE instance of device to see if it is
1986 * present.
1987 * return:
1988 * 0 for FOUND a device
1989 * < 0 for error code
1990 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03001991
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001992static int __devinit i7core_probe(struct pci_dev *pdev,
1993 const struct pci_device_id *id)
1994{
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001995 int rc;
1996 struct i7core_dev *i7core_dev;
1997
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03001998 /* get the pci devices we want to reserve for our use */
1999 mutex_lock(&i7core_edac_lock);
2000
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002001 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002002 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002003 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002004 if (unlikely(probed >= 1)) {
2005 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002006 return -EINVAL;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002007 }
2008 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03002009
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03002010 rc = i7core_get_devices(pci_dev_table);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002011 if (unlikely(rc < 0))
2012 goto fail0;
2013
2014 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
2015 int channels;
2016 int csrows;
2017
2018 /* Check the number of active and not disabled channels */
2019 rc = i7core_get_active_channels(i7core_dev->socket,
2020 &channels, &csrows);
2021 if (unlikely(rc < 0))
2022 goto fail1;
2023
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002024 rc = i7core_register_mci(i7core_dev, channels, csrows);
2025 if (unlikely(rc < 0))
2026 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002027 }
2028
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002029 i7core_printk(KERN_INFO, "Driver loaded.\n");
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03002030
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002031 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002032 return 0;
2033
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002034fail1:
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03002035 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002036fail0:
2037 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002038 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002039}
2040
2041/*
2042 * i7core_remove destructor for one instance of device
2043 *
2044 */
2045static void __devexit i7core_remove(struct pci_dev *pdev)
2046{
2047 struct mem_ctl_info *mci;
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002048 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -03002049 struct i7core_pvt *pvt;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002050
2051 debugf0(__FILE__ ": %s()\n", __func__);
2052
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002053 /*
2054 * we have a trouble here: pdev value for removal will be wrong, since
2055 * it will point to the X58 register used to detect that the machine
2056 * is a Nehalem or upper design. However, due to the way several PCI
2057 * devices are grouped together to provide MC functionality, we need
2058 * to use a different method for releasing the devices
2059 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002060
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002061 mutex_lock(&i7core_edac_lock);
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002062 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -03002063 mci = find_mci_by_dev(&i7core_dev->pdev[0]->dev);
2064 if (unlikely(!mci || !mci->pvt_info)) {
Mauro Carvalho Chehab3cfd0142010-08-10 23:23:46 -03002065 debugf0("MC: " __FILE__ ": %s(): dev = %p\n",
2066 __func__, &i7core_dev->pdev[0]->dev);
2067
2068 i7core_printk(KERN_ERR,
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -03002069 "Couldn't find mci hanler\n");
2070 } else {
2071 pvt = mci->pvt_info;
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002072 i7core_dev = pvt->i7core_dev;
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -03002073
Mauro Carvalho Chehab3cfd0142010-08-10 23:23:46 -03002074 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
2075 __func__, mci, &i7core_dev->pdev[0]->dev);
2076
Mauro Carvalho Chehab41ba6c12010-08-11 00:58:11 -03002077 /* Disable MCE NMI handler */
2078 edac_mce_unregister(&pvt->edac_mce);
2079
2080 /* Disable EDAC polling */
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -03002081 if (likely(pvt->i7core_pci))
2082 edac_pci_release_generic_ctl(pvt->i7core_pci);
2083 else
2084 i7core_printk(KERN_ERR,
2085 "Couldn't find mem_ctl_info for socket %d\n",
2086 i7core_dev->socket);
2087 pvt->i7core_pci = NULL;
2088
Mauro Carvalho Chehab41ba6c12010-08-11 00:58:11 -03002089 /* Remove MC sysfs nodes */
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -03002090 edac_mc_del_mc(&i7core_dev->pdev[0]->dev);
2091
Mauro Carvalho Chehabaccf74f2010-08-16 18:34:37 -03002092 debugf1("%s: free mci struct\n", mci->ctl_name);
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002093 kfree(mci->ctl_name);
2094 edac_mc_free(mci);
Mauro Carvalho Chehab41ba6c12010-08-11 00:58:11 -03002095
2096 /* Release PCI resources */
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002097 i7core_put_devices(i7core_dev);
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002098 }
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03002099 list_del(&i7core_dev->list);
2100 kfree(i7core_dev);
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002101 }
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002102 probed--;
2103
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002104 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002105}
2106
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002107MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2108
2109/*
2110 * i7core_driver pci_driver structure for this module
2111 *
2112 */
2113static struct pci_driver i7core_driver = {
2114 .name = "i7core_edac",
2115 .probe = i7core_probe,
2116 .remove = __devexit_p(i7core_remove),
2117 .id_table = i7core_pci_tbl,
2118};
2119
2120/*
2121 * i7core_init Module entry function
2122 * Try to initialize this module for its devices
2123 */
2124static int __init i7core_init(void)
2125{
2126 int pci_rc;
2127
2128 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2129
2130 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2131 opstate_init();
2132
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03002133 if (use_pci_fixup)
2134 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002135
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002136 pci_rc = pci_register_driver(&i7core_driver);
2137
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002138 if (pci_rc >= 0)
2139 return 0;
2140
2141 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2142 pci_rc);
2143
2144 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002145}
2146
2147/*
2148 * i7core_exit() Module exit function
2149 * Unregister the driver
2150 */
2151static void __exit i7core_exit(void)
2152{
2153 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2154 pci_unregister_driver(&i7core_driver);
2155}
2156
2157module_init(i7core_init);
2158module_exit(i7core_exit);
2159
2160MODULE_LICENSE("GPL");
2161MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
2162MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2163MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2164 I7CORE_REVISION);
2165
2166module_param(edac_op_state, int, 0444);
2167MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");