blob: 0fd5b85a0f756745bd1074ae673e89d6c81a237a [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 Chehaba0c36a12009-06-22 22:41:15 -030042/*
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030043 * This is used for Nehalem-EP and Nehalem-EX devices, where the non-core
44 * registers start at bus 255, and are not reported by BIOS.
45 * We currently find devices with only 2 sockets. In order to support more QPI
46 * Quick Path Interconnect, just increment this number.
47 */
48#define MAX_SOCKET_BUSES 2
49
50
51/*
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030052 * Alter this version for the module when modifications are made
53 */
54#define I7CORE_REVISION " Ver: 1.0.0 " __DATE__
55#define EDAC_MOD_STR "i7core_edac"
56
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030057/*
58 * Debug macros
59 */
60#define i7core_printk(level, fmt, arg...) \
61 edac_printk(level, "i7core", fmt, ##arg)
62
63#define i7core_mc_printk(mci, level, fmt, arg...) \
64 edac_mc_chipset_printk(mci, level, "i7core", fmt, ##arg)
65
66/*
67 * i7core Memory Controller Registers
68 */
69
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030070 /* OFFSETS for Device 0 Function 0 */
71
72#define MC_CFG_CONTROL 0x90
73
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030074 /* OFFSETS for Device 3 Function 0 */
75
76#define MC_CONTROL 0x48
77#define MC_STATUS 0x4c
78#define MC_MAX_DOD 0x64
79
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030080/*
81 * OFFSETS for Device 3 Function 4, as inicated on Xeon 5500 datasheet:
82 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
83 */
84
85#define MC_TEST_ERR_RCV1 0x60
86 #define DIMM2_COR_ERR(r) ((r) & 0x7fff)
87
88#define MC_TEST_ERR_RCV0 0x64
89 #define DIMM1_COR_ERR(r) (((r) >> 16) & 0x7fff)
90 #define DIMM0_COR_ERR(r) ((r) & 0x7fff)
91
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -030092/* OFFSETS for Device 3 Function 2, as inicated on Xeon 5500 datasheet */
93#define MC_COR_ECC_CNT_0 0x80
94#define MC_COR_ECC_CNT_1 0x84
95#define MC_COR_ECC_CNT_2 0x88
96#define MC_COR_ECC_CNT_3 0x8c
97#define MC_COR_ECC_CNT_4 0x90
98#define MC_COR_ECC_CNT_5 0x94
99
100#define DIMM_TOP_COR_ERR(r) (((r) >> 16) & 0x7fff)
101#define DIMM_BOT_COR_ERR(r) ((r) & 0x7fff)
102
103
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300104 /* OFFSETS for Devices 4,5 and 6 Function 0 */
105
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300106#define MC_CHANNEL_DIMM_INIT_PARAMS 0x58
107 #define THREE_DIMMS_PRESENT (1 << 24)
108 #define SINGLE_QUAD_RANK_PRESENT (1 << 23)
109 #define QUAD_RANK_PRESENT (1 << 22)
110 #define REGISTERED_DIMM (1 << 15)
111
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300112#define MC_CHANNEL_MAPPER 0x60
113 #define RDLCH(r, ch) ((((r) >> (3 + (ch * 6))) & 0x07) - 1)
114 #define WRLCH(r, ch) ((((r) >> (ch * 6)) & 0x07) - 1)
115
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300116#define MC_CHANNEL_RANK_PRESENT 0x7c
117 #define RANK_PRESENT_MASK 0xffff
118
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300119#define MC_CHANNEL_ADDR_MATCH 0xf0
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300120#define MC_CHANNEL_ERROR_MASK 0xf8
121#define MC_CHANNEL_ERROR_INJECT 0xfc
122 #define INJECT_ADDR_PARITY 0x10
123 #define INJECT_ECC 0x08
124 #define MASK_CACHELINE 0x06
125 #define MASK_FULL_CACHELINE 0x06
126 #define MASK_MSB32_CACHELINE 0x04
127 #define MASK_LSB32_CACHELINE 0x02
128 #define NO_MASK_CACHELINE 0x00
129 #define REPEAT_EN 0x01
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300130
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300131 /* OFFSETS for Devices 4,5 and 6 Function 1 */
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300132
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300133#define MC_DOD_CH_DIMM0 0x48
134#define MC_DOD_CH_DIMM1 0x4c
135#define MC_DOD_CH_DIMM2 0x50
136 #define RANKOFFSET_MASK ((1 << 12) | (1 << 11) | (1 << 10))
137 #define RANKOFFSET(x) ((x & RANKOFFSET_MASK) >> 10)
138 #define DIMM_PRESENT_MASK (1 << 9)
139 #define DIMM_PRESENT(x) (((x) & DIMM_PRESENT_MASK) >> 9)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300140 #define MC_DOD_NUMBANK_MASK ((1 << 8) | (1 << 7))
141 #define MC_DOD_NUMBANK(x) (((x) & MC_DOD_NUMBANK_MASK) >> 7)
142 #define MC_DOD_NUMRANK_MASK ((1 << 6) | (1 << 5))
143 #define MC_DOD_NUMRANK(x) (((x) & MC_DOD_NUMRANK_MASK) >> 5)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300144 #define MC_DOD_NUMROW_MASK ((1 << 4) | (1 << 3) | (1 << 2))
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300145 #define MC_DOD_NUMROW(x) (((x) & MC_DOD_NUMROW_MASK) >> 2)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300146 #define MC_DOD_NUMCOL_MASK 3
147 #define MC_DOD_NUMCOL(x) ((x) & MC_DOD_NUMCOL_MASK)
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300148
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300149#define MC_RANK_PRESENT 0x7c
150
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300151#define MC_SAG_CH_0 0x80
152#define MC_SAG_CH_1 0x84
153#define MC_SAG_CH_2 0x88
154#define MC_SAG_CH_3 0x8c
155#define MC_SAG_CH_4 0x90
156#define MC_SAG_CH_5 0x94
157#define MC_SAG_CH_6 0x98
158#define MC_SAG_CH_7 0x9c
159
160#define MC_RIR_LIMIT_CH_0 0x40
161#define MC_RIR_LIMIT_CH_1 0x44
162#define MC_RIR_LIMIT_CH_2 0x48
163#define MC_RIR_LIMIT_CH_3 0x4C
164#define MC_RIR_LIMIT_CH_4 0x50
165#define MC_RIR_LIMIT_CH_5 0x54
166#define MC_RIR_LIMIT_CH_6 0x58
167#define MC_RIR_LIMIT_CH_7 0x5C
168#define MC_RIR_LIMIT_MASK ((1 << 10) - 1)
169
170#define MC_RIR_WAY_CH 0x80
171 #define MC_RIR_WAY_OFFSET_MASK (((1 << 14) - 1) & ~0x7)
172 #define MC_RIR_WAY_RANK_MASK 0x7
173
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300174/*
175 * i7core structs
176 */
177
178#define NUM_CHANS 3
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300179#define MAX_DIMMS 3 /* Max DIMMS per channel */
180#define MAX_MCR_FUNC 4
181#define MAX_CHAN_FUNC 3
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300182
183struct i7core_info {
184 u32 mc_control;
185 u32 mc_status;
186 u32 max_dod;
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300187 u32 ch_map;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300188};
189
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300190
191struct i7core_inject {
192 int enable;
193
194 u32 section;
195 u32 type;
196 u32 eccmask;
197
198 /* Error address mask */
199 int channel, dimm, rank, bank, page, col;
200};
201
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300202struct i7core_channel {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300203 u32 ranks;
204 u32 dimms;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300205};
206
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300207struct pci_id_descr {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300208 int dev;
209 int func;
210 int dev_id;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300211 int optional;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300212};
213
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300214struct pci_id_table {
215 struct pci_id_descr *descr;
216 int n_devs;
217};
218
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300219struct i7core_dev {
220 struct list_head list;
221 u8 socket;
222 struct pci_dev **pdev;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300223 int n_devs;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300224 struct mem_ctl_info *mci;
225};
226
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300227struct i7core_pvt {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300228 struct pci_dev *pci_noncore;
229 struct pci_dev *pci_mcr[MAX_MCR_FUNC + 1];
230 struct pci_dev *pci_ch[NUM_CHANS][MAX_CHAN_FUNC + 1];
231
232 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300233
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300234 struct i7core_info info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300235 struct i7core_inject inject;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300236 struct i7core_channel channel[NUM_CHANS];
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300237
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300238 int channels; /* Number of active channels */
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300239
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300240 int ce_count_available;
241 int csrow_map[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300242
243 /* ECC corrected errors counts per udimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300244 unsigned long udimm_ce_count[MAX_DIMMS];
245 int udimm_last_ce_count[MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300246 /* ECC corrected errors counts per rdimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300247 unsigned long rdimm_ce_count[NUM_CHANS][MAX_DIMMS];
248 int rdimm_last_ce_count[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300249
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300250 unsigned int is_registered;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300251
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300252 /* mcelog glue */
253 struct edac_mce edac_mce;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300254
255 /* Fifo double buffers */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300256 struct mce mce_entry[MCE_LOG_LEN];
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300257 struct mce mce_outentry[MCE_LOG_LEN];
258
259 /* Fifo in/out counters */
260 unsigned mce_in, mce_out;
261
262 /* Count indicator to show errors not got */
263 unsigned mce_overrun;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300264};
265
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300266/* Static vars */
267static LIST_HEAD(i7core_edac_list);
268static DEFINE_MUTEX(i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300269
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300270#define PCI_DESCR(device, function, device_id) \
271 .dev = (device), \
272 .func = (function), \
273 .dev_id = (device_id)
274
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300275struct pci_id_descr pci_dev_descr_i7core_nehalem[] = {
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300276 /* Memory controller */
277 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_I7_MCR) },
278 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_I7_MC_TAD) },
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300279 /* Exists only for RDIMM */
280 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_I7_MC_RAS), .optional = 1 },
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300281 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_I7_MC_TEST) },
282
283 /* Channel 0 */
284 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH0_CTRL) },
285 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH0_ADDR) },
286 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH0_RANK) },
287 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH0_TC) },
288
289 /* Channel 1 */
290 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH1_CTRL) },
291 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH1_ADDR) },
292 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH1_RANK) },
293 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH1_TC) },
294
295 /* Channel 2 */
296 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH2_CTRL) },
297 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH2_ADDR) },
298 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH2_RANK) },
299 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH2_TC) },
Mauro Carvalho Chehab310cbb72009-07-17 00:09:10 -0300300
301 /* Generic Non-core registers */
302 /*
303 * This is the PCI device on i7core and on Xeon 35xx (8086:2c41)
304 * On Xeon 55xx, however, it has a different id (8086:2c40). So,
305 * the probing code needs to test for the other address in case of
306 * failure of this one
307 */
Mauro Carvalho Chehabfd382652009-10-14 06:07:07 -0300308 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_I7_NONCORE) },
Mauro Carvalho Chehab310cbb72009-07-17 00:09:10 -0300309
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300310};
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300311
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300312struct pci_id_descr pci_dev_descr_lynnfield[] = {
313 { PCI_DESCR( 3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR) },
314 { PCI_DESCR( 3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD) },
315 { PCI_DESCR( 3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST) },
316
317 { PCI_DESCR( 4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL) },
318 { PCI_DESCR( 4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR) },
319 { PCI_DESCR( 4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK) },
320 { PCI_DESCR( 4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC) },
321
Mauro Carvalho Chehab508fa172009-10-14 13:44:37 -0300322 { PCI_DESCR( 5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL) },
323 { PCI_DESCR( 5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR) },
324 { PCI_DESCR( 5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK) },
325 { PCI_DESCR( 5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC) },
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300326
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300327 /*
328 * This is the PCI device has an alternate address on some
329 * processors like Core i7 860
330 */
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300331 { PCI_DESCR( 0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE) },
332};
333
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300334struct pci_id_descr pci_dev_descr_i7core_westmere[] = {
335 /* Memory controller */
336 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR_REV2) },
337 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD_REV2) },
338 /* Exists only for RDIMM */
339 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_RAS_REV2), .optional = 1 },
340 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST_REV2) },
341
342 /* Channel 0 */
343 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL_REV2) },
344 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR_REV2) },
345 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK_REV2) },
346 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC_REV2) },
347
348 /* Channel 1 */
349 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL_REV2) },
350 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR_REV2) },
351 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK_REV2) },
352 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC_REV2) },
353
354 /* Channel 2 */
355 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_CTRL_REV2) },
356 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_ADDR_REV2) },
357 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_RANK_REV2) },
358 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_TC_REV2) },
359
360 /* Generic Non-core registers */
361 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2) },
362
363};
364
365#define PCI_ID_TABLE_ENTRY(A) { A, ARRAY_SIZE(A) }
366struct pci_id_table pci_dev_table[] = {
367 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_nehalem),
368 PCI_ID_TABLE_ENTRY(pci_dev_descr_lynnfield),
369 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_westmere),
370};
371
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300372/*
373 * pci_device_id table for which devices we are looking for
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300374 */
375static const struct pci_device_id i7core_pci_tbl[] __devinitdata = {
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -0300376 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300377 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300378 {0,} /* 0 terminated list. */
379};
380
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300381static struct edac_pci_ctl_info *i7core_pci;
382
383/****************************************************************************
384 Anciliary status routines
385 ****************************************************************************/
386
387 /* MC_CONTROL bits */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300388#define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch)))
389#define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300390
391 /* MC_STATUS bits */
Keith Mannthey61053fd2009-09-02 23:46:59 -0300392#define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300393#define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300394
395 /* MC_MAX_DOD read functions */
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300396static inline int numdimms(u32 dimms)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300397{
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300398 return (dimms & 0x3) + 1;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300399}
400
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300401static inline int numrank(u32 rank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300402{
403 static int ranks[4] = { 1, 2, 4, -EINVAL };
404
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300405 return ranks[rank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300406}
407
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300408static inline int numbank(u32 bank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300409{
410 static int banks[4] = { 4, 8, 16, -EINVAL };
411
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300412 return banks[bank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300413}
414
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300415static inline int numrow(u32 row)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300416{
417 static int rows[8] = {
418 1 << 12, 1 << 13, 1 << 14, 1 << 15,
419 1 << 16, -EINVAL, -EINVAL, -EINVAL,
420 };
421
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300422 return rows[row & 0x7];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300423}
424
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300425static inline int numcol(u32 col)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300426{
427 static int cols[8] = {
428 1 << 10, 1 << 11, 1 << 12, -EINVAL,
429 };
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300430 return cols[col & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300431}
432
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300433static struct i7core_dev *get_i7core_dev(u8 socket)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300434{
435 struct i7core_dev *i7core_dev;
436
437 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
438 if (i7core_dev->socket == socket)
439 return i7core_dev;
440 }
441
442 return NULL;
443}
444
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300445/****************************************************************************
446 Memory check routines
447 ****************************************************************************/
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300448static struct pci_dev *get_pdev_slot_func(u8 socket, unsigned slot,
449 unsigned func)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300450{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300451 struct i7core_dev *i7core_dev = get_i7core_dev(socket);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300452 int i;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300453
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300454 if (!i7core_dev)
455 return NULL;
456
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300457 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300458 if (!i7core_dev->pdev[i])
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300459 continue;
460
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300461 if (PCI_SLOT(i7core_dev->pdev[i]->devfn) == slot &&
462 PCI_FUNC(i7core_dev->pdev[i]->devfn) == func) {
463 return i7core_dev->pdev[i];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300464 }
465 }
466
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300467 return NULL;
468}
469
Mauro Carvalho Chehabec6df242009-07-18 10:44:30 -0300470/**
471 * i7core_get_active_channels() - gets the number of channels and csrows
472 * @socket: Quick Path Interconnect socket
473 * @channels: Number of channels that will be returned
474 * @csrows: Number of csrows found
475 *
476 * Since EDAC core needs to know in advance the number of available channels
477 * and csrows, in order to allocate memory for csrows/channels, it is needed
478 * to run two similar steps. At the first step, implemented on this function,
479 * it checks the number of csrows/channels present at one socket.
480 * this is used in order to properly allocate the size of mci components.
481 *
482 * It should be noticed that none of the current available datasheets explain
483 * or even mention how csrows are seen by the memory controller. So, we need
484 * to add a fake description for csrows.
485 * So, this driver is attributing one DIMM memory for one csrow.
486 */
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300487static int i7core_get_active_channels(u8 socket, unsigned *channels,
488 unsigned *csrows)
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300489{
490 struct pci_dev *pdev = NULL;
491 int i, j;
492 u32 status, control;
493
494 *channels = 0;
495 *csrows = 0;
496
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300497 pdev = get_pdev_slot_func(socket, 3, 0);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -0300498 if (!pdev) {
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300499 i7core_printk(KERN_ERR, "Couldn't find socket %d fn 3.0!!!\n",
500 socket);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300501 return -ENODEV;
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -0300502 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300503
504 /* Device 3 function 0 reads */
505 pci_read_config_dword(pdev, MC_STATUS, &status);
506 pci_read_config_dword(pdev, MC_CONTROL, &control);
507
508 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300509 u32 dimm_dod[3];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300510 /* Check if the channel is active */
511 if (!(control & (1 << (8 + i))))
512 continue;
513
514 /* Check if the channel is disabled */
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300515 if (status & (1 << i))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300516 continue;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300517
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300518 pdev = get_pdev_slot_func(socket, i + 4, 1);
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300519 if (!pdev) {
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300520 i7core_printk(KERN_ERR, "Couldn't find socket %d "
521 "fn %d.%d!!!\n",
522 socket, i + 4, 1);
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300523 return -ENODEV;
524 }
525 /* Devices 4-6 function 1 */
526 pci_read_config_dword(pdev,
527 MC_DOD_CH_DIMM0, &dimm_dod[0]);
528 pci_read_config_dword(pdev,
529 MC_DOD_CH_DIMM1, &dimm_dod[1]);
530 pci_read_config_dword(pdev,
531 MC_DOD_CH_DIMM2, &dimm_dod[2]);
532
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300533 (*channels)++;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300534
535 for (j = 0; j < 3; j++) {
536 if (!DIMM_PRESENT(dimm_dod[j]))
537 continue;
538 (*csrows)++;
539 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300540 }
541
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -0300542 debugf0("Number of active channels on socket %d: %d\n",
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300543 socket, *channels);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300544
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300545 return 0;
546}
547
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300548static int get_dimm_config(struct mem_ctl_info *mci, int *csrow)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300549{
550 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300551 struct csrow_info *csr;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300552 struct pci_dev *pdev;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300553 int i, j;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300554 unsigned long last_page = 0;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300555 enum edac_type mode;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300556 enum mem_type mtype;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300557
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300558 /* Get data from the MC register, function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300559 pdev = pvt->pci_mcr[0];
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300560 if (!pdev)
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300561 return -ENODEV;
562
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300563 /* Device 3 function 0 reads */
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300564 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control);
565 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status);
566 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod);
567 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300568
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300569 debugf0("QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
Mauro Carvalho Chehab4af91882009-09-24 09:58:26 -0300570 pvt->i7core_dev->socket, pvt->info.mc_control, pvt->info.mc_status,
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300571 pvt->info.max_dod, pvt->info.ch_map);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300572
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300573 if (ECC_ENABLED(pvt)) {
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300574 debugf0("ECC enabled with x%d SDCC\n", ECCx8(pvt) ? 8 : 4);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300575 if (ECCx8(pvt))
576 mode = EDAC_S8ECD8ED;
577 else
578 mode = EDAC_S4ECD4ED;
579 } else {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300580 debugf0("ECC disabled\n");
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300581 mode = EDAC_NONE;
582 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300583
584 /* FIXME: need to handle the error codes */
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300585 debugf0("DOD Max limits: DIMMS: %d, %d-ranked, %d-banked "
586 "x%x x 0x%x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300587 numdimms(pvt->info.max_dod),
588 numrank(pvt->info.max_dod >> 2),
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300589 numbank(pvt->info.max_dod >> 4),
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300590 numrow(pvt->info.max_dod >> 6),
591 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300592
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300593 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300594 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300595
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300596 if (!pvt->pci_ch[i][0])
597 continue;
598
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300599 if (!CH_ACTIVE(pvt, i)) {
600 debugf0("Channel %i is not active\n", i);
601 continue;
602 }
603 if (CH_DISABLED(pvt, i)) {
604 debugf0("Channel %i is disabled\n", i);
605 continue;
606 }
607
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300608 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300609 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300610 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
611
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300612 pvt->channel[i].ranks = (data & QUAD_RANK_PRESENT) ?
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300613 4 : 2;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300614
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300615 if (data & REGISTERED_DIMM)
616 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300617 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300618 mtype = MEM_DDR3;
619#if 0
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300620 if (data & THREE_DIMMS_PRESENT)
621 pvt->channel[i].dimms = 3;
622 else if (data & SINGLE_QUAD_RANK_PRESENT)
623 pvt->channel[i].dimms = 1;
624 else
625 pvt->channel[i].dimms = 2;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300626#endif
627
628 /* Devices 4-6 function 1 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300629 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300630 MC_DOD_CH_DIMM0, &dimm_dod[0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300631 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300632 MC_DOD_CH_DIMM1, &dimm_dod[1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300633 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300634 MC_DOD_CH_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300635
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300636 debugf0("Ch%d phy rd%d, wr%d (0x%08x): "
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300637 "%d ranks, %cDIMMs\n",
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300638 i,
639 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
640 data,
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300641 pvt->channel[i].ranks,
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300642 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300643
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300644 for (j = 0; j < 3; j++) {
645 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300646 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300647
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300648 if (!DIMM_PRESENT(dimm_dod[j]))
649 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300650
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300651 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
652 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
653 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
654 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300655
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300656 /* DDR3 has 8 I/O banks */
657 size = (rows * cols * banks * ranks) >> (20 - 3);
658
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300659 pvt->channel[i].dimms++;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300660
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300661 debugf0("\tdimm %d %d Mb offset: %x, "
662 "bank: %d, rank: %d, row: %#x, col: %#x\n",
663 j, size,
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300664 RANKOFFSET(dimm_dod[j]),
665 banks, ranks, rows, cols);
666
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300667#if PAGE_SHIFT > 20
668 npages = size >> (PAGE_SHIFT - 20);
669#else
670 npages = size << (20 - PAGE_SHIFT);
671#endif
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300672
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300673 csr = &mci->csrows[*csrow];
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300674 csr->first_page = last_page + 1;
675 last_page += npages;
676 csr->last_page = last_page;
677 csr->nr_pages = npages;
678
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300679 csr->page_mask = 0;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300680 csr->grain = 8;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300681 csr->csrow_idx = *csrow;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300682 csr->nr_channels = 1;
683
684 csr->channels[0].chan_idx = i;
685 csr->channels[0].ce_count = 0;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300686
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300687 pvt->csrow_map[i][j] = *csrow;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300688
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300689 switch (banks) {
690 case 4:
691 csr->dtype = DEV_X4;
692 break;
693 case 8:
694 csr->dtype = DEV_X8;
695 break;
696 case 16:
697 csr->dtype = DEV_X16;
698 break;
699 default:
700 csr->dtype = DEV_UNKNOWN;
701 }
702
703 csr->edac_mode = mode;
704 csr->mtype = mtype;
705
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300706 (*csrow)++;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300707 }
708
709 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
710 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
711 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
712 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
713 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
714 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
715 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
716 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300717 debugf1("\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300718 for (j = 0; j < 8; j++)
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300719 debugf1("\t\t%#x\t%#x\t%#x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300720 (value[j] >> 27) & 0x1,
721 (value[j] >> 24) & 0x7,
722 (value[j] && ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300723 }
724
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300725 return 0;
726}
727
728/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300729 Error insertion routines
730 ****************************************************************************/
731
732/* The i7core has independent error injection features per channel.
733 However, to have a simpler code, we don't allow enabling error injection
734 on more than one channel.
735 Also, since a change at an inject parameter will be applied only at enable,
736 we're disabling error injection on all write calls to the sysfs nodes that
737 controls the error code injection.
738 */
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300739static int disable_inject(struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300740{
741 struct i7core_pvt *pvt = mci->pvt_info;
742
743 pvt->inject.enable = 0;
744
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300745 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300746 return -ENODEV;
747
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300748 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300749 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300750
751 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300752}
753
754/*
755 * i7core inject inject.section
756 *
757 * accept and store error injection inject.section value
758 * bit 0 - refers to the lower 32-byte half cacheline
759 * bit 1 - refers to the upper 32-byte half cacheline
760 */
761static ssize_t i7core_inject_section_store(struct mem_ctl_info *mci,
762 const char *data, size_t count)
763{
764 struct i7core_pvt *pvt = mci->pvt_info;
765 unsigned long value;
766 int rc;
767
768 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300769 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300770
771 rc = strict_strtoul(data, 10, &value);
772 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300773 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300774
775 pvt->inject.section = (u32) value;
776 return count;
777}
778
779static ssize_t i7core_inject_section_show(struct mem_ctl_info *mci,
780 char *data)
781{
782 struct i7core_pvt *pvt = mci->pvt_info;
783 return sprintf(data, "0x%08x\n", pvt->inject.section);
784}
785
786/*
787 * i7core inject.type
788 *
789 * accept and store error injection inject.section value
790 * bit 0 - repeat enable - Enable error repetition
791 * bit 1 - inject ECC error
792 * bit 2 - inject parity error
793 */
794static ssize_t i7core_inject_type_store(struct mem_ctl_info *mci,
795 const char *data, size_t count)
796{
797 struct i7core_pvt *pvt = mci->pvt_info;
798 unsigned long value;
799 int rc;
800
801 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300802 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300803
804 rc = strict_strtoul(data, 10, &value);
805 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300806 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300807
808 pvt->inject.type = (u32) value;
809 return count;
810}
811
812static ssize_t i7core_inject_type_show(struct mem_ctl_info *mci,
813 char *data)
814{
815 struct i7core_pvt *pvt = mci->pvt_info;
816 return sprintf(data, "0x%08x\n", pvt->inject.type);
817}
818
819/*
820 * i7core_inject_inject.eccmask_store
821 *
822 * The type of error (UE/CE) will depend on the inject.eccmask value:
823 * Any bits set to a 1 will flip the corresponding ECC bit
824 * Correctable errors can be injected by flipping 1 bit or the bits within
825 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
826 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
827 * uncorrectable error to be injected.
828 */
829static ssize_t i7core_inject_eccmask_store(struct mem_ctl_info *mci,
830 const char *data, size_t count)
831{
832 struct i7core_pvt *pvt = mci->pvt_info;
833 unsigned long value;
834 int rc;
835
836 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300837 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300838
839 rc = strict_strtoul(data, 10, &value);
840 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300841 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300842
843 pvt->inject.eccmask = (u32) value;
844 return count;
845}
846
847static ssize_t i7core_inject_eccmask_show(struct mem_ctl_info *mci,
848 char *data)
849{
850 struct i7core_pvt *pvt = mci->pvt_info;
851 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
852}
853
854/*
855 * i7core_addrmatch
856 *
857 * The type of error (UE/CE) will depend on the inject.eccmask value:
858 * Any bits set to a 1 will flip the corresponding ECC bit
859 * Correctable errors can be injected by flipping 1 bit or the bits within
860 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
861 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
862 * uncorrectable error to be injected.
863 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300864
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300865#define DECLARE_ADDR_MATCH(param, limit) \
866static ssize_t i7core_inject_store_##param( \
867 struct mem_ctl_info *mci, \
868 const char *data, size_t count) \
869{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300870 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300871 long value; \
872 int rc; \
873 \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300874 debugf1("%s()\n", __func__); \
875 pvt = mci->pvt_info; \
876 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300877 if (pvt->inject.enable) \
878 disable_inject(mci); \
879 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300880 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300881 value = -1; \
882 else { \
883 rc = strict_strtoul(data, 10, &value); \
884 if ((rc < 0) || (value >= limit)) \
885 return -EIO; \
886 } \
887 \
888 pvt->inject.param = value; \
889 \
890 return count; \
891} \
892 \
893static ssize_t i7core_inject_show_##param( \
894 struct mem_ctl_info *mci, \
895 char *data) \
896{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300897 struct i7core_pvt *pvt; \
898 \
899 pvt = mci->pvt_info; \
900 debugf1("%s() pvt=%p\n", __func__, pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300901 if (pvt->inject.param < 0) \
902 return sprintf(data, "any\n"); \
903 else \
904 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300905}
906
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300907#define ATTR_ADDR_MATCH(param) \
908 { \
909 .attr = { \
910 .name = #param, \
911 .mode = (S_IRUGO | S_IWUSR) \
912 }, \
913 .show = i7core_inject_show_##param, \
914 .store = i7core_inject_store_##param, \
915 }
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300916
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300917DECLARE_ADDR_MATCH(channel, 3);
918DECLARE_ADDR_MATCH(dimm, 3);
919DECLARE_ADDR_MATCH(rank, 4);
920DECLARE_ADDR_MATCH(bank, 32);
921DECLARE_ADDR_MATCH(page, 0x10000);
922DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300923
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300924static int write_and_test(struct pci_dev *dev, int where, u32 val)
925{
926 u32 read;
927 int count;
928
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300929 debugf0("setting pci %02x:%02x.%x reg=%02x value=%08x\n",
930 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
931 where, val);
932
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300933 for (count = 0; count < 10; count++) {
934 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300935 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300936 pci_write_config_dword(dev, where, val);
937 pci_read_config_dword(dev, where, &read);
938
939 if (read == val)
940 return 0;
941 }
942
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300943 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
944 "write=%08x. Read=%08x\n",
945 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
946 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300947
948 return -EINVAL;
949}
950
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300951/*
952 * This routine prepares the Memory Controller for error injection.
953 * The error will be injected when some process tries to write to the
954 * memory that matches the given criteria.
955 * The criteria can be set in terms of a mask where dimm, rank, bank, page
956 * and col can be specified.
957 * A -1 value for any of the mask items will make the MCU to ignore
958 * that matching criteria for error injection.
959 *
960 * It should be noticed that the error will only happen after a write operation
961 * on a memory that matches the condition. if REPEAT_EN is not enabled at
962 * inject mask, then it will produce just one error. Otherwise, it will repeat
963 * until the injectmask would be cleaned.
964 *
965 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
966 * is reliable enough to check if the MC is using the
967 * three channels. However, this is not clear at the datasheet.
968 */
969static ssize_t i7core_inject_enable_store(struct mem_ctl_info *mci,
970 const char *data, size_t count)
971{
972 struct i7core_pvt *pvt = mci->pvt_info;
973 u32 injectmask;
974 u64 mask = 0;
975 int rc;
976 long enable;
977
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300978 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300979 return 0;
980
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300981 rc = strict_strtoul(data, 10, &enable);
982 if ((rc < 0))
983 return 0;
984
985 if (enable) {
986 pvt->inject.enable = 1;
987 } else {
988 disable_inject(mci);
989 return count;
990 }
991
992 /* Sets pvt->inject.dimm mask */
993 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200994 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300995 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300996 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200997 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300998 else
Alan Cox486dd092009-11-08 01:34:27 -0200999 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001000 }
1001
1002 /* Sets pvt->inject.rank mask */
1003 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001004 mask |= 1LL << 40;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001005 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001006 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -02001007 mask |= (pvt->inject.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001008 else
Alan Cox486dd092009-11-08 01:34:27 -02001009 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001010 }
1011
1012 /* Sets pvt->inject.bank mask */
1013 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001014 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001015 else
Alan Cox486dd092009-11-08 01:34:27 -02001016 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001017
1018 /* Sets pvt->inject.page mask */
1019 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001020 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001021 else
Alan Cox486dd092009-11-08 01:34:27 -02001022 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001023
1024 /* Sets pvt->inject.column mask */
1025 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001026 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001027 else
Alan Cox486dd092009-11-08 01:34:27 -02001028 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001029
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001030 /*
1031 * bit 0: REPEAT_EN
1032 * bits 1-2: MASK_HALF_CACHELINE
1033 * bit 3: INJECT_ECC
1034 * bit 4: INJECT_ADDR_PARITY
1035 */
1036
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001037 injectmask = (pvt->inject.type & 1) |
1038 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001039 (pvt->inject.type & 0x6) << (3 - 1);
1040
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001041 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001042 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001043 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001044
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001045 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001046 MC_CHANNEL_ADDR_MATCH, mask);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001047 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001048 MC_CHANNEL_ADDR_MATCH + 4, mask >> 32L);
1049
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001050 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001051 MC_CHANNEL_ERROR_MASK, pvt->inject.eccmask);
1052
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001053 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001054 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001055
1056 /*
1057 * This is something undocumented, based on my tests
1058 * Without writing 8 to this register, errors aren't injected. Not sure
1059 * why.
1060 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001061 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001062 MC_CFG_CONTROL, 8);
1063
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001064 debugf0("Error inject addr match 0x%016llx, ecc 0x%08x,"
1065 " inject 0x%08x\n",
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001066 mask, pvt->inject.eccmask, injectmask);
1067
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001068
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001069 return count;
1070}
1071
1072static ssize_t i7core_inject_enable_show(struct mem_ctl_info *mci,
1073 char *data)
1074{
1075 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001076 u32 injectmask;
1077
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001078 if (!pvt->pci_ch[pvt->inject.channel][0])
1079 return 0;
1080
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001081 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001082 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001083
1084 debugf0("Inject error read: 0x%018x\n", injectmask);
1085
1086 if (injectmask & 0x0c)
1087 pvt->inject.enable = 1;
1088
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001089 return sprintf(data, "%d\n", pvt->inject.enable);
1090}
1091
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001092#define DECLARE_COUNTER(param) \
1093static ssize_t i7core_show_counter_##param( \
1094 struct mem_ctl_info *mci, \
1095 char *data) \
1096{ \
1097 struct i7core_pvt *pvt = mci->pvt_info; \
1098 \
1099 debugf1("%s() \n", __func__); \
1100 if (!pvt->ce_count_available || (pvt->is_registered)) \
1101 return sprintf(data, "data unavailable\n"); \
1102 return sprintf(data, "%lu\n", \
1103 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001104}
1105
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001106#define ATTR_COUNTER(param) \
1107 { \
1108 .attr = { \
1109 .name = __stringify(udimm##param), \
1110 .mode = (S_IRUGO | S_IWUSR) \
1111 }, \
1112 .show = i7core_show_counter_##param \
1113 }
1114
1115DECLARE_COUNTER(0);
1116DECLARE_COUNTER(1);
1117DECLARE_COUNTER(2);
1118
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001119/*
1120 * Sysfs struct
1121 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001122
1123
1124static struct mcidev_sysfs_attribute i7core_addrmatch_attrs[] = {
1125 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),
1131 { .attr = { .name = NULL } }
1132};
1133
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001134static struct mcidev_sysfs_group i7core_inject_addrmatch = {
1135 .name = "inject_addrmatch",
1136 .mcidev_attr = i7core_addrmatch_attrs,
1137};
1138
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001139static struct mcidev_sysfs_attribute i7core_udimm_counters_attrs[] = {
1140 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
1146static struct mcidev_sysfs_group i7core_udimm_counters = {
1147 .name = "all_channel_counts",
1148 .mcidev_attr = i7core_udimm_counters_attrs,
1149};
1150
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001151static struct mcidev_sysfs_attribute i7core_sysfs_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 Chehabf338d732009-09-24 17:25:43 -03001183 { .attr = { .name = NULL } }, /* Reserved for udimm counters */
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001184 { .attr = { .name = NULL } }
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001185};
1186
1187/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001188 Device initialization routines: put/get, init/exit
1189 ****************************************************************************/
1190
1191/*
1192 * i7core_put_devices 'put' all the devices that we have
1193 * reserved via 'get'
1194 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001195static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001196{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001197 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001198
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001199 debugf0(__FILE__ ": %s()\n", __func__);
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001200 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001201 struct pci_dev *pdev = i7core_dev->pdev[i];
1202 if (!pdev)
1203 continue;
1204 debugf0("Removing dev %02x:%02x.%d\n",
1205 pdev->bus->number,
1206 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
1207 pci_dev_put(pdev);
1208 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001209 kfree(i7core_dev->pdev);
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001210 list_del(&i7core_dev->list);
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001211 kfree(i7core_dev);
1212}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001213
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001214static void i7core_put_all_devices(void)
1215{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001216 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001217
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001218 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list)
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001219 i7core_put_devices(i7core_dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001220}
1221
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001222static void __init i7core_xeon_pci_fixup(struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001223{
1224 struct pci_dev *pdev = NULL;
1225 int i;
1226 /*
1227 * On Xeon 55xx, the Intel Quckpath Arch Generic Non-core pci buses
1228 * aren't announced by acpi. So, we need to use a legacy scan probing
1229 * to detect them
1230 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001231 while (table && table->descr) {
1232 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1233 if (unlikely(!pdev)) {
1234 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1235 pcibios_scan_specific_bus(255-i);
1236 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001237 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001238 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001239 }
1240}
1241
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001242static unsigned i7core_pci_lastbus(void)
1243{
1244 int last_bus = 0, bus;
1245 struct pci_bus *b = NULL;
1246
1247 while ((b = pci_find_next_bus(b)) != NULL) {
1248 bus = b->number;
1249 debugf0("Found bus %d\n", bus);
1250 if (bus > last_bus)
1251 last_bus = bus;
1252 }
1253
1254 debugf0("Last bus %d\n", last_bus);
1255
1256 return last_bus;
1257}
1258
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001259/*
1260 * i7core_get_devices Find and perform 'get' operation on the MCH's
1261 * device/functions we want to reference for this driver
1262 *
1263 * Need to 'get' device 16 func 1 and func 2
1264 */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001265int i7core_get_onedevice(struct pci_dev **prev, int devno,
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001266 struct pci_id_descr *dev_descr, unsigned n_devs,
1267 unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001268{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001269 struct i7core_dev *i7core_dev;
1270
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001271 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001272 u8 bus = 0;
1273 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001274
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001275 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001276 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001277
1278 /*
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001279 * On Xeon 55xx, the Intel Quckpath Arch Generic Non-core regs
1280 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1281 * to probe for the alternate address in case of failure
1282 */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001283 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001284 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabfd382652009-10-14 06:07:07 -03001285 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001286
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001287 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE && !pdev)
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -03001288 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1289 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1290 *prev);
1291
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001292 if (!pdev) {
1293 if (*prev) {
1294 *prev = pdev;
1295 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001296 }
1297
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001298 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001299 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001300
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001301 if (devno == 0)
1302 return -ENODEV;
1303
Daniel J Bluemanab089372010-07-23 23:16:52 +01001304 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001305 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001306 dev_descr->dev, dev_descr->func,
1307 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001308
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001309 /* End of list, leave */
1310 return -ENODEV;
1311 }
1312 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001313
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001314 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001315
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001316 i7core_dev = get_i7core_dev(socket);
1317 if (!i7core_dev) {
1318 i7core_dev = kzalloc(sizeof(*i7core_dev), GFP_KERNEL);
1319 if (!i7core_dev)
1320 return -ENOMEM;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001321 i7core_dev->pdev = kzalloc(sizeof(*i7core_dev->pdev) * n_devs,
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001322 GFP_KERNEL);
Alexander Beregalov2a6fae32010-01-07 23:27:30 -03001323 if (!i7core_dev->pdev) {
1324 kfree(i7core_dev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001325 return -ENOMEM;
Alexander Beregalov2a6fae32010-01-07 23:27:30 -03001326 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001327 i7core_dev->socket = socket;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001328 i7core_dev->n_devs = n_devs;
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001329 list_add_tail(&i7core_dev->list, &i7core_edac_list);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001330 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001331
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001332 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001333 i7core_printk(KERN_ERR,
1334 "Duplicated device for "
1335 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001336 bus, dev_descr->dev, dev_descr->func,
1337 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001338 pci_dev_put(pdev);
1339 return -ENODEV;
1340 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001341
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001342 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001343
1344 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001345 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1346 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001347 i7core_printk(KERN_ERR,
1348 "Device PCI ID %04x:%04x "
1349 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001350 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001351 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001352 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001353 return -ENODEV;
1354 }
1355
1356 /* Be sure that the device is enabled */
1357 if (unlikely(pci_enable_device(pdev) < 0)) {
1358 i7core_printk(KERN_ERR,
1359 "Couldn't enable "
1360 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001361 bus, dev_descr->dev, dev_descr->func,
1362 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001363 return -ENODEV;
1364 }
1365
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001366 debugf0("Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001367 socket, bus, dev_descr->dev,
1368 dev_descr->func,
1369 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001370
1371 *prev = pdev;
1372
1373 return 0;
1374}
1375
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001376static int i7core_get_devices(struct pci_id_table *table)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001377{
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001378 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001379 struct pci_dev *pdev = NULL;
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001380 struct pci_id_descr *dev_descr;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001381
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001382 last_bus = i7core_pci_lastbus();
1383
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001384 while (table && table->descr) {
1385 dev_descr = table->descr;
1386 for (i = 0; i < table->n_devs; i++) {
1387 pdev = NULL;
1388 do {
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001389 rc = i7core_get_onedevice(&pdev, i,
1390 &dev_descr[i],
1391 table->n_devs,
1392 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001393 if (rc < 0) {
1394 if (i == 0) {
1395 i = table->n_devs;
1396 break;
1397 }
1398 i7core_put_all_devices();
1399 return -ENODEV;
1400 }
1401 } while (pdev);
1402 }
1403 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001404 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001405
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001406 return 0;
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001407 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001408}
1409
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001410static int mci_bind_devs(struct mem_ctl_info *mci,
1411 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001412{
1413 struct i7core_pvt *pvt = mci->pvt_info;
1414 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001415 int i, func, slot;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001416
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001417 /* Associates i7core_dev and mci for future usage */
1418 pvt->i7core_dev = i7core_dev;
1419 i7core_dev->mci = mci;
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001420
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001421 pvt->is_registered = 0;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001422 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001423 pdev = i7core_dev->pdev[i];
1424 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001425 continue;
1426
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001427 func = PCI_FUNC(pdev->devfn);
1428 slot = PCI_SLOT(pdev->devfn);
1429 if (slot == 3) {
1430 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001431 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001432 pvt->pci_mcr[func] = pdev;
1433 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1434 if (unlikely(func > MAX_CHAN_FUNC))
1435 goto error;
1436 pvt->pci_ch[slot - 4][func] = pdev;
1437 } else if (!slot && !func)
1438 pvt->pci_noncore = pdev;
1439 else
1440 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001441
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001442 debugf0("Associated fn %d.%d, dev = %p, socket %d\n",
1443 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1444 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001445
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001446 if (PCI_SLOT(pdev->devfn) == 3 &&
1447 PCI_FUNC(pdev->devfn) == 2)
1448 pvt->is_registered = 1;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001449 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001450
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001451 /*
1452 * Add extra nodes to count errors on udimm
1453 * For registered memory, this is not needed, since the counters
1454 * are already displayed at the standard locations
1455 */
1456 if (!pvt->is_registered)
1457 i7core_sysfs_attrs[ARRAY_SIZE(i7core_sysfs_attrs)-2].grp =
1458 &i7core_udimm_counters;
1459
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001460 return 0;
1461
1462error:
1463 i7core_printk(KERN_ERR, "Device %d, function %d "
1464 "is out of the expected range\n",
1465 slot, func);
1466 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001467}
1468
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001469/****************************************************************************
1470 Error check routines
1471 ****************************************************************************/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001472static void i7core_rdimm_update_csrow(struct mem_ctl_info *mci,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001473 int chan, int dimm, int add)
1474{
1475 char *msg;
1476 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001477 int row = pvt->csrow_map[chan][dimm], i;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001478
1479 for (i = 0; i < add; i++) {
1480 msg = kasprintf(GFP_KERNEL, "Corrected error "
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001481 "(Socket=%d channel=%d dimm=%d)",
1482 pvt->i7core_dev->socket, chan, dimm);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001483
1484 edac_mc_handle_fbd_ce(mci, row, 0, msg);
1485 kfree (msg);
1486 }
1487}
1488
1489static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001490 int chan, int new0, int new1, int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001491{
1492 struct i7core_pvt *pvt = mci->pvt_info;
1493 int add0 = 0, add1 = 0, add2 = 0;
1494 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001495 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001496 /* Updates CE counters */
1497
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001498 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1499 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1500 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001501
1502 if (add2 < 0)
1503 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001504 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001505
1506 if (add1 < 0)
1507 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001508 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001509
1510 if (add0 < 0)
1511 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001512 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001513 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001514 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001515
1516 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001517 pvt->rdimm_last_ce_count[chan][2] = new2;
1518 pvt->rdimm_last_ce_count[chan][1] = new1;
1519 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001520
1521 /*updated the edac core */
1522 if (add0 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001523 i7core_rdimm_update_csrow(mci, chan, 0, add0);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001524 if (add1 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001525 i7core_rdimm_update_csrow(mci, chan, 1, add1);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001526 if (add2 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001527 i7core_rdimm_update_csrow(mci, chan, 2, add2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001528
1529}
1530
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001531static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001532{
1533 struct i7core_pvt *pvt = mci->pvt_info;
1534 u32 rcv[3][2];
1535 int i, new0, new1, new2;
1536
1537 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001538 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001539 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001540 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001541 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001542 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001543 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001544 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001545 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001546 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001547 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001548 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001549 &rcv[2][1]);
1550 for (i = 0 ; i < 3; i++) {
1551 debugf3("MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1552 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
1553 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001554 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001555 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1556 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1557 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1558 } else {
1559 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1560 DIMM_BOT_COR_ERR(rcv[i][0]);
1561 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1562 DIMM_BOT_COR_ERR(rcv[i][1]);
1563 new2 = 0;
1564 }
1565
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001566 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001567 }
1568}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001569
1570/* This function is based on the device 3 function 4 registers as described on:
1571 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1572 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1573 * also available at:
1574 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1575 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001576static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001577{
1578 struct i7core_pvt *pvt = mci->pvt_info;
1579 u32 rcv1, rcv0;
1580 int new0, new1, new2;
1581
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001582 if (!pvt->pci_mcr[4]) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001583 debugf0("%s MCR registers not found\n", __func__);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001584 return;
1585 }
1586
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001587 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001588 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1589 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001590
1591 /* Store the new values */
1592 new2 = DIMM2_COR_ERR(rcv1);
1593 new1 = DIMM1_COR_ERR(rcv0);
1594 new0 = DIMM0_COR_ERR(rcv0);
1595
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001596 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001597 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001598 /* Updates CE counters */
1599 int add0, add1, add2;
1600
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001601 add2 = new2 - pvt->udimm_last_ce_count[2];
1602 add1 = new1 - pvt->udimm_last_ce_count[1];
1603 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001604
1605 if (add2 < 0)
1606 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001607 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001608
1609 if (add1 < 0)
1610 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001611 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001612
1613 if (add0 < 0)
1614 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001615 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001616
1617 if (add0 | add1 | add2)
1618 i7core_printk(KERN_ERR, "New Corrected error(s): "
1619 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1620 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001621 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001622 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001623
1624 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001625 pvt->udimm_last_ce_count[2] = new2;
1626 pvt->udimm_last_ce_count[1] = new1;
1627 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001628}
1629
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001630/*
1631 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1632 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001633 * Nehalem are defined as family 0x06, model 0x1a
1634 *
1635 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001636 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001637 * m->status MSR_IA32_MC8_STATUS
1638 * m->addr MSR_IA32_MC8_ADDR
1639 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001640 * In the case of Nehalem, the error information is masked at .status and .misc
1641 * fields
1642 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001643static void i7core_mce_output_error(struct mem_ctl_info *mci,
1644 struct mce *m)
1645{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001646 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001647 char *type, *optype, *err, *msg;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001648 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001649 u32 optypenum = (m->status >> 4) & 0x07;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001650 u32 core_err_cnt = (m->status >> 38) && 0x7fff;
1651 u32 dimm = (m->misc >> 16) & 0x3;
1652 u32 channel = (m->misc >> 18) & 0x3;
1653 u32 syndrome = m->misc >> 32;
1654 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001655 int csrow;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001656
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001657 if (m->mcgstatus & 1)
1658 type = "FATAL";
1659 else
1660 type = "NON_FATAL";
1661
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001662 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001663 case 0:
1664 optype = "generic undef request";
1665 break;
1666 case 1:
1667 optype = "read error";
1668 break;
1669 case 2:
1670 optype = "write error";
1671 break;
1672 case 3:
1673 optype = "addr/cmd error";
1674 break;
1675 case 4:
1676 optype = "scrubbing error";
1677 break;
1678 default:
1679 optype = "reserved";
1680 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001681 }
1682
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001683 switch (errnum) {
1684 case 16:
1685 err = "read ECC error";
1686 break;
1687 case 17:
1688 err = "RAS ECC error";
1689 break;
1690 case 18:
1691 err = "write parity error";
1692 break;
1693 case 19:
1694 err = "redundacy loss";
1695 break;
1696 case 20:
1697 err = "reserved";
1698 break;
1699 case 21:
1700 err = "memory range error";
1701 break;
1702 case 22:
1703 err = "RTID out of range";
1704 break;
1705 case 23:
1706 err = "address parity error";
1707 break;
1708 case 24:
1709 err = "byte enable parity error";
1710 break;
1711 default:
1712 err = "unknown";
1713 }
1714
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001715 /* FIXME: should convert addr into bank and rank information */
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001716 msg = kasprintf(GFP_ATOMIC,
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001717 "%s (addr = 0x%08llx, cpu=%d, Dimm=%d, Channel=%d, "
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001718 "syndrome=0x%08x, count=%d, Err=%08llx:%08llx (%s: %s))\n",
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001719 type, (long long) m->addr, m->cpu, dimm, channel,
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001720 syndrome, core_err_cnt, (long long)m->status,
1721 (long long)m->misc, optype, err);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001722
1723 debugf0("%s", msg);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001724
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001725 csrow = pvt->csrow_map[channel][dimm];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001726
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001727 /* Call the helper to output message */
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001728 if (m->mcgstatus & 1)
1729 edac_mc_handle_fbd_ue(mci, csrow, 0,
1730 0 /* FIXME: should be channel here */, msg);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001731 else if (!pvt->is_registered)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001732 edac_mc_handle_fbd_ce(mci, csrow,
1733 0 /* FIXME: should be channel here */, msg);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001734
1735 kfree(msg);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001736}
1737
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001738/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001739 * i7core_check_error Retrieve and process errors reported by the
1740 * hardware. Called by the Core module.
1741 */
1742static void i7core_check_error(struct mem_ctl_info *mci)
1743{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001744 struct i7core_pvt *pvt = mci->pvt_info;
1745 int i;
1746 unsigned count = 0;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001747 struct mce *m;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001748
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001749 /*
1750 * MCE first step: Copy all mce errors into a temporary buffer
1751 * We use a double buffering here, to reduce the risk of
1752 * loosing an error.
1753 */
1754 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001755 count = (pvt->mce_out + MCE_LOG_LEN - pvt->mce_in)
1756 % MCE_LOG_LEN;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001757 if (!count)
Vernon Mauery8a311e12010-04-16 19:40:19 -03001758 goto check_ce_error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001759
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001760 m = pvt->mce_outentry;
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001761 if (pvt->mce_in + count > MCE_LOG_LEN) {
1762 unsigned l = MCE_LOG_LEN - pvt->mce_in;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001763
1764 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * l);
1765 smp_wmb();
1766 pvt->mce_in = 0;
1767 count -= l;
1768 m += l;
1769 }
1770 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * count);
1771 smp_wmb();
1772 pvt->mce_in += count;
1773
1774 smp_rmb();
1775 if (pvt->mce_overrun) {
1776 i7core_printk(KERN_ERR, "Lost %d memory errors\n",
1777 pvt->mce_overrun);
1778 smp_wmb();
1779 pvt->mce_overrun = 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001780 }
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001781
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001782 /*
1783 * MCE second step: parse errors and display
1784 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001785 for (i = 0; i < count; i++)
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001786 i7core_mce_output_error(mci, &pvt->mce_outentry[i]);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001787
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001788 /*
1789 * Now, let's increment CE error counts
1790 */
Vernon Mauery8a311e12010-04-16 19:40:19 -03001791check_ce_error:
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001792 if (!pvt->is_registered)
1793 i7core_udimm_check_mc_ecc_err(mci);
1794 else
1795 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001796}
1797
1798/*
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001799 * i7core_mce_check_error Replicates mcelog routine to get errors
1800 * This routine simply queues mcelog errors, and
1801 * return. The error itself should be handled later
1802 * by i7core_check_error.
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001803 * WARNING: As this routine should be called at NMI time, extra care should
1804 * be taken to avoid deadlocks, and to be as fast as possible.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001805 */
1806static int i7core_mce_check_error(void *priv, struct mce *mce)
1807{
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001808 struct mem_ctl_info *mci = priv;
1809 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001810
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001811 /*
1812 * Just let mcelog handle it if the error is
1813 * outside the memory controller
1814 */
1815 if (((mce->status & 0xffff) >> 7) != 1)
1816 return 0;
1817
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001818 /* Bank 8 registers are the only ones that we know how to handle */
1819 if (mce->bank != 8)
1820 return 0;
1821
Randy Dunlap3b918c12009-11-08 01:36:40 -02001822#ifdef CONFIG_SMP
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001823 /* Only handle if it is the right mc controller */
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001824 if (cpu_data(mce->cpu).phys_proc_id != pvt->i7core_dev->socket)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001825 return 0;
Randy Dunlap3b918c12009-11-08 01:36:40 -02001826#endif
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001827
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001828 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001829 if ((pvt->mce_out + 1) % MCE_LOG_LEN == pvt->mce_in) {
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001830 smp_wmb();
1831 pvt->mce_overrun++;
1832 return 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001833 }
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001834
1835 /* Copy memory error at the ringbuffer */
1836 memcpy(&pvt->mce_entry[pvt->mce_out], mce, sizeof(*mce));
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001837 smp_wmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001838 pvt->mce_out = (pvt->mce_out + 1) % MCE_LOG_LEN;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001839
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001840 /* Handle fatal errors immediately */
1841 if (mce->mcgstatus & 1)
1842 i7core_check_error(mci);
1843
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001844 /* Advice mcelog that the error were handled */
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001845 return 1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001846}
1847
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001848static int i7core_register_mci(struct i7core_dev *i7core_dev,
1849 int num_channels, int num_csrows)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001850{
1851 struct mem_ctl_info *mci;
1852 struct i7core_pvt *pvt;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -03001853 int csrow = 0;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001854 int rc;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001855
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001856 /* allocate a new MC control structure */
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001857 mci = edac_mc_alloc(sizeof(*pvt), num_csrows, num_channels,
1858 i7core_dev->socket);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001859 if (unlikely(!mci))
1860 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001861
1862 debugf0("MC: " __FILE__ ": %s(): mci = %p\n", __func__, mci);
1863
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001864 /* record ptr to the generic device */
1865 mci->dev = &i7core_dev->pdev[0]->dev;
1866
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001867 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001868 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001869
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001870 /*
1871 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
1872 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
1873 * memory channels
1874 */
1875 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001876 mci->edac_ctl_cap = EDAC_FLAG_NONE;
1877 mci->edac_cap = EDAC_FLAG_NONE;
1878 mci->mod_name = "i7core_edac.c";
1879 mci->mod_ver = I7CORE_REVISION;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001880 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d",
1881 i7core_dev->socket);
1882 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001883 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001884 mci->mc_driver_sysfs_attributes = i7core_sysfs_attrs;
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001885 /* Set the function pointer to an actual operation function */
1886 mci->edac_check = i7core_check_error;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001887
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001888 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001889 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001890 if (unlikely(rc < 0))
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001891 goto fail;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001892
1893 /* Get dimm basic config */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001894 get_dimm_config(mci, &csrow);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001895
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001896 /* add this new MC control structure to EDAC's list of MCs */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03001897 if (unlikely(edac_mc_add_mc(mci))) {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001898 debugf0("MC: " __FILE__
1899 ": %s(): failed edac_mc_add_mc()\n", __func__);
1900 /* FIXME: perhaps some code should go here that disables error
1901 * reporting if we just enabled it
1902 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03001903
1904 rc = -EINVAL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001905 goto fail;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001906 }
1907
1908 /* allocating generic PCI control info */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001909 i7core_pci = edac_pci_create_generic_ctl(&i7core_dev->pdev[0]->dev,
1910 EDAC_MOD_STR);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001911 if (unlikely(!i7core_pci)) {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001912 printk(KERN_WARNING
1913 "%s(): Unable to create PCI control\n",
1914 __func__);
1915 printk(KERN_WARNING
1916 "%s(): PCI error report via EDAC not setup\n",
1917 __func__);
1918 }
1919
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001920 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001921 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001922 pvt->inject.dimm = -1;
1923 pvt->inject.rank = -1;
1924 pvt->inject.bank = -1;
1925 pvt->inject.page = -1;
1926 pvt->inject.col = -1;
1927
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001928 /* Registers on edac_mce in order to receive memory errors */
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001929 pvt->edac_mce.priv = mci;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001930 pvt->edac_mce.check_error = i7core_mce_check_error;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001931
1932 rc = edac_mce_register(&pvt->edac_mce);
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001933 if (unlikely(rc < 0)) {
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001934 debugf0("MC: " __FILE__
1935 ": %s(): failed edac_mce_register()\n", __func__);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001936 }
1937
1938fail:
Tony Luckd4d1ef42010-05-18 10:53:25 -03001939 if (rc < 0)
1940 edac_mc_free(mci);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001941 return rc;
1942}
1943
1944/*
1945 * i7core_probe Probe for ONE instance of device to see if it is
1946 * present.
1947 * return:
1948 * 0 for FOUND a device
1949 * < 0 for error code
1950 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03001951
1952static int probed = 0;
1953
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001954static int __devinit i7core_probe(struct pci_dev *pdev,
1955 const struct pci_device_id *id)
1956{
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001957 int rc;
1958 struct i7core_dev *i7core_dev;
1959
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03001960 /* get the pci devices we want to reserve for our use */
1961 mutex_lock(&i7core_edac_lock);
1962
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001963 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001964 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001965 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03001966 if (unlikely(probed >= 1)) {
1967 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001968 return -EINVAL;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03001969 }
1970 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001971
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001972 rc = i7core_get_devices(pci_dev_table);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001973 if (unlikely(rc < 0))
1974 goto fail0;
1975
1976 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
1977 int channels;
1978 int csrows;
1979
1980 /* Check the number of active and not disabled channels */
1981 rc = i7core_get_active_channels(i7core_dev->socket,
1982 &channels, &csrows);
1983 if (unlikely(rc < 0))
1984 goto fail1;
1985
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001986 rc = i7core_register_mci(i7core_dev, channels, csrows);
1987 if (unlikely(rc < 0))
1988 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001989 }
1990
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001991 i7core_printk(KERN_INFO, "Driver loaded.\n");
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001992
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001993 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001994 return 0;
1995
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001996fail1:
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001997 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001998fail0:
1999 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002000 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002001}
2002
2003/*
2004 * i7core_remove destructor for one instance of device
2005 *
2006 */
2007static void __devexit i7core_remove(struct pci_dev *pdev)
2008{
2009 struct mem_ctl_info *mci;
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002010 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002011
2012 debugf0(__FILE__ ": %s()\n", __func__);
2013
2014 if (i7core_pci)
2015 edac_pci_release_generic_ctl(i7core_pci);
2016
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002017 /*
2018 * we have a trouble here: pdev value for removal will be wrong, since
2019 * it will point to the X58 register used to detect that the machine
2020 * is a Nehalem or upper design. However, due to the way several PCI
2021 * devices are grouped together to provide MC functionality, we need
2022 * to use a different method for releasing the devices
2023 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002024
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002025 mutex_lock(&i7core_edac_lock);
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002026 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
2027 mci = edac_mc_del_mc(&i7core_dev->pdev[0]->dev);
2028 if (mci) {
2029 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002030
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002031 i7core_dev = pvt->i7core_dev;
2032 edac_mce_unregister(&pvt->edac_mce);
2033 kfree(mci->ctl_name);
2034 edac_mc_free(mci);
2035 i7core_put_devices(i7core_dev);
2036 } else {
2037 i7core_printk(KERN_ERR,
2038 "Couldn't find mci for socket %d\n",
2039 i7core_dev->socket);
2040 }
2041 }
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002042 probed--;
2043
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002044 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002045}
2046
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002047MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2048
2049/*
2050 * i7core_driver pci_driver structure for this module
2051 *
2052 */
2053static struct pci_driver i7core_driver = {
2054 .name = "i7core_edac",
2055 .probe = i7core_probe,
2056 .remove = __devexit_p(i7core_remove),
2057 .id_table = i7core_pci_tbl,
2058};
2059
2060/*
2061 * i7core_init Module entry function
2062 * Try to initialize this module for its devices
2063 */
2064static int __init i7core_init(void)
2065{
2066 int pci_rc;
2067
2068 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2069
2070 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2071 opstate_init();
2072
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03002073 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002074
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002075 pci_rc = pci_register_driver(&i7core_driver);
2076
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002077 if (pci_rc >= 0)
2078 return 0;
2079
2080 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2081 pci_rc);
2082
2083 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002084}
2085
2086/*
2087 * i7core_exit() Module exit function
2088 * Unregister the driver
2089 */
2090static void __exit i7core_exit(void)
2091{
2092 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2093 pci_unregister_driver(&i7core_driver);
2094}
2095
2096module_init(i7core_init);
2097module_exit(i7core_exit);
2098
2099MODULE_LICENSE("GPL");
2100MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
2101MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2102MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2103 I7CORE_REVISION);
2104
2105module_param(edac_op_state, int, 0444);
2106MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");