blob: b3d924da59853baed598eacf40a4450eade895f4 [file] [log] [blame]
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001/* Intel Sandy Bridge -EN/-EP/-EX Memory Controller kernel module
2 *
3 * This driver supports the memory controllers found on the Intel
4 * processor family Sandy Bridge.
5 *
6 * This file may be distributed under the terms of the
7 * GNU General Public License version 2 only.
8 *
9 * Copyright (c) 2011 by:
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -020010 * Mauro Carvalho Chehab
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020011 */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/pci.h>
16#include <linux/pci_ids.h>
17#include <linux/slab.h>
18#include <linux/delay.h>
19#include <linux/edac.h>
20#include <linux/mmzone.h>
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020021#include <linux/smp.h>
22#include <linux/bitmap.h>
Mauro Carvalho Chehab5b889e32011-11-07 18:26:53 -030023#include <linux/math64.h>
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020024#include <asm/processor.h>
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -020025#include <asm/mce.h>
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020026
27#include "edac_core.h"
28
29/* Static vars */
30static LIST_HEAD(sbridge_edac_list);
31static DEFINE_MUTEX(sbridge_edac_lock);
32static int probed;
33
34/*
35 * Alter this version for the module when modifications are made
36 */
Tony Luck7d375bf2015-05-18 17:50:42 -030037#define SBRIDGE_REVISION " Ver: 1.1.1 "
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020038#define EDAC_MOD_STR "sbridge_edac"
39
40/*
41 * Debug macros
42 */
43#define sbridge_printk(level, fmt, arg...) \
44 edac_printk(level, "sbridge", fmt, ##arg)
45
46#define sbridge_mc_printk(mci, level, fmt, arg...) \
47 edac_mc_chipset_printk(mci, level, "sbridge", fmt, ##arg)
48
49/*
50 * Get a bit field at register value <v>, from bit <lo> to bit <hi>
51 */
52#define GET_BITFIELD(v, lo, hi) \
Chen, Gong10ef6b02013-10-18 14:29:07 -070053 (((v) & GENMASK_ULL(hi, lo)) >> (lo))
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020054
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020055/* Devices 12 Function 6, Offsets 0x80 to 0xcc */
Aristeu Rozanski464f1d82013-10-30 13:27:00 -030056static const u32 sbridge_dram_rule[] = {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020057 0x80, 0x88, 0x90, 0x98, 0xa0,
58 0xa8, 0xb0, 0xb8, 0xc0, 0xc8,
59};
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020060
Aristeu Rozanski4d715a82013-10-30 13:27:06 -030061static const u32 ibridge_dram_rule[] = {
62 0x60, 0x68, 0x70, 0x78, 0x80,
63 0x88, 0x90, 0x98, 0xa0, 0xa8,
64 0xb0, 0xb8, 0xc0, 0xc8, 0xd0,
65 0xd8, 0xe0, 0xe8, 0xf0, 0xf8,
66};
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020067
Jim Snowd0cdf902015-12-03 10:48:54 +010068static const u32 knl_dram_rule[] = {
69 0x60, 0x68, 0x70, 0x78, 0x80, /* 0-4 */
70 0x88, 0x90, 0x98, 0xa0, 0xa8, /* 5-9 */
71 0xb0, 0xb8, 0xc0, 0xc8, 0xd0, /* 10-14 */
72 0xd8, 0xe0, 0xe8, 0xf0, 0xf8, /* 15-19 */
73 0x100, 0x108, 0x110, 0x118, /* 20-23 */
74};
75
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020076#define DRAM_RULE_ENABLE(reg) GET_BITFIELD(reg, 0, 0)
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -030077#define A7MODE(reg) GET_BITFIELD(reg, 26, 26)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020078
Jim Snowc59f9c02015-12-03 10:48:52 +010079static char *show_dram_attr(u32 attr)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020080{
Jim Snowc59f9c02015-12-03 10:48:52 +010081 switch (attr) {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020082 case 0:
83 return "DRAM";
84 case 1:
85 return "MMCFG";
86 case 2:
87 return "NXM";
88 default:
89 return "unknown";
90 }
91}
92
Aristeu Rozanskief1ce512013-10-30 13:27:01 -030093static const u32 sbridge_interleave_list[] = {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020094 0x84, 0x8c, 0x94, 0x9c, 0xa4,
95 0xac, 0xb4, 0xbc, 0xc4, 0xcc,
96};
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -020097
Aristeu Rozanski4d715a82013-10-30 13:27:06 -030098static const u32 ibridge_interleave_list[] = {
99 0x64, 0x6c, 0x74, 0x7c, 0x84,
100 0x8c, 0x94, 0x9c, 0xa4, 0xac,
101 0xb4, 0xbc, 0xc4, 0xcc, 0xd4,
102 0xdc, 0xe4, 0xec, 0xf4, 0xfc,
103};
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200104
Jim Snowd0cdf902015-12-03 10:48:54 +0100105static const u32 knl_interleave_list[] = {
106 0x64, 0x6c, 0x74, 0x7c, 0x84, /* 0-4 */
107 0x8c, 0x94, 0x9c, 0xa4, 0xac, /* 5-9 */
108 0xb4, 0xbc, 0xc4, 0xcc, 0xd4, /* 10-14 */
109 0xdc, 0xe4, 0xec, 0xf4, 0xfc, /* 15-19 */
110 0x104, 0x10c, 0x114, 0x11c, /* 20-23 */
111};
112
Aristeu Rozanskicc311992013-10-30 13:27:02 -0300113struct interleave_pkg {
114 unsigned char start;
115 unsigned char end;
116};
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200117
Aristeu Rozanskicc311992013-10-30 13:27:02 -0300118static const struct interleave_pkg sbridge_interleave_pkg[] = {
119 { 0, 2 },
120 { 3, 5 },
121 { 8, 10 },
122 { 11, 13 },
123 { 16, 18 },
124 { 19, 21 },
125 { 24, 26 },
126 { 27, 29 },
127};
128
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300129static const struct interleave_pkg ibridge_interleave_pkg[] = {
130 { 0, 3 },
131 { 4, 7 },
132 { 8, 11 },
133 { 12, 15 },
134 { 16, 19 },
135 { 20, 23 },
136 { 24, 27 },
137 { 28, 31 },
138};
139
Aristeu Rozanskicc311992013-10-30 13:27:02 -0300140static inline int sad_pkg(const struct interleave_pkg *table, u32 reg,
141 int interleave)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200142{
Aristeu Rozanskicc311992013-10-30 13:27:02 -0300143 return GET_BITFIELD(reg, table[interleave].start,
144 table[interleave].end);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200145}
146
147/* Devices 12 Function 7 */
148
149#define TOLM 0x80
Jim Snowd0cdf902015-12-03 10:48:54 +0100150#define TOHM 0x84
Tony Luckf7cf2a22014-10-29 10:36:50 -0700151#define HASWELL_TOLM 0xd0
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300152#define HASWELL_TOHM_0 0xd4
153#define HASWELL_TOHM_1 0xd8
Jim Snowd0cdf902015-12-03 10:48:54 +0100154#define KNL_TOLM 0xd0
155#define KNL_TOHM_0 0xd4
156#define KNL_TOHM_1 0xd8
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200157
158#define GET_TOLM(reg) ((GET_BITFIELD(reg, 0, 3) << 28) | 0x3ffffff)
159#define GET_TOHM(reg) ((GET_BITFIELD(reg, 0, 20) << 25) | 0x3ffffff)
160
161/* Device 13 Function 6 */
162
163#define SAD_TARGET 0xf0
164
165#define SOURCE_ID(reg) GET_BITFIELD(reg, 9, 11)
166
Jim Snowd0cdf902015-12-03 10:48:54 +0100167#define SOURCE_ID_KNL(reg) GET_BITFIELD(reg, 12, 14)
168
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200169#define SAD_CONTROL 0xf4
170
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200171/* Device 14 function 0 */
172
173static const u32 tad_dram_rule[] = {
174 0x40, 0x44, 0x48, 0x4c,
175 0x50, 0x54, 0x58, 0x5c,
176 0x60, 0x64, 0x68, 0x6c,
177};
178#define MAX_TAD ARRAY_SIZE(tad_dram_rule)
179
180#define TAD_LIMIT(reg) ((GET_BITFIELD(reg, 12, 31) << 26) | 0x3ffffff)
181#define TAD_SOCK(reg) GET_BITFIELD(reg, 10, 11)
182#define TAD_CH(reg) GET_BITFIELD(reg, 8, 9)
183#define TAD_TGT3(reg) GET_BITFIELD(reg, 6, 7)
184#define TAD_TGT2(reg) GET_BITFIELD(reg, 4, 5)
185#define TAD_TGT1(reg) GET_BITFIELD(reg, 2, 3)
186#define TAD_TGT0(reg) GET_BITFIELD(reg, 0, 1)
187
188/* Device 15, function 0 */
189
190#define MCMTR 0x7c
Jim Snowd0cdf902015-12-03 10:48:54 +0100191#define KNL_MCMTR 0x624
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200192
193#define IS_ECC_ENABLED(mcmtr) GET_BITFIELD(mcmtr, 2, 2)
194#define IS_LOCKSTEP_ENABLED(mcmtr) GET_BITFIELD(mcmtr, 1, 1)
195#define IS_CLOSE_PG(mcmtr) GET_BITFIELD(mcmtr, 0, 0)
196
197/* Device 15, function 1 */
198
199#define RASENABLES 0xac
200#define IS_MIRROR_ENABLED(reg) GET_BITFIELD(reg, 0, 0)
201
202/* Device 15, functions 2-5 */
203
204static const int mtr_regs[] = {
205 0x80, 0x84, 0x88,
206};
207
Jim Snowd0cdf902015-12-03 10:48:54 +0100208static const int knl_mtr_reg = 0xb60;
209
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200210#define RANK_DISABLE(mtr) GET_BITFIELD(mtr, 16, 19)
211#define IS_DIMM_PRESENT(mtr) GET_BITFIELD(mtr, 14, 14)
212#define RANK_CNT_BITS(mtr) GET_BITFIELD(mtr, 12, 13)
213#define RANK_WIDTH_BITS(mtr) GET_BITFIELD(mtr, 2, 4)
214#define COL_WIDTH_BITS(mtr) GET_BITFIELD(mtr, 0, 1)
215
216static const u32 tad_ch_nilv_offset[] = {
217 0x90, 0x94, 0x98, 0x9c,
218 0xa0, 0xa4, 0xa8, 0xac,
219 0xb0, 0xb4, 0xb8, 0xbc,
220};
221#define CHN_IDX_OFFSET(reg) GET_BITFIELD(reg, 28, 29)
222#define TAD_OFFSET(reg) (GET_BITFIELD(reg, 6, 25) << 26)
223
224static const u32 rir_way_limit[] = {
225 0x108, 0x10c, 0x110, 0x114, 0x118,
226};
227#define MAX_RIR_RANGES ARRAY_SIZE(rir_way_limit)
228
229#define IS_RIR_VALID(reg) GET_BITFIELD(reg, 31, 31)
230#define RIR_WAY(reg) GET_BITFIELD(reg, 28, 29)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200231
232#define MAX_RIR_WAY 8
233
234static const u32 rir_offset[MAX_RIR_RANGES][MAX_RIR_WAY] = {
235 { 0x120, 0x124, 0x128, 0x12c, 0x130, 0x134, 0x138, 0x13c },
236 { 0x140, 0x144, 0x148, 0x14c, 0x150, 0x154, 0x158, 0x15c },
237 { 0x160, 0x164, 0x168, 0x16c, 0x170, 0x174, 0x178, 0x17c },
238 { 0x180, 0x184, 0x188, 0x18c, 0x190, 0x194, 0x198, 0x19c },
239 { 0x1a0, 0x1a4, 0x1a8, 0x1ac, 0x1b0, 0x1b4, 0x1b8, 0x1bc },
240};
241
242#define RIR_RNK_TGT(reg) GET_BITFIELD(reg, 16, 19)
243#define RIR_OFFSET(reg) GET_BITFIELD(reg, 2, 14)
244
245/* Device 16, functions 2-7 */
246
247/*
248 * FIXME: Implement the error count reads directly
249 */
250
251static const u32 correrrcnt[] = {
252 0x104, 0x108, 0x10c, 0x110,
253};
254
255#define RANK_ODD_OV(reg) GET_BITFIELD(reg, 31, 31)
256#define RANK_ODD_ERR_CNT(reg) GET_BITFIELD(reg, 16, 30)
257#define RANK_EVEN_OV(reg) GET_BITFIELD(reg, 15, 15)
258#define RANK_EVEN_ERR_CNT(reg) GET_BITFIELD(reg, 0, 14)
259
260static const u32 correrrthrsld[] = {
261 0x11c, 0x120, 0x124, 0x128,
262};
263
264#define RANK_ODD_ERR_THRSLD(reg) GET_BITFIELD(reg, 16, 30)
265#define RANK_EVEN_ERR_THRSLD(reg) GET_BITFIELD(reg, 0, 14)
266
267
268/* Device 17, function 0 */
269
Aristeu Rozanskief1e8d02013-10-30 13:26:56 -0300270#define SB_RANK_CFG_A 0x0328
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200271
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300272#define IB_RANK_CFG_A 0x0320
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200273
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200274/*
275 * sbridge structs
276 */
277
Tony Luck7d375bf2015-05-18 17:50:42 -0300278#define NUM_CHANNELS 8 /* 2MC per socket, four chan per MC */
Seth Jennings351fc4a2014-09-05 14:28:47 -0500279#define MAX_DIMMS 3 /* Max DIMMS per channel */
Jim Snowd0cdf902015-12-03 10:48:54 +0100280#define KNL_MAX_CHAS 38 /* KNL max num. of Cache Home Agents */
281#define KNL_MAX_CHANNELS 6 /* KNL max num. of PCI channels */
282#define KNL_MAX_EDCS 8 /* Embedded DRAM controllers */
Seth Jennings351fc4a2014-09-05 14:28:47 -0500283#define CHANNEL_UNSPECIFIED 0xf /* Intel IA32 SDM 15-14 */
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200284
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300285enum type {
286 SANDY_BRIDGE,
287 IVY_BRIDGE,
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300288 HASWELL,
Tony Luck1f395812014-12-02 09:27:30 -0800289 BROADWELL,
Jim Snowd0cdf902015-12-03 10:48:54 +0100290 KNIGHTS_LANDING,
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300291};
292
Aristeu Rozanskifb79a502013-10-30 13:26:57 -0300293struct sbridge_pvt;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200294struct sbridge_info {
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300295 enum type type;
Aristeu Rozanski464f1d82013-10-30 13:27:00 -0300296 u32 mcmtr;
297 u32 rankcfgr;
298 u64 (*get_tolm)(struct sbridge_pvt *pvt);
299 u64 (*get_tohm)(struct sbridge_pvt *pvt);
Aristeu Rozanskib976bcf2014-06-02 15:15:24 -0300300 u64 (*rir_limit)(u32 reg);
Jim Snowc59f9c02015-12-03 10:48:52 +0100301 u64 (*sad_limit)(u32 reg);
302 u32 (*interleave_mode)(u32 reg);
303 char* (*show_interleave_mode)(u32 reg);
304 u32 (*dram_attr)(u32 reg);
Aristeu Rozanski464f1d82013-10-30 13:27:00 -0300305 const u32 *dram_rule;
Aristeu Rozanskief1ce512013-10-30 13:27:01 -0300306 const u32 *interleave_list;
Aristeu Rozanskicc311992013-10-30 13:27:02 -0300307 const struct interleave_pkg *interleave_pkg;
Aristeu Rozanski464f1d82013-10-30 13:27:00 -0300308 u8 max_sad;
Aristeu Rozanskief1ce512013-10-30 13:27:01 -0300309 u8 max_interleave;
Aristeu Rozanskif14d6892014-06-02 15:15:23 -0300310 u8 (*get_node_id)(struct sbridge_pvt *pvt);
Aristeu Rozanski9e375442014-06-02 15:15:22 -0300311 enum mem_type (*get_memory_type)(struct sbridge_pvt *pvt);
Aristeu Rozanski12f07212015-06-12 15:08:17 -0400312 enum dev_type (*get_width)(struct sbridge_pvt *pvt, u32 mtr);
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300313 struct pci_dev *pci_vtd;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200314};
315
316struct sbridge_channel {
317 u32 ranks;
318 u32 dimms;
319};
320
321struct pci_id_descr {
Mauro Carvalho Chehabc41afdc2014-06-26 15:35:14 -0300322 int dev_id;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200323 int optional;
324};
325
326struct pci_id_table {
327 const struct pci_id_descr *descr;
328 int n_devs;
329};
330
331struct sbridge_dev {
332 struct list_head list;
333 u8 bus, mc;
334 u8 node_id, source_id;
335 struct pci_dev **pdev;
336 int n_devs;
337 struct mem_ctl_info *mci;
338};
339
Jim Snowd0cdf902015-12-03 10:48:54 +0100340struct knl_pvt {
341 struct pci_dev *pci_cha[KNL_MAX_CHAS];
342 struct pci_dev *pci_channel[KNL_MAX_CHANNELS];
343 struct pci_dev *pci_mc0;
344 struct pci_dev *pci_mc1;
345 struct pci_dev *pci_mc0_misc;
346 struct pci_dev *pci_mc1_misc;
347 struct pci_dev *pci_mc_info; /* tolm, tohm */
348};
349
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200350struct sbridge_pvt {
351 struct pci_dev *pci_ta, *pci_ddrio, *pci_ras;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300352 struct pci_dev *pci_sad0, *pci_sad1;
353 struct pci_dev *pci_ha0, *pci_ha1;
354 struct pci_dev *pci_br0, *pci_br1;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300355 struct pci_dev *pci_ha1_ta;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200356 struct pci_dev *pci_tad[NUM_CHANNELS];
357
358 struct sbridge_dev *sbridge_dev;
359
360 struct sbridge_info info;
361 struct sbridge_channel channel[NUM_CHANNELS];
362
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200363 /* Memory type detection */
364 bool is_mirrored, is_lockstep, is_close_pg;
365
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200366 /* Fifo double buffers */
367 struct mce mce_entry[MCE_LOG_LEN];
368 struct mce mce_outentry[MCE_LOG_LEN];
369
370 /* Fifo in/out counters */
371 unsigned mce_in, mce_out;
372
373 /* Count indicator to show errors not got */
374 unsigned mce_overrun;
375
376 /* Memory description */
377 u64 tolm, tohm;
Jim Snowd0cdf902015-12-03 10:48:54 +0100378 struct knl_pvt knl;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200379};
380
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300381#define PCI_DESCR(device_id, opt) \
382 .dev_id = (device_id), \
Luck, Tonyde4772c2013-03-28 09:59:15 -0700383 .optional = opt
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200384
385static const struct pci_id_descr pci_dev_descr_sbridge[] = {
386 /* Processor Home Agent */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300387 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_HA0, 0) },
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200388
389 /* Memory controller */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300390 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TA, 0) },
391 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_RAS, 0) },
392 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD0, 0) },
393 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD1, 0) },
394 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD2, 0) },
395 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD3, 0) },
396 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_DDRIO, 1) },
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200397
398 /* System Address Decoder */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300399 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_SAD0, 0) },
400 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_SAD1, 0) },
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200401
402 /* Broadcast Registers */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300403 { PCI_DESCR(PCI_DEVICE_ID_INTEL_SBRIDGE_BR, 0) },
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200404};
405
406#define PCI_ID_TABLE_ENTRY(A) { .descr=A, .n_devs = ARRAY_SIZE(A) }
407static const struct pci_id_table pci_dev_descr_sbridge_table[] = {
408 PCI_ID_TABLE_ENTRY(pci_dev_descr_sbridge),
409 {0,} /* 0 terminated list. */
410};
411
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300412/* This changes depending if 1HA or 2HA:
413 * 1HA:
414 * 0x0eb8 (17.0) is DDRIO0
415 * 2HA:
416 * 0x0ebc (17.4) is DDRIO0
417 */
418#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_1HA_DDRIO0 0x0eb8
419#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_2HA_DDRIO0 0x0ebc
420
421/* pci ids */
422#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0 0x0ea0
423#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TA 0x0ea8
424#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_RAS 0x0e71
425#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD0 0x0eaa
426#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD1 0x0eab
427#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD2 0x0eac
428#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD3 0x0ead
429#define PCI_DEVICE_ID_INTEL_IBRIDGE_SAD 0x0ec8
430#define PCI_DEVICE_ID_INTEL_IBRIDGE_BR0 0x0ec9
431#define PCI_DEVICE_ID_INTEL_IBRIDGE_BR1 0x0eca
432#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1 0x0e60
433#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TA 0x0e68
434#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_RAS 0x0e79
435#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD0 0x0e6a
436#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD1 0x0e6b
Tony Luck7d375bf2015-05-18 17:50:42 -0300437#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD2 0x0e6c
438#define PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD3 0x0e6d
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300439
440static const struct pci_id_descr pci_dev_descr_ibridge[] = {
441 /* Processor Home Agent */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300442 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0, 0) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300443
444 /* Memory controller */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300445 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TA, 0) },
446 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_RAS, 0) },
447 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD0, 0) },
448 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD1, 0) },
449 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD2, 0) },
450 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD3, 0) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300451
452 /* System Address Decoder */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300453 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_SAD, 0) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300454
455 /* Broadcast Registers */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300456 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_BR0, 1) },
457 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_BR1, 0) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300458
459 /* Optional, mode 2HA */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300460 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1, 1) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300461#if 0
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300462 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TA, 1) },
463 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_RAS, 1) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300464#endif
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300465 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD0, 1) },
466 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD1, 1) },
Tony Luck7d375bf2015-05-18 17:50:42 -0300467 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD2, 1) },
468 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD3, 1) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300469
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -0300470 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_1HA_DDRIO0, 1) },
471 { PCI_DESCR(PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_2HA_DDRIO0, 1) },
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300472};
473
474static const struct pci_id_table pci_dev_descr_ibridge_table[] = {
475 PCI_ID_TABLE_ENTRY(pci_dev_descr_ibridge),
476 {0,} /* 0 terminated list. */
477};
478
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300479/* Haswell support */
480/* EN processor:
481 * - 1 IMC
482 * - 3 DDR3 channels, 2 DPC per channel
483 * EP processor:
484 * - 1 or 2 IMC
485 * - 4 DDR4 channels, 3 DPC per channel
486 * EP 4S processor:
487 * - 2 IMC
488 * - 4 DDR4 channels, 3 DPC per channel
489 * EX processor:
490 * - 2 IMC
491 * - each IMC interfaces with a SMI 2 channel
492 * - each SMI channel interfaces with a scalable memory buffer
493 * - each scalable memory buffer supports 4 DDR3/DDR4 channels, 3 DPC
494 */
Tony Luck1f395812014-12-02 09:27:30 -0800495#define HASWELL_DDRCRCLKCONTROLS 0xa10 /* Ditto on Broadwell */
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300496#define HASWELL_HASYSDEFEATURE2 0x84
497#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_VTD_MISC 0x2f28
498#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0 0x2fa0
499#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1 0x2f60
500#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TA 0x2fa8
501#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_THERMAL 0x2f71
502#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TA 0x2f68
503#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_THERMAL 0x2f79
504#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_CBO_SAD0 0x2ffc
505#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_CBO_SAD1 0x2ffd
506#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD0 0x2faa
507#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD1 0x2fab
508#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD2 0x2fac
509#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD3 0x2fad
510#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD0 0x2f6a
511#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD1 0x2f6b
512#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD2 0x2f6c
513#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD3 0x2f6d
514#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO0 0x2fbd
Aristeu Rozanski71793852015-06-12 09:44:52 -0400515#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO1 0x2fbf
516#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO2 0x2fb9
517#define PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO3 0x2fbb
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300518static const struct pci_id_descr pci_dev_descr_haswell[] = {
519 /* first item must be the HA */
520 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0, 0) },
521
522 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_CBO_SAD0, 0) },
523 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_CBO_SAD1, 0) },
524
525 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1, 1) },
526
527 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TA, 0) },
528 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_THERMAL, 0) },
529 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD0, 0) },
530 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD1, 0) },
531 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD2, 1) },
532 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD3, 1) },
533
534 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO0, 1) },
Aristeu Rozanski71793852015-06-12 09:44:52 -0400535 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO1, 1) },
536 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO2, 1) },
537 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO3, 1) },
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300538
539 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TA, 1) },
540 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_THERMAL, 1) },
541 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD0, 1) },
542 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD1, 1) },
543 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD2, 1) },
544 { PCI_DESCR(PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD3, 1) },
545};
546
547static const struct pci_id_table pci_dev_descr_haswell_table[] = {
548 PCI_ID_TABLE_ENTRY(pci_dev_descr_haswell),
549 {0,} /* 0 terminated list. */
550};
551
Jim Snowd0cdf902015-12-03 10:48:54 +0100552/* Knight's Landing Support */
553/*
554 * KNL's memory channels are swizzled between memory controllers.
555 * MC0 is mapped to CH3,5,6 and MC1 is mapped to CH0,1,2
556 */
557#define knl_channel_remap(channel) ((channel + 3) % 6)
558
559/* Memory controller, TAD tables, error injection - 2-8-0, 2-9-0 (2 of these) */
560#define PCI_DEVICE_ID_INTEL_KNL_IMC_MC 0x7840
561/* DRAM channel stuff; bank addrs, dimmmtr, etc.. 2-8-2 - 2-9-4 (6 of these) */
562#define PCI_DEVICE_ID_INTEL_KNL_IMC_CHANNEL 0x7843
563/* kdrwdbu TAD limits/offsets, MCMTR - 2-10-1, 2-11-1 (2 of these) */
564#define PCI_DEVICE_ID_INTEL_KNL_IMC_TA 0x7844
565/* CHA broadcast registers, dram rules - 1-29-0 (1 of these) */
566#define PCI_DEVICE_ID_INTEL_KNL_IMC_SAD0 0x782a
567/* SAD target - 1-29-1 (1 of these) */
568#define PCI_DEVICE_ID_INTEL_KNL_IMC_SAD1 0x782b
569/* Caching / Home Agent */
570#define PCI_DEVICE_ID_INTEL_KNL_IMC_CHA 0x782c
571/* Device with TOLM and TOHM, 0-5-0 (1 of these) */
572#define PCI_DEVICE_ID_INTEL_KNL_IMC_TOLHM 0x7810
573
574/*
575 * KNL differs from SB, IB, and Haswell in that it has multiple
576 * instances of the same device with the same device ID, so we handle that
577 * by creating as many copies in the table as we expect to find.
578 * (Like device ID must be grouped together.)
579 */
580
581static const struct pci_id_descr pci_dev_descr_knl[] = {
582 [0] = { PCI_DESCR(PCI_DEVICE_ID_INTEL_KNL_IMC_SAD0, 0) },
583 [1] = { PCI_DESCR(PCI_DEVICE_ID_INTEL_KNL_IMC_SAD1, 0) },
584 [2 ... 3] = { PCI_DESCR(PCI_DEVICE_ID_INTEL_KNL_IMC_MC, 0)},
585 [4 ... 41] = { PCI_DESCR(PCI_DEVICE_ID_INTEL_KNL_IMC_CHA, 0) },
586 [42 ... 47] = { PCI_DESCR(PCI_DEVICE_ID_INTEL_KNL_IMC_CHANNEL, 0) },
587 [48] = { PCI_DESCR(PCI_DEVICE_ID_INTEL_KNL_IMC_TA, 0) },
588 [49] = { PCI_DESCR(PCI_DEVICE_ID_INTEL_KNL_IMC_TOLHM, 0) },
589};
590
591static const struct pci_id_table pci_dev_descr_knl_table[] = {
592 PCI_ID_TABLE_ENTRY(pci_dev_descr_knl),
593 {0,}
594};
595
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200596/*
Tony Luck1f395812014-12-02 09:27:30 -0800597 * Broadwell support
598 *
599 * DE processor:
600 * - 1 IMC
601 * - 2 DDR3 channels, 2 DPC per channel
Tony Luckfa2ce642015-05-20 19:10:35 -0300602 * EP processor:
603 * - 1 or 2 IMC
604 * - 4 DDR4 channels, 3 DPC per channel
605 * EP 4S processor:
606 * - 2 IMC
607 * - 4 DDR4 channels, 3 DPC per channel
608 * EX processor:
609 * - 2 IMC
610 * - each IMC interfaces with a SMI 2 channel
611 * - each SMI channel interfaces with a scalable memory buffer
612 * - each scalable memory buffer supports 4 DDR3/DDR4 channels, 3 DPC
Tony Luck1f395812014-12-02 09:27:30 -0800613 */
614#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_VTD_MISC 0x6f28
615#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0 0x6fa0
Tony Luckfa2ce642015-05-20 19:10:35 -0300616#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1 0x6f60
Tony Luck1f395812014-12-02 09:27:30 -0800617#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TA 0x6fa8
618#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_THERMAL 0x6f71
Tony Luckfa2ce642015-05-20 19:10:35 -0300619#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TA 0x6f68
620#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_THERMAL 0x6f79
Tony Luck1f395812014-12-02 09:27:30 -0800621#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_CBO_SAD0 0x6ffc
622#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_CBO_SAD1 0x6ffd
623#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD0 0x6faa
624#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD1 0x6fab
625#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD2 0x6fac
626#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD3 0x6fad
Tony Luckfa2ce642015-05-20 19:10:35 -0300627#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD0 0x6f6a
628#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD1 0x6f6b
629#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD2 0x6f6c
630#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD3 0x6f6d
Tony Luck1f395812014-12-02 09:27:30 -0800631#define PCI_DEVICE_ID_INTEL_BROADWELL_IMC_DDRIO0 0x6faf
632
633static const struct pci_id_descr pci_dev_descr_broadwell[] = {
634 /* first item must be the HA */
635 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0, 0) },
636
637 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_CBO_SAD0, 0) },
638 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_CBO_SAD1, 0) },
639
Tony Luckfa2ce642015-05-20 19:10:35 -0300640 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1, 1) },
641
Tony Luck1f395812014-12-02 09:27:30 -0800642 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TA, 0) },
643 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_THERMAL, 0) },
644 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD0, 0) },
645 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD1, 0) },
Tony Luckfa2ce642015-05-20 19:10:35 -0300646 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD2, 1) },
647 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD3, 1) },
648
Tony Luck1f395812014-12-02 09:27:30 -0800649 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_DDRIO0, 1) },
Tony Luckfa2ce642015-05-20 19:10:35 -0300650
651 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TA, 1) },
652 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_THERMAL, 1) },
653 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD0, 1) },
654 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD1, 1) },
655 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD2, 1) },
656 { PCI_DESCR(PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD3, 1) },
Tony Luck1f395812014-12-02 09:27:30 -0800657};
658
659static const struct pci_id_table pci_dev_descr_broadwell_table[] = {
660 PCI_ID_TABLE_ENTRY(pci_dev_descr_broadwell),
661 {0,} /* 0 terminated list. */
662};
663
664/*
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200665 * pci_device_id table for which devices we are looking for
666 */
Jingoo Hanba935f42013-12-06 10:23:08 +0100667static const struct pci_device_id sbridge_pci_tbl[] = {
Andy Lutomirskid0585cd2014-08-14 14:45:41 -0700668 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_HA0)},
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300669 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TA)},
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300670 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0)},
Tony Luck1f395812014-12-02 09:27:30 -0800671 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0)},
Jim Snowd0cdf902015-12-03 10:48:54 +0100672 {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_KNL_IMC_SAD0)},
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200673 {0,} /* 0 terminated list. */
674};
675
676
677/****************************************************************************
David Mackey15ed1032012-04-17 11:30:52 -0700678 Ancillary status routines
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200679 ****************************************************************************/
680
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300681static inline int numrank(enum type type, u32 mtr)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200682{
683 int ranks = (1 << RANK_CNT_BITS(mtr));
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300684 int max = 4;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200685
Jim Snowd0cdf902015-12-03 10:48:54 +0100686 if (type == HASWELL || type == BROADWELL || type == KNIGHTS_LANDING)
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300687 max = 8;
688
689 if (ranks > max) {
690 edac_dbg(0, "Invalid number of ranks: %d (max = %i) raw value = %x (%04x)\n",
691 ranks, max, (unsigned int)RANK_CNT_BITS(mtr), mtr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200692 return -EINVAL;
693 }
694
695 return ranks;
696}
697
698static inline int numrow(u32 mtr)
699{
700 int rows = (RANK_WIDTH_BITS(mtr) + 12);
701
702 if (rows < 13 || rows > 18) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300703 edac_dbg(0, "Invalid number of rows: %d (should be between 14 and 17) raw value = %x (%04x)\n",
704 rows, (unsigned int)RANK_WIDTH_BITS(mtr), mtr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200705 return -EINVAL;
706 }
707
708 return 1 << rows;
709}
710
711static inline int numcol(u32 mtr)
712{
713 int cols = (COL_WIDTH_BITS(mtr) + 10);
714
715 if (cols > 12) {
Joe Perches956b9ba2012-04-29 17:08:39 -0300716 edac_dbg(0, "Invalid number of cols: %d (max = 4) raw value = %x (%04x)\n",
717 cols, (unsigned int)COL_WIDTH_BITS(mtr), mtr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200718 return -EINVAL;
719 }
720
721 return 1 << cols;
722}
723
Jim Snowc1979ba2015-12-03 10:48:53 +0100724static struct sbridge_dev *get_sbridge_dev(u8 bus, int multi_bus)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200725{
726 struct sbridge_dev *sbridge_dev;
727
Jim Snowc1979ba2015-12-03 10:48:53 +0100728 /*
729 * If we have devices scattered across several busses that pertain
730 * to the same memory controller, we'll lump them all together.
731 */
732 if (multi_bus) {
733 return list_first_entry_or_null(&sbridge_edac_list,
734 struct sbridge_dev, list);
735 }
736
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -0200737 list_for_each_entry(sbridge_dev, &sbridge_edac_list, list) {
738 if (sbridge_dev->bus == bus)
739 return sbridge_dev;
740 }
741
742 return NULL;
743}
744
745static struct sbridge_dev *alloc_sbridge_dev(u8 bus,
746 const struct pci_id_table *table)
747{
748 struct sbridge_dev *sbridge_dev;
749
750 sbridge_dev = kzalloc(sizeof(*sbridge_dev), GFP_KERNEL);
751 if (!sbridge_dev)
752 return NULL;
753
754 sbridge_dev->pdev = kzalloc(sizeof(*sbridge_dev->pdev) * table->n_devs,
755 GFP_KERNEL);
756 if (!sbridge_dev->pdev) {
757 kfree(sbridge_dev);
758 return NULL;
759 }
760
761 sbridge_dev->bus = bus;
762 sbridge_dev->n_devs = table->n_devs;
763 list_add_tail(&sbridge_dev->list, &sbridge_edac_list);
764
765 return sbridge_dev;
766}
767
768static void free_sbridge_dev(struct sbridge_dev *sbridge_dev)
769{
770 list_del(&sbridge_dev->list);
771 kfree(sbridge_dev->pdev);
772 kfree(sbridge_dev);
773}
774
Aristeu Rozanskifb79a502013-10-30 13:26:57 -0300775static u64 sbridge_get_tolm(struct sbridge_pvt *pvt)
776{
777 u32 reg;
778
779 /* Address range is 32:28 */
780 pci_read_config_dword(pvt->pci_sad1, TOLM, &reg);
781 return GET_TOLM(reg);
782}
783
Aristeu Rozanski8fd6a432013-10-30 13:26:59 -0300784static u64 sbridge_get_tohm(struct sbridge_pvt *pvt)
785{
786 u32 reg;
787
788 pci_read_config_dword(pvt->pci_sad1, TOHM, &reg);
789 return GET_TOHM(reg);
790}
791
Aristeu Rozanski4d715a82013-10-30 13:27:06 -0300792static u64 ibridge_get_tolm(struct sbridge_pvt *pvt)
793{
794 u32 reg;
795
796 pci_read_config_dword(pvt->pci_br1, TOLM, &reg);
797
798 return GET_TOLM(reg);
799}
800
801static u64 ibridge_get_tohm(struct sbridge_pvt *pvt)
802{
803 u32 reg;
804
805 pci_read_config_dword(pvt->pci_br1, TOHM, &reg);
806
807 return GET_TOHM(reg);
808}
809
Aristeu Rozanskib976bcf2014-06-02 15:15:24 -0300810static u64 rir_limit(u32 reg)
811{
812 return ((u64)GET_BITFIELD(reg, 1, 10) << 29) | 0x1fffffff;
813}
814
Jim Snowc59f9c02015-12-03 10:48:52 +0100815static u64 sad_limit(u32 reg)
816{
817 return (GET_BITFIELD(reg, 6, 25) << 26) | 0x3ffffff;
818}
819
820static u32 interleave_mode(u32 reg)
821{
822 return GET_BITFIELD(reg, 1, 1);
823}
824
825char *show_interleave_mode(u32 reg)
826{
827 return interleave_mode(reg) ? "8:6" : "[8:6]XOR[18:16]";
828}
829
830static u32 dram_attr(u32 reg)
831{
832 return GET_BITFIELD(reg, 2, 3);
833}
834
Jim Snowd0cdf902015-12-03 10:48:54 +0100835static u64 knl_sad_limit(u32 reg)
836{
837 return (GET_BITFIELD(reg, 7, 26) << 26) | 0x3ffffff;
838}
839
840static u32 knl_interleave_mode(u32 reg)
841{
842 return GET_BITFIELD(reg, 1, 2);
843}
844
845static char *knl_show_interleave_mode(u32 reg)
846{
847 char *s;
848
849 switch (knl_interleave_mode(reg)) {
850 case 0:
851 s = "use address bits [8:6]";
852 break;
853 case 1:
854 s = "use address bits [10:8]";
855 break;
856 case 2:
857 s = "use address bits [14:12]";
858 break;
859 case 3:
860 s = "use address bits [32:30]";
861 break;
862 default:
863 WARN_ON(1);
864 break;
865 }
866
867 return s;
868}
869
870static u32 dram_attr_knl(u32 reg)
871{
872 return GET_BITFIELD(reg, 3, 4);
873}
874
875
Aristeu Rozanski9e375442014-06-02 15:15:22 -0300876static enum mem_type get_memory_type(struct sbridge_pvt *pvt)
877{
878 u32 reg;
879 enum mem_type mtype;
880
881 if (pvt->pci_ddrio) {
882 pci_read_config_dword(pvt->pci_ddrio, pvt->info.rankcfgr,
883 &reg);
884 if (GET_BITFIELD(reg, 11, 11))
885 /* FIXME: Can also be LRDIMM */
886 mtype = MEM_RDDR3;
887 else
888 mtype = MEM_DDR3;
889 } else
890 mtype = MEM_UNKNOWN;
891
892 return mtype;
893}
894
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300895static enum mem_type haswell_get_memory_type(struct sbridge_pvt *pvt)
896{
897 u32 reg;
898 bool registered = false;
899 enum mem_type mtype = MEM_UNKNOWN;
900
901 if (!pvt->pci_ddrio)
902 goto out;
903
904 pci_read_config_dword(pvt->pci_ddrio,
905 HASWELL_DDRCRCLKCONTROLS, &reg);
906 /* Is_Rdimm */
907 if (GET_BITFIELD(reg, 16, 16))
908 registered = true;
909
910 pci_read_config_dword(pvt->pci_ta, MCMTR, &reg);
911 if (GET_BITFIELD(reg, 14, 14)) {
912 if (registered)
913 mtype = MEM_RDDR4;
914 else
915 mtype = MEM_DDR4;
916 } else {
917 if (registered)
918 mtype = MEM_RDDR3;
919 else
920 mtype = MEM_DDR3;
921 }
922
923out:
924 return mtype;
925}
926
Aristeu Rozanski12f07212015-06-12 15:08:17 -0400927static enum dev_type sbridge_get_width(struct sbridge_pvt *pvt, u32 mtr)
928{
929 /* there's no way to figure out */
930 return DEV_UNKNOWN;
931}
932
933static enum dev_type __ibridge_get_width(u32 mtr)
934{
935 enum dev_type type;
936
937 switch (mtr) {
938 case 3:
939 type = DEV_UNKNOWN;
940 break;
941 case 2:
942 type = DEV_X16;
943 break;
944 case 1:
945 type = DEV_X8;
946 break;
947 case 0:
948 type = DEV_X4;
949 break;
950 }
951
952 return type;
953}
954
955static enum dev_type ibridge_get_width(struct sbridge_pvt *pvt, u32 mtr)
956{
957 /*
958 * ddr3_width on the documentation but also valid for DDR4 on
959 * Haswell
960 */
961 return __ibridge_get_width(GET_BITFIELD(mtr, 7, 8));
962}
963
964static enum dev_type broadwell_get_width(struct sbridge_pvt *pvt, u32 mtr)
965{
966 /* ddr3_width on the documentation but also valid for DDR4 */
967 return __ibridge_get_width(GET_BITFIELD(mtr, 8, 9));
968}
969
Jim Snowd0cdf902015-12-03 10:48:54 +0100970static enum mem_type knl_get_memory_type(struct sbridge_pvt *pvt)
971{
972 /* DDR4 RDIMMS and LRDIMMS are supported */
973 return MEM_RDDR4;
974}
975
Aristeu Rozanskif14d6892014-06-02 15:15:23 -0300976static u8 get_node_id(struct sbridge_pvt *pvt)
977{
978 u32 reg;
979 pci_read_config_dword(pvt->pci_br0, SAD_CONTROL, &reg);
980 return GET_BITFIELD(reg, 0, 2);
981}
982
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -0300983static u8 haswell_get_node_id(struct sbridge_pvt *pvt)
984{
985 u32 reg;
986
987 pci_read_config_dword(pvt->pci_sad1, SAD_CONTROL, &reg);
988 return GET_BITFIELD(reg, 0, 3);
989}
990
Jim Snowd0cdf902015-12-03 10:48:54 +0100991static u8 knl_get_node_id(struct sbridge_pvt *pvt)
992{
993 u32 reg;
994
995 pci_read_config_dword(pvt->pci_sad1, SAD_CONTROL, &reg);
996 return GET_BITFIELD(reg, 0, 2);
997}
998
999
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001000static u64 haswell_get_tolm(struct sbridge_pvt *pvt)
1001{
1002 u32 reg;
1003
Tony Luckf7cf2a22014-10-29 10:36:50 -07001004 pci_read_config_dword(pvt->info.pci_vtd, HASWELL_TOLM, &reg);
1005 return (GET_BITFIELD(reg, 26, 31) << 26) | 0x3ffffff;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001006}
1007
1008static u64 haswell_get_tohm(struct sbridge_pvt *pvt)
1009{
1010 u64 rc;
1011 u32 reg;
1012
1013 pci_read_config_dword(pvt->info.pci_vtd, HASWELL_TOHM_0, &reg);
1014 rc = GET_BITFIELD(reg, 26, 31);
1015 pci_read_config_dword(pvt->info.pci_vtd, HASWELL_TOHM_1, &reg);
1016 rc = ((reg << 6) | rc) << 26;
1017
1018 return rc | 0x1ffffff;
1019}
1020
Jim Snowd0cdf902015-12-03 10:48:54 +01001021static u64 knl_get_tolm(struct sbridge_pvt *pvt)
1022{
1023 u32 reg;
1024
1025 pci_read_config_dword(pvt->knl.pci_mc_info, KNL_TOLM, &reg);
1026 return (GET_BITFIELD(reg, 26, 31) << 26) | 0x3ffffff;
1027}
1028
1029static u64 knl_get_tohm(struct sbridge_pvt *pvt)
1030{
1031 u64 rc;
1032 u32 reg_lo, reg_hi;
1033
1034 pci_read_config_dword(pvt->knl.pci_mc_info, KNL_TOHM_0, &reg_lo);
1035 pci_read_config_dword(pvt->knl.pci_mc_info, KNL_TOHM_1, &reg_hi);
1036 rc = ((u64)reg_hi << 32) | reg_lo;
1037 return rc | 0x3ffffff;
1038}
1039
1040
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001041static u64 haswell_rir_limit(u32 reg)
1042{
1043 return (((u64)GET_BITFIELD(reg, 1, 11) + 1) << 29) - 1;
1044}
1045
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03001046static inline u8 sad_pkg_socket(u8 pkg)
1047{
1048 /* on Ivy Bridge, nodeID is SASS, where A is HA and S is node id */
Aristeu Rozanski2ff3a302014-06-02 15:15:27 -03001049 return ((pkg >> 3) << 2) | (pkg & 0x3);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03001050}
1051
1052static inline u8 sad_pkg_ha(u8 pkg)
1053{
1054 return (pkg >> 2) & 0x1;
1055}
1056
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001057/****************************************************************************
1058 Memory check routines
1059 ****************************************************************************/
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001060static struct pci_dev *get_pdev_same_bus(u8 bus, u32 id)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001061{
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001062 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001063
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001064 do {
1065 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, id, pdev);
1066 if (pdev && pdev->bus->number == bus)
1067 break;
1068 } while (pdev);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001069
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001070 return pdev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001071}
1072
1073/**
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03001074 * check_if_ecc_is_active() - Checks if ECC is active
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001075 * @bus: Device bus
1076 * @type: Memory controller type
1077 * returns: 0 in case ECC is active, -ENODEV if it can't be determined or
1078 * disabled
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001079 */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001080static int check_if_ecc_is_active(const u8 bus, enum type type)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001081{
1082 struct pci_dev *pdev = NULL;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001083 u32 mcmtr, id;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001084
Tony Luck1f395812014-12-02 09:27:30 -08001085 switch (type) {
1086 case IVY_BRIDGE:
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001087 id = PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TA;
Tony Luck1f395812014-12-02 09:27:30 -08001088 break;
1089 case HASWELL:
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001090 id = PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TA;
Tony Luck1f395812014-12-02 09:27:30 -08001091 break;
1092 case SANDY_BRIDGE:
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001093 id = PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TA;
Tony Luck1f395812014-12-02 09:27:30 -08001094 break;
1095 case BROADWELL:
1096 id = PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TA;
1097 break;
Jim Snowd0cdf902015-12-03 10:48:54 +01001098 case KNIGHTS_LANDING:
1099 /*
1100 * KNL doesn't group things by bus the same way
1101 * SB/IB/Haswell does.
1102 */
1103 id = PCI_DEVICE_ID_INTEL_KNL_IMC_TA;
1104 break;
Tony Luck1f395812014-12-02 09:27:30 -08001105 default:
1106 return -ENODEV;
1107 }
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001108
Jim Snowd0cdf902015-12-03 10:48:54 +01001109 if (type != KNIGHTS_LANDING)
1110 pdev = get_pdev_same_bus(bus, id);
1111 else
1112 pdev = pci_get_device(PCI_VENDOR_ID_INTEL, id, 0);
1113
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001114 if (!pdev) {
1115 sbridge_printk(KERN_ERR, "Couldn't find PCI device "
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03001116 "%04x:%04x! on bus %02d\n",
1117 PCI_VENDOR_ID_INTEL, id, bus);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001118 return -ENODEV;
1119 }
1120
Jim Snowd0cdf902015-12-03 10:48:54 +01001121 pci_read_config_dword(pdev,
1122 type == KNIGHTS_LANDING ? KNL_MCMTR : MCMTR, &mcmtr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001123 if (!IS_ECC_ENABLED(mcmtr)) {
1124 sbridge_printk(KERN_ERR, "ECC is disabled. Aborting\n");
1125 return -ENODEV;
1126 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001127 return 0;
1128}
1129
Jim Snowd0cdf902015-12-03 10:48:54 +01001130/* Low bits of TAD limit, and some metadata. */
1131static const u32 knl_tad_dram_limit_lo[] = {
1132 0x400, 0x500, 0x600, 0x700,
1133 0x800, 0x900, 0xa00, 0xb00,
1134};
1135
1136/* Low bits of TAD offset. */
1137static const u32 knl_tad_dram_offset_lo[] = {
1138 0x404, 0x504, 0x604, 0x704,
1139 0x804, 0x904, 0xa04, 0xb04,
1140};
1141
1142/* High 16 bits of TAD limit and offset. */
1143static const u32 knl_tad_dram_hi[] = {
1144 0x408, 0x508, 0x608, 0x708,
1145 0x808, 0x908, 0xa08, 0xb08,
1146};
1147
1148/* Number of ways a tad entry is interleaved. */
1149static const u32 knl_tad_ways[] = {
1150 8, 6, 4, 3, 2, 1,
1151};
1152
1153/*
1154 * Retrieve the n'th Target Address Decode table entry
1155 * from the memory controller's TAD table.
1156 *
1157 * @pvt: driver private data
1158 * @entry: which entry you want to retrieve
1159 * @mc: which memory controller (0 or 1)
1160 * @offset: output tad range offset
1161 * @limit: output address of first byte above tad range
1162 * @ways: output number of interleave ways
1163 *
1164 * The offset value has curious semantics. It's a sort of running total
1165 * of the sizes of all the memory regions that aren't mapped in this
1166 * tad table.
1167 */
1168static int knl_get_tad(const struct sbridge_pvt *pvt,
1169 const int entry,
1170 const int mc,
1171 u64 *offset,
1172 u64 *limit,
1173 int *ways)
1174{
1175 u32 reg_limit_lo, reg_offset_lo, reg_hi;
1176 struct pci_dev *pci_mc;
1177 int way_id;
1178
1179 switch (mc) {
1180 case 0:
1181 pci_mc = pvt->knl.pci_mc0;
1182 break;
1183 case 1:
1184 pci_mc = pvt->knl.pci_mc1;
1185 break;
1186 default:
1187 WARN_ON(1);
1188 return -EINVAL;
1189 }
1190
1191 pci_read_config_dword(pci_mc,
1192 knl_tad_dram_limit_lo[entry], &reg_limit_lo);
1193 pci_read_config_dword(pci_mc,
1194 knl_tad_dram_offset_lo[entry], &reg_offset_lo);
1195 pci_read_config_dword(pci_mc,
1196 knl_tad_dram_hi[entry], &reg_hi);
1197
1198 /* Is this TAD entry enabled? */
1199 if (!GET_BITFIELD(reg_limit_lo, 0, 0))
1200 return -ENODEV;
1201
1202 way_id = GET_BITFIELD(reg_limit_lo, 3, 5);
1203
1204 if (way_id < ARRAY_SIZE(knl_tad_ways)) {
1205 *ways = knl_tad_ways[way_id];
1206 } else {
1207 *ways = 0;
1208 sbridge_printk(KERN_ERR,
1209 "Unexpected value %d in mc_tad_limit_lo wayness field\n",
1210 way_id);
1211 return -ENODEV;
1212 }
1213
1214 /*
1215 * The least significant 6 bits of base and limit are truncated.
1216 * For limit, we fill the missing bits with 1s.
1217 */
1218 *offset = ((u64) GET_BITFIELD(reg_offset_lo, 6, 31) << 6) |
1219 ((u64) GET_BITFIELD(reg_hi, 0, 15) << 32);
1220 *limit = ((u64) GET_BITFIELD(reg_limit_lo, 6, 31) << 6) | 63 |
1221 ((u64) GET_BITFIELD(reg_hi, 16, 31) << 32);
1222
1223 return 0;
1224}
1225
1226/* Determine which memory controller is responsible for a given channel. */
1227static int knl_channel_mc(int channel)
1228{
1229 WARN_ON(channel < 0 || channel >= 6);
1230
1231 return channel < 3 ? 1 : 0;
1232}
1233
1234/*
1235 * Get the Nth entry from EDC_ROUTE_TABLE register.
1236 * (This is the per-tile mapping of logical interleave targets to
1237 * physical EDC modules.)
1238 *
1239 * entry 0: 0:2
1240 * 1: 3:5
1241 * 2: 6:8
1242 * 3: 9:11
1243 * 4: 12:14
1244 * 5: 15:17
1245 * 6: 18:20
1246 * 7: 21:23
1247 * reserved: 24:31
1248 */
1249static u32 knl_get_edc_route(int entry, u32 reg)
1250{
1251 WARN_ON(entry >= KNL_MAX_EDCS);
1252 return GET_BITFIELD(reg, entry*3, (entry*3)+2);
1253}
1254
1255/*
1256 * Get the Nth entry from MC_ROUTE_TABLE register.
1257 * (This is the per-tile mapping of logical interleave targets to
1258 * physical DRAM channels modules.)
1259 *
1260 * entry 0: mc 0:2 channel 18:19
1261 * 1: mc 3:5 channel 20:21
1262 * 2: mc 6:8 channel 22:23
1263 * 3: mc 9:11 channel 24:25
1264 * 4: mc 12:14 channel 26:27
1265 * 5: mc 15:17 channel 28:29
1266 * reserved: 30:31
1267 *
1268 * Though we have 3 bits to identify the MC, we should only see
1269 * the values 0 or 1.
1270 */
1271
1272static u32 knl_get_mc_route(int entry, u32 reg)
1273{
1274 int mc, chan;
1275
1276 WARN_ON(entry >= KNL_MAX_CHANNELS);
1277
1278 mc = GET_BITFIELD(reg, entry*3, (entry*3)+2);
1279 chan = GET_BITFIELD(reg, (entry*2) + 18, (entry*2) + 18 + 1);
1280
1281 return knl_channel_remap(mc*3 + chan);
1282}
1283
1284/*
1285 * Render the EDC_ROUTE register in human-readable form.
1286 * Output string s should be at least KNL_MAX_EDCS*2 bytes.
1287 */
1288static void knl_show_edc_route(u32 reg, char *s)
1289{
1290 int i;
1291
1292 for (i = 0; i < KNL_MAX_EDCS; i++) {
1293 s[i*2] = knl_get_edc_route(i, reg) + '0';
1294 s[i*2+1] = '-';
1295 }
1296
1297 s[KNL_MAX_EDCS*2 - 1] = '\0';
1298}
1299
1300/*
1301 * Render the MC_ROUTE register in human-readable form.
1302 * Output string s should be at least KNL_MAX_CHANNELS*2 bytes.
1303 */
1304static void knl_show_mc_route(u32 reg, char *s)
1305{
1306 int i;
1307
1308 for (i = 0; i < KNL_MAX_CHANNELS; i++) {
1309 s[i*2] = knl_get_mc_route(i, reg) + '0';
1310 s[i*2+1] = '-';
1311 }
1312
1313 s[KNL_MAX_CHANNELS*2 - 1] = '\0';
1314}
1315
1316#define KNL_EDC_ROUTE 0xb8
1317#define KNL_MC_ROUTE 0xb4
1318
1319/* Is this dram rule backed by regular DRAM in flat mode? */
1320#define KNL_EDRAM(reg) GET_BITFIELD(reg, 29, 29)
1321
1322/* Is this dram rule cached? */
1323#define KNL_CACHEABLE(reg) GET_BITFIELD(reg, 28, 28)
1324
1325/* Is this rule backed by edc ? */
1326#define KNL_EDRAM_ONLY(reg) GET_BITFIELD(reg, 29, 29)
1327
1328/* Is this rule backed by DRAM, cacheable in EDRAM? */
1329#define KNL_CACHEABLE(reg) GET_BITFIELD(reg, 28, 28)
1330
1331/* Is this rule mod3? */
1332#define KNL_MOD3(reg) GET_BITFIELD(reg, 27, 27)
1333
1334/*
1335 * Figure out how big our RAM modules are.
1336 *
1337 * The DIMMMTR register in KNL doesn't tell us the size of the DIMMs, so we
1338 * have to figure this out from the SAD rules, interleave lists, route tables,
1339 * and TAD rules.
1340 *
1341 * SAD rules can have holes in them (e.g. the 3G-4G hole), so we have to
1342 * inspect the TAD rules to figure out how large the SAD regions really are.
1343 *
1344 * When we know the real size of a SAD region and how many ways it's
1345 * interleaved, we know the individual contribution of each channel to
1346 * TAD is size/ways.
1347 *
1348 * Finally, we have to check whether each channel participates in each SAD
1349 * region.
1350 *
1351 * Fortunately, KNL only supports one DIMM per channel, so once we know how
1352 * much memory the channel uses, we know the DIMM is at least that large.
1353 * (The BIOS might possibly choose not to map all available memory, in which
1354 * case we will underreport the size of the DIMM.)
1355 *
1356 * In theory, we could try to determine the EDC sizes as well, but that would
1357 * only work in flat mode, not in cache mode.
1358 *
1359 * @mc_sizes: Output sizes of channels (must have space for KNL_MAX_CHANNELS
1360 * elements)
1361 */
1362static int knl_get_dimm_capacity(struct sbridge_pvt *pvt, u64 *mc_sizes)
1363{
1364 u64 sad_base, sad_size, sad_limit = 0;
1365 u64 tad_base, tad_size, tad_limit, tad_deadspace, tad_livespace;
1366 int sad_rule = 0;
1367 int tad_rule = 0;
1368 int intrlv_ways, tad_ways;
1369 u32 first_pkg, pkg;
1370 int i;
1371 u64 sad_actual_size[2]; /* sad size accounting for holes, per mc */
1372 u32 dram_rule, interleave_reg;
1373 u32 mc_route_reg[KNL_MAX_CHAS];
1374 u32 edc_route_reg[KNL_MAX_CHAS];
1375 int edram_only;
1376 char edc_route_string[KNL_MAX_EDCS*2];
1377 char mc_route_string[KNL_MAX_CHANNELS*2];
1378 int cur_reg_start;
1379 int mc;
1380 int channel;
1381 int way;
1382 int participants[KNL_MAX_CHANNELS];
1383 int participant_count = 0;
1384
1385 for (i = 0; i < KNL_MAX_CHANNELS; i++)
1386 mc_sizes[i] = 0;
1387
1388 /* Read the EDC route table in each CHA. */
1389 cur_reg_start = 0;
1390 for (i = 0; i < KNL_MAX_CHAS; i++) {
1391 pci_read_config_dword(pvt->knl.pci_cha[i],
1392 KNL_EDC_ROUTE, &edc_route_reg[i]);
1393
1394 if (i > 0 && edc_route_reg[i] != edc_route_reg[i-1]) {
1395 knl_show_edc_route(edc_route_reg[i-1],
1396 edc_route_string);
1397 if (cur_reg_start == i-1)
1398 edac_dbg(0, "edc route table for CHA %d: %s\n",
1399 cur_reg_start, edc_route_string);
1400 else
1401 edac_dbg(0, "edc route table for CHA %d-%d: %s\n",
1402 cur_reg_start, i-1, edc_route_string);
1403 cur_reg_start = i;
1404 }
1405 }
1406 knl_show_edc_route(edc_route_reg[i-1], edc_route_string);
1407 if (cur_reg_start == i-1)
1408 edac_dbg(0, "edc route table for CHA %d: %s\n",
1409 cur_reg_start, edc_route_string);
1410 else
1411 edac_dbg(0, "edc route table for CHA %d-%d: %s\n",
1412 cur_reg_start, i-1, edc_route_string);
1413
1414 /* Read the MC route table in each CHA. */
1415 cur_reg_start = 0;
1416 for (i = 0; i < KNL_MAX_CHAS; i++) {
1417 pci_read_config_dword(pvt->knl.pci_cha[i],
1418 KNL_MC_ROUTE, &mc_route_reg[i]);
1419
1420 if (i > 0 && mc_route_reg[i] != mc_route_reg[i-1]) {
1421 knl_show_mc_route(mc_route_reg[i-1], mc_route_string);
1422 if (cur_reg_start == i-1)
1423 edac_dbg(0, "mc route table for CHA %d: %s\n",
1424 cur_reg_start, mc_route_string);
1425 else
1426 edac_dbg(0, "mc route table for CHA %d-%d: %s\n",
1427 cur_reg_start, i-1, mc_route_string);
1428 cur_reg_start = i;
1429 }
1430 }
1431 knl_show_mc_route(mc_route_reg[i-1], mc_route_string);
1432 if (cur_reg_start == i-1)
1433 edac_dbg(0, "mc route table for CHA %d: %s\n",
1434 cur_reg_start, mc_route_string);
1435 else
1436 edac_dbg(0, "mc route table for CHA %d-%d: %s\n",
1437 cur_reg_start, i-1, mc_route_string);
1438
1439 /* Process DRAM rules */
1440 for (sad_rule = 0; sad_rule < pvt->info.max_sad; sad_rule++) {
1441 /* previous limit becomes the new base */
1442 sad_base = sad_limit;
1443
1444 pci_read_config_dword(pvt->pci_sad0,
1445 pvt->info.dram_rule[sad_rule], &dram_rule);
1446
1447 if (!DRAM_RULE_ENABLE(dram_rule))
1448 break;
1449
1450 edram_only = KNL_EDRAM_ONLY(dram_rule);
1451
1452 sad_limit = pvt->info.sad_limit(dram_rule)+1;
1453 sad_size = sad_limit - sad_base;
1454
1455 pci_read_config_dword(pvt->pci_sad0,
1456 pvt->info.interleave_list[sad_rule], &interleave_reg);
1457
1458 /*
1459 * Find out how many ways this dram rule is interleaved.
1460 * We stop when we see the first channel again.
1461 */
1462 first_pkg = sad_pkg(pvt->info.interleave_pkg,
1463 interleave_reg, 0);
1464 for (intrlv_ways = 1; intrlv_ways < 8; intrlv_ways++) {
1465 pkg = sad_pkg(pvt->info.interleave_pkg,
1466 interleave_reg, intrlv_ways);
1467
1468 if ((pkg & 0x8) == 0) {
1469 /*
1470 * 0 bit means memory is non-local,
1471 * which KNL doesn't support
1472 */
1473 edac_dbg(0, "Unexpected interleave target %d\n",
1474 pkg);
1475 return -1;
1476 }
1477
1478 if (pkg == first_pkg)
1479 break;
1480 }
1481 if (KNL_MOD3(dram_rule))
1482 intrlv_ways *= 3;
1483
1484 edac_dbg(3, "dram rule %d (base 0x%llx, limit 0x%llx), %d way interleave%s\n",
1485 sad_rule,
1486 sad_base,
1487 sad_limit,
1488 intrlv_ways,
1489 edram_only ? ", EDRAM" : "");
1490
1491 /*
1492 * Find out how big the SAD region really is by iterating
1493 * over TAD tables (SAD regions may contain holes).
1494 * Each memory controller might have a different TAD table, so
1495 * we have to look at both.
1496 *
1497 * Livespace is the memory that's mapped in this TAD table,
1498 * deadspace is the holes (this could be the MMIO hole, or it
1499 * could be memory that's mapped by the other TAD table but
1500 * not this one).
1501 */
1502 for (mc = 0; mc < 2; mc++) {
1503 sad_actual_size[mc] = 0;
1504 tad_livespace = 0;
1505 for (tad_rule = 0;
1506 tad_rule < ARRAY_SIZE(
1507 knl_tad_dram_limit_lo);
1508 tad_rule++) {
1509 if (knl_get_tad(pvt,
1510 tad_rule,
1511 mc,
1512 &tad_deadspace,
1513 &tad_limit,
1514 &tad_ways))
1515 break;
1516
1517 tad_size = (tad_limit+1) -
1518 (tad_livespace + tad_deadspace);
1519 tad_livespace += tad_size;
1520 tad_base = (tad_limit+1) - tad_size;
1521
1522 if (tad_base < sad_base) {
1523 if (tad_limit > sad_base)
1524 edac_dbg(0, "TAD region overlaps lower SAD boundary -- TAD tables may be configured incorrectly.\n");
1525 } else if (tad_base < sad_limit) {
1526 if (tad_limit+1 > sad_limit) {
1527 edac_dbg(0, "TAD region overlaps upper SAD boundary -- TAD tables may be configured incorrectly.\n");
1528 } else {
1529 /* TAD region is completely inside SAD region */
1530 edac_dbg(3, "TAD region %d 0x%llx - 0x%llx (%lld bytes) table%d\n",
1531 tad_rule, tad_base,
1532 tad_limit, tad_size,
1533 mc);
1534 sad_actual_size[mc] += tad_size;
1535 }
1536 }
1537 tad_base = tad_limit+1;
1538 }
1539 }
1540
1541 for (mc = 0; mc < 2; mc++) {
1542 edac_dbg(3, " total TAD DRAM footprint in table%d : 0x%llx (%lld bytes)\n",
1543 mc, sad_actual_size[mc], sad_actual_size[mc]);
1544 }
1545
1546 /* Ignore EDRAM rule */
1547 if (edram_only)
1548 continue;
1549
1550 /* Figure out which channels participate in interleave. */
1551 for (channel = 0; channel < KNL_MAX_CHANNELS; channel++)
1552 participants[channel] = 0;
1553
1554 /* For each channel, does at least one CHA have
1555 * this channel mapped to the given target?
1556 */
1557 for (channel = 0; channel < KNL_MAX_CHANNELS; channel++) {
1558 for (way = 0; way < intrlv_ways; way++) {
1559 int target;
1560 int cha;
1561
1562 if (KNL_MOD3(dram_rule))
1563 target = way;
1564 else
1565 target = 0x7 & sad_pkg(
1566 pvt->info.interleave_pkg, interleave_reg, way);
1567
1568 for (cha = 0; cha < KNL_MAX_CHAS; cha++) {
1569 if (knl_get_mc_route(target,
1570 mc_route_reg[cha]) == channel
1571 && participants[channel]) {
1572 participant_count++;
1573 participants[channel] = 1;
1574 break;
1575 }
1576 }
1577 }
1578 }
1579
1580 if (participant_count != intrlv_ways)
1581 edac_dbg(0, "participant_count (%d) != interleave_ways (%d): DIMM size may be incorrect\n",
1582 participant_count, intrlv_ways);
1583
1584 for (channel = 0; channel < KNL_MAX_CHANNELS; channel++) {
1585 mc = knl_channel_mc(channel);
1586 if (participants[channel]) {
1587 edac_dbg(4, "mc channel %d contributes %lld bytes via sad entry %d\n",
1588 channel,
1589 sad_actual_size[mc]/intrlv_ways,
1590 sad_rule);
1591 mc_sizes[channel] +=
1592 sad_actual_size[mc]/intrlv_ways;
1593 }
1594 }
1595 }
1596
1597 return 0;
1598}
1599
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03001600static int get_dimm_config(struct mem_ctl_info *mci)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001601{
1602 struct sbridge_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03001603 struct dimm_info *dimm;
Mauro Carvalho Chehabdeb09dd2012-09-20 12:09:30 -03001604 unsigned i, j, banks, ranks, rows, cols, npages;
1605 u64 size;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001606 u32 reg;
1607 enum edac_type mode;
Mark A. Grondonac6e13b52011-10-18 11:02:58 -02001608 enum mem_type mtype;
Jim Snowd0cdf902015-12-03 10:48:54 +01001609 int channels = pvt->info.type == KNIGHTS_LANDING ?
1610 KNL_MAX_CHANNELS : NUM_CHANNELS;
1611 u64 knl_mc_sizes[KNL_MAX_CHANNELS];
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001612
Jim Snowd0cdf902015-12-03 10:48:54 +01001613 if (pvt->info.type == HASWELL || pvt->info.type == BROADWELL ||
1614 pvt->info.type == KNIGHTS_LANDING)
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001615 pci_read_config_dword(pvt->pci_sad1, SAD_TARGET, &reg);
1616 else
1617 pci_read_config_dword(pvt->pci_br0, SAD_TARGET, &reg);
1618
Jim Snowd0cdf902015-12-03 10:48:54 +01001619 if (pvt->info.type == KNIGHTS_LANDING)
1620 pvt->sbridge_dev->source_id = SOURCE_ID_KNL(reg);
1621 else
1622 pvt->sbridge_dev->source_id = SOURCE_ID(reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001623
Aristeu Rozanskif14d6892014-06-02 15:15:23 -03001624 pvt->sbridge_dev->node_id = pvt->info.get_node_id(pvt);
Joe Perches956b9ba2012-04-29 17:08:39 -03001625 edac_dbg(0, "mc#%d: Node ID: %d, source ID: %d\n",
1626 pvt->sbridge_dev->mc,
1627 pvt->sbridge_dev->node_id,
1628 pvt->sbridge_dev->source_id);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001629
Jim Snowd0cdf902015-12-03 10:48:54 +01001630 /* KNL doesn't support mirroring or lockstep,
1631 * and is always closed page
1632 */
1633 if (pvt->info.type == KNIGHTS_LANDING) {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001634 mode = EDAC_S4ECD4ED;
Jim Snowd0cdf902015-12-03 10:48:54 +01001635 pvt->is_mirrored = false;
1636
1637 if (knl_get_dimm_capacity(pvt, knl_mc_sizes) != 0)
1638 return -1;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001639 } else {
Jim Snowd0cdf902015-12-03 10:48:54 +01001640 pci_read_config_dword(pvt->pci_ras, RASENABLES, &reg);
1641 if (IS_MIRROR_ENABLED(reg)) {
1642 edac_dbg(0, "Memory mirror is enabled\n");
1643 pvt->is_mirrored = true;
1644 } else {
1645 edac_dbg(0, "Memory mirror is disabled\n");
1646 pvt->is_mirrored = false;
1647 }
1648
1649 pci_read_config_dword(pvt->pci_ta, MCMTR, &pvt->info.mcmtr);
1650 if (IS_LOCKSTEP_ENABLED(pvt->info.mcmtr)) {
1651 edac_dbg(0, "Lockstep is enabled\n");
1652 mode = EDAC_S8ECD8ED;
1653 pvt->is_lockstep = true;
1654 } else {
1655 edac_dbg(0, "Lockstep is disabled\n");
1656 mode = EDAC_S4ECD4ED;
1657 pvt->is_lockstep = false;
1658 }
1659 if (IS_CLOSE_PG(pvt->info.mcmtr)) {
1660 edac_dbg(0, "address map is on closed page mode\n");
1661 pvt->is_close_pg = true;
1662 } else {
1663 edac_dbg(0, "address map is on open page mode\n");
1664 pvt->is_close_pg = false;
1665 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001666 }
1667
Aristeu Rozanski9e375442014-06-02 15:15:22 -03001668 mtype = pvt->info.get_memory_type(pvt);
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001669 if (mtype == MEM_RDDR3 || mtype == MEM_RDDR4)
Aristeu Rozanski9e375442014-06-02 15:15:22 -03001670 edac_dbg(0, "Memory is registered\n");
1671 else if (mtype == MEM_UNKNOWN)
Luck, Tonyde4772c2013-03-28 09:59:15 -07001672 edac_dbg(0, "Cannot determine memory type\n");
Aristeu Rozanski9e375442014-06-02 15:15:22 -03001673 else
1674 edac_dbg(0, "Memory is unregistered\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001675
Tony Luckfec53af2014-12-02 09:41:58 -08001676 if (mtype == MEM_DDR4 || mtype == MEM_RDDR4)
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001677 banks = 16;
1678 else
1679 banks = 8;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001680
Jim Snowd0cdf902015-12-03 10:48:54 +01001681 for (i = 0; i < channels; i++) {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001682 u32 mtr;
1683
Jim Snowd0cdf902015-12-03 10:48:54 +01001684 int max_dimms_per_channel;
1685
1686 if (pvt->info.type == KNIGHTS_LANDING) {
1687 max_dimms_per_channel = 1;
1688 if (!pvt->knl.pci_channel[i])
1689 continue;
1690 } else {
1691 max_dimms_per_channel = ARRAY_SIZE(mtr_regs);
1692 if (!pvt->pci_tad[i])
1693 continue;
1694 }
1695
1696 for (j = 0; j < max_dimms_per_channel; j++) {
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03001697 dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers,
1698 i, j, 0);
Jim Snowd0cdf902015-12-03 10:48:54 +01001699 if (pvt->info.type == KNIGHTS_LANDING) {
1700 pci_read_config_dword(pvt->knl.pci_channel[i],
1701 knl_mtr_reg, &mtr);
1702 } else {
1703 pci_read_config_dword(pvt->pci_tad[i],
1704 mtr_regs[j], &mtr);
1705 }
Joe Perches956b9ba2012-04-29 17:08:39 -03001706 edac_dbg(4, "Channel #%d MTR%d = %x\n", i, j, mtr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001707 if (IS_DIMM_PRESENT(mtr)) {
1708 pvt->channel[i].dimms++;
1709
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001710 ranks = numrank(pvt->info.type, mtr);
Jim Snowd0cdf902015-12-03 10:48:54 +01001711
1712 if (pvt->info.type == KNIGHTS_LANDING) {
1713 /* For DDR4, this is fixed. */
1714 cols = 1 << 10;
1715 rows = knl_mc_sizes[i] /
1716 ((u64) cols * ranks * banks * 8);
1717 } else {
1718 rows = numrow(mtr);
1719 cols = numcol(mtr);
1720 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001721
Mauro Carvalho Chehabdeb09dd2012-09-20 12:09:30 -03001722 size = ((u64)rows * cols * banks * ranks) >> (20 - 3);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001723 npages = MiB_TO_PAGES(size);
1724
Tony Luck7d375bf2015-05-18 17:50:42 -03001725 edac_dbg(0, "mc#%d: ha %d channel %d, dimm %d, %lld Mb (%d pages) bank: %d, rank: %d, row: %#x, col: %#x\n",
1726 pvt->sbridge_dev->mc, i/4, i%4, j,
Joe Perches956b9ba2012-04-29 17:08:39 -03001727 size, npages,
1728 banks, ranks, rows, cols);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001729
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -03001730 dimm->nr_pages = npages;
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03001731 dimm->grain = 32;
Aristeu Rozanski12f07212015-06-12 15:08:17 -04001732 dimm->dtype = pvt->info.get_width(pvt, mtr);
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -03001733 dimm->mtype = mtype;
1734 dimm->edac_mode = mode;
1735 snprintf(dimm->label, sizeof(dimm->label),
Tony Luck7d375bf2015-05-18 17:50:42 -03001736 "CPU_SrcID#%u_Ha#%u_Chan#%u_DIMM#%u",
1737 pvt->sbridge_dev->source_id, i/4, i%4, j);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001738 }
1739 }
1740 }
1741
1742 return 0;
1743}
1744
1745static void get_memory_layout(const struct mem_ctl_info *mci)
1746{
1747 struct sbridge_pvt *pvt = mci->pvt_info;
1748 int i, j, k, n_sads, n_tads, sad_interl;
1749 u32 reg;
1750 u64 limit, prv = 0;
1751 u64 tmp_mb;
Jim Snow8c009102014-11-18 14:51:09 +01001752 u32 gb, mb;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001753 u32 rir_way;
1754
1755 /*
1756 * Step 1) Get TOLM/TOHM ranges
1757 */
1758
Aristeu Rozanskifb79a502013-10-30 13:26:57 -03001759 pvt->tolm = pvt->info.get_tolm(pvt);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001760 tmp_mb = (1 + pvt->tolm) >> 20;
1761
Jim Snow8c009102014-11-18 14:51:09 +01001762 gb = div_u64_rem(tmp_mb, 1024, &mb);
1763 edac_dbg(0, "TOLM: %u.%03u GB (0x%016Lx)\n",
1764 gb, (mb*1000)/1024, (u64)pvt->tolm);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001765
1766 /* Address range is already 45:25 */
Aristeu Rozanski8fd6a432013-10-30 13:26:59 -03001767 pvt->tohm = pvt->info.get_tohm(pvt);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001768 tmp_mb = (1 + pvt->tohm) >> 20;
1769
Jim Snow8c009102014-11-18 14:51:09 +01001770 gb = div_u64_rem(tmp_mb, 1024, &mb);
1771 edac_dbg(0, "TOHM: %u.%03u GB (0x%016Lx)\n",
1772 gb, (mb*1000)/1024, (u64)pvt->tohm);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001773
1774 /*
1775 * Step 2) Get SAD range and SAD Interleave list
1776 * TAD registers contain the interleave wayness. However, it
1777 * seems simpler to just discover it indirectly, with the
1778 * algorithm bellow.
1779 */
1780 prv = 0;
Aristeu Rozanski464f1d82013-10-30 13:27:00 -03001781 for (n_sads = 0; n_sads < pvt->info.max_sad; n_sads++) {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001782 /* SAD_LIMIT Address range is 45:26 */
Aristeu Rozanski464f1d82013-10-30 13:27:00 -03001783 pci_read_config_dword(pvt->pci_sad0, pvt->info.dram_rule[n_sads],
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001784 &reg);
Jim Snowc59f9c02015-12-03 10:48:52 +01001785 limit = pvt->info.sad_limit(reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001786
1787 if (!DRAM_RULE_ENABLE(reg))
1788 continue;
1789
1790 if (limit <= prv)
1791 break;
1792
1793 tmp_mb = (limit + 1) >> 20;
Jim Snow8c009102014-11-18 14:51:09 +01001794 gb = div_u64_rem(tmp_mb, 1024, &mb);
Joe Perches956b9ba2012-04-29 17:08:39 -03001795 edac_dbg(0, "SAD#%d %s up to %u.%03u GB (0x%016Lx) Interleave: %s reg=0x%08x\n",
1796 n_sads,
Jim Snowc59f9c02015-12-03 10:48:52 +01001797 show_dram_attr(pvt->info.dram_attr(reg)),
Jim Snow8c009102014-11-18 14:51:09 +01001798 gb, (mb*1000)/1024,
Joe Perches956b9ba2012-04-29 17:08:39 -03001799 ((u64)tmp_mb) << 20L,
Jim Snowc59f9c02015-12-03 10:48:52 +01001800 pvt->info.show_interleave_mode(reg),
Joe Perches956b9ba2012-04-29 17:08:39 -03001801 reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001802 prv = limit;
1803
Aristeu Rozanskief1ce512013-10-30 13:27:01 -03001804 pci_read_config_dword(pvt->pci_sad0, pvt->info.interleave_list[n_sads],
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001805 &reg);
Aristeu Rozanskicc311992013-10-30 13:27:02 -03001806 sad_interl = sad_pkg(pvt->info.interleave_pkg, reg, 0);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001807 for (j = 0; j < 8; j++) {
Aristeu Rozanskicc311992013-10-30 13:27:02 -03001808 u32 pkg = sad_pkg(pvt->info.interleave_pkg, reg, j);
1809 if (j > 0 && sad_interl == pkg)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001810 break;
1811
Joe Perches956b9ba2012-04-29 17:08:39 -03001812 edac_dbg(0, "SAD#%d, interleave #%d: %d\n",
Aristeu Rozanskicc311992013-10-30 13:27:02 -03001813 n_sads, j, pkg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001814 }
1815 }
1816
Jim Snowd0cdf902015-12-03 10:48:54 +01001817 if (pvt->info.type == KNIGHTS_LANDING)
1818 return;
1819
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001820 /*
1821 * Step 3) Get TAD range
1822 */
1823 prv = 0;
1824 for (n_tads = 0; n_tads < MAX_TAD; n_tads++) {
1825 pci_read_config_dword(pvt->pci_ha0, tad_dram_rule[n_tads],
1826 &reg);
1827 limit = TAD_LIMIT(reg);
1828 if (limit <= prv)
1829 break;
1830 tmp_mb = (limit + 1) >> 20;
1831
Jim Snow8c009102014-11-18 14:51:09 +01001832 gb = div_u64_rem(tmp_mb, 1024, &mb);
Joe Perches956b9ba2012-04-29 17:08:39 -03001833 edac_dbg(0, "TAD#%d: up to %u.%03u GB (0x%016Lx), socket interleave %d, memory interleave %d, TGT: %d, %d, %d, %d, reg=0x%08x\n",
Jim Snow8c009102014-11-18 14:51:09 +01001834 n_tads, gb, (mb*1000)/1024,
Joe Perches956b9ba2012-04-29 17:08:39 -03001835 ((u64)tmp_mb) << 20L,
1836 (u32)TAD_SOCK(reg),
1837 (u32)TAD_CH(reg),
1838 (u32)TAD_TGT0(reg),
1839 (u32)TAD_TGT1(reg),
1840 (u32)TAD_TGT2(reg),
1841 (u32)TAD_TGT3(reg),
1842 reg);
Hui Wang7fae0db2012-02-06 04:11:01 -03001843 prv = limit;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001844 }
1845
1846 /*
1847 * Step 4) Get TAD offsets, per each channel
1848 */
1849 for (i = 0; i < NUM_CHANNELS; i++) {
1850 if (!pvt->channel[i].dimms)
1851 continue;
1852 for (j = 0; j < n_tads; j++) {
1853 pci_read_config_dword(pvt->pci_tad[i],
1854 tad_ch_nilv_offset[j],
1855 &reg);
1856 tmp_mb = TAD_OFFSET(reg) >> 20;
Jim Snow8c009102014-11-18 14:51:09 +01001857 gb = div_u64_rem(tmp_mb, 1024, &mb);
Joe Perches956b9ba2012-04-29 17:08:39 -03001858 edac_dbg(0, "TAD CH#%d, offset #%d: %u.%03u GB (0x%016Lx), reg=0x%08x\n",
1859 i, j,
Jim Snow8c009102014-11-18 14:51:09 +01001860 gb, (mb*1000)/1024,
Joe Perches956b9ba2012-04-29 17:08:39 -03001861 ((u64)tmp_mb) << 20L,
1862 reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001863 }
1864 }
1865
1866 /*
1867 * Step 6) Get RIR Wayness/Limit, per each channel
1868 */
1869 for (i = 0; i < NUM_CHANNELS; i++) {
1870 if (!pvt->channel[i].dimms)
1871 continue;
1872 for (j = 0; j < MAX_RIR_RANGES; j++) {
1873 pci_read_config_dword(pvt->pci_tad[i],
1874 rir_way_limit[j],
1875 &reg);
1876
1877 if (!IS_RIR_VALID(reg))
1878 continue;
1879
Aristeu Rozanskib976bcf2014-06-02 15:15:24 -03001880 tmp_mb = pvt->info.rir_limit(reg) >> 20;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001881 rir_way = 1 << RIR_WAY(reg);
Jim Snow8c009102014-11-18 14:51:09 +01001882 gb = div_u64_rem(tmp_mb, 1024, &mb);
Joe Perches956b9ba2012-04-29 17:08:39 -03001883 edac_dbg(0, "CH#%d RIR#%d, limit: %u.%03u GB (0x%016Lx), way: %d, reg=0x%08x\n",
1884 i, j,
Jim Snow8c009102014-11-18 14:51:09 +01001885 gb, (mb*1000)/1024,
Joe Perches956b9ba2012-04-29 17:08:39 -03001886 ((u64)tmp_mb) << 20L,
1887 rir_way,
1888 reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001889
1890 for (k = 0; k < rir_way; k++) {
1891 pci_read_config_dword(pvt->pci_tad[i],
1892 rir_offset[j][k],
1893 &reg);
1894 tmp_mb = RIR_OFFSET(reg) << 6;
1895
Jim Snow8c009102014-11-18 14:51:09 +01001896 gb = div_u64_rem(tmp_mb, 1024, &mb);
Joe Perches956b9ba2012-04-29 17:08:39 -03001897 edac_dbg(0, "CH#%d RIR#%d INTL#%d, offset %u.%03u GB (0x%016Lx), tgt: %d, reg=0x%08x\n",
1898 i, j, k,
Jim Snow8c009102014-11-18 14:51:09 +01001899 gb, (mb*1000)/1024,
Joe Perches956b9ba2012-04-29 17:08:39 -03001900 ((u64)tmp_mb) << 20L,
1901 (u32)RIR_RNK_TGT(reg),
1902 reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001903 }
1904 }
1905 }
1906}
1907
Rashika Kheria8112c0c2013-12-14 19:32:09 +05301908static struct mem_ctl_info *get_mci_for_node_id(u8 node_id)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001909{
1910 struct sbridge_dev *sbridge_dev;
1911
1912 list_for_each_entry(sbridge_dev, &sbridge_edac_list, list) {
1913 if (sbridge_dev->node_id == node_id)
1914 return sbridge_dev->mci;
1915 }
1916 return NULL;
1917}
1918
1919static int get_memory_error_data(struct mem_ctl_info *mci,
1920 u64 addr,
Tony Luck7d375bf2015-05-18 17:50:42 -03001921 u8 *socket, u8 *ha,
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001922 long *channel_mask,
1923 u8 *rank,
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03001924 char **area_type, char *msg)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001925{
1926 struct mem_ctl_info *new_mci;
1927 struct sbridge_pvt *pvt = mci->pvt_info;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03001928 struct pci_dev *pci_ha;
Mauro Carvalho Chehabc41afdc2014-06-26 15:35:14 -03001929 int n_rir, n_sads, n_tads, sad_way, sck_xch;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001930 int sad_interl, idx, base_ch;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001931 int interleave_mode, shiftup = 0;
Aristeu Rozanskief1ce512013-10-30 13:27:01 -03001932 unsigned sad_interleave[pvt->info.max_interleave];
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001933 u32 reg, dram_rule;
Tony Luck7d375bf2015-05-18 17:50:42 -03001934 u8 ch_way, sck_way, pkg, sad_ha = 0, ch_add = 0;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001935 u32 tad_offset;
1936 u32 rir_way;
Jim Snow8c009102014-11-18 14:51:09 +01001937 u32 mb, gb;
Aristeu Rozanskibd4b9682013-11-21 09:08:03 -05001938 u64 ch_addr, offset, limit = 0, prv = 0;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001939
1940
1941 /*
1942 * Step 0) Check if the address is at special memory ranges
1943 * The check bellow is probably enough to fill all cases where
1944 * the error is not inside a memory, except for the legacy
1945 * range (e. g. VGA addresses). It is unlikely, however, that the
1946 * memory controller would generate an error on that range.
1947 */
Mauro Carvalho Chehab5b889e32011-11-07 18:26:53 -03001948 if ((addr > (u64) pvt->tolm) && (addr < (1LL << 32))) {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001949 sprintf(msg, "Error at TOLM area, on addr 0x%08Lx", addr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001950 return -EINVAL;
1951 }
1952 if (addr >= (u64)pvt->tohm) {
1953 sprintf(msg, "Error at MMIOH area, on addr 0x%016Lx", addr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001954 return -EINVAL;
1955 }
1956
1957 /*
1958 * Step 1) Get socket
1959 */
Aristeu Rozanski464f1d82013-10-30 13:27:00 -03001960 for (n_sads = 0; n_sads < pvt->info.max_sad; n_sads++) {
1961 pci_read_config_dword(pvt->pci_sad0, pvt->info.dram_rule[n_sads],
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001962 &reg);
1963
1964 if (!DRAM_RULE_ENABLE(reg))
1965 continue;
1966
Jim Snowc59f9c02015-12-03 10:48:52 +01001967 limit = pvt->info.sad_limit(reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001968 if (limit <= prv) {
1969 sprintf(msg, "Can't discover the memory socket");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001970 return -EINVAL;
1971 }
1972 if (addr <= limit)
1973 break;
1974 prv = limit;
1975 }
Aristeu Rozanski464f1d82013-10-30 13:27:00 -03001976 if (n_sads == pvt->info.max_sad) {
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001977 sprintf(msg, "Can't discover the memory socket");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001978 return -EINVAL;
1979 }
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03001980 dram_rule = reg;
Jim Snowc59f9c02015-12-03 10:48:52 +01001981 *area_type = show_dram_attr(pvt->info.dram_attr(dram_rule));
1982 interleave_mode = pvt->info.interleave_mode(dram_rule);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001983
Aristeu Rozanskief1ce512013-10-30 13:27:01 -03001984 pci_read_config_dword(pvt->pci_sad0, pvt->info.interleave_list[n_sads],
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02001985 &reg);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03001986
1987 if (pvt->info.type == SANDY_BRIDGE) {
1988 sad_interl = sad_pkg(pvt->info.interleave_pkg, reg, 0);
1989 for (sad_way = 0; sad_way < 8; sad_way++) {
1990 u32 pkg = sad_pkg(pvt->info.interleave_pkg, reg, sad_way);
1991 if (sad_way > 0 && sad_interl == pkg)
1992 break;
1993 sad_interleave[sad_way] = pkg;
1994 edac_dbg(0, "SAD interleave #%d: %d\n",
1995 sad_way, sad_interleave[sad_way]);
1996 }
1997 edac_dbg(0, "mc#%d: Error detected on SAD#%d: address 0x%016Lx < 0x%016Lx, Interleave [%d:6]%s\n",
1998 pvt->sbridge_dev->mc,
1999 n_sads,
2000 addr,
2001 limit,
2002 sad_way + 7,
2003 !interleave_mode ? "" : "XOR[18:16]");
2004 if (interleave_mode)
2005 idx = ((addr >> 6) ^ (addr >> 16)) & 7;
2006 else
2007 idx = (addr >> 6) & 7;
2008 switch (sad_way) {
2009 case 1:
2010 idx = 0;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002011 break;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002012 case 2:
2013 idx = idx & 1;
2014 break;
2015 case 4:
2016 idx = idx & 3;
2017 break;
2018 case 8:
2019 break;
2020 default:
2021 sprintf(msg, "Can't discover socket interleave");
2022 return -EINVAL;
2023 }
2024 *socket = sad_interleave[idx];
2025 edac_dbg(0, "SAD interleave index: %d (wayness %d) = CPU socket %d\n",
2026 idx, sad_way, *socket);
Tony Luck1f395812014-12-02 09:27:30 -08002027 } else if (pvt->info.type == HASWELL || pvt->info.type == BROADWELL) {
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002028 int bits, a7mode = A7MODE(dram_rule);
2029
2030 if (a7mode) {
2031 /* A7 mode swaps P9 with P6 */
2032 bits = GET_BITFIELD(addr, 7, 8) << 1;
2033 bits |= GET_BITFIELD(addr, 9, 9);
2034 } else
Tony Luckbb89e712015-05-18 17:39:06 -03002035 bits = GET_BITFIELD(addr, 6, 8);
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002036
Tony Luckbb89e712015-05-18 17:39:06 -03002037 if (interleave_mode == 0) {
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002038 /* interleave mode will XOR {8,7,6} with {18,17,16} */
2039 idx = GET_BITFIELD(addr, 16, 18);
2040 idx ^= bits;
2041 } else
2042 idx = bits;
2043
2044 pkg = sad_pkg(pvt->info.interleave_pkg, reg, idx);
2045 *socket = sad_pkg_socket(pkg);
2046 sad_ha = sad_pkg_ha(pkg);
Tony Luck7d375bf2015-05-18 17:50:42 -03002047 if (sad_ha)
2048 ch_add = 4;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002049
2050 if (a7mode) {
2051 /* MCChanShiftUpEnable */
2052 pci_read_config_dword(pvt->pci_ha0,
2053 HASWELL_HASYSDEFEATURE2, &reg);
2054 shiftup = GET_BITFIELD(reg, 22, 22);
2055 }
2056
2057 edac_dbg(0, "SAD interleave package: %d = CPU socket %d, HA %i, shiftup: %i\n",
2058 idx, *socket, sad_ha, shiftup);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002059 } else {
2060 /* Ivy Bridge's SAD mode doesn't support XOR interleave mode */
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002061 idx = (addr >> 6) & 7;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002062 pkg = sad_pkg(pvt->info.interleave_pkg, reg, idx);
2063 *socket = sad_pkg_socket(pkg);
2064 sad_ha = sad_pkg_ha(pkg);
Tony Luck7d375bf2015-05-18 17:50:42 -03002065 if (sad_ha)
2066 ch_add = 4;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002067 edac_dbg(0, "SAD interleave package: %d = CPU socket %d, HA %d\n",
2068 idx, *socket, sad_ha);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002069 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002070
Tony Luck7d375bf2015-05-18 17:50:42 -03002071 *ha = sad_ha;
2072
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002073 /*
2074 * Move to the proper node structure, in order to access the
2075 * right PCI registers
2076 */
2077 new_mci = get_mci_for_node_id(*socket);
2078 if (!new_mci) {
2079 sprintf(msg, "Struct for socket #%u wasn't initialized",
2080 *socket);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002081 return -EINVAL;
2082 }
2083 mci = new_mci;
2084 pvt = mci->pvt_info;
2085
2086 /*
2087 * Step 2) Get memory channel
2088 */
2089 prv = 0;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002090 if (pvt->info.type == SANDY_BRIDGE)
2091 pci_ha = pvt->pci_ha0;
2092 else {
2093 if (sad_ha)
2094 pci_ha = pvt->pci_ha1;
2095 else
2096 pci_ha = pvt->pci_ha0;
2097 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002098 for (n_tads = 0; n_tads < MAX_TAD; n_tads++) {
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002099 pci_read_config_dword(pci_ha, tad_dram_rule[n_tads], &reg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002100 limit = TAD_LIMIT(reg);
2101 if (limit <= prv) {
2102 sprintf(msg, "Can't discover the memory channel");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002103 return -EINVAL;
2104 }
2105 if (addr <= limit)
2106 break;
2107 prv = limit;
2108 }
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002109 if (n_tads == MAX_TAD) {
2110 sprintf(msg, "Can't discover the memory channel");
2111 return -EINVAL;
2112 }
2113
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002114 ch_way = TAD_CH(reg) + 1;
2115 sck_way = TAD_SOCK(reg) + 1;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002116
2117 if (ch_way == 3)
2118 idx = addr >> 6;
2119 else
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002120 idx = (addr >> (6 + sck_way + shiftup)) & 0x3;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002121 idx = idx % ch_way;
2122
2123 /*
2124 * FIXME: Shouldn't we use CHN_IDX_OFFSET() here, when ch_way == 3 ???
2125 */
2126 switch (idx) {
2127 case 0:
2128 base_ch = TAD_TGT0(reg);
2129 break;
2130 case 1:
2131 base_ch = TAD_TGT1(reg);
2132 break;
2133 case 2:
2134 base_ch = TAD_TGT2(reg);
2135 break;
2136 case 3:
2137 base_ch = TAD_TGT3(reg);
2138 break;
2139 default:
2140 sprintf(msg, "Can't discover the TAD target");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002141 return -EINVAL;
2142 }
2143 *channel_mask = 1 << base_ch;
2144
Tony Luck7d375bf2015-05-18 17:50:42 -03002145 pci_read_config_dword(pvt->pci_tad[ch_add + base_ch],
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002146 tad_ch_nilv_offset[n_tads],
2147 &tad_offset);
2148
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002149 if (pvt->is_mirrored) {
2150 *channel_mask |= 1 << ((base_ch + 2) % 4);
2151 switch(ch_way) {
2152 case 2:
2153 case 4:
2154 sck_xch = 1 << sck_way * (ch_way >> 1);
2155 break;
2156 default:
2157 sprintf(msg, "Invalid mirror set. Can't decode addr");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002158 return -EINVAL;
2159 }
2160 } else
2161 sck_xch = (1 << sck_way) * ch_way;
2162
2163 if (pvt->is_lockstep)
2164 *channel_mask |= 1 << ((base_ch + 1) % 4);
2165
2166 offset = TAD_OFFSET(tad_offset);
2167
Joe Perches956b9ba2012-04-29 17:08:39 -03002168 edac_dbg(0, "TAD#%d: address 0x%016Lx < 0x%016Lx, socket interleave %d, channel interleave %d (offset 0x%08Lx), index %d, base ch: %d, ch mask: 0x%02lx\n",
2169 n_tads,
2170 addr,
2171 limit,
2172 (u32)TAD_SOCK(reg),
2173 ch_way,
2174 offset,
2175 idx,
2176 base_ch,
2177 *channel_mask);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002178
2179 /* Calculate channel address */
2180 /* Remove the TAD offset */
2181
2182 if (offset > addr) {
2183 sprintf(msg, "Can't calculate ch addr: TAD offset 0x%08Lx is too high for addr 0x%08Lx!",
2184 offset, addr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002185 return -EINVAL;
2186 }
2187 addr -= offset;
2188 /* Store the low bits [0:6] of the addr */
2189 ch_addr = addr & 0x7f;
2190 /* Remove socket wayness and remove 6 bits */
2191 addr >>= 6;
Mauro Carvalho Chehab5b889e32011-11-07 18:26:53 -03002192 addr = div_u64(addr, sck_xch);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002193#if 0
2194 /* Divide by channel way */
2195 addr = addr / ch_way;
2196#endif
2197 /* Recover the last 6 bits */
2198 ch_addr |= addr << 6;
2199
2200 /*
2201 * Step 3) Decode rank
2202 */
2203 for (n_rir = 0; n_rir < MAX_RIR_RANGES; n_rir++) {
Tony Luck7d375bf2015-05-18 17:50:42 -03002204 pci_read_config_dword(pvt->pci_tad[ch_add + base_ch],
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002205 rir_way_limit[n_rir],
2206 &reg);
2207
2208 if (!IS_RIR_VALID(reg))
2209 continue;
2210
Aristeu Rozanskib976bcf2014-06-02 15:15:24 -03002211 limit = pvt->info.rir_limit(reg);
Jim Snow8c009102014-11-18 14:51:09 +01002212 gb = div_u64_rem(limit >> 20, 1024, &mb);
Joe Perches956b9ba2012-04-29 17:08:39 -03002213 edac_dbg(0, "RIR#%d, limit: %u.%03u GB (0x%016Lx), way: %d\n",
2214 n_rir,
Jim Snow8c009102014-11-18 14:51:09 +01002215 gb, (mb*1000)/1024,
Joe Perches956b9ba2012-04-29 17:08:39 -03002216 limit,
2217 1 << RIR_WAY(reg));
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002218 if (ch_addr <= limit)
2219 break;
2220 }
2221 if (n_rir == MAX_RIR_RANGES) {
2222 sprintf(msg, "Can't discover the memory rank for ch addr 0x%08Lx",
2223 ch_addr);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002224 return -EINVAL;
2225 }
2226 rir_way = RIR_WAY(reg);
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002227
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002228 if (pvt->is_close_pg)
2229 idx = (ch_addr >> 6);
2230 else
2231 idx = (ch_addr >> 13); /* FIXME: Datasheet says to shift by 15 */
2232 idx %= 1 << rir_way;
2233
Tony Luck7d375bf2015-05-18 17:50:42 -03002234 pci_read_config_dword(pvt->pci_tad[ch_add + base_ch],
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002235 rir_offset[n_rir][idx],
2236 &reg);
2237 *rank = RIR_RNK_TGT(reg);
2238
Joe Perches956b9ba2012-04-29 17:08:39 -03002239 edac_dbg(0, "RIR#%d: channel address 0x%08Lx < 0x%08Lx, RIR interleave %d, index %d\n",
2240 n_rir,
2241 ch_addr,
2242 limit,
2243 rir_way,
2244 idx);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002245
2246 return 0;
2247}
2248
2249/****************************************************************************
2250 Device initialization routines: put/get, init/exit
2251 ****************************************************************************/
2252
2253/*
2254 * sbridge_put_all_devices 'put' all the devices that we have
2255 * reserved via 'get'
2256 */
2257static void sbridge_put_devices(struct sbridge_dev *sbridge_dev)
2258{
2259 int i;
2260
Joe Perches956b9ba2012-04-29 17:08:39 -03002261 edac_dbg(0, "\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002262 for (i = 0; i < sbridge_dev->n_devs; i++) {
2263 struct pci_dev *pdev = sbridge_dev->pdev[i];
2264 if (!pdev)
2265 continue;
Joe Perches956b9ba2012-04-29 17:08:39 -03002266 edac_dbg(0, "Removing dev %02x:%02x.%d\n",
2267 pdev->bus->number,
2268 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002269 pci_dev_put(pdev);
2270 }
2271}
2272
2273static void sbridge_put_all_devices(void)
2274{
2275 struct sbridge_dev *sbridge_dev, *tmp;
2276
2277 list_for_each_entry_safe(sbridge_dev, tmp, &sbridge_edac_list, list) {
2278 sbridge_put_devices(sbridge_dev);
2279 free_sbridge_dev(sbridge_dev);
2280 }
2281}
2282
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002283static int sbridge_get_onedevice(struct pci_dev **prev,
2284 u8 *num_mc,
2285 const struct pci_id_table *table,
Jim Snowc1979ba2015-12-03 10:48:53 +01002286 const unsigned devno,
2287 const int multi_bus)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002288{
2289 struct sbridge_dev *sbridge_dev;
2290 const struct pci_id_descr *dev_descr = &table->descr[devno];
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002291 struct pci_dev *pdev = NULL;
2292 u8 bus = 0;
2293
Jiang Liuec5a0b32014-02-17 13:10:23 +08002294 sbridge_printk(KERN_DEBUG,
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002295 "Seeking for: PCI ID %04x:%04x\n",
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002296 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
2297
2298 pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
2299 dev_descr->dev_id, *prev);
2300
2301 if (!pdev) {
2302 if (*prev) {
2303 *prev = pdev;
2304 return 0;
2305 }
2306
2307 if (dev_descr->optional)
2308 return 0;
2309
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002310 /* if the HA wasn't found */
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002311 if (devno == 0)
2312 return -ENODEV;
2313
2314 sbridge_printk(KERN_INFO,
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002315 "Device not found: %04x:%04x\n",
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002316 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
2317
2318 /* End of list, leave */
2319 return -ENODEV;
2320 }
2321 bus = pdev->bus->number;
2322
Jim Snowc1979ba2015-12-03 10:48:53 +01002323 sbridge_dev = get_sbridge_dev(bus, multi_bus);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002324 if (!sbridge_dev) {
2325 sbridge_dev = alloc_sbridge_dev(bus, table);
2326 if (!sbridge_dev) {
2327 pci_dev_put(pdev);
2328 return -ENOMEM;
2329 }
2330 (*num_mc)++;
2331 }
2332
2333 if (sbridge_dev->pdev[devno]) {
2334 sbridge_printk(KERN_ERR,
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002335 "Duplicated device for %04x:%04x\n",
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002336 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
2337 pci_dev_put(pdev);
2338 return -ENODEV;
2339 }
2340
2341 sbridge_dev->pdev[devno] = pdev;
2342
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002343 /* Be sure that the device is enabled */
2344 if (unlikely(pci_enable_device(pdev) < 0)) {
2345 sbridge_printk(KERN_ERR,
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002346 "Couldn't enable %04x:%04x\n",
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002347 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
2348 return -ENODEV;
2349 }
2350
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002351 edac_dbg(0, "Detected %04x:%04x\n",
Joe Perches956b9ba2012-04-29 17:08:39 -03002352 PCI_VENDOR_ID_INTEL, dev_descr->dev_id);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002353
2354 /*
2355 * As stated on drivers/pci/search.c, the reference count for
2356 * @from is always decremented if it is not %NULL. So, as we need
2357 * to get all devices up to null, we need to do a get for the device
2358 */
2359 pci_dev_get(pdev);
2360
2361 *prev = pdev;
2362
2363 return 0;
2364}
2365
Aristeu Rozanski5153a0f2013-10-30 13:27:03 -03002366/*
2367 * sbridge_get_all_devices - Find and perform 'get' operation on the MCH's
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002368 * devices we want to reference for this driver.
Aristeu Rozanski5153a0f2013-10-30 13:27:03 -03002369 * @num_mc: pointer to the memory controllers count, to be incremented in case
Mauro Carvalho Chehabc41afdc2014-06-26 15:35:14 -03002370 * of success.
Aristeu Rozanski5153a0f2013-10-30 13:27:03 -03002371 * @table: model specific table
Jim Snowc1979ba2015-12-03 10:48:53 +01002372 * @allow_dups: allow for multiple devices to exist with the same device id
2373 * (as implemented, this isn't expected to work correctly in the
2374 * multi-socket case).
2375 * @multi_bus: don't assume devices on different buses belong to different
2376 * memory controllers.
Aristeu Rozanski5153a0f2013-10-30 13:27:03 -03002377 *
2378 * returns 0 in case of success or error code
2379 */
Jim Snowc1979ba2015-12-03 10:48:53 +01002380static int sbridge_get_all_devices_full(u8 *num_mc,
2381 const struct pci_id_table *table,
2382 int allow_dups,
2383 int multi_bus)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002384{
2385 int i, rc;
2386 struct pci_dev *pdev = NULL;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002387
2388 while (table && table->descr) {
2389 for (i = 0; i < table->n_devs; i++) {
Jim Snowc1979ba2015-12-03 10:48:53 +01002390 if (!allow_dups || i == 0 ||
2391 table->descr[i].dev_id !=
2392 table->descr[i-1].dev_id) {
2393 pdev = NULL;
2394 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002395 do {
2396 rc = sbridge_get_onedevice(&pdev, num_mc,
Jim Snowc1979ba2015-12-03 10:48:53 +01002397 table, i, multi_bus);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002398 if (rc < 0) {
2399 if (i == 0) {
2400 i = table->n_devs;
2401 break;
2402 }
2403 sbridge_put_all_devices();
2404 return -ENODEV;
2405 }
Jim Snowc1979ba2015-12-03 10:48:53 +01002406 } while (pdev && !allow_dups);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002407 }
2408 table++;
2409 }
2410
2411 return 0;
2412}
2413
Jim Snowc1979ba2015-12-03 10:48:53 +01002414#define sbridge_get_all_devices(num_mc, table) \
2415 sbridge_get_all_devices_full(num_mc, table, 0, 0)
Jim Snowd0cdf902015-12-03 10:48:54 +01002416#define sbridge_get_all_devices_knl(num_mc, table) \
2417 sbridge_get_all_devices_full(num_mc, table, 1, 1)
Jim Snowc1979ba2015-12-03 10:48:53 +01002418
Aristeu Rozanskiea779b52013-10-30 13:27:04 -03002419static int sbridge_mci_bind_devs(struct mem_ctl_info *mci,
2420 struct sbridge_dev *sbridge_dev)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002421{
2422 struct sbridge_pvt *pvt = mci->pvt_info;
2423 struct pci_dev *pdev;
Seth Jennings2900ea62015-08-05 13:16:01 -05002424 u8 saw_chan_mask = 0;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002425 int i;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002426
2427 for (i = 0; i < sbridge_dev->n_devs; i++) {
2428 pdev = sbridge_dev->pdev[i];
2429 if (!pdev)
2430 continue;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002431
2432 switch (pdev->device) {
2433 case PCI_DEVICE_ID_INTEL_SBRIDGE_SAD0:
2434 pvt->pci_sad0 = pdev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002435 break;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002436 case PCI_DEVICE_ID_INTEL_SBRIDGE_SAD1:
2437 pvt->pci_sad1 = pdev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002438 break;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002439 case PCI_DEVICE_ID_INTEL_SBRIDGE_BR:
2440 pvt->pci_br0 = pdev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002441 break;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002442 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_HA0:
2443 pvt->pci_ha0 = pdev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002444 break;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002445 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TA:
2446 pvt->pci_ta = pdev;
2447 break;
2448 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_RAS:
2449 pvt->pci_ras = pdev;
2450 break;
2451 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD0:
2452 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD1:
2453 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD2:
2454 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD3:
2455 {
2456 int id = pdev->device - PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TAD0;
2457 pvt->pci_tad[id] = pdev;
Seth Jennings2900ea62015-08-05 13:16:01 -05002458 saw_chan_mask |= 1 << id;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002459 }
2460 break;
2461 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_DDRIO:
2462 pvt->pci_ddrio = pdev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002463 break;
2464 default:
2465 goto error;
2466 }
2467
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002468 edac_dbg(0, "Associated PCI %02x:%02x, bus %d with dev = %p\n",
2469 pdev->vendor, pdev->device,
Joe Perches956b9ba2012-04-29 17:08:39 -03002470 sbridge_dev->bus,
Joe Perches956b9ba2012-04-29 17:08:39 -03002471 pdev);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002472 }
2473
2474 /* Check if everything were registered */
2475 if (!pvt->pci_sad0 || !pvt->pci_sad1 || !pvt->pci_ha0 ||
Luck, Tonyde4772c2013-03-28 09:59:15 -07002476 !pvt-> pci_tad || !pvt->pci_ras || !pvt->pci_ta)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002477 goto enodev;
2478
Seth Jennings2900ea62015-08-05 13:16:01 -05002479 if (saw_chan_mask != 0x0f)
2480 goto enodev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002481 return 0;
2482
2483enodev:
2484 sbridge_printk(KERN_ERR, "Some needed devices are missing\n");
2485 return -ENODEV;
2486
2487error:
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002488 sbridge_printk(KERN_ERR, "Unexpected device %02x:%02x\n",
2489 PCI_VENDOR_ID_INTEL, pdev->device);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002490 return -EINVAL;
2491}
2492
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002493static int ibridge_mci_bind_devs(struct mem_ctl_info *mci,
2494 struct sbridge_dev *sbridge_dev)
2495{
2496 struct sbridge_pvt *pvt = mci->pvt_info;
Tony Luck7d375bf2015-05-18 17:50:42 -03002497 struct pci_dev *pdev;
2498 u8 saw_chan_mask = 0;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002499 int i;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002500
2501 for (i = 0; i < sbridge_dev->n_devs; i++) {
2502 pdev = sbridge_dev->pdev[i];
2503 if (!pdev)
2504 continue;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002505
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002506 switch (pdev->device) {
2507 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0:
2508 pvt->pci_ha0 = pdev;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002509 break;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002510 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TA:
2511 pvt->pci_ta = pdev;
2512 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_RAS:
2513 pvt->pci_ras = pdev;
2514 break;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002515 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD0:
2516 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD1:
Tony Luck7d375bf2015-05-18 17:50:42 -03002517 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD2:
2518 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD3:
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002519 {
2520 int id = pdev->device - PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TAD0;
2521 pvt->pci_tad[id] = pdev;
Tony Luck7d375bf2015-05-18 17:50:42 -03002522 saw_chan_mask |= 1 << id;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002523 }
2524 break;
2525 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_2HA_DDRIO0:
2526 pvt->pci_ddrio = pdev;
2527 break;
2528 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_1HA_DDRIO0:
Tony Luck7d375bf2015-05-18 17:50:42 -03002529 pvt->pci_ddrio = pdev;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002530 break;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002531 case PCI_DEVICE_ID_INTEL_IBRIDGE_SAD:
2532 pvt->pci_sad0 = pdev;
2533 break;
2534 case PCI_DEVICE_ID_INTEL_IBRIDGE_BR0:
2535 pvt->pci_br0 = pdev;
2536 break;
2537 case PCI_DEVICE_ID_INTEL_IBRIDGE_BR1:
2538 pvt->pci_br1 = pdev;
2539 break;
2540 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1:
2541 pvt->pci_ha1 = pdev;
2542 break;
2543 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD0:
2544 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD1:
Tony Luck7d375bf2015-05-18 17:50:42 -03002545 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD2:
2546 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD3:
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002547 {
Tony Luck7d375bf2015-05-18 17:50:42 -03002548 int id = pdev->device - PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA1_TAD0 + 4;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002549 pvt->pci_tad[id] = pdev;
Tony Luck7d375bf2015-05-18 17:50:42 -03002550 saw_chan_mask |= 1 << id;
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002551 }
2552 break;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002553 default:
2554 goto error;
2555 }
2556
2557 edac_dbg(0, "Associated PCI %02x.%02d.%d with dev = %p\n",
2558 sbridge_dev->bus,
2559 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
2560 pdev);
2561 }
2562
2563 /* Check if everything were registered */
2564 if (!pvt->pci_sad0 || !pvt->pci_ha0 || !pvt->pci_br0 ||
2565 !pvt->pci_br1 || !pvt->pci_tad || !pvt->pci_ras ||
2566 !pvt->pci_ta)
2567 goto enodev;
2568
Tony Luck7d375bf2015-05-18 17:50:42 -03002569 if (saw_chan_mask != 0x0f && /* -EN */
2570 saw_chan_mask != 0x33 && /* -EP */
2571 saw_chan_mask != 0xff) /* -EX */
2572 goto enodev;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002573 return 0;
2574
2575enodev:
2576 sbridge_printk(KERN_ERR, "Some needed devices are missing\n");
2577 return -ENODEV;
2578
2579error:
2580 sbridge_printk(KERN_ERR,
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03002581 "Unexpected device %02x:%02x\n", PCI_VENDOR_ID_INTEL,
2582 pdev->device);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002583 return -EINVAL;
2584}
2585
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002586static int haswell_mci_bind_devs(struct mem_ctl_info *mci,
2587 struct sbridge_dev *sbridge_dev)
2588{
2589 struct sbridge_pvt *pvt = mci->pvt_info;
Tony Luck7d375bf2015-05-18 17:50:42 -03002590 struct pci_dev *pdev;
2591 u8 saw_chan_mask = 0;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002592 int i;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002593
2594 /* there's only one device per system; not tied to any bus */
2595 if (pvt->info.pci_vtd == NULL)
2596 /* result will be checked later */
2597 pvt->info.pci_vtd = pci_get_device(PCI_VENDOR_ID_INTEL,
2598 PCI_DEVICE_ID_INTEL_HASWELL_IMC_VTD_MISC,
2599 NULL);
2600
2601 for (i = 0; i < sbridge_dev->n_devs; i++) {
2602 pdev = sbridge_dev->pdev[i];
2603 if (!pdev)
2604 continue;
2605
2606 switch (pdev->device) {
2607 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_CBO_SAD0:
2608 pvt->pci_sad0 = pdev;
2609 break;
2610 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_CBO_SAD1:
2611 pvt->pci_sad1 = pdev;
2612 break;
2613 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0:
2614 pvt->pci_ha0 = pdev;
2615 break;
2616 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TA:
2617 pvt->pci_ta = pdev;
2618 break;
2619 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_THERMAL:
2620 pvt->pci_ras = pdev;
2621 break;
2622 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD0:
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002623 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD1:
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002624 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD2:
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002625 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD3:
Tony Luck7d375bf2015-05-18 17:50:42 -03002626 {
2627 int id = pdev->device - PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0_TAD0;
2628
2629 pvt->pci_tad[id] = pdev;
2630 saw_chan_mask |= 1 << id;
2631 }
2632 break;
2633 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD0:
2634 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD1:
2635 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD2:
2636 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD3:
2637 {
2638 int id = pdev->device - PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TAD0 + 4;
2639
2640 pvt->pci_tad[id] = pdev;
2641 saw_chan_mask |= 1 << id;
2642 }
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002643 break;
2644 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO0:
Aristeu Rozanski71793852015-06-12 09:44:52 -04002645 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO1:
2646 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO2:
2647 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_DDRIO3:
2648 if (!pvt->pci_ddrio)
2649 pvt->pci_ddrio = pdev;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002650 break;
2651 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1:
2652 pvt->pci_ha1 = pdev;
2653 break;
2654 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA1_TA:
2655 pvt->pci_ha1_ta = pdev;
2656 break;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002657 default:
2658 break;
2659 }
2660
2661 edac_dbg(0, "Associated PCI %02x.%02d.%d with dev = %p\n",
2662 sbridge_dev->bus,
2663 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
2664 pdev);
2665 }
2666
2667 /* Check if everything were registered */
2668 if (!pvt->pci_sad0 || !pvt->pci_ha0 || !pvt->pci_sad1 ||
2669 !pvt->pci_ras || !pvt->pci_ta || !pvt->info.pci_vtd)
2670 goto enodev;
2671
Tony Luck7d375bf2015-05-18 17:50:42 -03002672 if (saw_chan_mask != 0x0f && /* -EN */
2673 saw_chan_mask != 0x33 && /* -EP */
2674 saw_chan_mask != 0xff) /* -EX */
2675 goto enodev;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03002676 return 0;
2677
2678enodev:
2679 sbridge_printk(KERN_ERR, "Some needed devices are missing\n");
2680 return -ENODEV;
2681}
2682
Tony Luck1f395812014-12-02 09:27:30 -08002683static int broadwell_mci_bind_devs(struct mem_ctl_info *mci,
2684 struct sbridge_dev *sbridge_dev)
2685{
2686 struct sbridge_pvt *pvt = mci->pvt_info;
2687 struct pci_dev *pdev;
Tony Luckfa2ce642015-05-20 19:10:35 -03002688 u8 saw_chan_mask = 0;
Tony Luck1f395812014-12-02 09:27:30 -08002689 int i;
2690
2691 /* there's only one device per system; not tied to any bus */
2692 if (pvt->info.pci_vtd == NULL)
2693 /* result will be checked later */
2694 pvt->info.pci_vtd = pci_get_device(PCI_VENDOR_ID_INTEL,
2695 PCI_DEVICE_ID_INTEL_BROADWELL_IMC_VTD_MISC,
2696 NULL);
2697
2698 for (i = 0; i < sbridge_dev->n_devs; i++) {
2699 pdev = sbridge_dev->pdev[i];
2700 if (!pdev)
2701 continue;
2702
2703 switch (pdev->device) {
2704 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_CBO_SAD0:
2705 pvt->pci_sad0 = pdev;
2706 break;
2707 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_CBO_SAD1:
2708 pvt->pci_sad1 = pdev;
2709 break;
2710 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0:
2711 pvt->pci_ha0 = pdev;
2712 break;
2713 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TA:
2714 pvt->pci_ta = pdev;
2715 break;
2716 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_THERMAL:
2717 pvt->pci_ras = pdev;
2718 break;
2719 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD0:
Tony Luck1f395812014-12-02 09:27:30 -08002720 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD1:
Tony Luck1f395812014-12-02 09:27:30 -08002721 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD2:
Tony Luck1f395812014-12-02 09:27:30 -08002722 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD3:
Tony Luckfa2ce642015-05-20 19:10:35 -03002723 {
2724 int id = pdev->device - PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0_TAD0;
2725 pvt->pci_tad[id] = pdev;
2726 saw_chan_mask |= 1 << id;
2727 }
2728 break;
2729 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD0:
2730 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD1:
2731 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD2:
2732 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD3:
2733 {
2734 int id = pdev->device - PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TAD0 + 4;
2735 pvt->pci_tad[id] = pdev;
2736 saw_chan_mask |= 1 << id;
2737 }
Tony Luck1f395812014-12-02 09:27:30 -08002738 break;
2739 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_DDRIO0:
2740 pvt->pci_ddrio = pdev;
2741 break;
Tony Luckfa2ce642015-05-20 19:10:35 -03002742 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1:
2743 pvt->pci_ha1 = pdev;
2744 break;
2745 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA1_TA:
2746 pvt->pci_ha1_ta = pdev;
2747 break;
Tony Luck1f395812014-12-02 09:27:30 -08002748 default:
2749 break;
2750 }
2751
2752 edac_dbg(0, "Associated PCI %02x.%02d.%d with dev = %p\n",
2753 sbridge_dev->bus,
2754 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn),
2755 pdev);
2756 }
2757
2758 /* Check if everything were registered */
2759 if (!pvt->pci_sad0 || !pvt->pci_ha0 || !pvt->pci_sad1 ||
2760 !pvt->pci_ras || !pvt->pci_ta || !pvt->info.pci_vtd)
2761 goto enodev;
2762
Tony Luckfa2ce642015-05-20 19:10:35 -03002763 if (saw_chan_mask != 0x0f && /* -EN */
2764 saw_chan_mask != 0x33 && /* -EP */
2765 saw_chan_mask != 0xff) /* -EX */
2766 goto enodev;
Tony Luck1f395812014-12-02 09:27:30 -08002767 return 0;
2768
2769enodev:
2770 sbridge_printk(KERN_ERR, "Some needed devices are missing\n");
2771 return -ENODEV;
2772}
2773
Jim Snowd0cdf902015-12-03 10:48:54 +01002774static int knl_mci_bind_devs(struct mem_ctl_info *mci,
2775 struct sbridge_dev *sbridge_dev)
2776{
2777 struct sbridge_pvt *pvt = mci->pvt_info;
2778 struct pci_dev *pdev;
2779 int dev, func;
2780
2781 int i;
2782 int devidx;
2783
2784 for (i = 0; i < sbridge_dev->n_devs; i++) {
2785 pdev = sbridge_dev->pdev[i];
2786 if (!pdev)
2787 continue;
2788
2789 /* Extract PCI device and function. */
2790 dev = (pdev->devfn >> 3) & 0x1f;
2791 func = pdev->devfn & 0x7;
2792
2793 switch (pdev->device) {
2794 case PCI_DEVICE_ID_INTEL_KNL_IMC_MC:
2795 if (dev == 8)
2796 pvt->knl.pci_mc0 = pdev;
2797 else if (dev == 9)
2798 pvt->knl.pci_mc1 = pdev;
2799 else {
2800 sbridge_printk(KERN_ERR,
2801 "Memory controller in unexpected place! (dev %d, fn %d)\n",
2802 dev, func);
2803 continue;
2804 }
2805 break;
2806
2807 case PCI_DEVICE_ID_INTEL_KNL_IMC_SAD0:
2808 pvt->pci_sad0 = pdev;
2809 break;
2810
2811 case PCI_DEVICE_ID_INTEL_KNL_IMC_SAD1:
2812 pvt->pci_sad1 = pdev;
2813 break;
2814
2815 case PCI_DEVICE_ID_INTEL_KNL_IMC_CHA:
2816 /* There are one of these per tile, and range from
2817 * 1.14.0 to 1.18.5.
2818 */
2819 devidx = ((dev-14)*8)+func;
2820
2821 if (devidx < 0 || devidx >= KNL_MAX_CHAS) {
2822 sbridge_printk(KERN_ERR,
2823 "Caching and Home Agent in unexpected place! (dev %d, fn %d)\n",
2824 dev, func);
2825 continue;
2826 }
2827
2828 WARN_ON(pvt->knl.pci_cha[devidx] != NULL);
2829
2830 pvt->knl.pci_cha[devidx] = pdev;
2831 break;
2832
2833 case PCI_DEVICE_ID_INTEL_KNL_IMC_CHANNEL:
2834 devidx = -1;
2835
2836 /*
2837 * MC0 channels 0-2 are device 9 function 2-4,
2838 * MC1 channels 3-5 are device 8 function 2-4.
2839 */
2840
2841 if (dev == 9)
2842 devidx = func-2;
2843 else if (dev == 8)
2844 devidx = 3 + (func-2);
2845
2846 if (devidx < 0 || devidx >= KNL_MAX_CHANNELS) {
2847 sbridge_printk(KERN_ERR,
2848 "DRAM Channel Registers in unexpected place! (dev %d, fn %d)\n",
2849 dev, func);
2850 continue;
2851 }
2852
2853 WARN_ON(pvt->knl.pci_channel[devidx] != NULL);
2854 pvt->knl.pci_channel[devidx] = pdev;
2855 break;
2856
2857 case PCI_DEVICE_ID_INTEL_KNL_IMC_TOLHM:
2858 pvt->knl.pci_mc_info = pdev;
2859 break;
2860
2861 case PCI_DEVICE_ID_INTEL_KNL_IMC_TA:
2862 pvt->pci_ta = pdev;
2863 break;
2864
2865 default:
2866 sbridge_printk(KERN_ERR, "Unexpected device %d\n",
2867 pdev->device);
2868 break;
2869 }
2870 }
2871
2872 if (!pvt->knl.pci_mc0 || !pvt->knl.pci_mc1 ||
2873 !pvt->pci_sad0 || !pvt->pci_sad1 ||
2874 !pvt->pci_ta) {
2875 goto enodev;
2876 }
2877
2878 for (i = 0; i < KNL_MAX_CHANNELS; i++) {
2879 if (!pvt->knl.pci_channel[i]) {
2880 sbridge_printk(KERN_ERR, "Missing channel %d\n", i);
2881 goto enodev;
2882 }
2883 }
2884
2885 for (i = 0; i < KNL_MAX_CHAS; i++) {
2886 if (!pvt->knl.pci_cha[i]) {
2887 sbridge_printk(KERN_ERR, "Missing CHA %d\n", i);
2888 goto enodev;
2889 }
2890 }
2891
2892 return 0;
2893
2894enodev:
2895 sbridge_printk(KERN_ERR, "Some needed devices are missing\n");
2896 return -ENODEV;
2897}
2898
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002899/****************************************************************************
2900 Error check routines
2901 ****************************************************************************/
2902
2903/*
2904 * While Sandy Bridge has error count registers, SMI BIOS read values from
2905 * and resets the counters. So, they are not reliable for the OS to read
2906 * from them. So, we have no option but to just trust on whatever MCE is
2907 * telling us about the errors.
2908 */
2909static void sbridge_mce_output_error(struct mem_ctl_info *mci,
2910 const struct mce *m)
2911{
2912 struct mem_ctl_info *new_mci;
2913 struct sbridge_pvt *pvt = mci->pvt_info;
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002914 enum hw_event_mc_err_type tp_event;
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03002915 char *type, *optype, msg[256];
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002916 bool ripv = GET_BITFIELD(m->mcgstatus, 0, 0);
2917 bool overflow = GET_BITFIELD(m->status, 62, 62);
2918 bool uncorrected_error = GET_BITFIELD(m->status, 61, 61);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002919 bool recoverable;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002920 u32 core_err_cnt = GET_BITFIELD(m->status, 38, 52);
2921 u32 mscod = GET_BITFIELD(m->status, 16, 31);
2922 u32 errcode = GET_BITFIELD(m->status, 0, 15);
2923 u32 channel = GET_BITFIELD(m->status, 0, 3);
2924 u32 optypenum = GET_BITFIELD(m->status, 4, 6);
2925 long channel_mask, first_channel;
Tony Luck7d375bf2015-05-18 17:50:42 -03002926 u8 rank, socket, ha;
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002927 int rc, dimm;
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03002928 char *area_type = NULL;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002929
Tony Luckfa2ce642015-05-20 19:10:35 -03002930 if (pvt->info.type != SANDY_BRIDGE)
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03002931 recoverable = true;
2932 else
2933 recoverable = GET_BITFIELD(m->status, 56, 56);
2934
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002935 if (uncorrected_error) {
2936 if (ripv) {
2937 type = "FATAL";
2938 tp_event = HW_EVENT_ERR_FATAL;
2939 } else {
2940 type = "NON_FATAL";
2941 tp_event = HW_EVENT_ERR_UNCORRECTED;
2942 }
2943 } else {
2944 type = "CORRECTED";
2945 tp_event = HW_EVENT_ERR_CORRECTED;
2946 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002947
2948 /*
David Mackey15ed1032012-04-17 11:30:52 -07002949 * According with Table 15-9 of the Intel Architecture spec vol 3A,
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002950 * memory errors should fit in this mask:
2951 * 000f 0000 1mmm cccc (binary)
2952 * where:
2953 * f = Correction Report Filtering Bit. If 1, subsequent errors
2954 * won't be shown
2955 * mmm = error type
2956 * cccc = channel
2957 * If the mask doesn't match, report an error to the parsing logic
2958 */
2959 if (! ((errcode & 0xef80) == 0x80)) {
2960 optype = "Can't parse: it is not a mem";
2961 } else {
2962 switch (optypenum) {
2963 case 0:
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002964 optype = "generic undef request error";
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002965 break;
2966 case 1:
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002967 optype = "memory read error";
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002968 break;
2969 case 2:
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002970 optype = "memory write error";
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002971 break;
2972 case 3:
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002973 optype = "addr/cmd error";
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002974 break;
2975 case 4:
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03002976 optype = "memory scrubbing error";
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02002977 break;
2978 default:
2979 optype = "reserved";
2980 break;
2981 }
2982 }
2983
Aristeu Rozanskibe3036d2013-10-30 13:27:05 -03002984 /* Only decode errors with an valid address (ADDRV) */
2985 if (!GET_BITFIELD(m->status, 58, 58))
2986 return;
2987
Jim Snowd0cdf902015-12-03 10:48:54 +01002988 if (pvt->info.type == KNIGHTS_LANDING) {
2989 if (channel == 14) {
2990 edac_dbg(0, "%s%s err_code:%04x:%04x EDRAM bank %d\n",
2991 overflow ? " OVERFLOW" : "",
2992 (uncorrected_error && recoverable)
2993 ? " recoverable" : "",
2994 mscod, errcode,
2995 m->bank);
2996 } else {
2997 char A = *("A");
2998
2999 channel = knl_channel_remap(channel);
3000 channel_mask = 1 << channel;
3001 snprintf(msg, sizeof(msg),
3002 "%s%s err_code:%04x:%04x channel:%d (DIMM_%c)",
3003 overflow ? " OVERFLOW" : "",
3004 (uncorrected_error && recoverable)
3005 ? " recoverable" : " ",
3006 mscod, errcode, channel, A + channel);
3007 edac_mc_handle_error(tp_event, mci, core_err_cnt,
3008 m->addr >> PAGE_SHIFT, m->addr & ~PAGE_MASK, 0,
3009 channel, 0, -1,
3010 optype, msg);
3011 }
3012 return;
3013 } else {
3014 rc = get_memory_error_data(mci, m->addr, &socket, &ha,
3015 &channel_mask, &rank, &area_type, msg);
3016 }
3017
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003018 if (rc < 0)
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003019 goto err_parsing;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003020 new_mci = get_mci_for_node_id(socket);
3021 if (!new_mci) {
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003022 strcpy(msg, "Error: socket got corrupted!");
3023 goto err_parsing;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003024 }
3025 mci = new_mci;
3026 pvt = mci->pvt_info;
3027
3028 first_channel = find_first_bit(&channel_mask, NUM_CHANNELS);
3029
3030 if (rank < 4)
3031 dimm = 0;
3032 else if (rank < 8)
3033 dimm = 1;
3034 else
3035 dimm = 2;
3036
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003037
3038 /*
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03003039 * FIXME: On some memory configurations (mirror, lockstep), the
3040 * Memory Controller can't point the error to a single DIMM. The
3041 * EDAC core should be handling the channel mask, in order to point
3042 * to the group of dimm's where the error may be happening.
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003043 */
Aristeu Rozanskid7c660b2014-06-02 15:15:28 -03003044 if (!pvt->is_lockstep && !pvt->is_mirrored && !pvt->is_close_pg)
3045 channel = first_channel;
3046
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003047 snprintf(msg, sizeof(msg),
Tony Luck7d375bf2015-05-18 17:50:42 -03003048 "%s%s area:%s err_code:%04x:%04x socket:%d ha:%d channel_mask:%ld rank:%d",
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03003049 overflow ? " OVERFLOW" : "",
3050 (uncorrected_error && recoverable) ? " recoverable" : "",
3051 area_type,
3052 mscod, errcode,
Tony Luck7d375bf2015-05-18 17:50:42 -03003053 socket, ha,
Mauro Carvalho Chehabe17a2f42a2012-05-11 11:41:45 -03003054 channel_mask,
3055 rank);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003056
Joe Perches956b9ba2012-04-29 17:08:39 -03003057 edac_dbg(0, "%s\n", msg);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003058
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003059 /* FIXME: need support for channel mask */
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003060
Seth Jennings351fc4a2014-09-05 14:28:47 -05003061 if (channel == CHANNEL_UNSPECIFIED)
3062 channel = -1;
3063
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003064 /* Call the helper to output message */
Mauro Carvalho Chehabc1053832012-06-04 13:40:05 -03003065 edac_mc_handle_error(tp_event, mci, core_err_cnt,
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003066 m->addr >> PAGE_SHIFT, m->addr & ~PAGE_MASK, 0,
Tony Luck7d375bf2015-05-18 17:50:42 -03003067 4*ha+channel, dimm, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -03003068 optype, msg);
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003069 return;
3070err_parsing:
Mauro Carvalho Chehabc1053832012-06-04 13:40:05 -03003071 edac_mc_handle_error(tp_event, mci, core_err_cnt, 0, 0, 0,
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003072 -1, -1, -1,
Mauro Carvalho Chehab03f7eae2012-06-04 11:29:25 -03003073 msg, "");
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003074
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003075}
3076
3077/*
3078 * sbridge_check_error Retrieve and process errors reported by the
3079 * hardware. Called by the Core module.
3080 */
3081static void sbridge_check_error(struct mem_ctl_info *mci)
3082{
3083 struct sbridge_pvt *pvt = mci->pvt_info;
3084 int i;
3085 unsigned count = 0;
3086 struct mce *m;
3087
3088 /*
3089 * MCE first step: Copy all mce errors into a temporary buffer
3090 * We use a double buffering here, to reduce the risk of
3091 * loosing an error.
3092 */
3093 smp_rmb();
3094 count = (pvt->mce_out + MCE_LOG_LEN - pvt->mce_in)
3095 % MCE_LOG_LEN;
3096 if (!count)
3097 return;
3098
3099 m = pvt->mce_outentry;
3100 if (pvt->mce_in + count > MCE_LOG_LEN) {
3101 unsigned l = MCE_LOG_LEN - pvt->mce_in;
3102
3103 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * l);
3104 smp_wmb();
3105 pvt->mce_in = 0;
3106 count -= l;
3107 m += l;
3108 }
3109 memcpy(m, &pvt->mce_entry[pvt->mce_in], sizeof(*m) * count);
3110 smp_wmb();
3111 pvt->mce_in += count;
3112
3113 smp_rmb();
3114 if (pvt->mce_overrun) {
3115 sbridge_printk(KERN_ERR, "Lost %d memory errors\n",
3116 pvt->mce_overrun);
3117 smp_wmb();
3118 pvt->mce_overrun = 0;
3119 }
3120
3121 /*
3122 * MCE second step: parse errors and display
3123 */
3124 for (i = 0; i < count; i++)
3125 sbridge_mce_output_error(mci, &pvt->mce_outentry[i]);
3126}
3127
3128/*
3129 * sbridge_mce_check_error Replicates mcelog routine to get errors
3130 * This routine simply queues mcelog errors, and
3131 * return. The error itself should be handled later
3132 * by sbridge_check_error.
3133 * WARNING: As this routine should be called at NMI time, extra care should
3134 * be taken to avoid deadlocks, and to be as fast as possible.
3135 */
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003136static int sbridge_mce_check_error(struct notifier_block *nb, unsigned long val,
3137 void *data)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003138{
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003139 struct mce *mce = (struct mce *)data;
3140 struct mem_ctl_info *mci;
3141 struct sbridge_pvt *pvt;
Aristeu Rozanskicf40f802014-03-11 15:45:41 -04003142 char *type;
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003143
Chen, Gongfd521032013-12-06 01:17:09 -05003144 if (get_edac_report_status() == EDAC_REPORTING_DISABLED)
3145 return NOTIFY_DONE;
3146
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003147 mci = get_mci_for_node_id(mce->socketid);
3148 if (!mci)
3149 return NOTIFY_BAD;
3150 pvt = mci->pvt_info;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003151
3152 /*
3153 * Just let mcelog handle it if the error is
3154 * outside the memory controller. A memory error
3155 * is indicated by bit 7 = 1 and bits = 8-11,13-15 = 0.
3156 * bit 12 has an special meaning.
3157 */
3158 if ((mce->status & 0xefff) >> 7 != 1)
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003159 return NOTIFY_DONE;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003160
Aristeu Rozanskicf40f802014-03-11 15:45:41 -04003161 if (mce->mcgstatus & MCG_STATUS_MCIP)
3162 type = "Exception";
3163 else
3164 type = "Event";
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003165
Aristeu Rozanski49856dc2014-03-11 15:45:42 -04003166 sbridge_mc_printk(mci, KERN_DEBUG, "HANDLING MCE MEMORY ERROR\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003167
Aristeu Rozanski49856dc2014-03-11 15:45:42 -04003168 sbridge_mc_printk(mci, KERN_DEBUG, "CPU %d: Machine Check %s: %Lx "
3169 "Bank %d: %016Lx\n", mce->extcpu, type,
3170 mce->mcgstatus, mce->bank, mce->status);
3171 sbridge_mc_printk(mci, KERN_DEBUG, "TSC %llx ", mce->tsc);
3172 sbridge_mc_printk(mci, KERN_DEBUG, "ADDR %llx ", mce->addr);
3173 sbridge_mc_printk(mci, KERN_DEBUG, "MISC %llx ", mce->misc);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003174
Aristeu Rozanski49856dc2014-03-11 15:45:42 -04003175 sbridge_mc_printk(mci, KERN_DEBUG, "PROCESSOR %u:%x TIME %llu SOCKET "
3176 "%u APIC %x\n", mce->cpuvendor, mce->cpuid,
3177 mce->time, mce->socketid, mce->apicid);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003178
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003179 smp_rmb();
3180 if ((pvt->mce_out + 1) % MCE_LOG_LEN == pvt->mce_in) {
3181 smp_wmb();
3182 pvt->mce_overrun++;
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003183 return NOTIFY_DONE;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003184 }
3185
3186 /* Copy memory error at the ringbuffer */
3187 memcpy(&pvt->mce_entry[pvt->mce_out], mce, sizeof(*mce));
3188 smp_wmb();
3189 pvt->mce_out = (pvt->mce_out + 1) % MCE_LOG_LEN;
3190
3191 /* Handle fatal errors immediately */
3192 if (mce->mcgstatus & 1)
3193 sbridge_check_error(mci);
3194
3195 /* Advice mcelog that the error were handled */
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003196 return NOTIFY_STOP;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003197}
3198
Mauro Carvalho Chehab3d78c9a2011-10-20 19:33:46 -02003199static struct notifier_block sbridge_mce_dec = {
3200 .notifier_call = sbridge_mce_check_error,
3201};
3202
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003203/****************************************************************************
3204 EDAC register/unregister logic
3205 ****************************************************************************/
3206
3207static void sbridge_unregister_mci(struct sbridge_dev *sbridge_dev)
3208{
3209 struct mem_ctl_info *mci = sbridge_dev->mci;
3210 struct sbridge_pvt *pvt;
3211
3212 if (unlikely(!mci || !mci->pvt_info)) {
Joe Perches956b9ba2012-04-29 17:08:39 -03003213 edac_dbg(0, "MC: dev = %p\n", &sbridge_dev->pdev[0]->dev);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003214
3215 sbridge_printk(KERN_ERR, "Couldn't find mci handler\n");
3216 return;
3217 }
3218
3219 pvt = mci->pvt_info;
3220
Joe Perches956b9ba2012-04-29 17:08:39 -03003221 edac_dbg(0, "MC: mci = %p, dev = %p\n",
3222 mci, &sbridge_dev->pdev[0]->dev);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003223
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003224 /* Remove MC sysfs nodes */
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -03003225 edac_mc_del_mc(mci->pdev);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003226
Joe Perches956b9ba2012-04-29 17:08:39 -03003227 edac_dbg(1, "%s: free mci struct\n", mci->ctl_name);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003228 kfree(mci->ctl_name);
3229 edac_mc_free(mci);
3230 sbridge_dev->mci = NULL;
3231}
3232
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003233static int sbridge_register_mci(struct sbridge_dev *sbridge_dev, enum type type)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003234{
3235 struct mem_ctl_info *mci;
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003236 struct edac_mc_layer layers[2];
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003237 struct sbridge_pvt *pvt;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003238 struct pci_dev *pdev = sbridge_dev->pdev[0];
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003239 int rc;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003240
3241 /* Check the number of active and not disabled channels */
Aristeu Rozanskidbc954d2014-06-02 15:15:25 -03003242 rc = check_if_ecc_is_active(sbridge_dev->bus, type);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003243 if (unlikely(rc < 0))
3244 return rc;
3245
3246 /* allocate a new MC control structure */
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003247 layers[0].type = EDAC_MC_LAYER_CHANNEL;
Jim Snowd0cdf902015-12-03 10:48:54 +01003248 layers[0].size = type == KNIGHTS_LANDING ?
3249 KNL_MAX_CHANNELS : NUM_CHANNELS;
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003250 layers[0].is_virt_csrow = false;
3251 layers[1].type = EDAC_MC_LAYER_SLOT;
Jim Snowd0cdf902015-12-03 10:48:54 +01003252 layers[1].size = type == KNIGHTS_LANDING ? 1 : MAX_DIMMS;
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003253 layers[1].is_virt_csrow = true;
Mauro Carvalho Chehabca0907b2012-05-02 14:37:00 -03003254 mci = edac_mc_alloc(sbridge_dev->mc, ARRAY_SIZE(layers), layers,
Mauro Carvalho Chehabc36e3e72012-04-16 15:12:22 -03003255 sizeof(*pvt));
3256
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003257 if (unlikely(!mci))
3258 return -ENOMEM;
3259
Joe Perches956b9ba2012-04-29 17:08:39 -03003260 edac_dbg(0, "MC: mci = %p, dev = %p\n",
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003261 mci, &pdev->dev);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003262
3263 pvt = mci->pvt_info;
3264 memset(pvt, 0, sizeof(*pvt));
3265
3266 /* Associate sbridge_dev and mci for future usage */
3267 pvt->sbridge_dev = sbridge_dev;
3268 sbridge_dev->mci = mci;
3269
Jim Snowd0cdf902015-12-03 10:48:54 +01003270 mci->mtype_cap = type == KNIGHTS_LANDING ?
3271 MEM_FLAG_DDR4 : MEM_FLAG_DDR3;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003272 mci->edac_ctl_cap = EDAC_FLAG_NONE;
3273 mci->edac_cap = EDAC_FLAG_NONE;
3274 mci->mod_name = "sbridge_edac.c";
3275 mci->mod_ver = SBRIDGE_REVISION;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003276 mci->dev_name = pci_name(pdev);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003277 mci->ctl_page_to_phys = NULL;
3278
3279 /* Set the function pointer to an actual operation function */
3280 mci->edac_check = sbridge_check_error;
3281
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003282 pvt->info.type = type;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003283 switch (type) {
3284 case IVY_BRIDGE:
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003285 pvt->info.rankcfgr = IB_RANK_CFG_A;
3286 pvt->info.get_tolm = ibridge_get_tolm;
3287 pvt->info.get_tohm = ibridge_get_tohm;
3288 pvt->info.dram_rule = ibridge_dram_rule;
Aristeu Rozanski9e375442014-06-02 15:15:22 -03003289 pvt->info.get_memory_type = get_memory_type;
Aristeu Rozanskif14d6892014-06-02 15:15:23 -03003290 pvt->info.get_node_id = get_node_id;
Aristeu Rozanskib976bcf2014-06-02 15:15:24 -03003291 pvt->info.rir_limit = rir_limit;
Jim Snowc59f9c02015-12-03 10:48:52 +01003292 pvt->info.sad_limit = sad_limit;
3293 pvt->info.interleave_mode = interleave_mode;
3294 pvt->info.show_interleave_mode = show_interleave_mode;
3295 pvt->info.dram_attr = dram_attr;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003296 pvt->info.max_sad = ARRAY_SIZE(ibridge_dram_rule);
3297 pvt->info.interleave_list = ibridge_interleave_list;
3298 pvt->info.max_interleave = ARRAY_SIZE(ibridge_interleave_list);
3299 pvt->info.interleave_pkg = ibridge_interleave_pkg;
Aristeu Rozanski12f07212015-06-12 15:08:17 -04003300 pvt->info.get_width = ibridge_get_width;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003301 mci->ctl_name = kasprintf(GFP_KERNEL, "Ivy Bridge Socket#%d", mci->mc_idx);
3302
3303 /* Store pci devices at mci for faster access */
3304 rc = ibridge_mci_bind_devs(mci, sbridge_dev);
3305 if (unlikely(rc < 0))
3306 goto fail0;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003307 break;
3308 case SANDY_BRIDGE:
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003309 pvt->info.rankcfgr = SB_RANK_CFG_A;
3310 pvt->info.get_tolm = sbridge_get_tolm;
3311 pvt->info.get_tohm = sbridge_get_tohm;
3312 pvt->info.dram_rule = sbridge_dram_rule;
Aristeu Rozanski9e375442014-06-02 15:15:22 -03003313 pvt->info.get_memory_type = get_memory_type;
Aristeu Rozanskif14d6892014-06-02 15:15:23 -03003314 pvt->info.get_node_id = get_node_id;
Aristeu Rozanskib976bcf2014-06-02 15:15:24 -03003315 pvt->info.rir_limit = rir_limit;
Jim Snowc59f9c02015-12-03 10:48:52 +01003316 pvt->info.sad_limit = sad_limit;
3317 pvt->info.interleave_mode = interleave_mode;
3318 pvt->info.show_interleave_mode = show_interleave_mode;
3319 pvt->info.dram_attr = dram_attr;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003320 pvt->info.max_sad = ARRAY_SIZE(sbridge_dram_rule);
3321 pvt->info.interleave_list = sbridge_interleave_list;
3322 pvt->info.max_interleave = ARRAY_SIZE(sbridge_interleave_list);
3323 pvt->info.interleave_pkg = sbridge_interleave_pkg;
Aristeu Rozanski12f07212015-06-12 15:08:17 -04003324 pvt->info.get_width = sbridge_get_width;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003325 mci->ctl_name = kasprintf(GFP_KERNEL, "Sandy Bridge Socket#%d", mci->mc_idx);
3326
3327 /* Store pci devices at mci for faster access */
3328 rc = sbridge_mci_bind_devs(mci, sbridge_dev);
3329 if (unlikely(rc < 0))
3330 goto fail0;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003331 break;
3332 case HASWELL:
3333 /* rankcfgr isn't used */
3334 pvt->info.get_tolm = haswell_get_tolm;
3335 pvt->info.get_tohm = haswell_get_tohm;
3336 pvt->info.dram_rule = ibridge_dram_rule;
3337 pvt->info.get_memory_type = haswell_get_memory_type;
3338 pvt->info.get_node_id = haswell_get_node_id;
3339 pvt->info.rir_limit = haswell_rir_limit;
Jim Snowc59f9c02015-12-03 10:48:52 +01003340 pvt->info.sad_limit = sad_limit;
3341 pvt->info.interleave_mode = interleave_mode;
3342 pvt->info.show_interleave_mode = show_interleave_mode;
3343 pvt->info.dram_attr = dram_attr;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003344 pvt->info.max_sad = ARRAY_SIZE(ibridge_dram_rule);
3345 pvt->info.interleave_list = ibridge_interleave_list;
3346 pvt->info.max_interleave = ARRAY_SIZE(ibridge_interleave_list);
3347 pvt->info.interleave_pkg = ibridge_interleave_pkg;
Aristeu Rozanski12f07212015-06-12 15:08:17 -04003348 pvt->info.get_width = ibridge_get_width;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003349 mci->ctl_name = kasprintf(GFP_KERNEL, "Haswell Socket#%d", mci->mc_idx);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003350
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003351 /* Store pci devices at mci for faster access */
3352 rc = haswell_mci_bind_devs(mci, sbridge_dev);
3353 if (unlikely(rc < 0))
3354 goto fail0;
3355 break;
Tony Luck1f395812014-12-02 09:27:30 -08003356 case BROADWELL:
3357 /* rankcfgr isn't used */
3358 pvt->info.get_tolm = haswell_get_tolm;
3359 pvt->info.get_tohm = haswell_get_tohm;
3360 pvt->info.dram_rule = ibridge_dram_rule;
3361 pvt->info.get_memory_type = haswell_get_memory_type;
3362 pvt->info.get_node_id = haswell_get_node_id;
3363 pvt->info.rir_limit = haswell_rir_limit;
Jim Snowc59f9c02015-12-03 10:48:52 +01003364 pvt->info.sad_limit = sad_limit;
3365 pvt->info.interleave_mode = interleave_mode;
3366 pvt->info.show_interleave_mode = show_interleave_mode;
3367 pvt->info.dram_attr = dram_attr;
Tony Luck1f395812014-12-02 09:27:30 -08003368 pvt->info.max_sad = ARRAY_SIZE(ibridge_dram_rule);
3369 pvt->info.interleave_list = ibridge_interleave_list;
3370 pvt->info.max_interleave = ARRAY_SIZE(ibridge_interleave_list);
3371 pvt->info.interleave_pkg = ibridge_interleave_pkg;
Aristeu Rozanski12f07212015-06-12 15:08:17 -04003372 pvt->info.get_width = broadwell_get_width;
Tony Luck1f395812014-12-02 09:27:30 -08003373 mci->ctl_name = kasprintf(GFP_KERNEL, "Broadwell Socket#%d", mci->mc_idx);
3374
3375 /* Store pci devices at mci for faster access */
3376 rc = broadwell_mci_bind_devs(mci, sbridge_dev);
3377 if (unlikely(rc < 0))
3378 goto fail0;
3379 break;
Jim Snowd0cdf902015-12-03 10:48:54 +01003380 case KNIGHTS_LANDING:
3381 /* pvt->info.rankcfgr == ??? */
3382 pvt->info.get_tolm = knl_get_tolm;
3383 pvt->info.get_tohm = knl_get_tohm;
3384 pvt->info.dram_rule = knl_dram_rule;
3385 pvt->info.get_memory_type = knl_get_memory_type;
3386 pvt->info.get_node_id = knl_get_node_id;
3387 pvt->info.rir_limit = NULL;
3388 pvt->info.sad_limit = knl_sad_limit;
3389 pvt->info.interleave_mode = knl_interleave_mode;
3390 pvt->info.show_interleave_mode = knl_show_interleave_mode;
3391 pvt->info.dram_attr = dram_attr_knl;
3392 pvt->info.max_sad = ARRAY_SIZE(knl_dram_rule);
3393 pvt->info.interleave_list = knl_interleave_list;
3394 pvt->info.max_interleave = ARRAY_SIZE(knl_interleave_list);
3395 pvt->info.interleave_pkg = ibridge_interleave_pkg;
3396 pvt->info.get_width = ibridge_get_width;
3397 mci->ctl_name = kasprintf(GFP_KERNEL,
3398 "Knights Landing Socket#%d", mci->mc_idx);
3399
3400 rc = knl_mci_bind_devs(mci, sbridge_dev);
3401 if (unlikely(rc < 0))
3402 goto fail0;
3403 break;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003404 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003405
3406 /* Get dimm basic config and the memory layout */
3407 get_dimm_config(mci);
3408 get_memory_layout(mci);
3409
3410 /* record ptr to the generic device */
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003411 mci->pdev = &pdev->dev;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003412
3413 /* add this new MC control structure to EDAC's list of MCs */
3414 if (unlikely(edac_mc_add_mc(mci))) {
Joe Perches956b9ba2012-04-29 17:08:39 -03003415 edac_dbg(0, "MC: failed edac_mc_add_mc()\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003416 rc = -EINVAL;
3417 goto fail0;
3418 }
3419
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003420 return 0;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003421
3422fail0:
3423 kfree(mci->ctl_name);
3424 edac_mc_free(mci);
3425 sbridge_dev->mci = NULL;
3426 return rc;
3427}
3428
3429/*
3430 * sbridge_probe Probe for ONE instance of device to see if it is
3431 * present.
3432 * return:
3433 * 0 for FOUND a device
3434 * < 0 for error code
3435 */
3436
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08003437static int sbridge_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003438{
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003439 int rc = -ENODEV;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003440 u8 mc, num_mc = 0;
3441 struct sbridge_dev *sbridge_dev;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003442 enum type type = SANDY_BRIDGE;
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003443
3444 /* get the pci devices we want to reserve for our use */
3445 mutex_lock(&sbridge_edac_lock);
3446
3447 /*
3448 * All memory controllers are allocated at the first pass.
3449 */
3450 if (unlikely(probed >= 1)) {
3451 mutex_unlock(&sbridge_edac_lock);
3452 return -ENODEV;
3453 }
3454 probed++;
3455
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003456 switch (pdev->device) {
3457 case PCI_DEVICE_ID_INTEL_IBRIDGE_IMC_HA0_TA:
Jim Snowd0cdf902015-12-03 10:48:54 +01003458 rc = sbridge_get_all_devices(&num_mc,
3459 pci_dev_descr_ibridge_table);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003460 type = IVY_BRIDGE;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003461 break;
Borislav Petkov11249e72015-02-05 12:39:36 +01003462 case PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_HA0:
Jim Snowd0cdf902015-12-03 10:48:54 +01003463 rc = sbridge_get_all_devices(&num_mc,
3464 pci_dev_descr_sbridge_table);
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003465 type = SANDY_BRIDGE;
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003466 break;
3467 case PCI_DEVICE_ID_INTEL_HASWELL_IMC_HA0:
Jim Snowd0cdf902015-12-03 10:48:54 +01003468 rc = sbridge_get_all_devices(&num_mc,
3469 pci_dev_descr_haswell_table);
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003470 type = HASWELL;
3471 break;
Tony Luck1f395812014-12-02 09:27:30 -08003472 case PCI_DEVICE_ID_INTEL_BROADWELL_IMC_HA0:
Jim Snowd0cdf902015-12-03 10:48:54 +01003473 rc = sbridge_get_all_devices(&num_mc,
3474 pci_dev_descr_broadwell_table);
Tony Luck1f395812014-12-02 09:27:30 -08003475 type = BROADWELL;
Jim Snowd0cdf902015-12-03 10:48:54 +01003476 break;
3477 case PCI_DEVICE_ID_INTEL_KNL_IMC_SAD0:
3478 rc = sbridge_get_all_devices_knl(&num_mc,
3479 pci_dev_descr_knl_table);
3480 type = KNIGHTS_LANDING;
Tony Luck1f395812014-12-02 09:27:30 -08003481 break;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003482 }
Borislav Petkov11249e72015-02-05 12:39:36 +01003483 if (unlikely(rc < 0)) {
3484 edac_dbg(0, "couldn't get all devices for 0x%x\n", pdev->device);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003485 goto fail0;
Borislav Petkov11249e72015-02-05 12:39:36 +01003486 }
3487
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003488 mc = 0;
3489
3490 list_for_each_entry(sbridge_dev, &sbridge_edac_list, list) {
Joe Perches956b9ba2012-04-29 17:08:39 -03003491 edac_dbg(0, "Registering MC#%d (%d of %d)\n",
3492 mc, mc + 1, num_mc);
Aristeu Rozanski50d1bb92014-06-20 10:27:54 -03003493
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003494 sbridge_dev->mc = mc++;
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003495 rc = sbridge_register_mci(sbridge_dev, type);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003496 if (unlikely(rc < 0))
3497 goto fail1;
3498 }
3499
Borislav Petkov11249e72015-02-05 12:39:36 +01003500 sbridge_printk(KERN_INFO, "%s\n", SBRIDGE_REVISION);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003501
3502 mutex_unlock(&sbridge_edac_lock);
3503 return 0;
3504
3505fail1:
3506 list_for_each_entry(sbridge_dev, &sbridge_edac_list, list)
3507 sbridge_unregister_mci(sbridge_dev);
3508
3509 sbridge_put_all_devices();
3510fail0:
3511 mutex_unlock(&sbridge_edac_lock);
3512 return rc;
3513}
3514
3515/*
3516 * sbridge_remove destructor for one instance of device
3517 *
3518 */
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08003519static void sbridge_remove(struct pci_dev *pdev)
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003520{
3521 struct sbridge_dev *sbridge_dev;
3522
Joe Perches956b9ba2012-04-29 17:08:39 -03003523 edac_dbg(0, "\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003524
3525 /*
3526 * we have a trouble here: pdev value for removal will be wrong, since
3527 * it will point to the X58 register used to detect that the machine
3528 * is a Nehalem or upper design. However, due to the way several PCI
3529 * devices are grouped together to provide MC functionality, we need
3530 * to use a different method for releasing the devices
3531 */
3532
3533 mutex_lock(&sbridge_edac_lock);
3534
3535 if (unlikely(!probed)) {
3536 mutex_unlock(&sbridge_edac_lock);
3537 return;
3538 }
3539
3540 list_for_each_entry(sbridge_dev, &sbridge_edac_list, list)
3541 sbridge_unregister_mci(sbridge_dev);
3542
3543 /* Release PCI resources */
3544 sbridge_put_all_devices();
3545
3546 probed--;
3547
3548 mutex_unlock(&sbridge_edac_lock);
3549}
3550
3551MODULE_DEVICE_TABLE(pci, sbridge_pci_tbl);
3552
3553/*
3554 * sbridge_driver pci_driver structure for this module
3555 *
3556 */
3557static struct pci_driver sbridge_driver = {
3558 .name = "sbridge_edac",
3559 .probe = sbridge_probe,
Greg Kroah-Hartman9b3c6e82012-12-21 13:23:51 -08003560 .remove = sbridge_remove,
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003561 .id_table = sbridge_pci_tbl,
3562};
3563
3564/*
3565 * sbridge_init Module entry function
3566 * Try to initialize this module for its devices
3567 */
3568static int __init sbridge_init(void)
3569{
3570 int pci_rc;
3571
Joe Perches956b9ba2012-04-29 17:08:39 -03003572 edac_dbg(2, "\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003573
3574 /* Ensure that the OPSTATE is set correctly for POLL or NMI */
3575 opstate_init();
3576
3577 pci_rc = pci_register_driver(&sbridge_driver);
Chen Gonge35fca42012-05-08 20:40:12 -03003578 if (pci_rc >= 0) {
3579 mce_register_decode_chain(&sbridge_mce_dec);
Chen, Gongfd521032013-12-06 01:17:09 -05003580 if (get_edac_report_status() == EDAC_REPORTING_DISABLED)
3581 sbridge_printk(KERN_WARNING, "Loading driver, error reporting disabled.\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003582 return 0;
Chen Gonge35fca42012-05-08 20:40:12 -03003583 }
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003584
3585 sbridge_printk(KERN_ERR, "Failed to register device with error %d.\n",
3586 pci_rc);
3587
3588 return pci_rc;
3589}
3590
3591/*
3592 * sbridge_exit() Module exit function
3593 * Unregister the driver
3594 */
3595static void __exit sbridge_exit(void)
3596{
Joe Perches956b9ba2012-04-29 17:08:39 -03003597 edac_dbg(2, "\n");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003598 pci_unregister_driver(&sbridge_driver);
Chen Gonge35fca42012-05-08 20:40:12 -03003599 mce_unregister_decode_chain(&sbridge_mce_dec);
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003600}
3601
3602module_init(sbridge_init);
3603module_exit(sbridge_exit);
3604
3605module_param(edac_op_state, int, 0444);
3606MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");
3607
3608MODULE_LICENSE("GPL");
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02003609MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003610MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
Aristeu Rozanski4d715a82013-10-30 13:27:06 -03003611MODULE_DESCRIPTION("MC Driver for Intel Sandy Bridge and Ivy Bridge memory controllers - "
Mauro Carvalho Chehabeebf11a2011-10-20 19:18:01 -02003612 SBRIDGE_REVISION);