blob: a499c7ed820ae62d8fc489478ef8522e756d833b [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>
Nils Carlson535e9c72011-08-08 06:21:26 -030034#include <linux/dmi.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030035#include <linux/edac.h>
36#include <linux/mmzone.h>
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030037#include <linux/smp.h>
Borislav Petkov4140c542011-07-18 11:24:46 -030038#include <asm/mce.h>
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -030039#include <asm/processor.h>
Sedat Dilek4fad8092011-09-21 23:44:52 -030040#include <asm/div64.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030041
42#include "edac_core.h"
43
Mauro Carvalho Chehab18c29002010-08-10 18:33:27 -030044/* Static vars */
45static LIST_HEAD(i7core_edac_list);
46static DEFINE_MUTEX(i7core_edac_lock);
47static int probed;
48
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -030049static int use_pci_fixup;
50module_param(use_pci_fixup, int, 0444);
51MODULE_PARM_DESC(use_pci_fixup, "Enable PCI fixup to seek for hidden devices");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030052/*
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030053 * This is used for Nehalem-EP and Nehalem-EX devices, where the non-core
54 * registers start at bus 255, and are not reported by BIOS.
55 * We currently find devices with only 2 sockets. In order to support more QPI
56 * Quick Path Interconnect, just increment this number.
57 */
58#define MAX_SOCKET_BUSES 2
59
60
61/*
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030062 * Alter this version for the module when modifications are made
63 */
Michal Marek152ba392011-04-01 12:41:20 +020064#define I7CORE_REVISION " Ver: 1.0.0"
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030065#define EDAC_MOD_STR "i7core_edac"
66
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030067/*
68 * Debug macros
69 */
70#define i7core_printk(level, fmt, arg...) \
71 edac_printk(level, "i7core", fmt, ##arg)
72
73#define i7core_mc_printk(mci, level, fmt, arg...) \
74 edac_mc_chipset_printk(mci, level, "i7core", fmt, ##arg)
75
76/*
77 * i7core Memory Controller Registers
78 */
79
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030080 /* OFFSETS for Device 0 Function 0 */
81
82#define MC_CFG_CONTROL 0x90
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -030083 #define MC_CFG_UNLOCK 0x02
84 #define MC_CFG_LOCK 0x00
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030085
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030086 /* OFFSETS for Device 3 Function 0 */
87
88#define MC_CONTROL 0x48
89#define MC_STATUS 0x4c
90#define MC_MAX_DOD 0x64
91
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030092/*
David Mackey15ed1032012-04-17 11:30:52 -070093 * OFFSETS for Device 3 Function 4, as indicated on Xeon 5500 datasheet:
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030094 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
95 */
96
97#define MC_TEST_ERR_RCV1 0x60
98 #define DIMM2_COR_ERR(r) ((r) & 0x7fff)
99
100#define MC_TEST_ERR_RCV0 0x64
101 #define DIMM1_COR_ERR(r) (((r) >> 16) & 0x7fff)
102 #define DIMM0_COR_ERR(r) ((r) & 0x7fff)
103
David Mackey15ed1032012-04-17 11:30:52 -0700104/* OFFSETS for Device 3 Function 2, as indicated on Xeon 5500 datasheet */
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -0300105#define MC_SSRCONTROL 0x48
106 #define SSR_MODE_DISABLE 0x00
107 #define SSR_MODE_ENABLE 0x01
108 #define SSR_MODE_MASK 0x03
109
110#define MC_SCRUB_CONTROL 0x4c
111 #define STARTSCRUB (1 << 24)
Nils Carlson535e9c72011-08-08 06:21:26 -0300112 #define SCRUBINTERVAL_MASK 0xffffff
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -0300113
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300114#define MC_COR_ECC_CNT_0 0x80
115#define MC_COR_ECC_CNT_1 0x84
116#define MC_COR_ECC_CNT_2 0x88
117#define MC_COR_ECC_CNT_3 0x8c
118#define MC_COR_ECC_CNT_4 0x90
119#define MC_COR_ECC_CNT_5 0x94
120
121#define DIMM_TOP_COR_ERR(r) (((r) >> 16) & 0x7fff)
122#define DIMM_BOT_COR_ERR(r) ((r) & 0x7fff)
123
124
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300125 /* OFFSETS for Devices 4,5 and 6 Function 0 */
126
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300127#define MC_CHANNEL_DIMM_INIT_PARAMS 0x58
128 #define THREE_DIMMS_PRESENT (1 << 24)
129 #define SINGLE_QUAD_RANK_PRESENT (1 << 23)
130 #define QUAD_RANK_PRESENT (1 << 22)
131 #define REGISTERED_DIMM (1 << 15)
132
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300133#define MC_CHANNEL_MAPPER 0x60
134 #define RDLCH(r, ch) ((((r) >> (3 + (ch * 6))) & 0x07) - 1)
135 #define WRLCH(r, ch) ((((r) >> (ch * 6)) & 0x07) - 1)
136
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300137#define MC_CHANNEL_RANK_PRESENT 0x7c
138 #define RANK_PRESENT_MASK 0xffff
139
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300140#define MC_CHANNEL_ADDR_MATCH 0xf0
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300141#define MC_CHANNEL_ERROR_MASK 0xf8
142#define MC_CHANNEL_ERROR_INJECT 0xfc
143 #define INJECT_ADDR_PARITY 0x10
144 #define INJECT_ECC 0x08
145 #define MASK_CACHELINE 0x06
146 #define MASK_FULL_CACHELINE 0x06
147 #define MASK_MSB32_CACHELINE 0x04
148 #define MASK_LSB32_CACHELINE 0x02
149 #define NO_MASK_CACHELINE 0x00
150 #define REPEAT_EN 0x01
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300151
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300152 /* OFFSETS for Devices 4,5 and 6 Function 1 */
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300153
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300154#define MC_DOD_CH_DIMM0 0x48
155#define MC_DOD_CH_DIMM1 0x4c
156#define MC_DOD_CH_DIMM2 0x50
157 #define RANKOFFSET_MASK ((1 << 12) | (1 << 11) | (1 << 10))
158 #define RANKOFFSET(x) ((x & RANKOFFSET_MASK) >> 10)
159 #define DIMM_PRESENT_MASK (1 << 9)
160 #define DIMM_PRESENT(x) (((x) & DIMM_PRESENT_MASK) >> 9)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300161 #define MC_DOD_NUMBANK_MASK ((1 << 8) | (1 << 7))
162 #define MC_DOD_NUMBANK(x) (((x) & MC_DOD_NUMBANK_MASK) >> 7)
163 #define MC_DOD_NUMRANK_MASK ((1 << 6) | (1 << 5))
164 #define MC_DOD_NUMRANK(x) (((x) & MC_DOD_NUMRANK_MASK) >> 5)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300165 #define MC_DOD_NUMROW_MASK ((1 << 4) | (1 << 3) | (1 << 2))
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300166 #define MC_DOD_NUMROW(x) (((x) & MC_DOD_NUMROW_MASK) >> 2)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300167 #define MC_DOD_NUMCOL_MASK 3
168 #define MC_DOD_NUMCOL(x) ((x) & MC_DOD_NUMCOL_MASK)
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300169
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300170#define MC_RANK_PRESENT 0x7c
171
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300172#define MC_SAG_CH_0 0x80
173#define MC_SAG_CH_1 0x84
174#define MC_SAG_CH_2 0x88
175#define MC_SAG_CH_3 0x8c
176#define MC_SAG_CH_4 0x90
177#define MC_SAG_CH_5 0x94
178#define MC_SAG_CH_6 0x98
179#define MC_SAG_CH_7 0x9c
180
181#define MC_RIR_LIMIT_CH_0 0x40
182#define MC_RIR_LIMIT_CH_1 0x44
183#define MC_RIR_LIMIT_CH_2 0x48
184#define MC_RIR_LIMIT_CH_3 0x4C
185#define MC_RIR_LIMIT_CH_4 0x50
186#define MC_RIR_LIMIT_CH_5 0x54
187#define MC_RIR_LIMIT_CH_6 0x58
188#define MC_RIR_LIMIT_CH_7 0x5C
189#define MC_RIR_LIMIT_MASK ((1 << 10) - 1)
190
191#define MC_RIR_WAY_CH 0x80
192 #define MC_RIR_WAY_OFFSET_MASK (((1 << 14) - 1) & ~0x7)
193 #define MC_RIR_WAY_RANK_MASK 0x7
194
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300195/*
196 * i7core structs
197 */
198
199#define NUM_CHANS 3
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300200#define MAX_DIMMS 3 /* Max DIMMS per channel */
201#define MAX_MCR_FUNC 4
202#define MAX_CHAN_FUNC 3
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300203
204struct i7core_info {
205 u32 mc_control;
206 u32 mc_status;
207 u32 max_dod;
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300208 u32 ch_map;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300209};
210
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300211
212struct i7core_inject {
213 int enable;
214
215 u32 section;
216 u32 type;
217 u32 eccmask;
218
219 /* Error address mask */
220 int channel, dimm, rank, bank, page, col;
221};
222
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300223struct i7core_channel {
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300224 bool is_3dimms_present;
225 bool is_single_4rank;
226 bool has_4rank;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300227 u32 dimms;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300228};
229
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300230struct pci_id_descr {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300231 int dev;
232 int func;
233 int dev_id;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300234 int optional;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300235};
236
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300237struct pci_id_table {
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300238 const struct pci_id_descr *descr;
239 int n_devs;
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300240};
241
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300242struct i7core_dev {
243 struct list_head list;
244 u8 socket;
245 struct pci_dev **pdev;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300246 int n_devs;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300247 struct mem_ctl_info *mci;
248};
249
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300250struct i7core_pvt {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300251 struct pci_dev *pci_noncore;
252 struct pci_dev *pci_mcr[MAX_MCR_FUNC + 1];
253 struct pci_dev *pci_ch[NUM_CHANS][MAX_CHAN_FUNC + 1];
254
255 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300256
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300257 struct i7core_info info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300258 struct i7core_inject inject;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300259 struct i7core_channel channel[NUM_CHANS];
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300260
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300261 int ce_count_available;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300262
263 /* ECC corrected errors counts per udimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300264 unsigned long udimm_ce_count[MAX_DIMMS];
265 int udimm_last_ce_count[MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300266 /* ECC corrected errors counts per rdimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300267 unsigned long rdimm_ce_count[NUM_CHANS][MAX_DIMMS];
268 int rdimm_last_ce_count[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300269
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -0300270 bool is_registered, enable_scrub;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300271
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300272 /* Fifo double buffers */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300273 struct mce mce_entry[MCE_LOG_LEN];
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300274 struct mce mce_outentry[MCE_LOG_LEN];
275
276 /* Fifo in/out counters */
277 unsigned mce_in, mce_out;
278
279 /* Count indicator to show errors not got */
280 unsigned mce_overrun;
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300281
Nils Carlson535e9c72011-08-08 06:21:26 -0300282 /* DCLK Frequency used for computing scrub rate */
283 int dclk_freq;
284
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300285 /* Struct to control EDAC polling */
286 struct edac_pci_ctl_info *i7core_pci;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300287};
288
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300289#define PCI_DESCR(device, function, device_id) \
290 .dev = (device), \
291 .func = (function), \
292 .dev_id = (device_id)
293
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300294static const struct pci_id_descr pci_dev_descr_i7core_nehalem[] = {
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300295 /* Memory controller */
296 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_I7_MCR) },
297 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_I7_MC_TAD) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300298 /* Exists only for RDIMM */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300299 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_I7_MC_RAS), .optional = 1 },
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300300 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_I7_MC_TEST) },
301
302 /* Channel 0 */
303 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH0_CTRL) },
304 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH0_ADDR) },
305 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH0_RANK) },
306 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH0_TC) },
307
308 /* Channel 1 */
309 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH1_CTRL) },
310 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH1_ADDR) },
311 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH1_RANK) },
312 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH1_TC) },
313
314 /* Channel 2 */
315 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH2_CTRL) },
316 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH2_ADDR) },
317 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH2_RANK) },
318 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH2_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300319
320 /* Generic Non-core registers */
321 /*
322 * This is the PCI device on i7core and on Xeon 35xx (8086:2c41)
323 * On Xeon 55xx, however, it has a different id (8086:2c40). So,
324 * the probing code needs to test for the other address in case of
325 * failure of this one
326 */
327 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_I7_NONCORE) },
328
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300329};
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300330
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300331static const struct pci_id_descr pci_dev_descr_lynnfield[] = {
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300332 { PCI_DESCR( 3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR) },
333 { PCI_DESCR( 3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD) },
334 { PCI_DESCR( 3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST) },
335
336 { PCI_DESCR( 4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL) },
337 { PCI_DESCR( 4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR) },
338 { PCI_DESCR( 4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK) },
339 { PCI_DESCR( 4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC) },
340
Mauro Carvalho Chehab508fa172009-10-14 13:44:37 -0300341 { PCI_DESCR( 5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL) },
342 { PCI_DESCR( 5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR) },
343 { PCI_DESCR( 5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK) },
344 { PCI_DESCR( 5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300345
346 /*
347 * This is the PCI device has an alternate address on some
348 * processors like Core i7 860
349 */
350 { PCI_DESCR( 0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE) },
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300351};
352
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300353static const struct pci_id_descr pci_dev_descr_i7core_westmere[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300354 /* Memory controller */
355 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR_REV2) },
356 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD_REV2) },
357 /* Exists only for RDIMM */
358 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_RAS_REV2), .optional = 1 },
359 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST_REV2) },
360
361 /* Channel 0 */
362 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL_REV2) },
363 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR_REV2) },
364 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK_REV2) },
365 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC_REV2) },
366
367 /* Channel 1 */
368 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL_REV2) },
369 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR_REV2) },
370 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK_REV2) },
371 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC_REV2) },
372
373 /* Channel 2 */
374 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_CTRL_REV2) },
375 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_ADDR_REV2) },
376 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_RANK_REV2) },
377 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_TC_REV2) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300378
379 /* Generic Non-core registers */
380 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2) },
381
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300382};
383
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300384#define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) }
385static const struct pci_id_table pci_dev_table[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300386 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_nehalem),
387 PCI_ID_TABLE_ENTRY(pci_dev_descr_lynnfield),
388 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_westmere),
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -0200389 {0,} /* 0 terminated list. */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300390};
391
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300392/*
393 * pci_device_id table for which devices we are looking for
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300394 */
Lionel Debroux36c46f32012-02-27 07:41:47 +0100395static DEFINE_PCI_DEVICE_TABLE(i7core_pci_tbl) = {
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -0300396 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300397 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300398 {0,} /* 0 terminated list. */
399};
400
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300401/****************************************************************************
David Mackey15ed1032012-04-17 11:30:52 -0700402 Ancillary status routines
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300403 ****************************************************************************/
404
405 /* MC_CONTROL bits */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300406#define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch)))
407#define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300408
409 /* MC_STATUS bits */
Keith Mannthey61053fd2009-09-02 23:46:59 -0300410#define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300411#define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300412
413 /* MC_MAX_DOD read functions */
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300414static inline int numdimms(u32 dimms)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300415{
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300416 return (dimms & 0x3) + 1;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300417}
418
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300419static inline int numrank(u32 rank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300420{
421 static int ranks[4] = { 1, 2, 4, -EINVAL };
422
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300423 return ranks[rank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300424}
425
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300426static inline int numbank(u32 bank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300427{
428 static int banks[4] = { 4, 8, 16, -EINVAL };
429
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300430 return banks[bank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300431}
432
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300433static inline int numrow(u32 row)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300434{
435 static int rows[8] = {
436 1 << 12, 1 << 13, 1 << 14, 1 << 15,
437 1 << 16, -EINVAL, -EINVAL, -EINVAL,
438 };
439
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300440 return rows[row & 0x7];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300441}
442
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300443static inline int numcol(u32 col)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300444{
445 static int cols[8] = {
446 1 << 10, 1 << 11, 1 << 12, -EINVAL,
447 };
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300448 return cols[col & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300449}
450
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300451static struct i7core_dev *get_i7core_dev(u8 socket)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300452{
453 struct i7core_dev *i7core_dev;
454
455 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
456 if (i7core_dev->socket == socket)
457 return i7core_dev;
458 }
459
460 return NULL;
461}
462
Hidetoshi Seto848b2f72010-08-20 04:24:44 -0300463static struct i7core_dev *alloc_i7core_dev(u8 socket,
464 const struct pci_id_table *table)
465{
466 struct i7core_dev *i7core_dev;
467
468 i7core_dev = kzalloc(sizeof(*i7core_dev), GFP_KERNEL);
469 if (!i7core_dev)
470 return NULL;
471
472 i7core_dev->pdev = kzalloc(sizeof(*i7core_dev->pdev) * table->n_devs,
473 GFP_KERNEL);
474 if (!i7core_dev->pdev) {
475 kfree(i7core_dev);
476 return NULL;
477 }
478
479 i7core_dev->socket = socket;
480 i7core_dev->n_devs = table->n_devs;
481 list_add_tail(&i7core_dev->list, &i7core_edac_list);
482
483 return i7core_dev;
484}
485
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -0300486static void free_i7core_dev(struct i7core_dev *i7core_dev)
487{
488 list_del(&i7core_dev->list);
489 kfree(i7core_dev->pdev);
490 kfree(i7core_dev);
491}
492
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300493/****************************************************************************
494 Memory check routines
495 ****************************************************************************/
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300496
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300497static int get_dimm_config(struct mem_ctl_info *mci)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300498{
499 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300500 struct pci_dev *pdev;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300501 int i, j;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300502 enum edac_type mode;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300503 enum mem_type mtype;
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300504 struct dimm_info *dimm;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300505
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300506 /* Get data from the MC register, function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300507 pdev = pvt->pci_mcr[0];
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300508 if (!pdev)
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300509 return -ENODEV;
510
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300511 /* Device 3 function 0 reads */
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300512 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control);
513 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status);
514 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod);
515 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300516
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300517 debugf0("QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
Mauro Carvalho Chehab4af91882009-09-24 09:58:26 -0300518 pvt->i7core_dev->socket, pvt->info.mc_control, pvt->info.mc_status,
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300519 pvt->info.max_dod, pvt->info.ch_map);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300520
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300521 if (ECC_ENABLED(pvt)) {
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300522 debugf0("ECC enabled with x%d SDCC\n", ECCx8(pvt) ? 8 : 4);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300523 if (ECCx8(pvt))
524 mode = EDAC_S8ECD8ED;
525 else
526 mode = EDAC_S4ECD4ED;
527 } else {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300528 debugf0("ECC disabled\n");
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300529 mode = EDAC_NONE;
530 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300531
532 /* FIXME: need to handle the error codes */
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300533 debugf0("DOD Max limits: DIMMS: %d, %d-ranked, %d-banked "
534 "x%x x 0x%x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300535 numdimms(pvt->info.max_dod),
536 numrank(pvt->info.max_dod >> 2),
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300537 numbank(pvt->info.max_dod >> 4),
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300538 numrow(pvt->info.max_dod >> 6),
539 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300540
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300541 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300542 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300543
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300544 if (!pvt->pci_ch[i][0])
545 continue;
546
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300547 if (!CH_ACTIVE(pvt, i)) {
548 debugf0("Channel %i is not active\n", i);
549 continue;
550 }
551 if (CH_DISABLED(pvt, i)) {
552 debugf0("Channel %i is disabled\n", i);
553 continue;
554 }
555
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300556 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300557 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300558 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
559
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300560
561 if (data & THREE_DIMMS_PRESENT)
562 pvt->channel[i].is_3dimms_present = true;
563
564 if (data & SINGLE_QUAD_RANK_PRESENT)
565 pvt->channel[i].is_single_4rank = true;
566
567 if (data & QUAD_RANK_PRESENT)
568 pvt->channel[i].has_4rank = true;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300569
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300570 if (data & REGISTERED_DIMM)
571 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300572 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300573 mtype = MEM_DDR3;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300574
575 /* Devices 4-6 function 1 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300576 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300577 MC_DOD_CH_DIMM0, &dimm_dod[0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300578 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300579 MC_DOD_CH_DIMM1, &dimm_dod[1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300580 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300581 MC_DOD_CH_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300582
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300583 debugf0("Ch%d phy rd%d, wr%d (0x%08x): "
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300584 "%s%s%s%cDIMMs\n",
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300585 i,
586 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
587 data,
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300588 pvt->channel[i].is_3dimms_present ? "3DIMMS " : "",
589 pvt->channel[i].is_3dimms_present ? "SINGLE_4R " : "",
590 pvt->channel[i].has_4rank ? "HAS_4R " : "",
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300591 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300592
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300593 for (j = 0; j < 3; j++) {
594 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300595 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300596
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300597 if (!DIMM_PRESENT(dimm_dod[j]))
598 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300599
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -0300600 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
601 i, j, 0);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300602 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
603 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
604 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
605 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300606
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300607 /* DDR3 has 8 I/O banks */
608 size = (rows * cols * banks * ranks) >> (20 - 3);
609
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300610 debugf0("\tdimm %d %d Mb offset: %x, "
611 "bank: %d, rank: %d, row: %#x, col: %#x\n",
612 j, size,
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300613 RANKOFFSET(dimm_dod[j]),
614 banks, ranks, rows, cols);
615
Mauro Carvalho Chehabe9144602010-08-10 20:26:35 -0300616 npages = MiB_TO_PAGES(size);
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300617
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300618 dimm->nr_pages = npages;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300619
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300620 switch (banks) {
621 case 4:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300622 dimm->dtype = DEV_X4;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300623 break;
624 case 8:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300625 dimm->dtype = DEV_X8;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300626 break;
627 case 16:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300628 dimm->dtype = DEV_X16;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300629 break;
630 default:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300631 dimm->dtype = DEV_UNKNOWN;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300632 }
633
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300634 snprintf(dimm->label, sizeof(dimm->label),
635 "CPU#%uChannel#%u_DIMM#%u",
636 pvt->i7core_dev->socket, i, j);
637 dimm->grain = 8;
638 dimm->edac_mode = mode;
639 dimm->mtype = mtype;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300640 }
641
642 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
643 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
644 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
645 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
646 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
647 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
648 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
649 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300650 debugf1("\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300651 for (j = 0; j < 8; j++)
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300652 debugf1("\t\t%#x\t%#x\t%#x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300653 (value[j] >> 27) & 0x1,
654 (value[j] >> 24) & 0x7,
David Sterba80b8ce82010-12-27 15:39:12 +0000655 (value[j] & ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300656 }
657
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300658 return 0;
659}
660
661/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300662 Error insertion routines
663 ****************************************************************************/
664
665/* The i7core has independent error injection features per channel.
666 However, to have a simpler code, we don't allow enabling error injection
667 on more than one channel.
668 Also, since a change at an inject parameter will be applied only at enable,
669 we're disabling error injection on all write calls to the sysfs nodes that
670 controls the error code injection.
671 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300672static int disable_inject(const struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300673{
674 struct i7core_pvt *pvt = mci->pvt_info;
675
676 pvt->inject.enable = 0;
677
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300678 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300679 return -ENODEV;
680
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300681 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300682 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300683
684 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300685}
686
687/*
688 * i7core inject inject.section
689 *
690 * accept and store error injection inject.section value
691 * bit 0 - refers to the lower 32-byte half cacheline
692 * bit 1 - refers to the upper 32-byte half cacheline
693 */
694static ssize_t i7core_inject_section_store(struct mem_ctl_info *mci,
695 const char *data, size_t count)
696{
697 struct i7core_pvt *pvt = mci->pvt_info;
698 unsigned long value;
699 int rc;
700
701 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300702 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300703
704 rc = strict_strtoul(data, 10, &value);
705 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300706 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300707
708 pvt->inject.section = (u32) value;
709 return count;
710}
711
712static ssize_t i7core_inject_section_show(struct mem_ctl_info *mci,
713 char *data)
714{
715 struct i7core_pvt *pvt = mci->pvt_info;
716 return sprintf(data, "0x%08x\n", pvt->inject.section);
717}
718
719/*
720 * i7core inject.type
721 *
722 * accept and store error injection inject.section value
723 * bit 0 - repeat enable - Enable error repetition
724 * bit 1 - inject ECC error
725 * bit 2 - inject parity error
726 */
727static ssize_t i7core_inject_type_store(struct mem_ctl_info *mci,
728 const char *data, size_t count)
729{
730 struct i7core_pvt *pvt = mci->pvt_info;
731 unsigned long value;
732 int rc;
733
734 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300735 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300736
737 rc = strict_strtoul(data, 10, &value);
738 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300739 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300740
741 pvt->inject.type = (u32) value;
742 return count;
743}
744
745static ssize_t i7core_inject_type_show(struct mem_ctl_info *mci,
746 char *data)
747{
748 struct i7core_pvt *pvt = mci->pvt_info;
749 return sprintf(data, "0x%08x\n", pvt->inject.type);
750}
751
752/*
753 * i7core_inject_inject.eccmask_store
754 *
755 * The type of error (UE/CE) will depend on the inject.eccmask value:
756 * Any bits set to a 1 will flip the corresponding ECC bit
757 * Correctable errors can be injected by flipping 1 bit or the bits within
758 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
759 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
760 * uncorrectable error to be injected.
761 */
762static ssize_t i7core_inject_eccmask_store(struct mem_ctl_info *mci,
763 const char *data, size_t count)
764{
765 struct i7core_pvt *pvt = mci->pvt_info;
766 unsigned long value;
767 int rc;
768
769 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300770 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300771
772 rc = strict_strtoul(data, 10, &value);
773 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300774 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300775
776 pvt->inject.eccmask = (u32) value;
777 return count;
778}
779
780static ssize_t i7core_inject_eccmask_show(struct mem_ctl_info *mci,
781 char *data)
782{
783 struct i7core_pvt *pvt = mci->pvt_info;
784 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
785}
786
787/*
788 * i7core_addrmatch
789 *
790 * The type of error (UE/CE) will depend on the inject.eccmask value:
791 * Any bits set to a 1 will flip the corresponding ECC bit
792 * Correctable errors can be injected by flipping 1 bit or the bits within
793 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
794 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
795 * uncorrectable error to be injected.
796 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300797
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300798#define DECLARE_ADDR_MATCH(param, limit) \
799static ssize_t i7core_inject_store_##param( \
800 struct mem_ctl_info *mci, \
801 const char *data, size_t count) \
802{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300803 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300804 long value; \
805 int rc; \
806 \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300807 debugf1("%s()\n", __func__); \
808 pvt = mci->pvt_info; \
809 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300810 if (pvt->inject.enable) \
811 disable_inject(mci); \
812 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300813 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300814 value = -1; \
815 else { \
816 rc = strict_strtoul(data, 10, &value); \
817 if ((rc < 0) || (value >= limit)) \
818 return -EIO; \
819 } \
820 \
821 pvt->inject.param = value; \
822 \
823 return count; \
824} \
825 \
826static ssize_t i7core_inject_show_##param( \
827 struct mem_ctl_info *mci, \
828 char *data) \
829{ \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300830 struct i7core_pvt *pvt; \
831 \
832 pvt = mci->pvt_info; \
833 debugf1("%s() pvt=%p\n", __func__, pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300834 if (pvt->inject.param < 0) \
835 return sprintf(data, "any\n"); \
836 else \
837 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300838}
839
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300840#define ATTR_ADDR_MATCH(param) \
841 { \
842 .attr = { \
843 .name = #param, \
844 .mode = (S_IRUGO | S_IWUSR) \
845 }, \
846 .show = i7core_inject_show_##param, \
847 .store = i7core_inject_store_##param, \
848 }
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300849
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300850DECLARE_ADDR_MATCH(channel, 3);
851DECLARE_ADDR_MATCH(dimm, 3);
852DECLARE_ADDR_MATCH(rank, 4);
853DECLARE_ADDR_MATCH(bank, 32);
854DECLARE_ADDR_MATCH(page, 0x10000);
855DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300856
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300857static int write_and_test(struct pci_dev *dev, const int where, const u32 val)
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300858{
859 u32 read;
860 int count;
861
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300862 debugf0("setting pci %02x:%02x.%x reg=%02x value=%08x\n",
863 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
864 where, val);
865
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300866 for (count = 0; count < 10; count++) {
867 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300868 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300869 pci_write_config_dword(dev, where, val);
870 pci_read_config_dword(dev, where, &read);
871
872 if (read == val)
873 return 0;
874 }
875
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300876 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
877 "write=%08x. Read=%08x\n",
878 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
879 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300880
881 return -EINVAL;
882}
883
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300884/*
885 * This routine prepares the Memory Controller for error injection.
886 * The error will be injected when some process tries to write to the
887 * memory that matches the given criteria.
888 * The criteria can be set in terms of a mask where dimm, rank, bank, page
889 * and col can be specified.
890 * A -1 value for any of the mask items will make the MCU to ignore
891 * that matching criteria for error injection.
892 *
893 * It should be noticed that the error will only happen after a write operation
894 * on a memory that matches the condition. if REPEAT_EN is not enabled at
895 * inject mask, then it will produce just one error. Otherwise, it will repeat
896 * until the injectmask would be cleaned.
897 *
898 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
899 * is reliable enough to check if the MC is using the
900 * three channels. However, this is not clear at the datasheet.
901 */
902static ssize_t i7core_inject_enable_store(struct mem_ctl_info *mci,
903 const char *data, size_t count)
904{
905 struct i7core_pvt *pvt = mci->pvt_info;
906 u32 injectmask;
907 u64 mask = 0;
908 int rc;
909 long enable;
910
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300911 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300912 return 0;
913
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300914 rc = strict_strtoul(data, 10, &enable);
915 if ((rc < 0))
916 return 0;
917
918 if (enable) {
919 pvt->inject.enable = 1;
920 } else {
921 disable_inject(mci);
922 return count;
923 }
924
925 /* Sets pvt->inject.dimm mask */
926 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200927 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300928 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300929 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200930 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300931 else
Alan Cox486dd092009-11-08 01:34:27 -0200932 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300933 }
934
935 /* Sets pvt->inject.rank mask */
936 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200937 mask |= 1LL << 40;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300938 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300939 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200940 mask |= (pvt->inject.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300941 else
Alan Cox486dd092009-11-08 01:34:27 -0200942 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300943 }
944
945 /* Sets pvt->inject.bank mask */
946 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200947 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300948 else
Alan Cox486dd092009-11-08 01:34:27 -0200949 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300950
951 /* Sets pvt->inject.page mask */
952 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200953 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300954 else
Alan Cox486dd092009-11-08 01:34:27 -0200955 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300956
957 /* Sets pvt->inject.column mask */
958 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200959 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300960 else
Alan Cox486dd092009-11-08 01:34:27 -0200961 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300962
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300963 /*
964 * bit 0: REPEAT_EN
965 * bits 1-2: MASK_HALF_CACHELINE
966 * bit 3: INJECT_ECC
967 * bit 4: INJECT_ADDR_PARITY
968 */
969
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -0300970 injectmask = (pvt->inject.type & 1) |
971 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300972 (pvt->inject.type & 0x6) << (3 - 1);
973
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300974 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300975 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300976 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300977
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300978 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300979 MC_CHANNEL_ADDR_MATCH, mask);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300980 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300981 MC_CHANNEL_ADDR_MATCH + 4, mask >> 32L);
982
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300983 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300984 MC_CHANNEL_ERROR_MASK, pvt->inject.eccmask);
985
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300986 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300987 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300988
989 /*
990 * This is something undocumented, based on my tests
991 * Without writing 8 to this register, errors aren't injected. Not sure
992 * why.
993 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300994 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300995 MC_CFG_CONTROL, 8);
996
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300997 debugf0("Error inject addr match 0x%016llx, ecc 0x%08x,"
998 " inject 0x%08x\n",
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300999 mask, pvt->inject.eccmask, injectmask);
1000
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001001
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001002 return count;
1003}
1004
1005static ssize_t i7core_inject_enable_show(struct mem_ctl_info *mci,
1006 char *data)
1007{
1008 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001009 u32 injectmask;
1010
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001011 if (!pvt->pci_ch[pvt->inject.channel][0])
1012 return 0;
1013
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001014 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001015 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001016
1017 debugf0("Inject error read: 0x%018x\n", injectmask);
1018
1019 if (injectmask & 0x0c)
1020 pvt->inject.enable = 1;
1021
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001022 return sprintf(data, "%d\n", pvt->inject.enable);
1023}
1024
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001025#define DECLARE_COUNTER(param) \
1026static ssize_t i7core_show_counter_##param( \
1027 struct mem_ctl_info *mci, \
1028 char *data) \
1029{ \
1030 struct i7core_pvt *pvt = mci->pvt_info; \
1031 \
1032 debugf1("%s() \n", __func__); \
1033 if (!pvt->ce_count_available || (pvt->is_registered)) \
1034 return sprintf(data, "data unavailable\n"); \
1035 return sprintf(data, "%lu\n", \
1036 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001037}
1038
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001039#define ATTR_COUNTER(param) \
1040 { \
1041 .attr = { \
1042 .name = __stringify(udimm##param), \
1043 .mode = (S_IRUGO | S_IWUSR) \
1044 }, \
1045 .show = i7core_show_counter_##param \
1046 }
1047
1048DECLARE_COUNTER(0);
1049DECLARE_COUNTER(1);
1050DECLARE_COUNTER(2);
1051
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001052/*
1053 * Sysfs struct
1054 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001055
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001056static const struct mcidev_sysfs_attribute i7core_addrmatch_attrs[] = {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001057 ATTR_ADDR_MATCH(channel),
1058 ATTR_ADDR_MATCH(dimm),
1059 ATTR_ADDR_MATCH(rank),
1060 ATTR_ADDR_MATCH(bank),
1061 ATTR_ADDR_MATCH(page),
1062 ATTR_ADDR_MATCH(col),
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001063 { } /* End of list */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001064};
1065
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001066static const struct mcidev_sysfs_group i7core_inject_addrmatch = {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001067 .name = "inject_addrmatch",
1068 .mcidev_attr = i7core_addrmatch_attrs,
1069};
1070
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001071static const struct mcidev_sysfs_attribute i7core_udimm_counters_attrs[] = {
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001072 ATTR_COUNTER(0),
1073 ATTR_COUNTER(1),
1074 ATTR_COUNTER(2),
Marcin Slusarz64aab722010-09-30 15:15:30 -07001075 { .attr = { .name = NULL } }
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001076};
1077
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001078static const struct mcidev_sysfs_group i7core_udimm_counters = {
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001079 .name = "all_channel_counts",
1080 .mcidev_attr = i7core_udimm_counters_attrs,
1081};
1082
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001083static const struct mcidev_sysfs_attribute i7core_sysfs_rdimm_attrs[] = {
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001084 {
1085 .attr = {
1086 .name = "inject_section",
1087 .mode = (S_IRUGO | S_IWUSR)
1088 },
1089 .show = i7core_inject_section_show,
1090 .store = i7core_inject_section_store,
1091 }, {
1092 .attr = {
1093 .name = "inject_type",
1094 .mode = (S_IRUGO | S_IWUSR)
1095 },
1096 .show = i7core_inject_type_show,
1097 .store = i7core_inject_type_store,
1098 }, {
1099 .attr = {
1100 .name = "inject_eccmask",
1101 .mode = (S_IRUGO | S_IWUSR)
1102 },
1103 .show = i7core_inject_eccmask_show,
1104 .store = i7core_inject_eccmask_store,
1105 }, {
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001106 .grp = &i7core_inject_addrmatch,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001107 }, {
1108 .attr = {
1109 .name = "inject_enable",
1110 .mode = (S_IRUGO | S_IWUSR)
1111 },
1112 .show = i7core_inject_enable_show,
1113 .store = i7core_inject_enable_store,
1114 },
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001115 { } /* End of list */
1116};
1117
1118static const struct mcidev_sysfs_attribute i7core_sysfs_udimm_attrs[] = {
1119 {
1120 .attr = {
1121 .name = "inject_section",
1122 .mode = (S_IRUGO | S_IWUSR)
1123 },
1124 .show = i7core_inject_section_show,
1125 .store = i7core_inject_section_store,
1126 }, {
1127 .attr = {
1128 .name = "inject_type",
1129 .mode = (S_IRUGO | S_IWUSR)
1130 },
1131 .show = i7core_inject_type_show,
1132 .store = i7core_inject_type_store,
1133 }, {
1134 .attr = {
1135 .name = "inject_eccmask",
1136 .mode = (S_IRUGO | S_IWUSR)
1137 },
1138 .show = i7core_inject_eccmask_show,
1139 .store = i7core_inject_eccmask_store,
1140 }, {
1141 .grp = &i7core_inject_addrmatch,
1142 }, {
1143 .attr = {
1144 .name = "inject_enable",
1145 .mode = (S_IRUGO | S_IWUSR)
1146 },
1147 .show = i7core_inject_enable_show,
1148 .store = i7core_inject_enable_store,
1149 }, {
1150 .grp = &i7core_udimm_counters,
1151 },
1152 { } /* End of list */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001153};
1154
1155/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001156 Device initialization routines: put/get, init/exit
1157 ****************************************************************************/
1158
1159/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001160 * i7core_put_all_devices 'put' all the devices that we have
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001161 * reserved via 'get'
1162 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001163static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001164{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001165 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001166
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001167 debugf0(__FILE__ ": %s()\n", __func__);
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001168 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001169 struct pci_dev *pdev = i7core_dev->pdev[i];
1170 if (!pdev)
1171 continue;
1172 debugf0("Removing dev %02x:%02x.%d\n",
1173 pdev->bus->number,
1174 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
1175 pci_dev_put(pdev);
1176 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001177}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001178
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001179static void i7core_put_all_devices(void)
1180{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001181 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001182
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001183 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001184 i7core_put_devices(i7core_dev);
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -03001185 free_i7core_dev(i7core_dev);
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001186 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001187}
1188
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001189static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001190{
1191 struct pci_dev *pdev = NULL;
1192 int i;
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03001193
Keith Manntheybc2d7242009-09-03 00:05:05 -03001194 /*
David Sterbae7bf0682010-12-27 16:51:15 +01001195 * On Xeon 55xx, the Intel Quick Path Arch Generic Non-core pci buses
Keith Manntheybc2d7242009-09-03 00:05:05 -03001196 * aren't announced by acpi. So, we need to use a legacy scan probing
1197 * to detect them
1198 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001199 while (table && table->descr) {
1200 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1201 if (unlikely(!pdev)) {
1202 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1203 pcibios_scan_specific_bus(255-i);
1204 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001205 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001206 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001207 }
1208}
1209
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001210static unsigned i7core_pci_lastbus(void)
1211{
1212 int last_bus = 0, bus;
1213 struct pci_bus *b = NULL;
1214
1215 while ((b = pci_find_next_bus(b)) != NULL) {
1216 bus = b->number;
1217 debugf0("Found bus %d\n", bus);
1218 if (bus > last_bus)
1219 last_bus = bus;
1220 }
1221
1222 debugf0("Last bus %d\n", last_bus);
1223
1224 return last_bus;
1225}
1226
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001227/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001228 * i7core_get_all_devices Find and perform 'get' operation on the MCH's
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001229 * device/functions we want to reference for this driver
1230 *
1231 * Need to 'get' device 16 func 1 and func 2
1232 */
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001233static int i7core_get_onedevice(struct pci_dev **prev,
1234 const struct pci_id_table *table,
1235 const unsigned devno,
1236 const unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001237{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001238 struct i7core_dev *i7core_dev;
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001239 const struct pci_id_descr *dev_descr = &table->descr[devno];
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001240
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001241 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001242 u8 bus = 0;
1243 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001244
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001245 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001246 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001247
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001248 /*
David Mackey15ed1032012-04-17 11:30:52 -07001249 * On Xeon 55xx, the Intel QuickPath Arch Generic Non-core regs
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001250 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1251 * to probe for the alternate address in case of failure
1252 */
1253 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev)
1254 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1255 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
1256
1257 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE && !pdev)
1258 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1259 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1260 *prev);
1261
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001262 if (!pdev) {
1263 if (*prev) {
1264 *prev = pdev;
1265 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001266 }
1267
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001268 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001269 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001270
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001271 if (devno == 0)
1272 return -ENODEV;
1273
Daniel J Bluemanab089372010-07-23 23:16:52 +01001274 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001275 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001276 dev_descr->dev, dev_descr->func,
1277 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001278
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001279 /* End of list, leave */
1280 return -ENODEV;
1281 }
1282 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001283
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001284 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001285
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001286 i7core_dev = get_i7core_dev(socket);
1287 if (!i7core_dev) {
Hidetoshi Seto848b2f72010-08-20 04:24:44 -03001288 i7core_dev = alloc_i7core_dev(socket, table);
Hidetoshi Seto28966372010-08-20 04:28:51 -03001289 if (!i7core_dev) {
1290 pci_dev_put(pdev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001291 return -ENOMEM;
Hidetoshi Seto28966372010-08-20 04:28:51 -03001292 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001293 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001294
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001295 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001296 i7core_printk(KERN_ERR,
1297 "Duplicated device for "
1298 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001299 bus, dev_descr->dev, dev_descr->func,
1300 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001301 pci_dev_put(pdev);
1302 return -ENODEV;
1303 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001304
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001305 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001306
1307 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001308 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1309 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001310 i7core_printk(KERN_ERR,
1311 "Device PCI ID %04x:%04x "
1312 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001313 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001314 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001315 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001316 return -ENODEV;
1317 }
1318
1319 /* Be sure that the device is enabled */
1320 if (unlikely(pci_enable_device(pdev) < 0)) {
1321 i7core_printk(KERN_ERR,
1322 "Couldn't enable "
1323 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001324 bus, dev_descr->dev, dev_descr->func,
1325 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001326 return -ENODEV;
1327 }
1328
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001329 debugf0("Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001330 socket, bus, dev_descr->dev,
1331 dev_descr->func,
1332 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001333
Mauro Carvalho Chehaba3e15412010-08-21 08:52:41 -03001334 /*
1335 * As stated on drivers/pci/search.c, the reference count for
1336 * @from is always decremented if it is not %NULL. So, as we need
1337 * to get all devices up to null, we need to do a get for the device
1338 */
1339 pci_dev_get(pdev);
1340
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001341 *prev = pdev;
1342
1343 return 0;
1344}
1345
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001346static int i7core_get_all_devices(void)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001347{
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001348 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001349 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001350 const struct pci_id_table *table = pci_dev_table;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001351
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001352 last_bus = i7core_pci_lastbus();
1353
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001354 while (table && table->descr) {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001355 for (i = 0; i < table->n_devs; i++) {
1356 pdev = NULL;
1357 do {
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001358 rc = i7core_get_onedevice(&pdev, table, i,
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001359 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001360 if (rc < 0) {
1361 if (i == 0) {
1362 i = table->n_devs;
1363 break;
1364 }
1365 i7core_put_all_devices();
1366 return -ENODEV;
1367 }
1368 } while (pdev);
1369 }
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001370 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001371 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001372
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001373 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001374}
1375
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001376static int mci_bind_devs(struct mem_ctl_info *mci,
1377 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001378{
1379 struct i7core_pvt *pvt = mci->pvt_info;
1380 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001381 int i, func, slot;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001382 char *family;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001383
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001384 pvt->is_registered = false;
1385 pvt->enable_scrub = false;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001386 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001387 pdev = i7core_dev->pdev[i];
1388 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001389 continue;
1390
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001391 func = PCI_FUNC(pdev->devfn);
1392 slot = PCI_SLOT(pdev->devfn);
1393 if (slot == 3) {
1394 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001395 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001396 pvt->pci_mcr[func] = pdev;
1397 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1398 if (unlikely(func > MAX_CHAN_FUNC))
1399 goto error;
1400 pvt->pci_ch[slot - 4][func] = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001401 } else if (!slot && !func) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001402 pvt->pci_noncore = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001403
1404 /* Detect the processor family */
1405 switch (pdev->device) {
1406 case PCI_DEVICE_ID_INTEL_I7_NONCORE:
1407 family = "Xeon 35xx/ i7core";
1408 pvt->enable_scrub = false;
1409 break;
1410 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT:
1411 family = "i7-800/i5-700";
1412 pvt->enable_scrub = false;
1413 break;
1414 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE:
1415 family = "Xeon 34xx";
1416 pvt->enable_scrub = false;
1417 break;
1418 case PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT:
1419 family = "Xeon 55xx";
1420 pvt->enable_scrub = true;
1421 break;
1422 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2:
1423 family = "Xeon 56xx / i7-900";
1424 pvt->enable_scrub = true;
1425 break;
1426 default:
1427 family = "unknown";
1428 pvt->enable_scrub = false;
1429 }
1430 debugf0("Detected a processor type %s\n", family);
1431 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001432 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001433
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001434 debugf0("Associated fn %d.%d, dev = %p, socket %d\n",
1435 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1436 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001437
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001438 if (PCI_SLOT(pdev->devfn) == 3 &&
1439 PCI_FUNC(pdev->devfn) == 2)
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001440 pvt->is_registered = true;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001441 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001442
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001443 return 0;
1444
1445error:
1446 i7core_printk(KERN_ERR, "Device %d, function %d "
1447 "is out of the expected range\n",
1448 slot, func);
1449 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001450}
1451
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001452/****************************************************************************
1453 Error check routines
1454 ****************************************************************************/
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001455static void i7core_rdimm_update_errcount(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001456 const int chan,
1457 const int dimm,
1458 const int add)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001459{
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001460 int i;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001461
1462 for (i = 0; i < add; i++) {
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001463 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 0, 0, 0,
1464 chan, dimm, -1, "error", "", NULL);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001465 }
1466}
1467
1468static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001469 const int chan,
1470 const int new0,
1471 const int new1,
1472 const int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001473{
1474 struct i7core_pvt *pvt = mci->pvt_info;
1475 int add0 = 0, add1 = 0, add2 = 0;
1476 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001477 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001478 /* Updates CE counters */
1479
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001480 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1481 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1482 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001483
1484 if (add2 < 0)
1485 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001486 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001487
1488 if (add1 < 0)
1489 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001490 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001491
1492 if (add0 < 0)
1493 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001494 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001495 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001496 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001497
1498 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001499 pvt->rdimm_last_ce_count[chan][2] = new2;
1500 pvt->rdimm_last_ce_count[chan][1] = new1;
1501 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001502
1503 /*updated the edac core */
1504 if (add0 != 0)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001505 i7core_rdimm_update_errcount(mci, chan, 0, add0);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001506 if (add1 != 0)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001507 i7core_rdimm_update_errcount(mci, chan, 1, add1);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001508 if (add2 != 0)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001509 i7core_rdimm_update_errcount(mci, chan, 2, add2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001510
1511}
1512
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001513static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001514{
1515 struct i7core_pvt *pvt = mci->pvt_info;
1516 u32 rcv[3][2];
1517 int i, new0, new1, new2;
1518
1519 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001520 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001521 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001522 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001523 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001524 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001525 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001526 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001527 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001528 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001529 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001530 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001531 &rcv[2][1]);
1532 for (i = 0 ; i < 3; i++) {
1533 debugf3("MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1534 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
1535 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001536 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001537 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1538 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1539 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1540 } else {
1541 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1542 DIMM_BOT_COR_ERR(rcv[i][0]);
1543 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1544 DIMM_BOT_COR_ERR(rcv[i][1]);
1545 new2 = 0;
1546 }
1547
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001548 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001549 }
1550}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001551
1552/* This function is based on the device 3 function 4 registers as described on:
1553 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1554 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1555 * also available at:
1556 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1557 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001558static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001559{
1560 struct i7core_pvt *pvt = mci->pvt_info;
1561 u32 rcv1, rcv0;
1562 int new0, new1, new2;
1563
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001564 if (!pvt->pci_mcr[4]) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001565 debugf0("%s MCR registers not found\n", __func__);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001566 return;
1567 }
1568
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001569 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001570 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1571 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001572
1573 /* Store the new values */
1574 new2 = DIMM2_COR_ERR(rcv1);
1575 new1 = DIMM1_COR_ERR(rcv0);
1576 new0 = DIMM0_COR_ERR(rcv0);
1577
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001578 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001579 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001580 /* Updates CE counters */
1581 int add0, add1, add2;
1582
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001583 add2 = new2 - pvt->udimm_last_ce_count[2];
1584 add1 = new1 - pvt->udimm_last_ce_count[1];
1585 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001586
1587 if (add2 < 0)
1588 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001589 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001590
1591 if (add1 < 0)
1592 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001593 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001594
1595 if (add0 < 0)
1596 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001597 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001598
1599 if (add0 | add1 | add2)
1600 i7core_printk(KERN_ERR, "New Corrected error(s): "
1601 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1602 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001603 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001604 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001605
1606 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001607 pvt->udimm_last_ce_count[2] = new2;
1608 pvt->udimm_last_ce_count[1] = new1;
1609 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001610}
1611
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001612/*
1613 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1614 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001615 * Nehalem are defined as family 0x06, model 0x1a
1616 *
1617 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001618 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001619 * m->status MSR_IA32_MC8_STATUS
1620 * m->addr MSR_IA32_MC8_ADDR
1621 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001622 * In the case of Nehalem, the error information is masked at .status and .misc
1623 * fields
1624 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001625static void i7core_mce_output_error(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001626 const struct mce *m)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001627{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001628 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03001629 char *type, *optype, *err, msg[80];
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001630 enum hw_event_mc_err_type tp_event;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001631 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001632 bool uncorrected_error = m->mcgstatus & 1ll << 61;
1633 bool ripv = m->mcgstatus & 1;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001634 u32 optypenum = (m->status >> 4) & 0x07;
Mathias Krause8cf2d232011-08-18 09:17:00 +02001635 u32 core_err_cnt = (m->status >> 38) & 0x7fff;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001636 u32 dimm = (m->misc >> 16) & 0x3;
1637 u32 channel = (m->misc >> 18) & 0x3;
1638 u32 syndrome = m->misc >> 32;
1639 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001640
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001641 if (uncorrected_error) {
1642 if (ripv) {
1643 type = "FATAL";
1644 tp_event = HW_EVENT_ERR_FATAL;
1645 } else {
1646 type = "NON_FATAL";
1647 tp_event = HW_EVENT_ERR_UNCORRECTED;
1648 }
1649 } else {
1650 type = "CORRECTED";
1651 tp_event = HW_EVENT_ERR_CORRECTED;
1652 }
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001653
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001654 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001655 case 0:
1656 optype = "generic undef request";
1657 break;
1658 case 1:
1659 optype = "read error";
1660 break;
1661 case 2:
1662 optype = "write error";
1663 break;
1664 case 3:
1665 optype = "addr/cmd error";
1666 break;
1667 case 4:
1668 optype = "scrubbing error";
1669 break;
1670 default:
1671 optype = "reserved";
1672 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001673 }
1674
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001675 switch (errnum) {
1676 case 16:
1677 err = "read ECC error";
1678 break;
1679 case 17:
1680 err = "RAS ECC error";
1681 break;
1682 case 18:
1683 err = "write parity error";
1684 break;
1685 case 19:
1686 err = "redundacy loss";
1687 break;
1688 case 20:
1689 err = "reserved";
1690 break;
1691 case 21:
1692 err = "memory range error";
1693 break;
1694 case 22:
1695 err = "RTID out of range";
1696 break;
1697 case 23:
1698 err = "address parity error";
1699 break;
1700 case 24:
1701 err = "byte enable parity error";
1702 break;
1703 default:
1704 err = "unknown";
1705 }
1706
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03001707 snprintf(msg, sizeof(msg), "count=%d %s", core_err_cnt, optype);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001708
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001709 /*
1710 * Call the helper to output message
1711 * FIXME: what to do if core_err_cnt > 1? Currently, it generates
1712 * only one event
1713 */
1714 if (uncorrected_error || !pvt->is_registered)
1715 edac_mc_handle_error(tp_event, mci,
1716 m->addr >> PAGE_SHIFT,
1717 m->addr & ~PAGE_MASK,
1718 syndrome,
1719 channel, dimm, -1,
1720 err, msg, m);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001721}
1722
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001723/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001724 * i7core_check_error Retrieve and process errors reported by the
1725 * hardware. Called by the Core module.
1726 */
1727static void i7core_check_error(struct mem_ctl_info *mci)
1728{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001729 struct i7core_pvt *pvt = mci->pvt_info;
1730 int i;
1731 unsigned count = 0;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001732 struct mce *m;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001733
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001734 /*
1735 * MCE first step: Copy all mce errors into a temporary buffer
1736 * We use a double buffering here, to reduce the risk of
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001737 * losing an error.
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001738 */
1739 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001740 count = (pvt->mce_out + MCE_LOG_LEN - pvt->mce_in)
1741 % MCE_LOG_LEN;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001742 if (!count)
Vernon Mauery8a311e12010-04-16 19:40:19 -03001743 goto check_ce_error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001744
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001745 m = pvt->mce_outentry;
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001746 if (pvt->mce_in + count > MCE_LOG_LEN) {
1747 unsigned l = MCE_LOG_LEN - pvt->mce_in;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001748
1749 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * l);
1750 smp_wmb();
1751 pvt->mce_in = 0;
1752 count -= l;
1753 m += l;
1754 }
1755 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * count);
1756 smp_wmb();
1757 pvt->mce_in += count;
1758
1759 smp_rmb();
1760 if (pvt->mce_overrun) {
1761 i7core_printk(KERN_ERR, "Lost %d memory errors\n",
1762 pvt->mce_overrun);
1763 smp_wmb();
1764 pvt->mce_overrun = 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001765 }
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001766
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001767 /*
1768 * MCE second step: parse errors and display
1769 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001770 for (i = 0; i < count; i++)
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001771 i7core_mce_output_error(mci, &pvt->mce_outentry[i]);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001772
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001773 /*
1774 * Now, let's increment CE error counts
1775 */
Vernon Mauery8a311e12010-04-16 19:40:19 -03001776check_ce_error:
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001777 if (!pvt->is_registered)
1778 i7core_udimm_check_mc_ecc_err(mci);
1779 else
1780 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001781}
1782
1783/*
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001784 * i7core_mce_check_error Replicates mcelog routine to get errors
1785 * This routine simply queues mcelog errors, and
1786 * return. The error itself should be handled later
1787 * by i7core_check_error.
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001788 * WARNING: As this routine should be called at NMI time, extra care should
1789 * be taken to avoid deadlocks, and to be as fast as possible.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001790 */
Borislav Petkov4140c542011-07-18 11:24:46 -03001791static int i7core_mce_check_error(struct notifier_block *nb, unsigned long val,
1792 void *data)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001793{
Borislav Petkov4140c542011-07-18 11:24:46 -03001794 struct mce *mce = (struct mce *)data;
1795 struct i7core_dev *i7_dev;
1796 struct mem_ctl_info *mci;
1797 struct i7core_pvt *pvt;
1798
1799 i7_dev = get_i7core_dev(mce->socketid);
1800 if (!i7_dev)
1801 return NOTIFY_BAD;
1802
1803 mci = i7_dev->mci;
1804 pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001805
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001806 /*
1807 * Just let mcelog handle it if the error is
1808 * outside the memory controller
1809 */
1810 if (((mce->status & 0xffff) >> 7) != 1)
Borislav Petkov4140c542011-07-18 11:24:46 -03001811 return NOTIFY_DONE;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001812
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001813 /* Bank 8 registers are the only ones that we know how to handle */
1814 if (mce->bank != 8)
Borislav Petkov4140c542011-07-18 11:24:46 -03001815 return NOTIFY_DONE;
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001816
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001817 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001818 if ((pvt->mce_out + 1) % MCE_LOG_LEN == pvt->mce_in) {
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001819 smp_wmb();
1820 pvt->mce_overrun++;
Borislav Petkov4140c542011-07-18 11:24:46 -03001821 return NOTIFY_DONE;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001822 }
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001823
1824 /* Copy memory error at the ringbuffer */
1825 memcpy(&pvt->mce_entry[pvt->mce_out], mce, sizeof(*mce));
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001826 smp_wmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001827 pvt->mce_out = (pvt->mce_out + 1) % MCE_LOG_LEN;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001828
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001829 /* Handle fatal errors immediately */
1830 if (mce->mcgstatus & 1)
1831 i7core_check_error(mci);
1832
David Sterbae7bf0682010-12-27 16:51:15 +01001833 /* Advise mcelog that the errors were handled */
Borislav Petkov4140c542011-07-18 11:24:46 -03001834 return NOTIFY_STOP;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001835}
1836
Borislav Petkov4140c542011-07-18 11:24:46 -03001837static struct notifier_block i7_mce_dec = {
1838 .notifier_call = i7core_mce_check_error,
1839};
1840
Nils Carlson535e9c72011-08-08 06:21:26 -03001841struct memdev_dmi_entry {
1842 u8 type;
1843 u8 length;
1844 u16 handle;
1845 u16 phys_mem_array_handle;
1846 u16 mem_err_info_handle;
1847 u16 total_width;
1848 u16 data_width;
1849 u16 size;
1850 u8 form;
1851 u8 device_set;
1852 u8 device_locator;
1853 u8 bank_locator;
1854 u8 memory_type;
1855 u16 type_detail;
1856 u16 speed;
1857 u8 manufacturer;
1858 u8 serial_number;
1859 u8 asset_tag;
1860 u8 part_number;
1861 u8 attributes;
1862 u32 extended_size;
1863 u16 conf_mem_clk_speed;
1864} __attribute__((__packed__));
1865
1866
1867/*
1868 * Decode the DRAM Clock Frequency, be paranoid, make sure that all
1869 * memory devices show the same speed, and if they don't then consider
1870 * all speeds to be invalid.
1871 */
1872static void decode_dclk(const struct dmi_header *dh, void *_dclk_freq)
1873{
1874 int *dclk_freq = _dclk_freq;
1875 u16 dmi_mem_clk_speed;
1876
1877 if (*dclk_freq == -1)
1878 return;
1879
1880 if (dh->type == DMI_ENTRY_MEM_DEVICE) {
1881 struct memdev_dmi_entry *memdev_dmi_entry =
1882 (struct memdev_dmi_entry *)dh;
1883 unsigned long conf_mem_clk_speed_offset =
1884 (unsigned long)&memdev_dmi_entry->conf_mem_clk_speed -
1885 (unsigned long)&memdev_dmi_entry->type;
1886 unsigned long speed_offset =
1887 (unsigned long)&memdev_dmi_entry->speed -
1888 (unsigned long)&memdev_dmi_entry->type;
1889
1890 /* Check that a DIMM is present */
1891 if (memdev_dmi_entry->size == 0)
1892 return;
1893
1894 /*
1895 * Pick the configured speed if it's available, otherwise
1896 * pick the DIMM speed, or we don't have a speed.
1897 */
1898 if (memdev_dmi_entry->length > conf_mem_clk_speed_offset) {
1899 dmi_mem_clk_speed =
1900 memdev_dmi_entry->conf_mem_clk_speed;
1901 } else if (memdev_dmi_entry->length > speed_offset) {
1902 dmi_mem_clk_speed = memdev_dmi_entry->speed;
1903 } else {
1904 *dclk_freq = -1;
1905 return;
1906 }
1907
1908 if (*dclk_freq == 0) {
1909 /* First pass, speed was 0 */
1910 if (dmi_mem_clk_speed > 0) {
1911 /* Set speed if a valid speed is read */
1912 *dclk_freq = dmi_mem_clk_speed;
1913 } else {
1914 /* Otherwise we don't have a valid speed */
1915 *dclk_freq = -1;
1916 }
1917 } else if (*dclk_freq > 0 &&
1918 *dclk_freq != dmi_mem_clk_speed) {
1919 /*
1920 * If we have a speed, check that all DIMMS are the same
1921 * speed, otherwise set the speed as invalid.
1922 */
1923 *dclk_freq = -1;
1924 }
1925 }
1926}
1927
1928/*
1929 * The default DCLK frequency is used as a fallback if we
1930 * fail to find anything reliable in the DMI. The value
1931 * is taken straight from the datasheet.
1932 */
1933#define DEFAULT_DCLK_FREQ 800
1934
1935static int get_dclk_freq(void)
1936{
1937 int dclk_freq = 0;
1938
1939 dmi_walk(decode_dclk, (void *)&dclk_freq);
1940
1941 if (dclk_freq < 1)
1942 return DEFAULT_DCLK_FREQ;
1943
1944 return dclk_freq;
1945}
1946
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001947/*
1948 * set_sdram_scrub_rate This routine sets byte/sec bandwidth scrub rate
1949 * to hardware according to SCRUBINTERVAL formula
1950 * found in datasheet.
1951 */
1952static int set_sdram_scrub_rate(struct mem_ctl_info *mci, u32 new_bw)
1953{
1954 struct i7core_pvt *pvt = mci->pvt_info;
1955 struct pci_dev *pdev;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001956 u32 dw_scrub;
1957 u32 dw_ssr;
1958
1959 /* Get data from the MC register, function 2 */
1960 pdev = pvt->pci_mcr[2];
1961 if (!pdev)
1962 return -ENODEV;
1963
1964 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &dw_scrub);
1965
1966 if (new_bw == 0) {
1967 /* Prepare to disable petrol scrub */
1968 dw_scrub &= ~STARTSCRUB;
1969 /* Stop the patrol scrub engine */
Nils Carlson535e9c72011-08-08 06:21:26 -03001970 write_and_test(pdev, MC_SCRUB_CONTROL,
1971 dw_scrub & ~SCRUBINTERVAL_MASK);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001972
1973 /* Get current status of scrub rate and set bit to disable */
1974 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
1975 dw_ssr &= ~SSR_MODE_MASK;
1976 dw_ssr |= SSR_MODE_DISABLE;
1977 } else {
Nils Carlson535e9c72011-08-08 06:21:26 -03001978 const int cache_line_size = 64;
1979 const u32 freq_dclk_mhz = pvt->dclk_freq;
1980 unsigned long long scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001981 /*
1982 * Translate the desired scrub rate to a register value and
Nils Carlson535e9c72011-08-08 06:21:26 -03001983 * program the corresponding register value.
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001984 */
Nils Carlson535e9c72011-08-08 06:21:26 -03001985 scrub_interval = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03001986 cache_line_size * 1000000;
1987 do_div(scrub_interval, new_bw);
Nils Carlson535e9c72011-08-08 06:21:26 -03001988
1989 if (!scrub_interval || scrub_interval > SCRUBINTERVAL_MASK)
1990 return -EINVAL;
1991
1992 dw_scrub = SCRUBINTERVAL_MASK & scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001993
1994 /* Start the patrol scrub engine */
1995 pci_write_config_dword(pdev, MC_SCRUB_CONTROL,
1996 STARTSCRUB | dw_scrub);
1997
1998 /* Get current status of scrub rate and set bit to enable */
1999 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
2000 dw_ssr &= ~SSR_MODE_MASK;
2001 dw_ssr |= SSR_MODE_ENABLE;
2002 }
2003 /* Disable or enable scrubbing */
2004 pci_write_config_dword(pdev, MC_SSRCONTROL, dw_ssr);
2005
2006 return new_bw;
2007}
2008
2009/*
2010 * get_sdram_scrub_rate This routine convert current scrub rate value
David Mackey15ed1032012-04-17 11:30:52 -07002011 * into byte/sec bandwidth according to
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002012 * SCRUBINTERVAL formula found in datasheet.
2013 */
2014static int get_sdram_scrub_rate(struct mem_ctl_info *mci)
2015{
2016 struct i7core_pvt *pvt = mci->pvt_info;
2017 struct pci_dev *pdev;
2018 const u32 cache_line_size = 64;
Nils Carlson535e9c72011-08-08 06:21:26 -03002019 const u32 freq_dclk_mhz = pvt->dclk_freq;
2020 unsigned long long scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002021 u32 scrubval;
2022
2023 /* Get data from the MC register, function 2 */
2024 pdev = pvt->pci_mcr[2];
2025 if (!pdev)
2026 return -ENODEV;
2027
2028 /* Get current scrub control data */
2029 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &scrubval);
2030
2031 /* Mask highest 8-bits to 0 */
Nils Carlson535e9c72011-08-08 06:21:26 -03002032 scrubval &= SCRUBINTERVAL_MASK;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002033 if (!scrubval)
2034 return 0;
2035
2036 /* Calculate scrub rate value into byte/sec bandwidth */
Nils Carlson535e9c72011-08-08 06:21:26 -03002037 scrub_rate = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03002038 1000000 * cache_line_size;
2039 do_div(scrub_rate, scrubval);
Nils Carlson535e9c72011-08-08 06:21:26 -03002040 return (int)scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002041}
2042
2043static void enable_sdram_scrub_setting(struct mem_ctl_info *mci)
2044{
2045 struct i7core_pvt *pvt = mci->pvt_info;
2046 u32 pci_lock;
2047
2048 /* Unlock writes to pci registers */
2049 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2050 pci_lock &= ~0x3;
2051 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2052 pci_lock | MC_CFG_UNLOCK);
2053
2054 mci->set_sdram_scrub_rate = set_sdram_scrub_rate;
2055 mci->get_sdram_scrub_rate = get_sdram_scrub_rate;
2056}
2057
2058static void disable_sdram_scrub_setting(struct mem_ctl_info *mci)
2059{
2060 struct i7core_pvt *pvt = mci->pvt_info;
2061 u32 pci_lock;
2062
2063 /* Lock writes to pci registers */
2064 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2065 pci_lock &= ~0x3;
2066 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2067 pci_lock | MC_CFG_LOCK);
2068}
2069
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002070static void i7core_pci_ctl_create(struct i7core_pvt *pvt)
2071{
2072 pvt->i7core_pci = edac_pci_create_generic_ctl(
2073 &pvt->i7core_dev->pdev[0]->dev,
2074 EDAC_MOD_STR);
2075 if (unlikely(!pvt->i7core_pci))
Mauro Carvalho Chehabf9902f22010-08-21 09:42:05 -03002076 i7core_printk(KERN_WARNING,
2077 "Unable to setup PCI error report via EDAC\n");
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002078}
2079
2080static void i7core_pci_ctl_release(struct i7core_pvt *pvt)
2081{
2082 if (likely(pvt->i7core_pci))
2083 edac_pci_release_generic_ctl(pvt->i7core_pci);
2084 else
2085 i7core_printk(KERN_ERR,
2086 "Couldn't find mem_ctl_info for socket %d\n",
2087 pvt->i7core_dev->socket);
2088 pvt->i7core_pci = NULL;
2089}
2090
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002091static void i7core_unregister_mci(struct i7core_dev *i7core_dev)
2092{
2093 struct mem_ctl_info *mci = i7core_dev->mci;
2094 struct i7core_pvt *pvt;
2095
2096 if (unlikely(!mci || !mci->pvt_info)) {
2097 debugf0("MC: " __FILE__ ": %s(): dev = %p\n",
2098 __func__, &i7core_dev->pdev[0]->dev);
2099
2100 i7core_printk(KERN_ERR, "Couldn't find mci handler\n");
2101 return;
2102 }
2103
2104 pvt = mci->pvt_info;
2105
2106 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
2107 __func__, mci, &i7core_dev->pdev[0]->dev);
2108
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002109 /* Disable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002110 if (pvt->enable_scrub)
2111 disable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002112
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002113 /* Disable EDAC polling */
2114 i7core_pci_ctl_release(pvt);
2115
2116 /* Remove MC sysfs nodes */
2117 edac_mc_del_mc(mci->dev);
2118
2119 debugf1("%s: free mci struct\n", mci->ctl_name);
2120 kfree(mci->ctl_name);
2121 edac_mc_free(mci);
2122 i7core_dev->mci = NULL;
2123}
2124
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002125static int i7core_register_mci(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002126{
2127 struct mem_ctl_info *mci;
2128 struct i7core_pvt *pvt;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002129 int rc;
2130 struct edac_mc_layer layers[2];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002131
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002132 /* allocate a new MC control structure */
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002133
2134 layers[0].type = EDAC_MC_LAYER_CHANNEL;
2135 layers[0].size = NUM_CHANS;
2136 layers[0].is_virt_csrow = false;
2137 layers[1].type = EDAC_MC_LAYER_SLOT;
2138 layers[1].size = MAX_DIMMS;
2139 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03002140 mci = edac_mc_alloc(i7core_dev->socket, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002141 sizeof(*pvt));
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002142 if (unlikely(!mci))
2143 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002144
Mauro Carvalho Chehab3cfd0142010-08-10 23:23:46 -03002145 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
2146 __func__, mci, &i7core_dev->pdev[0]->dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002147
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002148 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002149 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03002150
Mauro Carvalho Chehab6d37d242010-08-20 12:48:26 -03002151 /* Associates i7core_dev and mci for future usage */
2152 pvt->i7core_dev = i7core_dev;
2153 i7core_dev->mci = mci;
2154
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002155 /*
2156 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
2157 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
2158 * memory channels
2159 */
2160 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002161 mci->edac_ctl_cap = EDAC_FLAG_NONE;
2162 mci->edac_cap = EDAC_FLAG_NONE;
2163 mci->mod_name = "i7core_edac.c";
2164 mci->mod_ver = I7CORE_REVISION;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002165 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d",
2166 i7core_dev->socket);
2167 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002168 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03002169
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002170 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002171 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002172 if (unlikely(rc < 0))
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002173 goto fail0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002174
Hidetoshi Seto59398132010-08-20 04:28:25 -03002175 if (pvt->is_registered)
2176 mci->mc_driver_sysfs_attributes = i7core_sysfs_rdimm_attrs;
2177 else
2178 mci->mc_driver_sysfs_attributes = i7core_sysfs_udimm_attrs;
2179
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002180 /* Get dimm basic config */
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -03002181 get_dimm_config(mci);
Hidetoshi Seto59398132010-08-20 04:28:25 -03002182 /* record ptr to the generic device */
2183 mci->dev = &i7core_dev->pdev[0]->dev;
2184 /* Set the function pointer to an actual operation function */
2185 mci->edac_check = i7core_check_error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002186
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002187 /* Enable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002188 if (pvt->enable_scrub)
2189 enable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002190
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002191 /* add this new MC control structure to EDAC's list of MCs */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002192 if (unlikely(edac_mc_add_mc(mci))) {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002193 debugf0("MC: " __FILE__
2194 ": %s(): failed edac_mc_add_mc()\n", __func__);
2195 /* FIXME: perhaps some code should go here that disables error
2196 * reporting if we just enabled it
2197 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002198
2199 rc = -EINVAL;
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002200 goto fail0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002201 }
2202
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002203 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002204 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002205 pvt->inject.dimm = -1;
2206 pvt->inject.rank = -1;
2207 pvt->inject.bank = -1;
2208 pvt->inject.page = -1;
2209 pvt->inject.col = -1;
2210
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002211 /* allocating generic PCI control info */
2212 i7core_pci_ctl_create(pvt);
2213
Nils Carlson535e9c72011-08-08 06:21:26 -03002214 /* DCLK for scrub rate setting */
2215 pvt->dclk_freq = get_dclk_freq();
2216
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002217 return 0;
2218
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002219fail0:
2220 kfree(mci->ctl_name);
2221 edac_mc_free(mci);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002222 i7core_dev->mci = NULL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002223 return rc;
2224}
2225
2226/*
2227 * i7core_probe Probe for ONE instance of device to see if it is
2228 * present.
2229 * return:
2230 * 0 for FOUND a device
2231 * < 0 for error code
2232 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002233
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002234static int __devinit i7core_probe(struct pci_dev *pdev,
2235 const struct pci_device_id *id)
2236{
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002237 int rc, count = 0;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002238 struct i7core_dev *i7core_dev;
2239
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002240 /* get the pci devices we want to reserve for our use */
2241 mutex_lock(&i7core_edac_lock);
2242
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002243 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002244 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002245 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002246 if (unlikely(probed >= 1)) {
2247 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehab76a7bd82010-10-24 11:36:19 -02002248 return -ENODEV;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002249 }
2250 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03002251
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002252 rc = i7core_get_all_devices();
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002253 if (unlikely(rc < 0))
2254 goto fail0;
2255
2256 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002257 count++;
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002258 rc = i7core_register_mci(i7core_dev);
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002259 if (unlikely(rc < 0))
2260 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002261 }
2262
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002263 /*
2264 * Nehalem-EX uses a different memory controller. However, as the
2265 * memory controller is not visible on some Nehalem/Nehalem-EP, we
2266 * need to indirectly probe via a X58 PCI device. The same devices
2267 * are found on (some) Nehalem-EX. So, on those machines, the
2268 * probe routine needs to return -ENODEV, as the actual Memory
2269 * Controller registers won't be detected.
2270 */
2271 if (!count) {
2272 rc = -ENODEV;
2273 goto fail1;
2274 }
2275
2276 i7core_printk(KERN_INFO,
2277 "Driver loaded, %d memory controller(s) found.\n",
2278 count);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03002279
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002280 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002281 return 0;
2282
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002283fail1:
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002284 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2285 i7core_unregister_mci(i7core_dev);
2286
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03002287 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002288fail0:
2289 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002290 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002291}
2292
2293/*
2294 * i7core_remove destructor for one instance of device
2295 *
2296 */
2297static void __devexit i7core_remove(struct pci_dev *pdev)
2298{
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002299 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002300
2301 debugf0(__FILE__ ": %s()\n", __func__);
2302
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002303 /*
2304 * we have a trouble here: pdev value for removal will be wrong, since
2305 * it will point to the X58 register used to detect that the machine
2306 * is a Nehalem or upper design. However, due to the way several PCI
2307 * devices are grouped together to provide MC functionality, we need
2308 * to use a different method for releasing the devices
2309 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002310
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002311 mutex_lock(&i7core_edac_lock);
Hidetoshi Seto71fe0172010-08-20 04:29:47 -03002312
2313 if (unlikely(!probed)) {
2314 mutex_unlock(&i7core_edac_lock);
2315 return;
2316 }
2317
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002318 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2319 i7core_unregister_mci(i7core_dev);
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002320
2321 /* Release PCI resources */
2322 i7core_put_all_devices();
2323
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002324 probed--;
2325
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002326 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002327}
2328
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002329MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2330
2331/*
2332 * i7core_driver pci_driver structure for this module
2333 *
2334 */
2335static struct pci_driver i7core_driver = {
2336 .name = "i7core_edac",
2337 .probe = i7core_probe,
2338 .remove = __devexit_p(i7core_remove),
2339 .id_table = i7core_pci_tbl,
2340};
2341
2342/*
2343 * i7core_init Module entry function
2344 * Try to initialize this module for its devices
2345 */
2346static int __init i7core_init(void)
2347{
2348 int pci_rc;
2349
2350 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2351
2352 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2353 opstate_init();
2354
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03002355 if (use_pci_fixup)
2356 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002357
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002358 pci_rc = pci_register_driver(&i7core_driver);
2359
Chen Gonge35fca42012-05-08 20:40:12 -03002360 if (pci_rc >= 0) {
2361 mce_register_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002362 return 0;
Chen Gonge35fca42012-05-08 20:40:12 -03002363 }
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002364
2365 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2366 pci_rc);
2367
2368 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002369}
2370
2371/*
2372 * i7core_exit() Module exit function
2373 * Unregister the driver
2374 */
2375static void __exit i7core_exit(void)
2376{
2377 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2378 pci_unregister_driver(&i7core_driver);
Chen Gonge35fca42012-05-08 20:40:12 -03002379 mce_unregister_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002380}
2381
2382module_init(i7core_init);
2383module_exit(i7core_exit);
2384
2385MODULE_LICENSE("GPL");
2386MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
2387MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2388MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2389 I7CORE_REVISION);
2390
2391module_param(edac_op_state, int, 0444);
2392MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");