blob: aeb01f42ffef8a8ee50adf1cab1789a736e2209c [file] [log] [blame]
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -03001/* Intel i7 core/Nehalem Memory Controller kernel module
2 *
David Sterbae7bf0682010-12-27 16:51:15 +01003 * This driver supports the memory controllers found on the Intel
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -03004 * processor families i7core, i7core 7xx/8xx, i5core, Xeon 35xx,
5 * Xeon 55xx and Xeon 56xx also known as Nehalem, Nehalem-EP, Lynnfield
6 * and Westmere-EP.
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03007 *
8 * This file may be distributed under the terms of the
9 * GNU General Public License version 2 only.
10 *
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -030011 * Copyright (c) 2009-2010 by:
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030012 * Mauro Carvalho Chehab <mchehab@redhat.com>
13 *
14 * Red Hat Inc. http://www.redhat.com
15 *
16 * Forked and adapted from the i5400_edac driver
17 *
18 * Based on the following public Intel datasheets:
19 * Intel Core i7 Processor Extreme Edition and Intel Core i7 Processor
20 * Datasheet, Volume 2:
21 * http://download.intel.com/design/processor/datashts/320835.pdf
22 * Intel Xeon Processor 5500 Series Datasheet Volume 2
23 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
24 * also available at:
25 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
26 */
27
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030028#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/pci_ids.h>
32#include <linux/slab.h>
Randy Dunlap3b918c12009-11-08 01:36:40 -020033#include <linux/delay.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030034#include <linux/edac.h>
35#include <linux/mmzone.h>
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -030036#include <linux/edac_mce.h>
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030037#include <linux/smp.h>
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -030038#include <asm/processor.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030039
40#include "edac_core.h"
41
Mauro Carvalho Chehab18c29002010-08-10 18:33:27 -030042/* Static vars */
43static LIST_HEAD(i7core_edac_list);
44static DEFINE_MUTEX(i7core_edac_lock);
45static int probed;
46
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -030047static int use_pci_fixup;
48module_param(use_pci_fixup, int, 0444);
49MODULE_PARM_DESC(use_pci_fixup, "Enable PCI fixup to seek for hidden devices");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030050/*
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030051 * This is used for Nehalem-EP and Nehalem-EX devices, where the non-core
52 * registers start at bus 255, and are not reported by BIOS.
53 * We currently find devices with only 2 sockets. In order to support more QPI
54 * Quick Path Interconnect, just increment this number.
55 */
56#define MAX_SOCKET_BUSES 2
57
58
59/*
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030060 * Alter this version for the module when modifications are made
61 */
Michal Marek152ba392011-04-01 12:41:20 +020062#define I7CORE_REVISION " Ver: 1.0.0"
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030063#define EDAC_MOD_STR "i7core_edac"
64
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030065/*
66 * Debug macros
67 */
68#define i7core_printk(level, fmt, arg...) \
69 edac_printk(level, "i7core", fmt, ##arg)
70
71#define i7core_mc_printk(mci, level, fmt, arg...) \
72 edac_mc_chipset_printk(mci, level, "i7core", fmt, ##arg)
73
74/*
75 * i7core Memory Controller Registers
76 */
77
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030078 /* OFFSETS for Device 0 Function 0 */
79
80#define MC_CFG_CONTROL 0x90
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -030081 #define MC_CFG_UNLOCK 0x02
82 #define MC_CFG_LOCK 0x00
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030083
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030084 /* OFFSETS for Device 3 Function 0 */
85
86#define MC_CONTROL 0x48
87#define MC_STATUS 0x4c
88#define MC_MAX_DOD 0x64
89
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030090/*
91 * OFFSETS for Device 3 Function 4, as inicated on Xeon 5500 datasheet:
92 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
93 */
94
95#define MC_TEST_ERR_RCV1 0x60
96 #define DIMM2_COR_ERR(r) ((r) & 0x7fff)
97
98#define MC_TEST_ERR_RCV0 0x64
99 #define DIMM1_COR_ERR(r) (((r) >> 16) & 0x7fff)
100 #define DIMM0_COR_ERR(r) ((r) & 0x7fff)
101
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300102/* OFFSETS for Device 3 Function 2, as inicated on Xeon 5500 datasheet */
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -0300103#define MC_SSRCONTROL 0x48
104 #define SSR_MODE_DISABLE 0x00
105 #define SSR_MODE_ENABLE 0x01
106 #define SSR_MODE_MASK 0x03
107
108#define MC_SCRUB_CONTROL 0x4c
109 #define STARTSCRUB (1 << 24)
110
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300111#define MC_COR_ECC_CNT_0 0x80
112#define MC_COR_ECC_CNT_1 0x84
113#define MC_COR_ECC_CNT_2 0x88
114#define MC_COR_ECC_CNT_3 0x8c
115#define MC_COR_ECC_CNT_4 0x90
116#define MC_COR_ECC_CNT_5 0x94
117
118#define DIMM_TOP_COR_ERR(r) (((r) >> 16) & 0x7fff)
119#define DIMM_BOT_COR_ERR(r) ((r) & 0x7fff)
120
121
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300122 /* OFFSETS for Devices 4,5 and 6 Function 0 */
123
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300124#define MC_CHANNEL_DIMM_INIT_PARAMS 0x58
125 #define THREE_DIMMS_PRESENT (1 << 24)
126 #define SINGLE_QUAD_RANK_PRESENT (1 << 23)
127 #define QUAD_RANK_PRESENT (1 << 22)
128 #define REGISTERED_DIMM (1 << 15)
129
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300130#define MC_CHANNEL_MAPPER 0x60
131 #define RDLCH(r, ch) ((((r) >> (3 + (ch * 6))) & 0x07) - 1)
132 #define WRLCH(r, ch) ((((r) >> (ch * 6)) & 0x07) - 1)
133
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300134#define MC_CHANNEL_RANK_PRESENT 0x7c
135 #define RANK_PRESENT_MASK 0xffff
136
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300137#define MC_CHANNEL_ADDR_MATCH 0xf0
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300138#define MC_CHANNEL_ERROR_MASK 0xf8
139#define MC_CHANNEL_ERROR_INJECT 0xfc
140 #define INJECT_ADDR_PARITY 0x10
141 #define INJECT_ECC 0x08
142 #define MASK_CACHELINE 0x06
143 #define MASK_FULL_CACHELINE 0x06
144 #define MASK_MSB32_CACHELINE 0x04
145 #define MASK_LSB32_CACHELINE 0x02
146 #define NO_MASK_CACHELINE 0x00
147 #define REPEAT_EN 0x01
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300148
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300149 /* OFFSETS for Devices 4,5 and 6 Function 1 */
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300150
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300151#define MC_DOD_CH_DIMM0 0x48
152#define MC_DOD_CH_DIMM1 0x4c
153#define MC_DOD_CH_DIMM2 0x50
154 #define RANKOFFSET_MASK ((1 << 12) | (1 << 11) | (1 << 10))
155 #define RANKOFFSET(x) ((x & RANKOFFSET_MASK) >> 10)
156 #define DIMM_PRESENT_MASK (1 << 9)
157 #define DIMM_PRESENT(x) (((x) & DIMM_PRESENT_MASK) >> 9)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300158 #define MC_DOD_NUMBANK_MASK ((1 << 8) | (1 << 7))
159 #define MC_DOD_NUMBANK(x) (((x) & MC_DOD_NUMBANK_MASK) >> 7)
160 #define MC_DOD_NUMRANK_MASK ((1 << 6) | (1 << 5))
161 #define MC_DOD_NUMRANK(x) (((x) & MC_DOD_NUMRANK_MASK) >> 5)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300162 #define MC_DOD_NUMROW_MASK ((1 << 4) | (1 << 3) | (1 << 2))
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300163 #define MC_DOD_NUMROW(x) (((x) & MC_DOD_NUMROW_MASK) >> 2)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300164 #define MC_DOD_NUMCOL_MASK 3
165 #define MC_DOD_NUMCOL(x) ((x) & MC_DOD_NUMCOL_MASK)
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300166
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300167#define MC_RANK_PRESENT 0x7c
168
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300169#define MC_SAG_CH_0 0x80
170#define MC_SAG_CH_1 0x84
171#define MC_SAG_CH_2 0x88
172#define MC_SAG_CH_3 0x8c
173#define MC_SAG_CH_4 0x90
174#define MC_SAG_CH_5 0x94
175#define MC_SAG_CH_6 0x98
176#define MC_SAG_CH_7 0x9c
177
178#define MC_RIR_LIMIT_CH_0 0x40
179#define MC_RIR_LIMIT_CH_1 0x44
180#define MC_RIR_LIMIT_CH_2 0x48
181#define MC_RIR_LIMIT_CH_3 0x4C
182#define MC_RIR_LIMIT_CH_4 0x50
183#define MC_RIR_LIMIT_CH_5 0x54
184#define MC_RIR_LIMIT_CH_6 0x58
185#define MC_RIR_LIMIT_CH_7 0x5C
186#define MC_RIR_LIMIT_MASK ((1 << 10) - 1)
187
188#define MC_RIR_WAY_CH 0x80
189 #define MC_RIR_WAY_OFFSET_MASK (((1 << 14) - 1) & ~0x7)
190 #define MC_RIR_WAY_RANK_MASK 0x7
191
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300192/*
193 * i7core structs
194 */
195
196#define NUM_CHANS 3
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300197#define MAX_DIMMS 3 /* Max DIMMS per channel */
198#define MAX_MCR_FUNC 4
199#define MAX_CHAN_FUNC 3
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300200
201struct i7core_info {
202 u32 mc_control;
203 u32 mc_status;
204 u32 max_dod;
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300205 u32 ch_map;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300206};
207
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300208
209struct i7core_inject {
210 int enable;
211
212 u32 section;
213 u32 type;
214 u32 eccmask;
215
216 /* Error address mask */
217 int channel, dimm, rank, bank, page, col;
218};
219
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300220struct i7core_channel {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300221 u32 ranks;
222 u32 dimms;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300223};
224
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300225struct pci_id_descr {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300226 int dev;
227 int func;
228 int dev_id;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300229 int optional;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300230};
231
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300232struct pci_id_table {
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300233 const struct pci_id_descr *descr;
234 int n_devs;
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300235};
236
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300237struct i7core_dev {
238 struct list_head list;
239 u8 socket;
240 struct pci_dev **pdev;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300241 int n_devs;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300242 struct mem_ctl_info *mci;
243};
244
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300245struct i7core_pvt {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300246 struct pci_dev *pci_noncore;
247 struct pci_dev *pci_mcr[MAX_MCR_FUNC + 1];
248 struct pci_dev *pci_ch[NUM_CHANS][MAX_CHAN_FUNC + 1];
249
250 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300251
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300252 struct i7core_info info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300253 struct i7core_inject inject;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300254 struct i7core_channel channel[NUM_CHANS];
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300255
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300256 int ce_count_available;
257 int csrow_map[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300258
259 /* ECC corrected errors counts per udimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300260 unsigned long udimm_ce_count[MAX_DIMMS];
261 int udimm_last_ce_count[MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300262 /* ECC corrected errors counts per rdimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300263 unsigned long rdimm_ce_count[NUM_CHANS][MAX_DIMMS];
264 int rdimm_last_ce_count[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300265
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -0300266 bool is_registered, enable_scrub;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300267
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300268 /* mcelog glue */
269 struct edac_mce edac_mce;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300270
271 /* Fifo double buffers */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300272 struct mce mce_entry[MCE_LOG_LEN];
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300273 struct mce mce_outentry[MCE_LOG_LEN];
274
275 /* Fifo in/out counters */
276 unsigned mce_in, mce_out;
277
278 /* Count indicator to show errors not got */
279 unsigned mce_overrun;
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300280
281 /* Struct to control EDAC polling */
282 struct edac_pci_ctl_info *i7core_pci;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300283};
284
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300285#define PCI_DESCR(device, function, device_id) \
286 .dev = (device), \
287 .func = (function), \
288 .dev_id = (device_id)
289
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300290static const struct pci_id_descr pci_dev_descr_i7core_nehalem[] = {
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300291 /* Memory controller */
292 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_I7_MCR) },
293 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_I7_MC_TAD) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300294 /* Exists only for RDIMM */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300295 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_I7_MC_RAS), .optional = 1 },
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300296 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_I7_MC_TEST) },
297
298 /* Channel 0 */
299 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH0_CTRL) },
300 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH0_ADDR) },
301 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH0_RANK) },
302 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH0_TC) },
303
304 /* Channel 1 */
305 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH1_CTRL) },
306 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH1_ADDR) },
307 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH1_RANK) },
308 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH1_TC) },
309
310 /* Channel 2 */
311 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH2_CTRL) },
312 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH2_ADDR) },
313 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH2_RANK) },
314 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH2_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300315
316 /* Generic Non-core registers */
317 /*
318 * This is the PCI device on i7core and on Xeon 35xx (8086:2c41)
319 * On Xeon 55xx, however, it has a different id (8086:2c40). So,
320 * the probing code needs to test for the other address in case of
321 * failure of this one
322 */
323 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_I7_NONCORE) },
324
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300325};
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300326
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300327static const struct pci_id_descr pci_dev_descr_lynnfield[] = {
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300328 { PCI_DESCR( 3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR) },
329 { PCI_DESCR( 3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD) },
330 { PCI_DESCR( 3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST) },
331
332 { PCI_DESCR( 4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL) },
333 { PCI_DESCR( 4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR) },
334 { PCI_DESCR( 4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK) },
335 { PCI_DESCR( 4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC) },
336
Mauro Carvalho Chehab508fa172009-10-14 13:44:37 -0300337 { PCI_DESCR( 5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL) },
338 { PCI_DESCR( 5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR) },
339 { PCI_DESCR( 5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK) },
340 { PCI_DESCR( 5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300341
342 /*
343 * This is the PCI device has an alternate address on some
344 * processors like Core i7 860
345 */
346 { PCI_DESCR( 0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE) },
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300347};
348
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300349static const struct pci_id_descr pci_dev_descr_i7core_westmere[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300350 /* Memory controller */
351 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR_REV2) },
352 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD_REV2) },
353 /* Exists only for RDIMM */
354 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_RAS_REV2), .optional = 1 },
355 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST_REV2) },
356
357 /* Channel 0 */
358 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL_REV2) },
359 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR_REV2) },
360 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK_REV2) },
361 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC_REV2) },
362
363 /* Channel 1 */
364 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL_REV2) },
365 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR_REV2) },
366 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK_REV2) },
367 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC_REV2) },
368
369 /* Channel 2 */
370 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_CTRL_REV2) },
371 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_ADDR_REV2) },
372 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_RANK_REV2) },
373 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_TC_REV2) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300374
375 /* Generic Non-core registers */
376 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2) },
377
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300378};
379
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300380#define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) }
381static const struct pci_id_table pci_dev_table[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300382 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_nehalem),
383 PCI_ID_TABLE_ENTRY(pci_dev_descr_lynnfield),
384 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_westmere),
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -0200385 {0,} /* 0 terminated list. */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300386};
387
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300388/*
389 * pci_device_id table for which devices we are looking for
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300390 */
391static const struct pci_device_id i7core_pci_tbl[] __devinitdata = {
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -0300392 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300393 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300394 {0,} /* 0 terminated list. */
395};
396
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300397/****************************************************************************
398 Anciliary status routines
399 ****************************************************************************/
400
401 /* MC_CONTROL bits */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300402#define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch)))
403#define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300404
405 /* MC_STATUS bits */
Keith Mannthey61053fd2009-09-02 23:46:59 -0300406#define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300407#define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300408
409 /* MC_MAX_DOD read functions */
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300410static inline int numdimms(u32 dimms)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300411{
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300412 return (dimms & 0x3) + 1;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300413}
414
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300415static inline int numrank(u32 rank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300416{
417 static int ranks[4] = { 1, 2, 4, -EINVAL };
418
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300419 return ranks[rank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300420}
421
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300422static inline int numbank(u32 bank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300423{
424 static int banks[4] = { 4, 8, 16, -EINVAL };
425
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300426 return banks[bank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300427}
428
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300429static inline int numrow(u32 row)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300430{
431 static int rows[8] = {
432 1 << 12, 1 << 13, 1 << 14, 1 << 15,
433 1 << 16, -EINVAL, -EINVAL, -EINVAL,
434 };
435
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300436 return rows[row & 0x7];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300437}
438
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300439static inline int numcol(u32 col)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300440{
441 static int cols[8] = {
442 1 << 10, 1 << 11, 1 << 12, -EINVAL,
443 };
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300444 return cols[col & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300445}
446
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300447static struct i7core_dev *get_i7core_dev(u8 socket)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300448{
449 struct i7core_dev *i7core_dev;
450
451 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
452 if (i7core_dev->socket == socket)
453 return i7core_dev;
454 }
455
456 return NULL;
457}
458
Hidetoshi Seto848b2f72010-08-20 04:24:44 -0300459static struct i7core_dev *alloc_i7core_dev(u8 socket,
460 const struct pci_id_table *table)
461{
462 struct i7core_dev *i7core_dev;
463
464 i7core_dev = kzalloc(sizeof(*i7core_dev), GFP_KERNEL);
465 if (!i7core_dev)
466 return NULL;
467
468 i7core_dev->pdev = kzalloc(sizeof(*i7core_dev->pdev) * table->n_devs,
469 GFP_KERNEL);
470 if (!i7core_dev->pdev) {
471 kfree(i7core_dev);
472 return NULL;
473 }
474
475 i7core_dev->socket = socket;
476 i7core_dev->n_devs = table->n_devs;
477 list_add_tail(&i7core_dev->list, &i7core_edac_list);
478
479 return i7core_dev;
480}
481
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -0300482static void free_i7core_dev(struct i7core_dev *i7core_dev)
483{
484 list_del(&i7core_dev->list);
485 kfree(i7core_dev->pdev);
486 kfree(i7core_dev);
487}
488
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300489/****************************************************************************
490 Memory check routines
491 ****************************************************************************/
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300492static struct pci_dev *get_pdev_slot_func(u8 socket, unsigned slot,
493 unsigned func)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300494{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300495 struct i7core_dev *i7core_dev = get_i7core_dev(socket);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300496 int i;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300497
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300498 if (!i7core_dev)
499 return NULL;
500
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300501 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300502 if (!i7core_dev->pdev[i])
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300503 continue;
504
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300505 if (PCI_SLOT(i7core_dev->pdev[i]->devfn) == slot &&
506 PCI_FUNC(i7core_dev->pdev[i]->devfn) == func) {
507 return i7core_dev->pdev[i];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300508 }
509 }
510
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300511 return NULL;
512}
513
Mauro Carvalho Chehabec6df242009-07-18 10:44:30 -0300514/**
515 * i7core_get_active_channels() - gets the number of channels and csrows
516 * @socket: Quick Path Interconnect socket
517 * @channels: Number of channels that will be returned
518 * @csrows: Number of csrows found
519 *
520 * Since EDAC core needs to know in advance the number of available channels
521 * and csrows, in order to allocate memory for csrows/channels, it is needed
522 * to run two similar steps. At the first step, implemented on this function,
523 * it checks the number of csrows/channels present at one socket.
524 * this is used in order to properly allocate the size of mci components.
525 *
526 * It should be noticed that none of the current available datasheets explain
527 * or even mention how csrows are seen by the memory controller. So, we need
528 * to add a fake description for csrows.
529 * So, this driver is attributing one DIMM memory for one csrow.
530 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300531static int i7core_get_active_channels(const u8 socket, unsigned *channels,
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300532 unsigned *csrows)
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300533{
534 struct pci_dev *pdev = NULL;
535 int i, j;
536 u32 status, control;
537
538 *channels = 0;
539 *csrows = 0;
540
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300541 pdev = get_pdev_slot_func(socket, 3, 0);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -0300542 if (!pdev) {
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300543 i7core_printk(KERN_ERR, "Couldn't find socket %d fn 3.0!!!\n",
544 socket);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300545 return -ENODEV;
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -0300546 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300547
548 /* Device 3 function 0 reads */
549 pci_read_config_dword(pdev, MC_STATUS, &status);
550 pci_read_config_dword(pdev, MC_CONTROL, &control);
551
552 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300553 u32 dimm_dod[3];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300554 /* Check if the channel is active */
555 if (!(control & (1 << (8 + i))))
556 continue;
557
558 /* Check if the channel is disabled */
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300559 if (status & (1 << i))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300560 continue;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300561
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300562 pdev = get_pdev_slot_func(socket, i + 4, 1);
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300563 if (!pdev) {
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300564 i7core_printk(KERN_ERR, "Couldn't find socket %d "
565 "fn %d.%d!!!\n",
566 socket, i + 4, 1);
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300567 return -ENODEV;
568 }
569 /* Devices 4-6 function 1 */
570 pci_read_config_dword(pdev,
571 MC_DOD_CH_DIMM0, &dimm_dod[0]);
572 pci_read_config_dword(pdev,
573 MC_DOD_CH_DIMM1, &dimm_dod[1]);
574 pci_read_config_dword(pdev,
575 MC_DOD_CH_DIMM2, &dimm_dod[2]);
576
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300577 (*channels)++;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300578
579 for (j = 0; j < 3; j++) {
580 if (!DIMM_PRESENT(dimm_dod[j]))
581 continue;
582 (*csrows)++;
583 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300584 }
585
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -0300586 debugf0("Number of active channels on socket %d: %d\n",
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300587 socket, *channels);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300588
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300589 return 0;
590}
591
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -0300592static int get_dimm_config(const struct mem_ctl_info *mci)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300593{
594 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300595 struct csrow_info *csr;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300596 struct pci_dev *pdev;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300597 int i, j;
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -0300598 int csrow = 0;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300599 unsigned long last_page = 0;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300600 enum edac_type mode;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300601 enum mem_type mtype;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300602
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300603 /* Get data from the MC register, function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300604 pdev = pvt->pci_mcr[0];
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300605 if (!pdev)
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300606 return -ENODEV;
607
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300608 /* Device 3 function 0 reads */
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300609 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control);
610 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status);
611 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod);
612 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300613
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300614 debugf0("QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
Mauro Carvalho Chehab4af91882009-09-24 09:58:26 -0300615 pvt->i7core_dev->socket, pvt->info.mc_control, pvt->info.mc_status,
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300616 pvt->info.max_dod, pvt->info.ch_map);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300617
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300618 if (ECC_ENABLED(pvt)) {
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300619 debugf0("ECC enabled with x%d SDCC\n", ECCx8(pvt) ? 8 : 4);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300620 if (ECCx8(pvt))
621 mode = EDAC_S8ECD8ED;
622 else
623 mode = EDAC_S4ECD4ED;
624 } else {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300625 debugf0("ECC disabled\n");
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300626 mode = EDAC_NONE;
627 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300628
629 /* FIXME: need to handle the error codes */
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300630 debugf0("DOD Max limits: DIMMS: %d, %d-ranked, %d-banked "
631 "x%x x 0x%x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300632 numdimms(pvt->info.max_dod),
633 numrank(pvt->info.max_dod >> 2),
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300634 numbank(pvt->info.max_dod >> 4),
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300635 numrow(pvt->info.max_dod >> 6),
636 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300637
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300638 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300639 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300640
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300641 if (!pvt->pci_ch[i][0])
642 continue;
643
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300644 if (!CH_ACTIVE(pvt, i)) {
645 debugf0("Channel %i is not active\n", i);
646 continue;
647 }
648 if (CH_DISABLED(pvt, i)) {
649 debugf0("Channel %i is disabled\n", i);
650 continue;
651 }
652
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300653 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300654 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300655 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
656
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300657 pvt->channel[i].ranks = (data & QUAD_RANK_PRESENT) ?
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300658 4 : 2;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300659
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300660 if (data & REGISTERED_DIMM)
661 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300662 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300663 mtype = MEM_DDR3;
664#if 0
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300665 if (data & THREE_DIMMS_PRESENT)
666 pvt->channel[i].dimms = 3;
667 else if (data & SINGLE_QUAD_RANK_PRESENT)
668 pvt->channel[i].dimms = 1;
669 else
670 pvt->channel[i].dimms = 2;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300671#endif
672
673 /* Devices 4-6 function 1 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300674 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300675 MC_DOD_CH_DIMM0, &dimm_dod[0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300676 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300677 MC_DOD_CH_DIMM1, &dimm_dod[1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300678 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300679 MC_DOD_CH_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300680
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300681 debugf0("Ch%d phy rd%d, wr%d (0x%08x): "
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300682 "%d ranks, %cDIMMs\n",
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300683 i,
684 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
685 data,
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300686 pvt->channel[i].ranks,
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300687 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300688
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300689 for (j = 0; j < 3; j++) {
690 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300691 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300692
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300693 if (!DIMM_PRESENT(dimm_dod[j]))
694 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300695
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300696 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
697 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
698 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
699 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300700
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300701 /* DDR3 has 8 I/O banks */
702 size = (rows * cols * banks * ranks) >> (20 - 3);
703
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300704 pvt->channel[i].dimms++;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300705
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300706 debugf0("\tdimm %d %d Mb offset: %x, "
707 "bank: %d, rank: %d, row: %#x, col: %#x\n",
708 j, size,
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300709 RANKOFFSET(dimm_dod[j]),
710 banks, ranks, rows, cols);
711
Mauro Carvalho Chehabe9144602010-08-10 20:26:35 -0300712 npages = MiB_TO_PAGES(size);
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300713
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -0300714 csr = &mci->csrows[csrow];
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300715 csr->first_page = last_page + 1;
716 last_page += npages;
717 csr->last_page = last_page;
718 csr->nr_pages = npages;
719
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300720 csr->page_mask = 0;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300721 csr->grain = 8;
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -0300722 csr->csrow_idx = csrow;
Mauro Carvalho Chehabeb94fc42009-06-22 22:48:31 -0300723 csr->nr_channels = 1;
724
725 csr->channels[0].chan_idx = i;
726 csr->channels[0].ce_count = 0;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300727
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -0300728 pvt->csrow_map[i][j] = csrow;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300729
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300730 switch (banks) {
731 case 4:
732 csr->dtype = DEV_X4;
733 break;
734 case 8:
735 csr->dtype = DEV_X8;
736 break;
737 case 16:
738 csr->dtype = DEV_X16;
739 break;
740 default:
741 csr->dtype = DEV_UNKNOWN;
742 }
743
744 csr->edac_mode = mode;
745 csr->mtype = mtype;
746
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -0300747 csrow++;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300748 }
749
750 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
751 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
752 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
753 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
754 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
755 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
756 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
757 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300758 debugf1("\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300759 for (j = 0; j < 8; j++)
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300760 debugf1("\t\t%#x\t%#x\t%#x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300761 (value[j] >> 27) & 0x1,
762 (value[j] >> 24) & 0x7,
David Sterba80b8ce82010-12-27 15:39:12 +0000763 (value[j] & ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300764 }
765
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300766 return 0;
767}
768
769/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300770 Error insertion routines
771 ****************************************************************************/
772
773/* The i7core has independent error injection features per channel.
774 However, to have a simpler code, we don't allow enabling error injection
775 on more than one channel.
776 Also, since a change at an inject parameter will be applied only at enable,
777 we're disabling error injection on all write calls to the sysfs nodes that
778 controls the error code injection.
779 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300780static int disable_inject(const struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300781{
782 struct i7core_pvt *pvt = mci->pvt_info;
783
784 pvt->inject.enable = 0;
785
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300786 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300787 return -ENODEV;
788
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300789 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300790 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300791
792 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300793}
794
795/*
796 * i7core inject inject.section
797 *
798 * accept and store error injection inject.section value
799 * bit 0 - refers to the lower 32-byte half cacheline
800 * bit 1 - refers to the upper 32-byte half cacheline
801 */
802static ssize_t i7core_inject_section_store(struct mem_ctl_info *mci,
803 const char *data, size_t count)
804{
805 struct i7core_pvt *pvt = mci->pvt_info;
806 unsigned long value;
807 int rc;
808
809 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300810 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300811
812 rc = strict_strtoul(data, 10, &value);
813 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300814 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300815
816 pvt->inject.section = (u32) value;
817 return count;
818}
819
820static ssize_t i7core_inject_section_show(struct mem_ctl_info *mci,
821 char *data)
822{
823 struct i7core_pvt *pvt = mci->pvt_info;
824 return sprintf(data, "0x%08x\n", pvt->inject.section);
825}
826
827/*
828 * i7core inject.type
829 *
830 * accept and store error injection inject.section value
831 * bit 0 - repeat enable - Enable error repetition
832 * bit 1 - inject ECC error
833 * bit 2 - inject parity error
834 */
835static ssize_t i7core_inject_type_store(struct mem_ctl_info *mci,
836 const char *data, size_t count)
837{
838 struct i7core_pvt *pvt = mci->pvt_info;
839 unsigned long value;
840 int rc;
841
842 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300843 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300844
845 rc = strict_strtoul(data, 10, &value);
846 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300847 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300848
849 pvt->inject.type = (u32) value;
850 return count;
851}
852
853static ssize_t i7core_inject_type_show(struct mem_ctl_info *mci,
854 char *data)
855{
856 struct i7core_pvt *pvt = mci->pvt_info;
857 return sprintf(data, "0x%08x\n", pvt->inject.type);
858}
859
860/*
861 * i7core_inject_inject.eccmask_store
862 *
863 * The type of error (UE/CE) will depend on the inject.eccmask value:
864 * Any bits set to a 1 will flip the corresponding ECC bit
865 * Correctable errors can be injected by flipping 1 bit or the bits within
866 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
867 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
868 * uncorrectable error to be injected.
869 */
870static ssize_t i7core_inject_eccmask_store(struct mem_ctl_info *mci,
871 const char *data, size_t count)
872{
873 struct i7core_pvt *pvt = mci->pvt_info;
874 unsigned long value;
875 int rc;
876
877 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300878 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300879
880 rc = strict_strtoul(data, 10, &value);
881 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300882 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300883
884 pvt->inject.eccmask = (u32) value;
885 return count;
886}
887
888static ssize_t i7core_inject_eccmask_show(struct mem_ctl_info *mci,
889 char *data)
890{
891 struct i7core_pvt *pvt = mci->pvt_info;
892 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
893}
894
895/*
896 * i7core_addrmatch
897 *
898 * The type of error (UE/CE) will depend on the inject.eccmask value:
899 * Any bits set to a 1 will flip the corresponding ECC bit
900 * Correctable errors can be injected by flipping 1 bit or the bits within
901 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
902 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
903 * uncorrectable error to be injected.
904 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300905
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300906#define DECLARE_ADDR_MATCH(param, limit) \
907static ssize_t i7core_inject_store_##param( \
908 struct mem_ctl_info *mci, \
909 const char *data, size_t count) \
910{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300911 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300912 long value; \
913 int rc; \
914 \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300915 debugf1("%s()\n", __func__); \
916 pvt = mci->pvt_info; \
917 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300918 if (pvt->inject.enable) \
919 disable_inject(mci); \
920 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300921 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300922 value = -1; \
923 else { \
924 rc = strict_strtoul(data, 10, &value); \
925 if ((rc < 0) || (value >= limit)) \
926 return -EIO; \
927 } \
928 \
929 pvt->inject.param = value; \
930 \
931 return count; \
932} \
933 \
934static ssize_t i7core_inject_show_##param( \
935 struct mem_ctl_info *mci, \
936 char *data) \
937{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300938 struct i7core_pvt *pvt; \
939 \
940 pvt = mci->pvt_info; \
941 debugf1("%s() pvt=%p\n", __func__, pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300942 if (pvt->inject.param < 0) \
943 return sprintf(data, "any\n"); \
944 else \
945 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300946}
947
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300948#define ATTR_ADDR_MATCH(param) \
949 { \
950 .attr = { \
951 .name = #param, \
952 .mode = (S_IRUGO | S_IWUSR) \
953 }, \
954 .show = i7core_inject_show_##param, \
955 .store = i7core_inject_store_##param, \
956 }
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300957
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300958DECLARE_ADDR_MATCH(channel, 3);
959DECLARE_ADDR_MATCH(dimm, 3);
960DECLARE_ADDR_MATCH(rank, 4);
961DECLARE_ADDR_MATCH(bank, 32);
962DECLARE_ADDR_MATCH(page, 0x10000);
963DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300964
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300965static int write_and_test(struct pci_dev *dev, const int where, const u32 val)
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300966{
967 u32 read;
968 int count;
969
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300970 debugf0("setting pci %02x:%02x.%x reg=%02x value=%08x\n",
971 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
972 where, val);
973
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300974 for (count = 0; count < 10; count++) {
975 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300976 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300977 pci_write_config_dword(dev, where, val);
978 pci_read_config_dword(dev, where, &read);
979
980 if (read == val)
981 return 0;
982 }
983
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300984 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
985 "write=%08x. Read=%08x\n",
986 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
987 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300988
989 return -EINVAL;
990}
991
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300992/*
993 * This routine prepares the Memory Controller for error injection.
994 * The error will be injected when some process tries to write to the
995 * memory that matches the given criteria.
996 * The criteria can be set in terms of a mask where dimm, rank, bank, page
997 * and col can be specified.
998 * A -1 value for any of the mask items will make the MCU to ignore
999 * that matching criteria for error injection.
1000 *
1001 * It should be noticed that the error will only happen after a write operation
1002 * on a memory that matches the condition. if REPEAT_EN is not enabled at
1003 * inject mask, then it will produce just one error. Otherwise, it will repeat
1004 * until the injectmask would be cleaned.
1005 *
1006 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
1007 * is reliable enough to check if the MC is using the
1008 * three channels. However, this is not clear at the datasheet.
1009 */
1010static ssize_t i7core_inject_enable_store(struct mem_ctl_info *mci,
1011 const char *data, size_t count)
1012{
1013 struct i7core_pvt *pvt = mci->pvt_info;
1014 u32 injectmask;
1015 u64 mask = 0;
1016 int rc;
1017 long enable;
1018
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001019 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001020 return 0;
1021
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001022 rc = strict_strtoul(data, 10, &enable);
1023 if ((rc < 0))
1024 return 0;
1025
1026 if (enable) {
1027 pvt->inject.enable = 1;
1028 } else {
1029 disable_inject(mci);
1030 return count;
1031 }
1032
1033 /* Sets pvt->inject.dimm mask */
1034 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001035 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001036 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001037 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -02001038 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001039 else
Alan Cox486dd092009-11-08 01:34:27 -02001040 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001041 }
1042
1043 /* Sets pvt->inject.rank mask */
1044 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001045 mask |= 1LL << 40;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001046 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001047 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -02001048 mask |= (pvt->inject.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001049 else
Alan Cox486dd092009-11-08 01:34:27 -02001050 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001051 }
1052
1053 /* Sets pvt->inject.bank mask */
1054 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001055 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001056 else
Alan Cox486dd092009-11-08 01:34:27 -02001057 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001058
1059 /* Sets pvt->inject.page mask */
1060 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001061 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001062 else
Alan Cox486dd092009-11-08 01:34:27 -02001063 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001064
1065 /* Sets pvt->inject.column mask */
1066 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -02001067 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001068 else
Alan Cox486dd092009-11-08 01:34:27 -02001069 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001070
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001071 /*
1072 * bit 0: REPEAT_EN
1073 * bits 1-2: MASK_HALF_CACHELINE
1074 * bit 3: INJECT_ECC
1075 * bit 4: INJECT_ADDR_PARITY
1076 */
1077
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001078 injectmask = (pvt->inject.type & 1) |
1079 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001080 (pvt->inject.type & 0x6) << (3 - 1);
1081
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001082 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001083 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001084 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001085
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001086 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001087 MC_CHANNEL_ADDR_MATCH, mask);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001088 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001089 MC_CHANNEL_ADDR_MATCH + 4, mask >> 32L);
1090
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001091 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001092 MC_CHANNEL_ERROR_MASK, pvt->inject.eccmask);
1093
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001094 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001095 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001096
1097 /*
1098 * This is something undocumented, based on my tests
1099 * Without writing 8 to this register, errors aren't injected. Not sure
1100 * why.
1101 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001102 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001103 MC_CFG_CONTROL, 8);
1104
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001105 debugf0("Error inject addr match 0x%016llx, ecc 0x%08x,"
1106 " inject 0x%08x\n",
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001107 mask, pvt->inject.eccmask, injectmask);
1108
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001109
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001110 return count;
1111}
1112
1113static ssize_t i7core_inject_enable_show(struct mem_ctl_info *mci,
1114 char *data)
1115{
1116 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001117 u32 injectmask;
1118
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001119 if (!pvt->pci_ch[pvt->inject.channel][0])
1120 return 0;
1121
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001122 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001123 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001124
1125 debugf0("Inject error read: 0x%018x\n", injectmask);
1126
1127 if (injectmask & 0x0c)
1128 pvt->inject.enable = 1;
1129
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001130 return sprintf(data, "%d\n", pvt->inject.enable);
1131}
1132
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001133#define DECLARE_COUNTER(param) \
1134static ssize_t i7core_show_counter_##param( \
1135 struct mem_ctl_info *mci, \
1136 char *data) \
1137{ \
1138 struct i7core_pvt *pvt = mci->pvt_info; \
1139 \
1140 debugf1("%s() \n", __func__); \
1141 if (!pvt->ce_count_available || (pvt->is_registered)) \
1142 return sprintf(data, "data unavailable\n"); \
1143 return sprintf(data, "%lu\n", \
1144 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001145}
1146
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001147#define ATTR_COUNTER(param) \
1148 { \
1149 .attr = { \
1150 .name = __stringify(udimm##param), \
1151 .mode = (S_IRUGO | S_IWUSR) \
1152 }, \
1153 .show = i7core_show_counter_##param \
1154 }
1155
1156DECLARE_COUNTER(0);
1157DECLARE_COUNTER(1);
1158DECLARE_COUNTER(2);
1159
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001160/*
1161 * Sysfs struct
1162 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001163
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001164static const struct mcidev_sysfs_attribute i7core_addrmatch_attrs[] = {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001165 ATTR_ADDR_MATCH(channel),
1166 ATTR_ADDR_MATCH(dimm),
1167 ATTR_ADDR_MATCH(rank),
1168 ATTR_ADDR_MATCH(bank),
1169 ATTR_ADDR_MATCH(page),
1170 ATTR_ADDR_MATCH(col),
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001171 { } /* End of list */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001172};
1173
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001174static const struct mcidev_sysfs_group i7core_inject_addrmatch = {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001175 .name = "inject_addrmatch",
1176 .mcidev_attr = i7core_addrmatch_attrs,
1177};
1178
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001179static const struct mcidev_sysfs_attribute i7core_udimm_counters_attrs[] = {
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001180 ATTR_COUNTER(0),
1181 ATTR_COUNTER(1),
1182 ATTR_COUNTER(2),
Marcin Slusarz64aab722010-09-30 15:15:30 -07001183 { .attr = { .name = NULL } }
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001184};
1185
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001186static const struct mcidev_sysfs_group i7core_udimm_counters = {
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001187 .name = "all_channel_counts",
1188 .mcidev_attr = i7core_udimm_counters_attrs,
1189};
1190
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001191static const struct mcidev_sysfs_attribute i7core_sysfs_rdimm_attrs[] = {
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001192 {
1193 .attr = {
1194 .name = "inject_section",
1195 .mode = (S_IRUGO | S_IWUSR)
1196 },
1197 .show = i7core_inject_section_show,
1198 .store = i7core_inject_section_store,
1199 }, {
1200 .attr = {
1201 .name = "inject_type",
1202 .mode = (S_IRUGO | S_IWUSR)
1203 },
1204 .show = i7core_inject_type_show,
1205 .store = i7core_inject_type_store,
1206 }, {
1207 .attr = {
1208 .name = "inject_eccmask",
1209 .mode = (S_IRUGO | S_IWUSR)
1210 },
1211 .show = i7core_inject_eccmask_show,
1212 .store = i7core_inject_eccmask_store,
1213 }, {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001214 .grp = &i7core_inject_addrmatch,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001215 }, {
1216 .attr = {
1217 .name = "inject_enable",
1218 .mode = (S_IRUGO | S_IWUSR)
1219 },
1220 .show = i7core_inject_enable_show,
1221 .store = i7core_inject_enable_store,
1222 },
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001223 { } /* End of list */
1224};
1225
1226static const struct mcidev_sysfs_attribute i7core_sysfs_udimm_attrs[] = {
1227 {
1228 .attr = {
1229 .name = "inject_section",
1230 .mode = (S_IRUGO | S_IWUSR)
1231 },
1232 .show = i7core_inject_section_show,
1233 .store = i7core_inject_section_store,
1234 }, {
1235 .attr = {
1236 .name = "inject_type",
1237 .mode = (S_IRUGO | S_IWUSR)
1238 },
1239 .show = i7core_inject_type_show,
1240 .store = i7core_inject_type_store,
1241 }, {
1242 .attr = {
1243 .name = "inject_eccmask",
1244 .mode = (S_IRUGO | S_IWUSR)
1245 },
1246 .show = i7core_inject_eccmask_show,
1247 .store = i7core_inject_eccmask_store,
1248 }, {
1249 .grp = &i7core_inject_addrmatch,
1250 }, {
1251 .attr = {
1252 .name = "inject_enable",
1253 .mode = (S_IRUGO | S_IWUSR)
1254 },
1255 .show = i7core_inject_enable_show,
1256 .store = i7core_inject_enable_store,
1257 }, {
1258 .grp = &i7core_udimm_counters,
1259 },
1260 { } /* End of list */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001261};
1262
1263/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001264 Device initialization routines: put/get, init/exit
1265 ****************************************************************************/
1266
1267/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001268 * i7core_put_all_devices 'put' all the devices that we have
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001269 * reserved via 'get'
1270 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001271static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001272{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001273 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001274
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001275 debugf0(__FILE__ ": %s()\n", __func__);
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001276 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001277 struct pci_dev *pdev = i7core_dev->pdev[i];
1278 if (!pdev)
1279 continue;
1280 debugf0("Removing dev %02x:%02x.%d\n",
1281 pdev->bus->number,
1282 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
1283 pci_dev_put(pdev);
1284 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001285}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001286
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001287static void i7core_put_all_devices(void)
1288{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001289 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001290
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001291 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001292 i7core_put_devices(i7core_dev);
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -03001293 free_i7core_dev(i7core_dev);
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001294 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001295}
1296
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001297static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001298{
1299 struct pci_dev *pdev = NULL;
1300 int i;
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03001301
Keith Manntheybc2d7242009-09-03 00:05:05 -03001302 /*
David Sterbae7bf0682010-12-27 16:51:15 +01001303 * On Xeon 55xx, the Intel Quick Path Arch Generic Non-core pci buses
Keith Manntheybc2d7242009-09-03 00:05:05 -03001304 * aren't announced by acpi. So, we need to use a legacy scan probing
1305 * to detect them
1306 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001307 while (table && table->descr) {
1308 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1309 if (unlikely(!pdev)) {
1310 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1311 pcibios_scan_specific_bus(255-i);
1312 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001313 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001314 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001315 }
1316}
1317
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001318static unsigned i7core_pci_lastbus(void)
1319{
1320 int last_bus = 0, bus;
1321 struct pci_bus *b = NULL;
1322
1323 while ((b = pci_find_next_bus(b)) != NULL) {
1324 bus = b->number;
1325 debugf0("Found bus %d\n", bus);
1326 if (bus > last_bus)
1327 last_bus = bus;
1328 }
1329
1330 debugf0("Last bus %d\n", last_bus);
1331
1332 return last_bus;
1333}
1334
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001335/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001336 * i7core_get_all_devices Find and perform 'get' operation on the MCH's
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001337 * device/functions we want to reference for this driver
1338 *
1339 * Need to 'get' device 16 func 1 and func 2
1340 */
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001341static int i7core_get_onedevice(struct pci_dev **prev,
1342 const struct pci_id_table *table,
1343 const unsigned devno,
1344 const unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001345{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001346 struct i7core_dev *i7core_dev;
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001347 const struct pci_id_descr *dev_descr = &table->descr[devno];
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001348
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001349 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001350 u8 bus = 0;
1351 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001352
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001353 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001354 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001355
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001356 /*
1357 * On Xeon 55xx, the Intel Quckpath Arch Generic Non-core regs
1358 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1359 * to probe for the alternate address in case of failure
1360 */
1361 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev)
1362 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1363 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
1364
1365 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE && !pdev)
1366 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1367 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1368 *prev);
1369
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001370 if (!pdev) {
1371 if (*prev) {
1372 *prev = pdev;
1373 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001374 }
1375
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001376 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001377 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001378
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001379 if (devno == 0)
1380 return -ENODEV;
1381
Daniel J Bluemanab089372010-07-23 23:16:52 +01001382 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001383 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001384 dev_descr->dev, dev_descr->func,
1385 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001386
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001387 /* End of list, leave */
1388 return -ENODEV;
1389 }
1390 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001391
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001392 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001393
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001394 i7core_dev = get_i7core_dev(socket);
1395 if (!i7core_dev) {
Hidetoshi Seto848b2f72010-08-20 04:24:44 -03001396 i7core_dev = alloc_i7core_dev(socket, table);
Hidetoshi Seto28966372010-08-20 04:28:51 -03001397 if (!i7core_dev) {
1398 pci_dev_put(pdev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001399 return -ENOMEM;
Hidetoshi Seto28966372010-08-20 04:28:51 -03001400 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001401 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001402
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001403 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001404 i7core_printk(KERN_ERR,
1405 "Duplicated device for "
1406 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001407 bus, dev_descr->dev, dev_descr->func,
1408 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001409 pci_dev_put(pdev);
1410 return -ENODEV;
1411 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001412
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001413 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001414
1415 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001416 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1417 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001418 i7core_printk(KERN_ERR,
1419 "Device PCI ID %04x:%04x "
1420 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001421 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001422 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001423 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001424 return -ENODEV;
1425 }
1426
1427 /* Be sure that the device is enabled */
1428 if (unlikely(pci_enable_device(pdev) < 0)) {
1429 i7core_printk(KERN_ERR,
1430 "Couldn't enable "
1431 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001432 bus, dev_descr->dev, dev_descr->func,
1433 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001434 return -ENODEV;
1435 }
1436
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001437 debugf0("Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001438 socket, bus, dev_descr->dev,
1439 dev_descr->func,
1440 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001441
Mauro Carvalho Chehaba3e15412010-08-21 08:52:41 -03001442 /*
1443 * As stated on drivers/pci/search.c, the reference count for
1444 * @from is always decremented if it is not %NULL. So, as we need
1445 * to get all devices up to null, we need to do a get for the device
1446 */
1447 pci_dev_get(pdev);
1448
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001449 *prev = pdev;
1450
1451 return 0;
1452}
1453
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001454static int i7core_get_all_devices(void)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001455{
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001456 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001457 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001458 const struct pci_id_table *table = pci_dev_table;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001459
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001460 last_bus = i7core_pci_lastbus();
1461
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001462 while (table && table->descr) {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001463 for (i = 0; i < table->n_devs; i++) {
1464 pdev = NULL;
1465 do {
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001466 rc = i7core_get_onedevice(&pdev, table, i,
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001467 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001468 if (rc < 0) {
1469 if (i == 0) {
1470 i = table->n_devs;
1471 break;
1472 }
1473 i7core_put_all_devices();
1474 return -ENODEV;
1475 }
1476 } while (pdev);
1477 }
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001478 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001479 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001480
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001481 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001482}
1483
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001484static int mci_bind_devs(struct mem_ctl_info *mci,
1485 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001486{
1487 struct i7core_pvt *pvt = mci->pvt_info;
1488 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001489 int i, func, slot;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001490 char *family;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001491
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001492 pvt->is_registered = false;
1493 pvt->enable_scrub = false;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001494 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001495 pdev = i7core_dev->pdev[i];
1496 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001497 continue;
1498
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001499 func = PCI_FUNC(pdev->devfn);
1500 slot = PCI_SLOT(pdev->devfn);
1501 if (slot == 3) {
1502 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001503 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001504 pvt->pci_mcr[func] = pdev;
1505 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1506 if (unlikely(func > MAX_CHAN_FUNC))
1507 goto error;
1508 pvt->pci_ch[slot - 4][func] = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001509 } else if (!slot && !func) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001510 pvt->pci_noncore = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001511
1512 /* Detect the processor family */
1513 switch (pdev->device) {
1514 case PCI_DEVICE_ID_INTEL_I7_NONCORE:
1515 family = "Xeon 35xx/ i7core";
1516 pvt->enable_scrub = false;
1517 break;
1518 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT:
1519 family = "i7-800/i5-700";
1520 pvt->enable_scrub = false;
1521 break;
1522 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE:
1523 family = "Xeon 34xx";
1524 pvt->enable_scrub = false;
1525 break;
1526 case PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT:
1527 family = "Xeon 55xx";
1528 pvt->enable_scrub = true;
1529 break;
1530 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2:
1531 family = "Xeon 56xx / i7-900";
1532 pvt->enable_scrub = true;
1533 break;
1534 default:
1535 family = "unknown";
1536 pvt->enable_scrub = false;
1537 }
1538 debugf0("Detected a processor type %s\n", family);
1539 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001540 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001541
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001542 debugf0("Associated fn %d.%d, dev = %p, socket %d\n",
1543 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1544 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001545
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001546 if (PCI_SLOT(pdev->devfn) == 3 &&
1547 PCI_FUNC(pdev->devfn) == 2)
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001548 pvt->is_registered = true;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001549 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001550
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001551 return 0;
1552
1553error:
1554 i7core_printk(KERN_ERR, "Device %d, function %d "
1555 "is out of the expected range\n",
1556 slot, func);
1557 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001558}
1559
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001560/****************************************************************************
1561 Error check routines
1562 ****************************************************************************/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001563static void i7core_rdimm_update_csrow(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001564 const int chan,
1565 const int dimm,
1566 const int add)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001567{
1568 char *msg;
1569 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001570 int row = pvt->csrow_map[chan][dimm], i;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001571
1572 for (i = 0; i < add; i++) {
1573 msg = kasprintf(GFP_KERNEL, "Corrected error "
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001574 "(Socket=%d channel=%d dimm=%d)",
1575 pvt->i7core_dev->socket, chan, dimm);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001576
1577 edac_mc_handle_fbd_ce(mci, row, 0, msg);
1578 kfree (msg);
1579 }
1580}
1581
1582static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001583 const int chan,
1584 const int new0,
1585 const int new1,
1586 const int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001587{
1588 struct i7core_pvt *pvt = mci->pvt_info;
1589 int add0 = 0, add1 = 0, add2 = 0;
1590 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001591 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001592 /* Updates CE counters */
1593
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001594 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1595 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1596 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001597
1598 if (add2 < 0)
1599 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001600 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001601
1602 if (add1 < 0)
1603 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001604 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001605
1606 if (add0 < 0)
1607 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001608 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001609 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001610 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001611
1612 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001613 pvt->rdimm_last_ce_count[chan][2] = new2;
1614 pvt->rdimm_last_ce_count[chan][1] = new1;
1615 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001616
1617 /*updated the edac core */
1618 if (add0 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001619 i7core_rdimm_update_csrow(mci, chan, 0, add0);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001620 if (add1 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001621 i7core_rdimm_update_csrow(mci, chan, 1, add1);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001622 if (add2 != 0)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001623 i7core_rdimm_update_csrow(mci, chan, 2, add2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001624
1625}
1626
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001627static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001628{
1629 struct i7core_pvt *pvt = mci->pvt_info;
1630 u32 rcv[3][2];
1631 int i, new0, new1, new2;
1632
1633 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001634 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001635 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001636 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001637 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001638 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001639 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001640 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001641 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001642 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001643 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001644 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001645 &rcv[2][1]);
1646 for (i = 0 ; i < 3; i++) {
1647 debugf3("MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1648 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
1649 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001650 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001651 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1652 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1653 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1654 } else {
1655 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1656 DIMM_BOT_COR_ERR(rcv[i][0]);
1657 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1658 DIMM_BOT_COR_ERR(rcv[i][1]);
1659 new2 = 0;
1660 }
1661
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001662 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001663 }
1664}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001665
1666/* This function is based on the device 3 function 4 registers as described on:
1667 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1668 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1669 * also available at:
1670 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1671 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001672static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001673{
1674 struct i7core_pvt *pvt = mci->pvt_info;
1675 u32 rcv1, rcv0;
1676 int new0, new1, new2;
1677
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001678 if (!pvt->pci_mcr[4]) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001679 debugf0("%s MCR registers not found\n", __func__);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001680 return;
1681 }
1682
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001683 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001684 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1685 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001686
1687 /* Store the new values */
1688 new2 = DIMM2_COR_ERR(rcv1);
1689 new1 = DIMM1_COR_ERR(rcv0);
1690 new0 = DIMM0_COR_ERR(rcv0);
1691
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001692 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001693 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001694 /* Updates CE counters */
1695 int add0, add1, add2;
1696
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001697 add2 = new2 - pvt->udimm_last_ce_count[2];
1698 add1 = new1 - pvt->udimm_last_ce_count[1];
1699 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001700
1701 if (add2 < 0)
1702 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001703 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001704
1705 if (add1 < 0)
1706 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001707 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001708
1709 if (add0 < 0)
1710 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001711 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001712
1713 if (add0 | add1 | add2)
1714 i7core_printk(KERN_ERR, "New Corrected error(s): "
1715 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1716 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001717 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001718 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001719
1720 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001721 pvt->udimm_last_ce_count[2] = new2;
1722 pvt->udimm_last_ce_count[1] = new1;
1723 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001724}
1725
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001726/*
1727 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1728 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001729 * Nehalem are defined as family 0x06, model 0x1a
1730 *
1731 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001732 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001733 * m->status MSR_IA32_MC8_STATUS
1734 * m->addr MSR_IA32_MC8_ADDR
1735 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001736 * In the case of Nehalem, the error information is masked at .status and .misc
1737 * fields
1738 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001739static void i7core_mce_output_error(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001740 const struct mce *m)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001741{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001742 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001743 char *type, *optype, *err, *msg;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001744 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001745 u32 optypenum = (m->status >> 4) & 0x07;
Mathias Krause8cf2d232011-08-18 09:17:00 +02001746 u32 core_err_cnt = (m->status >> 38) & 0x7fff;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001747 u32 dimm = (m->misc >> 16) & 0x3;
1748 u32 channel = (m->misc >> 18) & 0x3;
1749 u32 syndrome = m->misc >> 32;
1750 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001751 int csrow;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001752
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001753 if (m->mcgstatus & 1)
1754 type = "FATAL";
1755 else
1756 type = "NON_FATAL";
1757
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001758 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001759 case 0:
1760 optype = "generic undef request";
1761 break;
1762 case 1:
1763 optype = "read error";
1764 break;
1765 case 2:
1766 optype = "write error";
1767 break;
1768 case 3:
1769 optype = "addr/cmd error";
1770 break;
1771 case 4:
1772 optype = "scrubbing error";
1773 break;
1774 default:
1775 optype = "reserved";
1776 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001777 }
1778
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001779 switch (errnum) {
1780 case 16:
1781 err = "read ECC error";
1782 break;
1783 case 17:
1784 err = "RAS ECC error";
1785 break;
1786 case 18:
1787 err = "write parity error";
1788 break;
1789 case 19:
1790 err = "redundacy loss";
1791 break;
1792 case 20:
1793 err = "reserved";
1794 break;
1795 case 21:
1796 err = "memory range error";
1797 break;
1798 case 22:
1799 err = "RTID out of range";
1800 break;
1801 case 23:
1802 err = "address parity error";
1803 break;
1804 case 24:
1805 err = "byte enable parity error";
1806 break;
1807 default:
1808 err = "unknown";
1809 }
1810
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001811 /* FIXME: should convert addr into bank and rank information */
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001812 msg = kasprintf(GFP_ATOMIC,
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001813 "%s (addr = 0x%08llx, cpu=%d, Dimm=%d, Channel=%d, "
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001814 "syndrome=0x%08x, count=%d, Err=%08llx:%08llx (%s: %s))\n",
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001815 type, (long long) m->addr, m->cpu, dimm, channel,
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001816 syndrome, core_err_cnt, (long long)m->status,
1817 (long long)m->misc, optype, err);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001818
1819 debugf0("%s", msg);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001820
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001821 csrow = pvt->csrow_map[channel][dimm];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001822
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001823 /* Call the helper to output message */
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001824 if (m->mcgstatus & 1)
1825 edac_mc_handle_fbd_ue(mci, csrow, 0,
1826 0 /* FIXME: should be channel here */, msg);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001827 else if (!pvt->is_registered)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001828 edac_mc_handle_fbd_ce(mci, csrow,
1829 0 /* FIXME: should be channel here */, msg);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001830
1831 kfree(msg);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001832}
1833
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001834/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001835 * i7core_check_error Retrieve and process errors reported by the
1836 * hardware. Called by the Core module.
1837 */
1838static void i7core_check_error(struct mem_ctl_info *mci)
1839{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001840 struct i7core_pvt *pvt = mci->pvt_info;
1841 int i;
1842 unsigned count = 0;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001843 struct mce *m;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001844
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001845 /*
1846 * MCE first step: Copy all mce errors into a temporary buffer
1847 * We use a double buffering here, to reduce the risk of
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001848 * losing an error.
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001849 */
1850 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001851 count = (pvt->mce_out + MCE_LOG_LEN - pvt->mce_in)
1852 % MCE_LOG_LEN;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001853 if (!count)
Vernon Mauery8a311e12010-04-16 19:40:19 -03001854 goto check_ce_error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001855
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001856 m = pvt->mce_outentry;
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001857 if (pvt->mce_in + count > MCE_LOG_LEN) {
1858 unsigned l = MCE_LOG_LEN - pvt->mce_in;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001859
1860 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * l);
1861 smp_wmb();
1862 pvt->mce_in = 0;
1863 count -= l;
1864 m += l;
1865 }
1866 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * count);
1867 smp_wmb();
1868 pvt->mce_in += count;
1869
1870 smp_rmb();
1871 if (pvt->mce_overrun) {
1872 i7core_printk(KERN_ERR, "Lost %d memory errors\n",
1873 pvt->mce_overrun);
1874 smp_wmb();
1875 pvt->mce_overrun = 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001876 }
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001877
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001878 /*
1879 * MCE second step: parse errors and display
1880 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001881 for (i = 0; i < count; i++)
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001882 i7core_mce_output_error(mci, &pvt->mce_outentry[i]);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001883
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001884 /*
1885 * Now, let's increment CE error counts
1886 */
Vernon Mauery8a311e12010-04-16 19:40:19 -03001887check_ce_error:
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001888 if (!pvt->is_registered)
1889 i7core_udimm_check_mc_ecc_err(mci);
1890 else
1891 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001892}
1893
1894/*
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001895 * i7core_mce_check_error Replicates mcelog routine to get errors
1896 * This routine simply queues mcelog errors, and
1897 * return. The error itself should be handled later
1898 * by i7core_check_error.
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001899 * WARNING: As this routine should be called at NMI time, extra care should
1900 * be taken to avoid deadlocks, and to be as fast as possible.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001901 */
1902static int i7core_mce_check_error(void *priv, struct mce *mce)
1903{
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001904 struct mem_ctl_info *mci = priv;
1905 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001906
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001907 /*
1908 * Just let mcelog handle it if the error is
1909 * outside the memory controller
1910 */
1911 if (((mce->status & 0xffff) >> 7) != 1)
1912 return 0;
1913
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001914 /* Bank 8 registers are the only ones that we know how to handle */
1915 if (mce->bank != 8)
1916 return 0;
1917
Randy Dunlap3b918c12009-11-08 01:36:40 -02001918#ifdef CONFIG_SMP
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001919 /* Only handle if it is the right mc controller */
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001920 if (cpu_data(mce->cpu).phys_proc_id != pvt->i7core_dev->socket)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001921 return 0;
Randy Dunlap3b918c12009-11-08 01:36:40 -02001922#endif
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001923
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001924 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001925 if ((pvt->mce_out + 1) % MCE_LOG_LEN == pvt->mce_in) {
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001926 smp_wmb();
1927 pvt->mce_overrun++;
1928 return 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001929 }
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001930
1931 /* Copy memory error at the ringbuffer */
1932 memcpy(&pvt->mce_entry[pvt->mce_out], mce, sizeof(*mce));
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001933 smp_wmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001934 pvt->mce_out = (pvt->mce_out + 1) % MCE_LOG_LEN;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001935
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001936 /* Handle fatal errors immediately */
1937 if (mce->mcgstatus & 1)
1938 i7core_check_error(mci);
1939
David Sterbae7bf0682010-12-27 16:51:15 +01001940 /* Advise mcelog that the errors were handled */
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001941 return 1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001942}
1943
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001944/*
1945 * set_sdram_scrub_rate This routine sets byte/sec bandwidth scrub rate
1946 * to hardware according to SCRUBINTERVAL formula
1947 * found in datasheet.
1948 */
1949static int set_sdram_scrub_rate(struct mem_ctl_info *mci, u32 new_bw)
1950{
1951 struct i7core_pvt *pvt = mci->pvt_info;
1952 struct pci_dev *pdev;
1953 const u32 cache_line_size = 64;
1954 const u32 freq_dclk = 800*1000000;
1955 u32 dw_scrub;
1956 u32 dw_ssr;
1957
1958 /* Get data from the MC register, function 2 */
1959 pdev = pvt->pci_mcr[2];
1960 if (!pdev)
1961 return -ENODEV;
1962
1963 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &dw_scrub);
1964
1965 if (new_bw == 0) {
1966 /* Prepare to disable petrol scrub */
1967 dw_scrub &= ~STARTSCRUB;
1968 /* Stop the patrol scrub engine */
1969 write_and_test(pdev, MC_SCRUB_CONTROL, dw_scrub & ~0x00ffffff);
1970
1971 /* Get current status of scrub rate and set bit to disable */
1972 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
1973 dw_ssr &= ~SSR_MODE_MASK;
1974 dw_ssr |= SSR_MODE_DISABLE;
1975 } else {
1976 /*
1977 * Translate the desired scrub rate to a register value and
1978 * program the cooresponding register value.
1979 */
1980 dw_scrub = 0x00ffffff & (cache_line_size * freq_dclk / new_bw);
1981
1982 /* Start the patrol scrub engine */
1983 pci_write_config_dword(pdev, MC_SCRUB_CONTROL,
1984 STARTSCRUB | dw_scrub);
1985
1986 /* Get current status of scrub rate and set bit to enable */
1987 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
1988 dw_ssr &= ~SSR_MODE_MASK;
1989 dw_ssr |= SSR_MODE_ENABLE;
1990 }
1991 /* Disable or enable scrubbing */
1992 pci_write_config_dword(pdev, MC_SSRCONTROL, dw_ssr);
1993
1994 return new_bw;
1995}
1996
1997/*
1998 * get_sdram_scrub_rate This routine convert current scrub rate value
1999 * into byte/sec bandwidth accourding to
2000 * SCRUBINTERVAL formula found in datasheet.
2001 */
2002static int get_sdram_scrub_rate(struct mem_ctl_info *mci)
2003{
2004 struct i7core_pvt *pvt = mci->pvt_info;
2005 struct pci_dev *pdev;
2006 const u32 cache_line_size = 64;
2007 const u32 freq_dclk = 800*1000000;
2008 u32 scrubval;
2009
2010 /* Get data from the MC register, function 2 */
2011 pdev = pvt->pci_mcr[2];
2012 if (!pdev)
2013 return -ENODEV;
2014
2015 /* Get current scrub control data */
2016 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &scrubval);
2017
2018 /* Mask highest 8-bits to 0 */
2019 scrubval &= 0x00ffffff;
2020 if (!scrubval)
2021 return 0;
2022
2023 /* Calculate scrub rate value into byte/sec bandwidth */
2024 return 0xffffffff & (cache_line_size * freq_dclk / (u64) scrubval);
2025}
2026
2027static void enable_sdram_scrub_setting(struct mem_ctl_info *mci)
2028{
2029 struct i7core_pvt *pvt = mci->pvt_info;
2030 u32 pci_lock;
2031
2032 /* Unlock writes to pci registers */
2033 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2034 pci_lock &= ~0x3;
2035 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2036 pci_lock | MC_CFG_UNLOCK);
2037
2038 mci->set_sdram_scrub_rate = set_sdram_scrub_rate;
2039 mci->get_sdram_scrub_rate = get_sdram_scrub_rate;
2040}
2041
2042static void disable_sdram_scrub_setting(struct mem_ctl_info *mci)
2043{
2044 struct i7core_pvt *pvt = mci->pvt_info;
2045 u32 pci_lock;
2046
2047 /* Lock writes to pci registers */
2048 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2049 pci_lock &= ~0x3;
2050 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2051 pci_lock | MC_CFG_LOCK);
2052}
2053
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002054static void i7core_pci_ctl_create(struct i7core_pvt *pvt)
2055{
2056 pvt->i7core_pci = edac_pci_create_generic_ctl(
2057 &pvt->i7core_dev->pdev[0]->dev,
2058 EDAC_MOD_STR);
2059 if (unlikely(!pvt->i7core_pci))
2060 pr_warn("Unable to setup PCI error report via EDAC\n");
2061}
2062
2063static void i7core_pci_ctl_release(struct i7core_pvt *pvt)
2064{
2065 if (likely(pvt->i7core_pci))
2066 edac_pci_release_generic_ctl(pvt->i7core_pci);
2067 else
2068 i7core_printk(KERN_ERR,
2069 "Couldn't find mem_ctl_info for socket %d\n",
2070 pvt->i7core_dev->socket);
2071 pvt->i7core_pci = NULL;
2072}
2073
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002074static void i7core_unregister_mci(struct i7core_dev *i7core_dev)
2075{
2076 struct mem_ctl_info *mci = i7core_dev->mci;
2077 struct i7core_pvt *pvt;
2078
2079 if (unlikely(!mci || !mci->pvt_info)) {
2080 debugf0("MC: " __FILE__ ": %s(): dev = %p\n",
2081 __func__, &i7core_dev->pdev[0]->dev);
2082
2083 i7core_printk(KERN_ERR, "Couldn't find mci handler\n");
2084 return;
2085 }
2086
2087 pvt = mci->pvt_info;
2088
2089 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
2090 __func__, mci, &i7core_dev->pdev[0]->dev);
2091
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002092 /* Disable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002093 if (pvt->enable_scrub)
2094 disable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002095
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002096 /* Disable MCE NMI handler */
2097 edac_mce_unregister(&pvt->edac_mce);
2098
2099 /* Disable EDAC polling */
2100 i7core_pci_ctl_release(pvt);
2101
2102 /* Remove MC sysfs nodes */
2103 edac_mc_del_mc(mci->dev);
2104
2105 debugf1("%s: free mci struct\n", mci->ctl_name);
2106 kfree(mci->ctl_name);
2107 edac_mc_free(mci);
2108 i7core_dev->mci = NULL;
2109}
2110
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002111static int i7core_register_mci(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002112{
2113 struct mem_ctl_info *mci;
2114 struct i7core_pvt *pvt;
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002115 int rc, channels, csrows;
2116
2117 /* Check the number of active and not disabled channels */
2118 rc = i7core_get_active_channels(i7core_dev->socket, &channels, &csrows);
2119 if (unlikely(rc < 0))
2120 return rc;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002121
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002122 /* allocate a new MC control structure */
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002123 mci = edac_mc_alloc(sizeof(*pvt), csrows, channels, i7core_dev->socket);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002124 if (unlikely(!mci))
2125 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002126
Mauro Carvalho Chehab3cfd0142010-08-10 23:23:46 -03002127 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
2128 __func__, mci, &i7core_dev->pdev[0]->dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002129
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002130 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002131 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03002132
Mauro Carvalho Chehab6d37d242010-08-20 12:48:26 -03002133 /* Associates i7core_dev and mci for future usage */
2134 pvt->i7core_dev = i7core_dev;
2135 i7core_dev->mci = mci;
2136
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002137 /*
2138 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
2139 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
2140 * memory channels
2141 */
2142 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002143 mci->edac_ctl_cap = EDAC_FLAG_NONE;
2144 mci->edac_cap = EDAC_FLAG_NONE;
2145 mci->mod_name = "i7core_edac.c";
2146 mci->mod_ver = I7CORE_REVISION;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002147 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d",
2148 i7core_dev->socket);
2149 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002150 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03002151
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002152 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002153 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002154 if (unlikely(rc < 0))
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002155 goto fail0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002156
Hidetoshi Seto59398132010-08-20 04:28:25 -03002157 if (pvt->is_registered)
2158 mci->mc_driver_sysfs_attributes = i7core_sysfs_rdimm_attrs;
2159 else
2160 mci->mc_driver_sysfs_attributes = i7core_sysfs_udimm_attrs;
2161
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002162 /* Get dimm basic config */
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -03002163 get_dimm_config(mci);
Hidetoshi Seto59398132010-08-20 04:28:25 -03002164 /* record ptr to the generic device */
2165 mci->dev = &i7core_dev->pdev[0]->dev;
2166 /* Set the function pointer to an actual operation function */
2167 mci->edac_check = i7core_check_error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002168
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002169 /* Enable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002170 if (pvt->enable_scrub)
2171 enable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002172
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002173 /* add this new MC control structure to EDAC's list of MCs */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002174 if (unlikely(edac_mc_add_mc(mci))) {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002175 debugf0("MC: " __FILE__
2176 ": %s(): failed edac_mc_add_mc()\n", __func__);
2177 /* FIXME: perhaps some code should go here that disables error
2178 * reporting if we just enabled it
2179 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002180
2181 rc = -EINVAL;
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002182 goto fail0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002183 }
2184
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002185 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002186 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002187 pvt->inject.dimm = -1;
2188 pvt->inject.rank = -1;
2189 pvt->inject.bank = -1;
2190 pvt->inject.page = -1;
2191 pvt->inject.col = -1;
2192
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002193 /* allocating generic PCI control info */
2194 i7core_pci_ctl_create(pvt);
2195
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002196 /* Registers on edac_mce in order to receive memory errors */
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03002197 pvt->edac_mce.priv = mci;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002198 pvt->edac_mce.check_error = i7core_mce_check_error;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002199 rc = edac_mce_register(&pvt->edac_mce);
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03002200 if (unlikely(rc < 0)) {
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002201 debugf0("MC: " __FILE__
2202 ": %s(): failed edac_mce_register()\n", __func__);
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002203 goto fail1;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002204 }
2205
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002206 return 0;
2207
2208fail1:
2209 i7core_pci_ctl_release(pvt);
2210 edac_mc_del_mc(mci->dev);
2211fail0:
2212 kfree(mci->ctl_name);
2213 edac_mc_free(mci);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002214 i7core_dev->mci = NULL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002215 return rc;
2216}
2217
2218/*
2219 * i7core_probe Probe for ONE instance of device to see if it is
2220 * present.
2221 * return:
2222 * 0 for FOUND a device
2223 * < 0 for error code
2224 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002225
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002226static int __devinit i7core_probe(struct pci_dev *pdev,
2227 const struct pci_device_id *id)
2228{
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002229 int rc;
2230 struct i7core_dev *i7core_dev;
2231
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002232 /* get the pci devices we want to reserve for our use */
2233 mutex_lock(&i7core_edac_lock);
2234
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002235 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002236 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002237 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002238 if (unlikely(probed >= 1)) {
2239 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehab76a7bd82010-10-24 11:36:19 -02002240 return -ENODEV;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002241 }
2242 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03002243
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002244 rc = i7core_get_all_devices();
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002245 if (unlikely(rc < 0))
2246 goto fail0;
2247
2248 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002249 rc = i7core_register_mci(i7core_dev);
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002250 if (unlikely(rc < 0))
2251 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002252 }
2253
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002254 i7core_printk(KERN_INFO, "Driver loaded.\n");
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03002255
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002256 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002257 return 0;
2258
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002259fail1:
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002260 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2261 i7core_unregister_mci(i7core_dev);
2262
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03002263 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002264fail0:
2265 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002266 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002267}
2268
2269/*
2270 * i7core_remove destructor for one instance of device
2271 *
2272 */
2273static void __devexit i7core_remove(struct pci_dev *pdev)
2274{
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002275 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002276
2277 debugf0(__FILE__ ": %s()\n", __func__);
2278
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002279 /*
2280 * we have a trouble here: pdev value for removal will be wrong, since
2281 * it will point to the X58 register used to detect that the machine
2282 * is a Nehalem or upper design. However, due to the way several PCI
2283 * devices are grouped together to provide MC functionality, we need
2284 * to use a different method for releasing the devices
2285 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002286
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002287 mutex_lock(&i7core_edac_lock);
Hidetoshi Seto71fe0172010-08-20 04:29:47 -03002288
2289 if (unlikely(!probed)) {
2290 mutex_unlock(&i7core_edac_lock);
2291 return;
2292 }
2293
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002294 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2295 i7core_unregister_mci(i7core_dev);
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002296
2297 /* Release PCI resources */
2298 i7core_put_all_devices();
2299
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002300 probed--;
2301
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002302 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002303}
2304
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002305MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2306
2307/*
2308 * i7core_driver pci_driver structure for this module
2309 *
2310 */
2311static struct pci_driver i7core_driver = {
2312 .name = "i7core_edac",
2313 .probe = i7core_probe,
2314 .remove = __devexit_p(i7core_remove),
2315 .id_table = i7core_pci_tbl,
2316};
2317
2318/*
2319 * i7core_init Module entry function
2320 * Try to initialize this module for its devices
2321 */
2322static int __init i7core_init(void)
2323{
2324 int pci_rc;
2325
2326 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2327
2328 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2329 opstate_init();
2330
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03002331 if (use_pci_fixup)
2332 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002333
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002334 pci_rc = pci_register_driver(&i7core_driver);
2335
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002336 if (pci_rc >= 0)
2337 return 0;
2338
2339 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2340 pci_rc);
2341
2342 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002343}
2344
2345/*
2346 * i7core_exit() Module exit function
2347 * Unregister the driver
2348 */
2349static void __exit i7core_exit(void)
2350{
2351 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2352 pci_unregister_driver(&i7core_driver);
2353}
2354
2355module_init(i7core_init);
2356module_exit(i7core_exit);
2357
2358MODULE_LICENSE("GPL");
2359MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
2360MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2361MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2362 I7CORE_REVISION);
2363
2364module_param(edac_op_state, int, 0444);
2365MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");