blob: bf2bf87bb2f90a93975a932803d15668f31f40ce [file] [log] [blame]
Dave Jiangc0d12172007-07-19 01:49:46 -07001/*
2 * Generic EDAC defs
3 *
4 * Author: Dave Jiang <djiang@mvista.com>
5 *
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -07006 * 2006-2008 (c) MontaVista Software, Inc. This file is licensed under
Dave Jiangc0d12172007-07-19 01:49:46 -07007 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 *
11 */
12#ifndef _LINUX_EDAC_H_
13#define _LINUX_EDAC_H_
14
Arun Sharma600634972011-07-26 16:09:06 -070015#include <linux/atomic.h>
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030016#include <linux/device.h>
Paul Gortmaker313162d2012-01-30 11:46:54 -050017#include <linux/completion.h>
18#include <linux/workqueue.h>
Mauro Carvalho Chehab452a6bf2012-03-26 09:35:11 -030019#include <linux/debugfs.h>
Paul Gortmaker313162d2012-01-30 11:46:54 -050020
21struct device;
Dave Jiangc0d12172007-07-19 01:49:46 -070022
23#define EDAC_OPSTATE_INVAL -1
24#define EDAC_OPSTATE_POLL 0
25#define EDAC_OPSTATE_NMI 1
26#define EDAC_OPSTATE_INT 2
27
28extern int edac_op_state;
Dave Jiang66ee2f92007-07-19 01:49:54 -070029extern int edac_err_assert;
Dave Jiangc0d12172007-07-19 01:49:46 -070030extern atomic_t edac_handlers;
Dave Jiangc0d12172007-07-19 01:49:46 -070031
32extern int edac_handler_set(void);
33extern void edac_atomic_assert_error(void);
Kay Sieversfe5ff8b2011-12-14 15:21:07 -080034extern struct bus_type *edac_get_sysfs_subsys(void);
Dave Jiangc0d12172007-07-19 01:49:46 -070035
Chen, Gongc700f012013-12-06 01:17:08 -050036enum {
37 EDAC_REPORTING_ENABLED,
38 EDAC_REPORTING_DISABLED,
39 EDAC_REPORTING_FORCE
40};
41
42extern int edac_report_status;
43#ifdef CONFIG_EDAC
44static inline int get_edac_report_status(void)
45{
46 return edac_report_status;
47}
48
49static inline void set_edac_report_status(int new)
50{
51 edac_report_status = new;
52}
53#else
54static inline int get_edac_report_status(void)
55{
56 return EDAC_REPORTING_DISABLED;
57}
58
59static inline void set_edac_report_status(int new)
60{
61}
62#endif
63
Hitoshi Mitakec3c52bc2008-04-29 01:03:18 -070064static inline void opstate_init(void)
65{
66 switch (edac_op_state) {
67 case EDAC_OPSTATE_POLL:
68 case EDAC_OPSTATE_NMI:
69 break;
70 default:
71 edac_op_state = EDAC_OPSTATE_POLL;
72 }
73 return;
74}
75
Mauro Carvalho Chehabc7ef7642013-02-21 13:36:45 -030076/* Max length of a DIMM label*/
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -030077#define EDAC_MC_LABEL_LEN 31
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -030078
Mauro Carvalho Chehabc7ef7642013-02-21 13:36:45 -030079/* Maximum size of the location string */
Chen, Gong56507692013-10-18 14:30:38 -070080#define LOCATION_SIZE 256
Mauro Carvalho Chehabc7ef7642013-02-21 13:36:45 -030081
82/* Defines the maximum number of labels that can be reported */
83#define EDAC_MAX_LABELS 8
84
85/* String used to join two or more labels */
86#define OTHER_LABEL " or "
87
Mauro Carvalho Chehabb0610bb82012-03-21 16:21:07 -030088/**
89 * enum dev_type - describe the type of memory DRAM chips used at the stick
90 * @DEV_UNKNOWN: Can't be determined, or MC doesn't support detect it
91 * @DEV_X1: 1 bit for data
92 * @DEV_X2: 2 bits for data
93 * @DEV_X4: 4 bits for data
94 * @DEV_X8: 8 bits for data
95 * @DEV_X16: 16 bits for data
96 * @DEV_X32: 32 bits for data
97 * @DEV_X64: 64 bits for data
98 *
99 * Typical values are x4 and x8.
100 */
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300101enum dev_type {
102 DEV_UNKNOWN = 0,
103 DEV_X1,
104 DEV_X2,
105 DEV_X4,
106 DEV_X8,
107 DEV_X16,
108 DEV_X32, /* Do these parts exist? */
109 DEV_X64 /* Do these parts exist? */
110};
111
112#define DEV_FLAG_UNKNOWN BIT(DEV_UNKNOWN)
113#define DEV_FLAG_X1 BIT(DEV_X1)
114#define DEV_FLAG_X2 BIT(DEV_X2)
115#define DEV_FLAG_X4 BIT(DEV_X4)
116#define DEV_FLAG_X8 BIT(DEV_X8)
117#define DEV_FLAG_X16 BIT(DEV_X16)
118#define DEV_FLAG_X32 BIT(DEV_X32)
119#define DEV_FLAG_X64 BIT(DEV_X64)
120
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300121/**
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300122 * enum hw_event_mc_err_type - type of the detected error
123 *
124 * @HW_EVENT_ERR_CORRECTED: Corrected Error - Indicates that an ECC
125 * corrected error was detected
126 * @HW_EVENT_ERR_UNCORRECTED: Uncorrected Error - Indicates an error that
127 * can't be corrected by ECC, but it is not
128 * fatal (maybe it is on an unused memory area,
129 * or the memory controller could recover from
130 * it for example, by re-trying the operation).
131 * @HW_EVENT_ERR_FATAL: Fatal Error - Uncorrected error that could not
132 * be recovered.
133 */
134enum hw_event_mc_err_type {
135 HW_EVENT_ERR_CORRECTED,
136 HW_EVENT_ERR_UNCORRECTED,
137 HW_EVENT_ERR_FATAL,
Mauro Carvalho Chehab8dd93d42013-02-19 21:26:22 -0300138 HW_EVENT_ERR_INFO,
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300139};
140
Mauro Carvalho Chehab8dd93d42013-02-19 21:26:22 -0300141static inline char *mc_event_error_type(const unsigned int err_type)
142{
143 switch (err_type) {
144 case HW_EVENT_ERR_CORRECTED:
145 return "Corrected";
146 case HW_EVENT_ERR_UNCORRECTED:
147 return "Uncorrected";
148 case HW_EVENT_ERR_FATAL:
149 return "Fatal";
150 default:
151 case HW_EVENT_ERR_INFO:
152 return "Info";
153 }
154}
155
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300156/**
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300157 * enum mem_type - memory types. For a more detailed reference, please see
158 * http://en.wikipedia.org/wiki/DRAM
159 *
160 * @MEM_EMPTY Empty csrow
161 * @MEM_RESERVED: Reserved csrow type
162 * @MEM_UNKNOWN: Unknown csrow type
163 * @MEM_FPM: FPM - Fast Page Mode, used on systems up to 1995.
164 * @MEM_EDO: EDO - Extended data out, used on systems up to 1998.
165 * @MEM_BEDO: BEDO - Burst Extended data out, an EDO variant.
166 * @MEM_SDR: SDR - Single data rate SDRAM
167 * http://en.wikipedia.org/wiki/Synchronous_dynamic_random-access_memory
168 * They use 3 pins for chip select: Pins 0 and 2 are
169 * for rank 0; pins 1 and 3 are for rank 1, if the memory
170 * is dual-rank.
171 * @MEM_RDR: Registered SDR SDRAM
172 * @MEM_DDR: Double data rate SDRAM
173 * http://en.wikipedia.org/wiki/DDR_SDRAM
174 * @MEM_RDDR: Registered Double data rate SDRAM
175 * This is a variant of the DDR memories.
176 * A registered memory has a buffer inside it, hiding
177 * part of the memory details to the memory controller.
178 * @MEM_RMBS: Rambus DRAM, used on a few Pentium III/IV controllers.
179 * @MEM_DDR2: DDR2 RAM, as described at JEDEC JESD79-2F.
180 * Those memories are labed as "PC2-" instead of "PC" to
181 * differenciate from DDR.
182 * @MEM_FB_DDR2: Fully-Buffered DDR2, as described at JEDEC Std No. 205
183 * and JESD206.
184 * Those memories are accessed per DIMM slot, and not by
185 * a chip select signal.
186 * @MEM_RDDR2: Registered DDR2 RAM
187 * This is a variant of the DDR2 memories.
188 * @MEM_XDR: Rambus XDR
189 * It is an evolution of the original RAMBUS memories,
190 * created to compete with DDR2. Weren't used on any
191 * x86 arch, but cell_edac PPC memory controller uses it.
192 * @MEM_DDR3: DDR3 RAM
193 * @MEM_RDDR3: Registered DDR3 RAM
194 * This is a variant of the DDR3 memories.
Yazen Ghannam1e8096b2016-11-17 17:57:28 -0500195 * @MEM_LRDDR3: Load-Reduced DDR3 memory.
Aravind Gopalakrishnan348fec72014-09-18 14:56:58 -0500196 * @MEM_DDR4: Unbuffered DDR4 RAM
Aristeu Rozanski7b827832014-06-18 11:05:01 -0300197 * @MEM_RDDR4: Registered DDR4 RAM
198 * This is a variant of the DDR4 memories.
Yazen Ghannam1e8096b2016-11-17 17:57:28 -0500199 * @MEM_LRDDR4: Load-Reduced DDR4 memory.
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300200 */
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300201enum mem_type {
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300202 MEM_EMPTY = 0,
203 MEM_RESERVED,
204 MEM_UNKNOWN,
205 MEM_FPM,
206 MEM_EDO,
207 MEM_BEDO,
208 MEM_SDR,
209 MEM_RDR,
210 MEM_DDR,
211 MEM_RDDR,
212 MEM_RMBS,
213 MEM_DDR2,
214 MEM_FB_DDR2,
215 MEM_RDDR2,
216 MEM_XDR,
217 MEM_DDR3,
218 MEM_RDDR3,
Aravind Gopalakrishnan348fec72014-09-18 14:56:58 -0500219 MEM_LRDDR3,
Aristeu Rozanski7b827832014-06-18 11:05:01 -0300220 MEM_DDR4,
221 MEM_RDDR4,
Yazen Ghannam1e8096b2016-11-17 17:57:28 -0500222 MEM_LRDDR4,
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300223};
224
225#define MEM_FLAG_EMPTY BIT(MEM_EMPTY)
226#define MEM_FLAG_RESERVED BIT(MEM_RESERVED)
227#define MEM_FLAG_UNKNOWN BIT(MEM_UNKNOWN)
228#define MEM_FLAG_FPM BIT(MEM_FPM)
229#define MEM_FLAG_EDO BIT(MEM_EDO)
230#define MEM_FLAG_BEDO BIT(MEM_BEDO)
231#define MEM_FLAG_SDR BIT(MEM_SDR)
232#define MEM_FLAG_RDR BIT(MEM_RDR)
233#define MEM_FLAG_DDR BIT(MEM_DDR)
234#define MEM_FLAG_RDDR BIT(MEM_RDDR)
235#define MEM_FLAG_RMBS BIT(MEM_RMBS)
236#define MEM_FLAG_DDR2 BIT(MEM_DDR2)
237#define MEM_FLAG_FB_DDR2 BIT(MEM_FB_DDR2)
238#define MEM_FLAG_RDDR2 BIT(MEM_RDDR2)
239#define MEM_FLAG_XDR BIT(MEM_XDR)
Jim Snow255379a2015-12-03 10:48:51 +0100240#define MEM_FLAG_DDR3 BIT(MEM_DDR3)
241#define MEM_FLAG_RDDR3 BIT(MEM_RDDR3)
242#define MEM_FLAG_DDR4 BIT(MEM_DDR4)
243#define MEM_FLAG_RDDR4 BIT(MEM_RDDR4)
Yazen Ghannam1e8096b2016-11-17 17:57:28 -0500244#define MEM_FLAG_LRDDR4 BIT(MEM_LRDDR4)
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300245
Mauro Carvalho Chehabb0610bb82012-03-21 16:21:07 -0300246/**
247 * enum edac-type - Error Detection and Correction capabilities and mode
248 * @EDAC_UNKNOWN: Unknown if ECC is available
249 * @EDAC_NONE: Doesn't support ECC
250 * @EDAC_RESERVED: Reserved ECC type
251 * @EDAC_PARITY: Detects parity errors
252 * @EDAC_EC: Error Checking - no correction
253 * @EDAC_SECDED: Single bit error correction, Double detection
254 * @EDAC_S2ECD2ED: Chipkill x2 devices - do these exist?
255 * @EDAC_S4ECD4ED: Chipkill x4 devices
256 * @EDAC_S8ECD8ED: Chipkill x8 devices
257 * @EDAC_S16ECD16ED: Chipkill x16 devices
258 */
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300259enum edac_type {
Mauro Carvalho Chehabb0610bb82012-03-21 16:21:07 -0300260 EDAC_UNKNOWN = 0,
261 EDAC_NONE,
262 EDAC_RESERVED,
263 EDAC_PARITY,
264 EDAC_EC,
265 EDAC_SECDED,
266 EDAC_S2ECD2ED,
267 EDAC_S4ECD4ED,
268 EDAC_S8ECD8ED,
269 EDAC_S16ECD16ED,
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300270};
271
272#define EDAC_FLAG_UNKNOWN BIT(EDAC_UNKNOWN)
273#define EDAC_FLAG_NONE BIT(EDAC_NONE)
274#define EDAC_FLAG_PARITY BIT(EDAC_PARITY)
275#define EDAC_FLAG_EC BIT(EDAC_EC)
276#define EDAC_FLAG_SECDED BIT(EDAC_SECDED)
277#define EDAC_FLAG_S2ECD2ED BIT(EDAC_S2ECD2ED)
278#define EDAC_FLAG_S4ECD4ED BIT(EDAC_S4ECD4ED)
279#define EDAC_FLAG_S8ECD8ED BIT(EDAC_S8ECD8ED)
280#define EDAC_FLAG_S16ECD16ED BIT(EDAC_S16ECD16ED)
281
Mauro Carvalho Chehabb0610bb82012-03-21 16:21:07 -0300282/**
283 * enum scrub_type - scrubbing capabilities
284 * @SCRUB_UNKNOWN Unknown if scrubber is available
285 * @SCRUB_NONE: No scrubber
286 * @SCRUB_SW_PROG: SW progressive (sequential) scrubbing
287 * @SCRUB_SW_SRC: Software scrub only errors
288 * @SCRUB_SW_PROG_SRC: Progressive software scrub from an error
289 * @SCRUB_SW_TUNABLE: Software scrub frequency is tunable
290 * @SCRUB_HW_PROG: HW progressive (sequential) scrubbing
291 * @SCRUB_HW_SRC: Hardware scrub only errors
292 * @SCRUB_HW_PROG_SRC: Progressive hardware scrub from an error
293 * SCRUB_HW_TUNABLE: Hardware scrub frequency is tunable
294 */
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300295enum scrub_type {
Mauro Carvalho Chehabb0610bb82012-03-21 16:21:07 -0300296 SCRUB_UNKNOWN = 0,
297 SCRUB_NONE,
298 SCRUB_SW_PROG,
299 SCRUB_SW_SRC,
300 SCRUB_SW_PROG_SRC,
301 SCRUB_SW_TUNABLE,
302 SCRUB_HW_PROG,
303 SCRUB_HW_SRC,
304 SCRUB_HW_PROG_SRC,
305 SCRUB_HW_TUNABLE
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300306};
307
308#define SCRUB_FLAG_SW_PROG BIT(SCRUB_SW_PROG)
309#define SCRUB_FLAG_SW_SRC BIT(SCRUB_SW_SRC)
310#define SCRUB_FLAG_SW_PROG_SRC BIT(SCRUB_SW_PROG_SRC)
311#define SCRUB_FLAG_SW_TUN BIT(SCRUB_SW_SCRUB_TUNABLE)
312#define SCRUB_FLAG_HW_PROG BIT(SCRUB_HW_PROG)
313#define SCRUB_FLAG_HW_SRC BIT(SCRUB_HW_SRC)
314#define SCRUB_FLAG_HW_PROG_SRC BIT(SCRUB_HW_PROG_SRC)
315#define SCRUB_FLAG_HW_TUN BIT(SCRUB_HW_TUNABLE)
316
317/* FIXME - should have notify capabilities: NMI, LOG, PROC, etc */
318
319/* EDAC internal operation states */
320#define OP_ALLOC 0x100
321#define OP_RUNNING_POLL 0x201
322#define OP_RUNNING_INTERRUPT 0x202
323#define OP_RUNNING_POLL_INTR 0x203
324#define OP_OFFLINE 0x300
325
326/*
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300327 * Concepts used at the EDAC subsystem
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300328 *
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300329 * There are several things to be aware of that aren't at all obvious:
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300330 *
331 * SOCKETS, SOCKET SETS, BANKS, ROWS, CHIP-SELECT ROWS, CHANNELS, etc..
332 *
333 * These are some of the many terms that are thrown about that don't always
334 * mean what people think they mean (Inconceivable!). In the interest of
335 * creating a common ground for discussion, terms and their definitions
336 * will be established.
337 *
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300338 * Memory devices: The individual DRAM chips on a memory stick. These
339 * devices commonly output 4 and 8 bits each (x4, x8).
340 * Grouping several of these in parallel provides the
341 * number of bits that the memory controller expects:
342 * typically 72 bits, in order to provide 64 bits +
343 * 8 bits of ECC data.
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300344 *
345 * Memory Stick: A printed circuit board that aggregates multiple
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300346 * memory devices in parallel. In general, this is the
347 * Field Replaceable Unit (FRU) which gets replaced, in
348 * the case of excessive errors. Most often it is also
349 * called DIMM (Dual Inline Memory Module).
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300350 *
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300351 * Memory Socket: A physical connector on the motherboard that accepts
352 * a single memory stick. Also called as "slot" on several
353 * datasheets.
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300354 *
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300355 * Channel: A memory controller channel, responsible to communicate
356 * with a group of DIMMs. Each channel has its own
357 * independent control (command) and data bus, and can
358 * be used independently or grouped with other channels.
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300359 *
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300360 * Branch: It is typically the highest hierarchy on a
361 * Fully-Buffered DIMM memory controller.
362 * Typically, it contains two channels.
363 * Two channels at the same branch can be used in single
364 * mode or in lockstep mode.
365 * When lockstep is enabled, the cacheline is doubled,
366 * but it generally brings some performance penalty.
367 * Also, it is generally not possible to point to just one
368 * memory stick when an error occurs, as the error
369 * correction code is calculated using two DIMMs instead
370 * of one. Due to that, it is capable of correcting more
371 * errors than on single mode.
372 *
373 * Single-channel: The data accessed by the memory controller is contained
374 * into one dimm only. E. g. if the data is 64 bits-wide,
375 * the data flows to the CPU using one 64 bits parallel
376 * access.
377 * Typically used with SDR, DDR, DDR2 and DDR3 memories.
378 * FB-DIMM and RAMBUS use a different concept for channel,
379 * so this concept doesn't apply there.
380 *
381 * Double-channel: The data size accessed by the memory controller is
382 * interlaced into two dimms, accessed at the same time.
383 * E. g. if the DIMM is 64 bits-wide (72 bits with ECC),
384 * the data flows to the CPU using a 128 bits parallel
385 * access.
386 *
387 * Chip-select row: This is the name of the DRAM signal used to select the
388 * DRAM ranks to be accessed. Common chip-select rows for
389 * single channel are 64 bits, for dual channel 128 bits.
390 * It may not be visible by the memory controller, as some
391 * DIMM types have a memory buffer that can hide direct
392 * access to it from the Memory Controller.
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300393 *
394 * Single-Ranked stick: A Single-ranked stick has 1 chip-select row of memory.
395 * Motherboards commonly drive two chip-select pins to
396 * a memory stick. A single-ranked stick, will occupy
397 * only one of those rows. The other will be unused.
398 *
399 * Double-Ranked stick: A double-ranked stick has two chip-select rows which
400 * access different sets of memory devices. The two
401 * rows cannot be accessed concurrently.
402 *
403 * Double-sided stick: DEPRECATED TERM, see Double-Ranked stick.
404 * A double-sided stick has two chip-select rows which
Mauro Carvalho Chehab01a6e282012-02-03 13:17:48 -0300405 * access different sets of memory devices. The two
406 * rows cannot be accessed concurrently. "Double-sided"
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300407 * is irrespective of the memory devices being mounted
408 * on both sides of the memory stick.
409 *
410 * Socket set: All of the memory sticks that are required for
411 * a single memory access or all of the memory sticks
412 * spanned by a chip-select row. A single socket set
413 * has two chip-select rows and if double-sided sticks
414 * are used these will occupy those chip-select rows.
415 *
416 * Bank: This term is avoided because it is unclear when
417 * needing to distinguish between chip-select rows and
418 * socket sets.
419 *
420 * Controller pages:
421 *
422 * Physical pages:
423 *
424 * Virtual pages:
425 *
426 *
427 * STRUCTURE ORGANIZATION AND CHOICES
428 *
429 *
430 *
431 * PS - I enjoyed writing all that about as much as you enjoyed reading it.
432 */
433
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300434/**
435 * enum edac_mc_layer - memory controller hierarchy layer
436 *
437 * @EDAC_MC_LAYER_BRANCH: memory layer is named "branch"
438 * @EDAC_MC_LAYER_CHANNEL: memory layer is named "channel"
439 * @EDAC_MC_LAYER_SLOT: memory layer is named "slot"
440 * @EDAC_MC_LAYER_CHIP_SELECT: memory layer is named "chip select"
Mauro Carvalho Chehabc66b5a72013-02-15 07:21:08 -0300441 * @EDAC_MC_LAYER_ALL_MEM: memory layout is unknown. All memory is mapped
442 * as a single memory area. This is used when
443 * retrieving errors from a firmware driven driver.
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300444 *
445 * This enum is used by the drivers to tell edac_mc_sysfs what name should
446 * be used when describing a memory stick location.
447 */
448enum edac_mc_layer_type {
449 EDAC_MC_LAYER_BRANCH,
450 EDAC_MC_LAYER_CHANNEL,
451 EDAC_MC_LAYER_SLOT,
452 EDAC_MC_LAYER_CHIP_SELECT,
Mauro Carvalho Chehabc66b5a72013-02-15 07:21:08 -0300453 EDAC_MC_LAYER_ALL_MEM,
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300454};
455
456/**
457 * struct edac_mc_layer - describes the memory controller hierarchy
458 * @layer: layer type
459 * @size: number of components per layer. For example,
460 * if the channel layer has two channels, size = 2
461 * @is_virt_csrow: This layer is part of the "csrow" when old API
462 * compatibility mode is enabled. Otherwise, it is
463 * a channel
464 */
465struct edac_mc_layer {
466 enum edac_mc_layer_type type;
467 unsigned size;
468 bool is_virt_csrow;
469};
470
471/*
472 * Maximum number of layers used by the memory controller to uniquely
473 * identify a single memory stick.
474 * NOTE: Changing this constant requires not only to change the constant
475 * below, but also to change the existing code at the core, as there are
476 * some code there that are optimized for 3 layers.
477 */
478#define EDAC_MAX_LAYERS 3
479
480/**
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300481 * EDAC_DIMM_OFF - Macro responsible to get a pointer offset inside a pointer array
482 * for the element given by [layer0,layer1,layer2] position
483 *
484 * @layers: a struct edac_mc_layer array, describing how many elements
485 * were allocated for each layer
486 * @n_layers: Number of layers at the @layers array
487 * @layer0: layer0 position
488 * @layer1: layer1 position. Unused if n_layers < 2
489 * @layer2: layer2 position. Unused if n_layers < 3
490 *
491 * For 1 layer, this macro returns &var[layer0] - &var
492 * For 2 layers, this macro is similar to allocate a bi-dimensional array
493 * and to return "&var[layer0][layer1] - &var"
494 * For 3 layers, this macro is similar to allocate a tri-dimensional array
495 * and to return "&var[layer0][layer1][layer2] - &var"
496 *
497 * A loop could be used here to make it more generic, but, as we only have
498 * 3 layers, this is a little faster.
499 * By design, layers can never be 0 or more than 3. If that ever happens,
500 * a NULL is returned, causing an OOPS during the memory allocation routine,
501 * with would point to the developer that he's doing something wrong.
502 */
503#define EDAC_DIMM_OFF(layers, nlayers, layer0, layer1, layer2) ({ \
504 int __i; \
505 if ((nlayers) == 1) \
506 __i = layer0; \
507 else if ((nlayers) == 2) \
508 __i = (layer1) + ((layers[1]).size * (layer0)); \
509 else if ((nlayers) == 3) \
510 __i = (layer2) + ((layers[2]).size * ((layer1) + \
511 ((layers[1]).size * (layer0)))); \
512 else \
513 __i = -EINVAL; \
514 __i; \
515})
516
517/**
518 * EDAC_DIMM_PTR - Macro responsible to get a pointer inside a pointer array
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300519 * for the element given by [layer0,layer1,layer2] position
520 *
521 * @layers: a struct edac_mc_layer array, describing how many elements
522 * were allocated for each layer
523 * @var: name of the var where we want to get the pointer
524 * (like mci->dimms)
525 * @n_layers: Number of layers at the @layers array
526 * @layer0: layer0 position
527 * @layer1: layer1 position. Unused if n_layers < 2
528 * @layer2: layer2 position. Unused if n_layers < 3
529 *
530 * For 1 layer, this macro returns &var[layer0]
531 * For 2 layers, this macro is similar to allocate a bi-dimensional array
532 * and to return "&var[layer0][layer1]"
533 * For 3 layers, this macro is similar to allocate a tri-dimensional array
534 * and to return "&var[layer0][layer1][layer2]"
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300535 */
536#define EDAC_DIMM_PTR(layers, var, nlayers, layer0, layer1, layer2) ({ \
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300537 typeof(*var) __p; \
538 int ___i = EDAC_DIMM_OFF(layers, nlayers, layer0, layer1, layer2); \
539 if (___i < 0) \
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300540 __p = NULL; \
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300541 else \
542 __p = (var)[___i]; \
Mauro Carvalho Chehab982216a2012-04-16 13:04:46 -0300543 __p; \
544})
545
Mauro Carvalho Chehaba7d7d2e2012-01-27 14:12:32 -0300546struct dimm_info {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300547 struct device dev;
548
Mauro Carvalho Chehaba7d7d2e2012-01-27 14:12:32 -0300549 char label[EDAC_MC_LABEL_LEN + 1]; /* DIMM label on motherboard */
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300550
551 /* Memory location data */
552 unsigned location[EDAC_MAX_LAYERS];
553
554 struct mem_ctl_info *mci; /* the parent */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300555
556 u32 grain; /* granularity of reported error in bytes */
557 enum dev_type dtype; /* memory device type */
558 enum mem_type mtype; /* memory dimm type */
559 enum edac_type edac_mode; /* EDAC mode for this dimm */
560
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300561 u32 nr_pages; /* number of pages on this dimm */
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300562
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300563 unsigned csrow, cschannel; /* Points to the old API data */
Mauro Carvalho Chehaba7d7d2e2012-01-27 14:12:32 -0300564};
565
Mauro Carvalho Chehaba4b4be32012-01-27 10:26:13 -0300566/**
567 * struct rank_info - contains the information for one DIMM rank
568 *
569 * @chan_idx: channel number where the rank is (typically, 0 or 1)
570 * @ce_count: number of correctable errors for this rank
Mauro Carvalho Chehaba4b4be32012-01-27 10:26:13 -0300571 * @csrow: A pointer to the chip select row structure (the parent
572 * structure). The location of the rank is given by
573 * the (csrow->csrow_idx, chan_idx) vector.
Mauro Carvalho Chehaba7d7d2e2012-01-27 14:12:32 -0300574 * @dimm: A pointer to the DIMM structure, where the DIMM label
575 * information is stored.
576 *
577 * FIXME: Currently, the EDAC core model will assume one DIMM per rank.
578 * This is a bad assumption, but it makes this patch easier. Later
579 * patches in this series will fix this issue.
Mauro Carvalho Chehaba4b4be32012-01-27 10:26:13 -0300580 */
581struct rank_info {
582 int chan_idx;
Mauro Carvalho Chehaba7d7d2e2012-01-27 14:12:32 -0300583 struct csrow_info *csrow;
584 struct dimm_info *dimm;
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300585
586 u32 ce_count; /* Correctable Errors for this csrow */
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300587};
588
589struct csrow_info {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300590 struct device dev;
591
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300592 /* Used only by edac_mc_find_csrow_by_page() */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300593 unsigned long first_page; /* first page number in csrow */
594 unsigned long last_page; /* last page number in csrow */
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300595 unsigned long page_mask; /* used for interleaving -
Mauro Carvalho Chehaba895bf82012-01-28 09:09:38 -0300596 * 0UL for non intlv */
597
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300598 int csrow_idx; /* the chip-select row */
599
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300600 u32 ue_count; /* Uncorrectable Errors for this csrow */
601 u32 ce_count; /* Correctable Errors for this csrow */
Mauro Carvalho Chehab084a4fc2012-01-27 18:38:08 -0300602
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300603 struct mem_ctl_info *mci; /* the parent */
604
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300605 /* channel information for this csrow */
606 u32 nr_channels;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300607 struct rank_info **channels;
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300608};
609
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300610/*
611 * struct errcount_attribute - used to store the several error counts
612 */
613struct errcount_attribute_data {
614 int n_layers;
615 int pos[EDAC_MAX_LAYERS];
616 int layer0, layer1, layer2;
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300617};
618
Mauro Carvalho Chehabc7ef7642013-02-21 13:36:45 -0300619/**
620 * edac_raw_error_desc - Raw error report structure
621 * @grain: minimum granularity for an error report, in bytes
622 * @error_count: number of errors of the same type
623 * @top_layer: top layer of the error (layer[0])
624 * @mid_layer: middle layer of the error (layer[1])
625 * @low_layer: low layer of the error (layer[2])
626 * @page_frame_number: page where the error happened
627 * @offset_in_page: page offset
628 * @syndrome: syndrome of the error (or 0 if unknown or if
629 * the syndrome is not applicable)
630 * @msg: error message
631 * @location: location of the error
632 * @label: label of the affected DIMM(s)
633 * @other_detail: other driver-specific detail about the error
634 * @enable_per_layer_report: if false, the error affects all layers
635 * (typically, a memory controller error)
636 */
637struct edac_raw_error_desc {
638 /*
639 * NOTE: everything before grain won't be cleaned by
640 * edac_raw_error_desc_clean()
641 */
642 char location[LOCATION_SIZE];
643 char label[(EDAC_MC_LABEL_LEN + 1 + sizeof(OTHER_LABEL)) * EDAC_MAX_LABELS];
644 long grain;
645
646 /* the vars below and grain will be cleaned on every new error report */
647 u16 error_count;
648 int top_layer;
649 int mid_layer;
650 int low_layer;
651 unsigned long page_frame_number;
652 unsigned long offset_in_page;
653 unsigned long syndrome;
654 const char *msg;
655 const char *other_detail;
656 bool enable_per_layer_report;
657};
658
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300659/* MEMORY controller information structure
660 */
661struct mem_ctl_info {
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300662 struct device dev;
Borislav Petkov88d84ac2013-07-19 12:28:25 +0200663 struct bus_type *bus;
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300664
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300665 struct list_head link; /* for global list of mem_ctl_info structs */
666
667 struct module *owner; /* Module owner of this control struct */
668
669 unsigned long mtype_cap; /* memory types supported by mc */
670 unsigned long edac_ctl_cap; /* Mem controller EDAC capabilities */
671 unsigned long edac_cap; /* configuration capabilities - this is
672 * closely related to edac_ctl_cap. The
673 * difference is that the controller may be
674 * capable of s4ecd4ed which would be listed
675 * in edac_ctl_cap, but if channels aren't
676 * capable of s4ecd4ed then the edac_cap would
677 * not have that capability.
678 */
679 unsigned long scrub_cap; /* chipset scrub capabilities */
680 enum scrub_type scrub_mode; /* current scrub mode */
681
682 /* Translates sdram memory scrub rate given in bytes/sec to the
683 internal representation and configures whatever else needs
684 to be configured.
685 */
686 int (*set_sdram_scrub_rate) (struct mem_ctl_info * mci, u32 bw);
687
688 /* Get the current sdram memory scrub rate from the internal
689 representation and converts it to the closest matching
690 bandwidth in bytes/sec.
691 */
692 int (*get_sdram_scrub_rate) (struct mem_ctl_info * mci);
693
694
695 /* pointer to edac checking routine */
696 void (*edac_check) (struct mem_ctl_info * mci);
697
698 /*
699 * Remaps memory pages: controller pages to physical pages.
700 * For most MC's, this will be NULL.
701 */
702 /* FIXME - why not send the phys page to begin with? */
703 unsigned long (*ctl_page_to_phys) (struct mem_ctl_info * mci,
704 unsigned long page);
705 int mc_idx;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300706 struct csrow_info **csrows;
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300707 unsigned nr_csrows, num_cschannel;
708
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300709 /*
710 * Memory Controller hierarchy
711 *
712 * There are basically two types of memory controller: the ones that
713 * sees memory sticks ("dimms"), and the ones that sees memory ranks.
714 * All old memory controllers enumerate memories per rank, but most
715 * of the recent drivers enumerate memories per DIMM, instead.
Mauro Carvalho Chehab9713fae2013-03-11 09:28:48 -0300716 * When the memory controller is per rank, csbased is true.
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -0300717 */
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300718 unsigned n_layers;
719 struct edac_mc_layer *layers;
Mauro Carvalho Chehab9713fae2013-03-11 09:28:48 -0300720 bool csbased;
Mauro Carvalho Chehaba7d7d2e2012-01-27 14:12:32 -0300721
722 /*
723 * DIMM info. Will eventually remove the entire csrows_info some day
724 */
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300725 unsigned tot_dimms;
Mauro Carvalho Chehabde3910eb2012-04-24 15:05:43 -0300726 struct dimm_info **dimms;
Mauro Carvalho Chehaba7d7d2e2012-01-27 14:12:32 -0300727
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300728 /*
729 * FIXME - what about controllers on other busses? - IDs must be
730 * unique. dev pointer should be sufficiently unique, but
731 * BUS:SLOT.FUNC numbers may not be unique.
732 */
Mauro Carvalho Chehabfd687502012-03-16 07:44:18 -0300733 struct device *pdev;
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300734 const char *mod_name;
735 const char *mod_ver;
736 const char *ctl_name;
737 const char *dev_name;
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300738 void *pvt_info;
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300739 unsigned long start_time; /* mci load start time (in jiffies) */
740
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300741 /*
742 * drivers shouldn't access those fields directly, as the core
743 * already handles that.
744 */
745 u32 ce_noinfo_count, ue_noinfo_count;
Mauro Carvalho Chehab5926ff52012-02-09 11:05:20 -0300746 u32 ue_mc, ce_mc;
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300747 u32 *ce_per_layer[EDAC_MAX_LAYERS], *ue_per_layer[EDAC_MAX_LAYERS];
748
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300749 struct completion complete;
750
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300751 /* Additional top controller level attributes, but specified
752 * by the low level driver.
753 *
754 * Set by the low level driver to provide attributes at the
Mauro Carvalho Chehab4275be62012-04-18 15:20:50 -0300755 * controller level.
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300756 * An array of structures, NULL terminated
757 *
758 * If attributes are desired, then set to array of attributes
759 * If no attributes are desired, leave NULL
760 */
761 const struct mcidev_sysfs_attribute *mc_driver_sysfs_attributes;
762
763 /* work struct for this MC */
764 struct delayed_work work;
765
Mauro Carvalho Chehabc7ef7642013-02-21 13:36:45 -0300766 /*
767 * Used to report an error - by being at the global struct
768 * makes the memory allocated by the EDAC core
769 */
770 struct edac_raw_error_desc error_desc;
771
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300772 /* the internal state of this controller instance */
773 int op_state;
Mauro Carvalho Chehab452a6bf2012-03-26 09:35:11 -0300774
Mauro Carvalho Chehab452a6bf2012-03-26 09:35:11 -0300775 struct dentry *debugfs;
776 u8 fake_inject_layer[EDAC_MAX_LAYERS];
Viresh Kumar621a5f72015-09-26 15:04:07 -0700777 bool fake_inject_ue;
Mauro Carvalho Chehab38ced282012-06-12 10:55:57 -0300778 u16 fake_inject_count;
Mauro Carvalho Chehabddeb3542011-03-04 15:11:29 -0300779};
780
Borislav Petkov88d84ac2013-07-19 12:28:25 +0200781/*
782 * Maximum number of memory controllers in the coherent fabric.
783 */
784#define EDAC_MAX_MCS 16
785
Dave Jiangc0d12172007-07-19 01:49:46 -0700786#endif