blob: a71cca6eeb3334da908ce185132e70d076b4392c [file] [log] [blame]
Thomas Gleixner12237552019-05-27 08:55:19 +02001// SPDX-License-Identifier: GPL-2.0-only
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -03002/* Intel i7 core/Nehalem Memory Controller kernel module
3 *
David Sterbae7bf0682010-12-27 16:51:15 +01004 * This driver supports the memory controllers found on the Intel
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -03005 * processor families i7core, i7core 7xx/8xx, i5core, Xeon 35xx,
6 * Xeon 55xx and Xeon 56xx also known as Nehalem, Nehalem-EP, Lynnfield
7 * and Westmere-EP.
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03008 *
Mauro Carvalho Chehab52707f92010-05-18 20:43:52 -03009 * Copyright (c) 2009-2010 by:
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -020010 * Mauro Carvalho Chehab
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030011 *
12 * Red Hat Inc. http://www.redhat.com
13 *
14 * Forked and adapted from the i5400_edac driver
15 *
16 * Based on the following public Intel datasheets:
17 * Intel Core i7 Processor Extreme Edition and Intel Core i7 Processor
18 * Datasheet, Volume 2:
19 * http://download.intel.com/design/processor/datashts/320835.pdf
20 * Intel Xeon Processor 5500 Series Datasheet Volume 2
21 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
22 * also available at:
23 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
24 */
25
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030026#include <linux/module.h>
27#include <linux/init.h>
28#include <linux/pci.h>
29#include <linux/pci_ids.h>
30#include <linux/slab.h>
Randy Dunlap3b918c12009-11-08 01:36:40 -020031#include <linux/delay.h>
Nils Carlson535e9c72011-08-08 06:21:26 -030032#include <linux/dmi.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030033#include <linux/edac.h>
34#include <linux/mmzone.h>
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030035#include <linux/smp.h>
Borislav Petkov4140c542011-07-18 11:24:46 -030036#include <asm/mce.h>
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -030037#include <asm/processor.h>
Sedat Dilek4fad8092011-09-21 23:44:52 -030038#include <asm/div64.h>
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030039
Mauro Carvalho Chehab78d88e82016-10-29 15:16:34 -020040#include "edac_module.h"
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030041
Mauro Carvalho Chehab18c29002010-08-10 18:33:27 -030042/* Static vars */
43static LIST_HEAD(i7core_edac_list);
44static DEFINE_MUTEX(i7core_edac_lock);
45static int probed;
46
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -030047static int use_pci_fixup;
48module_param(use_pci_fixup, int, 0444);
49MODULE_PARM_DESC(use_pci_fixup, "Enable PCI fixup to seek for hidden devices");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030050/*
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -030051 * This is used for Nehalem-EP and Nehalem-EX devices, where the non-core
52 * registers start at bus 255, and are not reported by BIOS.
53 * We currently find devices with only 2 sockets. In order to support more QPI
54 * Quick Path Interconnect, just increment this number.
55 */
56#define MAX_SOCKET_BUSES 2
57
58
59/*
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030060 * Alter this version for the module when modifications are made
61 */
Michal Marek152ba392011-04-01 12:41:20 +020062#define I7CORE_REVISION " Ver: 1.0.0"
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030063#define EDAC_MOD_STR "i7core_edac"
64
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030065/*
66 * Debug macros
67 */
68#define i7core_printk(level, fmt, arg...) \
69 edac_printk(level, "i7core", fmt, ##arg)
70
71#define i7core_mc_printk(mci, level, fmt, arg...) \
72 edac_mc_chipset_printk(mci, level, "i7core", fmt, ##arg)
73
74/*
75 * i7core Memory Controller Registers
76 */
77
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030078 /* OFFSETS for Device 0 Function 0 */
79
80#define MC_CFG_CONTROL 0x90
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -030081 #define MC_CFG_UNLOCK 0x02
82 #define MC_CFG_LOCK 0x00
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -030083
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -030084 /* OFFSETS for Device 3 Function 0 */
85
86#define MC_CONTROL 0x48
87#define MC_STATUS 0x4c
88#define MC_MAX_DOD 0x64
89
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030090/*
David Mackey15ed1032012-04-17 11:30:52 -070091 * OFFSETS for Device 3 Function 4, as indicated on Xeon 5500 datasheet:
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -030092 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
93 */
94
95#define MC_TEST_ERR_RCV1 0x60
96 #define DIMM2_COR_ERR(r) ((r) & 0x7fff)
97
98#define MC_TEST_ERR_RCV0 0x64
99 #define DIMM1_COR_ERR(r) (((r) >> 16) & 0x7fff)
100 #define DIMM0_COR_ERR(r) ((r) & 0x7fff)
101
David Mackey15ed1032012-04-17 11:30:52 -0700102/* OFFSETS for Device 3 Function 2, as indicated on Xeon 5500 datasheet */
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -0300103#define MC_SSRCONTROL 0x48
104 #define SSR_MODE_DISABLE 0x00
105 #define SSR_MODE_ENABLE 0x01
106 #define SSR_MODE_MASK 0x03
107
108#define MC_SCRUB_CONTROL 0x4c
109 #define STARTSCRUB (1 << 24)
Nils Carlson535e9c72011-08-08 06:21:26 -0300110 #define SCRUBINTERVAL_MASK 0xffffff
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -0300111
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300112#define MC_COR_ECC_CNT_0 0x80
113#define MC_COR_ECC_CNT_1 0x84
114#define MC_COR_ECC_CNT_2 0x88
115#define MC_COR_ECC_CNT_3 0x8c
116#define MC_COR_ECC_CNT_4 0x90
117#define MC_COR_ECC_CNT_5 0x94
118
119#define DIMM_TOP_COR_ERR(r) (((r) >> 16) & 0x7fff)
120#define DIMM_BOT_COR_ERR(r) ((r) & 0x7fff)
121
122
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300123 /* OFFSETS for Devices 4,5 and 6 Function 0 */
124
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300125#define MC_CHANNEL_DIMM_INIT_PARAMS 0x58
126 #define THREE_DIMMS_PRESENT (1 << 24)
127 #define SINGLE_QUAD_RANK_PRESENT (1 << 23)
128 #define QUAD_RANK_PRESENT (1 << 22)
129 #define REGISTERED_DIMM (1 << 15)
130
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300131#define MC_CHANNEL_MAPPER 0x60
132 #define RDLCH(r, ch) ((((r) >> (3 + (ch * 6))) & 0x07) - 1)
133 #define WRLCH(r, ch) ((((r) >> (ch * 6)) & 0x07) - 1)
134
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300135#define MC_CHANNEL_RANK_PRESENT 0x7c
136 #define RANK_PRESENT_MASK 0xffff
137
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300138#define MC_CHANNEL_ADDR_MATCH 0xf0
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300139#define MC_CHANNEL_ERROR_MASK 0xf8
140#define MC_CHANNEL_ERROR_INJECT 0xfc
141 #define INJECT_ADDR_PARITY 0x10
142 #define INJECT_ECC 0x08
143 #define MASK_CACHELINE 0x06
144 #define MASK_FULL_CACHELINE 0x06
145 #define MASK_MSB32_CACHELINE 0x04
146 #define MASK_LSB32_CACHELINE 0x02
147 #define NO_MASK_CACHELINE 0x00
148 #define REPEAT_EN 0x01
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300149
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300150 /* OFFSETS for Devices 4,5 and 6 Function 1 */
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300151
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300152#define MC_DOD_CH_DIMM0 0x48
153#define MC_DOD_CH_DIMM1 0x4c
154#define MC_DOD_CH_DIMM2 0x50
155 #define RANKOFFSET_MASK ((1 << 12) | (1 << 11) | (1 << 10))
156 #define RANKOFFSET(x) ((x & RANKOFFSET_MASK) >> 10)
157 #define DIMM_PRESENT_MASK (1 << 9)
158 #define DIMM_PRESENT(x) (((x) & DIMM_PRESENT_MASK) >> 9)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300159 #define MC_DOD_NUMBANK_MASK ((1 << 8) | (1 << 7))
160 #define MC_DOD_NUMBANK(x) (((x) & MC_DOD_NUMBANK_MASK) >> 7)
161 #define MC_DOD_NUMRANK_MASK ((1 << 6) | (1 << 5))
162 #define MC_DOD_NUMRANK(x) (((x) & MC_DOD_NUMRANK_MASK) >> 5)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300163 #define MC_DOD_NUMROW_MASK ((1 << 4) | (1 << 3) | (1 << 2))
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300164 #define MC_DOD_NUMROW(x) (((x) & MC_DOD_NUMROW_MASK) >> 2)
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300165 #define MC_DOD_NUMCOL_MASK 3
166 #define MC_DOD_NUMCOL(x) ((x) & MC_DOD_NUMCOL_MASK)
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300167
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300168#define MC_RANK_PRESENT 0x7c
169
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300170#define MC_SAG_CH_0 0x80
171#define MC_SAG_CH_1 0x84
172#define MC_SAG_CH_2 0x88
173#define MC_SAG_CH_3 0x8c
174#define MC_SAG_CH_4 0x90
175#define MC_SAG_CH_5 0x94
176#define MC_SAG_CH_6 0x98
177#define MC_SAG_CH_7 0x9c
178
179#define MC_RIR_LIMIT_CH_0 0x40
180#define MC_RIR_LIMIT_CH_1 0x44
181#define MC_RIR_LIMIT_CH_2 0x48
182#define MC_RIR_LIMIT_CH_3 0x4C
183#define MC_RIR_LIMIT_CH_4 0x50
184#define MC_RIR_LIMIT_CH_5 0x54
185#define MC_RIR_LIMIT_CH_6 0x58
186#define MC_RIR_LIMIT_CH_7 0x5C
187#define MC_RIR_LIMIT_MASK ((1 << 10) - 1)
188
189#define MC_RIR_WAY_CH 0x80
190 #define MC_RIR_WAY_OFFSET_MASK (((1 << 14) - 1) & ~0x7)
191 #define MC_RIR_WAY_RANK_MASK 0x7
192
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300193/*
194 * i7core structs
195 */
196
197#define NUM_CHANS 3
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300198#define MAX_DIMMS 3 /* Max DIMMS per channel */
199#define MAX_MCR_FUNC 4
200#define MAX_CHAN_FUNC 3
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300201
202struct i7core_info {
203 u32 mc_control;
204 u32 mc_status;
205 u32 max_dod;
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300206 u32 ch_map;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300207};
208
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300209
210struct i7core_inject {
211 int enable;
212
213 u32 section;
214 u32 type;
215 u32 eccmask;
216
217 /* Error address mask */
218 int channel, dimm, rank, bank, page, col;
219};
220
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300221struct i7core_channel {
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300222 bool is_3dimms_present;
223 bool is_single_4rank;
224 bool has_4rank;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300225 u32 dimms;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300226};
227
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300228struct pci_id_descr {
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300229 int dev;
230 int func;
231 int dev_id;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300232 int optional;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300233};
234
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300235struct pci_id_table {
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300236 const struct pci_id_descr *descr;
237 int n_devs;
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300238};
239
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300240struct i7core_dev {
241 struct list_head list;
242 u8 socket;
243 struct pci_dev **pdev;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300244 int n_devs;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300245 struct mem_ctl_info *mci;
246};
247
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300248struct i7core_pvt {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -0300249 struct device *addrmatch_dev, *chancounts_dev;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300250
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300251 struct pci_dev *pci_noncore;
252 struct pci_dev *pci_mcr[MAX_MCR_FUNC + 1];
253 struct pci_dev *pci_ch[NUM_CHANS][MAX_CHAN_FUNC + 1];
254
255 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300256
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300257 struct i7core_info info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300258 struct i7core_inject inject;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300259 struct i7core_channel channel[NUM_CHANS];
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -0300260
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300261 int ce_count_available;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300262
263 /* ECC corrected errors counts per udimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300264 unsigned long udimm_ce_count[MAX_DIMMS];
265 int udimm_last_ce_count[MAX_DIMMS];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300266 /* ECC corrected errors counts per rdimm */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300267 unsigned long rdimm_ce_count[NUM_CHANS][MAX_DIMMS];
268 int rdimm_last_ce_count[NUM_CHANS][MAX_DIMMS];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -0300269
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -0300270 bool is_registered, enable_scrub;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300271
Nils Carlson535e9c72011-08-08 06:21:26 -0300272 /* DCLK Frequency used for computing scrub rate */
273 int dclk_freq;
274
Mauro Carvalho Chehab939747bd2010-08-10 11:22:01 -0300275 /* Struct to control EDAC polling */
276 struct edac_pci_ctl_info *i7core_pci;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300277};
278
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300279#define PCI_DESCR(device, function, device_id) \
280 .dev = (device), \
281 .func = (function), \
282 .dev_id = (device_id)
283
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300284static const struct pci_id_descr pci_dev_descr_i7core_nehalem[] = {
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300285 /* Memory controller */
286 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_I7_MCR) },
287 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_I7_MC_TAD) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300288 /* Exists only for RDIMM */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -0300289 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_I7_MC_RAS), .optional = 1 },
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300290 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_I7_MC_TEST) },
291
292 /* Channel 0 */
293 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH0_CTRL) },
294 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH0_ADDR) },
295 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH0_RANK) },
296 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH0_TC) },
297
298 /* Channel 1 */
299 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH1_CTRL) },
300 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH1_ADDR) },
301 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH1_RANK) },
302 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH1_TC) },
303
304 /* Channel 2 */
305 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_I7_MC_CH2_CTRL) },
306 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_I7_MC_CH2_ADDR) },
307 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_I7_MC_CH2_RANK) },
308 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_I7_MC_CH2_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300309
310 /* Generic Non-core registers */
311 /*
312 * This is the PCI device on i7core and on Xeon 35xx (8086:2c41)
313 * On Xeon 55xx, however, it has a different id (8086:2c40). So,
314 * the probing code needs to test for the other address in case of
315 * failure of this one
316 */
317 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_I7_NONCORE) },
318
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300319};
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300320
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300321static const struct pci_id_descr pci_dev_descr_lynnfield[] = {
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300322 { PCI_DESCR( 3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR) },
323 { PCI_DESCR( 3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD) },
324 { PCI_DESCR( 3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST) },
325
326 { PCI_DESCR( 4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL) },
327 { PCI_DESCR( 4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR) },
328 { PCI_DESCR( 4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK) },
329 { PCI_DESCR( 4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC) },
330
Mauro Carvalho Chehab508fa172009-10-14 13:44:37 -0300331 { PCI_DESCR( 5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL) },
332 { PCI_DESCR( 5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR) },
333 { PCI_DESCR( 5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK) },
334 { PCI_DESCR( 5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300335
336 /*
337 * This is the PCI device has an alternate address on some
338 * processors like Core i7 860
339 */
340 { PCI_DESCR( 0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE) },
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300341};
342
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300343static const struct pci_id_descr pci_dev_descr_i7core_westmere[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300344 /* Memory controller */
345 { PCI_DESCR(3, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MCR_REV2) },
346 { PCI_DESCR(3, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TAD_REV2) },
347 /* Exists only for RDIMM */
348 { PCI_DESCR(3, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_RAS_REV2), .optional = 1 },
349 { PCI_DESCR(3, 4, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_TEST_REV2) },
350
351 /* Channel 0 */
352 { PCI_DESCR(4, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_CTRL_REV2) },
353 { PCI_DESCR(4, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_ADDR_REV2) },
354 { PCI_DESCR(4, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_RANK_REV2) },
355 { PCI_DESCR(4, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH0_TC_REV2) },
356
357 /* Channel 1 */
358 { PCI_DESCR(5, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_CTRL_REV2) },
359 { PCI_DESCR(5, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_ADDR_REV2) },
360 { PCI_DESCR(5, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_RANK_REV2) },
361 { PCI_DESCR(5, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH1_TC_REV2) },
362
363 /* Channel 2 */
364 { PCI_DESCR(6, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_CTRL_REV2) },
365 { PCI_DESCR(6, 1, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_ADDR_REV2) },
366 { PCI_DESCR(6, 2, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_RANK_REV2) },
367 { PCI_DESCR(6, 3, PCI_DEVICE_ID_INTEL_LYNNFIELD_MC_CH2_TC_REV2) },
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -0300368
369 /* Generic Non-core registers */
370 { PCI_DESCR(0, 0, PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2) },
371
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300372};
373
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300374#define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) }
375static const struct pci_id_table pci_dev_table[] = {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300376 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_nehalem),
377 PCI_ID_TABLE_ENTRY(pci_dev_descr_lynnfield),
378 PCI_ID_TABLE_ENTRY(pci_dev_descr_i7core_westmere),
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -0200379 {0,} /* 0 terminated list. */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -0300380};
381
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300382/*
383 * pci_device_id table for which devices we are looking for
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300384 */
Jingoo Hanba935f42013-12-06 10:23:08 +0100385static const struct pci_device_id i7core_pci_tbl[] = {
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -0300386 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
Mauro Carvalho Chehabf05da2f2009-10-14 13:31:06 -0300387 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300388 {0,} /* 0 terminated list. */
389};
390
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300391/****************************************************************************
David Mackey15ed1032012-04-17 11:30:52 -0700392 Ancillary status routines
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300393 ****************************************************************************/
394
395 /* MC_CONTROL bits */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300396#define CH_ACTIVE(pvt, ch) ((pvt)->info.mc_control & (1 << (8 + ch)))
397#define ECCx8(pvt) ((pvt)->info.mc_control & (1 << 1))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300398
399 /* MC_STATUS bits */
Keith Mannthey61053fd2009-09-02 23:46:59 -0300400#define ECC_ENABLED(pvt) ((pvt)->info.mc_status & (1 << 4))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300401#define CH_DISABLED(pvt, ch) ((pvt)->info.mc_status & (1 << ch))
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300402
403 /* MC_MAX_DOD read functions */
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300404static inline int numdimms(u32 dimms)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300405{
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300406 return (dimms & 0x3) + 1;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300407}
408
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300409static inline int numrank(u32 rank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300410{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100411 static const int ranks[] = { 1, 2, 4, -EINVAL };
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300412
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300413 return ranks[rank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300414}
415
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300416static inline int numbank(u32 bank)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300417{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100418 static const int banks[] = { 4, 8, 16, -EINVAL };
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300419
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300420 return banks[bank & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300421}
422
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300423static inline int numrow(u32 row)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300424{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100425 static const int rows[] = {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300426 1 << 12, 1 << 13, 1 << 14, 1 << 15,
427 1 << 16, -EINVAL, -EINVAL, -EINVAL,
428 };
429
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300430 return rows[row & 0x7];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300431}
432
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300433static inline int numcol(u32 col)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300434{
Niklas Söderlundc31d34f2012-01-29 23:04:32 +0100435 static const int cols[] = {
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300436 1 << 10, 1 << 11, 1 << 12, -EINVAL,
437 };
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300438 return cols[col & 0x3];
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300439}
440
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300441static struct i7core_dev *get_i7core_dev(u8 socket)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -0300442{
443 struct i7core_dev *i7core_dev;
444
445 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
446 if (i7core_dev->socket == socket)
447 return i7core_dev;
448 }
449
450 return NULL;
451}
452
Hidetoshi Seto848b2f72010-08-20 04:24:44 -0300453static struct i7core_dev *alloc_i7core_dev(u8 socket,
454 const struct pci_id_table *table)
455{
456 struct i7core_dev *i7core_dev;
457
458 i7core_dev = kzalloc(sizeof(*i7core_dev), GFP_KERNEL);
459 if (!i7core_dev)
460 return NULL;
461
Kees Cook6396bb22018-06-12 14:03:40 -0700462 i7core_dev->pdev = kcalloc(table->n_devs, sizeof(*i7core_dev->pdev),
Hidetoshi Seto848b2f72010-08-20 04:24:44 -0300463 GFP_KERNEL);
464 if (!i7core_dev->pdev) {
465 kfree(i7core_dev);
466 return NULL;
467 }
468
469 i7core_dev->socket = socket;
470 i7core_dev->n_devs = table->n_devs;
471 list_add_tail(&i7core_dev->list, &i7core_edac_list);
472
473 return i7core_dev;
474}
475
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -0300476static void free_i7core_dev(struct i7core_dev *i7core_dev)
477{
478 list_del(&i7core_dev->list);
479 kfree(i7core_dev->pdev);
480 kfree(i7core_dev);
481}
482
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300483/****************************************************************************
484 Memory check routines
485 ****************************************************************************/
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -0300486
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300487static int get_dimm_config(struct mem_ctl_info *mci)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300488{
489 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300490 struct pci_dev *pdev;
Mauro Carvalho Chehabba6c5c62009-07-15 09:02:32 -0300491 int i, j;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300492 enum edac_type mode;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300493 enum mem_type mtype;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300494 struct dimm_info *dimm;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300495
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300496 /* Get data from the MC register, function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300497 pdev = pvt->pci_mcr[0];
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300498 if (!pdev)
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300499 return -ENODEV;
500
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300501 /* Device 3 function 0 reads */
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300502 pci_read_config_dword(pdev, MC_CONTROL, &pvt->info.mc_control);
503 pci_read_config_dword(pdev, MC_STATUS, &pvt->info.mc_status);
504 pci_read_config_dword(pdev, MC_MAX_DOD, &pvt->info.max_dod);
505 pci_read_config_dword(pdev, MC_CHANNEL_MAPPER, &pvt->info.ch_map);
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300506
Joe Perches956b9ba12012-04-29 17:08:39 -0300507 edac_dbg(0, "QPI %d control=0x%08x status=0x%08x dod=0x%08x map=0x%08x\n",
508 pvt->i7core_dev->socket, pvt->info.mc_control,
509 pvt->info.mc_status, pvt->info.max_dod, pvt->info.ch_map);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300510
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300511 if (ECC_ENABLED(pvt)) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300512 edac_dbg(0, "ECC enabled with x%d SDCC\n", ECCx8(pvt) ? 8 : 4);
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300513 if (ECCx8(pvt))
514 mode = EDAC_S8ECD8ED;
515 else
516 mode = EDAC_S4ECD4ED;
517 } else {
Joe Perches956b9ba12012-04-29 17:08:39 -0300518 edac_dbg(0, "ECC disabled\n");
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300519 mode = EDAC_NONE;
520 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300521
522 /* FIXME: need to handle the error codes */
Joe Perches956b9ba12012-04-29 17:08:39 -0300523 edac_dbg(0, "DOD Max limits: DIMMS: %d, %d-ranked, %d-banked x%x x 0x%x\n",
524 numdimms(pvt->info.max_dod),
525 numrank(pvt->info.max_dod >> 2),
526 numbank(pvt->info.max_dod >> 4),
527 numrow(pvt->info.max_dod >> 6),
528 numcol(pvt->info.max_dod >> 9));
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300529
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300530 for (i = 0; i < NUM_CHANS; i++) {
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300531 u32 data, dimm_dod[3], value[8];
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300532
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -0300533 if (!pvt->pci_ch[i][0])
534 continue;
535
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300536 if (!CH_ACTIVE(pvt, i)) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300537 edac_dbg(0, "Channel %i is not active\n", i);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300538 continue;
539 }
540 if (CH_DISABLED(pvt, i)) {
Joe Perches956b9ba12012-04-29 17:08:39 -0300541 edac_dbg(0, "Channel %i is disabled\n", i);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300542 continue;
543 }
544
Mauro Carvalho Chehabf122a892009-06-22 22:48:29 -0300545 /* Devices 4-6 function 0 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300546 pci_read_config_dword(pvt->pci_ch[i][0],
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300547 MC_CHANNEL_DIMM_INIT_PARAMS, &data);
548
Mauro Carvalho Chehab0bf09e82012-04-26 11:47:29 -0300549
550 if (data & THREE_DIMMS_PRESENT)
551 pvt->channel[i].is_3dimms_present = true;
552
553 if (data & SINGLE_QUAD_RANK_PRESENT)
554 pvt->channel[i].is_single_4rank = true;
555
556 if (data & QUAD_RANK_PRESENT)
557 pvt->channel[i].has_4rank = true;
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300558
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300559 if (data & REGISTERED_DIMM)
560 mtype = MEM_RDDR3;
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -0300561 else
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300562 mtype = MEM_DDR3;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300563
564 /* Devices 4-6 function 1 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300565 pci_read_config_dword(pvt->pci_ch[i][1],
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300566 MC_DOD_CH_DIMM0, &dimm_dod[0]);
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_DIMM1, &dimm_dod[1]);
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_DIMM2, &dimm_dod[2]);
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300571
Joe Perches956b9ba12012-04-29 17:08:39 -0300572 edac_dbg(0, "Ch%d phy rd%d, wr%d (0x%08x): %s%s%s%cDIMMs\n",
573 i,
574 RDLCH(pvt->info.ch_map, i), WRLCH(pvt->info.ch_map, i),
575 data,
576 pvt->channel[i].is_3dimms_present ? "3DIMMS " : "",
577 pvt->channel[i].is_3dimms_present ? "SINGLE_4R " : "",
578 pvt->channel[i].has_4rank ? "HAS_4R " : "",
579 (data & REGISTERED_DIMM) ? 'R' : 'U');
Mauro Carvalho Chehab7dd69532009-06-22 22:48:30 -0300580
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300581 for (j = 0; j < 3; j++) {
582 u32 banks, ranks, rows, cols;
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300583 u32 size, npages;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300584
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300585 if (!DIMM_PRESENT(dimm_dod[j]))
586 continue;
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300587
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -0300588 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
589 i, j, 0);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300590 banks = numbank(MC_DOD_NUMBANK(dimm_dod[j]));
591 ranks = numrank(MC_DOD_NUMRANK(dimm_dod[j]));
592 rows = numrow(MC_DOD_NUMROW(dimm_dod[j]));
593 cols = numcol(MC_DOD_NUMCOL(dimm_dod[j]));
Mauro Carvalho Chehab1c6fed82009-06-22 22:48:30 -0300594
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300595 /* DDR3 has 8 I/O banks */
596 size = (rows * cols * banks * ranks) >> (20 - 3);
597
Qiuxu Zhuo6f6da132018-09-18 17:34:33 -0700598 edac_dbg(0, "\tdimm %d %d MiB offset: %x, bank: %d, rank: %d, row: %#x, col: %#x\n",
Joe Perches956b9ba12012-04-29 17:08:39 -0300599 j, size,
600 RANKOFFSET(dimm_dod[j]),
601 banks, ranks, rows, cols);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300602
Mauro Carvalho Chehabe9144602010-08-10 20:26:35 -0300603 npages = MiB_TO_PAGES(size);
Mauro Carvalho Chehab5566cb72009-06-22 22:48:31 -0300604
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300605 dimm->nr_pages = npages;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -0300606
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300607 switch (banks) {
608 case 4:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300609 dimm->dtype = DEV_X4;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300610 break;
611 case 8:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300612 dimm->dtype = DEV_X8;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300613 break;
614 case 16:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300615 dimm->dtype = DEV_X16;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300616 break;
617 default:
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300618 dimm->dtype = DEV_UNKNOWN;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300619 }
620
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300621 snprintf(dimm->label, sizeof(dimm->label),
622 "CPU#%uChannel#%u_DIMM#%u",
623 pvt->i7core_dev->socket, i, j);
624 dimm->grain = 8;
625 dimm->edac_mode = mode;
626 dimm->mtype = mtype;
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300627 }
628
629 pci_read_config_dword(pdev, MC_SAG_CH_0, &value[0]);
630 pci_read_config_dword(pdev, MC_SAG_CH_1, &value[1]);
631 pci_read_config_dword(pdev, MC_SAG_CH_2, &value[2]);
632 pci_read_config_dword(pdev, MC_SAG_CH_3, &value[3]);
633 pci_read_config_dword(pdev, MC_SAG_CH_4, &value[4]);
634 pci_read_config_dword(pdev, MC_SAG_CH_5, &value[5]);
635 pci_read_config_dword(pdev, MC_SAG_CH_6, &value[6]);
636 pci_read_config_dword(pdev, MC_SAG_CH_7, &value[7]);
Joe Perches956b9ba12012-04-29 17:08:39 -0300637 edac_dbg(1, "\t[%i] DIVBY3\tREMOVED\tOFFSET\n", i);
Mauro Carvalho Chehab854d3342009-06-22 22:48:30 -0300638 for (j = 0; j < 8; j++)
Joe Perches956b9ba12012-04-29 17:08:39 -0300639 edac_dbg(1, "\t\t%#x\t%#x\t%#x\n",
640 (value[j] >> 27) & 0x1,
641 (value[j] >> 24) & 0x7,
642 (value[j] & ((1 << 24) - 1)));
Mauro Carvalho Chehab0b2b7b72009-06-22 22:48:29 -0300643 }
644
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -0300645 return 0;
646}
647
648/****************************************************************************
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300649 Error insertion routines
650 ****************************************************************************/
651
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300652#define to_mci(k) container_of(k, struct mem_ctl_info, dev)
653
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300654/* The i7core has independent error injection features per channel.
655 However, to have a simpler code, we don't allow enabling error injection
656 on more than one channel.
657 Also, since a change at an inject parameter will be applied only at enable,
658 we're disabling error injection on all write calls to the sysfs nodes that
659 controls the error code injection.
660 */
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300661static int disable_inject(const struct mem_ctl_info *mci)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300662{
663 struct i7core_pvt *pvt = mci->pvt_info;
664
665 pvt->inject.enable = 0;
666
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300667 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300668 return -ENODEV;
669
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300670 pci_write_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f52009-08-05 20:27:15 -0300671 MC_CHANNEL_ERROR_INJECT, 0);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300672
673 return 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300674}
675
676/*
677 * i7core inject inject.section
678 *
679 * accept and store error injection inject.section value
680 * bit 0 - refers to the lower 32-byte half cacheline
681 * bit 1 - refers to the upper 32-byte half cacheline
682 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300683static ssize_t i7core_inject_section_store(struct device *dev,
684 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300685 const char *data, size_t count)
686{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300687 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300688 struct i7core_pvt *pvt = mci->pvt_info;
689 unsigned long value;
690 int rc;
691
692 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300693 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300694
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900695 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300696 if ((rc < 0) || (value > 3))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300697 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300698
699 pvt->inject.section = (u32) value;
700 return count;
701}
702
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300703static ssize_t i7core_inject_section_show(struct device *dev,
704 struct device_attribute *mattr,
705 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300706{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300707 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300708 struct i7core_pvt *pvt = mci->pvt_info;
709 return sprintf(data, "0x%08x\n", pvt->inject.section);
710}
711
712/*
713 * i7core inject.type
714 *
715 * accept and store error injection inject.section value
716 * bit 0 - repeat enable - Enable error repetition
717 * bit 1 - inject ECC error
718 * bit 2 - inject parity error
719 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300720static ssize_t i7core_inject_type_store(struct device *dev,
721 struct device_attribute *mattr,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300722 const char *data, size_t count)
723{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300724 struct mem_ctl_info *mci = to_mci(dev);
Colin Ian King1722bc02018-11-09 13:37:57 +0000725 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300726 unsigned long value;
727 int rc;
728
729 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300730 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300731
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900732 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300733 if ((rc < 0) || (value > 7))
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300734 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300735
736 pvt->inject.type = (u32) value;
737 return count;
738}
739
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300740static ssize_t i7core_inject_type_show(struct device *dev,
741 struct device_attribute *mattr,
742 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300743{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300744 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300745 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300746
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300747 return sprintf(data, "0x%08x\n", pvt->inject.type);
748}
749
750/*
751 * i7core_inject_inject.eccmask_store
752 *
753 * The type of error (UE/CE) will depend on the inject.eccmask value:
754 * Any bits set to a 1 will flip the corresponding ECC bit
755 * Correctable errors can be injected by flipping 1 bit or the bits within
756 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
757 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
758 * uncorrectable error to be injected.
759 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300760static ssize_t i7core_inject_eccmask_store(struct device *dev,
761 struct device_attribute *mattr,
762 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300763{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300764 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300765 struct i7core_pvt *pvt = mci->pvt_info;
766 unsigned long value;
767 int rc;
768
769 if (pvt->inject.enable)
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -0300770 disable_inject(mci);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300771
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900772 rc = kstrtoul(data, 10, &value);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300773 if (rc < 0)
Mauro Carvalho Chehab2068def2009-08-05 19:28:27 -0300774 return -EIO;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300775
776 pvt->inject.eccmask = (u32) value;
777 return count;
778}
779
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300780static ssize_t i7core_inject_eccmask_show(struct device *dev,
781 struct device_attribute *mattr,
782 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300783{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300784 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300785 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300786
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300787 return sprintf(data, "0x%08x\n", pvt->inject.eccmask);
788}
789
790/*
791 * i7core_addrmatch
792 *
793 * The type of error (UE/CE) will depend on the inject.eccmask value:
794 * Any bits set to a 1 will flip the corresponding ECC bit
795 * Correctable errors can be injected by flipping 1 bit or the bits within
796 * a symbol pair (2 consecutive aligned 8-bit pairs - i.e. 7:0 and 15:8 or
797 * 23:16 and 31:24). Flipping bits in two symbol pairs will cause an
798 * uncorrectable error to be injected.
799 */
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300800
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300801#define DECLARE_ADDR_MATCH(param, limit) \
802static ssize_t i7core_inject_store_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300803 struct device *dev, \
804 struct device_attribute *mattr, \
805 const char *data, size_t count) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300806{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -0400807 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300808 struct i7core_pvt *pvt; \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300809 long value; \
810 int rc; \
811 \
Joe Perches956b9ba12012-04-29 17:08:39 -0300812 edac_dbg(1, "\n"); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300813 pvt = mci->pvt_info; \
814 \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300815 if (pvt->inject.enable) \
816 disable_inject(mci); \
817 \
Mauro Carvalho Chehab4f87fad2009-10-04 11:54:56 -0300818 if (!strcasecmp(data, "any") || !strcasecmp(data, "any\n"))\
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300819 value = -1; \
820 else { \
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900821 rc = kstrtoul(data, 10, &value); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300822 if ((rc < 0) || (value >= limit)) \
823 return -EIO; \
824 } \
825 \
826 pvt->inject.param = value; \
827 \
828 return count; \
829} \
830 \
831static ssize_t i7core_inject_show_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300832 struct device *dev, \
833 struct device_attribute *mattr, \
834 char *data) \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300835{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -0400836 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabcc301b32009-09-24 16:23:42 -0300837 struct i7core_pvt *pvt; \
838 \
839 pvt = mci->pvt_info; \
Joe Perches956b9ba12012-04-29 17:08:39 -0300840 edac_dbg(1, "pvt=%p\n", pvt); \
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300841 if (pvt->inject.param < 0) \
842 return sprintf(data, "any\n"); \
843 else \
844 return sprintf(data, "%d\n", pvt->inject.param);\
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300845}
846
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300847#define ATTR_ADDR_MATCH(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300848 static DEVICE_ATTR(param, S_IRUGO | S_IWUSR, \
849 i7core_inject_show_##param, \
850 i7core_inject_store_##param)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300851
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -0300852DECLARE_ADDR_MATCH(channel, 3);
853DECLARE_ADDR_MATCH(dimm, 3);
854DECLARE_ADDR_MATCH(rank, 4);
855DECLARE_ADDR_MATCH(bank, 32);
856DECLARE_ADDR_MATCH(page, 0x10000);
857DECLARE_ADDR_MATCH(col, 0x4000);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300858
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300859ATTR_ADDR_MATCH(channel);
860ATTR_ADDR_MATCH(dimm);
861ATTR_ADDR_MATCH(rank);
862ATTR_ADDR_MATCH(bank);
863ATTR_ADDR_MATCH(page);
864ATTR_ADDR_MATCH(col);
865
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -0300866static int write_and_test(struct pci_dev *dev, const int where, const u32 val)
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300867{
868 u32 read;
869 int count;
870
Joe Perches956b9ba12012-04-29 17:08:39 -0300871 edac_dbg(0, "setting pci %02x:%02x.%x reg=%02x value=%08x\n",
872 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
873 where, val);
Mauro Carvalho Chehab4157d9f52009-08-05 20:27:15 -0300874
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300875 for (count = 0; count < 10; count++) {
876 if (count)
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -0300877 msleep(100);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300878 pci_write_config_dword(dev, where, val);
879 pci_read_config_dword(dev, where, &read);
880
881 if (read == val)
882 return 0;
883 }
884
Mauro Carvalho Chehab4157d9f52009-08-05 20:27:15 -0300885 i7core_printk(KERN_ERR, "Error during set pci %02x:%02x.%x reg=%02x "
886 "write=%08x. Read=%08x\n",
887 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
888 where, val, read);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300889
890 return -EINVAL;
891}
892
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300893/*
894 * This routine prepares the Memory Controller for error injection.
895 * The error will be injected when some process tries to write to the
896 * memory that matches the given criteria.
897 * The criteria can be set in terms of a mask where dimm, rank, bank, page
898 * and col can be specified.
899 * A -1 value for any of the mask items will make the MCU to ignore
900 * that matching criteria for error injection.
901 *
902 * It should be noticed that the error will only happen after a write operation
903 * on a memory that matches the condition. if REPEAT_EN is not enabled at
904 * inject mask, then it will produce just one error. Otherwise, it will repeat
905 * until the injectmask would be cleaned.
906 *
907 * FIXME: This routine assumes that MAXNUMDIMMS value of MC_MAX_DOD
908 * is reliable enough to check if the MC is using the
909 * three channels. However, this is not clear at the datasheet.
910 */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300911static ssize_t i7core_inject_enable_store(struct device *dev,
912 struct device_attribute *mattr,
913 const char *data, size_t count)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300914{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -0300915 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300916 struct i7core_pvt *pvt = mci->pvt_info;
917 u32 injectmask;
918 u64 mask = 0;
919 int rc;
920 long enable;
921
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300922 if (!pvt->pci_ch[pvt->inject.channel][0])
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -0300923 return 0;
924
Jingoo Hanc7f62fc2013-06-01 16:08:22 +0900925 rc = kstrtoul(data, 10, &enable);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300926 if ((rc < 0))
927 return 0;
928
929 if (enable) {
930 pvt->inject.enable = 1;
931 } else {
932 disable_inject(mci);
933 return count;
934 }
935
936 /* Sets pvt->inject.dimm mask */
937 if (pvt->inject.dimm < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200938 mask |= 1LL << 41;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300939 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300940 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200941 mask |= (pvt->inject.dimm & 0x3LL) << 35;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300942 else
Alan Cox486dd092009-11-08 01:34:27 -0200943 mask |= (pvt->inject.dimm & 0x1LL) << 36;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300944 }
945
946 /* Sets pvt->inject.rank mask */
947 if (pvt->inject.rank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200948 mask |= 1LL << 40;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300949 else {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300950 if (pvt->channel[pvt->inject.channel].dimms > 2)
Alan Cox486dd092009-11-08 01:34:27 -0200951 mask |= (pvt->inject.rank & 0x1LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300952 else
Alan Cox486dd092009-11-08 01:34:27 -0200953 mask |= (pvt->inject.rank & 0x3LL) << 34;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300954 }
955
956 /* Sets pvt->inject.bank mask */
957 if (pvt->inject.bank < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200958 mask |= 1LL << 39;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300959 else
Alan Cox486dd092009-11-08 01:34:27 -0200960 mask |= (pvt->inject.bank & 0x15LL) << 30;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300961
962 /* Sets pvt->inject.page mask */
963 if (pvt->inject.page < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200964 mask |= 1LL << 38;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300965 else
Alan Cox486dd092009-11-08 01:34:27 -0200966 mask |= (pvt->inject.page & 0xffff) << 14;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300967
968 /* Sets pvt->inject.column mask */
969 if (pvt->inject.col < 0)
Alan Cox486dd092009-11-08 01:34:27 -0200970 mask |= 1LL << 37;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300971 else
Alan Cox486dd092009-11-08 01:34:27 -0200972 mask |= (pvt->inject.col & 0x3fff);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300973
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300974 /*
975 * bit 0: REPEAT_EN
976 * bits 1-2: MASK_HALF_CACHELINE
977 * bit 3: INJECT_ECC
978 * bit 4: INJECT_ADDR_PARITY
979 */
980
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -0300981 injectmask = (pvt->inject.type & 1) |
982 (pvt->inject.section & 0x3) << 1 |
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300983 (pvt->inject.type & 0x6) << (3 - 1);
984
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300985 /* Unlock writes to registers - this register is write only */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300986 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300987 MC_CFG_CONTROL, 0x2);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -0300988
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300989 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300990 MC_CHANNEL_ADDR_MATCH, mask);
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 + 4, mask >> 32L);
993
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300994 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300995 MC_CHANNEL_ERROR_MASK, pvt->inject.eccmask);
996
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -0300997 write_and_test(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f52009-08-05 20:27:15 -0300998 MC_CHANNEL_ERROR_INJECT, injectmask);
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -0300999
1000 /*
1001 * This is something undocumented, based on my tests
1002 * Without writing 8 to this register, errors aren't injected. Not sure
1003 * why.
1004 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001005 pci_write_config_dword(pvt->pci_noncore,
Mauro Carvalho Chehab276b8242009-07-22 21:45:50 -03001006 MC_CFG_CONTROL, 8);
1007
Joe Perches956b9ba12012-04-29 17:08:39 -03001008 edac_dbg(0, "Error inject addr match 0x%016llx, ecc 0x%08x, inject 0x%08x\n",
1009 mask, pvt->inject.eccmask, injectmask);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001010
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001011
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001012 return count;
1013}
1014
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001015static ssize_t i7core_inject_enable_show(struct device *dev,
1016 struct device_attribute *mattr,
1017 char *data)
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001018{
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001019 struct mem_ctl_info *mci = to_mci(dev);
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001020 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001021 u32 injectmask;
1022
Mauro Carvalho Chehab52a2e4fc2009-10-14 11:21:58 -03001023 if (!pvt->pci_ch[pvt->inject.channel][0])
1024 return 0;
1025
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001026 pci_read_config_dword(pvt->pci_ch[pvt->inject.channel][0],
Mauro Carvalho Chehab4157d9f52009-08-05 20:27:15 -03001027 MC_CHANNEL_ERROR_INJECT, &injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001028
Joe Perches956b9ba12012-04-29 17:08:39 -03001029 edac_dbg(0, "Inject error read: 0x%018x\n", injectmask);
Mauro Carvalho Chehab7b029d02009-06-22 22:48:29 -03001030
1031 if (injectmask & 0x0c)
1032 pvt->inject.enable = 1;
1033
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001034 return sprintf(data, "%d\n", pvt->inject.enable);
1035}
1036
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001037#define DECLARE_COUNTER(param) \
1038static ssize_t i7core_show_counter_##param( \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001039 struct device *dev, \
1040 struct device_attribute *mattr, \
1041 char *data) \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001042{ \
Prarit Bhargava42709ef2012-10-16 09:02:27 -04001043 struct mem_ctl_info *mci = dev_get_drvdata(dev); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001044 struct i7core_pvt *pvt = mci->pvt_info; \
1045 \
Joe Perches956b9ba12012-04-29 17:08:39 -03001046 edac_dbg(1, "\n"); \
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001047 if (!pvt->ce_count_available || (pvt->is_registered)) \
1048 return sprintf(data, "data unavailable\n"); \
1049 return sprintf(data, "%lu\n", \
1050 pvt->udimm_ce_count[param]); \
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001051}
1052
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001053#define ATTR_COUNTER(param) \
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001054 static DEVICE_ATTR(udimm##param, S_IRUGO | S_IWUSR, \
1055 i7core_show_counter_##param, \
1056 NULL)
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001057
1058DECLARE_COUNTER(0);
1059DECLARE_COUNTER(1);
1060DECLARE_COUNTER(2);
1061
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001062ATTR_COUNTER(0);
1063ATTR_COUNTER(1);
1064ATTR_COUNTER(2);
1065
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001066/*
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001067 * inject_addrmatch device sysfs struct
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001068 */
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001069
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001070static struct attribute *i7core_addrmatch_attrs[] = {
1071 &dev_attr_channel.attr,
1072 &dev_attr_dimm.attr,
1073 &dev_attr_rank.attr,
1074 &dev_attr_bank.attr,
1075 &dev_attr_page.attr,
1076 &dev_attr_col.attr,
1077 NULL
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001078};
1079
Arvind Yadav1c18be52017-07-17 10:20:25 +02001080static const struct attribute_group addrmatch_grp = {
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001081 .attrs = i7core_addrmatch_attrs,
Mauro Carvalho Chehaba5538e52009-09-23 18:56:47 -03001082};
1083
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001084static const struct attribute_group *addrmatch_groups[] = {
1085 &addrmatch_grp,
1086 NULL
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001087};
1088
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001089static void addrmatch_release(struct device *device)
1090{
Joe Perches956b9ba12012-04-29 17:08:39 -03001091 edac_dbg(1, "Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001092 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001093}
1094
Bhumika Goyalb2b3e7362017-08-19 13:52:12 +05301095static const struct device_type addrmatch_type = {
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001096 .groups = addrmatch_groups,
1097 .release = addrmatch_release,
Mauro Carvalho Chehabf338d732009-09-24 17:25:43 -03001098};
1099
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001100/*
1101 * all_channel_counts sysfs struct
1102 */
1103
1104static struct attribute *i7core_udimm_counters_attrs[] = {
1105 &dev_attr_udimm0.attr,
1106 &dev_attr_udimm1.attr,
1107 &dev_attr_udimm2.attr,
1108 NULL
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001109};
1110
Arvind Yadav1c18be52017-07-17 10:20:25 +02001111static const struct attribute_group all_channel_counts_grp = {
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001112 .attrs = i7core_udimm_counters_attrs,
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001113};
1114
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001115static const struct attribute_group *all_channel_counts_groups[] = {
1116 &all_channel_counts_grp,
1117 NULL
1118};
1119
1120static void all_channel_counts_release(struct device *device)
1121{
Joe Perches956b9ba12012-04-29 17:08:39 -03001122 edac_dbg(1, "Releasing device %s\n", dev_name(device));
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001123 kfree(device);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001124}
1125
Bhumika Goyalb2b3e7362017-08-19 13:52:12 +05301126static const struct device_type all_channel_counts_type = {
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001127 .groups = all_channel_counts_groups,
1128 .release = all_channel_counts_release,
1129};
1130
1131/*
1132 * inject sysfs attributes
1133 */
1134
1135static DEVICE_ATTR(inject_section, S_IRUGO | S_IWUSR,
1136 i7core_inject_section_show, i7core_inject_section_store);
1137
1138static DEVICE_ATTR(inject_type, S_IRUGO | S_IWUSR,
1139 i7core_inject_type_show, i7core_inject_type_store);
1140
1141
1142static DEVICE_ATTR(inject_eccmask, S_IRUGO | S_IWUSR,
1143 i7core_inject_eccmask_show, i7core_inject_eccmask_store);
1144
1145static DEVICE_ATTR(inject_enable, S_IRUGO | S_IWUSR,
1146 i7core_inject_enable_show, i7core_inject_enable_store);
1147
Takashi Iwai2eace182015-02-04 11:48:55 +01001148static struct attribute *i7core_dev_attrs[] = {
1149 &dev_attr_inject_section.attr,
1150 &dev_attr_inject_type.attr,
1151 &dev_attr_inject_eccmask.attr,
1152 &dev_attr_inject_enable.attr,
1153 NULL
1154};
1155
1156ATTRIBUTE_GROUPS(i7core_dev);
1157
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001158static int i7core_create_sysfs_devices(struct mem_ctl_info *mci)
1159{
1160 struct i7core_pvt *pvt = mci->pvt_info;
1161 int rc;
1162
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001163 pvt->addrmatch_dev = kzalloc(sizeof(*pvt->addrmatch_dev), GFP_KERNEL);
1164 if (!pvt->addrmatch_dev)
Takashi Iwaie97d7e32015-02-04 11:48:54 +01001165 return -ENOMEM;
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001166
1167 pvt->addrmatch_dev->type = &addrmatch_type;
1168 pvt->addrmatch_dev->bus = mci->dev.bus;
1169 device_initialize(pvt->addrmatch_dev);
1170 pvt->addrmatch_dev->parent = &mci->dev;
1171 dev_set_name(pvt->addrmatch_dev, "inject_addrmatch");
1172 dev_set_drvdata(pvt->addrmatch_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001173
Joe Perches956b9ba12012-04-29 17:08:39 -03001174 edac_dbg(1, "creating %s\n", dev_name(pvt->addrmatch_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001175
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001176 rc = device_add(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001177 if (rc < 0)
Johan Hovold6c974d42018-06-12 14:43:35 +02001178 goto err_put_addrmatch;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001179
1180 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001181 pvt->chancounts_dev = kzalloc(sizeof(*pvt->chancounts_dev),
1182 GFP_KERNEL);
1183 if (!pvt->chancounts_dev) {
Johan Hovold6c974d42018-06-12 14:43:35 +02001184 rc = -ENOMEM;
1185 goto err_del_addrmatch;
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001186 }
1187
1188 pvt->chancounts_dev->type = &all_channel_counts_type;
1189 pvt->chancounts_dev->bus = mci->dev.bus;
1190 device_initialize(pvt->chancounts_dev);
1191 pvt->chancounts_dev->parent = &mci->dev;
1192 dev_set_name(pvt->chancounts_dev, "all_channel_counts");
1193 dev_set_drvdata(pvt->chancounts_dev, mci);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001194
Joe Perches956b9ba12012-04-29 17:08:39 -03001195 edac_dbg(1, "creating %s\n", dev_name(pvt->chancounts_dev));
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001196
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001197 rc = device_add(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001198 if (rc < 0)
Johan Hovold6c974d42018-06-12 14:43:35 +02001199 goto err_put_chancounts;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001200 }
1201 return 0;
Johan Hovold6c974d42018-06-12 14:43:35 +02001202
1203err_put_chancounts:
1204 put_device(pvt->chancounts_dev);
1205err_del_addrmatch:
1206 device_del(pvt->addrmatch_dev);
1207err_put_addrmatch:
1208 put_device(pvt->addrmatch_dev);
1209
1210 return rc;
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001211}
1212
1213static void i7core_delete_sysfs_devices(struct mem_ctl_info *mci)
1214{
1215 struct i7core_pvt *pvt = mci->pvt_info;
1216
Joe Perches956b9ba12012-04-29 17:08:39 -03001217 edac_dbg(1, "\n");
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001218
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001219 if (!pvt->is_registered) {
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001220 device_del(pvt->chancounts_dev);
Johan Hovold6c974d42018-06-12 14:43:35 +02001221 put_device(pvt->chancounts_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001222 }
Mauro Carvalho Chehab356f0a32012-03-30 16:10:51 -03001223 device_del(pvt->addrmatch_dev);
Johan Hovold6c974d42018-06-12 14:43:35 +02001224 put_device(pvt->addrmatch_dev);
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03001225}
1226
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03001227/****************************************************************************
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001228 Device initialization routines: put/get, init/exit
1229 ****************************************************************************/
1230
1231/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001232 * i7core_put_all_devices 'put' all the devices that we have
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001233 * reserved via 'get'
1234 */
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001235static void i7core_put_devices(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001236{
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001237 int i;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001238
Joe Perches956b9ba12012-04-29 17:08:39 -03001239 edac_dbg(0, "\n");
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001240 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001241 struct pci_dev *pdev = i7core_dev->pdev[i];
1242 if (!pdev)
1243 continue;
Joe Perches956b9ba12012-04-29 17:08:39 -03001244 edac_dbg(0, "Removing dev %02x:%02x.%d\n",
1245 pdev->bus->number,
1246 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03001247 pci_dev_put(pdev);
1248 }
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001249}
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001250
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001251static void i7core_put_all_devices(void)
1252{
Mauro Carvalho Chehab42538682009-09-24 09:59:13 -03001253 struct i7core_dev *i7core_dev, *tmp;
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001254
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001255 list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03001256 i7core_put_devices(i7core_dev);
Hidetoshi Seto2aa9be42010-08-20 04:25:00 -03001257 free_i7core_dev(i7core_dev);
Mauro Carvalho Chehab39300e72010-08-11 23:40:15 -03001258 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001259}
1260
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001261static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Keith Manntheybc2d7242009-09-03 00:05:05 -03001262{
1263 struct pci_dev *pdev = NULL;
1264 int i;
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03001265
Keith Manntheybc2d7242009-09-03 00:05:05 -03001266 /*
David Sterbae7bf0682010-12-27 16:51:15 +01001267 * On Xeon 55xx, the Intel Quick Path Arch Generic Non-core pci buses
Keith Manntheybc2d7242009-09-03 00:05:05 -03001268 * aren't announced by acpi. So, we need to use a legacy scan probing
1269 * to detect them
1270 */
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001271 while (table && table->descr) {
1272 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, table->descr[0].dev_id, NULL);
1273 if (unlikely(!pdev)) {
1274 for (i = 0; i < MAX_SOCKET_BUSES; i++)
1275 pcibios_scan_specific_bus(255-i);
1276 }
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001277 pci_dev_put(pdev);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001278 table++;
Keith Manntheybc2d7242009-09-03 00:05:05 -03001279 }
1280}
1281
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001282static unsigned i7core_pci_lastbus(void)
1283{
1284 int last_bus = 0, bus;
1285 struct pci_bus *b = NULL;
1286
1287 while ((b = pci_find_next_bus(b)) != NULL) {
1288 bus = b->number;
Joe Perches956b9ba12012-04-29 17:08:39 -03001289 edac_dbg(0, "Found bus %d\n", bus);
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001290 if (bus > last_bus)
1291 last_bus = bus;
1292 }
1293
Joe Perches956b9ba12012-04-29 17:08:39 -03001294 edac_dbg(0, "Last bus %d\n", last_bus);
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001295
1296 return last_bus;
1297}
1298
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001299/*
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001300 * i7core_get_all_devices Find and perform 'get' operation on the MCH's
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001301 * device/functions we want to reference for this driver
1302 *
1303 * Need to 'get' device 16 func 1 and func 2
1304 */
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001305static int i7core_get_onedevice(struct pci_dev **prev,
1306 const struct pci_id_table *table,
1307 const unsigned devno,
1308 const unsigned last_bus)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001309{
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001310 struct i7core_dev *i7core_dev;
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001311 const struct pci_id_descr *dev_descr = &table->descr[devno];
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001312
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001313 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03001314 u8 bus = 0;
1315 u8 socket = 0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001316
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001317 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001318 dev_descr->dev_id, *prev);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001319
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001320 /*
David Mackey15ed1032012-04-17 11:30:52 -07001321 * On Xeon 55xx, the Intel QuickPath Arch Generic Non-core regs
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001322 * is at addr 8086:2c40, instead of 8086:2c41. So, we need
1323 * to probe for the alternate address in case of failure
1324 */
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001325 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_I7_NONCORE && !pdev) {
1326 pci_dev_get(*prev); /* pci_get_device will put it */
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001327 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1328 PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT, *prev);
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001329 }
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001330
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001331 if (dev_descr->dev_id == PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE &&
1332 !pdev) {
1333 pci_dev_get(*prev); /* pci_get_device will put it */
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001334 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
1335 PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT,
1336 *prev);
Jean Delvarec0f5eee2014-02-24 09:39:27 +01001337 }
Mauro Carvalho Chehab224e8712011-03-17 17:02:59 -03001338
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001339 if (!pdev) {
1340 if (*prev) {
1341 *prev = pdev;
1342 return 0;
Mauro Carvalho Chehabd1fd4fb2009-07-10 18:39:53 -03001343 }
1344
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001345 if (dev_descr->optional)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001346 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001347
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001348 if (devno == 0)
1349 return -ENODEV;
1350
Daniel J Bluemanab089372010-07-23 23:16:52 +01001351 i7core_printk(KERN_INFO,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001352 "Device not found: dev %02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001353 dev_descr->dev, dev_descr->func,
1354 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001355
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001356 /* End of list, leave */
1357 return -ENODEV;
1358 }
1359 bus = pdev->bus->number;
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03001360
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001361 socket = last_bus - bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001362
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001363 i7core_dev = get_i7core_dev(socket);
1364 if (!i7core_dev) {
Hidetoshi Seto848b2f72010-08-20 04:24:44 -03001365 i7core_dev = alloc_i7core_dev(socket, table);
Hidetoshi Seto28966372010-08-20 04:28:51 -03001366 if (!i7core_dev) {
1367 pci_dev_put(pdev);
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001368 return -ENOMEM;
Hidetoshi Seto28966372010-08-20 04:28:51 -03001369 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001370 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001371
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001372 if (i7core_dev->pdev[devno]) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001373 i7core_printk(KERN_ERR,
1374 "Duplicated device for "
1375 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001376 bus, dev_descr->dev, dev_descr->func,
1377 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001378 pci_dev_put(pdev);
1379 return -ENODEV;
1380 }
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001381
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001382 i7core_dev->pdev[devno] = pdev;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001383
1384 /* Sanity check */
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001385 if (unlikely(PCI_SLOT(pdev->devfn) != dev_descr->dev ||
1386 PCI_FUNC(pdev->devfn) != dev_descr->func)) {
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001387 i7core_printk(KERN_ERR,
1388 "Device PCI ID %04x:%04x "
1389 "has dev %02x:%02x.%d instead of dev %02x:%02x.%d\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001390 PCI_VENDOR_ID_INTEL, dev_descr->dev_id,
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001391 bus, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001392 bus, dev_descr->dev, dev_descr->func);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001393 return -ENODEV;
1394 }
1395
1396 /* Be sure that the device is enabled */
1397 if (unlikely(pci_enable_device(pdev) < 0)) {
1398 i7core_printk(KERN_ERR,
1399 "Couldn't enable "
1400 "dev %02x:%02x.%d PCI ID %04x:%04x\n",
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001401 bus, dev_descr->dev, dev_descr->func,
1402 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001403 return -ENODEV;
1404 }
1405
Joe Perches956b9ba12012-04-29 17:08:39 -03001406 edac_dbg(0, "Detected socket %d dev %02x:%02x.%d PCI ID %04x:%04x\n",
1407 socket, bus, dev_descr->dev,
1408 dev_descr->func,
1409 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001410
Mauro Carvalho Chehaba3e15412010-08-21 08:52:41 -03001411 /*
1412 * As stated on drivers/pci/search.c, the reference count for
1413 * @from is always decremented if it is not %NULL. So, as we need
1414 * to get all devices up to null, we need to do a get for the device
1415 */
1416 pci_dev_get(pdev);
1417
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001418 *prev = pdev;
1419
1420 return 0;
1421}
1422
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03001423static int i7core_get_all_devices(void)
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001424{
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001425 int i, rc, last_bus;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001426 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001427 const struct pci_id_table *table = pci_dev_table;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001428
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001429 last_bus = i7core_pci_lastbus();
1430
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001431 while (table && table->descr) {
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001432 for (i = 0; i < table->n_devs; i++) {
1433 pdev = NULL;
1434 do {
Hidetoshi Setob197cba2010-08-20 04:24:31 -03001435 rc = i7core_get_onedevice(&pdev, table, i,
Mauro Carvalho Chehabbda14282010-06-30 01:41:35 -03001436 last_bus);
Vernon Mauerybd9e19c2010-05-18 19:02:50 -03001437 if (rc < 0) {
1438 if (i == 0) {
1439 i = table->n_devs;
1440 break;
1441 }
1442 i7core_put_all_devices();
1443 return -ENODEV;
1444 }
1445 } while (pdev);
1446 }
Mauro Carvalho Chehab3c52cc52010-10-24 11:12:28 -02001447 table++;
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001448 }
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001449
Mauro Carvalho Chehabc77720b2009-07-18 10:43:08 -03001450 return 0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001451}
1452
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001453static int mci_bind_devs(struct mem_ctl_info *mci,
1454 struct i7core_dev *i7core_dev)
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001455{
1456 struct i7core_pvt *pvt = mci->pvt_info;
1457 struct pci_dev *pdev;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001458 int i, func, slot;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001459 char *family;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001460
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001461 pvt->is_registered = false;
1462 pvt->enable_scrub = false;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03001463 for (i = 0; i < i7core_dev->n_devs; i++) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001464 pdev = i7core_dev->pdev[i];
1465 if (!pdev)
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03001466 continue;
1467
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001468 func = PCI_FUNC(pdev->devfn);
1469 slot = PCI_SLOT(pdev->devfn);
1470 if (slot == 3) {
1471 if (unlikely(func > MAX_MCR_FUNC))
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001472 goto error;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001473 pvt->pci_mcr[func] = pdev;
1474 } else if (likely(slot >= 4 && slot < 4 + NUM_CHANS)) {
1475 if (unlikely(func > MAX_CHAN_FUNC))
1476 goto error;
1477 pvt->pci_ch[slot - 4][func] = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001478 } else if (!slot && !func) {
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001479 pvt->pci_noncore = pdev;
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001480
1481 /* Detect the processor family */
1482 switch (pdev->device) {
1483 case PCI_DEVICE_ID_INTEL_I7_NONCORE:
1484 family = "Xeon 35xx/ i7core";
1485 pvt->enable_scrub = false;
1486 break;
1487 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_ALT:
1488 family = "i7-800/i5-700";
1489 pvt->enable_scrub = false;
1490 break;
1491 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE:
1492 family = "Xeon 34xx";
1493 pvt->enable_scrub = false;
1494 break;
1495 case PCI_DEVICE_ID_INTEL_I7_NONCORE_ALT:
1496 family = "Xeon 55xx";
1497 pvt->enable_scrub = true;
1498 break;
1499 case PCI_DEVICE_ID_INTEL_LYNNFIELD_NONCORE_REV2:
1500 family = "Xeon 56xx / i7-900";
1501 pvt->enable_scrub = true;
1502 break;
1503 default:
1504 family = "unknown";
1505 pvt->enable_scrub = false;
1506 }
Joe Perches956b9ba12012-04-29 17:08:39 -03001507 edac_dbg(0, "Detected a processor type %s\n", family);
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001508 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001509 goto error;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001510
Joe Perches956b9ba12012-04-29 17:08:39 -03001511 edac_dbg(0, "Associated fn %d.%d, dev = %p, socket %d\n",
1512 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
1513 pdev, i7core_dev->socket);
Mauro Carvalho Chehab14d2c082009-09-02 23:52:36 -03001514
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001515 if (PCI_SLOT(pdev->devfn) == 3 &&
1516 PCI_FUNC(pdev->devfn) == 2)
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03001517 pvt->is_registered = true;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001518 }
Mauro Carvalho Chehabe9bd2e72009-07-09 22:14:35 -03001519
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03001520 return 0;
1521
1522error:
1523 i7core_printk(KERN_ERR, "Device %d, function %d "
1524 "is out of the expected range\n",
1525 slot, func);
1526 return -EINVAL;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001527}
1528
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001529/****************************************************************************
1530 Error check routines
1531 ****************************************************************************/
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001532
1533static void i7core_rdimm_update_ce_count(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001534 const int chan,
1535 const int new0,
1536 const int new1,
1537 const int new2)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001538{
1539 struct i7core_pvt *pvt = mci->pvt_info;
1540 int add0 = 0, add1 = 0, add2 = 0;
1541 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001542 if (pvt->ce_count_available) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001543 /* Updates CE counters */
1544
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001545 add2 = new2 - pvt->rdimm_last_ce_count[chan][2];
1546 add1 = new1 - pvt->rdimm_last_ce_count[chan][1];
1547 add0 = new0 - pvt->rdimm_last_ce_count[chan][0];
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001548
1549 if (add2 < 0)
1550 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001551 pvt->rdimm_ce_count[chan][2] += add2;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001552
1553 if (add1 < 0)
1554 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001555 pvt->rdimm_ce_count[chan][1] += add1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001556
1557 if (add0 < 0)
1558 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001559 pvt->rdimm_ce_count[chan][0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001560 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001561 pvt->ce_count_available = 1;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001562
1563 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001564 pvt->rdimm_last_ce_count[chan][2] = new2;
1565 pvt->rdimm_last_ce_count[chan][1] = new1;
1566 pvt->rdimm_last_ce_count[chan][0] = new0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001567
1568 /*updated the edac core */
1569 if (add0 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001570 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add0,
1571 0, 0, 0,
1572 chan, 0, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001573 if (add1 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001574 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add1,
1575 0, 0, 0,
1576 chan, 1, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001577 if (add2 != 0)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001578 edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, add2,
1579 0, 0, 0,
1580 chan, 2, -1, "error", "");
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001581}
1582
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001583static void i7core_rdimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001584{
1585 struct i7core_pvt *pvt = mci->pvt_info;
1586 u32 rcv[3][2];
1587 int i, new0, new1, new2;
1588
1589 /*Read DEV 3: FUN 2: MC_COR_ECC_CNT regs directly*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001590 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_0,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001591 &rcv[0][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001592 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_1,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001593 &rcv[0][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001594 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_2,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001595 &rcv[1][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001596 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_3,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001597 &rcv[1][1]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001598 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_4,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001599 &rcv[2][0]);
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001600 pci_read_config_dword(pvt->pci_mcr[2], MC_COR_ECC_CNT_5,
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001601 &rcv[2][1]);
1602 for (i = 0 ; i < 3; i++) {
Joe Perches956b9ba12012-04-29 17:08:39 -03001603 edac_dbg(3, "MC_COR_ECC_CNT%d = 0x%x; MC_COR_ECC_CNT%d = 0x%x\n",
1604 (i * 2), rcv[i][0], (i * 2) + 1, rcv[i][1]);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001605 /*if the channel has 3 dimms*/
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001606 if (pvt->channel[i].dimms > 2) {
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001607 new0 = DIMM_BOT_COR_ERR(rcv[i][0]);
1608 new1 = DIMM_TOP_COR_ERR(rcv[i][0]);
1609 new2 = DIMM_BOT_COR_ERR(rcv[i][1]);
1610 } else {
1611 new0 = DIMM_TOP_COR_ERR(rcv[i][0]) +
1612 DIMM_BOT_COR_ERR(rcv[i][0]);
1613 new1 = DIMM_TOP_COR_ERR(rcv[i][1]) +
1614 DIMM_BOT_COR_ERR(rcv[i][1]);
1615 new2 = 0;
1616 }
1617
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001618 i7core_rdimm_update_ce_count(mci, i, new0, new1, new2);
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001619 }
1620}
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001621
1622/* This function is based on the device 3 function 4 registers as described on:
1623 * Intel Xeon Processor 5500 Series Datasheet Volume 2
1624 * http://www.intel.com/Assets/PDF/datasheet/321322.pdf
1625 * also available at:
1626 * http://www.arrownac.com/manufacturers/intel/s/nehalem/5500-datasheet-v2.pdf
1627 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001628static void i7core_udimm_check_mc_ecc_err(struct mem_ctl_info *mci)
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001629{
1630 struct i7core_pvt *pvt = mci->pvt_info;
1631 u32 rcv1, rcv0;
1632 int new0, new1, new2;
1633
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001634 if (!pvt->pci_mcr[4]) {
Joe Perches956b9ba12012-04-29 17:08:39 -03001635 edac_dbg(0, "MCR registers not found\n");
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001636 return;
1637 }
1638
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001639 /* Corrected test errors */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001640 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV1, &rcv1);
1641 pci_read_config_dword(pvt->pci_mcr[4], MC_TEST_ERR_RCV0, &rcv0);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001642
1643 /* Store the new values */
1644 new2 = DIMM2_COR_ERR(rcv1);
1645 new1 = DIMM1_COR_ERR(rcv0);
1646 new0 = DIMM0_COR_ERR(rcv0);
1647
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001648 /* Updates CE counters if it is not the first time here */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001649 if (pvt->ce_count_available) {
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001650 /* Updates CE counters */
1651 int add0, add1, add2;
1652
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001653 add2 = new2 - pvt->udimm_last_ce_count[2];
1654 add1 = new1 - pvt->udimm_last_ce_count[1];
1655 add0 = new0 - pvt->udimm_last_ce_count[0];
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001656
1657 if (add2 < 0)
1658 add2 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001659 pvt->udimm_ce_count[2] += add2;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001660
1661 if (add1 < 0)
1662 add1 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001663 pvt->udimm_ce_count[1] += add1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001664
1665 if (add0 < 0)
1666 add0 += 0x7fff;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001667 pvt->udimm_ce_count[0] += add0;
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001668
1669 if (add0 | add1 | add2)
1670 i7core_printk(KERN_ERR, "New Corrected error(s): "
1671 "dimm0: +%d, dimm1: +%d, dimm2 +%d\n",
1672 add0, add1, add2);
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001673 } else
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001674 pvt->ce_count_available = 1;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001675
1676 /* Store the new values */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001677 pvt->udimm_last_ce_count[2] = new2;
1678 pvt->udimm_last_ce_count[1] = new1;
1679 pvt->udimm_last_ce_count[0] = new0;
Mauro Carvalho Chehab442305b2009-06-22 22:48:29 -03001680}
1681
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001682/*
1683 * According with tables E-11 and E-12 of chapter E.3.3 of Intel 64 and IA-32
1684 * Architectures Software Developer’s Manual Volume 3B.
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001685 * Nehalem are defined as family 0x06, model 0x1a
1686 *
1687 * The MCA registers used here are the following ones:
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001688 * struct mce field MCA Register
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001689 * m->status MSR_IA32_MC8_STATUS
1690 * m->addr MSR_IA32_MC8_ADDR
1691 * m->misc MSR_IA32_MC8_MISC
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001692 * In the case of Nehalem, the error information is masked at .status and .misc
1693 * fields
1694 */
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001695static void i7core_mce_output_error(struct mem_ctl_info *mci,
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03001696 const struct mce *m)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001697{
Mauro Carvalho Chehabb4e8f0b2009-09-02 23:49:59 -03001698 struct i7core_pvt *pvt = mci->pvt_info;
Jean Delvaref1189202014-02-24 17:13:58 +01001699 char *optype, *err;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001700 enum hw_event_mc_err_type tp_event;
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001701 unsigned long error = m->status & 0x1ff0000l;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001702 bool uncorrected_error = m->mcgstatus & 1ll << 61;
1703 bool ripv = m->mcgstatus & 1;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001704 u32 optypenum = (m->status >> 4) & 0x07;
Mathias Krause8cf2d232011-08-18 09:17:00 +02001705 u32 core_err_cnt = (m->status >> 38) & 0x7fff;
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001706 u32 dimm = (m->misc >> 16) & 0x3;
1707 u32 channel = (m->misc >> 18) & 0x3;
1708 u32 syndrome = m->misc >> 32;
1709 u32 errnum = find_first_bit(&error, 32);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001710
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001711 if (uncorrected_error) {
Tony Luck432de7f2018-09-28 14:39:34 -07001712 core_err_cnt = 1;
Jean Delvaref1189202014-02-24 17:13:58 +01001713 if (ripv)
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001714 tp_event = HW_EVENT_ERR_FATAL;
Jean Delvaref1189202014-02-24 17:13:58 +01001715 else
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001716 tp_event = HW_EVENT_ERR_UNCORRECTED;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001717 } else {
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001718 tp_event = HW_EVENT_ERR_CORRECTED;
1719 }
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001720
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001721 switch (optypenum) {
Mauro Carvalho Chehabb9905382009-08-05 21:36:35 -03001722 case 0:
1723 optype = "generic undef request";
1724 break;
1725 case 1:
1726 optype = "read error";
1727 break;
1728 case 2:
1729 optype = "write error";
1730 break;
1731 case 3:
1732 optype = "addr/cmd error";
1733 break;
1734 case 4:
1735 optype = "scrubbing error";
1736 break;
1737 default:
1738 optype = "reserved";
1739 break;
Mauro Carvalho Chehaba6395392009-07-17 10:54:23 -03001740 }
1741
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001742 switch (errnum) {
1743 case 16:
1744 err = "read ECC error";
1745 break;
1746 case 17:
1747 err = "RAS ECC error";
1748 break;
1749 case 18:
1750 err = "write parity error";
1751 break;
1752 case 19:
Colin Ian King83e548b2018-05-04 12:38:04 +01001753 err = "redundancy loss";
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001754 break;
1755 case 20:
1756 err = "reserved";
1757 break;
1758 case 21:
1759 err = "memory range error";
1760 break;
1761 case 22:
1762 err = "RTID out of range";
1763 break;
1764 case 23:
1765 err = "address parity error";
1766 break;
1767 case 24:
1768 err = "byte enable parity error";
1769 break;
1770 default:
1771 err = "unknown";
1772 }
1773
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001774 /*
1775 * Call the helper to output message
1776 * FIXME: what to do if core_err_cnt > 1? Currently, it generates
1777 * only one event
1778 */
1779 if (uncorrected_error || !pvt->is_registered)
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001780 edac_mc_handle_error(tp_event, mci, core_err_cnt,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03001781 m->addr >> PAGE_SHIFT,
1782 m->addr & ~PAGE_MASK,
1783 syndrome,
1784 channel, dimm, -1,
Mauro Carvalho Chehab00d18332012-06-04 13:38:52 -03001785 err, optype);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001786}
1787
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03001788/*
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001789 * i7core_check_error Retrieve and process errors reported by the
1790 * hardware. Called by the Core module.
1791 */
Tony Luck53595342016-04-28 07:52:11 -07001792static void i7core_check_error(struct mem_ctl_info *mci, struct mce *m)
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001793{
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001794 struct i7core_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001795
Tony Luck53595342016-04-28 07:52:11 -07001796 i7core_mce_output_error(mci, m);
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001797
Mauro Carvalho Chehabca9c90b2009-10-04 10:15:40 -03001798 /*
1799 * Now, let's increment CE error counts
1800 */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03001801 if (!pvt->is_registered)
1802 i7core_udimm_check_mc_ecc_err(mci);
1803 else
1804 i7core_rdimm_check_mc_ecc_err(mci);
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03001805}
1806
1807/*
Tony Luck53595342016-04-28 07:52:11 -07001808 * Check that logging is enabled and that this is the right type
1809 * of error for us to handle.
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001810 */
Borislav Petkov4140c542011-07-18 11:24:46 -03001811static int i7core_mce_check_error(struct notifier_block *nb, unsigned long val,
1812 void *data)
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001813{
Borislav Petkov4140c542011-07-18 11:24:46 -03001814 struct mce *mce = (struct mce *)data;
1815 struct i7core_dev *i7_dev;
1816 struct mem_ctl_info *mci;
Borislav Petkov4140c542011-07-18 11:24:46 -03001817
1818 i7_dev = get_i7core_dev(mce->socketid);
1819 if (!i7_dev)
Tony Luckc4fc1952016-04-29 15:42:25 +02001820 return NOTIFY_DONE;
Borislav Petkov4140c542011-07-18 11:24:46 -03001821
1822 mci = i7_dev->mci;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001823
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001824 /*
1825 * Just let mcelog handle it if the error is
1826 * outside the memory controller
1827 */
1828 if (((mce->status & 0xffff) >> 7) != 1)
Borislav Petkov4140c542011-07-18 11:24:46 -03001829 return NOTIFY_DONE;
Mauro Carvalho Chehab8a2f118e2009-07-15 19:01:08 -03001830
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001831 /* Bank 8 registers are the only ones that we know how to handle */
1832 if (mce->bank != 8)
Borislav Petkov4140c542011-07-18 11:24:46 -03001833 return NOTIFY_DONE;
Mauro Carvalho Chehabf237fcf2009-07-15 19:53:24 -03001834
Tony Luck53595342016-04-28 07:52:11 -07001835 i7core_check_error(mci, mce);
Mauro Carvalho Chehabc5d34522009-07-17 10:28:15 -03001836
David Sterbae7bf0682010-12-27 16:51:15 +01001837 /* Advise mcelog that the errors were handled */
Borislav Petkov4140c542011-07-18 11:24:46 -03001838 return NOTIFY_STOP;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03001839}
1840
Borislav Petkov4140c542011-07-18 11:24:46 -03001841static struct notifier_block i7_mce_dec = {
1842 .notifier_call = i7core_mce_check_error,
Borislav Petkov9026cc82017-01-23 19:35:14 +01001843 .priority = MCE_PRIO_EDAC,
Borislav Petkov4140c542011-07-18 11:24:46 -03001844};
1845
Nils Carlson535e9c72011-08-08 06:21:26 -03001846struct memdev_dmi_entry {
1847 u8 type;
1848 u8 length;
1849 u16 handle;
1850 u16 phys_mem_array_handle;
1851 u16 mem_err_info_handle;
1852 u16 total_width;
1853 u16 data_width;
1854 u16 size;
1855 u8 form;
1856 u8 device_set;
1857 u8 device_locator;
1858 u8 bank_locator;
1859 u8 memory_type;
1860 u16 type_detail;
1861 u16 speed;
1862 u8 manufacturer;
1863 u8 serial_number;
1864 u8 asset_tag;
1865 u8 part_number;
1866 u8 attributes;
1867 u32 extended_size;
1868 u16 conf_mem_clk_speed;
1869} __attribute__((__packed__));
1870
1871
1872/*
1873 * Decode the DRAM Clock Frequency, be paranoid, make sure that all
1874 * memory devices show the same speed, and if they don't then consider
1875 * all speeds to be invalid.
1876 */
1877static void decode_dclk(const struct dmi_header *dh, void *_dclk_freq)
1878{
1879 int *dclk_freq = _dclk_freq;
1880 u16 dmi_mem_clk_speed;
1881
1882 if (*dclk_freq == -1)
1883 return;
1884
1885 if (dh->type == DMI_ENTRY_MEM_DEVICE) {
1886 struct memdev_dmi_entry *memdev_dmi_entry =
1887 (struct memdev_dmi_entry *)dh;
1888 unsigned long conf_mem_clk_speed_offset =
1889 (unsigned long)&memdev_dmi_entry->conf_mem_clk_speed -
1890 (unsigned long)&memdev_dmi_entry->type;
1891 unsigned long speed_offset =
1892 (unsigned long)&memdev_dmi_entry->speed -
1893 (unsigned long)&memdev_dmi_entry->type;
1894
1895 /* Check that a DIMM is present */
1896 if (memdev_dmi_entry->size == 0)
1897 return;
1898
1899 /*
1900 * Pick the configured speed if it's available, otherwise
1901 * pick the DIMM speed, or we don't have a speed.
1902 */
1903 if (memdev_dmi_entry->length > conf_mem_clk_speed_offset) {
1904 dmi_mem_clk_speed =
1905 memdev_dmi_entry->conf_mem_clk_speed;
1906 } else if (memdev_dmi_entry->length > speed_offset) {
1907 dmi_mem_clk_speed = memdev_dmi_entry->speed;
1908 } else {
1909 *dclk_freq = -1;
1910 return;
1911 }
1912
1913 if (*dclk_freq == 0) {
1914 /* First pass, speed was 0 */
1915 if (dmi_mem_clk_speed > 0) {
1916 /* Set speed if a valid speed is read */
1917 *dclk_freq = dmi_mem_clk_speed;
1918 } else {
1919 /* Otherwise we don't have a valid speed */
1920 *dclk_freq = -1;
1921 }
1922 } else if (*dclk_freq > 0 &&
1923 *dclk_freq != dmi_mem_clk_speed) {
1924 /*
1925 * If we have a speed, check that all DIMMS are the same
1926 * speed, otherwise set the speed as invalid.
1927 */
1928 *dclk_freq = -1;
1929 }
1930 }
1931}
1932
1933/*
1934 * The default DCLK frequency is used as a fallback if we
1935 * fail to find anything reliable in the DMI. The value
1936 * is taken straight from the datasheet.
1937 */
1938#define DEFAULT_DCLK_FREQ 800
1939
1940static int get_dclk_freq(void)
1941{
1942 int dclk_freq = 0;
1943
1944 dmi_walk(decode_dclk, (void *)&dclk_freq);
1945
1946 if (dclk_freq < 1)
1947 return DEFAULT_DCLK_FREQ;
1948
1949 return dclk_freq;
1950}
1951
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001952/*
1953 * set_sdram_scrub_rate This routine sets byte/sec bandwidth scrub rate
1954 * to hardware according to SCRUBINTERVAL formula
1955 * found in datasheet.
1956 */
1957static int set_sdram_scrub_rate(struct mem_ctl_info *mci, u32 new_bw)
1958{
1959 struct i7core_pvt *pvt = mci->pvt_info;
1960 struct pci_dev *pdev;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001961 u32 dw_scrub;
1962 u32 dw_ssr;
1963
1964 /* Get data from the MC register, function 2 */
1965 pdev = pvt->pci_mcr[2];
1966 if (!pdev)
1967 return -ENODEV;
1968
1969 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &dw_scrub);
1970
1971 if (new_bw == 0) {
1972 /* Prepare to disable petrol scrub */
1973 dw_scrub &= ~STARTSCRUB;
1974 /* Stop the patrol scrub engine */
Nils Carlson535e9c72011-08-08 06:21:26 -03001975 write_and_test(pdev, MC_SCRUB_CONTROL,
1976 dw_scrub & ~SCRUBINTERVAL_MASK);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001977
1978 /* Get current status of scrub rate and set bit to disable */
1979 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
1980 dw_ssr &= ~SSR_MODE_MASK;
1981 dw_ssr |= SSR_MODE_DISABLE;
1982 } else {
Nils Carlson535e9c72011-08-08 06:21:26 -03001983 const int cache_line_size = 64;
1984 const u32 freq_dclk_mhz = pvt->dclk_freq;
1985 unsigned long long scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001986 /*
1987 * Translate the desired scrub rate to a register value and
Nils Carlson535e9c72011-08-08 06:21:26 -03001988 * program the corresponding register value.
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001989 */
Nils Carlson535e9c72011-08-08 06:21:26 -03001990 scrub_interval = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03001991 cache_line_size * 1000000;
1992 do_div(scrub_interval, new_bw);
Nils Carlson535e9c72011-08-08 06:21:26 -03001993
1994 if (!scrub_interval || scrub_interval > SCRUBINTERVAL_MASK)
1995 return -EINVAL;
1996
1997 dw_scrub = SCRUBINTERVAL_MASK & scrub_interval;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03001998
1999 /* Start the patrol scrub engine */
2000 pci_write_config_dword(pdev, MC_SCRUB_CONTROL,
2001 STARTSCRUB | dw_scrub);
2002
2003 /* Get current status of scrub rate and set bit to enable */
2004 pci_read_config_dword(pdev, MC_SSRCONTROL, &dw_ssr);
2005 dw_ssr &= ~SSR_MODE_MASK;
2006 dw_ssr |= SSR_MODE_ENABLE;
2007 }
2008 /* Disable or enable scrubbing */
2009 pci_write_config_dword(pdev, MC_SSRCONTROL, dw_ssr);
2010
2011 return new_bw;
2012}
2013
2014/*
2015 * get_sdram_scrub_rate This routine convert current scrub rate value
David Mackey15ed1032012-04-17 11:30:52 -07002016 * into byte/sec bandwidth according to
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002017 * SCRUBINTERVAL formula found in datasheet.
2018 */
2019static int get_sdram_scrub_rate(struct mem_ctl_info *mci)
2020{
2021 struct i7core_pvt *pvt = mci->pvt_info;
2022 struct pci_dev *pdev;
2023 const u32 cache_line_size = 64;
Nils Carlson535e9c72011-08-08 06:21:26 -03002024 const u32 freq_dclk_mhz = pvt->dclk_freq;
2025 unsigned long long scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002026 u32 scrubval;
2027
2028 /* Get data from the MC register, function 2 */
2029 pdev = pvt->pci_mcr[2];
2030 if (!pdev)
2031 return -ENODEV;
2032
2033 /* Get current scrub control data */
2034 pci_read_config_dword(pdev, MC_SCRUB_CONTROL, &scrubval);
2035
2036 /* Mask highest 8-bits to 0 */
Nils Carlson535e9c72011-08-08 06:21:26 -03002037 scrubval &= SCRUBINTERVAL_MASK;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002038 if (!scrubval)
2039 return 0;
2040
2041 /* Calculate scrub rate value into byte/sec bandwidth */
Nils Carlson535e9c72011-08-08 06:21:26 -03002042 scrub_rate = (unsigned long long)freq_dclk_mhz *
Sedat Dilek4fad8092011-09-21 23:44:52 -03002043 1000000 * cache_line_size;
2044 do_div(scrub_rate, scrubval);
Nils Carlson535e9c72011-08-08 06:21:26 -03002045 return (int)scrub_rate;
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002046}
2047
2048static void enable_sdram_scrub_setting(struct mem_ctl_info *mci)
2049{
2050 struct i7core_pvt *pvt = mci->pvt_info;
2051 u32 pci_lock;
2052
2053 /* Unlock writes to pci registers */
2054 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2055 pci_lock &= ~0x3;
2056 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2057 pci_lock | MC_CFG_UNLOCK);
2058
2059 mci->set_sdram_scrub_rate = set_sdram_scrub_rate;
2060 mci->get_sdram_scrub_rate = get_sdram_scrub_rate;
2061}
2062
2063static void disable_sdram_scrub_setting(struct mem_ctl_info *mci)
2064{
2065 struct i7core_pvt *pvt = mci->pvt_info;
2066 u32 pci_lock;
2067
2068 /* Lock writes to pci registers */
2069 pci_read_config_dword(pvt->pci_noncore, MC_CFG_CONTROL, &pci_lock);
2070 pci_lock &= ~0x3;
2071 pci_write_config_dword(pvt->pci_noncore, MC_CFG_CONTROL,
2072 pci_lock | MC_CFG_LOCK);
2073}
2074
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002075static void i7core_pci_ctl_create(struct i7core_pvt *pvt)
2076{
2077 pvt->i7core_pci = edac_pci_create_generic_ctl(
2078 &pvt->i7core_dev->pdev[0]->dev,
2079 EDAC_MOD_STR);
2080 if (unlikely(!pvt->i7core_pci))
Mauro Carvalho Chehabf9902f22010-08-21 09:42:05 -03002081 i7core_printk(KERN_WARNING,
2082 "Unable to setup PCI error report via EDAC\n");
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002083}
2084
2085static void i7core_pci_ctl_release(struct i7core_pvt *pvt)
2086{
2087 if (likely(pvt->i7core_pci))
2088 edac_pci_release_generic_ctl(pvt->i7core_pci);
2089 else
2090 i7core_printk(KERN_ERR,
2091 "Couldn't find mem_ctl_info for socket %d\n",
2092 pvt->i7core_dev->socket);
2093 pvt->i7core_pci = NULL;
2094}
2095
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002096static void i7core_unregister_mci(struct i7core_dev *i7core_dev)
2097{
2098 struct mem_ctl_info *mci = i7core_dev->mci;
2099 struct i7core_pvt *pvt;
2100
2101 if (unlikely(!mci || !mci->pvt_info)) {
Joe Perches956b9ba12012-04-29 17:08:39 -03002102 edac_dbg(0, "MC: dev = %p\n", &i7core_dev->pdev[0]->dev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002103
2104 i7core_printk(KERN_ERR, "Couldn't find mci handler\n");
2105 return;
2106 }
2107
2108 pvt = mci->pvt_info;
2109
Joe Perches956b9ba12012-04-29 17:08:39 -03002110 edac_dbg(0, "MC: mci = %p, dev = %p\n", mci, &i7core_dev->pdev[0]->dev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002111
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002112 /* Disable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002113 if (pvt->enable_scrub)
2114 disable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002115
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002116 /* Disable EDAC polling */
2117 i7core_pci_ctl_release(pvt);
2118
2119 /* Remove MC sysfs nodes */
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002120 i7core_delete_sysfs_devices(mci);
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002121 edac_mc_del_mc(mci->pdev);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002122
Joe Perches956b9ba12012-04-29 17:08:39 -03002123 edac_dbg(1, "%s: free mci struct\n", mci->ctl_name);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002124 kfree(mci->ctl_name);
2125 edac_mc_free(mci);
2126 i7core_dev->mci = NULL;
2127}
2128
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002129static int i7core_register_mci(struct i7core_dev *i7core_dev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002130{
2131 struct mem_ctl_info *mci;
2132 struct i7core_pvt *pvt;
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002133 int rc;
2134 struct edac_mc_layer layers[2];
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002135
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002136 /* allocate a new MC control structure */
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002137
2138 layers[0].type = EDAC_MC_LAYER_CHANNEL;
2139 layers[0].size = NUM_CHANS;
2140 layers[0].is_virt_csrow = false;
2141 layers[1].type = EDAC_MC_LAYER_SLOT;
2142 layers[1].size = MAX_DIMMS;
2143 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03002144 mci = edac_mc_alloc(i7core_dev->socket, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehab0975c162012-04-16 15:10:12 -03002145 sizeof(*pvt));
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002146 if (unlikely(!mci))
2147 return -ENOMEM;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002148
Joe Perches956b9ba12012-04-29 17:08:39 -03002149 edac_dbg(0, "MC: mci = %p, dev = %p\n", mci, &i7core_dev->pdev[0]->dev);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002150
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002151 pvt = mci->pvt_info;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002152 memset(pvt, 0, sizeof(*pvt));
Mauro Carvalho Chehab67166af2009-07-15 06:56:23 -03002153
Mauro Carvalho Chehab6d37d242010-08-20 12:48:26 -03002154 /* Associates i7core_dev and mci for future usage */
2155 pvt->i7core_dev = i7core_dev;
2156 i7core_dev->mci = mci;
2157
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002158 /*
2159 * FIXME: how to handle RDDR3 at MCI level? It is possible to have
2160 * Mixed RDDR3/UDDR3 with Nehalem, provided that they are on different
2161 * memory channels
2162 */
2163 mci->mtype_cap = MEM_FLAG_DDR3;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002164 mci->edac_ctl_cap = EDAC_FLAG_NONE;
2165 mci->edac_cap = EDAC_FLAG_NONE;
2166 mci->mod_name = "i7core_edac.c";
Arvind Yadav75f029c2017-09-21 12:16:56 +02002167
2168 mci->ctl_name = kasprintf(GFP_KERNEL, "i7 core #%d", i7core_dev->socket);
2169 if (!mci->ctl_name) {
2170 rc = -ENOMEM;
2171 goto fail1;
2172 }
2173
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002174 mci->dev_name = pci_name(i7core_dev->pdev[0]);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002175 mci->ctl_page_to_phys = NULL;
Mauro Carvalho Chehab1288c182010-08-10 18:57:01 -03002176
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002177 /* Store pci devices at mci for faster access */
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002178 rc = mci_bind_devs(mci, i7core_dev);
Mauro Carvalho Chehab41fcb7f2009-06-22 22:48:31 -03002179 if (unlikely(rc < 0))
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002180 goto fail0;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002181
Hidetoshi Seto59398132010-08-20 04:28:25 -03002182
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002183 /* Get dimm basic config */
Hidetoshi Seto2e5185f2010-08-20 04:32:56 -03002184 get_dimm_config(mci);
Hidetoshi Seto59398132010-08-20 04:28:25 -03002185 /* record ptr to the generic device */
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03002186 mci->pdev = &i7core_dev->pdev[0]->dev;
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002187
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002188 /* Enable scrubrate setting */
Mauro Carvalho Chehab27100db2011-08-04 21:35:27 -03002189 if (pvt->enable_scrub)
2190 enable_sdram_scrub_setting(mci);
Samuel Gabrielssone8b6a122011-03-30 10:21:23 -03002191
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002192 /* add this new MC control structure to EDAC's list of MCs */
Takashi Iwai2eace182015-02-04 11:48:55 +01002193 if (unlikely(edac_mc_add_mc_with_groups(mci, i7core_dev_groups))) {
Joe Perches956b9ba12012-04-29 17:08:39 -03002194 edac_dbg(0, "MC: failed edac_mc_add_mc()\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002195 /* FIXME: perhaps some code should go here that disables error
2196 * reporting if we just enabled it
2197 */
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002198
2199 rc = -EINVAL;
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002200 goto fail0;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002201 }
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002202 if (i7core_create_sysfs_devices(mci)) {
Joe Perches956b9ba12012-04-29 17:08:39 -03002203 edac_dbg(0, "MC: failed to create sysfs nodes\n");
Mauro Carvalho Chehab5c4cdb52012-03-21 11:08:06 -03002204 edac_mc_del_mc(mci->pdev);
2205 rc = -EINVAL;
2206 goto fail0;
2207 }
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002208
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002209 /* Default error mask is any memory */
Mauro Carvalho Chehabef708b52009-06-22 22:48:30 -03002210 pvt->inject.channel = 0;
Mauro Carvalho Chehab194a40f2009-06-22 22:48:28 -03002211 pvt->inject.dimm = -1;
2212 pvt->inject.rank = -1;
2213 pvt->inject.bank = -1;
2214 pvt->inject.page = -1;
2215 pvt->inject.col = -1;
2216
Hidetoshi Setoa3aa0a42010-08-20 04:25:18 -03002217 /* allocating generic PCI control info */
2218 i7core_pci_ctl_create(pvt);
2219
Nils Carlson535e9c72011-08-08 06:21:26 -03002220 /* DCLK for scrub rate setting */
2221 pvt->dclk_freq = get_dclk_freq();
2222
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002223 return 0;
2224
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002225fail0:
2226 kfree(mci->ctl_name);
Arvind Yadav75f029c2017-09-21 12:16:56 +02002227
2228fail1:
Hidetoshi Seto628c5dd2010-08-20 04:28:40 -03002229 edac_mc_free(mci);
Hidetoshi Seto1c6edbb2010-08-20 04:32:33 -03002230 i7core_dev->mci = NULL;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002231 return rc;
2232}
2233
2234/*
2235 * i7core_probe Probe for ONE instance of device to see if it is
2236 * present.
2237 * return:
2238 * 0 for FOUND a device
2239 * < 0 for error code
2240 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002241
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002242static int i7core_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002243{
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002244 int rc, count = 0;
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002245 struct i7core_dev *i7core_dev;
2246
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002247 /* get the pci devices we want to reserve for our use */
2248 mutex_lock(&i7core_edac_lock);
2249
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002250 /*
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002251 * All memory controllers are allocated at the first pass.
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002252 */
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002253 if (unlikely(probed >= 1)) {
2254 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehab76a7bd82010-10-24 11:36:19 -02002255 return -ENODEV;
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002256 }
2257 probed++;
Mauro Carvalho Chehabde06eee2009-10-14 08:02:40 -03002258
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002259 rc = i7core_get_all_devices();
Mauro Carvalho Chehabf4742942009-09-05 02:35:08 -03002260 if (unlikely(rc < 0))
2261 goto fail0;
2262
2263 list_for_each_entry(i7core_dev, &i7core_edac_list, list) {
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002264 count++;
Hidetoshi Setoaace4282010-08-20 04:32:45 -03002265 rc = i7core_register_mci(i7core_dev);
Mauro Carvalho Chehabd4c27792009-09-05 04:12:02 -03002266 if (unlikely(rc < 0))
2267 goto fail1;
Mauro Carvalho Chehabd5381642009-07-09 22:06:41 -03002268 }
2269
Mauro Carvalho Chehab40557592010-11-30 08:14:30 -02002270 /*
2271 * Nehalem-EX uses a different memory controller. However, as the
2272 * memory controller is not visible on some Nehalem/Nehalem-EP, we
2273 * need to indirectly probe via a X58 PCI device. The same devices
2274 * are found on (some) Nehalem-EX. So, on those machines, the
2275 * probe routine needs to return -ENODEV, as the actual Memory
2276 * Controller registers won't be detected.
2277 */
2278 if (!count) {
2279 rc = -ENODEV;
2280 goto fail1;
2281 }
2282
2283 i7core_printk(KERN_INFO,
2284 "Driver loaded, %d memory controller(s) found.\n",
2285 count);
Mauro Carvalho Chehab8f331902009-06-22 22:48:29 -03002286
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002287 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002288 return 0;
2289
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002290fail1:
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002291 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2292 i7core_unregister_mci(i7core_dev);
2293
Mauro Carvalho Chehab13d6e9b2009-09-05 12:15:20 -03002294 i7core_put_all_devices();
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002295fail0:
2296 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehabb7c76152009-06-22 22:48:30 -03002297 return rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002298}
2299
2300/*
2301 * i7core_remove destructor for one instance of device
2302 *
2303 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002304static void i7core_remove(struct pci_dev *pdev)
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002305{
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002306 struct i7core_dev *i7core_dev;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002307
Joe Perches956b9ba12012-04-29 17:08:39 -03002308 edac_dbg(0, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002309
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002310 /*
2311 * we have a trouble here: pdev value for removal will be wrong, since
2312 * it will point to the X58 register used to detect that the machine
2313 * is a Nehalem or upper design. However, due to the way several PCI
2314 * devices are grouped together to provide MC functionality, we need
2315 * to use a different method for releasing the devices
2316 */
Mauro Carvalho Chehab87d1d272009-06-22 22:48:29 -03002317
Mauro Carvalho Chehab66607702009-09-05 00:52:11 -03002318 mutex_lock(&i7core_edac_lock);
Hidetoshi Seto71fe0172010-08-20 04:29:47 -03002319
2320 if (unlikely(!probed)) {
2321 mutex_unlock(&i7core_edac_lock);
2322 return;
2323 }
2324
Mauro Carvalho Chehab88ef5ea2010-08-20 15:39:38 -03002325 list_for_each_entry(i7core_dev, &i7core_edac_list, list)
2326 i7core_unregister_mci(i7core_dev);
Hidetoshi Seto64c10f62010-08-20 04:28:14 -03002327
2328 /* Release PCI resources */
2329 i7core_put_all_devices();
2330
Mauro Carvalho Chehab2d95d812010-06-30 01:42:21 -03002331 probed--;
2332
Mauro Carvalho Chehab22e6bcb2009-09-05 23:06:50 -03002333 mutex_unlock(&i7core_edac_lock);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002334}
2335
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002336MODULE_DEVICE_TABLE(pci, i7core_pci_tbl);
2337
2338/*
2339 * i7core_driver pci_driver structure for this module
2340 *
2341 */
2342static struct pci_driver i7core_driver = {
2343 .name = "i7core_edac",
2344 .probe = i7core_probe,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08002345 .remove = i7core_remove,
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002346 .id_table = i7core_pci_tbl,
2347};
2348
2349/*
2350 * i7core_init Module entry function
2351 * Try to initialize this module for its devices
2352 */
2353static int __init i7core_init(void)
2354{
2355 int pci_rc;
2356
Joe Perches956b9ba12012-04-29 17:08:39 -03002357 edac_dbg(2, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002358
2359 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
2360 opstate_init();
2361
Mauro Carvalho Chehab54a08ab2010-08-19 15:51:00 -03002362 if (use_pci_fixup)
2363 i7core_xeon_pci_fixup(pci_dev_table);
Keith Manntheybc2d7242009-09-03 00:05:05 -03002364
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002365 pci_rc = pci_register_driver(&i7core_driver);
2366
Chen Gonge35fca42012-05-08 20:40:12 -03002367 if (pci_rc >= 0) {
2368 mce_register_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002369 return 0;
Chen Gonge35fca42012-05-08 20:40:12 -03002370 }
Mauro Carvalho Chehab3ef288a2009-09-02 23:43:33 -03002371
2372 i7core_printk(KERN_ERR, "Failed to register device with error %d.\n",
2373 pci_rc);
2374
2375 return pci_rc;
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002376}
2377
2378/*
2379 * i7core_exit() Module exit function
2380 * Unregister the driver
2381 */
2382static void __exit i7core_exit(void)
2383{
Joe Perches956b9ba12012-04-29 17:08:39 -03002384 edac_dbg(2, "\n");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002385 pci_unregister_driver(&i7core_driver);
Chen Gonge35fca42012-05-08 20:40:12 -03002386 mce_unregister_decode_chain(&i7_mce_dec);
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002387}
2388
2389module_init(i7core_init);
2390module_exit(i7core_exit);
2391
2392MODULE_LICENSE("GPL");
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02002393MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehaba0c36a12009-06-22 22:41:15 -03002394MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
2395MODULE_DESCRIPTION("MC Driver for Intel i7 Core memory controllers - "
2396 I7CORE_REVISION);
2397
2398module_param(edac_op_state, int, 0444);
2399MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");