blob: 9cd0b301f81ba5a5a3fb52dfcc87ef337d7bcb41 [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 Chehab37e59f82014-02-07 08:03:07 -020012 * Mauro Carvalho Chehab
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030013 *
14 * Red Hat Inc. http://www.redhat.com
15 *
16 * Forked and adapted from the i5400_edac driver
17 *
18 * Based on the following public Intel datasheets:
19 * Intel Core i7 Processor Extreme Edition and Intel Core i7 Processor
20 * Datasheet, Volume 2:
21 * http://download.intel.com/design/processor/datashts/320835.pdf
22 * Intel Xeon Processor 5500 Series Datasheet Volume 2
23 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
24 * also available at:
25 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
26 */
27
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030028#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/pci_ids.h>
32#include <linux/slab.h>
Randy Dunlap3b918c12009-11-08 01:36:40 -020033#include <linux/delay.h>
Nils Carlson535e9c72011-08-08 06:21:26 -030034#include <linux/dmi.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030035#include <linux/edac.h>
36#include <linux/mmzone.h>
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030037#include <linux/smp.h>
Borislav Petkov4140c542011-07-18 11:24:46 -030038#include <asm/mce.h>
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -030039#include <asm/processor.h>
Sedat Dilek4fad8092011-09-21 23:44:52 -030040#include <asm/div64.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030041
42#include "edac_core.h"
43
Mauro Carvalho Chehab18c29002010-08-10 18:33:27 -030044/* Static vars */
45static LIST_HEAD(i7core_edac_list);
46static DEFINE_MUTEX(i7core_edac_lock);
47static int probed;
48
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -030049static int use_pci_fixup;
50module_param(use_pci_fixup, int, 0444);
51MODULE_PARM_DESC(use_pci_fixup, "Enable PCI fixup to seek for hidden devices");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030052/*
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030053 * This is used for Nehalem-EP and Nehalem-EX devices, where the non-core
54 * registers start at bus 255, and are not reported by BIOS.
55 * We currently find devices with only 2 sockets. In order to support more QPI
56 * Quick Path Interconnect, just increment this number.
57 */
58#define MAX_SOCKET_BUSES 2
59
60
61/*
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030062 * Alter this version for the module when modifications are made
63 */
Michal Marek152ba392011-04-01 12:41:20 +020064#define I7CORE_REVISION " Ver: 1.0.0"
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030065#define EDAC_MOD_STR "i7core_edac"
66
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030067/*
68 * Debug macros
69 */
70#define i7core_printk(level, fmt, arg...) \
71 edac_printk(level, "i7core", fmt, ##arg)
72
73#define i7core_mc_printk(mci, level, fmt, arg...) \
74 edac_mc_chipset_printk(mci, level, "i7core", fmt, ##arg)
75
76/*
77 * i7core Memory Controller Registers
78 */
79
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030080 /* OFFSETS for Device 0 Function 0 */
81
82#define MC_CFG_CONTROL 0x90
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -030083 #define MC_CFG_UNLOCK 0x02
84 #define MC_CFG_LOCK 0x00
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030085
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030086 /* OFFSETS for Device 3 Function 0 */
87
88#define MC_CONTROL 0x48
89#define MC_STATUS 0x4c
90#define MC_MAX_DOD 0x64
91
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030092/*
David Mackey15ed1032012-04-17 11:30:52 -070093 * OFFSETS for Device 3 Function 4, as indicated on Xeon 5500 datasheet:
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030094 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
95 */
96
97#define MC_TEST_ERR_RCV1 0x60
98 #define DIMM2_COR_ERR(r) ((r) & 0x7fff)
99
100#define MC_TEST_ERR_RCV0 0x64
101 #define DIMM1_COR_ERR(r) (((r) >> 16) & 0x7fff)
102 #define DIMM0_COR_ERR(r) ((r) & 0x7fff)
103
David Mackey15ed1032012-04-17 11:30:52 -0700104/* OFFSETS for Device 3 Function 2, as indicated on Xeon 5500 datasheet */
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -0300105#define MC_SSRCONTROL 0x48
106 #define SSR_MODE_DISABLE 0x00
107 #define SSR_MODE_ENABLE 0x01
108 #define SSR_MODE_MASK 0x03
109
110#define MC_SCRUB_CONTROL 0x4c
111 #define STARTSCRUB (1 << 24)
Nils Carlson535e9c72011-08-08 06:21:26 -0300112 #define SCRUBINTERVAL_MASK 0xffffff
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -0300113
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300114#define MC_COR_ECC_CNT_0 0x80
115#define MC_COR_ECC_CNT_1 0x84
116#define MC_COR_ECC_CNT_2 0x88
117#define MC_COR_ECC_CNT_3 0x8c
118#define MC_COR_ECC_CNT_4 0x90
119#define MC_COR_ECC_CNT_5 0x94
120
121#define DIMM_TOP_COR_ERR(r) (((r) >> 16) & 0x7fff)
122#define DIMM_BOT_COR_ERR(r) ((r) & 0x7fff)
123
124
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300125 /* OFFSETS for Devices 4,5 and 6 Function 0 */
126
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300127#define MC_CHANNEL_DIMM_INIT_PARAMS 0x58
128 #define THREE_DIMMS_PRESENT (1 << 24)
129 #define SINGLE_QUAD_RANK_PRESENT (1 << 23)
130 #define QUAD_RANK_PRESENT (1 << 22)
131 #define REGISTERED_DIMM (1 << 15)
132
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300133#define MC_CHANNEL_MAPPER 0x60
134 #define RDLCH(r, ch) ((((r) >> (3 + (ch * 6))) & 0x07) - 1)
135 #define WRLCH(r, ch) ((((r) >> (ch * 6)) & 0x07) - 1)
136
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300137#define MC_CHANNEL_RANK_PRESENT 0x7c
138 #define RANK_PRESENT_MASK 0xffff
139
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300140#define MC_CHANNEL_ADDR_MATCH 0xf0
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300141#define MC_CHANNEL_ERROR_MASK 0xf8
142#define MC_CHANNEL_ERROR_INJECT 0xfc
143 #define INJECT_ADDR_PARITY 0x10
144 #define INJECT_ECC 0x08
145 #define MASK_CACHELINE 0x06
146 #define MASK_FULL_CACHELINE 0x06
147 #define MASK_MSB32_CACHELINE 0x04
148 #define MASK_LSB32_CACHELINE 0x02
149 #define NO_MASK_CACHELINE 0x00
150 #define REPEAT_EN 0x01
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300151
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300152 /* OFFSETS for Devices 4,5 and 6 Function 1 */
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300153
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300154#define MC_DOD_CH_DIMM0 0x48
155#define MC_DOD_CH_DIMM1 0x4c
156#define MC_DOD_CH_DIMM2 0x50
157 #define RANKOFFSET_MASK ((1 << 12) | (1 << 11) | (1 << 10))
158 #define RANKOFFSET(x) ((x & RANKOFFSET_MASK) >> 10)
159 #define DIMM_PRESENT_MASK (1 << 9)
160 #define DIMM_PRESENT(x) (((x) & DIMM_PRESENT_MASK) >> 9)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300161 #define MC_DOD_NUMBANK_MASK ((1 << 8) | (1 << 7))
162 #define MC_DOD_NUMBANK(x) (((x) & MC_DOD_NUMBANK_MASK) >> 7)
163 #define MC_DOD_NUMRANK_MASK ((1 << 6) | (1 << 5))
164 #define MC_DOD_NUMRANK(x) (((x) & MC_DOD_NUMRANK_MASK) >> 5)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300165 #define MC_DOD_NUMROW_MASK ((1 << 4) | (1 << 3) | (1 << 2))
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300166 #define MC_DOD_NUMROW(x) (((x) & MC_DOD_NUMROW_MASK) >> 2)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300167 #define MC_DOD_NUMCOL_MASK 3
168 #define MC_DOD_NUMCOL(x) ((x) & MC_DOD_NUMCOL_MASK)
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300169
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300170#define MC_RANK_PRESENT 0x7c
171
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300172#define MC_SAG_CH_0 0x80
173#define MC_SAG_CH_1 0x84
174#define MC_SAG_CH_2 0x88
175#define MC_SAG_CH_3 0x8c
176#define MC_SAG_CH_4 0x90
177#define MC_SAG_CH_5 0x94
178#define MC_SAG_CH_6 0x98
179#define MC_SAG_CH_7 0x9c
180
181#define MC_RIR_LIMIT_CH_0 0x40
182#define MC_RIR_LIMIT_CH_1 0x44
183#define MC_RIR_LIMIT_CH_2 0x48
184#define MC_RIR_LIMIT_CH_3 0x4C
185#define MC_RIR_LIMIT_CH_4 0x50
186#define MC_RIR_LIMIT_CH_5 0x54
187#define MC_RIR_LIMIT_CH_6 0x58
188#define MC_RIR_LIMIT_CH_7 0x5C
189#define MC_RIR_LIMIT_MASK ((1 << 10) - 1)
190
191#define MC_RIR_WAY_CH 0x80
192 #define MC_RIR_WAY_OFFSET_MASK (((1 << 14) - 1) & ~0x7)
193 #define MC_RIR_WAY_RANK_MASK 0x7
194
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300195/*
196 * i7core structs
197 */
198
199#define NUM_CHANS 3
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300200#define MAX_DIMMS 3 /* Max DIMMS per channel */
201#define MAX_MCR_FUNC 4
202#define MAX_CHAN_FUNC 3
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300203
204struct i7core_info {
205 u32 mc_control;
206 u32 mc_status;
207 u32 max_dod;
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300208 u32 ch_map;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300209};
210
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300211
212struct i7core_inject {
213 int enable;
214
215 u32 section;
216 u32 type;
217 u32 eccmask;
218
219 /* Error address mask */
220 int channel, dimm, rank, bank, page, col;
221};
222
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300223struct i7core_channel {
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300224 bool is_3dimms_present;
225 bool is_single_4rank;
226 bool has_4rank;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300227 u32 dimms;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300228};
229
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300230struct pci_id_descr {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300231 int dev;
232 int func;
233 int dev_id;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300234 int optional;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300235};
236
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300237struct pci_id_table {
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300238 const struct pci_id_descr *descr;
239 int n_devs;
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300240};
241
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300242struct i7core_dev {
243 struct list_head list;
244 u8 socket;
245 struct pci_dev **pdev;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300246 int n_devs;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300247 struct mem_ctl_info *mci;
248};
249
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300250struct i7core_pvt {
Mauro Carvalho 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 */
Jingoo Hanba935f42013-12-06 10:23:08 +0100397static const struct pci_device_id 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/****************************************************************************
David Mackey15ed1032012-04-17 11:30:52 -0700404 Ancillary status routines
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300405 ****************************************************************************/
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{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100423 static const int ranks[] = { 1, 2, 4, -EINVAL };
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300424
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{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100430 static const int banks[] = { 4, 8, 16, -EINVAL };
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300431
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{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100437 static const int rows[] = {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300438 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{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100447 static const int cols[] = {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300448 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 Chehab084a4fc2012-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 Chehab084a4fc2012-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
Joe Perches956b9ba2012-04-29 17:08:39 -0300519 edac_dbg(0, "QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
520 pvt->i7core_dev->socket, pvt->info.mc_control,
521 pvt->info.mc_status, 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)) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300524 edac_dbg(0, "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 {
Joe Perches956b9ba2012-04-29 17:08:39 -0300530 edac_dbg(0, "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 */
Joe Perches956b9ba2012-04-29 17:08:39 -0300535 edac_dbg(0, "DOD Max limits: DIMMS: %d, %d-ranked, %d-banked x%x x 0x%x\n",
536 numdimms(pvt->info.max_dod),
537 numrank(pvt->info.max_dod >> 2),
538 numbank(pvt->info.max_dod >> 4),
539 numrow(pvt->info.max_dod >> 6),
540 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300541
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300542 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300543 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300544
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300545 if (!pvt->pci_ch[i][0])
546 continue;
547
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300548 if (!CH_ACTIVE(pvt, i)) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300549 edac_dbg(0, "Channel %i is not active\n", i);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300550 continue;
551 }
552 if (CH_DISABLED(pvt, i)) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300553 edac_dbg(0, "Channel %i is disabled\n", i);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300554 continue;
555 }
556
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300557 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300558 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300559 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
560
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300561
562 if (data & THREE_DIMMS_PRESENT)
563 pvt->channel[i].is_3dimms_present = true;
564
565 if (data & SINGLE_QUAD_RANK_PRESENT)
566 pvt->channel[i].is_single_4rank = true;
567
568 if (data & QUAD_RANK_PRESENT)
569 pvt->channel[i].has_4rank = true;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300570
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300571 if (data & REGISTERED_DIMM)
572 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300573 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300574 mtype = MEM_DDR3;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300575
576 /* Devices 4-6 function 1 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300577 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300578 MC_DOD_CH_DIMM0, &dimm_dod[0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300579 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300580 MC_DOD_CH_DIMM1, &dimm_dod[1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300581 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300582 MC_DOD_CH_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300583
Joe Perches956b9ba2012-04-29 17:08:39 -0300584 edac_dbg(0, "Ch%d phy rd%d, wr%d (0x%08x): %s%s%s%cDIMMs\n",
585 i,
586 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
587 data,
588 pvt->channel[i].is_3dimms_present ? "3DIMMS " : "",
589 pvt->channel[i].is_3dimms_present ? "SINGLE_4R " : "",
590 pvt->channel[i].has_4rank ? "HAS_4R " : "",
591 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300592
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300593 for (j = 0; j < 3; j++) {
594 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300595 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300596
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300597 if (!DIMM_PRESENT(dimm_dod[j]))
598 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300599
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -0300600 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
601 i, j, 0);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300602 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
603 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
604 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
605 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300606
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300607 /* DDR3 has 8 I/O banks */
608 size = (rows * cols * banks * ranks) >> (20 - 3);
609
Joe Perches956b9ba2012-04-29 17:08:39 -0300610 edac_dbg(0, "\tdimm %d %d Mb offset: %x, bank: %d, rank: %d, row: %#x, col: %#x\n",
611 j, size,
612 RANKOFFSET(dimm_dod[j]),
613 banks, ranks, rows, cols);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300614
Mauro Carvalho Chehabe9144602010-08-10 20:26:35 -0300615 npages = MiB_TO_PAGES(size);
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300616
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300617 dimm->nr_pages = npages;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300618
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300619 switch (banks) {
620 case 4:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300621 dimm->dtype = DEV_X4;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300622 break;
623 case 8:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300624 dimm->dtype = DEV_X8;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300625 break;
626 case 16:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300627 dimm->dtype = DEV_X16;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300628 break;
629 default:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300630 dimm->dtype = DEV_UNKNOWN;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300631 }
632
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300633 snprintf(dimm->label, sizeof(dimm->label),
634 "CPU#%uChannel#%u_DIMM#%u",
635 pvt->i7core_dev->socket, i, j);
636 dimm->grain = 8;
637 dimm->edac_mode = mode;
638 dimm->mtype = mtype;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300639 }
640
641 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
642 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
643 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
644 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
645 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
646 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
647 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
648 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Joe Perches956b9ba2012-04-29 17:08:39 -0300649 edac_dbg(1, "\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300650 for (j = 0; j < 8; j++)
Joe Perches956b9ba2012-04-29 17:08:39 -0300651 edac_dbg(1, "\t\t%#x\t%#x\t%#x\n",
652 (value[j] >> 27) & 0x1,
653 (value[j] >> 24) & 0x7,
654 (value[j] & ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300655 }
656
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300657 return 0;
658}
659
660/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300661 Error insertion routines
662 ****************************************************************************/
663
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300664#define to_mci(k) container_of(k, struct mem_ctl_info, dev)
665
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300666/* The i7core has independent error injection features per channel.
667 However, to have a simpler code, we don't allow enabling error injection
668 on more than one channel.
669 Also, since a change at an inject parameter will be applied only at enable,
670 we're disabling error injection on all write calls to the sysfs nodes that
671 controls the error code injection.
672 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300673static int disable_inject(const struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300674{
675 struct i7core_pvt *pvt = mci->pvt_info;
676
677 pvt->inject.enable = 0;
678
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300679 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300680 return -ENODEV;
681
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300682 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300683 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300684
685 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300686}
687
688/*
689 * i7core inject inject.section
690 *
691 * accept and store error injection inject.section value
692 * bit 0 - refers to the lower 32-byte half cacheline
693 * bit 1 - refers to the upper 32-byte half cacheline
694 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300695static ssize_t i7core_inject_section_store(struct device *dev,
696 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300697 const char *data, size_t count)
698{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300699 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300700 struct i7core_pvt *pvt = mci->pvt_info;
701 unsigned long value;
702 int rc;
703
704 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300705 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300706
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900707 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300708 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300709 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300710
711 pvt->inject.section = (u32) value;
712 return count;
713}
714
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300715static ssize_t i7core_inject_section_show(struct device *dev,
716 struct device_attribute *mattr,
717 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300718{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300719 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300720 struct i7core_pvt *pvt = mci->pvt_info;
721 return sprintf(data, "0x%08x\n", pvt->inject.section);
722}
723
724/*
725 * i7core inject.type
726 *
727 * accept and store error injection inject.section value
728 * bit 0 - repeat enable - Enable error repetition
729 * bit 1 - inject ECC error
730 * bit 2 - inject parity error
731 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300732static ssize_t i7core_inject_type_store(struct device *dev,
733 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300734 const char *data, size_t count)
735{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300736 struct mem_ctl_info *mci = to_mci(dev);
737struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300738 unsigned long value;
739 int rc;
740
741 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300742 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300743
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900744 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300745 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300746 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300747
748 pvt->inject.type = (u32) value;
749 return count;
750}
751
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300752static ssize_t i7core_inject_type_show(struct device *dev,
753 struct device_attribute *mattr,
754 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300755{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300756 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300757 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300758
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300759 return sprintf(data, "0x%08x\n", pvt->inject.type);
760}
761
762/*
763 * i7core_inject_inject.eccmask_store
764 *
765 * The type of error (UE/CE) will depend on the inject.eccmask value:
766 * Any bits set to a 1 will flip the corresponding ECC bit
767 * Correctable errors can be injected by flipping 1 bit or the bits within
768 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
769 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
770 * uncorrectable error to be injected.
771 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300772static ssize_t i7core_inject_eccmask_store(struct device *dev,
773 struct device_attribute *mattr,
774 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300775{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300776 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300777 struct i7core_pvt *pvt = mci->pvt_info;
778 unsigned long value;
779 int rc;
780
781 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300782 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300783
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900784 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300785 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300786 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300787
788 pvt->inject.eccmask = (u32) value;
789 return count;
790}
791
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300792static ssize_t i7core_inject_eccmask_show(struct device *dev,
793 struct device_attribute *mattr,
794 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300795{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300796 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300797 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300798
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300799 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
800}
801
802/*
803 * i7core_addrmatch
804 *
805 * The type of error (UE/CE) will depend on the inject.eccmask value:
806 * Any bits set to a 1 will flip the corresponding ECC bit
807 * Correctable errors can be injected by flipping 1 bit or the bits within
808 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
809 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
810 * uncorrectable error to be injected.
811 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300812
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300813#define DECLARE_ADDR_MATCH(param, limit) \
814static ssize_t i7core_inject_store_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300815 struct device *dev, \
816 struct device_attribute *mattr, \
817 const char *data, size_t count) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300818{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -0400819 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300820 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300821 long value; \
822 int rc; \
823 \
Joe Perches956b9ba2012-04-29 17:08:39 -0300824 edac_dbg(1, "\n"); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300825 pvt = mci->pvt_info; \
826 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300827 if (pvt->inject.enable) \
828 disable_inject(mci); \
829 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300830 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300831 value = -1; \
832 else { \
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900833 rc = kstrtoul(data, 10, &value); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300834 if ((rc < 0) || (value >= limit)) \
835 return -EIO; \
836 } \
837 \
838 pvt->inject.param = value; \
839 \
840 return count; \
841} \
842 \
843static ssize_t i7core_inject_show_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300844 struct device *dev, \
845 struct device_attribute *mattr, \
846 char *data) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300847{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -0400848 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300849 struct i7core_pvt *pvt; \
850 \
851 pvt = mci->pvt_info; \
Joe Perches956b9ba2012-04-29 17:08:39 -0300852 edac_dbg(1, "pvt=%p\n", pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300853 if (pvt->inject.param < 0) \
854 return sprintf(data, "any\n"); \
855 else \
856 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300857}
858
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300859#define ATTR_ADDR_MATCH(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300860 static DEVICE_ATTR(param, S_IRUGO | S_IWUSR, \
861 i7core_inject_show_##param, \
862 i7core_inject_store_##param)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300863
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300864DECLARE_ADDR_MATCH(channel, 3);
865DECLARE_ADDR_MATCH(dimm, 3);
866DECLARE_ADDR_MATCH(rank, 4);
867DECLARE_ADDR_MATCH(bank, 32);
868DECLARE_ADDR_MATCH(page, 0x10000);
869DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300870
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300871ATTR_ADDR_MATCH(channel);
872ATTR_ADDR_MATCH(dimm);
873ATTR_ADDR_MATCH(rank);
874ATTR_ADDR_MATCH(bank);
875ATTR_ADDR_MATCH(page);
876ATTR_ADDR_MATCH(col);
877
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300878static int write_and_test(struct pci_dev *dev, const int where, const u32 val)
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300879{
880 u32 read;
881 int count;
882
Joe Perches956b9ba2012-04-29 17:08:39 -0300883 edac_dbg(0, "setting pci %02x:%02x.%x reg=%02x value=%08x\n",
884 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
885 where, val);
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300886
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300887 for (count = 0; count < 10; count++) {
888 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300889 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300890 pci_write_config_dword(dev, where, val);
891 pci_read_config_dword(dev, where, &read);
892
893 if (read == val)
894 return 0;
895 }
896
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300897 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
898 "write=%08x. Read=%08x\n",
899 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
900 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300901
902 return -EINVAL;
903}
904
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300905/*
906 * This routine prepares the Memory Controller for error injection.
907 * The error will be injected when some process tries to write to the
908 * memory that matches the given criteria.
909 * The criteria can be set in terms of a mask where dimm, rank, bank, page
910 * and col can be specified.
911 * A -1 value for any of the mask items will make the MCU to ignore
912 * that matching criteria for error injection.
913 *
914 * It should be noticed that the error will only happen after a write operation
915 * on a memory that matches the condition. if REPEAT_EN is not enabled at
916 * inject mask, then it will produce just one error. Otherwise, it will repeat
917 * until the injectmask would be cleaned.
918 *
919 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
920 * is reliable enough to check if the MC is using the
921 * three channels. However, this is not clear at the datasheet.
922 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300923static ssize_t i7core_inject_enable_store(struct device *dev,
924 struct device_attribute *mattr,
925 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300926{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300927 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300928 struct i7core_pvt *pvt = mci->pvt_info;
929 u32 injectmask;
930 u64 mask = 0;
931 int rc;
932 long enable;
933
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300934 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300935 return 0;
936
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900937 rc = kstrtoul(data, 10, &enable);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300938 if ((rc < 0))
939 return 0;
940
941 if (enable) {
942 pvt->inject.enable = 1;
943 } else {
944 disable_inject(mci);
945 return count;
946 }
947
948 /* Sets pvt->inject.dimm mask */
949 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200950 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300951 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300952 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200953 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300954 else
Alan Cox486dd092009-11-08 01:34:27 -0200955 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300956 }
957
958 /* Sets pvt->inject.rank mask */
959 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200960 mask |= 1LL << 40;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300961 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300962 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200963 mask |= (pvt->inject.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300964 else
Alan Cox486dd092009-11-08 01:34:27 -0200965 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300966 }
967
968 /* Sets pvt->inject.bank mask */
969 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200970 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300971 else
Alan Cox486dd092009-11-08 01:34:27 -0200972 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300973
974 /* Sets pvt->inject.page mask */
975 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200976 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300977 else
Alan Cox486dd092009-11-08 01:34:27 -0200978 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300979
980 /* Sets pvt->inject.column mask */
981 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200982 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300983 else
Alan Cox486dd092009-11-08 01:34:27 -0200984 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300985
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300986 /*
987 * bit 0: REPEAT_EN
988 * bits 1-2: MASK_HALF_CACHELINE
989 * bit 3: INJECT_ECC
990 * bit 4: INJECT_ADDR_PARITY
991 */
992
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -0300993 injectmask = (pvt->inject.type & 1) |
994 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300995 (pvt->inject.type & 0x6) << (3 - 1);
996
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300997 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300998 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300999 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001000
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001001 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001002 MC_CHANNEL_ADDR_MATCH, mask);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001003 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001004 MC_CHANNEL_ADDR_MATCH + 4, mask >> 32L);
1005
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_ERROR_MASK, pvt->inject.eccmask);
1008
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001009 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001010 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001011
1012 /*
1013 * This is something undocumented, based on my tests
1014 * Without writing 8 to this register, errors aren't injected. Not sure
1015 * why.
1016 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001017 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001018 MC_CFG_CONTROL, 8);
1019
Joe Perches956b9ba2012-04-29 17:08:39 -03001020 edac_dbg(0, "Error inject addr match 0x%016llx, ecc 0x%08x, inject 0x%08x\n",
1021 mask, pvt->inject.eccmask, injectmask);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001022
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001023
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001024 return count;
1025}
1026
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001027static ssize_t i7core_inject_enable_show(struct device *dev,
1028 struct device_attribute *mattr,
1029 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001030{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001031 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001032 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001033 u32 injectmask;
1034
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001035 if (!pvt->pci_ch[pvt->inject.channel][0])
1036 return 0;
1037
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001038 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001039 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001040
Joe Perches956b9ba2012-04-29 17:08:39 -03001041 edac_dbg(0, "Inject error read: 0x%018x\n", injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001042
1043 if (injectmask & 0x0c)
1044 pvt->inject.enable = 1;
1045
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001046 return sprintf(data, "%d\n", pvt->inject.enable);
1047}
1048
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001049#define DECLARE_COUNTER(param) \
1050static ssize_t i7core_show_counter_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001051 struct device *dev, \
1052 struct device_attribute *mattr, \
1053 char *data) \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001054{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -04001055 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001056 struct i7core_pvt *pvt = mci->pvt_info; \
1057 \
Joe Perches956b9ba2012-04-29 17:08:39 -03001058 edac_dbg(1, "\n"); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001059 if (!pvt->ce_count_available || (pvt->is_registered)) \
1060 return sprintf(data, "data unavailable\n"); \
1061 return sprintf(data, "%lu\n", \
1062 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001063}
1064
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001065#define ATTR_COUNTER(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001066 static DEVICE_ATTR(udimm##param, S_IRUGO | S_IWUSR, \
1067 i7core_show_counter_##param, \
1068 NULL)
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001069
1070DECLARE_COUNTER(0);
1071DECLARE_COUNTER(1);
1072DECLARE_COUNTER(2);
1073
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001074ATTR_COUNTER(0);
1075ATTR_COUNTER(1);
1076ATTR_COUNTER(2);
1077
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001078/*
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001079 * inject_addrmatch device sysfs struct
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001080 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001081
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001082static struct attribute *i7core_addrmatch_attrs[] = {
1083 &dev_attr_channel.attr,
1084 &dev_attr_dimm.attr,
1085 &dev_attr_rank.attr,
1086 &dev_attr_bank.attr,
1087 &dev_attr_page.attr,
1088 &dev_attr_col.attr,
1089 NULL
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001090};
1091
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001092static struct attribute_group addrmatch_grp = {
1093 .attrs = i7core_addrmatch_attrs,
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001094};
1095
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001096static const struct attribute_group *addrmatch_groups[] = {
1097 &addrmatch_grp,
1098 NULL
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001099};
1100
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001101static void addrmatch_release(struct device *device)
1102{
Joe Perches956b9ba2012-04-29 17:08:39 -03001103 edac_dbg(1, "Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001104 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001105}
1106
1107static struct device_type addrmatch_type = {
1108 .groups = addrmatch_groups,
1109 .release = addrmatch_release,
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001110};
1111
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001112/*
1113 * all_channel_counts sysfs struct
1114 */
1115
1116static struct attribute *i7core_udimm_counters_attrs[] = {
1117 &dev_attr_udimm0.attr,
1118 &dev_attr_udimm1.attr,
1119 &dev_attr_udimm2.attr,
1120 NULL
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001121};
1122
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001123static struct attribute_group all_channel_counts_grp = {
1124 .attrs = i7core_udimm_counters_attrs,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001125};
1126
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001127static const struct attribute_group *all_channel_counts_groups[] = {
1128 &all_channel_counts_grp,
1129 NULL
1130};
1131
1132static void all_channel_counts_release(struct device *device)
1133{
Joe Perches956b9ba2012-04-29 17:08:39 -03001134 edac_dbg(1, "Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001135 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001136}
1137
1138static struct device_type all_channel_counts_type = {
1139 .groups = all_channel_counts_groups,
1140 .release = all_channel_counts_release,
1141};
1142
1143/*
1144 * inject sysfs attributes
1145 */
1146
1147static DEVICE_ATTR(inject_section, S_IRUGO | S_IWUSR,
1148 i7core_inject_section_show, i7core_inject_section_store);
1149
1150static DEVICE_ATTR(inject_type, S_IRUGO | S_IWUSR,
1151 i7core_inject_type_show, i7core_inject_type_store);
1152
1153
1154static DEVICE_ATTR(inject_eccmask, S_IRUGO | S_IWUSR,
1155 i7core_inject_eccmask_show, i7core_inject_eccmask_store);
1156
1157static DEVICE_ATTR(inject_enable, S_IRUGO | S_IWUSR,
1158 i7core_inject_enable_show, i7core_inject_enable_store);
1159
1160static int i7core_create_sysfs_devices(struct mem_ctl_info *mci)
1161{
1162 struct i7core_pvt *pvt = mci->pvt_info;
1163 int rc;
1164
1165 rc = device_create_file(&mci->dev, &dev_attr_inject_section);
1166 if (rc < 0)
1167 return rc;
1168 rc = device_create_file(&mci->dev, &dev_attr_inject_type);
1169 if (rc < 0)
1170 return rc;
1171 rc = device_create_file(&mci->dev, &dev_attr_inject_eccmask);
1172 if (rc < 0)
1173 return rc;
1174 rc = device_create_file(&mci->dev, &dev_attr_inject_enable);
1175 if (rc < 0)
1176 return rc;
1177
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001178 pvt->addrmatch_dev = kzalloc(sizeof(*pvt->addrmatch_dev), GFP_KERNEL);
1179 if (!pvt->addrmatch_dev)
1180 return rc;
1181
1182 pvt->addrmatch_dev->type = &addrmatch_type;
1183 pvt->addrmatch_dev->bus = mci->dev.bus;
1184 device_initialize(pvt->addrmatch_dev);
1185 pvt->addrmatch_dev->parent = &mci->dev;
1186 dev_set_name(pvt->addrmatch_dev, "inject_addrmatch");
1187 dev_set_drvdata(pvt->addrmatch_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001188
Joe Perches956b9ba2012-04-29 17:08:39 -03001189 edac_dbg(1, "creating %s\n", dev_name(pvt->addrmatch_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001190
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001191 rc = device_add(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001192 if (rc < 0)
1193 return rc;
1194
1195 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001196 pvt->chancounts_dev = kzalloc(sizeof(*pvt->chancounts_dev),
1197 GFP_KERNEL);
1198 if (!pvt->chancounts_dev) {
1199 put_device(pvt->addrmatch_dev);
1200 device_del(pvt->addrmatch_dev);
1201 return rc;
1202 }
1203
1204 pvt->chancounts_dev->type = &all_channel_counts_type;
1205 pvt->chancounts_dev->bus = mci->dev.bus;
1206 device_initialize(pvt->chancounts_dev);
1207 pvt->chancounts_dev->parent = &mci->dev;
1208 dev_set_name(pvt->chancounts_dev, "all_channel_counts");
1209 dev_set_drvdata(pvt->chancounts_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001210
Joe Perches956b9ba2012-04-29 17:08:39 -03001211 edac_dbg(1, "creating %s\n", dev_name(pvt->chancounts_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001212
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001213 rc = device_add(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001214 if (rc < 0)
1215 return rc;
1216 }
1217 return 0;
1218}
1219
1220static void i7core_delete_sysfs_devices(struct mem_ctl_info *mci)
1221{
1222 struct i7core_pvt *pvt = mci->pvt_info;
1223
Joe Perches956b9ba2012-04-29 17:08:39 -03001224 edac_dbg(1, "\n");
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001225
1226 device_remove_file(&mci->dev, &dev_attr_inject_section);
1227 device_remove_file(&mci->dev, &dev_attr_inject_type);
1228 device_remove_file(&mci->dev, &dev_attr_inject_eccmask);
1229 device_remove_file(&mci->dev, &dev_attr_inject_enable);
1230
1231 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001232 put_device(pvt->chancounts_dev);
1233 device_del(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001234 }
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001235 put_device(pvt->addrmatch_dev);
1236 device_del(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001237}
1238
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001239/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001240 Device initialization routines: put/get, init/exit
1241 ****************************************************************************/
1242
1243/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001244 * i7core_put_all_devices 'put' all the devices that we have
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001245 * reserved via 'get'
1246 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001247static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001248{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001249 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001250
Joe Perches956b9ba2012-04-29 17:08:39 -03001251 edac_dbg(0, "\n");
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001252 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001253 struct pci_dev *pdev = i7core_dev->pdev[i];
1254 if (!pdev)
1255 continue;
Joe Perches956b9ba2012-04-29 17:08:39 -03001256 edac_dbg(0, "Removing dev %02x:%02x.%d\n",
1257 pdev->bus->number,
1258 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001259 pci_dev_put(pdev);
1260 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001261}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001262
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001263static void i7core_put_all_devices(void)
1264{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001265 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001266
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001267 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001268 i7core_put_devices(i7core_dev);
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -03001269 free_i7core_dev(i7core_dev);
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001270 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001271}
1272
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001273static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001274{
1275 struct pci_dev *pdev = NULL;
1276 int i;
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03001277
Keith Manntheybc2d7242009-09-03 00:05:05 -03001278 /*
David Sterbae7bf0682010-12-27 16:51:15 +01001279 * On Xeon 55xx, the Intel Quick Path Arch Generic Non-core pci buses
Keith Manntheybc2d7242009-09-03 00:05:05 -03001280 * aren't announced by acpi. So, we need to use a legacy scan probing
1281 * to detect them
1282 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001283 while (table && table->descr) {
1284 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1285 if (unlikely(!pdev)) {
1286 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1287 pcibios_scan_specific_bus(255-i);
1288 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001289 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001290 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001291 }
1292}
1293
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001294static unsigned i7core_pci_lastbus(void)
1295{
1296 int last_bus = 0, bus;
1297 struct pci_bus *b = NULL;
1298
1299 while ((b = pci_find_next_bus(b)) != NULL) {
1300 bus = b->number;
Joe Perches956b9ba2012-04-29 17:08:39 -03001301 edac_dbg(0, "Found bus %d\n", bus);
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001302 if (bus > last_bus)
1303 last_bus = bus;
1304 }
1305
Joe Perches956b9ba2012-04-29 17:08:39 -03001306 edac_dbg(0, "Last bus %d\n", last_bus);
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001307
1308 return last_bus;
1309}
1310
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001311/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001312 * i7core_get_all_devices Find and perform 'get' operation on the MCH's
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001313 * device/functions we want to reference for this driver
1314 *
1315 * Need to 'get' device 16 func 1 and func 2
1316 */
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001317static int i7core_get_onedevice(struct pci_dev **prev,
1318 const struct pci_id_table *table,
1319 const unsigned devno,
1320 const unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001321{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001322 struct i7core_dev *i7core_dev;
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001323 const struct pci_id_descr *dev_descr = &table->descr[devno];
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001324
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001325 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001326 u8 bus = 0;
1327 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001328
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001329 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001330 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001331
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001332 /*
David Mackey15ed1032012-04-17 11:30:52 -07001333 * On Xeon 55xx, the Intel QuickPath Arch Generic Non-core regs
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001334 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1335 * to probe for the alternate address in case of failure
1336 */
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001337 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev) {
1338 pci_dev_get(*prev); /* pci_get_device will put it */
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001339 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1340 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001341 }
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001342
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001343 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE &&
1344 !pdev) {
1345 pci_dev_get(*prev); /* pci_get_device will put it */
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001346 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1347 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1348 *prev);
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001349 }
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001350
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001351 if (!pdev) {
1352 if (*prev) {
1353 *prev = pdev;
1354 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001355 }
1356
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001357 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001358 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001359
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001360 if (devno == 0)
1361 return -ENODEV;
1362
Daniel J Bluemanab089372010-07-23 23:16:52 +01001363 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001364 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001365 dev_descr->dev, dev_descr->func,
1366 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001367
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001368 /* End of list, leave */
1369 return -ENODEV;
1370 }
1371 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001372
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001373 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001374
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001375 i7core_dev = get_i7core_dev(socket);
1376 if (!i7core_dev) {
Hidetoshi Seto848b2f72010-08-20 04:24:44 -03001377 i7core_dev = alloc_i7core_dev(socket, table);
Hidetoshi Seto28966372010-08-20 04:28:51 -03001378 if (!i7core_dev) {
1379 pci_dev_put(pdev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001380 return -ENOMEM;
Hidetoshi Seto28966372010-08-20 04:28:51 -03001381 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001382 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001383
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001384 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001385 i7core_printk(KERN_ERR,
1386 "Duplicated device for "
1387 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001388 bus, dev_descr->dev, dev_descr->func,
1389 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001390 pci_dev_put(pdev);
1391 return -ENODEV;
1392 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001393
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001394 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001395
1396 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001397 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1398 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001399 i7core_printk(KERN_ERR,
1400 "Device PCI ID %04x:%04x "
1401 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001402 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001403 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001404 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001405 return -ENODEV;
1406 }
1407
1408 /* Be sure that the device is enabled */
1409 if (unlikely(pci_enable_device(pdev) < 0)) {
1410 i7core_printk(KERN_ERR,
1411 "Couldn't enable "
1412 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001413 bus, dev_descr->dev, dev_descr->func,
1414 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001415 return -ENODEV;
1416 }
1417
Joe Perches956b9ba2012-04-29 17:08:39 -03001418 edac_dbg(0, "Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
1419 socket, bus, dev_descr->dev,
1420 dev_descr->func,
1421 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001422
Mauro Carvalho Chehaba3e15412010-08-21 08:52:41 -03001423 /*
1424 * As stated on drivers/pci/search.c, the reference count for
1425 * @from is always decremented if it is not %NULL. So, as we need
1426 * to get all devices up to null, we need to do a get for the device
1427 */
1428 pci_dev_get(pdev);
1429
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001430 *prev = pdev;
1431
1432 return 0;
1433}
1434
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001435static int i7core_get_all_devices(void)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001436{
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001437 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001438 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001439 const struct pci_id_table *table = pci_dev_table;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001440
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001441 last_bus = i7core_pci_lastbus();
1442
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001443 while (table && table->descr) {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001444 for (i = 0; i < table->n_devs; i++) {
1445 pdev = NULL;
1446 do {
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001447 rc = i7core_get_onedevice(&pdev, table, i,
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001448 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001449 if (rc < 0) {
1450 if (i == 0) {
1451 i = table->n_devs;
1452 break;
1453 }
1454 i7core_put_all_devices();
1455 return -ENODEV;
1456 }
1457 } while (pdev);
1458 }
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001459 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001460 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001461
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001462 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001463}
1464
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001465static int mci_bind_devs(struct mem_ctl_info *mci,
1466 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001467{
1468 struct i7core_pvt *pvt = mci->pvt_info;
1469 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001470 int i, func, slot;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001471 char *family;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001472
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001473 pvt->is_registered = false;
1474 pvt->enable_scrub = false;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001475 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001476 pdev = i7core_dev->pdev[i];
1477 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001478 continue;
1479
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001480 func = PCI_FUNC(pdev->devfn);
1481 slot = PCI_SLOT(pdev->devfn);
1482 if (slot == 3) {
1483 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001484 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001485 pvt->pci_mcr[func] = pdev;
1486 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1487 if (unlikely(func > MAX_CHAN_FUNC))
1488 goto error;
1489 pvt->pci_ch[slot - 4][func] = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001490 } else if (!slot && !func) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001491 pvt->pci_noncore = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001492
1493 /* Detect the processor family */
1494 switch (pdev->device) {
1495 case PCI_DEVICE_ID_INTEL_I7_NONCORE:
1496 family = "Xeon 35xx/ i7core";
1497 pvt->enable_scrub = false;
1498 break;
1499 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT:
1500 family = "i7-800/i5-700";
1501 pvt->enable_scrub = false;
1502 break;
1503 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE:
1504 family = "Xeon 34xx";
1505 pvt->enable_scrub = false;
1506 break;
1507 case PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT:
1508 family = "Xeon 55xx";
1509 pvt->enable_scrub = true;
1510 break;
1511 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2:
1512 family = "Xeon 56xx / i7-900";
1513 pvt->enable_scrub = true;
1514 break;
1515 default:
1516 family = "unknown";
1517 pvt->enable_scrub = false;
1518 }
Joe Perches956b9ba2012-04-29 17:08:39 -03001519 edac_dbg(0, "Detected a processor type %s\n", family);
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001520 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001521 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001522
Joe Perches956b9ba2012-04-29 17:08:39 -03001523 edac_dbg(0, "Associated fn %d.%d, dev = %p, socket %d\n",
1524 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1525 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001526
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001527 if (PCI_SLOT(pdev->devfn) == 3 &&
1528 PCI_FUNC(pdev->devfn) == 2)
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001529 pvt->is_registered = true;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001530 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001531
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001532 return 0;
1533
1534error:
1535 i7core_printk(KERN_ERR, "Device %d, function %d "
1536 "is out of the expected range\n",
1537 slot, func);
1538 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001539}
1540
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001541/****************************************************************************
1542 Error check routines
1543 ****************************************************************************/
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001544
1545static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001546 const int chan,
1547 const int new0,
1548 const int new1,
1549 const int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001550{
1551 struct i7core_pvt *pvt = mci->pvt_info;
1552 int add0 = 0, add1 = 0, add2 = 0;
1553 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001554 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001555 /* Updates CE counters */
1556
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001557 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1558 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1559 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001560
1561 if (add2 < 0)
1562 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001563 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001564
1565 if (add1 < 0)
1566 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001567 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001568
1569 if (add0 < 0)
1570 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001571 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001572 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001573 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001574
1575 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001576 pvt->rdimm_last_ce_count[chan][2] = new2;
1577 pvt->rdimm_last_ce_count[chan][1] = new1;
1578 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001579
1580 /*updated the edac core */
1581 if (add0 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001582 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add0,
1583 0, 0, 0,
1584 chan, 0, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001585 if (add1 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001586 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add1,
1587 0, 0, 0,
1588 chan, 1, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001589 if (add2 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001590 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add2,
1591 0, 0, 0,
1592 chan, 2, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001593}
1594
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001595static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001596{
1597 struct i7core_pvt *pvt = mci->pvt_info;
1598 u32 rcv[3][2];
1599 int i, new0, new1, new2;
1600
1601 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001602 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001603 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001604 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001605 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001606 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001607 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001608 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001609 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001610 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001611 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001612 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001613 &rcv[2][1]);
1614 for (i = 0 ; i < 3; i++) {
Joe Perches956b9ba2012-04-29 17:08:39 -03001615 edac_dbg(3, "MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1616 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001617 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001618 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001619 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1620 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1621 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1622 } else {
1623 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1624 DIMM_BOT_COR_ERR(rcv[i][0]);
1625 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1626 DIMM_BOT_COR_ERR(rcv[i][1]);
1627 new2 = 0;
1628 }
1629
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001630 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001631 }
1632}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001633
1634/* This function is based on the device 3 function 4 registers as described on:
1635 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1636 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1637 * also available at:
1638 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1639 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001640static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001641{
1642 struct i7core_pvt *pvt = mci->pvt_info;
1643 u32 rcv1, rcv0;
1644 int new0, new1, new2;
1645
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001646 if (!pvt->pci_mcr[4]) {
Joe Perches956b9ba2012-04-29 17:08:39 -03001647 edac_dbg(0, "MCR registers not found\n");
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001648 return;
1649 }
1650
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001651 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001652 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1653 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001654
1655 /* Store the new values */
1656 new2 = DIMM2_COR_ERR(rcv1);
1657 new1 = DIMM1_COR_ERR(rcv0);
1658 new0 = DIMM0_COR_ERR(rcv0);
1659
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001660 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001661 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001662 /* Updates CE counters */
1663 int add0, add1, add2;
1664
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001665 add2 = new2 - pvt->udimm_last_ce_count[2];
1666 add1 = new1 - pvt->udimm_last_ce_count[1];
1667 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001668
1669 if (add2 < 0)
1670 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001671 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001672
1673 if (add1 < 0)
1674 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001675 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001676
1677 if (add0 < 0)
1678 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001679 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001680
1681 if (add0 | add1 | add2)
1682 i7core_printk(KERN_ERR, "New Corrected error(s): "
1683 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1684 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001685 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001686 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001687
1688 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001689 pvt->udimm_last_ce_count[2] = new2;
1690 pvt->udimm_last_ce_count[1] = new1;
1691 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001692}
1693
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001694/*
1695 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1696 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001697 * Nehalem are defined as family 0x06, model 0x1a
1698 *
1699 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001700 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001701 * m->status MSR_IA32_MC8_STATUS
1702 * m->addr MSR_IA32_MC8_ADDR
1703 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001704 * In the case of Nehalem, the error information is masked at .status and .misc
1705 * fields
1706 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001707static void i7core_mce_output_error(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001708 const struct mce *m)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001709{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001710 struct i7core_pvt *pvt = mci->pvt_info;
Jean Delvaref1189202014-02-24 17:13:58 +01001711 char *optype, *err;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001712 enum hw_event_mc_err_type tp_event;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001713 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001714 bool uncorrected_error = m->mcgstatus & 1ll << 61;
1715 bool ripv = m->mcgstatus & 1;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001716 u32 optypenum = (m->status >> 4) & 0x07;
Mathias Krause8cf2d232011-08-18 09:17:00 +02001717 u32 core_err_cnt = (m->status >> 38) & 0x7fff;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001718 u32 dimm = (m->misc >> 16) & 0x3;
1719 u32 channel = (m->misc >> 18) & 0x3;
1720 u32 syndrome = m->misc >> 32;
1721 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001722
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001723 if (uncorrected_error) {
Jean Delvaref1189202014-02-24 17:13:58 +01001724 if (ripv)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001725 tp_event = HW_EVENT_ERR_FATAL;
Jean Delvaref1189202014-02-24 17:13:58 +01001726 else
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001727 tp_event = HW_EVENT_ERR_UNCORRECTED;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001728 } else {
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001729 tp_event = HW_EVENT_ERR_CORRECTED;
1730 }
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001731
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001732 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001733 case 0:
1734 optype = "generic undef request";
1735 break;
1736 case 1:
1737 optype = "read error";
1738 break;
1739 case 2:
1740 optype = "write error";
1741 break;
1742 case 3:
1743 optype = "addr/cmd error";
1744 break;
1745 case 4:
1746 optype = "scrubbing error";
1747 break;
1748 default:
1749 optype = "reserved";
1750 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001751 }
1752
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001753 switch (errnum) {
1754 case 16:
1755 err = "read ECC error";
1756 break;
1757 case 17:
1758 err = "RAS ECC error";
1759 break;
1760 case 18:
1761 err = "write parity error";
1762 break;
1763 case 19:
1764 err = "redundacy loss";
1765 break;
1766 case 20:
1767 err = "reserved";
1768 break;
1769 case 21:
1770 err = "memory range error";
1771 break;
1772 case 22:
1773 err = "RTID out of range";
1774 break;
1775 case 23:
1776 err = "address parity error";
1777 break;
1778 case 24:
1779 err = "byte enable parity error";
1780 break;
1781 default:
1782 err = "unknown";
1783 }
1784
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001785 /*
1786 * Call the helper to output message
1787 * FIXME: what to do if core_err_cnt > 1? Currently, it generates
1788 * only one event
1789 */
1790 if (uncorrected_error || !pvt->is_registered)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001791 edac_mc_handle_error(tp_event, mci, core_err_cnt,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001792 m->addr >> PAGE_SHIFT,
1793 m->addr & ~PAGE_MASK,
1794 syndrome,
1795 channel, dimm, -1,
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001796 err, optype);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001797}
1798
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001799/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001800 * i7core_check_error Retrieve and process errors reported by the
1801 * hardware. Called by the Core module.
1802 */
1803static void i7core_check_error(struct mem_ctl_info *mci)
1804{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001805 struct i7core_pvt *pvt = mci->pvt_info;
1806 int i;
1807 unsigned count = 0;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001808 struct mce *m;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001809
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001810 /*
1811 * MCE first step: Copy all mce errors into a temporary buffer
1812 * We use a double buffering here, to reduce the risk of
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001813 * losing an error.
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001814 */
1815 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001816 count = (pvt->mce_out + MCE_LOG_LEN - pvt->mce_in)
1817 % MCE_LOG_LEN;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001818 if (!count)
Vernon Mauery8a311e12010-04-16 19:40:19 -03001819 goto check_ce_error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001820
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001821 m = pvt->mce_outentry;
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001822 if (pvt->mce_in + count > MCE_LOG_LEN) {
1823 unsigned l = MCE_LOG_LEN - pvt->mce_in;
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001824
1825 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * l);
1826 smp_wmb();
1827 pvt->mce_in = 0;
1828 count -= l;
1829 m += l;
1830 }
1831 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * count);
1832 smp_wmb();
1833 pvt->mce_in += count;
1834
1835 smp_rmb();
1836 if (pvt->mce_overrun) {
1837 i7core_printk(KERN_ERR, "Lost %d memory errors\n",
1838 pvt->mce_overrun);
1839 smp_wmb();
1840 pvt->mce_overrun = 0;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001841 }
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001842
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001843 /*
1844 * MCE second step: parse errors and display
1845 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001846 for (i = 0; i < count; i++)
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001847 i7core_mce_output_error(mci, &pvt->mce_outentry[i]);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001848
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001849 /*
1850 * Now, let's increment CE error counts
1851 */
Vernon Mauery8a311e12010-04-16 19:40:19 -03001852check_ce_error:
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001853 if (!pvt->is_registered)
1854 i7core_udimm_check_mc_ecc_err(mci);
1855 else
1856 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001857}
1858
1859/*
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001860 * i7core_mce_check_error Replicates mcelog routine to get errors
1861 * This routine simply queues mcelog errors, and
1862 * return. The error itself should be handled later
1863 * by i7core_check_error.
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001864 * WARNING: As this routine should be called at NMI time, extra care should
1865 * be taken to avoid deadlocks, and to be as fast as possible.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001866 */
Borislav Petkov4140c542011-07-18 11:24:46 -03001867static int i7core_mce_check_error(struct notifier_block *nb, unsigned long val,
1868 void *data)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001869{
Borislav Petkov4140c542011-07-18 11:24:46 -03001870 struct mce *mce = (struct mce *)data;
1871 struct i7core_dev *i7_dev;
1872 struct mem_ctl_info *mci;
1873 struct i7core_pvt *pvt;
1874
1875 i7_dev = get_i7core_dev(mce->socketid);
1876 if (!i7_dev)
1877 return NOTIFY_BAD;
1878
1879 mci = i7_dev->mci;
1880 pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001881
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001882 /*
1883 * Just let mcelog handle it if the error is
1884 * outside the memory controller
1885 */
1886 if (((mce->status & 0xffff) >> 7) != 1)
Borislav Petkov4140c542011-07-18 11:24:46 -03001887 return NOTIFY_DONE;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001888
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001889 /* Bank 8 registers are the only ones that we know how to handle */
1890 if (mce->bank != 8)
Borislav Petkov4140c542011-07-18 11:24:46 -03001891 return NOTIFY_DONE;
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001892
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001893 smp_rmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001894 if ((pvt->mce_out + 1) % MCE_LOG_LEN == pvt->mce_in) {
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001895 smp_wmb();
1896 pvt->mce_overrun++;
Borislav Petkov4140c542011-07-18 11:24:46 -03001897 return NOTIFY_DONE;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001898 }
Mauro Carvalho Chehab6e103be2009-10-05 09:40:09 -03001899
1900 /* Copy memory error at the ringbuffer */
1901 memcpy(&pvt->mce_entry[pvt->mce_out], mce, sizeof(*mce));
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001902 smp_wmb();
Mauro Carvalho Chehab321ece42009-10-08 13:11:08 -03001903 pvt->mce_out = (pvt->mce_out + 1) % MCE_LOG_LEN;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001904
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001905 /* Handle fatal errors immediately */
1906 if (mce->mcgstatus & 1)
1907 i7core_check_error(mci);
1908
David Sterbae7bf0682010-12-27 16:51:15 +01001909 /* Advise mcelog that the errors were handled */
Borislav Petkov4140c542011-07-18 11:24:46 -03001910 return NOTIFY_STOP;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001911}
1912
Borislav Petkov4140c542011-07-18 11:24:46 -03001913static struct notifier_block i7_mce_dec = {
1914 .notifier_call = i7core_mce_check_error,
1915};
1916
Nils Carlson535e9c72011-08-08 06:21:26 -03001917struct memdev_dmi_entry {
1918 u8 type;
1919 u8 length;
1920 u16 handle;
1921 u16 phys_mem_array_handle;
1922 u16 mem_err_info_handle;
1923 u16 total_width;
1924 u16 data_width;
1925 u16 size;
1926 u8 form;
1927 u8 device_set;
1928 u8 device_locator;
1929 u8 bank_locator;
1930 u8 memory_type;
1931 u16 type_detail;
1932 u16 speed;
1933 u8 manufacturer;
1934 u8 serial_number;
1935 u8 asset_tag;
1936 u8 part_number;
1937 u8 attributes;
1938 u32 extended_size;
1939 u16 conf_mem_clk_speed;
1940} __attribute__((__packed__));
1941
1942
1943/*
1944 * Decode the DRAM Clock Frequency, be paranoid, make sure that all
1945 * memory devices show the same speed, and if they don't then consider
1946 * all speeds to be invalid.
1947 */
1948static void decode_dclk(const struct dmi_header *dh, void *_dclk_freq)
1949{
1950 int *dclk_freq = _dclk_freq;
1951 u16 dmi_mem_clk_speed;
1952
1953 if (*dclk_freq == -1)
1954 return;
1955
1956 if (dh->type == DMI_ENTRY_MEM_DEVICE) {
1957 struct memdev_dmi_entry *memdev_dmi_entry =
1958 (struct memdev_dmi_entry *)dh;
1959 unsigned long conf_mem_clk_speed_offset =
1960 (unsigned long)&memdev_dmi_entry->conf_mem_clk_speed -
1961 (unsigned long)&memdev_dmi_entry->type;
1962 unsigned long speed_offset =
1963 (unsigned long)&memdev_dmi_entry->speed -
1964 (unsigned long)&memdev_dmi_entry->type;
1965
1966 /* Check that a DIMM is present */
1967 if (memdev_dmi_entry->size == 0)
1968 return;
1969
1970 /*
1971 * Pick the configured speed if it's available, otherwise
1972 * pick the DIMM speed, or we don't have a speed.
1973 */
1974 if (memdev_dmi_entry->length > conf_mem_clk_speed_offset) {
1975 dmi_mem_clk_speed =
1976 memdev_dmi_entry->conf_mem_clk_speed;
1977 } else if (memdev_dmi_entry->length > speed_offset) {
1978 dmi_mem_clk_speed = memdev_dmi_entry->speed;
1979 } else {
1980 *dclk_freq = -1;
1981 return;
1982 }
1983
1984 if (*dclk_freq == 0) {
1985 /* First pass, speed was 0 */
1986 if (dmi_mem_clk_speed > 0) {
1987 /* Set speed if a valid speed is read */
1988 *dclk_freq = dmi_mem_clk_speed;
1989 } else {
1990 /* Otherwise we don't have a valid speed */
1991 *dclk_freq = -1;
1992 }
1993 } else if (*dclk_freq > 0 &&
1994 *dclk_freq != dmi_mem_clk_speed) {
1995 /*
1996 * If we have a speed, check that all DIMMS are the same
1997 * speed, otherwise set the speed as invalid.
1998 */
1999 *dclk_freq = -1;
2000 }
2001 }
2002}
2003
2004/*
2005 * The default DCLK frequency is used as a fallback if we
2006 * fail to find anything reliable in the DMI. The value
2007 * is taken straight from the datasheet.
2008 */
2009#define DEFAULT_DCLK_FREQ 800
2010
2011static int get_dclk_freq(void)
2012{
2013 int dclk_freq = 0;
2014
2015 dmi_walk(decode_dclk, (void *)&dclk_freq);
2016
2017 if (dclk_freq < 1)
2018 return DEFAULT_DCLK_FREQ;
2019
2020 return dclk_freq;
2021}
2022
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002023/*
2024 * set_sdram_scrub_rate This routine sets byte/sec bandwidth scrub rate
2025 * to hardware according to SCRUBINTERVAL formula
2026 * found in datasheet.
2027 */
2028static int set_sdram_scrub_rate(struct mem_ctl_info *mci, u32 new_bw)
2029{
2030 struct i7core_pvt *pvt = mci->pvt_info;
2031 struct pci_dev *pdev;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002032 u32 dw_scrub;
2033 u32 dw_ssr;
2034
2035 /* Get data from the MC register, function 2 */
2036 pdev = pvt->pci_mcr[2];
2037 if (!pdev)
2038 return -ENODEV;
2039
2040 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &dw_scrub);
2041
2042 if (new_bw == 0) {
2043 /* Prepare to disable petrol scrub */
2044 dw_scrub &= ~STARTSCRUB;
2045 /* Stop the patrol scrub engine */
Nils Carlson535e9c72011-08-08 06:21:26 -03002046 write_and_test(pdev, MC_SCRUB_CONTROL,
2047 dw_scrub & ~SCRUBINTERVAL_MASK);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002048
2049 /* Get current status of scrub rate and set bit to disable */
2050 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
2051 dw_ssr &= ~SSR_MODE_MASK;
2052 dw_ssr |= SSR_MODE_DISABLE;
2053 } else {
Nils Carlson535e9c72011-08-08 06:21:26 -03002054 const int cache_line_size = 64;
2055 const u32 freq_dclk_mhz = pvt->dclk_freq;
2056 unsigned long long scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002057 /*
2058 * Translate the desired scrub rate to a register value and
Nils Carlson535e9c72011-08-08 06:21:26 -03002059 * program the corresponding register value.
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002060 */
Nils Carlson535e9c72011-08-08 06:21:26 -03002061 scrub_interval = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03002062 cache_line_size * 1000000;
2063 do_div(scrub_interval, new_bw);
Nils Carlson535e9c72011-08-08 06:21:26 -03002064
2065 if (!scrub_interval || scrub_interval > SCRUBINTERVAL_MASK)
2066 return -EINVAL;
2067
2068 dw_scrub = SCRUBINTERVAL_MASK & scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002069
2070 /* Start the patrol scrub engine */
2071 pci_write_config_dword(pdev, MC_SCRUB_CONTROL,
2072 STARTSCRUB | dw_scrub);
2073
2074 /* Get current status of scrub rate and set bit to enable */
2075 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
2076 dw_ssr &= ~SSR_MODE_MASK;
2077 dw_ssr |= SSR_MODE_ENABLE;
2078 }
2079 /* Disable or enable scrubbing */
2080 pci_write_config_dword(pdev, MC_SSRCONTROL, dw_ssr);
2081
2082 return new_bw;
2083}
2084
2085/*
2086 * get_sdram_scrub_rate This routine convert current scrub rate value
David Mackey15ed1032012-04-17 11:30:52 -07002087 * into byte/sec bandwidth according to
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002088 * SCRUBINTERVAL formula found in datasheet.
2089 */
2090static int get_sdram_scrub_rate(struct mem_ctl_info *mci)
2091{
2092 struct i7core_pvt *pvt = mci->pvt_info;
2093 struct pci_dev *pdev;
2094 const u32 cache_line_size = 64;
Nils Carlson535e9c72011-08-08 06:21:26 -03002095 const u32 freq_dclk_mhz = pvt->dclk_freq;
2096 unsigned long long scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002097 u32 scrubval;
2098
2099 /* Get data from the MC register, function 2 */
2100 pdev = pvt->pci_mcr[2];
2101 if (!pdev)
2102 return -ENODEV;
2103
2104 /* Get current scrub control data */
2105 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &scrubval);
2106
2107 /* Mask highest 8-bits to 0 */
Nils Carlson535e9c72011-08-08 06:21:26 -03002108 scrubval &= SCRUBINTERVAL_MASK;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002109 if (!scrubval)
2110 return 0;
2111
2112 /* Calculate scrub rate value into byte/sec bandwidth */
Nils Carlson535e9c72011-08-08 06:21:26 -03002113 scrub_rate = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03002114 1000000 * cache_line_size;
2115 do_div(scrub_rate, scrubval);
Nils Carlson535e9c72011-08-08 06:21:26 -03002116 return (int)scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002117}
2118
2119static void enable_sdram_scrub_setting(struct mem_ctl_info *mci)
2120{
2121 struct i7core_pvt *pvt = mci->pvt_info;
2122 u32 pci_lock;
2123
2124 /* Unlock writes to pci registers */
2125 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2126 pci_lock &= ~0x3;
2127 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2128 pci_lock | MC_CFG_UNLOCK);
2129
2130 mci->set_sdram_scrub_rate = set_sdram_scrub_rate;
2131 mci->get_sdram_scrub_rate = get_sdram_scrub_rate;
2132}
2133
2134static void disable_sdram_scrub_setting(struct mem_ctl_info *mci)
2135{
2136 struct i7core_pvt *pvt = mci->pvt_info;
2137 u32 pci_lock;
2138
2139 /* Lock writes to pci registers */
2140 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2141 pci_lock &= ~0x3;
2142 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2143 pci_lock | MC_CFG_LOCK);
2144}
2145
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002146static void i7core_pci_ctl_create(struct i7core_pvt *pvt)
2147{
2148 pvt->i7core_pci = edac_pci_create_generic_ctl(
2149 &pvt->i7core_dev->pdev[0]->dev,
2150 EDAC_MOD_STR);
2151 if (unlikely(!pvt->i7core_pci))
Mauro Carvalho Chehabf9902f22010-08-21 09:42:05 -03002152 i7core_printk(KERN_WARNING,
2153 "Unable to setup PCI error report via EDAC\n");
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002154}
2155
2156static void i7core_pci_ctl_release(struct i7core_pvt *pvt)
2157{
2158 if (likely(pvt->i7core_pci))
2159 edac_pci_release_generic_ctl(pvt->i7core_pci);
2160 else
2161 i7core_printk(KERN_ERR,
2162 "Couldn't find mem_ctl_info for socket %d\n",
2163 pvt->i7core_dev->socket);
2164 pvt->i7core_pci = NULL;
2165}
2166
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002167static void i7core_unregister_mci(struct i7core_dev *i7core_dev)
2168{
2169 struct mem_ctl_info *mci = i7core_dev->mci;
2170 struct i7core_pvt *pvt;
2171
2172 if (unlikely(!mci || !mci->pvt_info)) {
Joe Perches956b9ba2012-04-29 17:08:39 -03002173 edac_dbg(0, "MC: dev = %p\n", &i7core_dev->pdev[0]->dev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002174
2175 i7core_printk(KERN_ERR, "Couldn't find mci handler\n");
2176 return;
2177 }
2178
2179 pvt = mci->pvt_info;
2180
Joe Perches956b9ba2012-04-29 17:08:39 -03002181 edac_dbg(0, "MC: mci = %p, dev = %p\n", mci, &i7core_dev->pdev[0]->dev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002182
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002183 /* Disable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002184 if (pvt->enable_scrub)
2185 disable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002186
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002187 /* Disable EDAC polling */
2188 i7core_pci_ctl_release(pvt);
2189
2190 /* Remove MC sysfs nodes */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002191 i7core_delete_sysfs_devices(mci);
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002192 edac_mc_del_mc(mci->pdev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002193
Joe Perches956b9ba2012-04-29 17:08:39 -03002194 edac_dbg(1, "%s: free mci struct\n", mci->ctl_name);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002195 kfree(mci->ctl_name);
2196 edac_mc_free(mci);
2197 i7core_dev->mci = NULL;
2198}
2199
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002200static int i7core_register_mci(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002201{
2202 struct mem_ctl_info *mci;
2203 struct i7core_pvt *pvt;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002204 int rc;
2205 struct edac_mc_layer layers[2];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002206
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002207 /* allocate a new MC control structure */
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002208
2209 layers[0].type = EDAC_MC_LAYER_CHANNEL;
2210 layers[0].size = NUM_CHANS;
2211 layers[0].is_virt_csrow = false;
2212 layers[1].type = EDAC_MC_LAYER_SLOT;
2213 layers[1].size = MAX_DIMMS;
2214 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03002215 mci = edac_mc_alloc(i7core_dev->socket, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002216 sizeof(*pvt));
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002217 if (unlikely(!mci))
2218 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002219
Joe Perches956b9ba2012-04-29 17:08:39 -03002220 edac_dbg(0, "MC: mci = %p, dev = %p\n", mci, &i7core_dev->pdev[0]->dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002221
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002222 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002223 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03002224
Mauro Carvalho Chehab6d37d242010-08-20 12:48:26 -03002225 /* Associates i7core_dev and mci for future usage */
2226 pvt->i7core_dev = i7core_dev;
2227 i7core_dev->mci = mci;
2228
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002229 /*
2230 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
2231 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
2232 * memory channels
2233 */
2234 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002235 mci->edac_ctl_cap = EDAC_FLAG_NONE;
2236 mci->edac_cap = EDAC_FLAG_NONE;
2237 mci->mod_name = "i7core_edac.c";
2238 mci->mod_ver = I7CORE_REVISION;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002239 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d",
2240 i7core_dev->socket);
2241 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002242 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03002243
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002244 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002245 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002246 if (unlikely(rc < 0))
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002247 goto fail0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002248
Hidetoshi Seto59398132010-08-20 04:28:25 -03002249
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002250 /* Get dimm basic config */
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -03002251 get_dimm_config(mci);
Hidetoshi Seto59398132010-08-20 04:28:25 -03002252 /* record ptr to the generic device */
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002253 mci->pdev = &i7core_dev->pdev[0]->dev;
Hidetoshi Seto59398132010-08-20 04:28:25 -03002254 /* Set the function pointer to an actual operation function */
2255 mci->edac_check = i7core_check_error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002256
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002257 /* Enable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002258 if (pvt->enable_scrub)
2259 enable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002260
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002261 /* add this new MC control structure to EDAC's list of MCs */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002262 if (unlikely(edac_mc_add_mc(mci))) {
Joe Perches956b9ba2012-04-29 17:08:39 -03002263 edac_dbg(0, "MC: failed edac_mc_add_mc()\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002264 /* FIXME: perhaps some code should go here that disables error
2265 * reporting if we just enabled it
2266 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002267
2268 rc = -EINVAL;
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002269 goto fail0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002270 }
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002271 if (i7core_create_sysfs_devices(mci)) {
Joe Perches956b9ba2012-04-29 17:08:39 -03002272 edac_dbg(0, "MC: failed to create sysfs nodes\n");
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002273 edac_mc_del_mc(mci->pdev);
2274 rc = -EINVAL;
2275 goto fail0;
2276 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002277
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002278 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002279 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002280 pvt->inject.dimm = -1;
2281 pvt->inject.rank = -1;
2282 pvt->inject.bank = -1;
2283 pvt->inject.page = -1;
2284 pvt->inject.col = -1;
2285
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002286 /* allocating generic PCI control info */
2287 i7core_pci_ctl_create(pvt);
2288
Nils Carlson535e9c72011-08-08 06:21:26 -03002289 /* DCLK for scrub rate setting */
2290 pvt->dclk_freq = get_dclk_freq();
2291
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002292 return 0;
2293
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002294fail0:
2295 kfree(mci->ctl_name);
2296 edac_mc_free(mci);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002297 i7core_dev->mci = NULL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002298 return rc;
2299}
2300
2301/*
2302 * i7core_probe Probe for ONE instance of device to see if it is
2303 * present.
2304 * return:
2305 * 0 for FOUND a device
2306 * < 0 for error code
2307 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002308
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002309static int i7core_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002310{
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002311 int rc, count = 0;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002312 struct i7core_dev *i7core_dev;
2313
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002314 /* get the pci devices we want to reserve for our use */
2315 mutex_lock(&i7core_edac_lock);
2316
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002317 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002318 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002319 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002320 if (unlikely(probed >= 1)) {
2321 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehab76a7bd82010-10-24 11:36:19 -02002322 return -ENODEV;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002323 }
2324 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03002325
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002326 rc = i7core_get_all_devices();
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002327 if (unlikely(rc < 0))
2328 goto fail0;
2329
2330 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002331 count++;
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002332 rc = i7core_register_mci(i7core_dev);
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002333 if (unlikely(rc < 0))
2334 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002335 }
2336
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002337 /*
2338 * Nehalem-EX uses a different memory controller. However, as the
2339 * memory controller is not visible on some Nehalem/Nehalem-EP, we
2340 * need to indirectly probe via a X58 PCI device. The same devices
2341 * are found on (some) Nehalem-EX. So, on those machines, the
2342 * probe routine needs to return -ENODEV, as the actual Memory
2343 * Controller registers won't be detected.
2344 */
2345 if (!count) {
2346 rc = -ENODEV;
2347 goto fail1;
2348 }
2349
2350 i7core_printk(KERN_INFO,
2351 "Driver loaded, %d memory controller(s) found.\n",
2352 count);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03002353
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002354 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002355 return 0;
2356
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002357fail1:
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002358 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2359 i7core_unregister_mci(i7core_dev);
2360
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03002361 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002362fail0:
2363 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002364 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002365}
2366
2367/*
2368 * i7core_remove destructor for one instance of device
2369 *
2370 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002371static void i7core_remove(struct pci_dev *pdev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002372{
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002373 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002374
Joe Perches956b9ba2012-04-29 17:08:39 -03002375 edac_dbg(0, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002376
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002377 /*
2378 * we have a trouble here: pdev value for removal will be wrong, since
2379 * it will point to the X58 register used to detect that the machine
2380 * is a Nehalem or upper design. However, due to the way several PCI
2381 * devices are grouped together to provide MC functionality, we need
2382 * to use a different method for releasing the devices
2383 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002384
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002385 mutex_lock(&i7core_edac_lock);
Hidetoshi Seto71fe0172010-08-20 04:29:47 -03002386
2387 if (unlikely(!probed)) {
2388 mutex_unlock(&i7core_edac_lock);
2389 return;
2390 }
2391
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002392 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2393 i7core_unregister_mci(i7core_dev);
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002394
2395 /* Release PCI resources */
2396 i7core_put_all_devices();
2397
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002398 probed--;
2399
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002400 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002401}
2402
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002403MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2404
2405/*
2406 * i7core_driver pci_driver structure for this module
2407 *
2408 */
2409static struct pci_driver i7core_driver = {
2410 .name = "i7core_edac",
2411 .probe = i7core_probe,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002412 .remove = i7core_remove,
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002413 .id_table = i7core_pci_tbl,
2414};
2415
2416/*
2417 * i7core_init Module entry function
2418 * Try to initialize this module for its devices
2419 */
2420static int __init i7core_init(void)
2421{
2422 int pci_rc;
2423
Joe Perches956b9ba2012-04-29 17:08:39 -03002424 edac_dbg(2, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002425
2426 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2427 opstate_init();
2428
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03002429 if (use_pci_fixup)
2430 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002431
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002432 pci_rc = pci_register_driver(&i7core_driver);
2433
Chen Gonge35fca42012-05-08 20:40:12 -03002434 if (pci_rc >= 0) {
2435 mce_register_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002436 return 0;
Chen Gonge35fca42012-05-08 20:40:12 -03002437 }
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002438
2439 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2440 pci_rc);
2441
2442 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002443}
2444
2445/*
2446 * i7core_exit() Module exit function
2447 * Unregister the driver
2448 */
2449static void __exit i7core_exit(void)
2450{
Joe Perches956b9ba2012-04-29 17:08:39 -03002451 edac_dbg(2, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002452 pci_unregister_driver(&i7core_driver);
Chen Gonge35fca42012-05-08 20:40:12 -03002453 mce_unregister_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002454}
2455
2456module_init(i7core_init);
2457module_exit(i7core_exit);
2458
2459MODULE_LICENSE("GPL");
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02002460MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002461MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2462MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2463 I7CORE_REVISION);
2464
2465module_param(edac_op_state, int, 0444);
2466MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");