1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Common codes for both the skx_edac driver and Intel 10nm server EDAC driver.
4 * Originally split out from the skx_edac driver.
6 * Copyright (c) 2018, Intel Corporation.
9 #ifndef _SKX_COMM_EDAC_H
10 #define _SKX_COMM_EDAC_H
12 #include <linux/bits.h>
20 #define skx_printk(level, fmt, arg...) \
21 edac_printk(level, "skx", fmt, ##arg)
23 #define skx_mc_printk(mci, level, fmt, arg...) \
24 edac_mc_chipset_printk(mci, level, "skx", fmt, ##arg)
27 * Get a bit field at register value <v>, from bit <lo> to bit <hi>
29 #define GET_BITFIELD(v, lo, hi) \
30 (((v) & GENMASK_ULL((hi), (lo))) >> (lo))
32 #define SKX_NUM_IMC 2 /* Memory controllers per socket */
33 #define SKX_NUM_CHANNELS 3 /* Channels per memory controller */
34 #define SKX_NUM_DIMMS 2 /* Max DIMMS per channel */
36 #define I10NM_NUM_DDR_IMC 12
37 #define I10NM_NUM_DDR_CHANNELS 2
38 #define I10NM_NUM_DDR_DIMMS 2
40 #define I10NM_NUM_HBM_IMC 16
41 #define I10NM_NUM_HBM_CHANNELS 2
42 #define I10NM_NUM_HBM_DIMMS 1
44 #define I10NM_NUM_IMC (I10NM_NUM_DDR_IMC + I10NM_NUM_HBM_IMC)
45 #define I10NM_NUM_CHANNELS MAX(I10NM_NUM_DDR_CHANNELS, I10NM_NUM_HBM_CHANNELS)
46 #define I10NM_NUM_DIMMS MAX(I10NM_NUM_DDR_DIMMS, I10NM_NUM_HBM_DIMMS)
48 #define NUM_IMC MAX(SKX_NUM_IMC, I10NM_NUM_IMC)
49 #define NUM_CHANNELS MAX(SKX_NUM_CHANNELS, I10NM_NUM_CHANNELS)
50 #define NUM_DIMMS MAX(SKX_NUM_DIMMS, I10NM_NUM_DIMMS)
52 #define IS_DIMM_PRESENT(r) GET_BITFIELD(r, 15, 15)
53 #define IS_NVDIMM_PRESENT(r, i) GET_BITFIELD(r, i, i)
55 #define MCI_MISC_ECC_MODE(m) (((m) >> 59) & 15)
56 #define MCI_MISC_ECC_DDRT 8 /* read from DDRT */
59 * According to Intel Architecture spec vol 3B,
60 * Table 15-10 "IA32_MCi_Status [15:0] Compound Error Code Encoding"
61 * memory errors should fit one of these masks:
62 * 000f 0000 1mmm cccc (binary)
63 * 000f 0010 1mmm cccc (binary) [RAM used as cache]
65 * f = Correction Report Filtering Bit. If 1, subsequent errors
70 #define MCACOD_MEM_ERR_MASK 0xef80
72 * Errors from either the memory of the 1-level memory system or the
73 * 2nd level memory (the slow "far" memory) of the 2-level memory system.
75 #define MCACOD_MEM_CTL_ERR 0x80
77 * Errors from the 1st level memory (the fast "near" memory as cache)
78 * of the 2-level memory system.
80 #define MCACOD_EXT_MEM_ERR 0x280
83 * Each cpu socket contains some pci devices that provide global
84 * information, and also some that are local to each of the two
85 * memory controllers on the die.
88 struct list_head list
;
91 struct pci_dev
*sad_all
;
92 struct pci_dev
*util_all
;
93 struct pci_dev
*uracu
; /* for i10nm CPU */
94 struct pci_dev
*pcu_cr3
; /* for HBM memory detection */
97 struct mem_ctl_info
*mci
;
98 struct pci_dev
*mdev
; /* for i10nm CPU */
99 void __iomem
*mbase
; /* for i10nm CPU */
100 int chan_mmio_sz
; /* for i10nm CPU */
101 int num_channels
; /* channels per memory controller */
102 int num_dimms
; /* dimms per channel */
104 u8 mc
; /* system wide mc# */
105 u8 lmc
; /* socket relative mc# */
108 struct pci_dev
*cdev
;
109 struct pci_dev
*edev
;
110 u32 retry_rd_err_log_s
;
111 u32 retry_rd_err_log_d
;
112 u32 retry_rd_err_log_d2
;
120 } chan
[NUM_CHANNELS
];
142 INDEX_NM_MEMCTRL
= INDEX_NM_FIRST
,
156 #define BIT_NM_MEMCTRL BIT_ULL(INDEX_NM_MEMCTRL)
157 #define BIT_NM_CHANNEL BIT_ULL(INDEX_NM_CHANNEL)
158 #define BIT_NM_DIMM BIT_ULL(INDEX_NM_DIMM)
159 #define BIT_NM_CS BIT_ULL(INDEX_NM_CS)
161 struct decoded_addr
{
180 bool decoded_by_adxl
;
191 /* Configuration agent device ID */
192 unsigned int decs_did
;
193 /* Default bus number configuration register offset */
194 int busno_cfg_offset
;
195 /* DDR memory controllers per socket */
197 /* DDR channels per DDR memory controller */
199 /* DDR DIMMs per DDR memory channel */
201 /* Per DDR channel memory-mapped I/O size */
202 int ddr_chan_mmio_sz
;
203 /* HBM memory controllers per socket */
205 /* HBM channels per HBM memory controller */
207 /* HBM DIMMs per HBM memory channel */
209 /* Per HBM channel memory-mapped I/O size */
210 int hbm_chan_mmio_sz
;
213 struct pci_bdf sad_all_bdf
;
215 struct pci_bdf pcu_cr3_bdf
;
216 /* UTIL device BDF */
217 struct pci_bdf util_all_bdf
;
218 /* URACU device BDF */
219 struct pci_bdf uracu_bdf
;
220 /* DDR mdev device BDF */
221 struct pci_bdf ddr_mdev_bdf
;
222 /* HBM mdev device BDF */
223 struct pci_bdf hbm_mdev_bdf
;
225 /* Offsets of retry_rd_err_log registers */
227 u32
*offsets_scrub_hbm0
;
228 u32
*offsets_scrub_hbm1
;
230 u32
*offsets_demand2
;
231 u32
*offsets_demand_hbm0
;
232 u32
*offsets_demand_hbm1
;
235 typedef int (*get_dimm_config_f
)(struct mem_ctl_info
*mci
,
236 struct res_config
*cfg
);
237 typedef bool (*skx_decode_f
)(struct decoded_addr
*res
);
238 typedef void (*skx_show_retry_log_f
)(struct decoded_addr
*res
, char *msg
, int len
, bool scrub_err
);
240 int skx_adxl_get(void);
241 void skx_adxl_put(void);
242 void skx_set_decode(skx_decode_f decode
, skx_show_retry_log_f show_retry_log
);
243 void skx_set_mem_cfg(bool mem_cfg_2lm
);
244 void skx_set_res_cfg(struct res_config
*cfg
);
246 int skx_get_src_id(struct skx_dev
*d
, int off
, u8
*id
);
247 int skx_get_node_id(struct skx_dev
*d
, u8
*id
);
249 int skx_get_all_bus_mappings(struct res_config
*cfg
, struct list_head
**list
);
251 int skx_get_hi_lo(unsigned int did
, int off
[], u64
*tolm
, u64
*tohm
);
253 int skx_get_dimm_info(u32 mtr
, u32 mcmtr
, u32 amap
, struct dimm_info
*dimm
,
254 struct skx_imc
*imc
, int chan
, int dimmno
,
255 struct res_config
*cfg
);
257 int skx_get_nvdimm_info(struct dimm_info
*dimm
, struct skx_imc
*imc
,
258 int chan
, int dimmno
, const char *mod_str
);
260 int skx_register_mci(struct skx_imc
*imc
, struct pci_dev
*pdev
,
261 const char *ctl_name
, const char *mod_str
,
262 get_dimm_config_f get_dimm_config
,
263 struct res_config
*cfg
);
265 int skx_mce_check_error(struct notifier_block
*nb
, unsigned long val
,
268 void skx_remove(void);
270 #ifdef CONFIG_EDAC_DEBUG
271 void skx_setup_debug(const char *name
);
272 void skx_teardown_debug(void);
274 static inline void skx_setup_debug(const char *name
) {}
275 static inline void skx_teardown_debug(void) {}
278 #endif /* _SKX_COMM_EDAC_H */