blob: f95d5b9c5551d8f1ae958bceaaadc987ec35aad5 [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
Nils Carlson535e9c72011-08-08 06:21:26 -0300274 /* DCLK Frequency used for computing scrub rate */
275 int dclk_freq;
276
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300277 /* Struct to control EDAC polling */
278 struct edac_pci_ctl_info *i7core_pci;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300279};
280
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300281#define PCI_DESCR(device, function, device_id) \
282 .dev = (device), \
283 .func = (function), \
284 .dev_id = (device_id)
285
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300286static const struct pci_id_descr pci_dev_descr_i7core_nehalem[] = {
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300287 /* Memory controller */
288 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_I7_MCR) },
289 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_I7_MC_TAD) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300290 /* Exists only for RDIMM */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300291 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_I7_MC_RAS), .optional = 1 },
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300292 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_I7_MC_TEST) },
293
294 /* Channel 0 */
295 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH0_CTRL) },
296 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH0_ADDR) },
297 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH0_RANK) },
298 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH0_TC) },
299
300 /* Channel 1 */
301 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH1_CTRL) },
302 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH1_ADDR) },
303 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH1_RANK) },
304 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH1_TC) },
305
306 /* Channel 2 */
307 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH2_CTRL) },
308 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH2_ADDR) },
309 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH2_RANK) },
310 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH2_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300311
312 /* Generic Non-core registers */
313 /*
314 * This is the PCI device on i7core and on Xeon 35xx (8086:2c41)
315 * On Xeon 55xx, however, it has a different id (8086:2c40). So,
316 * the probing code needs to test for the other address in case of
317 * failure of this one
318 */
319 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_I7_NONCORE) },
320
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300321};
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300322
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300323static const struct pci_id_descr pci_dev_descr_lynnfield[] = {
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300324 { PCI_DESCR( 3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR) },
325 { PCI_DESCR( 3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD) },
326 { PCI_DESCR( 3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST) },
327
328 { PCI_DESCR( 4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL) },
329 { PCI_DESCR( 4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR) },
330 { PCI_DESCR( 4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK) },
331 { PCI_DESCR( 4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC) },
332
Mauro Carvalho Chehab508fa172009-10-14 13:44:37 -0300333 { PCI_DESCR( 5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL) },
334 { PCI_DESCR( 5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR) },
335 { PCI_DESCR( 5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK) },
336 { PCI_DESCR( 5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300337
338 /*
339 * This is the PCI device has an alternate address on some
340 * processors like Core i7 860
341 */
342 { PCI_DESCR( 0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE) },
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300343};
344
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300345static const struct pci_id_descr pci_dev_descr_i7core_westmere[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300346 /* Memory controller */
347 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR_REV2) },
348 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD_REV2) },
349 /* Exists only for RDIMM */
350 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_RAS_REV2), .optional = 1 },
351 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST_REV2) },
352
353 /* Channel 0 */
354 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL_REV2) },
355 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR_REV2) },
356 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK_REV2) },
357 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC_REV2) },
358
359 /* Channel 1 */
360 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL_REV2) },
361 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR_REV2) },
362 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK_REV2) },
363 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC_REV2) },
364
365 /* Channel 2 */
366 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_CTRL_REV2) },
367 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_ADDR_REV2) },
368 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_RANK_REV2) },
369 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_TC_REV2) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300370
371 /* Generic Non-core registers */
372 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2) },
373
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300374};
375
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300376#define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) }
377static const struct pci_id_table pci_dev_table[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300378 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_nehalem),
379 PCI_ID_TABLE_ENTRY(pci_dev_descr_lynnfield),
380 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_westmere),
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -0200381 {0,} /* 0 terminated list. */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300382};
383
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300384/*
385 * pci_device_id table for which devices we are looking for
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300386 */
Jingoo Hanba935f42013-12-06 10:23:08 +0100387static const struct pci_device_id i7core_pci_tbl[] = {
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -0300388 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300389 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300390 {0,} /* 0 terminated list. */
391};
392
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300393/****************************************************************************
David Mackey15ed1032012-04-17 11:30:52 -0700394 Ancillary status routines
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300395 ****************************************************************************/
396
397 /* MC_CONTROL bits */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300398#define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch)))
399#define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300400
401 /* MC_STATUS bits */
Keith Mannthey61053fd2009-09-02 23:46:59 -0300402#define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300403#define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300404
405 /* MC_MAX_DOD read functions */
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300406static inline int numdimms(u32 dimms)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300407{
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300408 return (dimms & 0x3) + 1;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300409}
410
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300411static inline int numrank(u32 rank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300412{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100413 static const int ranks[] = { 1, 2, 4, -EINVAL };
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300414
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300415 return ranks[rank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300416}
417
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300418static inline int numbank(u32 bank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300419{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100420 static const int banks[] = { 4, 8, 16, -EINVAL };
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300421
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300422 return banks[bank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300423}
424
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300425static inline int numrow(u32 row)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300426{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100427 static const int rows[] = {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300428 1 << 12, 1 << 13, 1 << 14, 1 << 15,
429 1 << 16, -EINVAL, -EINVAL, -EINVAL,
430 };
431
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300432 return rows[row & 0x7];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300433}
434
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300435static inline int numcol(u32 col)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300436{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100437 static const int cols[] = {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300438 1 << 10, 1 << 11, 1 << 12, -EINVAL,
439 };
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300440 return cols[col & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300441}
442
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300443static struct i7core_dev *get_i7core_dev(u8 socket)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300444{
445 struct i7core_dev *i7core_dev;
446
447 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
448 if (i7core_dev->socket == socket)
449 return i7core_dev;
450 }
451
452 return NULL;
453}
454
Hidetoshi Seto848b2f72010-08-20 04:24:44 -0300455static struct i7core_dev *alloc_i7core_dev(u8 socket,
456 const struct pci_id_table *table)
457{
458 struct i7core_dev *i7core_dev;
459
460 i7core_dev = kzalloc(sizeof(*i7core_dev), GFP_KERNEL);
461 if (!i7core_dev)
462 return NULL;
463
464 i7core_dev->pdev = kzalloc(sizeof(*i7core_dev->pdev) * table->n_devs,
465 GFP_KERNEL);
466 if (!i7core_dev->pdev) {
467 kfree(i7core_dev);
468 return NULL;
469 }
470
471 i7core_dev->socket = socket;
472 i7core_dev->n_devs = table->n_devs;
473 list_add_tail(&i7core_dev->list, &i7core_edac_list);
474
475 return i7core_dev;
476}
477
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -0300478static void free_i7core_dev(struct i7core_dev *i7core_dev)
479{
480 list_del(&i7core_dev->list);
481 kfree(i7core_dev->pdev);
482 kfree(i7core_dev);
483}
484
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300485/****************************************************************************
486 Memory check routines
487 ****************************************************************************/
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300488
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300489static int get_dimm_config(struct mem_ctl_info *mci)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300490{
491 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300492 struct pci_dev *pdev;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300493 int i, j;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300494 enum edac_type mode;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300495 enum mem_type mtype;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300496 struct dimm_info *dimm;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300497
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300498 /* Get data from the MC register, function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300499 pdev = pvt->pci_mcr[0];
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300500 if (!pdev)
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300501 return -ENODEV;
502
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300503 /* Device 3 function 0 reads */
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300504 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control);
505 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status);
506 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod);
507 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300508
Joe Perches956b9ba2012-04-29 17:08:39 -0300509 edac_dbg(0, "QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
510 pvt->i7core_dev->socket, pvt->info.mc_control,
511 pvt->info.mc_status, pvt->info.max_dod, pvt->info.ch_map);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300512
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300513 if (ECC_ENABLED(pvt)) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300514 edac_dbg(0, "ECC enabled with x%d SDCC\n", ECCx8(pvt) ? 8 : 4);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300515 if (ECCx8(pvt))
516 mode = EDAC_S8ECD8ED;
517 else
518 mode = EDAC_S4ECD4ED;
519 } else {
Joe Perches956b9ba2012-04-29 17:08:39 -0300520 edac_dbg(0, "ECC disabled\n");
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300521 mode = EDAC_NONE;
522 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300523
524 /* FIXME: need to handle the error codes */
Joe Perches956b9ba2012-04-29 17:08:39 -0300525 edac_dbg(0, "DOD Max limits: DIMMS: %d, %d-ranked, %d-banked x%x x 0x%x\n",
526 numdimms(pvt->info.max_dod),
527 numrank(pvt->info.max_dod >> 2),
528 numbank(pvt->info.max_dod >> 4),
529 numrow(pvt->info.max_dod >> 6),
530 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300531
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300532 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300533 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300534
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300535 if (!pvt->pci_ch[i][0])
536 continue;
537
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300538 if (!CH_ACTIVE(pvt, i)) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300539 edac_dbg(0, "Channel %i is not active\n", i);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300540 continue;
541 }
542 if (CH_DISABLED(pvt, i)) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300543 edac_dbg(0, "Channel %i is disabled\n", i);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300544 continue;
545 }
546
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300547 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300548 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300549 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
550
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300551
552 if (data & THREE_DIMMS_PRESENT)
553 pvt->channel[i].is_3dimms_present = true;
554
555 if (data & SINGLE_QUAD_RANK_PRESENT)
556 pvt->channel[i].is_single_4rank = true;
557
558 if (data & QUAD_RANK_PRESENT)
559 pvt->channel[i].has_4rank = true;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300560
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300561 if (data & REGISTERED_DIMM)
562 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300563 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300564 mtype = MEM_DDR3;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300565
566 /* Devices 4-6 function 1 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300567 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300568 MC_DOD_CH_DIMM0, &dimm_dod[0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300569 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300570 MC_DOD_CH_DIMM1, &dimm_dod[1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300571 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300572 MC_DOD_CH_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300573
Joe Perches956b9ba2012-04-29 17:08:39 -0300574 edac_dbg(0, "Ch%d phy rd%d, wr%d (0x%08x): %s%s%s%cDIMMs\n",
575 i,
576 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
577 data,
578 pvt->channel[i].is_3dimms_present ? "3DIMMS " : "",
579 pvt->channel[i].is_3dimms_present ? "SINGLE_4R " : "",
580 pvt->channel[i].has_4rank ? "HAS_4R " : "",
581 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300582
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300583 for (j = 0; j < 3; j++) {
584 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300585 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300586
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300587 if (!DIMM_PRESENT(dimm_dod[j]))
588 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300589
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -0300590 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
591 i, j, 0);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300592 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
593 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
594 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
595 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300596
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300597 /* DDR3 has 8 I/O banks */
598 size = (rows * cols * banks * ranks) >> (20 - 3);
599
Joe Perches956b9ba2012-04-29 17:08:39 -0300600 edac_dbg(0, "\tdimm %d %d Mb offset: %x, bank: %d, rank: %d, row: %#x, col: %#x\n",
601 j, size,
602 RANKOFFSET(dimm_dod[j]),
603 banks, ranks, rows, cols);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300604
Mauro Carvalho Chehabe9144602010-08-10 20:26:35 -0300605 npages = MiB_TO_PAGES(size);
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300606
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300607 dimm->nr_pages = npages;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300608
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300609 switch (banks) {
610 case 4:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300611 dimm->dtype = DEV_X4;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300612 break;
613 case 8:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300614 dimm->dtype = DEV_X8;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300615 break;
616 case 16:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300617 dimm->dtype = DEV_X16;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300618 break;
619 default:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300620 dimm->dtype = DEV_UNKNOWN;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300621 }
622
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300623 snprintf(dimm->label, sizeof(dimm->label),
624 "CPU#%uChannel#%u_DIMM#%u",
625 pvt->i7core_dev->socket, i, j);
626 dimm->grain = 8;
627 dimm->edac_mode = mode;
628 dimm->mtype = mtype;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300629 }
630
631 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
632 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
633 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
634 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
635 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
636 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
637 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
638 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Joe Perches956b9ba2012-04-29 17:08:39 -0300639 edac_dbg(1, "\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300640 for (j = 0; j < 8; j++)
Joe Perches956b9ba2012-04-29 17:08:39 -0300641 edac_dbg(1, "\t\t%#x\t%#x\t%#x\n",
642 (value[j] >> 27) & 0x1,
643 (value[j] >> 24) & 0x7,
644 (value[j] & ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300645 }
646
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300647 return 0;
648}
649
650/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300651 Error insertion routines
652 ****************************************************************************/
653
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300654#define to_mci(k) container_of(k, struct mem_ctl_info, dev)
655
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300656/* The i7core has independent error injection features per channel.
657 However, to have a simpler code, we don't allow enabling error injection
658 on more than one channel.
659 Also, since a change at an inject parameter will be applied only at enable,
660 we're disabling error injection on all write calls to the sysfs nodes that
661 controls the error code injection.
662 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300663static int disable_inject(const struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300664{
665 struct i7core_pvt *pvt = mci->pvt_info;
666
667 pvt->inject.enable = 0;
668
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300669 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300670 return -ENODEV;
671
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300672 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300673 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300674
675 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300676}
677
678/*
679 * i7core inject inject.section
680 *
681 * accept and store error injection inject.section value
682 * bit 0 - refers to the lower 32-byte half cacheline
683 * bit 1 - refers to the upper 32-byte half cacheline
684 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300685static ssize_t i7core_inject_section_store(struct device *dev,
686 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300687 const char *data, size_t count)
688{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300689 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300690 struct i7core_pvt *pvt = mci->pvt_info;
691 unsigned long value;
692 int rc;
693
694 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300695 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300696
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900697 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300698 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300699 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300700
701 pvt->inject.section = (u32) value;
702 return count;
703}
704
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300705static ssize_t i7core_inject_section_show(struct device *dev,
706 struct device_attribute *mattr,
707 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300708{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300709 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300710 struct i7core_pvt *pvt = mci->pvt_info;
711 return sprintf(data, "0x%08x\n", pvt->inject.section);
712}
713
714/*
715 * i7core inject.type
716 *
717 * accept and store error injection inject.section value
718 * bit 0 - repeat enable - Enable error repetition
719 * bit 1 - inject ECC error
720 * bit 2 - inject parity error
721 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300722static ssize_t i7core_inject_type_store(struct device *dev,
723 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300724 const char *data, size_t count)
725{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300726 struct mem_ctl_info *mci = to_mci(dev);
727struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300728 unsigned long value;
729 int rc;
730
731 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300732 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300733
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900734 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300735 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300736 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300737
738 pvt->inject.type = (u32) value;
739 return count;
740}
741
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300742static ssize_t i7core_inject_type_show(struct device *dev,
743 struct device_attribute *mattr,
744 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300745{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300746 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300747 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300748
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300749 return sprintf(data, "0x%08x\n", pvt->inject.type);
750}
751
752/*
753 * i7core_inject_inject.eccmask_store
754 *
755 * The type of error (UE/CE) will depend on the inject.eccmask value:
756 * Any bits set to a 1 will flip the corresponding ECC bit
757 * Correctable errors can be injected by flipping 1 bit or the bits within
758 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
759 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
760 * uncorrectable error to be injected.
761 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300762static ssize_t i7core_inject_eccmask_store(struct device *dev,
763 struct device_attribute *mattr,
764 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300765{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300766 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300767 struct i7core_pvt *pvt = mci->pvt_info;
768 unsigned long value;
769 int rc;
770
771 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300772 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300773
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900774 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300775 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300776 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300777
778 pvt->inject.eccmask = (u32) value;
779 return count;
780}
781
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300782static ssize_t i7core_inject_eccmask_show(struct device *dev,
783 struct device_attribute *mattr,
784 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300785{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300786 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300787 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300788
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300789 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
790}
791
792/*
793 * i7core_addrmatch
794 *
795 * The type of error (UE/CE) will depend on the inject.eccmask value:
796 * Any bits set to a 1 will flip the corresponding ECC bit
797 * Correctable errors can be injected by flipping 1 bit or the bits within
798 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
799 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
800 * uncorrectable error to be injected.
801 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300802
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300803#define DECLARE_ADDR_MATCH(param, limit) \
804static ssize_t i7core_inject_store_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300805 struct device *dev, \
806 struct device_attribute *mattr, \
807 const char *data, size_t count) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300808{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -0400809 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300810 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300811 long value; \
812 int rc; \
813 \
Joe Perches956b9ba2012-04-29 17:08:39 -0300814 edac_dbg(1, "\n"); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300815 pvt = mci->pvt_info; \
816 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300817 if (pvt->inject.enable) \
818 disable_inject(mci); \
819 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300820 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300821 value = -1; \
822 else { \
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900823 rc = kstrtoul(data, 10, &value); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300824 if ((rc < 0) || (value >= limit)) \
825 return -EIO; \
826 } \
827 \
828 pvt->inject.param = value; \
829 \
830 return count; \
831} \
832 \
833static ssize_t i7core_inject_show_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300834 struct device *dev, \
835 struct device_attribute *mattr, \
836 char *data) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300837{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -0400838 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300839 struct i7core_pvt *pvt; \
840 \
841 pvt = mci->pvt_info; \
Joe Perches956b9ba2012-04-29 17:08:39 -0300842 edac_dbg(1, "pvt=%p\n", pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300843 if (pvt->inject.param < 0) \
844 return sprintf(data, "any\n"); \
845 else \
846 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300847}
848
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300849#define ATTR_ADDR_MATCH(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300850 static DEVICE_ATTR(param, S_IRUGO | S_IWUSR, \
851 i7core_inject_show_##param, \
852 i7core_inject_store_##param)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300853
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300854DECLARE_ADDR_MATCH(channel, 3);
855DECLARE_ADDR_MATCH(dimm, 3);
856DECLARE_ADDR_MATCH(rank, 4);
857DECLARE_ADDR_MATCH(bank, 32);
858DECLARE_ADDR_MATCH(page, 0x10000);
859DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300860
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300861ATTR_ADDR_MATCH(channel);
862ATTR_ADDR_MATCH(dimm);
863ATTR_ADDR_MATCH(rank);
864ATTR_ADDR_MATCH(bank);
865ATTR_ADDR_MATCH(page);
866ATTR_ADDR_MATCH(col);
867
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300868static int write_and_test(struct pci_dev *dev, const int where, const u32 val)
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300869{
870 u32 read;
871 int count;
872
Joe Perches956b9ba2012-04-29 17:08:39 -0300873 edac_dbg(0, "setting pci %02x:%02x.%x reg=%02x value=%08x\n",
874 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
875 where, val);
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300876
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300877 for (count = 0; count < 10; count++) {
878 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300879 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300880 pci_write_config_dword(dev, where, val);
881 pci_read_config_dword(dev, where, &read);
882
883 if (read == val)
884 return 0;
885 }
886
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -0300887 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
888 "write=%08x. Read=%08x\n",
889 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
890 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300891
892 return -EINVAL;
893}
894
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300895/*
896 * This routine prepares the Memory Controller for error injection.
897 * The error will be injected when some process tries to write to the
898 * memory that matches the given criteria.
899 * The criteria can be set in terms of a mask where dimm, rank, bank, page
900 * and col can be specified.
901 * A -1 value for any of the mask items will make the MCU to ignore
902 * that matching criteria for error injection.
903 *
904 * It should be noticed that the error will only happen after a write operation
905 * on a memory that matches the condition. if REPEAT_EN is not enabled at
906 * inject mask, then it will produce just one error. Otherwise, it will repeat
907 * until the injectmask would be cleaned.
908 *
909 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
910 * is reliable enough to check if the MC is using the
911 * three channels. However, this is not clear at the datasheet.
912 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300913static ssize_t i7core_inject_enable_store(struct device *dev,
914 struct device_attribute *mattr,
915 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300916{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300917 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300918 struct i7core_pvt *pvt = mci->pvt_info;
919 u32 injectmask;
920 u64 mask = 0;
921 int rc;
922 long enable;
923
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300924 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300925 return 0;
926
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900927 rc = kstrtoul(data, 10, &enable);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300928 if ((rc < 0))
929 return 0;
930
931 if (enable) {
932 pvt->inject.enable = 1;
933 } else {
934 disable_inject(mci);
935 return count;
936 }
937
938 /* Sets pvt->inject.dimm mask */
939 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200940 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300941 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300942 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200943 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300944 else
Alan Cox486dd092009-11-08 01:34:27 -0200945 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300946 }
947
948 /* Sets pvt->inject.rank mask */
949 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200950 mask |= 1LL << 40;
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.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300954 else
Alan Cox486dd092009-11-08 01:34:27 -0200955 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300956 }
957
958 /* Sets pvt->inject.bank mask */
959 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200960 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300961 else
Alan Cox486dd092009-11-08 01:34:27 -0200962 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300963
964 /* Sets pvt->inject.page mask */
965 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200966 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300967 else
Alan Cox486dd092009-11-08 01:34:27 -0200968 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300969
970 /* Sets pvt->inject.column mask */
971 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200972 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300973 else
Alan Cox486dd092009-11-08 01:34:27 -0200974 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300975
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300976 /*
977 * bit 0: REPEAT_EN
978 * bits 1-2: MASK_HALF_CACHELINE
979 * bit 3: INJECT_ECC
980 * bit 4: INJECT_ADDR_PARITY
981 */
982
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -0300983 injectmask = (pvt->inject.type & 1) |
984 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300985 (pvt->inject.type & 0x6) << (3 - 1);
986
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300987 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300988 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300989 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300990
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300991 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300992 MC_CHANNEL_ADDR_MATCH, mask);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300993 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300994 MC_CHANNEL_ADDR_MATCH + 4, mask >> 32L);
995
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300996 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300997 MC_CHANNEL_ERROR_MASK, pvt->inject.eccmask);
998
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300999 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001000 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001001
1002 /*
1003 * This is something undocumented, based on my tests
1004 * Without writing 8 to this register, errors aren't injected. Not sure
1005 * why.
1006 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001007 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001008 MC_CFG_CONTROL, 8);
1009
Joe Perches956b9ba2012-04-29 17:08:39 -03001010 edac_dbg(0, "Error inject addr match 0x%016llx, ecc 0x%08x, inject 0x%08x\n",
1011 mask, pvt->inject.eccmask, injectmask);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001012
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001013
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001014 return count;
1015}
1016
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001017static ssize_t i7core_inject_enable_show(struct device *dev,
1018 struct device_attribute *mattr,
1019 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001020{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001021 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001022 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001023 u32 injectmask;
1024
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001025 if (!pvt->pci_ch[pvt->inject.channel][0])
1026 return 0;
1027
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001028 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f2009-08-05 20:27:15 -03001029 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001030
Joe Perches956b9ba2012-04-29 17:08:39 -03001031 edac_dbg(0, "Inject error read: 0x%018x\n", injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001032
1033 if (injectmask & 0x0c)
1034 pvt->inject.enable = 1;
1035
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001036 return sprintf(data, "%d\n", pvt->inject.enable);
1037}
1038
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001039#define DECLARE_COUNTER(param) \
1040static ssize_t i7core_show_counter_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001041 struct device *dev, \
1042 struct device_attribute *mattr, \
1043 char *data) \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001044{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -04001045 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001046 struct i7core_pvt *pvt = mci->pvt_info; \
1047 \
Joe Perches956b9ba2012-04-29 17:08:39 -03001048 edac_dbg(1, "\n"); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001049 if (!pvt->ce_count_available || (pvt->is_registered)) \
1050 return sprintf(data, "data unavailable\n"); \
1051 return sprintf(data, "%lu\n", \
1052 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001053}
1054
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001055#define ATTR_COUNTER(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001056 static DEVICE_ATTR(udimm##param, S_IRUGO | S_IWUSR, \
1057 i7core_show_counter_##param, \
1058 NULL)
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001059
1060DECLARE_COUNTER(0);
1061DECLARE_COUNTER(1);
1062DECLARE_COUNTER(2);
1063
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001064ATTR_COUNTER(0);
1065ATTR_COUNTER(1);
1066ATTR_COUNTER(2);
1067
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001068/*
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001069 * inject_addrmatch device sysfs struct
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001070 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001071
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001072static struct attribute *i7core_addrmatch_attrs[] = {
1073 &dev_attr_channel.attr,
1074 &dev_attr_dimm.attr,
1075 &dev_attr_rank.attr,
1076 &dev_attr_bank.attr,
1077 &dev_attr_page.attr,
1078 &dev_attr_col.attr,
1079 NULL
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001080};
1081
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001082static struct attribute_group addrmatch_grp = {
1083 .attrs = i7core_addrmatch_attrs,
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001084};
1085
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001086static const struct attribute_group *addrmatch_groups[] = {
1087 &addrmatch_grp,
1088 NULL
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001089};
1090
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001091static void addrmatch_release(struct device *device)
1092{
Joe Perches956b9ba2012-04-29 17:08:39 -03001093 edac_dbg(1, "Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001094 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001095}
1096
1097static struct device_type addrmatch_type = {
1098 .groups = addrmatch_groups,
1099 .release = addrmatch_release,
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001100};
1101
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001102/*
1103 * all_channel_counts sysfs struct
1104 */
1105
1106static struct attribute *i7core_udimm_counters_attrs[] = {
1107 &dev_attr_udimm0.attr,
1108 &dev_attr_udimm1.attr,
1109 &dev_attr_udimm2.attr,
1110 NULL
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001111};
1112
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001113static struct attribute_group all_channel_counts_grp = {
1114 .attrs = i7core_udimm_counters_attrs,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001115};
1116
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001117static const struct attribute_group *all_channel_counts_groups[] = {
1118 &all_channel_counts_grp,
1119 NULL
1120};
1121
1122static void all_channel_counts_release(struct device *device)
1123{
Joe Perches956b9ba2012-04-29 17:08:39 -03001124 edac_dbg(1, "Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001125 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001126}
1127
1128static struct device_type all_channel_counts_type = {
1129 .groups = all_channel_counts_groups,
1130 .release = all_channel_counts_release,
1131};
1132
1133/*
1134 * inject sysfs attributes
1135 */
1136
1137static DEVICE_ATTR(inject_section, S_IRUGO | S_IWUSR,
1138 i7core_inject_section_show, i7core_inject_section_store);
1139
1140static DEVICE_ATTR(inject_type, S_IRUGO | S_IWUSR,
1141 i7core_inject_type_show, i7core_inject_type_store);
1142
1143
1144static DEVICE_ATTR(inject_eccmask, S_IRUGO | S_IWUSR,
1145 i7core_inject_eccmask_show, i7core_inject_eccmask_store);
1146
1147static DEVICE_ATTR(inject_enable, S_IRUGO | S_IWUSR,
1148 i7core_inject_enable_show, i7core_inject_enable_store);
1149
Takashi Iwai2eace182015-02-04 11:48:55 +01001150static struct attribute *i7core_dev_attrs[] = {
1151 &dev_attr_inject_section.attr,
1152 &dev_attr_inject_type.attr,
1153 &dev_attr_inject_eccmask.attr,
1154 &dev_attr_inject_enable.attr,
1155 NULL
1156};
1157
1158ATTRIBUTE_GROUPS(i7core_dev);
1159
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001160static int i7core_create_sysfs_devices(struct mem_ctl_info *mci)
1161{
1162 struct i7core_pvt *pvt = mci->pvt_info;
1163 int rc;
1164
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001165 pvt->addrmatch_dev = kzalloc(sizeof(*pvt->addrmatch_dev), GFP_KERNEL);
1166 if (!pvt->addrmatch_dev)
Takashi Iwaie97d7e32015-02-04 11:48:54 +01001167 return -ENOMEM;
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001168
1169 pvt->addrmatch_dev->type = &addrmatch_type;
1170 pvt->addrmatch_dev->bus = mci->dev.bus;
1171 device_initialize(pvt->addrmatch_dev);
1172 pvt->addrmatch_dev->parent = &mci->dev;
1173 dev_set_name(pvt->addrmatch_dev, "inject_addrmatch");
1174 dev_set_drvdata(pvt->addrmatch_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001175
Joe Perches956b9ba2012-04-29 17:08:39 -03001176 edac_dbg(1, "creating %s\n", dev_name(pvt->addrmatch_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001177
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001178 rc = device_add(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001179 if (rc < 0)
Johan Hovold64e58372018-06-12 14:43:35 +02001180 goto err_put_addrmatch;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001181
1182 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001183 pvt->chancounts_dev = kzalloc(sizeof(*pvt->chancounts_dev),
1184 GFP_KERNEL);
1185 if (!pvt->chancounts_dev) {
Johan Hovold64e58372018-06-12 14:43:35 +02001186 rc = -ENOMEM;
1187 goto err_del_addrmatch;
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001188 }
1189
1190 pvt->chancounts_dev->type = &all_channel_counts_type;
1191 pvt->chancounts_dev->bus = mci->dev.bus;
1192 device_initialize(pvt->chancounts_dev);
1193 pvt->chancounts_dev->parent = &mci->dev;
1194 dev_set_name(pvt->chancounts_dev, "all_channel_counts");
1195 dev_set_drvdata(pvt->chancounts_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001196
Joe Perches956b9ba2012-04-29 17:08:39 -03001197 edac_dbg(1, "creating %s\n", dev_name(pvt->chancounts_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001198
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001199 rc = device_add(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001200 if (rc < 0)
Johan Hovold64e58372018-06-12 14:43:35 +02001201 goto err_put_chancounts;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001202 }
1203 return 0;
Johan Hovold64e58372018-06-12 14:43:35 +02001204
1205err_put_chancounts:
1206 put_device(pvt->chancounts_dev);
1207err_del_addrmatch:
1208 device_del(pvt->addrmatch_dev);
1209err_put_addrmatch:
1210 put_device(pvt->addrmatch_dev);
1211
1212 return rc;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001213}
1214
1215static void i7core_delete_sysfs_devices(struct mem_ctl_info *mci)
1216{
1217 struct i7core_pvt *pvt = mci->pvt_info;
1218
Joe Perches956b9ba2012-04-29 17:08:39 -03001219 edac_dbg(1, "\n");
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001220
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001221 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001222 device_del(pvt->chancounts_dev);
Johan Hovold64e58372018-06-12 14:43:35 +02001223 put_device(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001224 }
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001225 device_del(pvt->addrmatch_dev);
Johan Hovold64e58372018-06-12 14:43:35 +02001226 put_device(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001227}
1228
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001229/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001230 Device initialization routines: put/get, init/exit
1231 ****************************************************************************/
1232
1233/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001234 * i7core_put_all_devices 'put' all the devices that we have
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001235 * reserved via 'get'
1236 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001237static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001238{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001239 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001240
Joe Perches956b9ba2012-04-29 17:08:39 -03001241 edac_dbg(0, "\n");
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001242 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001243 struct pci_dev *pdev = i7core_dev->pdev[i];
1244 if (!pdev)
1245 continue;
Joe Perches956b9ba2012-04-29 17:08:39 -03001246 edac_dbg(0, "Removing dev %02x:%02x.%d\n",
1247 pdev->bus->number,
1248 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001249 pci_dev_put(pdev);
1250 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001251}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001252
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001253static void i7core_put_all_devices(void)
1254{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001255 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001256
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001257 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001258 i7core_put_devices(i7core_dev);
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -03001259 free_i7core_dev(i7core_dev);
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001260 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001261}
1262
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001263static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001264{
1265 struct pci_dev *pdev = NULL;
1266 int i;
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03001267
Keith Manntheybc2d7242009-09-03 00:05:05 -03001268 /*
David Sterbae7bf0682010-12-27 16:51:15 +01001269 * On Xeon 55xx, the Intel Quick Path Arch Generic Non-core pci buses
Keith Manntheybc2d7242009-09-03 00:05:05 -03001270 * aren't announced by acpi. So, we need to use a legacy scan probing
1271 * to detect them
1272 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001273 while (table && table->descr) {
1274 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1275 if (unlikely(!pdev)) {
1276 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1277 pcibios_scan_specific_bus(255-i);
1278 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001279 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001280 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001281 }
1282}
1283
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001284static unsigned i7core_pci_lastbus(void)
1285{
1286 int last_bus = 0, bus;
1287 struct pci_bus *b = NULL;
1288
1289 while ((b = pci_find_next_bus(b)) != NULL) {
1290 bus = b->number;
Joe Perches956b9ba2012-04-29 17:08:39 -03001291 edac_dbg(0, "Found bus %d\n", bus);
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001292 if (bus > last_bus)
1293 last_bus = bus;
1294 }
1295
Joe Perches956b9ba2012-04-29 17:08:39 -03001296 edac_dbg(0, "Last bus %d\n", last_bus);
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001297
1298 return last_bus;
1299}
1300
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001301/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001302 * i7core_get_all_devices Find and perform 'get' operation on the MCH's
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001303 * device/functions we want to reference for this driver
1304 *
1305 * Need to 'get' device 16 func 1 and func 2
1306 */
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001307static int i7core_get_onedevice(struct pci_dev **prev,
1308 const struct pci_id_table *table,
1309 const unsigned devno,
1310 const unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001311{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001312 struct i7core_dev *i7core_dev;
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001313 const struct pci_id_descr *dev_descr = &table->descr[devno];
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001314
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001315 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001316 u8 bus = 0;
1317 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001318
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001319 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001320 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001321
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001322 /*
David Mackey15ed1032012-04-17 11:30:52 -07001323 * On Xeon 55xx, the Intel QuickPath Arch Generic Non-core regs
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001324 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1325 * to probe for the alternate address in case of failure
1326 */
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001327 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev) {
1328 pci_dev_get(*prev); /* pci_get_device will put it */
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001329 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1330 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001331 }
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001332
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001333 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE &&
1334 !pdev) {
1335 pci_dev_get(*prev); /* pci_get_device will put it */
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001336 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1337 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1338 *prev);
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001339 }
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001340
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001341 if (!pdev) {
1342 if (*prev) {
1343 *prev = pdev;
1344 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001345 }
1346
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001347 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001348 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001349
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001350 if (devno == 0)
1351 return -ENODEV;
1352
Daniel J Bluemanab089372010-07-23 23:16:52 +01001353 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001354 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001355 dev_descr->dev, dev_descr->func,
1356 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001357
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001358 /* End of list, leave */
1359 return -ENODEV;
1360 }
1361 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001362
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001363 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001364
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001365 i7core_dev = get_i7core_dev(socket);
1366 if (!i7core_dev) {
Hidetoshi Seto848b2f72010-08-20 04:24:44 -03001367 i7core_dev = alloc_i7core_dev(socket, table);
Hidetoshi Seto28966372010-08-20 04:28:51 -03001368 if (!i7core_dev) {
1369 pci_dev_put(pdev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001370 return -ENOMEM;
Hidetoshi Seto28966372010-08-20 04:28:51 -03001371 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001372 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001373
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001374 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001375 i7core_printk(KERN_ERR,
1376 "Duplicated device for "
1377 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001378 bus, dev_descr->dev, dev_descr->func,
1379 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001380 pci_dev_put(pdev);
1381 return -ENODEV;
1382 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001383
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001384 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001385
1386 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001387 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1388 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001389 i7core_printk(KERN_ERR,
1390 "Device PCI ID %04x:%04x "
1391 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001392 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001393 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001394 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001395 return -ENODEV;
1396 }
1397
1398 /* Be sure that the device is enabled */
1399 if (unlikely(pci_enable_device(pdev) < 0)) {
1400 i7core_printk(KERN_ERR,
1401 "Couldn't enable "
1402 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001403 bus, dev_descr->dev, dev_descr->func,
1404 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001405 return -ENODEV;
1406 }
1407
Joe Perches956b9ba2012-04-29 17:08:39 -03001408 edac_dbg(0, "Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
1409 socket, bus, dev_descr->dev,
1410 dev_descr->func,
1411 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001412
Mauro Carvalho Chehaba3e15412010-08-21 08:52:41 -03001413 /*
1414 * As stated on drivers/pci/search.c, the reference count for
1415 * @from is always decremented if it is not %NULL. So, as we need
1416 * to get all devices up to null, we need to do a get for the device
1417 */
1418 pci_dev_get(pdev);
1419
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001420 *prev = pdev;
1421
1422 return 0;
1423}
1424
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001425static int i7core_get_all_devices(void)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001426{
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001427 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001428 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001429 const struct pci_id_table *table = pci_dev_table;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001430
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001431 last_bus = i7core_pci_lastbus();
1432
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001433 while (table && table->descr) {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001434 for (i = 0; i < table->n_devs; i++) {
1435 pdev = NULL;
1436 do {
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001437 rc = i7core_get_onedevice(&pdev, table, i,
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001438 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001439 if (rc < 0) {
1440 if (i == 0) {
1441 i = table->n_devs;
1442 break;
1443 }
1444 i7core_put_all_devices();
1445 return -ENODEV;
1446 }
1447 } while (pdev);
1448 }
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001449 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001450 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001451
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001452 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001453}
1454
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001455static int mci_bind_devs(struct mem_ctl_info *mci,
1456 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001457{
1458 struct i7core_pvt *pvt = mci->pvt_info;
1459 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001460 int i, func, slot;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001461 char *family;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001462
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001463 pvt->is_registered = false;
1464 pvt->enable_scrub = false;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001465 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001466 pdev = i7core_dev->pdev[i];
1467 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001468 continue;
1469
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001470 func = PCI_FUNC(pdev->devfn);
1471 slot = PCI_SLOT(pdev->devfn);
1472 if (slot == 3) {
1473 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001474 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001475 pvt->pci_mcr[func] = pdev;
1476 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1477 if (unlikely(func > MAX_CHAN_FUNC))
1478 goto error;
1479 pvt->pci_ch[slot - 4][func] = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001480 } else if (!slot && !func) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001481 pvt->pci_noncore = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001482
1483 /* Detect the processor family */
1484 switch (pdev->device) {
1485 case PCI_DEVICE_ID_INTEL_I7_NONCORE:
1486 family = "Xeon 35xx/ i7core";
1487 pvt->enable_scrub = false;
1488 break;
1489 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT:
1490 family = "i7-800/i5-700";
1491 pvt->enable_scrub = false;
1492 break;
1493 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE:
1494 family = "Xeon 34xx";
1495 pvt->enable_scrub = false;
1496 break;
1497 case PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT:
1498 family = "Xeon 55xx";
1499 pvt->enable_scrub = true;
1500 break;
1501 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2:
1502 family = "Xeon 56xx / i7-900";
1503 pvt->enable_scrub = true;
1504 break;
1505 default:
1506 family = "unknown";
1507 pvt->enable_scrub = false;
1508 }
Joe Perches956b9ba2012-04-29 17:08:39 -03001509 edac_dbg(0, "Detected a processor type %s\n", family);
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001510 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001511 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001512
Joe Perches956b9ba2012-04-29 17:08:39 -03001513 edac_dbg(0, "Associated fn %d.%d, dev = %p, socket %d\n",
1514 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1515 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001516
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001517 if (PCI_SLOT(pdev->devfn) == 3 &&
1518 PCI_FUNC(pdev->devfn) == 2)
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001519 pvt->is_registered = true;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001520 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001521
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001522 return 0;
1523
1524error:
1525 i7core_printk(KERN_ERR, "Device %d, function %d "
1526 "is out of the expected range\n",
1527 slot, func);
1528 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001529}
1530
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001531/****************************************************************************
1532 Error check routines
1533 ****************************************************************************/
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001534
1535static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001536 const int chan,
1537 const int new0,
1538 const int new1,
1539 const int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001540{
1541 struct i7core_pvt *pvt = mci->pvt_info;
1542 int add0 = 0, add1 = 0, add2 = 0;
1543 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001544 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001545 /* Updates CE counters */
1546
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001547 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1548 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1549 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001550
1551 if (add2 < 0)
1552 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001553 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001554
1555 if (add1 < 0)
1556 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001557 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001558
1559 if (add0 < 0)
1560 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001561 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001562 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001563 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001564
1565 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001566 pvt->rdimm_last_ce_count[chan][2] = new2;
1567 pvt->rdimm_last_ce_count[chan][1] = new1;
1568 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001569
1570 /*updated the edac core */
1571 if (add0 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001572 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add0,
1573 0, 0, 0,
1574 chan, 0, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001575 if (add1 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001576 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add1,
1577 0, 0, 0,
1578 chan, 1, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001579 if (add2 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001580 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add2,
1581 0, 0, 0,
1582 chan, 2, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001583}
1584
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001585static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001586{
1587 struct i7core_pvt *pvt = mci->pvt_info;
1588 u32 rcv[3][2];
1589 int i, new0, new1, new2;
1590
1591 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001592 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001593 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001594 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001595 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001596 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001597 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001598 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001599 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001600 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001601 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001602 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001603 &rcv[2][1]);
1604 for (i = 0 ; i < 3; i++) {
Joe Perches956b9ba2012-04-29 17:08:39 -03001605 edac_dbg(3, "MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1606 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001607 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001608 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001609 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1610 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1611 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1612 } else {
1613 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1614 DIMM_BOT_COR_ERR(rcv[i][0]);
1615 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1616 DIMM_BOT_COR_ERR(rcv[i][1]);
1617 new2 = 0;
1618 }
1619
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001620 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001621 }
1622}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001623
1624/* This function is based on the device 3 function 4 registers as described on:
1625 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1626 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1627 * also available at:
1628 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1629 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001630static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001631{
1632 struct i7core_pvt *pvt = mci->pvt_info;
1633 u32 rcv1, rcv0;
1634 int new0, new1, new2;
1635
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001636 if (!pvt->pci_mcr[4]) {
Joe Perches956b9ba2012-04-29 17:08:39 -03001637 edac_dbg(0, "MCR registers not found\n");
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001638 return;
1639 }
1640
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001641 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001642 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1643 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001644
1645 /* Store the new values */
1646 new2 = DIMM2_COR_ERR(rcv1);
1647 new1 = DIMM1_COR_ERR(rcv0);
1648 new0 = DIMM0_COR_ERR(rcv0);
1649
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001650 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001651 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001652 /* Updates CE counters */
1653 int add0, add1, add2;
1654
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001655 add2 = new2 - pvt->udimm_last_ce_count[2];
1656 add1 = new1 - pvt->udimm_last_ce_count[1];
1657 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001658
1659 if (add2 < 0)
1660 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001661 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001662
1663 if (add1 < 0)
1664 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001665 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001666
1667 if (add0 < 0)
1668 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001669 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001670
1671 if (add0 | add1 | add2)
1672 i7core_printk(KERN_ERR, "New Corrected error(s): "
1673 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1674 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001675 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001676 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001677
1678 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001679 pvt->udimm_last_ce_count[2] = new2;
1680 pvt->udimm_last_ce_count[1] = new1;
1681 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001682}
1683
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001684/*
1685 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1686 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001687 * Nehalem are defined as family 0x06, model 0x1a
1688 *
1689 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001690 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001691 * m->status MSR_IA32_MC8_STATUS
1692 * m->addr MSR_IA32_MC8_ADDR
1693 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001694 * In the case of Nehalem, the error information is masked at .status and .misc
1695 * fields
1696 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001697static void i7core_mce_output_error(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001698 const struct mce *m)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001699{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001700 struct i7core_pvt *pvt = mci->pvt_info;
Jean Delvaref1189202014-02-24 17:13:58 +01001701 char *optype, *err;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001702 enum hw_event_mc_err_type tp_event;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001703 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001704 bool uncorrected_error = m->mcgstatus & 1ll << 61;
1705 bool ripv = m->mcgstatus & 1;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001706 u32 optypenum = (m->status >> 4) & 0x07;
Mathias Krause8cf2d232011-08-18 09:17:00 +02001707 u32 core_err_cnt = (m->status >> 38) & 0x7fff;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001708 u32 dimm = (m->misc >> 16) & 0x3;
1709 u32 channel = (m->misc >> 18) & 0x3;
1710 u32 syndrome = m->misc >> 32;
1711 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001712
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001713 if (uncorrected_error) {
Tony Luckd2afa592018-09-28 14:39:34 -07001714 core_err_cnt = 1;
Jean Delvaref1189202014-02-24 17:13:58 +01001715 if (ripv)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001716 tp_event = HW_EVENT_ERR_FATAL;
Jean Delvaref1189202014-02-24 17:13:58 +01001717 else
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001718 tp_event = HW_EVENT_ERR_UNCORRECTED;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001719 } else {
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001720 tp_event = HW_EVENT_ERR_CORRECTED;
1721 }
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001722
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001723 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001724 case 0:
1725 optype = "generic undef request";
1726 break;
1727 case 1:
1728 optype = "read error";
1729 break;
1730 case 2:
1731 optype = "write error";
1732 break;
1733 case 3:
1734 optype = "addr/cmd error";
1735 break;
1736 case 4:
1737 optype = "scrubbing error";
1738 break;
1739 default:
1740 optype = "reserved";
1741 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001742 }
1743
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001744 switch (errnum) {
1745 case 16:
1746 err = "read ECC error";
1747 break;
1748 case 17:
1749 err = "RAS ECC error";
1750 break;
1751 case 18:
1752 err = "write parity error";
1753 break;
1754 case 19:
1755 err = "redundacy loss";
1756 break;
1757 case 20:
1758 err = "reserved";
1759 break;
1760 case 21:
1761 err = "memory range error";
1762 break;
1763 case 22:
1764 err = "RTID out of range";
1765 break;
1766 case 23:
1767 err = "address parity error";
1768 break;
1769 case 24:
1770 err = "byte enable parity error";
1771 break;
1772 default:
1773 err = "unknown";
1774 }
1775
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001776 /*
1777 * Call the helper to output message
1778 * FIXME: what to do if core_err_cnt > 1? Currently, it generates
1779 * only one event
1780 */
1781 if (uncorrected_error || !pvt->is_registered)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001782 edac_mc_handle_error(tp_event, mci, core_err_cnt,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001783 m->addr >> PAGE_SHIFT,
1784 m->addr & ~PAGE_MASK,
1785 syndrome,
1786 channel, dimm, -1,
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001787 err, optype);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001788}
1789
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001790/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001791 * i7core_check_error Retrieve and process errors reported by the
1792 * hardware. Called by the Core module.
1793 */
Tony Luck53595342016-04-28 07:52:11 -07001794static void i7core_check_error(struct mem_ctl_info *mci, struct mce *m)
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001795{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001796 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001797
Tony Luck53595342016-04-28 07:52:11 -07001798 i7core_mce_output_error(mci, m);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001799
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001800 /*
1801 * Now, let's increment CE error counts
1802 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001803 if (!pvt->is_registered)
1804 i7core_udimm_check_mc_ecc_err(mci);
1805 else
1806 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001807}
1808
1809/*
Tony Luck53595342016-04-28 07:52:11 -07001810 * Check that logging is enabled and that this is the right type
1811 * of error for us to handle.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001812 */
Borislav Petkov4140c542011-07-18 11:24:46 -03001813static int i7core_mce_check_error(struct notifier_block *nb, unsigned long val,
1814 void *data)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001815{
Borislav Petkov4140c542011-07-18 11:24:46 -03001816 struct mce *mce = (struct mce *)data;
1817 struct i7core_dev *i7_dev;
1818 struct mem_ctl_info *mci;
1819 struct i7core_pvt *pvt;
1820
1821 i7_dev = get_i7core_dev(mce->socketid);
1822 if (!i7_dev)
Tony Luckc4fc1952016-04-29 15:42:25 +02001823 return NOTIFY_DONE;
Borislav Petkov4140c542011-07-18 11:24:46 -03001824
1825 mci = i7_dev->mci;
1826 pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001827
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001828 /*
1829 * Just let mcelog handle it if the error is
1830 * outside the memory controller
1831 */
1832 if (((mce->status & 0xffff) >> 7) != 1)
Borislav Petkov4140c542011-07-18 11:24:46 -03001833 return NOTIFY_DONE;
Mauro Carvalho Chehab8a2f1182009-07-15 19:01:08 -03001834
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001835 /* Bank 8 registers are the only ones that we know how to handle */
1836 if (mce->bank != 8)
Borislav Petkov4140c542011-07-18 11:24:46 -03001837 return NOTIFY_DONE;
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001838
Tony Luck53595342016-04-28 07:52:11 -07001839 i7core_check_error(mci, mce);
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001840
David Sterbae7bf0682010-12-27 16:51:15 +01001841 /* Advise mcelog that the errors were handled */
Borislav Petkov4140c542011-07-18 11:24:46 -03001842 return NOTIFY_STOP;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001843}
1844
Borislav Petkov4140c542011-07-18 11:24:46 -03001845static struct notifier_block i7_mce_dec = {
1846 .notifier_call = i7core_mce_check_error,
1847};
1848
Nils Carlson535e9c72011-08-08 06:21:26 -03001849struct memdev_dmi_entry {
1850 u8 type;
1851 u8 length;
1852 u16 handle;
1853 u16 phys_mem_array_handle;
1854 u16 mem_err_info_handle;
1855 u16 total_width;
1856 u16 data_width;
1857 u16 size;
1858 u8 form;
1859 u8 device_set;
1860 u8 device_locator;
1861 u8 bank_locator;
1862 u8 memory_type;
1863 u16 type_detail;
1864 u16 speed;
1865 u8 manufacturer;
1866 u8 serial_number;
1867 u8 asset_tag;
1868 u8 part_number;
1869 u8 attributes;
1870 u32 extended_size;
1871 u16 conf_mem_clk_speed;
1872} __attribute__((__packed__));
1873
1874
1875/*
1876 * Decode the DRAM Clock Frequency, be paranoid, make sure that all
1877 * memory devices show the same speed, and if they don't then consider
1878 * all speeds to be invalid.
1879 */
1880static void decode_dclk(const struct dmi_header *dh, void *_dclk_freq)
1881{
1882 int *dclk_freq = _dclk_freq;
1883 u16 dmi_mem_clk_speed;
1884
1885 if (*dclk_freq == -1)
1886 return;
1887
1888 if (dh->type == DMI_ENTRY_MEM_DEVICE) {
1889 struct memdev_dmi_entry *memdev_dmi_entry =
1890 (struct memdev_dmi_entry *)dh;
1891 unsigned long conf_mem_clk_speed_offset =
1892 (unsigned long)&memdev_dmi_entry->conf_mem_clk_speed -
1893 (unsigned long)&memdev_dmi_entry->type;
1894 unsigned long speed_offset =
1895 (unsigned long)&memdev_dmi_entry->speed -
1896 (unsigned long)&memdev_dmi_entry->type;
1897
1898 /* Check that a DIMM is present */
1899 if (memdev_dmi_entry->size == 0)
1900 return;
1901
1902 /*
1903 * Pick the configured speed if it's available, otherwise
1904 * pick the DIMM speed, or we don't have a speed.
1905 */
1906 if (memdev_dmi_entry->length > conf_mem_clk_speed_offset) {
1907 dmi_mem_clk_speed =
1908 memdev_dmi_entry->conf_mem_clk_speed;
1909 } else if (memdev_dmi_entry->length > speed_offset) {
1910 dmi_mem_clk_speed = memdev_dmi_entry->speed;
1911 } else {
1912 *dclk_freq = -1;
1913 return;
1914 }
1915
1916 if (*dclk_freq == 0) {
1917 /* First pass, speed was 0 */
1918 if (dmi_mem_clk_speed > 0) {
1919 /* Set speed if a valid speed is read */
1920 *dclk_freq = dmi_mem_clk_speed;
1921 } else {
1922 /* Otherwise we don't have a valid speed */
1923 *dclk_freq = -1;
1924 }
1925 } else if (*dclk_freq > 0 &&
1926 *dclk_freq != dmi_mem_clk_speed) {
1927 /*
1928 * If we have a speed, check that all DIMMS are the same
1929 * speed, otherwise set the speed as invalid.
1930 */
1931 *dclk_freq = -1;
1932 }
1933 }
1934}
1935
1936/*
1937 * The default DCLK frequency is used as a fallback if we
1938 * fail to find anything reliable in the DMI. The value
1939 * is taken straight from the datasheet.
1940 */
1941#define DEFAULT_DCLK_FREQ 800
1942
1943static int get_dclk_freq(void)
1944{
1945 int dclk_freq = 0;
1946
1947 dmi_walk(decode_dclk, (void *)&dclk_freq);
1948
1949 if (dclk_freq < 1)
1950 return DEFAULT_DCLK_FREQ;
1951
1952 return dclk_freq;
1953}
1954
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001955/*
1956 * set_sdram_scrub_rate This routine sets byte/sec bandwidth scrub rate
1957 * to hardware according to SCRUBINTERVAL formula
1958 * found in datasheet.
1959 */
1960static int set_sdram_scrub_rate(struct mem_ctl_info *mci, u32 new_bw)
1961{
1962 struct i7core_pvt *pvt = mci->pvt_info;
1963 struct pci_dev *pdev;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001964 u32 dw_scrub;
1965 u32 dw_ssr;
1966
1967 /* Get data from the MC register, function 2 */
1968 pdev = pvt->pci_mcr[2];
1969 if (!pdev)
1970 return -ENODEV;
1971
1972 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &dw_scrub);
1973
1974 if (new_bw == 0) {
1975 /* Prepare to disable petrol scrub */
1976 dw_scrub &= ~STARTSCRUB;
1977 /* Stop the patrol scrub engine */
Nils Carlson535e9c72011-08-08 06:21:26 -03001978 write_and_test(pdev, MC_SCRUB_CONTROL,
1979 dw_scrub & ~SCRUBINTERVAL_MASK);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001980
1981 /* Get current status of scrub rate and set bit to disable */
1982 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
1983 dw_ssr &= ~SSR_MODE_MASK;
1984 dw_ssr |= SSR_MODE_DISABLE;
1985 } else {
Nils Carlson535e9c72011-08-08 06:21:26 -03001986 const int cache_line_size = 64;
1987 const u32 freq_dclk_mhz = pvt->dclk_freq;
1988 unsigned long long scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001989 /*
1990 * Translate the desired scrub rate to a register value and
Nils Carlson535e9c72011-08-08 06:21:26 -03001991 * program the corresponding register value.
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001992 */
Nils Carlson535e9c72011-08-08 06:21:26 -03001993 scrub_interval = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03001994 cache_line_size * 1000000;
1995 do_div(scrub_interval, new_bw);
Nils Carlson535e9c72011-08-08 06:21:26 -03001996
1997 if (!scrub_interval || scrub_interval > SCRUBINTERVAL_MASK)
1998 return -EINVAL;
1999
2000 dw_scrub = SCRUBINTERVAL_MASK & scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002001
2002 /* Start the patrol scrub engine */
2003 pci_write_config_dword(pdev, MC_SCRUB_CONTROL,
2004 STARTSCRUB | dw_scrub);
2005
2006 /* Get current status of scrub rate and set bit to enable */
2007 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
2008 dw_ssr &= ~SSR_MODE_MASK;
2009 dw_ssr |= SSR_MODE_ENABLE;
2010 }
2011 /* Disable or enable scrubbing */
2012 pci_write_config_dword(pdev, MC_SSRCONTROL, dw_ssr);
2013
2014 return new_bw;
2015}
2016
2017/*
2018 * get_sdram_scrub_rate This routine convert current scrub rate value
David Mackey15ed1032012-04-17 11:30:52 -07002019 * into byte/sec bandwidth according to
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002020 * SCRUBINTERVAL formula found in datasheet.
2021 */
2022static int get_sdram_scrub_rate(struct mem_ctl_info *mci)
2023{
2024 struct i7core_pvt *pvt = mci->pvt_info;
2025 struct pci_dev *pdev;
2026 const u32 cache_line_size = 64;
Nils Carlson535e9c72011-08-08 06:21:26 -03002027 const u32 freq_dclk_mhz = pvt->dclk_freq;
2028 unsigned long long scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002029 u32 scrubval;
2030
2031 /* Get data from the MC register, function 2 */
2032 pdev = pvt->pci_mcr[2];
2033 if (!pdev)
2034 return -ENODEV;
2035
2036 /* Get current scrub control data */
2037 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &scrubval);
2038
2039 /* Mask highest 8-bits to 0 */
Nils Carlson535e9c72011-08-08 06:21:26 -03002040 scrubval &= SCRUBINTERVAL_MASK;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002041 if (!scrubval)
2042 return 0;
2043
2044 /* Calculate scrub rate value into byte/sec bandwidth */
Nils Carlson535e9c72011-08-08 06:21:26 -03002045 scrub_rate = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03002046 1000000 * cache_line_size;
2047 do_div(scrub_rate, scrubval);
Nils Carlson535e9c72011-08-08 06:21:26 -03002048 return (int)scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002049}
2050
2051static void enable_sdram_scrub_setting(struct mem_ctl_info *mci)
2052{
2053 struct i7core_pvt *pvt = mci->pvt_info;
2054 u32 pci_lock;
2055
2056 /* Unlock writes to pci registers */
2057 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2058 pci_lock &= ~0x3;
2059 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2060 pci_lock | MC_CFG_UNLOCK);
2061
2062 mci->set_sdram_scrub_rate = set_sdram_scrub_rate;
2063 mci->get_sdram_scrub_rate = get_sdram_scrub_rate;
2064}
2065
2066static void disable_sdram_scrub_setting(struct mem_ctl_info *mci)
2067{
2068 struct i7core_pvt *pvt = mci->pvt_info;
2069 u32 pci_lock;
2070
2071 /* Lock writes to pci registers */
2072 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2073 pci_lock &= ~0x3;
2074 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2075 pci_lock | MC_CFG_LOCK);
2076}
2077
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002078static void i7core_pci_ctl_create(struct i7core_pvt *pvt)
2079{
2080 pvt->i7core_pci = edac_pci_create_generic_ctl(
2081 &pvt->i7core_dev->pdev[0]->dev,
2082 EDAC_MOD_STR);
2083 if (unlikely(!pvt->i7core_pci))
Mauro Carvalho Chehabf9902f22010-08-21 09:42:05 -03002084 i7core_printk(KERN_WARNING,
2085 "Unable to setup PCI error report via EDAC\n");
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002086}
2087
2088static void i7core_pci_ctl_release(struct i7core_pvt *pvt)
2089{
2090 if (likely(pvt->i7core_pci))
2091 edac_pci_release_generic_ctl(pvt->i7core_pci);
2092 else
2093 i7core_printk(KERN_ERR,
2094 "Couldn't find mem_ctl_info for socket %d\n",
2095 pvt->i7core_dev->socket);
2096 pvt->i7core_pci = NULL;
2097}
2098
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002099static void i7core_unregister_mci(struct i7core_dev *i7core_dev)
2100{
2101 struct mem_ctl_info *mci = i7core_dev->mci;
2102 struct i7core_pvt *pvt;
2103
2104 if (unlikely(!mci || !mci->pvt_info)) {
Joe Perches956b9ba2012-04-29 17:08:39 -03002105 edac_dbg(0, "MC: dev = %p\n", &i7core_dev->pdev[0]->dev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002106
2107 i7core_printk(KERN_ERR, "Couldn't find mci handler\n");
2108 return;
2109 }
2110
2111 pvt = mci->pvt_info;
2112
Joe Perches956b9ba2012-04-29 17:08:39 -03002113 edac_dbg(0, "MC: mci = %p, dev = %p\n", mci, &i7core_dev->pdev[0]->dev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002114
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002115 /* Disable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002116 if (pvt->enable_scrub)
2117 disable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002118
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002119 /* Disable EDAC polling */
2120 i7core_pci_ctl_release(pvt);
2121
2122 /* Remove MC sysfs nodes */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002123 i7core_delete_sysfs_devices(mci);
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002124 edac_mc_del_mc(mci->pdev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002125
Joe Perches956b9ba2012-04-29 17:08:39 -03002126 edac_dbg(1, "%s: free mci struct\n", mci->ctl_name);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002127 kfree(mci->ctl_name);
2128 edac_mc_free(mci);
2129 i7core_dev->mci = NULL;
2130}
2131
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002132static int i7core_register_mci(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002133{
2134 struct mem_ctl_info *mci;
2135 struct i7core_pvt *pvt;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002136 int rc;
2137 struct edac_mc_layer layers[2];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002138
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002139 /* allocate a new MC control structure */
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002140
2141 layers[0].type = EDAC_MC_LAYER_CHANNEL;
2142 layers[0].size = NUM_CHANS;
2143 layers[0].is_virt_csrow = false;
2144 layers[1].type = EDAC_MC_LAYER_SLOT;
2145 layers[1].size = MAX_DIMMS;
2146 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03002147 mci = edac_mc_alloc(i7core_dev->socket, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002148 sizeof(*pvt));
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002149 if (unlikely(!mci))
2150 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002151
Joe Perches956b9ba2012-04-29 17:08:39 -03002152 edac_dbg(0, "MC: mci = %p, dev = %p\n", mci, &i7core_dev->pdev[0]->dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002153
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002154 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002155 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03002156
Mauro Carvalho Chehab6d37d242010-08-20 12:48:26 -03002157 /* Associates i7core_dev and mci for future usage */
2158 pvt->i7core_dev = i7core_dev;
2159 i7core_dev->mci = mci;
2160
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002161 /*
2162 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
2163 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
2164 * memory channels
2165 */
2166 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002167 mci->edac_ctl_cap = EDAC_FLAG_NONE;
2168 mci->edac_cap = EDAC_FLAG_NONE;
2169 mci->mod_name = "i7core_edac.c";
2170 mci->mod_ver = I7CORE_REVISION;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002171 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d",
2172 i7core_dev->socket);
2173 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002174 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03002175
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002176 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002177 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002178 if (unlikely(rc < 0))
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002179 goto fail0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002180
Hidetoshi Seto59398132010-08-20 04:28:25 -03002181
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002182 /* Get dimm basic config */
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -03002183 get_dimm_config(mci);
Hidetoshi Seto59398132010-08-20 04:28:25 -03002184 /* record ptr to the generic device */
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002185 mci->pdev = &i7core_dev->pdev[0]->dev;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002186
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002187 /* Enable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002188 if (pvt->enable_scrub)
2189 enable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002190
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002191 /* add this new MC control structure to EDAC's list of MCs */
Takashi Iwai2eace182015-02-04 11:48:55 +01002192 if (unlikely(edac_mc_add_mc_with_groups(mci, i7core_dev_groups))) {
Joe Perches956b9ba2012-04-29 17:08:39 -03002193 edac_dbg(0, "MC: failed edac_mc_add_mc()\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002194 /* FIXME: perhaps some code should go here that disables error
2195 * reporting if we just enabled it
2196 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002197
2198 rc = -EINVAL;
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002199 goto fail0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002200 }
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002201 if (i7core_create_sysfs_devices(mci)) {
Joe Perches956b9ba2012-04-29 17:08:39 -03002202 edac_dbg(0, "MC: failed to create sysfs nodes\n");
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002203 edac_mc_del_mc(mci->pdev);
2204 rc = -EINVAL;
2205 goto fail0;
2206 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002207
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002208 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002209 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002210 pvt->inject.dimm = -1;
2211 pvt->inject.rank = -1;
2212 pvt->inject.bank = -1;
2213 pvt->inject.page = -1;
2214 pvt->inject.col = -1;
2215
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002216 /* allocating generic PCI control info */
2217 i7core_pci_ctl_create(pvt);
2218
Nils Carlson535e9c72011-08-08 06:21:26 -03002219 /* DCLK for scrub rate setting */
2220 pvt->dclk_freq = get_dclk_freq();
2221
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002222 return 0;
2223
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002224fail0:
2225 kfree(mci->ctl_name);
2226 edac_mc_free(mci);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002227 i7core_dev->mci = NULL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002228 return rc;
2229}
2230
2231/*
2232 * i7core_probe Probe for ONE instance of device to see if it is
2233 * present.
2234 * return:
2235 * 0 for FOUND a device
2236 * < 0 for error code
2237 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002238
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002239static int i7core_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002240{
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002241 int rc, count = 0;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002242 struct i7core_dev *i7core_dev;
2243
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002244 /* get the pci devices we want to reserve for our use */
2245 mutex_lock(&i7core_edac_lock);
2246
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002247 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002248 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002249 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002250 if (unlikely(probed >= 1)) {
2251 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehab76a7bd82010-10-24 11:36:19 -02002252 return -ENODEV;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002253 }
2254 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03002255
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002256 rc = i7core_get_all_devices();
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002257 if (unlikely(rc < 0))
2258 goto fail0;
2259
2260 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002261 count++;
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002262 rc = i7core_register_mci(i7core_dev);
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002263 if (unlikely(rc < 0))
2264 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002265 }
2266
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002267 /*
2268 * Nehalem-EX uses a different memory controller. However, as the
2269 * memory controller is not visible on some Nehalem/Nehalem-EP, we
2270 * need to indirectly probe via a X58 PCI device. The same devices
2271 * are found on (some) Nehalem-EX. So, on those machines, the
2272 * probe routine needs to return -ENODEV, as the actual Memory
2273 * Controller registers won't be detected.
2274 */
2275 if (!count) {
2276 rc = -ENODEV;
2277 goto fail1;
2278 }
2279
2280 i7core_printk(KERN_INFO,
2281 "Driver loaded, %d memory controller(s) found.\n",
2282 count);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03002283
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002284 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002285 return 0;
2286
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002287fail1:
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002288 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2289 i7core_unregister_mci(i7core_dev);
2290
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03002291 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002292fail0:
2293 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002294 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002295}
2296
2297/*
2298 * i7core_remove destructor for one instance of device
2299 *
2300 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002301static void i7core_remove(struct pci_dev *pdev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002302{
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002303 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002304
Joe Perches956b9ba2012-04-29 17:08:39 -03002305 edac_dbg(0, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002306
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002307 /*
2308 * we have a trouble here: pdev value for removal will be wrong, since
2309 * it will point to the X58 register used to detect that the machine
2310 * is a Nehalem or upper design. However, due to the way several PCI
2311 * devices are grouped together to provide MC functionality, we need
2312 * to use a different method for releasing the devices
2313 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002314
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002315 mutex_lock(&i7core_edac_lock);
Hidetoshi Seto71fe0172010-08-20 04:29:47 -03002316
2317 if (unlikely(!probed)) {
2318 mutex_unlock(&i7core_edac_lock);
2319 return;
2320 }
2321
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002322 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2323 i7core_unregister_mci(i7core_dev);
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002324
2325 /* Release PCI resources */
2326 i7core_put_all_devices();
2327
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002328 probed--;
2329
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002330 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002331}
2332
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002333MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2334
2335/*
2336 * i7core_driver pci_driver structure for this module
2337 *
2338 */
2339static struct pci_driver i7core_driver = {
2340 .name = "i7core_edac",
2341 .probe = i7core_probe,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002342 .remove = i7core_remove,
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002343 .id_table = i7core_pci_tbl,
2344};
2345
2346/*
2347 * i7core_init Module entry function
2348 * Try to initialize this module for its devices
2349 */
2350static int __init i7core_init(void)
2351{
2352 int pci_rc;
2353
Joe Perches956b9ba2012-04-29 17:08:39 -03002354 edac_dbg(2, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002355
2356 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2357 opstate_init();
2358
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03002359 if (use_pci_fixup)
2360 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002361
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002362 pci_rc = pci_register_driver(&i7core_driver);
2363
Chen Gonge35fca42012-05-08 20:40:12 -03002364 if (pci_rc >= 0) {
2365 mce_register_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002366 return 0;
Chen Gonge35fca42012-05-08 20:40:12 -03002367 }
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002368
2369 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2370 pci_rc);
2371
2372 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002373}
2374
2375/*
2376 * i7core_exit() Module exit function
2377 * Unregister the driver
2378 */
2379static void __exit i7core_exit(void)
2380{
Joe Perches956b9ba2012-04-29 17:08:39 -03002381 edac_dbg(2, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002382 pci_unregister_driver(&i7core_driver);
Chen Gonge35fca42012-05-08 20:40:12 -03002383 mce_unregister_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002384}
2385
2386module_init(i7core_init);
2387module_exit(i7core_exit);
2388
2389MODULE_LICENSE("GPL");
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02002390MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002391MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2392MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2393 I7CORE_REVISION);
2394
2395module_param(edac_op_state, int, 0444);
2396MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");