]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - include/linux/edac.h
edac: Only expose csrows/channels on legacy API if they're populated
[mirror_ubuntu-hirsute-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/**
415 * EDAC_DIMM_PTR - Macro responsible to find a pointer inside a pointer array
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
420 * @var: name of the var where we want to get the pointer
421 * (like mci->dimms)
422 * @n_layers: Number of layers at the @layers array
423 * @layer0: layer0 position
424 * @layer1: layer1 position. Unused if n_layers < 2
425 * @layer2: layer2 position. Unused if n_layers < 3
426 *
427 * For 1 layer, this macro returns &var[layer0]
428 * For 2 layers, this macro is similar to allocate a bi-dimensional array
429 * and to return "&var[layer0][layer1]"
430 * For 3 layers, this macro is similar to allocate a tri-dimensional array
431 * and to return "&var[layer0][layer1][layer2]"
432 *
433 * A loop could be used here to make it more generic, but, as we only have
434 * 3 layers, this is a little faster.
435 * By design, layers can never be 0 or more than 3. If that ever happens,
436 * a NULL is returned, causing an OOPS during the memory allocation routine,
437 * with would point to the developer that he's doing something wrong.
438 */
439#define EDAC_DIMM_PTR(layers, var, nlayers, layer0, layer1, layer2) ({ \
440 typeof(var) __p; \
441 if ((nlayers) == 1) \
442 __p = &var[layer0]; \
443 else if ((nlayers) == 2) \
444 __p = &var[(layer1) + ((layers[1]).size * (layer0))]; \
445 else if ((nlayers) == 3) \
446 __p = &var[(layer2) + ((layers[2]).size * ((layer1) + \
447 ((layers[1]).size * (layer0))))]; \
448 else \
449 __p = NULL; \
450 __p; \
451})
452
a7d7d2e1 453struct dimm_info {
7a623c03
MCC
454 struct device dev;
455
a7d7d2e1 456 char label[EDAC_MC_LABEL_LEN + 1]; /* DIMM label on motherboard */
4275be63
MCC
457
458 /* Memory location data */
459 unsigned location[EDAC_MAX_LAYERS];
460
461 struct mem_ctl_info *mci; /* the parent */
084a4fcc
MCC
462
463 u32 grain; /* granularity of reported error in bytes */
464 enum dev_type dtype; /* memory device type */
465 enum mem_type mtype; /* memory dimm type */
466 enum edac_type edac_mode; /* EDAC mode for this dimm */
467
4275be63 468 u32 nr_pages; /* number of pages on this dimm */
a895bf8b 469
4275be63 470 unsigned csrow, cschannel; /* Points to the old API data */
a7d7d2e1
MCC
471};
472
a4b4be3f
MCC
473/**
474 * struct rank_info - contains the information for one DIMM rank
475 *
476 * @chan_idx: channel number where the rank is (typically, 0 or 1)
477 * @ce_count: number of correctable errors for this rank
a4b4be3f
MCC
478 * @csrow: A pointer to the chip select row structure (the parent
479 * structure). The location of the rank is given by
480 * the (csrow->csrow_idx, chan_idx) vector.
a7d7d2e1
MCC
481 * @dimm: A pointer to the DIMM structure, where the DIMM label
482 * information is stored.
483 *
484 * FIXME: Currently, the EDAC core model will assume one DIMM per rank.
485 * This is a bad assumption, but it makes this patch easier. Later
486 * patches in this series will fix this issue.
a4b4be3f
MCC
487 */
488struct rank_info {
7a623c03
MCC
489 struct device dev;
490
a4b4be3f 491 int chan_idx;
a7d7d2e1
MCC
492 struct csrow_info *csrow;
493 struct dimm_info *dimm;
4275be63
MCC
494
495 u32 ce_count; /* Correctable Errors for this csrow */
ddeb3547
MCC
496};
497
498struct csrow_info {
7a623c03
MCC
499 struct device dev;
500
a895bf8b 501 /* Used only by edac_mc_find_csrow_by_page() */
084a4fcc
MCC
502 unsigned long first_page; /* first page number in csrow */
503 unsigned long last_page; /* last page number in csrow */
ddeb3547 504 unsigned long page_mask; /* used for interleaving -
a895bf8b
MCC
505 * 0UL for non intlv */
506
084a4fcc
MCC
507 int csrow_idx; /* the chip-select row */
508
ddeb3547
MCC
509 u32 ue_count; /* Uncorrectable Errors for this csrow */
510 u32 ce_count; /* Correctable Errors for this csrow */
084a4fcc 511
ddeb3547
MCC
512 struct mem_ctl_info *mci; /* the parent */
513
ddeb3547
MCC
514 /* channel information for this csrow */
515 u32 nr_channels;
a4b4be3f 516 struct rank_info *channels;
ddeb3547
MCC
517};
518
7a623c03
MCC
519/*
520 * struct errcount_attribute - used to store the several error counts
521 */
522struct errcount_attribute_data {
523 int n_layers;
524 int pos[EDAC_MAX_LAYERS];
525 int layer0, layer1, layer2;
ddeb3547
MCC
526};
527
528/* MEMORY controller information structure
529 */
530struct mem_ctl_info {
7a623c03
MCC
531 struct device dev;
532 struct bus_type bus;
533
ddeb3547
MCC
534 struct list_head link; /* for global list of mem_ctl_info structs */
535
536 struct module *owner; /* Module owner of this control struct */
537
538 unsigned long mtype_cap; /* memory types supported by mc */
539 unsigned long edac_ctl_cap; /* Mem controller EDAC capabilities */
540 unsigned long edac_cap; /* configuration capabilities - this is
541 * closely related to edac_ctl_cap. The
542 * difference is that the controller may be
543 * capable of s4ecd4ed which would be listed
544 * in edac_ctl_cap, but if channels aren't
545 * capable of s4ecd4ed then the edac_cap would
546 * not have that capability.
547 */
548 unsigned long scrub_cap; /* chipset scrub capabilities */
549 enum scrub_type scrub_mode; /* current scrub mode */
550
551 /* Translates sdram memory scrub rate given in bytes/sec to the
552 internal representation and configures whatever else needs
553 to be configured.
554 */
555 int (*set_sdram_scrub_rate) (struct mem_ctl_info * mci, u32 bw);
556
557 /* Get the current sdram memory scrub rate from the internal
558 representation and converts it to the closest matching
559 bandwidth in bytes/sec.
560 */
561 int (*get_sdram_scrub_rate) (struct mem_ctl_info * mci);
562
563
564 /* pointer to edac checking routine */
565 void (*edac_check) (struct mem_ctl_info * mci);
566
567 /*
568 * Remaps memory pages: controller pages to physical pages.
569 * For most MC's, this will be NULL.
570 */
571 /* FIXME - why not send the phys page to begin with? */
572 unsigned long (*ctl_page_to_phys) (struct mem_ctl_info * mci,
573 unsigned long page);
574 int mc_idx;
ddeb3547 575 struct csrow_info *csrows;
4275be63
MCC
576 unsigned nr_csrows, num_cschannel;
577
7a623c03
MCC
578 /*
579 * Memory Controller hierarchy
580 *
581 * There are basically two types of memory controller: the ones that
582 * sees memory sticks ("dimms"), and the ones that sees memory ranks.
583 * All old memory controllers enumerate memories per rank, but most
584 * of the recent drivers enumerate memories per DIMM, instead.
585 * When the memory controller is per rank, mem_is_per_rank is true.
586 */
4275be63
MCC
587 unsigned n_layers;
588 struct edac_mc_layer *layers;
589 bool mem_is_per_rank;
a7d7d2e1
MCC
590
591 /*
592 * DIMM info. Will eventually remove the entire csrows_info some day
593 */
4275be63 594 unsigned tot_dimms;
a7d7d2e1
MCC
595 struct dimm_info *dimms;
596
ddeb3547
MCC
597 /*
598 * FIXME - what about controllers on other busses? - IDs must be
599 * unique. dev pointer should be sufficiently unique, but
600 * BUS:SLOT.FUNC numbers may not be unique.
601 */
fd687502 602 struct device *pdev;
ddeb3547
MCC
603 const char *mod_name;
604 const char *mod_ver;
605 const char *ctl_name;
606 const char *dev_name;
607 char proc_name[MC_PROC_NAME_MAX_LEN + 1];
608 void *pvt_info;
ddeb3547
MCC
609 unsigned long start_time; /* mci load start time (in jiffies) */
610
4275be63
MCC
611 /*
612 * drivers shouldn't access those fields directly, as the core
613 * already handles that.
614 */
615 u32 ce_noinfo_count, ue_noinfo_count;
5926ff50 616 u32 ue_mc, ce_mc;
4275be63
MCC
617 u32 *ce_per_layer[EDAC_MAX_LAYERS], *ue_per_layer[EDAC_MAX_LAYERS];
618
ddeb3547
MCC
619 struct completion complete;
620
ddeb3547
MCC
621 /* Additional top controller level attributes, but specified
622 * by the low level driver.
623 *
624 * Set by the low level driver to provide attributes at the
4275be63 625 * controller level.
ddeb3547
MCC
626 * An array of structures, NULL terminated
627 *
628 * If attributes are desired, then set to array of attributes
629 * If no attributes are desired, leave NULL
630 */
631 const struct mcidev_sysfs_attribute *mc_driver_sysfs_attributes;
632
633 /* work struct for this MC */
634 struct delayed_work work;
635
636 /* the internal state of this controller instance */
637 int op_state;
452a6bf9
MCC
638
639#ifdef CONFIG_EDAC_DEBUG
640 struct dentry *debugfs;
641 u8 fake_inject_layer[EDAC_MAX_LAYERS];
642 u32 fake_inject_ue;
643#endif
ddeb3547
MCC
644};
645
c0d12172 646#endif