blob: c29944fbb7d8a238414cc0bae3480dd0794d3219 [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/*
93 * OFFSETS for Device 3 Function 4, as inicated on Xeon 5500 datasheet:
94 * 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
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300104/* OFFSETS for Device 3 Function 2, as inicated 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 Chehab356f0a32012-03-30 16:10:51 -0300251 struct device *addrmatch_dev, *chancounts_dev;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300252
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300253 struct pci_dev *pci_noncore;
254 struct pci_dev *pci_mcr[MAX_MCR_FUNC + 1];
255 struct pci_dev *pci_ch[NUM_CHANS][MAX_CHAN_FUNC + 1];
256
257 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300258
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300259 struct i7core_info info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300260 struct i7core_inject inject;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300261 struct i7core_channel channel[NUM_CHANS];
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300262
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300263 int ce_count_available;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300264
265 /* ECC corrected errors counts per udimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300266 unsigned long udimm_ce_count[MAX_DIMMS];
267 int udimm_last_ce_count[MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300268 /* ECC corrected errors counts per rdimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300269 unsigned long rdimm_ce_count[NUM_CHANS][MAX_DIMMS];
270 int rdimm_last_ce_count[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300271
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -0300272 bool is_registered, enable_scrub;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300273
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300274 /* Fifo double buffers */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -0300275 struct mce mce_entry[MCE_LOG_LEN];
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -0300276 struct mce mce_outentry[MCE_LOG_LEN];
277
278 /* Fifo in/out counters */
279 unsigned mce_in, mce_out;
280
281 /* Count indicator to show errors not got */
282 unsigned mce_overrun;
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300283
Nils Carlson535e9c72011-08-08 06:21:26 -0300284 /* DCLK Frequency used for computing scrub rate */
285 int dclk_freq;
286
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300287 /* Struct to control EDAC polling */
288 struct edac_pci_ctl_info *i7core_pci;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300289};
290
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300291#define PCI_DESCR(device, function, device_id) \
292 .dev = (device), \
293 .func = (function), \
294 .dev_id = (device_id)
295
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300296static const struct pci_id_descr pci_dev_descr_i7core_nehalem[] = {
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300297 /* Memory controller */
298 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_I7_MCR) },
299 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_I7_MC_TAD) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300300 /* Exists only for RDIMM */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300301 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_I7_MC_RAS), .optional = 1 },
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300302 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_I7_MC_TEST) },
303
304 /* Channel 0 */
305 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH0_CTRL) },
306 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH0_ADDR) },
307 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH0_RANK) },
308 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH0_TC) },
309
310 /* Channel 1 */
311 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH1_CTRL) },
312 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH1_ADDR) },
313 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH1_RANK) },
314 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH1_TC) },
315
316 /* Channel 2 */
317 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH2_CTRL) },
318 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH2_ADDR) },
319 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH2_RANK) },
320 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH2_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300321
322 /* Generic Non-core registers */
323 /*
324 * This is the PCI device on i7core and on Xeon 35xx (8086:2c41)
325 * On Xeon 55xx, however, it has a different id (8086:2c40). So,
326 * the probing code needs to test for the other address in case of
327 * failure of this one
328 */
329 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_I7_NONCORE) },
330
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300331};
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300332
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300333static const struct pci_id_descr pci_dev_descr_lynnfield[] = {
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300334 { PCI_DESCR( 3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR) },
335 { PCI_DESCR( 3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD) },
336 { PCI_DESCR( 3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST) },
337
338 { PCI_DESCR( 4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL) },
339 { PCI_DESCR( 4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR) },
340 { PCI_DESCR( 4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK) },
341 { PCI_DESCR( 4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC) },
342
Mauro Carvalho Chehab508fa172009-10-14 13:44:37 -0300343 { PCI_DESCR( 5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL) },
344 { PCI_DESCR( 5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR) },
345 { PCI_DESCR( 5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK) },
346 { PCI_DESCR( 5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300347
348 /*
349 * This is the PCI device has an alternate address on some
350 * processors like Core i7 860
351 */
352 { PCI_DESCR( 0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE) },
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300353};
354
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300355static const struct pci_id_descr pci_dev_descr_i7core_westmere[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300356 /* Memory controller */
357 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR_REV2) },
358 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD_REV2) },
359 /* Exists only for RDIMM */
360 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_RAS_REV2), .optional = 1 },
361 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST_REV2) },
362
363 /* Channel 0 */
364 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL_REV2) },
365 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR_REV2) },
366 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK_REV2) },
367 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC_REV2) },
368
369 /* Channel 1 */
370 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL_REV2) },
371 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR_REV2) },
372 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK_REV2) },
373 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC_REV2) },
374
375 /* Channel 2 */
376 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_CTRL_REV2) },
377 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_ADDR_REV2) },
378 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_RANK_REV2) },
379 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_TC_REV2) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300380
381 /* Generic Non-core registers */
382 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2) },
383
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300384};
385
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300386#define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) }
387static const struct pci_id_table pci_dev_table[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300388 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_nehalem),
389 PCI_ID_TABLE_ENTRY(pci_dev_descr_lynnfield),
390 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_westmere),
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -0200391 {0,} /* 0 terminated list. */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300392};
393
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300394/*
395 * pci_device_id table for which devices we are looking for
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300396 */
Lionel Debroux36c46f32012-02-27 07:41:47 +0100397static DEFINE_PCI_DEVICE_TABLE(i7core_pci_tbl) = {
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -0300398 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300399 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300400 {0,} /* 0 terminated list. */
401};
402
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300403/****************************************************************************
404 Anciliary status routines
405 ****************************************************************************/
406
407 /* MC_CONTROL bits */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300408#define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch)))
409#define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300410
411 /* MC_STATUS bits */
Keith Mannthey61053fd2009-09-02 23:46:59 -0300412#define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300413#define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300414
415 /* MC_MAX_DOD read functions */
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300416static inline int numdimms(u32 dimms)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300417{
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300418 return (dimms & 0x3) + 1;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300419}
420
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300421static inline int numrank(u32 rank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300422{
423 static int ranks[4] = { 1, 2, 4, -EINVAL };
424
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300425 return ranks[rank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300426}
427
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300428static inline int numbank(u32 bank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300429{
430 static int banks[4] = { 4, 8, 16, -EINVAL };
431
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300432 return banks[bank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300433}
434
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300435static inline int numrow(u32 row)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300436{
437 static int rows[8] = {
438 1 << 12, 1 << 13, 1 << 14, 1 << 15,
439 1 << 16, -EINVAL, -EINVAL, -EINVAL,
440 };
441
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300442 return rows[row & 0x7];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300443}
444
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300445static inline int numcol(u32 col)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300446{
447 static int cols[8] = {
448 1 << 10, 1 << 11, 1 << 12, -EINVAL,
449 };
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300450 return cols[col & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300451}
452
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300453static struct i7core_dev *get_i7core_dev(u8 socket)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300454{
455 struct i7core_dev *i7core_dev;
456
457 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
458 if (i7core_dev->socket == socket)
459 return i7core_dev;
460 }
461
462 return NULL;
463}
464
Hidetoshi Seto848b2f72010-08-20 04:24:44 -0300465static struct i7core_dev *alloc_i7core_dev(u8 socket,
466 const struct pci_id_table *table)
467{
468 struct i7core_dev *i7core_dev;
469
470 i7core_dev = kzalloc(sizeof(*i7core_dev), GFP_KERNEL);
471 if (!i7core_dev)
472 return NULL;
473
474 i7core_dev->pdev = kzalloc(sizeof(*i7core_dev->pdev) * table->n_devs,
475 GFP_KERNEL);
476 if (!i7core_dev->pdev) {
477 kfree(i7core_dev);
478 return NULL;
479 }
480
481 i7core_dev->socket = socket;
482 i7core_dev->n_devs = table->n_devs;
483 list_add_tail(&i7core_dev->list, &i7core_edac_list);
484
485 return i7core_dev;
486}
487
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -0300488static void free_i7core_dev(struct i7core_dev *i7core_dev)
489{
490 list_del(&i7core_dev->list);
491 kfree(i7core_dev->pdev);
492 kfree(i7core_dev);
493}
494
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300495/****************************************************************************
496 Memory check routines
497 ****************************************************************************/
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300498
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300499static int get_dimm_config(struct mem_ctl_info *mci)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300500{
501 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300502 struct pci_dev *pdev;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300503 int i, j;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300504 enum edac_type mode;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300505 enum mem_type mtype;
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300506 struct dimm_info *dimm;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300507
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300508 /* Get data from the MC register, function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300509 pdev = pvt->pci_mcr[0];
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300510 if (!pdev)
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300511 return -ENODEV;
512
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300513 /* Device 3 function 0 reads */
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300514 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control);
515 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status);
516 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod);
517 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300518
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300519 debugf0("QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
Mauro Carvalho Chehab4af91882009-09-24 09:58:26 -0300520 pvt->i7core_dev->socket, pvt->info.mc_control, pvt->info.mc_status,
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300521 pvt->info.max_dod, pvt->info.ch_map);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300522
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300523 if (ECC_ENABLED(pvt)) {
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300524 debugf0("ECC enabled with x%d SDCC\n", ECCx8(pvt) ? 8 : 4);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300525 if (ECCx8(pvt))
526 mode = EDAC_S8ECD8ED;
527 else
528 mode = EDAC_S4ECD4ED;
529 } else {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300530 debugf0("ECC disabled\n");
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300531 mode = EDAC_NONE;
532 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300533
534 /* FIXME: need to handle the error codes */
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300535 debugf0("DOD Max limits: DIMMS: %d, %d-ranked, %d-banked "
536 "x%x x 0x%x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300537 numdimms(pvt->info.max_dod),
538 numrank(pvt->info.max_dod >> 2),
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300539 numbank(pvt->info.max_dod >> 4),
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300540 numrow(pvt->info.max_dod >> 6),
541 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300542
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300543 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300544 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300545
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300546 if (!pvt->pci_ch[i][0])
547 continue;
548
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300549 if (!CH_ACTIVE(pvt, i)) {
550 debugf0("Channel %i is not active\n", i);
551 continue;
552 }
553 if (CH_DISABLED(pvt, i)) {
554 debugf0("Channel %i is disabled\n", i);
555 continue;
556 }
557
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300558 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300559 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300560 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
561
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300562
563 if (data & THREE_DIMMS_PRESENT)
564 pvt->channel[i].is_3dimms_present = true;
565
566 if (data & SINGLE_QUAD_RANK_PRESENT)
567 pvt->channel[i].is_single_4rank = true;
568
569 if (data & QUAD_RANK_PRESENT)
570 pvt->channel[i].has_4rank = true;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300571
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300572 if (data & REGISTERED_DIMM)
573 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300574 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300575 mtype = MEM_DDR3;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300576
577 /* Devices 4-6 function 1 */
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_DIMM0, &dimm_dod[0]);
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_DIMM1, &dimm_dod[1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300582 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300583 MC_DOD_CH_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300584
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300585 debugf0("Ch%d phy rd%d, wr%d (0x%08x): "
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300586 "%s%s%s%cDIMMs\n",
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300587 i,
588 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
589 data,
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300590 pvt->channel[i].is_3dimms_present ? "3DIMMS " : "",
591 pvt->channel[i].is_3dimms_present ? "SINGLE_4R " : "",
592 pvt->channel[i].has_4rank ? "HAS_4R " : "",
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300593 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300594
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300595 for (j = 0; j < 3; j++) {
596 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300597 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300598
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300599 if (!DIMM_PRESENT(dimm_dod[j]))
600 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300601
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -0300602 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
603 i, j, 0);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300604 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
605 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
606 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
607 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300608
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300609 /* DDR3 has 8 I/O banks */
610 size = (rows * cols * banks * ranks) >> (20 - 3);
611
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300612 debugf0("\tdimm %d %d Mb offset: %x, "
613 "bank: %d, rank: %d, row: %#x, col: %#x\n",
614 j, size,
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300615 RANKOFFSET(dimm_dod[j]),
616 banks, ranks, rows, cols);
617
Mauro Carvalho Chehabe9144602010-08-10 20:26:35 -0300618 npages = MiB_TO_PAGES(size);
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300619
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300620 dimm->nr_pages = npages;
621
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300622 switch (banks) {
623 case 4:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300624 dimm->dtype = DEV_X4;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300625 break;
626 case 8:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300627 dimm->dtype = DEV_X8;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300628 break;
629 case 16:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300630 dimm->dtype = DEV_X16;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300631 break;
632 default:
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300633 dimm->dtype = DEV_UNKNOWN;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300634 }
635
Mauro Carvalho Chehab084a4fcc2012-01-27 18:38:08 -0300636 snprintf(dimm->label, sizeof(dimm->label),
637 "CPU#%uChannel#%u_DIMM#%u",
638 pvt->i7core_dev->socket, i, j);
639 dimm->grain = 8;
640 dimm->edac_mode = mode;
641 dimm->mtype = mtype;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300642 }
643
644 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
645 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
646 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
647 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
648 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
649 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
650 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
651 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300652 debugf1("\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300653 for (j = 0; j < 8; j++)
Mauro Carvalho Chehab17cb7b02009-07-20 18:48:18 -0300654 debugf1("\t\t%#x\t%#x\t%#x\n",
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300655 (value[j] >> 27) & 0x1,
656 (value[j] >> 24) & 0x7,
David Sterba80b8ce82010-12-27 15:39:12 +0000657 (value[j] & ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300658 }
659
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300660 return 0;
661}
662
663/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300664 Error insertion routines
665 ****************************************************************************/
666
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300667#define to_mci(k) container_of(k, struct mem_ctl_info, dev)
668
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300669/* The i7core has independent error injection features per channel.
670 However, to have a simpler code, we don't allow enabling error injection
671 on more than one channel.
672 Also, since a change at an inject parameter will be applied only at enable,
673 we're disabling error injection on all write calls to the sysfs nodes that
674 controls the error code injection.
675 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300676static int disable_inject(const struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300677{
678 struct i7core_pvt *pvt = mci->pvt_info;
679
680 pvt->inject.enable = 0;
681
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300682 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300683 return -ENODEV;
684
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300685 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300686 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300687
688 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300689}
690
691/*
692 * i7core inject inject.section
693 *
694 * accept and store error injection inject.section value
695 * bit 0 - refers to the lower 32-byte half cacheline
696 * bit 1 - refers to the upper 32-byte half cacheline
697 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300698static ssize_t i7core_inject_section_store(struct device *dev,
699 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300700 const char *data, size_t count)
701{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300702 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300703 struct i7core_pvt *pvt = mci->pvt_info;
704 unsigned long value;
705 int rc;
706
707 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300708 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300709
710 rc = strict_strtoul(data, 10, &value);
711 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300712 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300713
714 pvt->inject.section = (u32) value;
715 return count;
716}
717
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300718static ssize_t i7core_inject_section_show(struct device *dev,
719 struct device_attribute *mattr,
720 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300721{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300722 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300723 struct i7core_pvt *pvt = mci->pvt_info;
724 return sprintf(data, "0x%08x\n", pvt->inject.section);
725}
726
727/*
728 * i7core inject.type
729 *
730 * accept and store error injection inject.section value
731 * bit 0 - repeat enable - Enable error repetition
732 * bit 1 - inject ECC error
733 * bit 2 - inject parity error
734 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300735static ssize_t i7core_inject_type_store(struct device *dev,
736 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300737 const char *data, size_t count)
738{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300739 struct mem_ctl_info *mci = to_mci(dev);
740struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300741 unsigned long value;
742 int rc;
743
744 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300745 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300746
747 rc = strict_strtoul(data, 10, &value);
748 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300749 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300750
751 pvt->inject.type = (u32) value;
752 return count;
753}
754
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300755static ssize_t i7core_inject_type_show(struct device *dev,
756 struct device_attribute *mattr,
757 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300758{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300759 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300760 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300761
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300762 return sprintf(data, "0x%08x\n", pvt->inject.type);
763}
764
765/*
766 * i7core_inject_inject.eccmask_store
767 *
768 * The type of error (UE/CE) will depend on the inject.eccmask value:
769 * Any bits set to a 1 will flip the corresponding ECC bit
770 * Correctable errors can be injected by flipping 1 bit or the bits within
771 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
772 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
773 * uncorrectable error to be injected.
774 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300775static ssize_t i7core_inject_eccmask_store(struct device *dev,
776 struct device_attribute *mattr,
777 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300778{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300779 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300780 struct i7core_pvt *pvt = mci->pvt_info;
781 unsigned long value;
782 int rc;
783
784 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300785 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300786
787 rc = strict_strtoul(data, 10, &value);
788 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300789 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300790
791 pvt->inject.eccmask = (u32) value;
792 return count;
793}
794
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300795static ssize_t i7core_inject_eccmask_show(struct device *dev,
796 struct device_attribute *mattr,
797 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300798{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300799 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300800 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300801
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300802 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
803}
804
805/*
806 * i7core_addrmatch
807 *
808 * The type of error (UE/CE) will depend on the inject.eccmask value:
809 * Any bits set to a 1 will flip the corresponding ECC bit
810 * Correctable errors can be injected by flipping 1 bit or the bits within
811 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
812 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
813 * uncorrectable error to be injected.
814 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300815
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300816#define DECLARE_ADDR_MATCH(param, limit) \
817static ssize_t i7core_inject_store_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300818 struct device *dev, \
819 struct device_attribute *mattr, \
820 const char *data, size_t count) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300821{ \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300822 struct mem_ctl_info *mci = to_mci(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300823 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300824 long value; \
825 int rc; \
826 \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300827 debugf1("%s()\n", __func__); \
828 pvt = mci->pvt_info; \
829 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300830 if (pvt->inject.enable) \
831 disable_inject(mci); \
832 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300833 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300834 value = -1; \
835 else { \
836 rc = strict_strtoul(data, 10, &value); \
837 if ((rc < 0) || (value >= limit)) \
838 return -EIO; \
839 } \
840 \
841 pvt->inject.param = value; \
842 \
843 return count; \
844} \
845 \
846static ssize_t i7core_inject_show_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300847 struct device *dev, \
848 struct device_attribute *mattr, \
849 char *data) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300850{ \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300851 struct mem_ctl_info *mci = to_mci(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300852 struct i7core_pvt *pvt; \
853 \
854 pvt = mci->pvt_info; \
855 debugf1("%s() pvt=%p\n", __func__, pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300856 if (pvt->inject.param < 0) \
857 return sprintf(data, "any\n"); \
858 else \
859 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300860}
861
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300862#define ATTR_ADDR_MATCH(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300863 static DEVICE_ATTR(param, S_IRUGO | S_IWUSR, \
864 i7core_inject_show_##param, \
865 i7core_inject_store_##param)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300866
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300867DECLARE_ADDR_MATCH(channel, 3);
868DECLARE_ADDR_MATCH(dimm, 3);
869DECLARE_ADDR_MATCH(rank, 4);
870DECLARE_ADDR_MATCH(bank, 32);
871DECLARE_ADDR_MATCH(page, 0x10000);
872DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300873
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300874ATTR_ADDR_MATCH(channel);
875ATTR_ADDR_MATCH(dimm);
876ATTR_ADDR_MATCH(rank);
877ATTR_ADDR_MATCH(bank);
878ATTR_ADDR_MATCH(page);
879ATTR_ADDR_MATCH(col);
880
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300881static int write_and_test(struct pci_dev *dev, const int where, const u32 val)
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300882{
883 u32 read;
884 int count;
885
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300886 debugf0("setting pci %02x:%02x.%x reg=%02x value=%08x\n",
887 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
888 where, val);
889
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300890 for (count = 0; count < 10; count++) {
891 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300892 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300893 pci_write_config_dword(dev, where, val);
894 pci_read_config_dword(dev, where, &read);
895
896 if (read == val)
897 return 0;
898 }
899
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300900 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
901 "write=%08x. Read=%08x\n",
902 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
903 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300904
905 return -EINVAL;
906}
907
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300908/*
909 * This routine prepares the Memory Controller for error injection.
910 * The error will be injected when some process tries to write to the
911 * memory that matches the given criteria.
912 * The criteria can be set in terms of a mask where dimm, rank, bank, page
913 * and col can be specified.
914 * A -1 value for any of the mask items will make the MCU to ignore
915 * that matching criteria for error injection.
916 *
917 * It should be noticed that the error will only happen after a write operation
918 * on a memory that matches the condition. if REPEAT_EN is not enabled at
919 * inject mask, then it will produce just one error. Otherwise, it will repeat
920 * until the injectmask would be cleaned.
921 *
922 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
923 * is reliable enough to check if the MC is using the
924 * three channels. However, this is not clear at the datasheet.
925 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300926static ssize_t i7core_inject_enable_store(struct device *dev,
927 struct device_attribute *mattr,
928 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300929{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300930 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300931 struct i7core_pvt *pvt = mci->pvt_info;
932 u32 injectmask;
933 u64 mask = 0;
934 int rc;
935 long enable;
936
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300937 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300938 return 0;
939
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300940 rc = strict_strtoul(data, 10, &enable);
941 if ((rc < 0))
942 return 0;
943
944 if (enable) {
945 pvt->inject.enable = 1;
946 } else {
947 disable_inject(mci);
948 return count;
949 }
950
951 /* Sets pvt->inject.dimm mask */
952 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200953 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300954 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300955 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200956 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300957 else
Alan Cox486dd092009-11-08 01:34:27 -0200958 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300959 }
960
961 /* Sets pvt->inject.rank mask */
962 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200963 mask |= 1LL << 40;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300964 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300965 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200966 mask |= (pvt->inject.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300967 else
Alan Cox486dd092009-11-08 01:34:27 -0200968 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300969 }
970
971 /* Sets pvt->inject.bank mask */
972 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200973 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300974 else
Alan Cox486dd092009-11-08 01:34:27 -0200975 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300976
977 /* Sets pvt->inject.page mask */
978 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200979 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300980 else
Alan Cox486dd092009-11-08 01:34:27 -0200981 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300982
983 /* Sets pvt->inject.column mask */
984 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200985 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300986 else
Alan Cox486dd092009-11-08 01:34:27 -0200987 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300988
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300989 /*
990 * bit 0: REPEAT_EN
991 * bits 1-2: MASK_HALF_CACHELINE
992 * bit 3: INJECT_ECC
993 * bit 4: INJECT_ADDR_PARITY
994 */
995
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -0300996 injectmask = (pvt->inject.type & 1) |
997 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300998 (pvt->inject.type & 0x6) << (3 - 1);
999
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001000 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001001 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001002 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001003
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001004 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001005 MC_CHANNEL_ADDR_MATCH, mask);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001006 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001007 MC_CHANNEL_ADDR_MATCH + 4, mask >> 32L);
1008
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001009 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001010 MC_CHANNEL_ERROR_MASK, pvt->inject.eccmask);
1011
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001012 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001013 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001014
1015 /*
1016 * This is something undocumented, based on my tests
1017 * Without writing 8 to this register, errors aren't injected. Not sure
1018 * why.
1019 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001020 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001021 MC_CFG_CONTROL, 8);
1022
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03001023 debugf0("Error inject addr match 0x%016llx, ecc 0x%08x,"
1024 " inject 0x%08x\n",
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001025 mask, pvt->inject.eccmask, injectmask);
1026
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001027
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001028 return count;
1029}
1030
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001031static ssize_t i7core_inject_enable_show(struct device *dev,
1032 struct device_attribute *mattr,
1033 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001034{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001035 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001036 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001037 u32 injectmask;
1038
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001039 if (!pvt->pci_ch[pvt->inject.channel][0])
1040 return 0;
1041
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001042 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001043 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001044
1045 debugf0("Inject error read: 0x%018x\n", injectmask);
1046
1047 if (injectmask & 0x0c)
1048 pvt->inject.enable = 1;
1049
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001050 return sprintf(data, "%d\n", pvt->inject.enable);
1051}
1052
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001053#define DECLARE_COUNTER(param) \
1054static ssize_t i7core_show_counter_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001055 struct device *dev, \
1056 struct device_attribute *mattr, \
1057 char *data) \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001058{ \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001059 struct mem_ctl_info *mci = to_mci(dev); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001060 struct i7core_pvt *pvt = mci->pvt_info; \
1061 \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001062 debugf1("%s()\n", __func__); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001063 if (!pvt->ce_count_available || (pvt->is_registered)) \
1064 return sprintf(data, "data unavailable\n"); \
1065 return sprintf(data, "%lu\n", \
1066 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001067}
1068
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001069#define ATTR_COUNTER(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001070 static DEVICE_ATTR(udimm##param, S_IRUGO | S_IWUSR, \
1071 i7core_show_counter_##param, \
1072 NULL)
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001073
1074DECLARE_COUNTER(0);
1075DECLARE_COUNTER(1);
1076DECLARE_COUNTER(2);
1077
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001078ATTR_COUNTER(0);
1079ATTR_COUNTER(1);
1080ATTR_COUNTER(2);
1081
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001082/*
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001083 * inject_addrmatch device sysfs struct
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001084 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001085
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001086static struct attribute *i7core_addrmatch_attrs[] = {
1087 &dev_attr_channel.attr,
1088 &dev_attr_dimm.attr,
1089 &dev_attr_rank.attr,
1090 &dev_attr_bank.attr,
1091 &dev_attr_page.attr,
1092 &dev_attr_col.attr,
1093 NULL
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001094};
1095
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001096static struct attribute_group addrmatch_grp = {
1097 .attrs = i7core_addrmatch_attrs,
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001098};
1099
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001100static const struct attribute_group *addrmatch_groups[] = {
1101 &addrmatch_grp,
1102 NULL
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001103};
1104
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001105static void addrmatch_release(struct device *device)
1106{
1107 debugf1("Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001108 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001109}
1110
1111static struct device_type addrmatch_type = {
1112 .groups = addrmatch_groups,
1113 .release = addrmatch_release,
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001114};
1115
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001116/*
1117 * all_channel_counts sysfs struct
1118 */
1119
1120static struct attribute *i7core_udimm_counters_attrs[] = {
1121 &dev_attr_udimm0.attr,
1122 &dev_attr_udimm1.attr,
1123 &dev_attr_udimm2.attr,
1124 NULL
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001125};
1126
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001127static struct attribute_group all_channel_counts_grp = {
1128 .attrs = i7core_udimm_counters_attrs,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001129};
1130
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001131static const struct attribute_group *all_channel_counts_groups[] = {
1132 &all_channel_counts_grp,
1133 NULL
1134};
1135
1136static void all_channel_counts_release(struct device *device)
1137{
1138 debugf1("Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001139 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001140}
1141
1142static struct device_type all_channel_counts_type = {
1143 .groups = all_channel_counts_groups,
1144 .release = all_channel_counts_release,
1145};
1146
1147/*
1148 * inject sysfs attributes
1149 */
1150
1151static DEVICE_ATTR(inject_section, S_IRUGO | S_IWUSR,
1152 i7core_inject_section_show, i7core_inject_section_store);
1153
1154static DEVICE_ATTR(inject_type, S_IRUGO | S_IWUSR,
1155 i7core_inject_type_show, i7core_inject_type_store);
1156
1157
1158static DEVICE_ATTR(inject_eccmask, S_IRUGO | S_IWUSR,
1159 i7core_inject_eccmask_show, i7core_inject_eccmask_store);
1160
1161static DEVICE_ATTR(inject_enable, S_IRUGO | S_IWUSR,
1162 i7core_inject_enable_show, i7core_inject_enable_store);
1163
1164static int i7core_create_sysfs_devices(struct mem_ctl_info *mci)
1165{
1166 struct i7core_pvt *pvt = mci->pvt_info;
1167 int rc;
1168
1169 rc = device_create_file(&mci->dev, &dev_attr_inject_section);
1170 if (rc < 0)
1171 return rc;
1172 rc = device_create_file(&mci->dev, &dev_attr_inject_type);
1173 if (rc < 0)
1174 return rc;
1175 rc = device_create_file(&mci->dev, &dev_attr_inject_eccmask);
1176 if (rc < 0)
1177 return rc;
1178 rc = device_create_file(&mci->dev, &dev_attr_inject_enable);
1179 if (rc < 0)
1180 return rc;
1181
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001182 pvt->addrmatch_dev = kzalloc(sizeof(*pvt->addrmatch_dev), GFP_KERNEL);
1183 if (!pvt->addrmatch_dev)
1184 return rc;
1185
1186 pvt->addrmatch_dev->type = &addrmatch_type;
1187 pvt->addrmatch_dev->bus = mci->dev.bus;
1188 device_initialize(pvt->addrmatch_dev);
1189 pvt->addrmatch_dev->parent = &mci->dev;
1190 dev_set_name(pvt->addrmatch_dev, "inject_addrmatch");
1191 dev_set_drvdata(pvt->addrmatch_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001192
1193 debugf1("%s(): creating %s\n", __func__,
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001194 dev_name(pvt->addrmatch_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001195
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001196 rc = device_add(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001197 if (rc < 0)
1198 return rc;
1199
1200 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001201 pvt->chancounts_dev = kzalloc(sizeof(*pvt->chancounts_dev),
1202 GFP_KERNEL);
1203 if (!pvt->chancounts_dev) {
1204 put_device(pvt->addrmatch_dev);
1205 device_del(pvt->addrmatch_dev);
1206 return rc;
1207 }
1208
1209 pvt->chancounts_dev->type = &all_channel_counts_type;
1210 pvt->chancounts_dev->bus = mci->dev.bus;
1211 device_initialize(pvt->chancounts_dev);
1212 pvt->chancounts_dev->parent = &mci->dev;
1213 dev_set_name(pvt->chancounts_dev, "all_channel_counts");
1214 dev_set_drvdata(pvt->chancounts_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001215
1216 debugf1("%s(): creating %s\n", __func__,
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001217 dev_name(pvt->chancounts_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001218
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001219 rc = device_add(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001220 if (rc < 0)
1221 return rc;
1222 }
1223 return 0;
1224}
1225
1226static void i7core_delete_sysfs_devices(struct mem_ctl_info *mci)
1227{
1228 struct i7core_pvt *pvt = mci->pvt_info;
1229
1230 debugf1("\n");
1231
1232 device_remove_file(&mci->dev, &dev_attr_inject_section);
1233 device_remove_file(&mci->dev, &dev_attr_inject_type);
1234 device_remove_file(&mci->dev, &dev_attr_inject_eccmask);
1235 device_remove_file(&mci->dev, &dev_attr_inject_enable);
1236
1237 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001238 put_device(pvt->chancounts_dev);
1239 device_del(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001240 }
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001241 put_device(pvt->addrmatch_dev);
1242 device_del(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001243}
1244
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001245/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001246 Device initialization routines: put/get, init/exit
1247 ****************************************************************************/
1248
1249/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001250 * i7core_put_all_devices 'put' all the devices that we have
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001251 * reserved via 'get'
1252 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001253static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001254{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001255 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001256
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001257 debugf0(__FILE__ ": %s()\n", __func__);
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001258 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001259 struct pci_dev *pdev = i7core_dev->pdev[i];
1260 if (!pdev)
1261 continue;
1262 debugf0("Removing dev %02x:%02x.%d\n",
1263 pdev->bus->number,
1264 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
1265 pci_dev_put(pdev);
1266 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001267}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001268
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001269static void i7core_put_all_devices(void)
1270{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001271 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001272
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001273 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001274 i7core_put_devices(i7core_dev);
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -03001275 free_i7core_dev(i7core_dev);
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001276 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001277}
1278
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001279static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001280{
1281 struct pci_dev *pdev = NULL;
1282 int i;
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03001283
Keith Manntheybc2d7242009-09-03 00:05:05 -03001284 /*
David Sterbae7bf0682010-12-27 16:51:15 +01001285 * On Xeon 55xx, the Intel Quick Path Arch Generic Non-core pci buses
Keith Manntheybc2d7242009-09-03 00:05:05 -03001286 * aren't announced by acpi. So, we need to use a legacy scan probing
1287 * to detect them
1288 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001289 while (table && table->descr) {
1290 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1291 if (unlikely(!pdev)) {
1292 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1293 pcibios_scan_specific_bus(255-i);
1294 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001295 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001296 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001297 }
1298}
1299
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001300static unsigned i7core_pci_lastbus(void)
1301{
1302 int last_bus = 0, bus;
1303 struct pci_bus *b = NULL;
1304
1305 while ((b = pci_find_next_bus(b)) != NULL) {
1306 bus = b->number;
1307 debugf0("Found bus %d\n", bus);
1308 if (bus > last_bus)
1309 last_bus = bus;
1310 }
1311
1312 debugf0("Last bus %d\n", last_bus);
1313
1314 return last_bus;
1315}
1316
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001317/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001318 * i7core_get_all_devices Find and perform 'get' operation on the MCH's
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001319 * device/functions we want to reference for this driver
1320 *
1321 * Need to 'get' device 16 func 1 and func 2
1322 */
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001323static int i7core_get_onedevice(struct pci_dev **prev,
1324 const struct pci_id_table *table,
1325 const unsigned devno,
1326 const unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001327{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001328 struct i7core_dev *i7core_dev;
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001329 const struct pci_id_descr *dev_descr = &table->descr[devno];
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001330
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001331 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001332 u8 bus = 0;
1333 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001334
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001335 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001336 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001337
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001338 /*
1339 * On Xeon 55xx, the Intel Quckpath Arch Generic Non-core regs
1340 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1341 * to probe for the alternate address in case of failure
1342 */
1343 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev)
1344 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1345 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
1346
1347 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE && !pdev)
1348 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1349 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1350 *prev);
1351
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001352 if (!pdev) {
1353 if (*prev) {
1354 *prev = pdev;
1355 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001356 }
1357
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001358 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001359 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001360
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001361 if (devno == 0)
1362 return -ENODEV;
1363
Daniel J Bluemanab089372010-07-23 23:16:52 +01001364 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001365 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001366 dev_descr->dev, dev_descr->func,
1367 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001368
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001369 /* End of list, leave */
1370 return -ENODEV;
1371 }
1372 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001373
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001374 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001375
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001376 i7core_dev = get_i7core_dev(socket);
1377 if (!i7core_dev) {
Hidetoshi Seto848b2f72010-08-20 04:24:44 -03001378 i7core_dev = alloc_i7core_dev(socket, table);
Hidetoshi Seto28966372010-08-20 04:28:51 -03001379 if (!i7core_dev) {
1380 pci_dev_put(pdev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001381 return -ENOMEM;
Hidetoshi Seto28966372010-08-20 04:28:51 -03001382 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001383 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001384
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001385 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001386 i7core_printk(KERN_ERR,
1387 "Duplicated device for "
1388 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001389 bus, dev_descr->dev, dev_descr->func,
1390 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001391 pci_dev_put(pdev);
1392 return -ENODEV;
1393 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001394
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001395 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001396
1397 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001398 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1399 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001400 i7core_printk(KERN_ERR,
1401 "Device PCI ID %04x:%04x "
1402 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001403 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001404 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001405 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001406 return -ENODEV;
1407 }
1408
1409 /* Be sure that the device is enabled */
1410 if (unlikely(pci_enable_device(pdev) < 0)) {
1411 i7core_printk(KERN_ERR,
1412 "Couldn't enable "
1413 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001414 bus, dev_descr->dev, dev_descr->func,
1415 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001416 return -ENODEV;
1417 }
1418
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03001419 debugf0("Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001420 socket, bus, dev_descr->dev,
1421 dev_descr->func,
1422 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001423
Mauro Carvalho Chehaba3e15412010-08-21 08:52:41 -03001424 /*
1425 * As stated on drivers/pci/search.c, the reference count for
1426 * @from is always decremented if it is not %NULL. So, as we need
1427 * to get all devices up to null, we need to do a get for the device
1428 */
1429 pci_dev_get(pdev);
1430
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001431 *prev = pdev;
1432
1433 return 0;
1434}
1435
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001436static int i7core_get_all_devices(void)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001437{
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001438 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001439 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001440 const struct pci_id_table *table = pci_dev_table;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001441
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001442 last_bus = i7core_pci_lastbus();
1443
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001444 while (table && table->descr) {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001445 for (i = 0; i < table->n_devs; i++) {
1446 pdev = NULL;
1447 do {
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001448 rc = i7core_get_onedevice(&pdev, table, i,
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001449 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001450 if (rc < 0) {
1451 if (i == 0) {
1452 i = table->n_devs;
1453 break;
1454 }
1455 i7core_put_all_devices();
1456 return -ENODEV;
1457 }
1458 } while (pdev);
1459 }
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001460 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001461 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001462
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001463 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001464}
1465
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001466static int mci_bind_devs(struct mem_ctl_info *mci,
1467 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001468{
1469 struct i7core_pvt *pvt = mci->pvt_info;
1470 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001471 int i, func, slot;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001472 char *family;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001473
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001474 pvt->is_registered = false;
1475 pvt->enable_scrub = false;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001476 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001477 pdev = i7core_dev->pdev[i];
1478 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001479 continue;
1480
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001481 func = PCI_FUNC(pdev->devfn);
1482 slot = PCI_SLOT(pdev->devfn);
1483 if (slot == 3) {
1484 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001485 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001486 pvt->pci_mcr[func] = pdev;
1487 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1488 if (unlikely(func > MAX_CHAN_FUNC))
1489 goto error;
1490 pvt->pci_ch[slot - 4][func] = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001491 } else if (!slot && !func) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001492 pvt->pci_noncore = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001493
1494 /* Detect the processor family */
1495 switch (pdev->device) {
1496 case PCI_DEVICE_ID_INTEL_I7_NONCORE:
1497 family = "Xeon 35xx/ i7core";
1498 pvt->enable_scrub = false;
1499 break;
1500 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT:
1501 family = "i7-800/i5-700";
1502 pvt->enable_scrub = false;
1503 break;
1504 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE:
1505 family = "Xeon 34xx";
1506 pvt->enable_scrub = false;
1507 break;
1508 case PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT:
1509 family = "Xeon 55xx";
1510 pvt->enable_scrub = true;
1511 break;
1512 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2:
1513 family = "Xeon 56xx / i7-900";
1514 pvt->enable_scrub = true;
1515 break;
1516 default:
1517 family = "unknown";
1518 pvt->enable_scrub = false;
1519 }
1520 debugf0("Detected a processor type %s\n", family);
1521 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001522 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001523
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001524 debugf0("Associated fn %d.%d, dev = %p, socket %d\n",
1525 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1526 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001527
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001528 if (PCI_SLOT(pdev->devfn) == 3 &&
1529 PCI_FUNC(pdev->devfn) == 2)
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001530 pvt->is_registered = true;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001531 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001532
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001533 return 0;
1534
1535error:
1536 i7core_printk(KERN_ERR, "Device %d, function %d "
1537 "is out of the expected range\n",
1538 slot, func);
1539 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001540}
1541
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001542/****************************************************************************
1543 Error check routines
1544 ****************************************************************************/
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001545static void i7core_rdimm_update_errcount(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001546 const int chan,
1547 const int dimm,
1548 const int add)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001549{
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001550 int i;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001551
1552 for (i = 0; i < add; i++) {
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001553 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 0, 0, 0,
1554 chan, dimm, -1, "error", "", NULL);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001555 }
1556}
1557
1558static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001559 const int chan,
1560 const int new0,
1561 const int new1,
1562 const int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001563{
1564 struct i7core_pvt *pvt = mci->pvt_info;
1565 int add0 = 0, add1 = 0, add2 = 0;
1566 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001567 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001568 /* Updates CE counters */
1569
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001570 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1571 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1572 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001573
1574 if (add2 < 0)
1575 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001576 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001577
1578 if (add1 < 0)
1579 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001580 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001581
1582 if (add0 < 0)
1583 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001584 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001585 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001586 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001587
1588 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001589 pvt->rdimm_last_ce_count[chan][2] = new2;
1590 pvt->rdimm_last_ce_count[chan][1] = new1;
1591 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001592
1593 /*updated the edac core */
1594 if (add0 != 0)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001595 i7core_rdimm_update_errcount(mci, chan, 0, add0);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001596 if (add1 != 0)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001597 i7core_rdimm_update_errcount(mci, chan, 1, add1);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001598 if (add2 != 0)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001599 i7core_rdimm_update_errcount(mci, chan, 2, add2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001600
1601}
1602
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001603static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001604{
1605 struct i7core_pvt *pvt = mci->pvt_info;
1606 u32 rcv[3][2];
1607 int i, new0, new1, new2;
1608
1609 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001610 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001611 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001612 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001613 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001614 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001615 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001616 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001617 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001618 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001619 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001620 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001621 &rcv[2][1]);
1622 for (i = 0 ; i < 3; i++) {
1623 debugf3("MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1624 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
1625 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001626 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001627 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1628 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1629 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1630 } else {
1631 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1632 DIMM_BOT_COR_ERR(rcv[i][0]);
1633 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1634 DIMM_BOT_COR_ERR(rcv[i][1]);
1635 new2 = 0;
1636 }
1637
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001638 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001639 }
1640}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001641
1642/* This function is based on the device 3 function 4 registers as described on:
1643 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1644 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1645 * also available at:
1646 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1647 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001648static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001649{
1650 struct i7core_pvt *pvt = mci->pvt_info;
1651 u32 rcv1, rcv0;
1652 int new0, new1, new2;
1653
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001654 if (!pvt->pci_mcr[4]) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001655 debugf0("%s MCR registers not found\n", __func__);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001656 return;
1657 }
1658
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001659 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001660 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1661 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001662
1663 /* Store the new values */
1664 new2 = DIMM2_COR_ERR(rcv1);
1665 new1 = DIMM1_COR_ERR(rcv0);
1666 new0 = DIMM0_COR_ERR(rcv0);
1667
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001668 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001669 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001670 /* Updates CE counters */
1671 int add0, add1, add2;
1672
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001673 add2 = new2 - pvt->udimm_last_ce_count[2];
1674 add1 = new1 - pvt->udimm_last_ce_count[1];
1675 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001676
1677 if (add2 < 0)
1678 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001679 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001680
1681 if (add1 < 0)
1682 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001683 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001684
1685 if (add0 < 0)
1686 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001687 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001688
1689 if (add0 | add1 | add2)
1690 i7core_printk(KERN_ERR, "New Corrected error(s): "
1691 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1692 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001693 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001694 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001695
1696 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001697 pvt->udimm_last_ce_count[2] = new2;
1698 pvt->udimm_last_ce_count[1] = new1;
1699 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001700}
1701
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001702/*
1703 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1704 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001705 * Nehalem are defined as family 0x06, model 0x1a
1706 *
1707 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001708 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001709 * m->status MSR_IA32_MC8_STATUS
1710 * m->addr MSR_IA32_MC8_ADDR
1711 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001712 * In the case of Nehalem, the error information is masked at .status and .misc
1713 * fields
1714 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001715static void i7core_mce_output_error(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001716 const struct mce *m)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001717{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001718 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03001719 char *type, *optype, *err, msg[80];
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001720 enum hw_event_mc_err_type tp_event;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001721 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001722 bool uncorrected_error = m->mcgstatus & 1ll << 61;
1723 bool ripv = m->mcgstatus & 1;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001724 u32 optypenum = (m->status >> 4) & 0x07;
Mathias Krause8cf2d232011-08-18 09:17:00 +02001725 u32 core_err_cnt = (m->status >> 38) & 0x7fff;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001726 u32 dimm = (m->misc >> 16) & 0x3;
1727 u32 channel = (m->misc >> 18) & 0x3;
1728 u32 syndrome = m->misc >> 32;
1729 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001730
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001731 if (uncorrected_error) {
1732 if (ripv) {
1733 type = "FATAL";
1734 tp_event = HW_EVENT_ERR_FATAL;
1735 } else {
1736 type = "NON_FATAL";
1737 tp_event = HW_EVENT_ERR_UNCORRECTED;
1738 }
1739 } else {
1740 type = "CORRECTED";
1741 tp_event = HW_EVENT_ERR_CORRECTED;
1742 }
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001743
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001744 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001745 case 0:
1746 optype = "generic undef request";
1747 break;
1748 case 1:
1749 optype = "read error";
1750 break;
1751 case 2:
1752 optype = "write error";
1753 break;
1754 case 3:
1755 optype = "addr/cmd error";
1756 break;
1757 case 4:
1758 optype = "scrubbing error";
1759 break;
1760 default:
1761 optype = "reserved";
1762 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001763 }
1764
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001765 switch (errnum) {
1766 case 16:
1767 err = "read ECC error";
1768 break;
1769 case 17:
1770 err = "RAS ECC error";
1771 break;
1772 case 18:
1773 err = "write parity error";
1774 break;
1775 case 19:
1776 err = "redundacy loss";
1777 break;
1778 case 20:
1779 err = "reserved";
1780 break;
1781 case 21:
1782 err = "memory range error";
1783 break;
1784 case 22:
1785 err = "RTID out of range";
1786 break;
1787 case 23:
1788 err = "address parity error";
1789 break;
1790 case 24:
1791 err = "byte enable parity error";
1792 break;
1793 default:
1794 err = "unknown";
1795 }
1796
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03001797 snprintf(msg, sizeof(msg), "count=%d %s", core_err_cnt, optype);
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001798
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001799 /*
1800 * Call the helper to output message
1801 * FIXME: what to do if core_err_cnt > 1? Currently, it generates
1802 * only one event
1803 */
1804 if (uncorrected_error || !pvt->is_registered)
1805 edac_mc_handle_error(tp_event, mci,
1806 m->addr >> PAGE_SHIFT,
1807 m->addr & ~PAGE_MASK,
1808 syndrome,
1809 channel, dimm, -1,
1810 err, msg, m);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001811}
1812
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001813/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001814 * i7core_check_error Retrieve and process errors reported by the
1815 * hardware. Called by the Core module.
1816 */
1817static void i7core_check_error(struct mem_ctl_info *mci)
1818{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001819 struct i7core_pvt *pvt = mci->pvt_info;
1820 int i;
1821 unsigned count = 0;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001822 struct mce *m;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001823
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001824 /*
1825 * MCE first step: Copy all mce errors into a temporary buffer
1826 * We use a double buffering here, to reduce the risk of
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001827 * losing an error.
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001828 */
1829 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001830 count = (pvt->mce_out + MCE_LOG_LEN - pvt->mce_in)
1831 % MCE_LOG_LEN;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001832 if (!count)
Vernon Mauery8a311e12010-04-16 19:40:19 -03001833 goto check_ce_error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001834
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001835 m = pvt->mce_outentry;
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001836 if (pvt->mce_in + count > MCE_LOG_LEN) {
1837 unsigned l = MCE_LOG_LEN - pvt->mce_in;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001838
1839 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * l);
1840 smp_wmb();
1841 pvt->mce_in = 0;
1842 count -= l;
1843 m += l;
1844 }
1845 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * count);
1846 smp_wmb();
1847 pvt->mce_in += count;
1848
1849 smp_rmb();
1850 if (pvt->mce_overrun) {
1851 i7core_printk(KERN_ERR, "Lost %d memory errors\n",
1852 pvt->mce_overrun);
1853 smp_wmb();
1854 pvt->mce_overrun = 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001855 }
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001856
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001857 /*
1858 * MCE second step: parse errors and display
1859 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001860 for (i = 0; i < count; i++)
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001861 i7core_mce_output_error(mci, &pvt->mce_outentry[i]);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001862
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001863 /*
1864 * Now, let's increment CE error counts
1865 */
Vernon Mauery8a311e12010-04-16 19:40:19 -03001866check_ce_error:
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001867 if (!pvt->is_registered)
1868 i7core_udimm_check_mc_ecc_err(mci);
1869 else
1870 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001871}
1872
1873/*
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001874 * i7core_mce_check_error Replicates mcelog routine to get errors
1875 * This routine simply queues mcelog errors, and
1876 * return. The error itself should be handled later
1877 * by i7core_check_error.
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001878 * WARNING: As this routine should be called at NMI time, extra care should
1879 * be taken to avoid deadlocks, and to be as fast as possible.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001880 */
Borislav Petkov4140c542011-07-18 11:24:46 -03001881static int i7core_mce_check_error(struct notifier_block *nb, unsigned long val,
1882 void *data)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001883{
Borislav Petkov4140c542011-07-18 11:24:46 -03001884 struct mce *mce = (struct mce *)data;
1885 struct i7core_dev *i7_dev;
1886 struct mem_ctl_info *mci;
1887 struct i7core_pvt *pvt;
1888
1889 i7_dev = get_i7core_dev(mce->socketid);
1890 if (!i7_dev)
1891 return NOTIFY_BAD;
1892
1893 mci = i7_dev->mci;
1894 pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001895
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001896 /*
1897 * Just let mcelog handle it if the error is
1898 * outside the memory controller
1899 */
1900 if (((mce->status & 0xffff) >> 7) != 1)
Borislav Petkov4140c542011-07-18 11:24:46 -03001901 return NOTIFY_DONE;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001902
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001903 /* Bank 8 registers are the only ones that we know how to handle */
1904 if (mce->bank != 8)
Borislav Petkov4140c542011-07-18 11:24:46 -03001905 return NOTIFY_DONE;
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001906
Randy Dunlap3b918c12009-11-08 01:36:40 -02001907#ifdef CONFIG_SMP
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001908 /* Only handle if it is the right mc controller */
Thomas Renninger50340862011-06-22 05:40:06 -03001909 if (mce->socketid != pvt->i7core_dev->socket)
Borislav Petkov4140c542011-07-18 11:24:46 -03001910 return NOTIFY_DONE;
Randy Dunlap3b918c12009-11-08 01:36:40 -02001911#endif
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001912
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001913 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001914 if ((pvt->mce_out + 1) % MCE_LOG_LEN == pvt->mce_in) {
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001915 smp_wmb();
1916 pvt->mce_overrun++;
Borislav Petkov4140c542011-07-18 11:24:46 -03001917 return NOTIFY_DONE;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001918 }
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001919
1920 /* Copy memory error at the ringbuffer */
1921 memcpy(&pvt->mce_entry[pvt->mce_out], mce, sizeof(*mce));
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001922 smp_wmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001923 pvt->mce_out = (pvt->mce_out + 1) % MCE_LOG_LEN;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001924
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001925 /* Handle fatal errors immediately */
1926 if (mce->mcgstatus & 1)
1927 i7core_check_error(mci);
1928
David Sterbae7bf0682010-12-27 16:51:15 +01001929 /* Advise mcelog that the errors were handled */
Borislav Petkov4140c542011-07-18 11:24:46 -03001930 return NOTIFY_STOP;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001931}
1932
Borislav Petkov4140c542011-07-18 11:24:46 -03001933static struct notifier_block i7_mce_dec = {
1934 .notifier_call = i7core_mce_check_error,
1935};
1936
Nils Carlson535e9c72011-08-08 06:21:26 -03001937struct memdev_dmi_entry {
1938 u8 type;
1939 u8 length;
1940 u16 handle;
1941 u16 phys_mem_array_handle;
1942 u16 mem_err_info_handle;
1943 u16 total_width;
1944 u16 data_width;
1945 u16 size;
1946 u8 form;
1947 u8 device_set;
1948 u8 device_locator;
1949 u8 bank_locator;
1950 u8 memory_type;
1951 u16 type_detail;
1952 u16 speed;
1953 u8 manufacturer;
1954 u8 serial_number;
1955 u8 asset_tag;
1956 u8 part_number;
1957 u8 attributes;
1958 u32 extended_size;
1959 u16 conf_mem_clk_speed;
1960} __attribute__((__packed__));
1961
1962
1963/*
1964 * Decode the DRAM Clock Frequency, be paranoid, make sure that all
1965 * memory devices show the same speed, and if they don't then consider
1966 * all speeds to be invalid.
1967 */
1968static void decode_dclk(const struct dmi_header *dh, void *_dclk_freq)
1969{
1970 int *dclk_freq = _dclk_freq;
1971 u16 dmi_mem_clk_speed;
1972
1973 if (*dclk_freq == -1)
1974 return;
1975
1976 if (dh->type == DMI_ENTRY_MEM_DEVICE) {
1977 struct memdev_dmi_entry *memdev_dmi_entry =
1978 (struct memdev_dmi_entry *)dh;
1979 unsigned long conf_mem_clk_speed_offset =
1980 (unsigned long)&memdev_dmi_entry->conf_mem_clk_speed -
1981 (unsigned long)&memdev_dmi_entry->type;
1982 unsigned long speed_offset =
1983 (unsigned long)&memdev_dmi_entry->speed -
1984 (unsigned long)&memdev_dmi_entry->type;
1985
1986 /* Check that a DIMM is present */
1987 if (memdev_dmi_entry->size == 0)
1988 return;
1989
1990 /*
1991 * Pick the configured speed if it's available, otherwise
1992 * pick the DIMM speed, or we don't have a speed.
1993 */
1994 if (memdev_dmi_entry->length > conf_mem_clk_speed_offset) {
1995 dmi_mem_clk_speed =
1996 memdev_dmi_entry->conf_mem_clk_speed;
1997 } else if (memdev_dmi_entry->length > speed_offset) {
1998 dmi_mem_clk_speed = memdev_dmi_entry->speed;
1999 } else {
2000 *dclk_freq = -1;
2001 return;
2002 }
2003
2004 if (*dclk_freq == 0) {
2005 /* First pass, speed was 0 */
2006 if (dmi_mem_clk_speed > 0) {
2007 /* Set speed if a valid speed is read */
2008 *dclk_freq = dmi_mem_clk_speed;
2009 } else {
2010 /* Otherwise we don't have a valid speed */
2011 *dclk_freq = -1;
2012 }
2013 } else if (*dclk_freq > 0 &&
2014 *dclk_freq != dmi_mem_clk_speed) {
2015 /*
2016 * If we have a speed, check that all DIMMS are the same
2017 * speed, otherwise set the speed as invalid.
2018 */
2019 *dclk_freq = -1;
2020 }
2021 }
2022}
2023
2024/*
2025 * The default DCLK frequency is used as a fallback if we
2026 * fail to find anything reliable in the DMI. The value
2027 * is taken straight from the datasheet.
2028 */
2029#define DEFAULT_DCLK_FREQ 800
2030
2031static int get_dclk_freq(void)
2032{
2033 int dclk_freq = 0;
2034
2035 dmi_walk(decode_dclk, (void *)&dclk_freq);
2036
2037 if (dclk_freq < 1)
2038 return DEFAULT_DCLK_FREQ;
2039
2040 return dclk_freq;
2041}
2042
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002043/*
2044 * set_sdram_scrub_rate This routine sets byte/sec bandwidth scrub rate
2045 * to hardware according to SCRUBINTERVAL formula
2046 * found in datasheet.
2047 */
2048static int set_sdram_scrub_rate(struct mem_ctl_info *mci, u32 new_bw)
2049{
2050 struct i7core_pvt *pvt = mci->pvt_info;
2051 struct pci_dev *pdev;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002052 u32 dw_scrub;
2053 u32 dw_ssr;
2054
2055 /* Get data from the MC register, function 2 */
2056 pdev = pvt->pci_mcr[2];
2057 if (!pdev)
2058 return -ENODEV;
2059
2060 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &dw_scrub);
2061
2062 if (new_bw == 0) {
2063 /* Prepare to disable petrol scrub */
2064 dw_scrub &= ~STARTSCRUB;
2065 /* Stop the patrol scrub engine */
Nils Carlson535e9c72011-08-08 06:21:26 -03002066 write_and_test(pdev, MC_SCRUB_CONTROL,
2067 dw_scrub & ~SCRUBINTERVAL_MASK);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002068
2069 /* Get current status of scrub rate and set bit to disable */
2070 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
2071 dw_ssr &= ~SSR_MODE_MASK;
2072 dw_ssr |= SSR_MODE_DISABLE;
2073 } else {
Nils Carlson535e9c72011-08-08 06:21:26 -03002074 const int cache_line_size = 64;
2075 const u32 freq_dclk_mhz = pvt->dclk_freq;
2076 unsigned long long scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002077 /*
2078 * Translate the desired scrub rate to a register value and
Nils Carlson535e9c72011-08-08 06:21:26 -03002079 * program the corresponding register value.
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002080 */
Nils Carlson535e9c72011-08-08 06:21:26 -03002081 scrub_interval = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03002082 cache_line_size * 1000000;
2083 do_div(scrub_interval, new_bw);
Nils Carlson535e9c72011-08-08 06:21:26 -03002084
2085 if (!scrub_interval || scrub_interval > SCRUBINTERVAL_MASK)
2086 return -EINVAL;
2087
2088 dw_scrub = SCRUBINTERVAL_MASK & scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002089
2090 /* Start the patrol scrub engine */
2091 pci_write_config_dword(pdev, MC_SCRUB_CONTROL,
2092 STARTSCRUB | dw_scrub);
2093
2094 /* Get current status of scrub rate and set bit to enable */
2095 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
2096 dw_ssr &= ~SSR_MODE_MASK;
2097 dw_ssr |= SSR_MODE_ENABLE;
2098 }
2099 /* Disable or enable scrubbing */
2100 pci_write_config_dword(pdev, MC_SSRCONTROL, dw_ssr);
2101
2102 return new_bw;
2103}
2104
2105/*
2106 * get_sdram_scrub_rate This routine convert current scrub rate value
2107 * into byte/sec bandwidth accourding to
2108 * SCRUBINTERVAL formula found in datasheet.
2109 */
2110static int get_sdram_scrub_rate(struct mem_ctl_info *mci)
2111{
2112 struct i7core_pvt *pvt = mci->pvt_info;
2113 struct pci_dev *pdev;
2114 const u32 cache_line_size = 64;
Nils Carlson535e9c72011-08-08 06:21:26 -03002115 const u32 freq_dclk_mhz = pvt->dclk_freq;
2116 unsigned long long scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002117 u32 scrubval;
2118
2119 /* Get data from the MC register, function 2 */
2120 pdev = pvt->pci_mcr[2];
2121 if (!pdev)
2122 return -ENODEV;
2123
2124 /* Get current scrub control data */
2125 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &scrubval);
2126
2127 /* Mask highest 8-bits to 0 */
Nils Carlson535e9c72011-08-08 06:21:26 -03002128 scrubval &= SCRUBINTERVAL_MASK;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002129 if (!scrubval)
2130 return 0;
2131
2132 /* Calculate scrub rate value into byte/sec bandwidth */
Nils Carlson535e9c72011-08-08 06:21:26 -03002133 scrub_rate = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03002134 1000000 * cache_line_size;
2135 do_div(scrub_rate, scrubval);
Nils Carlson535e9c72011-08-08 06:21:26 -03002136 return (int)scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002137}
2138
2139static void enable_sdram_scrub_setting(struct mem_ctl_info *mci)
2140{
2141 struct i7core_pvt *pvt = mci->pvt_info;
2142 u32 pci_lock;
2143
2144 /* Unlock writes to pci registers */
2145 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2146 pci_lock &= ~0x3;
2147 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2148 pci_lock | MC_CFG_UNLOCK);
2149
2150 mci->set_sdram_scrub_rate = set_sdram_scrub_rate;
2151 mci->get_sdram_scrub_rate = get_sdram_scrub_rate;
2152}
2153
2154static void disable_sdram_scrub_setting(struct mem_ctl_info *mci)
2155{
2156 struct i7core_pvt *pvt = mci->pvt_info;
2157 u32 pci_lock;
2158
2159 /* Lock writes to pci registers */
2160 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2161 pci_lock &= ~0x3;
2162 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2163 pci_lock | MC_CFG_LOCK);
2164}
2165
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002166static void i7core_pci_ctl_create(struct i7core_pvt *pvt)
2167{
2168 pvt->i7core_pci = edac_pci_create_generic_ctl(
2169 &pvt->i7core_dev->pdev[0]->dev,
2170 EDAC_MOD_STR);
2171 if (unlikely(!pvt->i7core_pci))
Mauro Carvalho Chehabf9902f22010-08-21 09:42:05 -03002172 i7core_printk(KERN_WARNING,
2173 "Unable to setup PCI error report via EDAC\n");
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002174}
2175
2176static void i7core_pci_ctl_release(struct i7core_pvt *pvt)
2177{
2178 if (likely(pvt->i7core_pci))
2179 edac_pci_release_generic_ctl(pvt->i7core_pci);
2180 else
2181 i7core_printk(KERN_ERR,
2182 "Couldn't find mem_ctl_info for socket %d\n",
2183 pvt->i7core_dev->socket);
2184 pvt->i7core_pci = NULL;
2185}
2186
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002187static void i7core_unregister_mci(struct i7core_dev *i7core_dev)
2188{
2189 struct mem_ctl_info *mci = i7core_dev->mci;
2190 struct i7core_pvt *pvt;
2191
2192 if (unlikely(!mci || !mci->pvt_info)) {
2193 debugf0("MC: " __FILE__ ": %s(): dev = %p\n",
2194 __func__, &i7core_dev->pdev[0]->dev);
2195
2196 i7core_printk(KERN_ERR, "Couldn't find mci handler\n");
2197 return;
2198 }
2199
2200 pvt = mci->pvt_info;
2201
2202 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
2203 __func__, mci, &i7core_dev->pdev[0]->dev);
2204
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002205 /* Disable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002206 if (pvt->enable_scrub)
2207 disable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002208
Borislav Petkov3653ada2011-12-04 15:12:09 +01002209 mce_unregister_decode_chain(&i7_mce_dec);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002210
2211 /* Disable EDAC polling */
2212 i7core_pci_ctl_release(pvt);
2213
2214 /* Remove MC sysfs nodes */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002215 i7core_delete_sysfs_devices(mci);
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002216 edac_mc_del_mc(mci->pdev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002217
2218 debugf1("%s: free mci struct\n", mci->ctl_name);
2219 kfree(mci->ctl_name);
2220 edac_mc_free(mci);
2221 i7core_dev->mci = NULL;
2222}
2223
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002224static int i7core_register_mci(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002225{
2226 struct mem_ctl_info *mci;
2227 struct i7core_pvt *pvt;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002228 int rc;
2229 struct edac_mc_layer layers[2];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002230
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002231 /* allocate a new MC control structure */
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002232
2233 layers[0].type = EDAC_MC_LAYER_CHANNEL;
2234 layers[0].size = NUM_CHANS;
2235 layers[0].is_virt_csrow = false;
2236 layers[1].type = EDAC_MC_LAYER_SLOT;
2237 layers[1].size = MAX_DIMMS;
2238 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03002239 mci = edac_mc_alloc(i7core_dev->socket, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002240 sizeof(*pvt));
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002241 if (unlikely(!mci))
2242 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002243
Mauro Carvalho Chehab3cfd0142010-08-10 23:23:46 -03002244 debugf0("MC: " __FILE__ ": %s(): mci = %p, dev = %p\n",
2245 __func__, mci, &i7core_dev->pdev[0]->dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002246
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002247 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002248 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03002249
Mauro Carvalho Chehab6d37d242010-08-20 12:48:26 -03002250 /* Associates i7core_dev and mci for future usage */
2251 pvt->i7core_dev = i7core_dev;
2252 i7core_dev->mci = mci;
2253
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002254 /*
2255 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
2256 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
2257 * memory channels
2258 */
2259 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002260 mci->edac_ctl_cap = EDAC_FLAG_NONE;
2261 mci->edac_cap = EDAC_FLAG_NONE;
2262 mci->mod_name = "i7core_edac.c";
2263 mci->mod_ver = I7CORE_REVISION;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002264 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d",
2265 i7core_dev->socket);
2266 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002267 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03002268
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002269 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002270 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002271 if (unlikely(rc < 0))
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002272 goto fail0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002273
Hidetoshi Seto59398132010-08-20 04:28:25 -03002274
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002275 /* Get dimm basic config */
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -03002276 get_dimm_config(mci);
Hidetoshi Seto59398132010-08-20 04:28:25 -03002277 /* record ptr to the generic device */
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002278 mci->pdev = &i7core_dev->pdev[0]->dev;
Hidetoshi Seto59398132010-08-20 04:28:25 -03002279 /* Set the function pointer to an actual operation function */
2280 mci->edac_check = i7core_check_error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002281
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002282 /* Enable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002283 if (pvt->enable_scrub)
2284 enable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002285
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002286 /* add this new MC control structure to EDAC's list of MCs */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002287 if (unlikely(edac_mc_add_mc(mci))) {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002288 debugf0("MC: " __FILE__
2289 ": %s(): failed edac_mc_add_mc()\n", __func__);
2290 /* FIXME: perhaps some code should go here that disables error
2291 * reporting if we just enabled it
2292 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002293
2294 rc = -EINVAL;
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002295 goto fail0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002296 }
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002297 if (i7core_create_sysfs_devices(mci)) {
2298 debugf0("MC: " __FILE__
2299 ": %s(): failed to create sysfs nodes\n", __func__);
2300 edac_mc_del_mc(mci->pdev);
2301 rc = -EINVAL;
2302 goto fail0;
2303 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002304
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002305 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002306 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002307 pvt->inject.dimm = -1;
2308 pvt->inject.rank = -1;
2309 pvt->inject.bank = -1;
2310 pvt->inject.page = -1;
2311 pvt->inject.col = -1;
2312
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002313 /* allocating generic PCI control info */
2314 i7core_pci_ctl_create(pvt);
2315
Nils Carlson535e9c72011-08-08 06:21:26 -03002316 /* DCLK for scrub rate setting */
2317 pvt->dclk_freq = get_dclk_freq();
2318
Borislav Petkov3653ada2011-12-04 15:12:09 +01002319 mce_register_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002320
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002321 return 0;
2322
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002323fail0:
2324 kfree(mci->ctl_name);
2325 edac_mc_free(mci);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002326 i7core_dev->mci = NULL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002327 return rc;
2328}
2329
2330/*
2331 * i7core_probe Probe for ONE instance of device to see if it is
2332 * present.
2333 * return:
2334 * 0 for FOUND a device
2335 * < 0 for error code
2336 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002337
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002338static int __devinit i7core_probe(struct pci_dev *pdev,
2339 const struct pci_device_id *id)
2340{
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002341 int rc, count = 0;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002342 struct i7core_dev *i7core_dev;
2343
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002344 /* get the pci devices we want to reserve for our use */
2345 mutex_lock(&i7core_edac_lock);
2346
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002347 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002348 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002349 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002350 if (unlikely(probed >= 1)) {
2351 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehab76a7bd82010-10-24 11:36:19 -02002352 return -ENODEV;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002353 }
2354 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03002355
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002356 rc = i7core_get_all_devices();
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002357 if (unlikely(rc < 0))
2358 goto fail0;
2359
2360 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002361 count++;
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002362 rc = i7core_register_mci(i7core_dev);
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002363 if (unlikely(rc < 0))
2364 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002365 }
2366
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002367 /*
2368 * Nehalem-EX uses a different memory controller. However, as the
2369 * memory controller is not visible on some Nehalem/Nehalem-EP, we
2370 * need to indirectly probe via a X58 PCI device. The same devices
2371 * are found on (some) Nehalem-EX. So, on those machines, the
2372 * probe routine needs to return -ENODEV, as the actual Memory
2373 * Controller registers won't be detected.
2374 */
2375 if (!count) {
2376 rc = -ENODEV;
2377 goto fail1;
2378 }
2379
2380 i7core_printk(KERN_INFO,
2381 "Driver loaded, %d memory controller(s) found.\n",
2382 count);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03002383
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002384 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002385 return 0;
2386
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002387fail1:
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002388 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2389 i7core_unregister_mci(i7core_dev);
2390
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03002391 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002392fail0:
2393 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002394 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002395}
2396
2397/*
2398 * i7core_remove destructor for one instance of device
2399 *
2400 */
2401static void __devexit i7core_remove(struct pci_dev *pdev)
2402{
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002403 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002404
2405 debugf0(__FILE__ ": %s()\n", __func__);
2406
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002407 /*
2408 * we have a trouble here: pdev value for removal will be wrong, since
2409 * it will point to the X58 register used to detect that the machine
2410 * is a Nehalem or upper design. However, due to the way several PCI
2411 * devices are grouped together to provide MC functionality, we need
2412 * to use a different method for releasing the devices
2413 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002414
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002415 mutex_lock(&i7core_edac_lock);
Hidetoshi Seto71fe0172010-08-20 04:29:47 -03002416
2417 if (unlikely(!probed)) {
2418 mutex_unlock(&i7core_edac_lock);
2419 return;
2420 }
2421
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002422 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2423 i7core_unregister_mci(i7core_dev);
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002424
2425 /* Release PCI resources */
2426 i7core_put_all_devices();
2427
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002428 probed--;
2429
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002430 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002431}
2432
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002433MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2434
2435/*
2436 * i7core_driver pci_driver structure for this module
2437 *
2438 */
2439static struct pci_driver i7core_driver = {
2440 .name = "i7core_edac",
2441 .probe = i7core_probe,
2442 .remove = __devexit_p(i7core_remove),
2443 .id_table = i7core_pci_tbl,
2444};
2445
2446/*
2447 * i7core_init Module entry function
2448 * Try to initialize this module for its devices
2449 */
2450static int __init i7core_init(void)
2451{
2452 int pci_rc;
2453
2454 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2455
2456 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2457 opstate_init();
2458
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03002459 if (use_pci_fixup)
2460 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002461
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002462 pci_rc = pci_register_driver(&i7core_driver);
2463
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002464 if (pci_rc >= 0)
2465 return 0;
2466
2467 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2468 pci_rc);
2469
2470 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002471}
2472
2473/*
2474 * i7core_exit() Module exit function
2475 * Unregister the driver
2476 */
2477static void __exit i7core_exit(void)
2478{
2479 debugf2("MC: " __FILE__ ": %s()\n", __func__);
2480 pci_unregister_driver(&i7core_driver);
2481}
2482
2483module_init(i7core_init);
2484module_exit(i7core_exit);
2485
2486MODULE_LICENSE("GPL");
2487MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
2488MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2489MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2490 I7CORE_REVISION);
2491
2492module_param(edac_op_state, int, 0444);
2493MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");