blob: 83345bfac246f13f25a9b04489af479e60efb3e5 [file] [log] [blame]
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Driver for Intel(R) 10nm server memory controller.
4 * Copyright (c) 2019, Intel Corporation.
5 *
6 */
7
8#include <linux/kernel.h>
Qiuxu Zhuo83ff51c2020-11-17 20:49:51 +08009#include <linux/io.h>
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -080010#include <asm/cpu_device_id.h>
11#include <asm/intel-family.h>
12#include <asm/mce.h>
13#include "edac_module.h"
14#include "skx_common.h"
15
Qiuxu Zhuoc9450882021-06-11 10:01:20 -070016#define I10NM_REVISION "v0.0.5"
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -080017#define EDAC_MOD_STR "i10nm_edac"
18
19/* Debug macros */
20#define i10nm_printk(level, fmt, arg...) \
21 edac_printk(level, "i10nm", fmt, ##arg)
22
Qiuxu Zhuo83ff51c2020-11-17 20:49:51 +080023#define I10NM_GET_SCK_BAR(d, reg) \
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -080024 pci_read_config_dword((d)->uracu, 0xd0, &(reg))
25#define I10NM_GET_IMC_BAR(d, i, reg) \
26 pci_read_config_dword((d)->uracu, 0xd8 + (i) * 4, &(reg))
Qiuxu Zhuo4bd4d322021-06-11 10:01:19 -070027#define I10NM_GET_SAD(d, offset, i, reg)\
28 pci_read_config_dword((d)->sad_all, (offset) + (i) * 8, &(reg))
Qiuxu Zhuoc9450882021-06-11 10:01:20 -070029#define I10NM_GET_HBM_IMC_BAR(d, reg) \
30 pci_read_config_dword((d)->uracu, 0xd4, &(reg))
31#define I10NM_GET_CAPID3_CFG(d, reg) \
32 pci_read_config_dword((d)->pcu_cr3, 0x90, &(reg))
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -080033#define I10NM_GET_DIMMMTR(m, i, j) \
Qiuxu Zhuoc9450882021-06-11 10:01:20 -070034 readl((m)->mbase + ((m)->hbm_mc ? 0x80c : 0x2080c) + \
35 (i) * (m)->chan_mmio_sz + (j) * 4)
Qiuxu Zhuo2294a722021-08-18 10:57:00 -070036#define I10NM_GET_MCDDRTCFG(m, i) \
Qiuxu Zhuoc9450882021-06-11 10:01:20 -070037 readl((m)->mbase + ((m)->hbm_mc ? 0x970 : 0x20970) + \
Qiuxu Zhuo2294a722021-08-18 10:57:00 -070038 (i) * (m)->chan_mmio_sz)
Qiuxu Zhuo83ff51c2020-11-17 20:49:51 +080039#define I10NM_GET_MCMTR(m, i) \
Qiuxu Zhuoc9450882021-06-11 10:01:20 -070040 readl((m)->mbase + ((m)->hbm_mc ? 0xef8 : 0x20ef8) + \
41 (i) * (m)->chan_mmio_sz)
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +080042#define I10NM_GET_AMAP(m, i) \
Qiuxu Zhuoc9450882021-06-11 10:01:20 -070043 readl((m)->mbase + ((m)->hbm_mc ? 0x814 : 0x20814) + \
44 (i) * (m)->chan_mmio_sz)
Youquan Songcf4e6d52021-08-18 10:57:01 -070045#define I10NM_GET_REG32(m, i, offset) \
46 readl((m)->mbase + (i) * (m)->chan_mmio_sz + (offset))
47#define I10NM_GET_REG64(m, i, offset) \
48 readq((m)->mbase + (i) * (m)->chan_mmio_sz + (offset))
49#define I10NM_SET_REG32(m, i, offset, v) \
50 writel(v, (m)->mbase + (i) * (m)->chan_mmio_sz + (offset))
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -080051
52#define I10NM_GET_SCK_MMIO_BASE(reg) (GET_BITFIELD(reg, 0, 28) << 23)
53#define I10NM_GET_IMC_MMIO_OFFSET(reg) (GET_BITFIELD(reg, 0, 10) << 12)
54#define I10NM_GET_IMC_MMIO_SIZE(reg) ((GET_BITFIELD(reg, 13, 23) - \
55 GET_BITFIELD(reg, 0, 10) + 1) << 12)
Qiuxu Zhuoc9450882021-06-11 10:01:20 -070056#define I10NM_GET_HBM_IMC_MMIO_OFFSET(reg) \
57 ((GET_BITFIELD(reg, 0, 10) << 12) + 0x140000)
58
59#define I10NM_HBM_IMC_MMIO_SIZE 0x9000
60#define I10NM_IS_HBM_PRESENT(reg) GET_BITFIELD(reg, 27, 30)
61#define I10NM_IS_HBM_IMC(reg) GET_BITFIELD(reg, 29, 29)
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -080062
Qiuxu Zhuo4bd4d322021-06-11 10:01:19 -070063#define I10NM_MAX_SAD 16
64#define I10NM_SAD_ENABLE(reg) GET_BITFIELD(reg, 0, 0)
65#define I10NM_SAD_NM_CACHEABLE(reg) GET_BITFIELD(reg, 5, 5)
66
Youquan Songcf4e6d52021-08-18 10:57:01 -070067#define RETRY_RD_ERR_LOG_UC BIT(1)
68#define RETRY_RD_ERR_LOG_NOOVER BIT(14)
69#define RETRY_RD_ERR_LOG_EN BIT(15)
70#define RETRY_RD_ERR_LOG_NOOVER_UC (BIT(14) | BIT(1))
71#define RETRY_RD_ERR_LOG_OVER_UC_V (BIT(2) | BIT(1) | BIT(0))
72
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -080073static struct list_head *i10nm_edac_list;
74
Youquan Songcf4e6d52021-08-18 10:57:01 -070075static struct res_config *res_cfg;
76static int retry_rd_err_log;
77
78static u32 offsets_scrub_icx[] = {0x22c60, 0x22c54, 0x22c5c, 0x22c58, 0x22c28, 0x20ed8};
79static u32 offsets_scrub_spr[] = {0x22c60, 0x22c54, 0x22f08, 0x22c58, 0x22c28, 0x20ed8};
80static u32 offsets_demand_icx[] = {0x22e54, 0x22e60, 0x22e64, 0x22e58, 0x22e5c, 0x20ee0};
81static u32 offsets_demand_spr[] = {0x22e54, 0x22e60, 0x22f10, 0x22e58, 0x22e5c, 0x20ee0};
82
83static void __enable_retry_rd_err_log(struct skx_imc *imc, int chan, bool enable)
84{
85 u32 s, d;
86
87 if (!imc->mbase)
88 return;
89
90 s = I10NM_GET_REG32(imc, chan, res_cfg->offsets_scrub[0]);
91 d = I10NM_GET_REG32(imc, chan, res_cfg->offsets_demand[0]);
92
93 if (enable) {
94 /* Save default configurations */
95 imc->chan[chan].retry_rd_err_log_s = s;
96 imc->chan[chan].retry_rd_err_log_d = d;
97
98 s &= ~RETRY_RD_ERR_LOG_NOOVER_UC;
99 s |= RETRY_RD_ERR_LOG_EN;
100 d &= ~RETRY_RD_ERR_LOG_NOOVER_UC;
101 d |= RETRY_RD_ERR_LOG_EN;
102 } else {
103 /* Restore default configurations */
104 if (imc->chan[chan].retry_rd_err_log_s & RETRY_RD_ERR_LOG_UC)
105 s |= RETRY_RD_ERR_LOG_UC;
106 if (imc->chan[chan].retry_rd_err_log_s & RETRY_RD_ERR_LOG_NOOVER)
107 s |= RETRY_RD_ERR_LOG_NOOVER;
108 if (!(imc->chan[chan].retry_rd_err_log_s & RETRY_RD_ERR_LOG_EN))
109 s &= ~RETRY_RD_ERR_LOG_EN;
110 if (imc->chan[chan].retry_rd_err_log_d & RETRY_RD_ERR_LOG_UC)
111 d |= RETRY_RD_ERR_LOG_UC;
112 if (imc->chan[chan].retry_rd_err_log_d & RETRY_RD_ERR_LOG_NOOVER)
113 d |= RETRY_RD_ERR_LOG_NOOVER;
114 if (!(imc->chan[chan].retry_rd_err_log_d & RETRY_RD_ERR_LOG_EN))
115 d &= ~RETRY_RD_ERR_LOG_EN;
116 }
117
118 I10NM_SET_REG32(imc, chan, res_cfg->offsets_scrub[0], s);
119 I10NM_SET_REG32(imc, chan, res_cfg->offsets_demand[0], d);
120}
121
122static void enable_retry_rd_err_log(bool enable)
123{
124 struct skx_dev *d;
125 int i, j;
126
127 edac_dbg(2, "\n");
128
129 list_for_each_entry(d, i10nm_edac_list, list)
130 for (i = 0; i < I10NM_NUM_IMC; i++)
131 for (j = 0; j < I10NM_NUM_CHANNELS; j++)
132 __enable_retry_rd_err_log(&d->imc[i], j, enable);
133}
134
135static void show_retry_rd_err_log(struct decoded_addr *res, char *msg,
136 int len, bool scrub_err)
137{
138 struct skx_imc *imc = &res->dev->imc[res->imc];
139 u32 log0, log1, log2, log3, log4;
140 u32 corr0, corr1, corr2, corr3;
141 u64 log2a, log5;
142 u32 *offsets;
143 int n;
144
145 if (!imc->mbase)
146 return;
147
148 offsets = scrub_err ? res_cfg->offsets_scrub : res_cfg->offsets_demand;
149
150 log0 = I10NM_GET_REG32(imc, res->channel, offsets[0]);
151 log1 = I10NM_GET_REG32(imc, res->channel, offsets[1]);
152 log3 = I10NM_GET_REG32(imc, res->channel, offsets[3]);
153 log4 = I10NM_GET_REG32(imc, res->channel, offsets[4]);
154 log5 = I10NM_GET_REG64(imc, res->channel, offsets[5]);
155
156 if (res_cfg->type == SPR) {
157 log2a = I10NM_GET_REG64(imc, res->channel, offsets[2]);
158 n = snprintf(msg, len, " retry_rd_err_log[%.8x %.8x %.16llx %.8x %.8x %.16llx]",
159 log0, log1, log2a, log3, log4, log5);
160 } else {
161 log2 = I10NM_GET_REG32(imc, res->channel, offsets[2]);
162 n = snprintf(msg, len, " retry_rd_err_log[%.8x %.8x %.8x %.8x %.8x %.16llx]",
163 log0, log1, log2, log3, log4, log5);
164 }
165
166 corr0 = I10NM_GET_REG32(imc, res->channel, 0x22c18);
167 corr1 = I10NM_GET_REG32(imc, res->channel, 0x22c1c);
168 corr2 = I10NM_GET_REG32(imc, res->channel, 0x22c20);
169 corr3 = I10NM_GET_REG32(imc, res->channel, 0x22c24);
170
171 if (len - n > 0)
172 snprintf(msg + n, len - n,
173 " correrrcnt[%.4x %.4x %.4x %.4x %.4x %.4x %.4x %.4x]",
174 corr0 & 0xffff, corr0 >> 16,
175 corr1 & 0xffff, corr1 >> 16,
176 corr2 & 0xffff, corr2 >> 16,
177 corr3 & 0xffff, corr3 >> 16);
178
179 /* Clear status bits */
180 if (retry_rd_err_log == 2 && (log0 & RETRY_RD_ERR_LOG_OVER_UC_V)) {
181 log0 &= ~RETRY_RD_ERR_LOG_OVER_UC_V;
182 I10NM_SET_REG32(imc, res->channel, offsets[0], log0);
183 }
184}
185
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800186static struct pci_dev *pci_get_dev_wrapper(int dom, unsigned int bus,
187 unsigned int dev, unsigned int fun)
188{
189 struct pci_dev *pdev;
190
191 pdev = pci_get_domain_bus_and_slot(dom, bus, PCI_DEVFN(dev, fun));
192 if (!pdev) {
193 edac_dbg(2, "No device %02x:%02x.%x\n",
194 bus, dev, fun);
195 return NULL;
196 }
197
198 if (unlikely(pci_enable_device(pdev) < 0)) {
199 edac_dbg(2, "Failed to enable device %02x:%02x.%x\n",
200 bus, dev, fun);
201 return NULL;
202 }
203
204 pci_dev_get(pdev);
205
206 return pdev;
207}
208
Qiuxu Zhuo4bd4d322021-06-11 10:01:19 -0700209static bool i10nm_check_2lm(struct res_config *cfg)
210{
211 struct skx_dev *d;
212 u32 reg;
213 int i;
214
215 list_for_each_entry(d, i10nm_edac_list, list) {
216 d->sad_all = pci_get_dev_wrapper(d->seg, d->bus[1],
217 PCI_SLOT(cfg->sad_all_devfn),
218 PCI_FUNC(cfg->sad_all_devfn));
219 if (!d->sad_all)
220 continue;
221
222 for (i = 0; i < I10NM_MAX_SAD; i++) {
223 I10NM_GET_SAD(d, cfg->sad_all_offset, i, reg);
224 if (I10NM_SAD_ENABLE(reg) && I10NM_SAD_NM_CACHEABLE(reg)) {
225 edac_dbg(2, "2-level memory configuration.\n");
226 return true;
227 }
228 }
229 }
230
231 return false;
232}
233
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700234static int i10nm_get_ddr_munits(void)
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800235{
236 struct pci_dev *mdev;
237 void __iomem *mbase;
238 unsigned long size;
239 struct skx_dev *d;
240 int i, j = 0;
241 u32 reg, off;
242 u64 base;
243
244 list_for_each_entry(d, i10nm_edac_list, list) {
245 d->util_all = pci_get_dev_wrapper(d->seg, d->bus[1], 29, 1);
246 if (!d->util_all)
247 return -ENODEV;
248
249 d->uracu = pci_get_dev_wrapper(d->seg, d->bus[0], 0, 1);
250 if (!d->uracu)
251 return -ENODEV;
252
253 if (I10NM_GET_SCK_BAR(d, reg)) {
254 i10nm_printk(KERN_ERR, "Failed to socket bar\n");
255 return -ENODEV;
256 }
257
258 base = I10NM_GET_SCK_MMIO_BASE(reg);
259 edac_dbg(2, "socket%d mmio base 0x%llx (reg 0x%x)\n",
260 j++, base, reg);
261
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700262 for (i = 0; i < I10NM_NUM_DDR_IMC; i++) {
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800263 mdev = pci_get_dev_wrapper(d->seg, d->bus[0],
264 12 + i, 0);
265 if (i == 0 && !mdev) {
266 i10nm_printk(KERN_ERR, "No IMC found\n");
267 return -ENODEV;
268 }
269 if (!mdev)
270 continue;
271
272 d->imc[i].mdev = mdev;
273
274 if (I10NM_GET_IMC_BAR(d, i, reg)) {
275 i10nm_printk(KERN_ERR, "Failed to get mc bar\n");
276 return -ENODEV;
277 }
278
279 off = I10NM_GET_IMC_MMIO_OFFSET(reg);
280 size = I10NM_GET_IMC_MMIO_SIZE(reg);
281 edac_dbg(2, "mc%d mmio base 0x%llx size 0x%lx (reg 0x%x)\n",
282 i, base + off, size, reg);
283
284 mbase = ioremap(base + off, size);
285 if (!mbase) {
286 i10nm_printk(KERN_ERR, "Failed to ioremap 0x%llx\n",
287 base + off);
288 return -ENODEV;
289 }
290
291 d->imc[i].mbase = mbase;
292 }
293 }
294
295 return 0;
296}
297
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700298static bool i10nm_check_hbm_imc(struct skx_dev *d)
299{
300 u32 reg;
301
302 if (I10NM_GET_CAPID3_CFG(d, reg)) {
303 i10nm_printk(KERN_ERR, "Failed to get capid3_cfg\n");
304 return false;
305 }
306
307 return I10NM_IS_HBM_PRESENT(reg) != 0;
308}
309
310static int i10nm_get_hbm_munits(void)
311{
312 struct pci_dev *mdev;
313 void __iomem *mbase;
314 u32 reg, off, mcmtr;
315 struct skx_dev *d;
316 int i, lmc;
317 u64 base;
318
319 list_for_each_entry(d, i10nm_edac_list, list) {
320 d->pcu_cr3 = pci_get_dev_wrapper(d->seg, d->bus[1], 30, 3);
321 if (!d->pcu_cr3)
322 return -ENODEV;
323
324 if (!i10nm_check_hbm_imc(d)) {
325 i10nm_printk(KERN_DEBUG, "No hbm memory\n");
326 return -ENODEV;
327 }
328
329 if (I10NM_GET_SCK_BAR(d, reg)) {
330 i10nm_printk(KERN_ERR, "Failed to get socket bar\n");
331 return -ENODEV;
332 }
333 base = I10NM_GET_SCK_MMIO_BASE(reg);
334
335 if (I10NM_GET_HBM_IMC_BAR(d, reg)) {
336 i10nm_printk(KERN_ERR, "Failed to get hbm mc bar\n");
337 return -ENODEV;
338 }
339 base += I10NM_GET_HBM_IMC_MMIO_OFFSET(reg);
340
341 lmc = I10NM_NUM_DDR_IMC;
342
343 for (i = 0; i < I10NM_NUM_HBM_IMC; i++) {
344 mdev = pci_get_dev_wrapper(d->seg, d->bus[0],
345 12 + i / 4, 1 + i % 4);
346 if (i == 0 && !mdev) {
347 i10nm_printk(KERN_ERR, "No hbm mc found\n");
348 return -ENODEV;
349 }
350 if (!mdev)
351 continue;
352
353 d->imc[lmc].mdev = mdev;
354 off = i * I10NM_HBM_IMC_MMIO_SIZE;
355
356 edac_dbg(2, "hbm mc%d mmio base 0x%llx size 0x%x\n",
357 lmc, base + off, I10NM_HBM_IMC_MMIO_SIZE);
358
359 mbase = ioremap(base + off, I10NM_HBM_IMC_MMIO_SIZE);
360 if (!mbase) {
361 i10nm_printk(KERN_ERR, "Failed to ioremap for hbm mc 0x%llx\n",
362 base + off);
363 return -ENOMEM;
364 }
365
366 d->imc[lmc].mbase = mbase;
367 d->imc[lmc].hbm_mc = true;
368
369 mcmtr = I10NM_GET_MCMTR(&d->imc[lmc], 0);
370 if (!I10NM_IS_HBM_IMC(mcmtr)) {
371 i10nm_printk(KERN_ERR, "This isn't an hbm mc!\n");
372 return -ENODEV;
373 }
374
375 lmc++;
376 }
377 }
378
379 return 0;
380}
381
Qiuxu Zhuoce206702020-04-24 20:18:33 +0800382static struct res_config i10nm_cfg0 = {
Qiuxu Zhuoee5340a2020-04-24 20:18:14 +0800383 .type = I10NM,
384 .decs_did = 0x3452,
385 .busno_cfg_offset = 0xcc,
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800386 .ddr_chan_mmio_sz = 0x4000,
Qiuxu Zhuo4bd4d322021-06-11 10:01:19 -0700387 .sad_all_devfn = PCI_DEVFN(29, 0),
388 .sad_all_offset = 0x108,
Youquan Songcf4e6d52021-08-18 10:57:01 -0700389 .offsets_scrub = offsets_scrub_icx,
390 .offsets_demand = offsets_demand_icx,
Qiuxu Zhuoee5340a2020-04-24 20:18:14 +0800391};
392
Qiuxu Zhuoce206702020-04-24 20:18:33 +0800393static struct res_config i10nm_cfg1 = {
394 .type = I10NM,
395 .decs_did = 0x3452,
396 .busno_cfg_offset = 0xd0,
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800397 .ddr_chan_mmio_sz = 0x4000,
Qiuxu Zhuo4bd4d322021-06-11 10:01:19 -0700398 .sad_all_devfn = PCI_DEVFN(29, 0),
399 .sad_all_offset = 0x108,
Youquan Songcf4e6d52021-08-18 10:57:01 -0700400 .offsets_scrub = offsets_scrub_icx,
401 .offsets_demand = offsets_demand_icx,
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800402};
403
404static struct res_config spr_cfg = {
405 .type = SPR,
406 .decs_did = 0x3252,
407 .busno_cfg_offset = 0xd0,
408 .ddr_chan_mmio_sz = 0x8000,
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700409 .hbm_chan_mmio_sz = 0x4000,
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800410 .support_ddr5 = true,
Qiuxu Zhuo4bd4d322021-06-11 10:01:19 -0700411 .sad_all_devfn = PCI_DEVFN(10, 0),
412 .sad_all_offset = 0x300,
Youquan Songcf4e6d52021-08-18 10:57:01 -0700413 .offsets_scrub = offsets_scrub_spr,
414 .offsets_demand = offsets_demand_spr,
Qiuxu Zhuoce206702020-04-24 20:18:33 +0800415};
416
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800417static const struct x86_cpu_id i10nm_cpuids[] = {
Qiuxu Zhuo8807e152020-05-09 09:08:22 +0800418 X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ATOM_TREMONT_D, X86_STEPPINGS(0x0, 0x3), &i10nm_cfg0),
419 X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ATOM_TREMONT_D, X86_STEPPINGS(0x4, 0xf), &i10nm_cfg1),
420 X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ICELAKE_X, X86_STEPPINGS(0x0, 0x3), &i10nm_cfg0),
421 X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ICELAKE_X, X86_STEPPINGS(0x4, 0xf), &i10nm_cfg1),
422 X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ICELAKE_D, X86_STEPPINGS(0x0, 0xf), &i10nm_cfg1),
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800423 X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(SAPPHIRERAPIDS_X, X86_STEPPINGS(0x0, 0xf), &spr_cfg),
Thomas Gleixner29842622020-03-20 14:13:55 +0100424 {}
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800425};
426MODULE_DEVICE_TABLE(x86cpu, i10nm_cpuids);
427
428static bool i10nm_check_ecc(struct skx_imc *imc, int chan)
429{
430 u32 mcmtr;
431
Qiuxu Zhuo83ff51c2020-11-17 20:49:51 +0800432 mcmtr = I10NM_GET_MCMTR(imc, chan);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800433 edac_dbg(1, "ch%d mcmtr reg %x\n", chan, mcmtr);
434
435 return !!GET_BITFIELD(mcmtr, 2, 2);
436}
437
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800438static int i10nm_get_dimm_config(struct mem_ctl_info *mci,
439 struct res_config *cfg)
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800440{
441 struct skx_pvt *pvt = mci->pvt_info;
442 struct skx_imc *imc = pvt->imc;
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800443 u32 mtr, amap, mcddrtcfg;
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800444 struct dimm_info *dimm;
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800445 int i, j, ndimms;
446
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700447 for (i = 0; i < imc->num_channels; i++) {
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800448 if (!imc->mbase)
449 continue;
450
451 ndimms = 0;
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800452 amap = I10NM_GET_AMAP(imc, i);
Qiuxu Zhuo2294a722021-08-18 10:57:00 -0700453 mcddrtcfg = I10NM_GET_MCDDRTCFG(imc, i);
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700454 for (j = 0; j < imc->num_dimms; j++) {
Robert Richterbc9ad9e2019-11-06 09:33:02 +0000455 dimm = edac_get_dimm(mci, i, j, 0);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800456 mtr = I10NM_GET_DIMMMTR(imc, i, j);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800457 edac_dbg(1, "dimmmtr 0x%x mcddrtcfg 0x%x (mc%d ch%d dimm%d)\n",
458 mtr, mcddrtcfg, imc->mc, i, j);
459
460 if (IS_DIMM_PRESENT(mtr))
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800461 ndimms += skx_get_dimm_info(mtr, 0, amap, dimm,
462 imc, i, j, cfg);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800463 else if (IS_NVDIMM_PRESENT(mcddrtcfg, j))
464 ndimms += skx_get_nvdimm_info(dimm, imc, i, j,
465 EDAC_MOD_STR);
466 }
Qiuxu Zhuoc4a1dd92019-06-26 14:16:38 +0800467 if (ndimms && !i10nm_check_ecc(imc, i)) {
468 i10nm_printk(KERN_ERR, "ECC is disabled on imc %d channel %d\n",
469 imc->mc, i);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800470 return -ENODEV;
471 }
472 }
473
474 return 0;
475}
476
477static struct notifier_block i10nm_mce_dec = {
478 .notifier_call = skx_mce_check_error,
479 .priority = MCE_PRIO_EDAC,
480};
481
Qiuxu Zhuofe783512019-03-21 15:13:39 -0700482#ifdef CONFIG_EDAC_DEBUG
483/*
484 * Debug feature.
485 * Exercise the address decode logic by writing an address to
486 * /sys/kernel/debug/edac/i10nm_test/addr.
487 */
488static struct dentry *i10nm_test;
489
490static int debugfs_u64_set(void *data, u64 val)
491{
492 struct mce m;
493
494 pr_warn_once("Fake error to 0x%llx injected via debugfs\n", val);
495
496 memset(&m, 0, sizeof(m));
497 /* ADDRV + MemRd + Unknown channel */
498 m.status = MCI_STATUS_ADDRV + 0x90;
499 /* One corrected error */
500 m.status |= BIT_ULL(MCI_STATUS_CEC_SHIFT);
501 m.addr = val;
502 skx_mce_check_error(NULL, 0, &m);
503
504 return 0;
505}
506DEFINE_SIMPLE_ATTRIBUTE(fops_u64_wo, NULL, debugfs_u64_set, "%llu\n");
507
508static void setup_i10nm_debug(void)
509{
510 i10nm_test = edac_debugfs_create_dir("i10nm_test");
511 if (!i10nm_test)
512 return;
513
514 if (!edac_debugfs_create_file("addr", 0200, i10nm_test,
515 NULL, &fops_u64_wo)) {
516 debugfs_remove(i10nm_test);
517 i10nm_test = NULL;
518 }
519}
520
521static void teardown_i10nm_debug(void)
522{
523 debugfs_remove_recursive(i10nm_test);
524}
525#else
526static inline void setup_i10nm_debug(void) {}
527static inline void teardown_i10nm_debug(void) {}
528#endif /*CONFIG_EDAC_DEBUG*/
529
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800530static int __init i10nm_init(void)
531{
532 u8 mc = 0, src_id = 0, node_id = 0;
533 const struct x86_cpu_id *id;
Qiuxu Zhuoee5340a2020-04-24 20:18:14 +0800534 struct res_config *cfg;
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800535 const char *owner;
536 struct skx_dev *d;
537 int rc, i, off[3] = {0xd0, 0xc8, 0xcc};
538 u64 tolm, tohm;
539
540 edac_dbg(2, "\n");
541
542 owner = edac_get_owner();
543 if (owner && strncmp(owner, EDAC_MOD_STR, sizeof(EDAC_MOD_STR)))
544 return -EBUSY;
545
Luck, Tonyf0a029f2021-06-15 10:44:19 -0700546 if (cpu_feature_enabled(X86_FEATURE_HYPERVISOR))
547 return -ENODEV;
548
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800549 id = x86_match_cpu(i10nm_cpuids);
550 if (!id)
551 return -ENODEV;
552
Qiuxu Zhuoee5340a2020-04-24 20:18:14 +0800553 cfg = (struct res_config *)id->driver_data;
Youquan Songcf4e6d52021-08-18 10:57:01 -0700554 res_cfg = cfg;
Qiuxu Zhuoee5340a2020-04-24 20:18:14 +0800555
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800556 rc = skx_get_hi_lo(0x09a2, off, &tolm, &tohm);
557 if (rc)
558 return rc;
559
Qiuxu Zhuoee5340a2020-04-24 20:18:14 +0800560 rc = skx_get_all_bus_mappings(cfg, &i10nm_edac_list);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800561 if (rc < 0)
562 goto fail;
563 if (rc == 0) {
564 i10nm_printk(KERN_ERR, "No memory controllers found\n");
565 return -ENODEV;
566 }
567
Qiuxu Zhuo4bd4d322021-06-11 10:01:19 -0700568 skx_set_mem_cfg(i10nm_check_2lm(cfg));
569
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700570 rc = i10nm_get_ddr_munits();
571
572 if (i10nm_get_hbm_munits() && rc)
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800573 goto fail;
574
575 list_for_each_entry(d, i10nm_edac_list, list) {
Qiuxu Zhuo1dc78f12019-06-26 14:16:55 +0800576 rc = skx_get_src_id(d, 0xf8, &src_id);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800577 if (rc < 0)
578 goto fail;
579
580 rc = skx_get_node_id(d, &node_id);
581 if (rc < 0)
582 goto fail;
583
584 edac_dbg(2, "src_id = %d node_id = %d\n", src_id, node_id);
585 for (i = 0; i < I10NM_NUM_IMC; i++) {
586 if (!d->imc[i].mdev)
587 continue;
588
589 d->imc[i].mc = mc++;
590 d->imc[i].lmc = i;
591 d->imc[i].src_id = src_id;
592 d->imc[i].node_id = node_id;
Qiuxu Zhuoc9450882021-06-11 10:01:20 -0700593 if (d->imc[i].hbm_mc) {
594 d->imc[i].chan_mmio_sz = cfg->hbm_chan_mmio_sz;
595 d->imc[i].num_channels = I10NM_NUM_HBM_CHANNELS;
596 d->imc[i].num_dimms = I10NM_NUM_HBM_DIMMS;
597 } else {
598 d->imc[i].chan_mmio_sz = cfg->ddr_chan_mmio_sz;
599 d->imc[i].num_channels = I10NM_NUM_DDR_CHANNELS;
600 d->imc[i].num_dimms = I10NM_NUM_DDR_DIMMS;
601 }
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800602
603 rc = skx_register_mci(&d->imc[i], d->imc[i].mdev,
604 "Intel_10nm Socket", EDAC_MOD_STR,
Qiuxu Zhuo479f58d2020-11-17 20:49:53 +0800605 i10nm_get_dimm_config, cfg);
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800606 if (rc < 0)
607 goto fail;
608 }
609 }
610
611 rc = skx_adxl_get();
612 if (rc)
613 goto fail;
614
615 opstate_init();
616 mce_register_decode_chain(&i10nm_mce_dec);
Qiuxu Zhuofe783512019-03-21 15:13:39 -0700617 setup_i10nm_debug();
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800618
Youquan Songcf4e6d52021-08-18 10:57:01 -0700619 if (retry_rd_err_log && res_cfg->offsets_scrub && res_cfg->offsets_demand) {
620 skx_set_decode(NULL, show_retry_rd_err_log);
621 if (retry_rd_err_log == 2)
622 enable_retry_rd_err_log(true);
623 }
624
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800625 i10nm_printk(KERN_INFO, "%s\n", I10NM_REVISION);
626
627 return 0;
628fail:
629 skx_remove();
630 return rc;
631}
632
633static void __exit i10nm_exit(void)
634{
635 edac_dbg(2, "\n");
Youquan Songcf4e6d52021-08-18 10:57:01 -0700636
637 if (retry_rd_err_log && res_cfg->offsets_scrub && res_cfg->offsets_demand) {
638 skx_set_decode(NULL, NULL);
639 if (retry_rd_err_log == 2)
640 enable_retry_rd_err_log(false);
641 }
642
Qiuxu Zhuofe783512019-03-21 15:13:39 -0700643 teardown_i10nm_debug();
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800644 mce_unregister_decode_chain(&i10nm_mce_dec);
645 skx_adxl_put();
646 skx_remove();
647}
648
649module_init(i10nm_init);
650module_exit(i10nm_exit);
651
Youquan Songcf4e6d52021-08-18 10:57:01 -0700652module_param(retry_rd_err_log, int, 0444);
653MODULE_PARM_DESC(retry_rd_err_log, "retry_rd_err_log: 0=off(default), 1=bios(Linux doesn't reset any control bits, but just reports values.), 2=linux(Linux tries to take control and resets mode bits, clear valid/UC bits after reading.)");
654
Qiuxu Zhuod4dc89d2019-01-30 11:15:19 -0800655MODULE_LICENSE("GPL v2");
656MODULE_DESCRIPTION("MC Driver for Intel 10nm server processors");