]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/edac.h
rapidio: fix blocking wait for discovery ready
[mirror_ubuntu-artful-kernel.git] / include / linux / edac.h
CommitLineData
c0d12172
DJ
1/*
2 * Generic EDAC defs
3 *
4 * Author: Dave Jiang <djiang@mvista.com>
5 *
c3c52bce 6 * 2006-2008 (c) MontaVista Software, Inc. This file is licensed under
c0d12172
DJ
7 * 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
60063497 15#include <linux/atomic.h>
7a623c03 16#include <linux/device.h>
313162d0
PG
17#include <linux/kobject.h>
18#include <linux/completion.h>
19#include <linux/workqueue.h>
452a6bf9 20#include <linux/debugfs.h>
313162d0
PG
21
22struct device;
c0d12172
DJ
23
24#define EDAC_OPSTATE_INVAL -1
25#define EDAC_OPSTATE_POLL 0
26#define EDAC_OPSTATE_NMI 1
27#define EDAC_OPSTATE_INT 2
28
29extern int edac_op_state;
66ee2f94 30extern int edac_err_assert;
c0d12172 31extern atomic_t edac_handlers;
fe5ff8b8 32extern struct bus_type edac_subsys;
c0d12172
DJ
33
34extern int edac_handler_set(void);
35extern void edac_atomic_assert_error(void);
fe5ff8b8
KS
36extern struct bus_type *edac_get_sysfs_subsys(void);
37extern void edac_put_sysfs_subsys(void);
c0d12172 38
c3c52bce
HM
39static inline void opstate_init(void)
40{
41 switch (edac_op_state) {
42 case EDAC_OPSTATE_POLL:
43 case EDAC_OPSTATE_NMI:
44 break;
45 default:
46 edac_op_state = EDAC_OPSTATE_POLL;
47 }
48 return;
49}
50
ddeb3547
MCC
51#define EDAC_MC_LABEL_LEN 31
52#define MC_PROC_NAME_MAX_LEN 7
53
b0610bb8
MCC
54/**
55 * enum dev_type - describe the type of memory DRAM chips used at the stick
56 * @DEV_UNKNOWN: Can't be determined, or MC doesn't support detect it
57 * @DEV_X1: 1 bit for data
58 * @DEV_X2: 2 bits for data
59 * @DEV_X4: 4 bits for data
60 * @DEV_X8: 8 bits for data
61 * @DEV_X16: 16 bits for data
62 * @DEV_X32: 32 bits for data
63 * @DEV_X64: 64 bits for data
64 *
65 * Typical values are x4 and x8.
66 */
ddeb3547
MCC
67enum dev_type {
68 DEV_UNKNOWN = 0,
69 DEV_X1,
70 DEV_X2,
71 DEV_X4,
72 DEV_X8,
73 DEV_X16,
74 DEV_X32, /* Do these parts exist? */
75 DEV_X64 /* Do these parts exist? */
76};
77
78#define DEV_FLAG_UNKNOWN BIT(DEV_UNKNOWN)
79#define DEV_FLAG_X1 BIT(DEV_X1)
80#define DEV_FLAG_X2 BIT(DEV_X2)
81#define DEV_FLAG_X4 BIT(DEV_X4)
82#define DEV_FLAG_X8 BIT(DEV_X8)
83#define DEV_FLAG_X16 BIT(DEV_X16)
84#define DEV_FLAG_X32 BIT(DEV_X32)
85#define DEV_FLAG_X64 BIT(DEV_X64)
86
982216a4
MCC
87/**
88 * enum hw_event_mc_err_type - type of the detected error
89 *
90 * @HW_EVENT_ERR_CORRECTED: Corrected Error - Indicates that an ECC
91 * corrected error was detected
92 * @HW_EVENT_ERR_UNCORRECTED: Uncorrected Error - Indicates an error that
93 * can't be corrected by ECC, but it is not
94 * fatal (maybe it is on an unused memory area,
95 * or the memory controller could recover from
96 * it for example, by re-trying the operation).
97 * @HW_EVENT_ERR_FATAL: Fatal Error - Uncorrected error that could not
98 * be recovered.
99 */
100enum hw_event_mc_err_type {
101 HW_EVENT_ERR_CORRECTED,
102 HW_EVENT_ERR_UNCORRECTED,
103 HW_EVENT_ERR_FATAL,
104};
105
01a6e28b
MCC
106/**
107 * enum mem_type - memory types. For a more detailed reference, please see
108 * http://en.wikipedia.org/wiki/DRAM
109 *
110 * @MEM_EMPTY Empty csrow
111 * @MEM_RESERVED: Reserved csrow type
112 * @MEM_UNKNOWN: Unknown csrow type
113 * @MEM_FPM: FPM - Fast Page Mode, used on systems up to 1995.
114 * @MEM_EDO: EDO - Extended data out, used on systems up to 1998.
115 * @MEM_BEDO: BEDO - Burst Extended data out, an EDO variant.
116 * @MEM_SDR: SDR - Single data rate SDRAM
117 * http://en.wikipedia.org/wiki/Synchronous_dynamic_random-access_memory
118 * They use 3 pins for chip select: Pins 0 and 2 are
119 * for rank 0; pins 1 and 3 are for rank 1, if the memory
120 * is dual-rank.
121 * @MEM_RDR: Registered SDR SDRAM
122 * @MEM_DDR: Double data rate SDRAM
123 * http://en.wikipedia.org/wiki/DDR_SDRAM
124 * @MEM_RDDR: Registered Double data rate SDRAM
125 * This is a variant of the DDR memories.
126 * A registered memory has a buffer inside it, hiding
127 * part of the memory details to the memory controller.
128 * @MEM_RMBS: Rambus DRAM, used on a few Pentium III/IV controllers.
129 * @MEM_DDR2: DDR2 RAM, as described at JEDEC JESD79-2F.
130 * Those memories are labed as "PC2-" instead of "PC" to
131 * differenciate from DDR.
132 * @MEM_FB_DDR2: Fully-Buffered DDR2, as described at JEDEC Std No. 205
133 * and JESD206.
134 * Those memories are accessed per DIMM slot, and not by
135 * a chip select signal.
136 * @MEM_RDDR2: Registered DDR2 RAM
137 * This is a variant of the DDR2 memories.
138 * @MEM_XDR: Rambus XDR
139 * It is an evolution of the original RAMBUS memories,
140 * created to compete with DDR2. Weren't used on any
141 * x86 arch, but cell_edac PPC memory controller uses it.
142 * @MEM_DDR3: DDR3 RAM
143 * @MEM_RDDR3: Registered DDR3 RAM
144 * This is a variant of the DDR3 memories.
145 */
ddeb3547 146enum mem_type {
01a6e28b
MCC
147 MEM_EMPTY = 0,
148 MEM_RESERVED,
149 MEM_UNKNOWN,
150 MEM_FPM,
151 MEM_EDO,
152 MEM_BEDO,
153 MEM_SDR,
154 MEM_RDR,
155 MEM_DDR,
156 MEM_RDDR,
157 MEM_RMBS,
158 MEM_DDR2,
159 MEM_FB_DDR2,
160 MEM_RDDR2,
161 MEM_XDR,
162 MEM_DDR3,
163 MEM_RDDR3,
ddeb3547
MCC
164};
165
166#define MEM_FLAG_EMPTY BIT(MEM_EMPTY)
167#define MEM_FLAG_RESERVED BIT(MEM_RESERVED)
168#define MEM_FLAG_UNKNOWN BIT(MEM_UNKNOWN)
169#define MEM_FLAG_FPM BIT(MEM_FPM)
170#define MEM_FLAG_EDO BIT(MEM_EDO)
171#define MEM_FLAG_BEDO BIT(MEM_BEDO)
172#define MEM_FLAG_SDR BIT(MEM_SDR)
173#define MEM_FLAG_RDR BIT(MEM_RDR)
174#define MEM_FLAG_DDR BIT(MEM_DDR)
175#define MEM_FLAG_RDDR BIT(MEM_RDDR)
176#define MEM_FLAG_RMBS BIT(MEM_RMBS)
177#define MEM_FLAG_DDR2 BIT(MEM_DDR2)
178#define MEM_FLAG_FB_DDR2 BIT(MEM_FB_DDR2)
179#define MEM_FLAG_RDDR2 BIT(MEM_RDDR2)
180#define MEM_FLAG_XDR BIT(MEM_XDR)
181#define MEM_FLAG_DDR3 BIT(MEM_DDR3)
182#define MEM_FLAG_RDDR3 BIT(MEM_RDDR3)
183
b0610bb8
MCC
184/**
185 * enum edac-type - Error Detection and Correction capabilities and mode
186 * @EDAC_UNKNOWN: Unknown if ECC is available
187 * @EDAC_NONE: Doesn't support ECC
188 * @EDAC_RESERVED: Reserved ECC type
189 * @EDAC_PARITY: Detects parity errors
190 * @EDAC_EC: Error Checking - no correction
191 * @EDAC_SECDED: Single bit error correction, Double detection
192 * @EDAC_S2ECD2ED: Chipkill x2 devices - do these exist?
193 * @EDAC_S4ECD4ED: Chipkill x4 devices
194 * @EDAC_S8ECD8ED: Chipkill x8 devices
195 * @EDAC_S16ECD16ED: Chipkill x16 devices
196 */
ddeb3547 197enum edac_type {
b0610bb8
MCC
198 EDAC_UNKNOWN = 0,
199 EDAC_NONE,
200 EDAC_RESERVED,
201 EDAC_PARITY,
202 EDAC_EC,
203 EDAC_SECDED,
204 EDAC_S2ECD2ED,
205 EDAC_S4ECD4ED,
206 EDAC_S8ECD8ED,
207 EDAC_S16ECD16ED,
ddeb3547
MCC
208};
209
210#define EDAC_FLAG_UNKNOWN BIT(EDAC_UNKNOWN)
211#define EDAC_FLAG_NONE BIT(EDAC_NONE)
212#define EDAC_FLAG_PARITY BIT(EDAC_PARITY)
213#define EDAC_FLAG_EC BIT(EDAC_EC)
214#define EDAC_FLAG_SECDED BIT(EDAC_SECDED)
215#define EDAC_FLAG_S2ECD2ED BIT(EDAC_S2ECD2ED)
216#define EDAC_FLAG_S4ECD4ED BIT(EDAC_S4ECD4ED)
217#define EDAC_FLAG_S8ECD8ED BIT(EDAC_S8ECD8ED)
218#define EDAC_FLAG_S16ECD16ED BIT(EDAC_S16ECD16ED)
219
b0610bb8
MCC
220/**
221 * enum scrub_type - scrubbing capabilities
222 * @SCRUB_UNKNOWN Unknown if scrubber is available
223 * @SCRUB_NONE: No scrubber
224 * @SCRUB_SW_PROG: SW progressive (sequential) scrubbing
225 * @SCRUB_SW_SRC: Software scrub only errors
226 * @SCRUB_SW_PROG_SRC: Progressive software scrub from an error
227 * @SCRUB_SW_TUNABLE: Software scrub frequency is tunable
228 * @SCRUB_HW_PROG: HW progressive (sequential) scrubbing
229 * @SCRUB_HW_SRC: Hardware scrub only errors
230 * @SCRUB_HW_PROG_SRC: Progressive hardware scrub from an error
231 * SCRUB_HW_TUNABLE: Hardware scrub frequency is tunable
232 */
ddeb3547 233enum scrub_type {
b0610bb8
MCC
234 SCRUB_UNKNOWN = 0,
235 SCRUB_NONE,
236 SCRUB_SW_PROG,
237 SCRUB_SW_SRC,
238 SCRUB_SW_PROG_SRC,
239 SCRUB_SW_TUNABLE,
240 SCRUB_HW_PROG,
241 SCRUB_HW_SRC,
242 SCRUB_HW_PROG_SRC,
243 SCRUB_HW_TUNABLE
ddeb3547
MCC
244};
245
246#define SCRUB_FLAG_SW_PROG BIT(SCRUB_SW_PROG)
247#define SCRUB_FLAG_SW_SRC BIT(SCRUB_SW_SRC)
248#define SCRUB_FLAG_SW_PROG_SRC BIT(SCRUB_SW_PROG_SRC)
249#define SCRUB_FLAG_SW_TUN BIT(SCRUB_SW_SCRUB_TUNABLE)
250#define SCRUB_FLAG_HW_PROG BIT(SCRUB_HW_PROG)
251#define SCRUB_FLAG_HW_SRC BIT(SCRUB_HW_SRC)
252#define SCRUB_FLAG_HW_PROG_SRC BIT(SCRUB_HW_PROG_SRC)
253#define SCRUB_FLAG_HW_TUN BIT(SCRUB_HW_TUNABLE)
254
255/* FIXME - should have notify capabilities: NMI, LOG, PROC, etc */
256
257/* EDAC internal operation states */
258#define OP_ALLOC 0x100
259#define OP_RUNNING_POLL 0x201
260#define OP_RUNNING_INTERRUPT 0x202
261#define OP_RUNNING_POLL_INTR 0x203
262#define OP_OFFLINE 0x300
263
264/*
01a6e28b 265 * Concepts used at the EDAC subsystem
ddeb3547 266 *
01a6e28b 267 * There are several things to be aware of that aren't at all obvious:
ddeb3547
MCC
268 *
269 * SOCKETS, SOCKET SETS, BANKS, ROWS, CHIP-SELECT ROWS, CHANNELS, etc..
270 *
271 * These are some of the many terms that are thrown about that don't always
272 * mean what people think they mean (Inconceivable!). In the interest of
273 * creating a common ground for discussion, terms and their definitions
274 * will be established.
275 *
01a6e28b
MCC
276 * Memory devices: The individual DRAM chips on a memory stick. These
277 * devices commonly output 4 and 8 bits each (x4, x8).
278 * Grouping several of these in parallel provides the
279 * number of bits that the memory controller expects:
280 * typically 72 bits, in order to provide 64 bits +
281 * 8 bits of ECC data.
ddeb3547
MCC
282 *
283 * Memory Stick: A printed circuit board that aggregates multiple
01a6e28b
MCC
284 * memory devices in parallel. In general, this is the
285 * Field Replaceable Unit (FRU) which gets replaced, in
286 * the case of excessive errors. Most often it is also
287 * called DIMM (Dual Inline Memory Module).
288 *
289 * Memory Socket: A physical connector on the motherboard that accepts
290 * a single memory stick. Also called as "slot" on several
291 * datasheets.
ddeb3547 292 *
01a6e28b
MCC
293 * Channel: A memory controller channel, responsible to communicate
294 * with a group of DIMMs. Each channel has its own
295 * independent control (command) and data bus, and can
296 * be used independently or grouped with other channels.
ddeb3547 297 *
01a6e28b
MCC
298 * Branch: It is typically the highest hierarchy on a
299 * Fully-Buffered DIMM memory controller.
300 * Typically, it contains two channels.
301 * Two channels at the same branch can be used in single
302 * mode or in lockstep mode.
303 * When lockstep is enabled, the cacheline is doubled,
304 * but it generally brings some performance penalty.
305 * Also, it is generally not possible to point to just one
306 * memory stick when an error occurs, as the error
307 * correction code is calculated using two DIMMs instead
308 * of one. Due to that, it is capable of correcting more
309 * errors than on single mode.
ddeb3547 310 *
01a6e28b
MCC
311 * Single-channel: The data accessed by the memory controller is contained
312 * into one dimm only. E. g. if the data is 64 bits-wide,
313 * the data flows to the CPU using one 64 bits parallel
314 * access.
315 * Typically used with SDR, DDR, DDR2 and DDR3 memories.
316 * FB-DIMM and RAMBUS use a different concept for channel,
317 * so this concept doesn't apply there.
318 *
319 * Double-channel: The data size accessed by the memory controller is
320 * interlaced into two dimms, accessed at the same time.
321 * E. g. if the DIMM is 64 bits-wide (72 bits with ECC),
322 * the data flows to the CPU using a 128 bits parallel
323 * access.
324 *
325 * Chip-select row: This is the name of the DRAM signal used to select the
326 * DRAM ranks to be accessed. Common chip-select rows for
327 * single channel are 64 bits, for dual channel 128 bits.
328 * It may not be visible by the memory controller, as some
329 * DIMM types have a memory buffer that can hide direct
330 * access to it from the Memory Controller.
ddeb3547
MCC
331 *
332 * Single-Ranked stick: A Single-ranked stick has 1 chip-select row of memory.
333 * Motherboards commonly drive two chip-select pins to
334 * a memory stick. A single-ranked stick, will occupy
335 * only one of those rows. The other will be unused.
336 *
337 * Double-Ranked stick: A double-ranked stick has two chip-select rows which
338 * access different sets of memory devices. The two
339 * rows cannot be accessed concurrently.
340 *
341 * Double-sided stick: DEPRECATED TERM, see Double-Ranked stick.
342 * A double-sided stick has two chip-select rows which
01a6e28b
MCC
343 * access different sets of memory devices. The two
344 * rows cannot be accessed concurrently. "Double-sided"
ddeb3547
MCC
345 * is irrespective of the memory devices being mounted
346 * on both sides of the memory stick.
347 *
348 * Socket set: All of the memory sticks that are required for
349 * a single memory access or all of the memory sticks
350 * spanned by a chip-select row. A single socket set
351 * has two chip-select rows and if double-sided sticks
352 * are used these will occupy those chip-select rows.
353 *
354 * Bank: This term is avoided because it is unclear when
355 * needing to distinguish between chip-select rows and
356 * socket sets.
357 *
358 * Controller pages:
359 *
360 * Physical pages:
361 *
362 * Virtual pages:
363 *
364 *
365 * STRUCTURE ORGANIZATION AND CHOICES
366 *
367 *
368 *
369 * PS - I enjoyed writing all that about as much as you enjoyed reading it.
370 */
371
982216a4
MCC
372/**
373 * enum edac_mc_layer - memory controller hierarchy layer
374 *
375 * @EDAC_MC_LAYER_BRANCH: memory layer is named "branch"
376 * @EDAC_MC_LAYER_CHANNEL: memory layer is named "channel"
377 * @EDAC_MC_LAYER_SLOT: memory layer is named "slot"
378 * @EDAC_MC_LAYER_CHIP_SELECT: memory layer is named "chip select"
379 *
380 * This enum is used by the drivers to tell edac_mc_sysfs what name should
381 * be used when describing a memory stick location.
382 */
383enum edac_mc_layer_type {
384 EDAC_MC_LAYER_BRANCH,
385 EDAC_MC_LAYER_CHANNEL,
386 EDAC_MC_LAYER_SLOT,
387 EDAC_MC_LAYER_CHIP_SELECT,
388};
389
390/**
391 * struct edac_mc_layer - describes the memory controller hierarchy
392 * @layer: layer type
393 * @size: number of components per layer. For example,
394 * if the channel layer has two channels, size = 2
395 * @is_virt_csrow: This layer is part of the "csrow" when old API
396 * compatibility mode is enabled. Otherwise, it is
397 * a channel
398 */
399struct edac_mc_layer {
400 enum edac_mc_layer_type type;
401 unsigned size;
402 bool is_virt_csrow;
403};
404
405/*
406 * Maximum number of layers used by the memory controller to uniquely
407 * identify a single memory stick.
408 * NOTE: Changing this constant requires not only to change the constant
409 * below, but also to change the existing code at the core, as there are
410 * some code there that are optimized for 3 layers.
411 */
412#define EDAC_MAX_LAYERS 3
413
414/**
de3910eb 415 * EDAC_DIMM_OFF - Macro responsible to get a pointer offset inside a pointer array
982216a4
MCC
416 * for the element given by [layer0,layer1,layer2] position
417 *
418 * @layers: a struct edac_mc_layer array, describing how many elements
419 * were allocated for each layer
982216a4
MCC
420 * @n_layers: Number of layers at the @layers array
421 * @layer0: layer0 position
422 * @layer1: layer1 position. Unused if n_layers < 2
423 * @layer2: layer2 position. Unused if n_layers < 3
424 *
de3910eb 425 * For 1 layer, this macro returns &var[layer0] - &var
982216a4 426 * For 2 layers, this macro is similar to allocate a bi-dimensional array
de3910eb 427 * and to return "&var[layer0][layer1] - &var"
982216a4 428 * For 3 layers, this macro is similar to allocate a tri-dimensional array
de3910eb 429 * and to return "&var[layer0][layer1][layer2] - &var"
982216a4
MCC
430 *
431 * A loop could be used here to make it more generic, but, as we only have
432 * 3 layers, this is a little faster.
433 * By design, layers can never be 0 or more than 3. If that ever happens,
434 * a NULL is returned, causing an OOPS during the memory allocation routine,
435 * with would point to the developer that he's doing something wrong.
436 */
de3910eb
MCC
437#define EDAC_DIMM_OFF(layers, nlayers, layer0, layer1, layer2) ({ \
438 int __i; \
982216a4 439 if ((nlayers) == 1) \
de3910eb 440 __i = layer0; \
982216a4 441 else if ((nlayers) == 2) \
de3910eb 442 __i = (layer1) + ((layers[1]).size * (layer0)); \
982216a4 443 else if ((nlayers) == 3) \
de3910eb
MCC
444 __i = (layer2) + ((layers[2]).size * ((layer1) + \
445 ((layers[1]).size * (layer0)))); \
982216a4 446 else \
de3910eb
MCC
447 __i = -EINVAL; \
448 __i; \
449})
450
451/**
452 * EDAC_DIMM_PTR - Macro responsible to get a pointer inside a pointer array
453 * for the element given by [layer0,layer1,layer2] position
454 *
455 * @layers: a struct edac_mc_layer array, describing how many elements
456 * were allocated for each layer
457 * @var: name of the var where we want to get the pointer
458 * (like mci->dimms)
459 * @n_layers: Number of layers at the @layers array
460 * @layer0: layer0 position
461 * @layer1: layer1 position. Unused if n_layers < 2
462 * @layer2: layer2 position. Unused if n_layers < 3
463 *
464 * For 1 layer, this macro returns &var[layer0]
465 * For 2 layers, this macro is similar to allocate a bi-dimensional array
466 * and to return "&var[layer0][layer1]"
467 * For 3 layers, this macro is similar to allocate a tri-dimensional array
468 * and to return "&var[layer0][layer1][layer2]"
469 */
470#define EDAC_DIMM_PTR(layers, var, nlayers, layer0, layer1, layer2) ({ \
471 typeof(*var) __p; \
472 int ___i = EDAC_DIMM_OFF(layers, nlayers, layer0, layer1, layer2); \
473 if (___i < 0) \
982216a4 474 __p = NULL; \
de3910eb
MCC
475 else \
476 __p = (var)[___i]; \
982216a4
MCC
477 __p; \
478})
479
a7d7d2e1 480struct dimm_info {
7a623c03
MCC
481 struct device dev;
482
a7d7d2e1 483 char label[EDAC_MC_LABEL_LEN + 1]; /* DIMM label on motherboard */
4275be63
MCC
484
485 /* Memory location data */
486 unsigned location[EDAC_MAX_LAYERS];
487
488 struct mem_ctl_info *mci; /* the parent */
084a4fcc
MCC
489
490 u32 grain; /* granularity of reported error in bytes */
491 enum dev_type dtype; /* memory device type */
492 enum mem_type mtype; /* memory dimm type */
493 enum edac_type edac_mode; /* EDAC mode for this dimm */
494
4275be63 495 u32 nr_pages; /* number of pages on this dimm */
a895bf8b 496
4275be63 497 unsigned csrow, cschannel; /* Points to the old API data */
a7d7d2e1
MCC
498};
499
a4b4be3f
MCC
500/**
501 * struct rank_info - contains the information for one DIMM rank
502 *
503 * @chan_idx: channel number where the rank is (typically, 0 or 1)
504 * @ce_count: number of correctable errors for this rank
a4b4be3f
MCC
505 * @csrow: A pointer to the chip select row structure (the parent
506 * structure). The location of the rank is given by
507 * the (csrow->csrow_idx, chan_idx) vector.
a7d7d2e1
MCC
508 * @dimm: A pointer to the DIMM structure, where the DIMM label
509 * information is stored.
510 *
511 * FIXME: Currently, the EDAC core model will assume one DIMM per rank.
512 * This is a bad assumption, but it makes this patch easier. Later
513 * patches in this series will fix this issue.
a4b4be3f
MCC
514 */
515struct rank_info {
516 int chan_idx;
a7d7d2e1
MCC
517 struct csrow_info *csrow;
518 struct dimm_info *dimm;
4275be63
MCC
519
520 u32 ce_count; /* Correctable Errors for this csrow */
ddeb3547
MCC
521};
522
523struct csrow_info {
7a623c03
MCC
524 struct device dev;
525
a895bf8b 526 /* Used only by edac_mc_find_csrow_by_page() */
084a4fcc
MCC
527 unsigned long first_page; /* first page number in csrow */
528 unsigned long last_page; /* last page number in csrow */
ddeb3547 529 unsigned long page_mask; /* used for interleaving -
a895bf8b
MCC
530 * 0UL for non intlv */
531
084a4fcc
MCC
532 int csrow_idx; /* the chip-select row */
533
ddeb3547
MCC
534 u32 ue_count; /* Uncorrectable Errors for this csrow */
535 u32 ce_count; /* Correctable Errors for this csrow */
084a4fcc 536
ddeb3547
MCC
537 struct mem_ctl_info *mci; /* the parent */
538
ddeb3547
MCC
539 /* channel information for this csrow */
540 u32 nr_channels;
de3910eb 541 struct rank_info **channels;
ddeb3547
MCC
542};
543
7a623c03
MCC
544/*
545 * struct errcount_attribute - used to store the several error counts
546 */
547struct errcount_attribute_data {
548 int n_layers;
549 int pos[EDAC_MAX_LAYERS];
550 int layer0, layer1, layer2;
ddeb3547
MCC
551};
552
553/* MEMORY controller information structure
554 */
555struct mem_ctl_info {
7a623c03
MCC
556 struct device dev;
557 struct bus_type bus;
558
ddeb3547
MCC
559 struct list_head link; /* for global list of mem_ctl_info structs */
560
561 struct module *owner; /* Module owner of this control struct */
562
563 unsigned long mtype_cap; /* memory types supported by mc */
564 unsigned long edac_ctl_cap; /* Mem controller EDAC capabilities */
565 unsigned long edac_cap; /* configuration capabilities - this is
566 * closely related to edac_ctl_cap. The
567 * difference is that the controller may be
568 * capable of s4ecd4ed which would be listed
569 * in edac_ctl_cap, but if channels aren't
570 * capable of s4ecd4ed then the edac_cap would
571 * not have that capability.
572 */
573 unsigned long scrub_cap; /* chipset scrub capabilities */
574 enum scrub_type scrub_mode; /* current scrub mode */
575
576 /* Translates sdram memory scrub rate given in bytes/sec to the
577 internal representation and configures whatever else needs
578 to be configured.
579 */
580 int (*set_sdram_scrub_rate) (struct mem_ctl_info * mci, u32 bw);
581
582 /* Get the current sdram memory scrub rate from the internal
583 representation and converts it to the closest matching
584 bandwidth in bytes/sec.
585 */
586 int (*get_sdram_scrub_rate) (struct mem_ctl_info * mci);
587
588
589 /* pointer to edac checking routine */
590 void (*edac_check) (struct mem_ctl_info * mci);
591
592 /*
593 * Remaps memory pages: controller pages to physical pages.
594 * For most MC's, this will be NULL.
595 */
596 /* FIXME - why not send the phys page to begin with? */
597 unsigned long (*ctl_page_to_phys) (struct mem_ctl_info * mci,
598 unsigned long page);
599 int mc_idx;
de3910eb 600 struct csrow_info **csrows;
4275be63
MCC
601 unsigned nr_csrows, num_cschannel;
602
7a623c03
MCC
603 /*
604 * Memory Controller hierarchy
605 *
606 * There are basically two types of memory controller: the ones that
607 * sees memory sticks ("dimms"), and the ones that sees memory ranks.
608 * All old memory controllers enumerate memories per rank, but most
609 * of the recent drivers enumerate memories per DIMM, instead.
610 * When the memory controller is per rank, mem_is_per_rank is true.
611 */
4275be63
MCC
612 unsigned n_layers;
613 struct edac_mc_layer *layers;
614 bool mem_is_per_rank;
a7d7d2e1
MCC
615
616 /*
617 * DIMM info. Will eventually remove the entire csrows_info some day
618 */
4275be63 619 unsigned tot_dimms;
de3910eb 620 struct dimm_info **dimms;
a7d7d2e1 621
ddeb3547
MCC
622 /*
623 * FIXME - what about controllers on other busses? - IDs must be
624 * unique. dev pointer should be sufficiently unique, but
625 * BUS:SLOT.FUNC numbers may not be unique.
626 */
fd687502 627 struct device *pdev;
ddeb3547
MCC
628 const char *mod_name;
629 const char *mod_ver;
630 const char *ctl_name;
631 const char *dev_name;
632 char proc_name[MC_PROC_NAME_MAX_LEN + 1];
633 void *pvt_info;
ddeb3547
MCC
634 unsigned long start_time; /* mci load start time (in jiffies) */
635
4275be63
MCC
636 /*
637 * drivers shouldn't access those fields directly, as the core
638 * already handles that.
639 */
640 u32 ce_noinfo_count, ue_noinfo_count;
5926ff50 641 u32 ue_mc, ce_mc;
4275be63
MCC
642 u32 *ce_per_layer[EDAC_MAX_LAYERS], *ue_per_layer[EDAC_MAX_LAYERS];
643
ddeb3547
MCC
644 struct completion complete;
645
ddeb3547
MCC
646 /* Additional top controller level attributes, but specified
647 * by the low level driver.
648 *
649 * Set by the low level driver to provide attributes at the
4275be63 650 * controller level.
ddeb3547
MCC
651 * An array of structures, NULL terminated
652 *
653 * If attributes are desired, then set to array of attributes
654 * If no attributes are desired, leave NULL
655 */
656 const struct mcidev_sysfs_attribute *mc_driver_sysfs_attributes;
657
658 /* work struct for this MC */
659 struct delayed_work work;
660
661 /* the internal state of this controller instance */
662 int op_state;
452a6bf9
MCC
663
664#ifdef CONFIG_EDAC_DEBUG
665 struct dentry *debugfs;
666 u8 fake_inject_layer[EDAC_MAX_LAYERS];
667 u32 fake_inject_ue;
38ced28b 668 u16 fake_inject_count;
452a6bf9 669#endif
ddeb3547
MCC
670};
671
c0d12172 672#endif