ras.rst 41.7 KB
Newer Older
1 2
.. include:: <isonum.txt>

3 4 5 6 7 8 9 10
============================================
Reliability, Availability and Serviceability
============================================

RAS concepts
************

Reliability, Availability and Serviceability (RAS) is a concept used on
11
servers meant to measure their robustness.
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

Reliability
  is the probability that a system will produce correct outputs.

  * Generally measured as Mean Time Between Failures (MTBF)
  * Enhanced by features that help to avoid, detect and repair hardware faults

Availability
  is the probability that a system is operational at a given time

  * Generally measured as a percentage of downtime per a period of time
  * Often uses mechanisms to detect and correct hardware faults in
    runtime;

Serviceability (or maintainability)
  is the simplicity and speed with which a system can be repaired or
  maintained

  * Generally measured on Mean Time Between Repair (MTBR)

Improving RAS
-------------

In order to reduce systems downtime, a system should be capable of detecting
hardware errors, and, when possible correcting them in runtime. It should
also provide mechanisms to detect hardware degradation, in order to warn
the system administrator to take the action of replacing a component before
it causes data loss or system downtime.

Among the monitoring measures, the most usual ones include:

* CPU – detect errors at instruction execution and at L1/L2/L3 caches;
* Memory – add error correction logic (ECC) to detect and correct errors;
45
* I/O – add CRC checksums for transferred data;
46 47 48 49 50
* Storage – RAID, journal file systems, checksums,
  Self-Monitoring, Analysis and Reporting Technology (SMART).

By monitoring the number of occurrences of error detections, it is possible
to identify if the probability of hardware errors is increasing, and, on such
51
case, do a preventive maintenance to replace a degraded component while
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
those errors are correctable.

Types of errors
---------------

Most mechanisms used on modern systems use use technologies like Hamming
Codes that allow error correction when the number of errors on a bit packet
is below a threshold. If the number of errors is above, those mechanisms
can indicate with a high degree of confidence that an error happened, but
they can't correct.

Also, sometimes an error occur on a component that it is not used. For
example, a part of the memory that it is not currently allocated.

That defines some categories of errors:

* **Correctable Error (CE)** - the error detection mechanism detected and
  corrected the error. Such errors are usually not fatal, although some
  Kernel mechanisms allow the system administrator to consider them as fatal.

* **Uncorrected Error (UE)** - the amount of errors happened above the error
  correction threshold, and the system was unable to auto-correct.

* **Fatal Error** - when an UE error happens on a critical component of the
  system (for example, a piece of the Kernel got corrupted by an UE), the
  only reliable way to avoid data corruption is to hang or reboot the machine.

* **Non-fatal Error** - when an UE error happens on an unused component,
  like a CPU in power down state or an unused memory bank, the system may
  still run, eventually replacing the affected hardware by a hot spare,
  if available.

84
  Also, when an error happens on a userspace process, it is also possible to
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
  kill such process and let userspace restart it.

The mechanism for handling non-fatal errors is usually complex and may
require the help of some userspace application, in order to apply the
policy desired by the system administrator.

Identifying a bad hardware component
------------------------------------

Just detecting a hardware flaw is usually not enough, as the system needs
to pinpoint to the minimal replaceable unit (MRU) that should be exchanged
to make the hardware reliable again.

So, it requires not only error logging facilities, but also mechanisms that
will translate the error message to the silkscreen or component label for
the MRU.

Typically, it is very complex for memory, as modern CPUs interlace memory
from different memory modules, in order to provide a better performance. The
DMI BIOS usually have a list of memory module labels, with can be obtained
using the ``dmidecode`` tool. For example, on a desktop machine, it shows::

	Memory Device
		Total Width: 64 bits
		Data Width: 64 bits
		Size: 16384 MB
		Form Factor: SODIMM
		Set: None
		Locator: ChannelA-DIMM0
		Bank Locator: BANK 0
		Type: DDR4
		Type Detail: Synchronous
		Speed: 2133 MHz
		Rank: 2
		Configured Clock Speed: 2133 MHz

On the above example, a DDR4 SO-DIMM memory module is located at the
system's memory labeled as "BANK 0", as given by the *bank locator* field.
Please notice that, on such system, the *total width* is equal to the
124
*data width*. It means that such memory module doesn't have error
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
detection/correction mechanisms.

Unfortunately, not all systems use the same field to specify the memory
bank. On this example, from an older server, ``dmidecode`` shows::

	Memory Device
		Array Handle: 0x1000
		Error Information Handle: Not Provided
		Total Width: 72 bits
		Data Width: 64 bits
		Size: 8192 MB
		Form Factor: DIMM
		Set: 1
		Locator: DIMM_A1
		Bank Locator: Not Specified
		Type: DDR3
		Type Detail: Synchronous Registered (Buffered)
		Speed: 1600 MHz
		Rank: 2
		Configured Clock Speed: 1600 MHz

There, the DDR3 RDIMM memory module is located at the system's memory labeled
as "DIMM_A1", as given by the *locator* field. Please notice that this
148
memory module has 64 bits of *data width* and 72 bits of *total width*. So,
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
it has 8 extra bits to be used by error detection and correction mechanisms.
Such kind of memory is called Error-correcting code memory (ECC memory).

To make things even worse, it is not uncommon that systems with different
labels on their system's board to use exactly the same BIOS, meaning that
the labels provided by the BIOS won't match the real ones.

ECC memory
----------

As mentioned on the previous section, ECC memory has extra bits to be
used for error correction. So, on 64 bit systems, a memory module
has 64 bits of *data width*, and 74 bits of *total width*. So, there are
8 bits extra bits to be used for the error detection and correction
mechanisms. Those extra bits are called *syndrome*\ [#f1]_\ [#f2]_.

So, when the cpu requests the memory controller to write a word with
*data width*, the memory controller calculates the *syndrome* in real time,
using Hamming code, or some other error correction code, like SECDED+,
producing a code with *total width* size. Such code is then written
on the memory modules.

At read, the *total width* bits code is converted back, using the same
ECC code used on write, producing a word with *data width* and a *syndrome*.
The word with *data width* is sent to the CPU, even when errors happen.

The memory controller also looks at the *syndrome* in order to check if
there was an error, and if the ECC code was able to fix such error.
If the error was corrected, a Corrected Error (CE) happened. If not, an
Uncorrected Error (UE) happened.

The information about the CE/UE errors is stored on some special registers
at the memory controller and can be accessed by reading such registers,
either by BIOS, by some special CPUs or by Linux EDAC driver. On x86 64
bit CPUs, such errors can also be retrieved via the Machine Check
Architecture (MCA)\ [#f3]_.

.. [#f1] Please notice that several memory controllers allow operation on a
  mode called "Lock-Step", where it groups two memory modules together,
  doing 128-bit reads/writes. That gives 16 bits for error correction, with
189
  significantly improves the error correction mechanism, at the expense
190 191 192 193 194 195 196 197 198 199 200 201 202 203
  that, when an error happens, there's no way to know what memory module is
  to blame. So, it has to blame both memory modules.

.. [#f2] Some memory controllers also allow using memory in mirror mode.
  On such mode, the same data is written to two memory modules. At read,
  the system checks both memory modules, in order to check if both provide
  identical data. On such configuration, when an error happens, there's no
  way to know what memory module is to blame. So, it has to blame both
  memory modules (or 4 memory modules, if the system is also on Lock-step
  mode).

.. [#f3] For more details about the Machine Check Architecture (MCA),
  please read Documentation/x86/x86_64/machinecheck at the Kernel tree.

A
Alan Cox 已提交
204
EDAC - Error Detection And Correction
205
*************************************
D
Doug Thompson 已提交
206

207
.. note::
208

209
   "bluesmoke" was the name for this device driver subsystem when it
210 211 212
   was "out-of-tree" and maintained at http://bluesmoke.sourceforge.net.
   That site is mostly archaic now and can be used only for historical
   purposes.
D
Doug Thompson 已提交
213

214 215
   When the subsystem was pushed upstream for the first time, on
   Kernel 2.6.16, for the first time, it was renamed to ``EDAC``.
216 217

Purpose
218
-------
A
Alan Cox 已提交
219

220
The ``edac`` kernel module's goal is to detect and report hardware errors
221
that occur within the computer system running under linux.
D
Doug Thompson 已提交
222

223
Memory
224
------
D
Doug Thompson 已提交
225

226 227
Memory Correctable Errors (CE) and Uncorrectable Errors (UE) are the
primary errors being harvested. These types of errors are harvested by
228
the ``edac_mc`` device.
A
Alan Cox 已提交
229 230

Detecting CE events, then harvesting those events and reporting them,
231
**can** but must not necessarily be a predictor of future UE events. With
232 233 234 235
CE events only, the system can and will continue to operate as no data
has been damaged yet.

However, preventive maintenance and proactive part replacement of memory
236
modules exhibiting CEs can reduce the likelihood of the dreaded UE events
237
and system panics.
A
Alan Cox 已提交
238

239
Other hardware elements
240
-----------------------
D
Doug Thompson 已提交
241

242
A new feature for EDAC, the ``edac_device`` class of device, was added in
D
Doug Thompson 已提交
243 244 245 246 247 248
the 2.6.23 version of the kernel.

This new device type allows for non-memory type of ECC hardware detectors
to have their states harvested and presented to userspace via the sysfs
interface.

249 250 251 252 253
Some architectures have ECC detectors for L1, L2 and L3 caches,
along with DMA engines, fabric switches, main data path switches,
interconnections, and various other hardware data paths. If the hardware
reports it, then a edac_device device probably can be constructed to
harvest and present that to userspace.
D
Doug Thompson 已提交
254 255


256
PCI bus scanning
257
----------------
A
Alan Cox 已提交
258

259 260
In addition, PCI devices are scanned for PCI Bus Parity and SERR Errors
in order to determine if errors are occurring during data transfers.
D
Doug Thompson 已提交
261

A
Alan Cox 已提交
262
The presence of PCI Parity errors must be examined with a grain of salt.
263
There are several add-in adapters that do **not** follow the PCI specification
A
Alan Cox 已提交
264 265 266 267 268
with regards to Parity generation and reporting. The specification says
the vendor should tie the parity status bits to 0 if they do not intend
to generate parity.  Some vendors do not do this, and thus the parity bit
can "float" giving false positives.

269 270
There is a PCI device attribute located in sysfs that is checked by
the EDAC PCI scanning code. If that attribute is set, PCI parity/error
271
scanning is skipped for that device. The attribute is::
D
Doug Thompson 已提交
272 273 274

	broken_parity_status

275
and is located in ``/sys/devices/pci<XXX>/0000:XX:YY.Z`` directories for
D
Doug Thompson 已提交
276 277
PCI devices.

A
Alan Cox 已提交
278

279
Versioning
280
----------
A
Alan Cox 已提交
281

282
EDAC is composed of a "core" module (``edac_core.ko``) and several Memory
283 284
Controller (MC) driver modules. On a given system, the CORE is loaded
and one MC driver will be loaded. Both the CORE and the MC driver (or
285
``edac_device`` driver) have individual versions that reflect current
286
release level of their respective modules.
D
Doug Thompson 已提交
287

288 289
Thus, to "report" on what version a system is running, one must report
both the CORE's and the MC driver's versions.
A
Alan Cox 已提交
290 291


292
Loading
293
-------
A
Alan Cox 已提交
294

295 296 297
If ``edac`` was statically linked with the kernel then no loading
is necessary. If ``edac`` was built as modules then simply modprobe
the ``edac`` pieces that you need. You should be able to modprobe
298 299
hardware-specific modules and have the dependencies load the necessary
core modules.
A
Alan Cox 已提交
300

301
Example::
A
Alan Cox 已提交
302

303
	$ modprobe amd76x_edac
A
Alan Cox 已提交
304

305 306
loads both the ``amd76x_edac.ko`` memory controller module and the
``edac_mc.ko`` core module.
A
Alan Cox 已提交
307 308


309
Sysfs interface
310
---------------
A
Alan Cox 已提交
311

312
EDAC presents a ``sysfs`` interface for control and reporting purposes. It
313
lives in the /sys/devices/system/edac directory.
D
Doug Thompson 已提交
314

315
Within this directory there currently reside 2 components:
A
Alan Cox 已提交
316

317
	======= ==============================
A
Alan Cox 已提交
318
	mc	memory controller(s) system
319
	pci	PCI control and status system
320
	======= ==============================
A
Alan Cox 已提交
321 322


323

A
Alan Cox 已提交
324
Memory Controller (mc) Model
325
----------------------------
A
Alan Cox 已提交
326

327
Each ``mc`` device controls a set of memory modules [#f4]_. These modules
328
are laid out in a Chip-Select Row (``csrowX``) and Channel table (``chX``).
329
There can be multiple csrows and multiple channels.
A
Alan Cox 已提交
330

331 332 333 334 335 336
.. [#f4] Nowadays, the term DIMM (Dual In-line Memory Module) is widely
  used to refer to a memory module, although there are other memory
  packaging alternatives, like SO-DIMM, SIMM, etc. Along this document,
  and inside the EDAC system, the term "dimm" is used for all memory
  modules, even when they use a different kind of packaging.

337 338
Memory controllers allow for several csrows, with 8 csrows being a
typical value. Yet, the actual number of csrows depends on the layout of
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
a given motherboard, memory controller and memory module characteristics.

Dual channels allow for dual data length (e. g. 128 bits, on 64 bit systems)
data transfers to/from the CPU from/to memory. Some newer chipsets allow
for more than 2 channels, like Fully Buffered DIMMs (FB-DIMMs) memory
controllers. The following example will assume 2 channels:

	+------------+-----------------------+
	| Chip       |       Channels        |
	| Select     +-----------+-----------+
	| rows       |  ``ch0``  |  ``ch1``  |
	+============+===========+===========+
	| ``csrow0`` |  DIMM_A0  |  DIMM_B0  |
	+------------+           |           |
	| ``csrow1`` |           |           |
	+------------+-----------+-----------+
	| ``csrow2`` |  DIMM_A1  | DIMM_B1   |
	+------------+           |           |
	| ``csrow3`` |           |           |
	+------------+-----------+-----------+

In the above example, there are 4 physical slots on the motherboard
A
Alan Cox 已提交
361 362
for memory DIMMs:

363 364 365 366 367
	+---------+---------+
	| DIMM_A0 | DIMM_B0 |
	+---------+---------+
	| DIMM_A1 | DIMM_B1 |
	+---------+---------+
A
Alan Cox 已提交
368

369
Labels for these slots are usually silk-screened on the motherboard.
370
Slots labeled ``A`` are channel 0 in this example. Slots labeled ``B`` are
371 372 373 374
channel 1. Notice that there are two csrows possible on a physical DIMM.
These csrows are allocated their csrow assignment based on the slot into
which the memory DIMM is placed. Thus, when 1 DIMM is placed in each
Channel, the csrows cross both DIMMs.
A
Alan Cox 已提交
375 376 377

Memory DIMMs come single or dual "ranked". A rank is a populated csrow.
Thus, 2 single ranked DIMMs, placed in slots DIMM_A0 and DIMM_B0 above
378 379 380
will have just one csrow (csrow0). csrow1 will be empty. On the other
hand, when 2 dual ranked DIMMs are similarly placed, then both csrow0
and csrow1 will be populated. The pattern repeats itself for csrow2 and
A
Alan Cox 已提交
381 382
csrow3.

383 384
The representation of the above is reflected in the directory
tree in EDAC's sysfs interface. Starting in directory
385 386 387
``/sys/devices/system/edac/mc``, each memory controller will be
represented by its own ``mcX`` directory, where ``X`` is the
index of the MC::
A
Alan Cox 已提交
388 389 390 391 392 393 394 395

	..../edac/mc/
		   |
		   |->mc0
		   |->mc1
		   |->mc2
		   ....

396 397
Under each ``mcX`` directory each ``csrowX`` is again represented by a
``csrowX``, where ``X`` is the csrow index::
A
Alan Cox 已提交
398 399 400 401 402 403 404 405

	.../mc/mc0/
		|
		|->csrow0
		|->csrow2
		|->csrow3
		....

406 407 408 409 410
Notice that there is no csrow1, which indicates that csrow0 is composed
of a single ranked DIMMs. This should also apply in both Channels, in
order to have dual-channel mode be operational. Since both csrow2 and
csrow3 are populated, this indicates a dual ranked set of DIMMs for
channels 0 and 1.
A
Alan Cox 已提交
411

412
Within each of the ``mcX`` and ``csrowX`` directories are several EDAC
413
control and attribute files.
A
Alan Cox 已提交
414

415 416
``mcX`` directories
-------------------
A
Alan Cox 已提交
417

418 419
In ``mcX`` directories are EDAC control and attribute files for
this ``X`` instance of the memory controllers.
A
Alan Cox 已提交
420

421
For a description of the sysfs API, please see:
422

423
	Documentation/ABI/testing/sysfs-devices-edac
A
Alan Cox 已提交
424 425


426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
``dimmX`` or ``rankX`` directories
----------------------------------

The recommended way to use the EDAC subsystem is to look at the information
provided by the ``dimmX`` or ``rankX`` directories [#f5]_.

A typical EDAC system has the following structure under
``/sys/devices/system/edac/``\ [#f6]_::

	/sys/devices/system/edac/
	├── mc
	│   ├── mc0
	│   │   ├── ce_count
	│   │   ├── ce_noinfo_count
	│   │   ├── dimm0
441
	│   │   │   ├── dimm_ce_count
442 443 444 445 446
	│   │   │   ├── dimm_dev_type
	│   │   │   ├── dimm_edac_mode
	│   │   │   ├── dimm_label
	│   │   │   ├── dimm_location
	│   │   │   ├── dimm_mem_type
447
	│   │   │   ├── dimm_ue_count
448 449 450 451 452 453 454 455 456 457 458 459 460 461
	│   │   │   ├── size
	│   │   │   └── uevent
	│   │   ├── max_location
	│   │   ├── mc_name
	│   │   ├── reset_counters
	│   │   ├── seconds_since_reset
	│   │   ├── size_mb
	│   │   ├── ue_count
	│   │   ├── ue_noinfo_count
	│   │   └── uevent
	│   ├── mc1
	│   │   ├── ce_count
	│   │   ├── ce_noinfo_count
	│   │   ├── dimm0
462
	│   │   │   ├── dimm_ce_count
463 464 465 466 467
	│   │   │   ├── dimm_dev_type
	│   │   │   ├── dimm_edac_mode
	│   │   │   ├── dimm_label
	│   │   │   ├── dimm_location
	│   │   │   ├── dimm_mem_type
468
	│   │   │   ├── dimm_ue_count
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
	│   │   │   ├── size
	│   │   │   └── uevent
	│   │   ├── max_location
	│   │   ├── mc_name
	│   │   ├── reset_counters
	│   │   ├── seconds_since_reset
	│   │   ├── size_mb
	│   │   ├── ue_count
	│   │   ├── ue_noinfo_count
	│   │   └── uevent
	│   └── uevent
	└── uevent

In the ``dimmX`` directories are EDAC control and attribute files for
this ``X`` memory module:

- ``size`` - Total memory managed by this csrow attribute file

	This attribute file displays, in count of megabytes, the memory
	that this csrow contains.

490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
- ``dimm_ue_count`` - Uncorrectable Errors count attribute file

	This attribute file displays the total count of uncorrectable
	errors that have occurred on this DIMM. If panic_on_ue is set
	this counter will not have a chance to increment, since EDAC
	will panic the system.

- ``dimm_ce_count`` - Correctable Errors count attribute file

	This attribute file displays the total count of correctable
	errors that have occurred on this DIMM. This count is very
	important to examine. CEs provide early indications that a
	DIMM is beginning to fail. This count field should be
	monitored for non-zero values and report such information
	to the system administrator.

506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
- ``dimm_dev_type``  - Device type attribute file

	This attribute file will display what type of DRAM device is
	being utilized on this DIMM.
	Examples:

		- x1
		- x2
		- x4
		- x8

- ``dimm_edac_mode`` - EDAC Mode of operation attribute file

	This attribute file will display what type of Error detection
	and correction is being utilized.

- ``dimm_label`` - memory module label control file

	This control file allows this DIMM to have a label assigned
	to it. With this label in the module, when errors occur
	the output can provide the DIMM label in the system log.
	This becomes vital for panic events to isolate the
	cause of the UE event.

	DIMM Labels must be assigned after booting, with information
	that correctly identifies the physical slot with its
	silk screen label. This information is currently very
	motherboard specific and determination of this information
	must occur in userland at this time.

- ``dimm_location`` - location of the memory module

	The location can have up to 3 levels, and describe how the
	memory controller identifies the location of a memory module.
	Depending on the type of memory and memory controller, it
	can be:

		- *csrow* and *channel* - used when the memory controller
		  doesn't identify a single DIMM - e. g. in ``rankX`` dir;
		- *branch*, *channel*, *slot* - typically used on FB-DIMM memory
		  controllers;
		- *channel*, *slot* - used on Nehalem and newer Intel drivers.

- ``dimm_mem_type`` - Memory Type attribute file

	This attribute file will display what type of memory is currently
	on this csrow. Normally, either buffered or unbuffered memory.
	Examples:

		- Registered-DDR
		- Unbuffered-DDR

.. [#f5] On some systems, the memory controller doesn't have any logic
  to identify the memory module. On such systems, the directory is called ``rankX`` and works on a similar way as the ``csrowX`` directories.
  On modern Intel memory controllers, the memory controller identifies the
  memory modules directly. On such systems, the directory is called ``dimmX``.

.. [#f6] There are also some ``power`` directories and ``subsystem``
  symlinks inside the sysfs mapping that are automatically created by
  the sysfs subsystem. Currently, they serve no purpose.
A
Alan Cox 已提交
566

567 568
``csrowX`` directories
----------------------
569

570
When CONFIG_EDAC_LEGACY_SYSFS is enabled, sysfs will contain the ``csrowX``
571 572
directories. As this API doesn't work properly for Rambus, FB-DIMMs and
modern Intel Memory Controllers, this is being deprecated in favor of
573
``dimmX`` directories.
574

575 576
In the ``csrowX`` directories are EDAC control and attribute files for
this ``X`` instance of csrow:
A
Alan Cox 已提交
577 578


579
- ``ue_count`` - Total Uncorrectable Errors count attribute file
A
Alan Cox 已提交
580 581 582 583 584 585 586

	This attribute file displays the total count of uncorrectable
	errors that have occurred on this csrow. If panic_on_ue is set
	this counter will not have a chance to increment, since EDAC
	will panic the system.


587
- ``ce_count`` - Total Correctable Errors count attribute file
A
Alan Cox 已提交
588 589

	This attribute file displays the total count of correctable
590 591 592 593 594
	errors that have occurred on this csrow. This count is very
	important to examine. CEs provide early indications that a
	DIMM is beginning to fail. This count field should be
	monitored for non-zero values and report such information
	to the system administrator.
A
Alan Cox 已提交
595 596


597
- ``size_mb`` - Total memory managed by this csrow attribute file
A
Alan Cox 已提交
598

599
	This attribute file displays, in count of megabytes, the memory
600
	that this csrow contains.
A
Alan Cox 已提交
601 602


603
- ``mem_type`` - Memory Type attribute file
A
Alan Cox 已提交
604 605 606

	This attribute file will display what type of memory is currently
	on this csrow. Normally, either buffered or unbuffered memory.
607
	Examples:
A
Alan Cox 已提交
608

609 610
		- Registered-DDR
		- Unbuffered-DDR
A
Alan Cox 已提交
611 612


613
- ``edac_mode`` - EDAC Mode of operation attribute file
A
Alan Cox 已提交
614 615 616 617 618

	This attribute file will display what type of Error detection
	and correction is being utilized.


619
- ``dev_type`` - Device type attribute file
A
Alan Cox 已提交
620

621 622 623
	This attribute file will display what type of DRAM device is
	being utilized on this DIMM.
	Examples:
A
Alan Cox 已提交
624

625 626 627 628
		- x1
		- x2
		- x4
		- x8
A
Alan Cox 已提交
629 630


631
- ``ch0_ce_count`` - Channel 0 CE Count attribute file
A
Alan Cox 已提交
632 633 634 635 636

	This attribute file will display the count of CEs on this
	DIMM located in channel 0.


637
- ``ch0_ue_count`` - Channel 0 UE Count attribute file
A
Alan Cox 已提交
638 639 640 641 642

	This attribute file will display the count of UEs on this
	DIMM located in channel 0.


643
- ``ch0_dimm_label`` - Channel 0 DIMM Label control file
A
Alan Cox 已提交
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658


	This control file allows this DIMM to have a label assigned
	to it. With this label in the module, when errors occur
	the output can provide the DIMM label in the system log.
	This becomes vital for panic events to isolate the
	cause of the UE event.

	DIMM Labels must be assigned after booting, with information
	that correctly identifies the physical slot with its
	silk screen label. This information is currently very
	motherboard specific and determination of this information
	must occur in userland at this time.


659
- ``ch1_ce_count`` - Channel 1 CE Count attribute file
A
Alan Cox 已提交
660 661 662 663 664 665


	This attribute file will display the count of CEs on this
	DIMM located in channel 1.


666
- ``ch1_ue_count`` - Channel 1 UE Count attribute file
A
Alan Cox 已提交
667 668 669 670 671 672


	This attribute file will display the count of UEs on this
	DIMM located in channel 0.


673
- ``ch1_dimm_label`` - Channel 1 DIMM Label control file
A
Alan Cox 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686

	This control file allows this DIMM to have a label assigned
	to it. With this label in the module, when errors occur
	the output can provide the DIMM label in the system log.
	This becomes vital for panic events to isolate the
	cause of the UE event.

	DIMM Labels must be assigned after booting, with information
	that correctly identifies the physical slot with its
	silk screen label. This information is currently very
	motherboard specific and determination of this information
	must occur in userland at this time.

687

688
System Logging
689
--------------
A
Alan Cox 已提交
690

691
If logging for UEs and CEs is enabled, then system logs will contain
692
information indicating that errors have been detected::
A
Alan Cox 已提交
693

694 695
  EDAC MC0: CE page 0x283, offset 0xce0, grain 8, syndrome 0x6ec3, row 0, channel 1 "DIMM_B1": amd76x_edac
  EDAC MC0: CE page 0x1e5, offset 0xfb0, grain 8, syndrome 0xb741, row 0, channel 1 "DIMM_B1": amd76x_edac
A
Alan Cox 已提交
696 697 698


The structure of the message is:
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725

	+---------------------------------------+-------------+
	| Content                               + Example     |
	+=======================================+=============+
	| The memory controller                 | MC0         |
	+---------------------------------------+-------------+
	| Error type                            | CE          |
	+---------------------------------------+-------------+
	| Memory page                           | 0x283       |
	+---------------------------------------+-------------+
	| Offset in the page                    | 0xce0       |
	+---------------------------------------+-------------+
	| The byte granularity                  | grain 8     |
	| or resolution of the error            |             |
	+---------------------------------------+-------------+
	| The error syndrome                    | 0xb741      |
	+---------------------------------------+-------------+
	| Memory row                            | row 0       +
	+---------------------------------------+-------------+
	| Memory channel                        | channel 1   |
	+---------------------------------------+-------------+
	| DIMM label, if set prior              | DIMM B1     |
	+---------------------------------------+-------------+
	| And then an optional, driver-specific |             |
	| message that may have additional      |             |
	| information.                          |             |
	+---------------------------------------+-------------+
A
Alan Cox 已提交
726

727 728 729
Both UEs and CEs with no info will lack all but memory controller, error
type, a notice of "no info" and then an optional, driver-specific error
message.
A
Alan Cox 已提交
730 731 732


PCI Bus Parity Detection
733
------------------------
A
Alan Cox 已提交
734

735 736 737 738 739
On Header Type 00 devices, the primary status is looked at for any
parity error regardless of whether parity is enabled on the device or
not. (The spec indicates parity is generated in some cases). On Header
Type 01 bridges, the secondary status register is also looked at to see
if parity occurred on the bus on the other side of the bridge.
A
Alan Cox 已提交
740 741


742
Sysfs configuration
743
-------------------
A
Alan Cox 已提交
744

745 746
Under ``/sys/devices/system/edac/pci`` are control and attribute files as
follows:
A
Alan Cox 已提交
747 748


749
- ``check_pci_parity`` - Enable/Disable PCI Parity checking control file
A
Alan Cox 已提交
750 751 752 753 754

	This control file enables or disables the PCI Bus Parity scanning
	operation. Writing a 1 to this file enables the scanning. Writing
	a 0 to this file disables the scanning.

755 756 757
	Enable::

		echo "1" >/sys/devices/system/edac/pci/check_pci_parity
A
Alan Cox 已提交
758

759
	Disable::
A
Alan Cox 已提交
760

761
		echo "0" >/sys/devices/system/edac/pci/check_pci_parity
A
Alan Cox 已提交
762

763

764
- ``pci_parity_count`` - Parity Count
765 766 767 768 769

	This attribute file will display the number of parity errors that
	have been detected.


770
Module parameters
771
-----------------
772

773
- ``edac_mc_panic_on_ue`` - Panic on UE control file
774 775 776 777 778 779 780 781

	An uncorrectable error will cause a machine panic.  This is usually
	desirable.  It is a bad idea to continue when an uncorrectable error
	occurs - it is indeterminate what was uncorrected and the operating
	system context might be so mangled that continuing will lead to further
	corruption. If the kernel has MCE configured, then EDAC will never
	notice the UE.

782 783 784 785 786
	LOAD TIME::

		module/kernel parameter: edac_mc_panic_on_ue=[0|1]

	RUN TIME::
787

788
		echo "1" > /sys/module/edac_core/parameters/edac_mc_panic_on_ue
789 790


791
- ``edac_mc_log_ue`` - Log UE control file
792 793 794 795 796 797


	Generate kernel messages describing uncorrectable errors.  These errors
	are reported through the system message log system.  UE statistics
	will be accumulated even when UE logging is disabled.

798
	LOAD TIME::
799

800
		module/kernel parameter: edac_mc_log_ue=[0|1]
801

802
	RUN TIME::
803

804 805 806 807
		echo "1" > /sys/module/edac_core/parameters/edac_mc_log_ue


- ``edac_mc_log_ce`` - Log CE control file
808 809 810 811 812 813


	Generate kernel messages describing correctable errors.  These
	errors are reported through the system message log system.
	CE statistics will be accumulated even when CE logging is disabled.

814 815 816 817 818
	LOAD TIME::

		module/kernel parameter: edac_mc_log_ce=[0|1]

	RUN TIME::
819

820
		echo "1" > /sys/module/edac_core/parameters/edac_mc_log_ce
821 822


823
- ``edac_mc_poll_msec`` - Polling period control file
824 825 826 827 828 829 830 831 832


	The time period, in milliseconds, for polling for error information.
	Too small a value wastes resources.  Too large a value might delay
	necessary handling of errors and might loose valuable information for
	locating the error.  1000 milliseconds (once each second) is the current
	default. Systems which require all the bandwidth they can get, may
	increase this.

833
	LOAD TIME::
834

835
		module/kernel parameter: edac_mc_poll_msec=[0|1]
836

837
	RUN TIME::
A
Alan Cox 已提交
838

839
		echo "1000" > /sys/module/edac_core/parameters/edac_mc_poll_msec
A
Alan Cox 已提交
840

841 842

- ``panic_on_pci_parity`` - Panic on PCI PARITY Error
A
Alan Cox 已提交
843 844


845
	This control file enables or disables panicking when a parity
A
Alan Cox 已提交
846 847 848
	error has been detected.


849 850 851 852 853 854 855
	module/kernel parameter::

			edac_panic_on_pci_pe=[0|1]

	Enable::

		echo "1" > /sys/module/edac_core/parameters/edac_panic_on_pci_pe
A
Alan Cox 已提交
856

857
	Disable::
A
Alan Cox 已提交
858

859
		echo "0" > /sys/module/edac_core/parameters/edac_panic_on_pci_pe
A
Alan Cox 已提交
860 861 862



863 864
EDAC device type
----------------
D
Doug Thompson 已提交
865

866
In the header file, edac_pci.h, there is a series of edac_device structures
D
Doug Thompson 已提交
867 868 869 870
and APIs for the EDAC_DEVICE.

User space access to an edac_device is through the sysfs interface.

871 872
At the location ``/sys/devices/system/edac`` (sysfs) new edac_device devices
will appear.
D
Doug Thompson 已提交
873

874 875 876
There is a three level tree beneath the above ``edac`` directory. For example,
the ``test_device_edac`` device (found at the http://bluesmoke.sourceforget.net
website) installs itself as::
D
Doug Thompson 已提交
877

878
	/sys/devices/system/edac/test-instance
D
Doug Thompson 已提交
879

880
in this directory are various controls, a symlink and one or more ``instance``
C
Carlos Garcia 已提交
881
directories.
D
Doug Thompson 已提交
882 883 884

The standard default controls are:

885
	==============	=======================================================
D
Doug Thompson 已提交
886 887
	log_ce		boolean to log CE events
	log_ue		boolean to log UE events
888
	panic_on_ue	boolean to ``panic`` the system if an UE is encountered
D
Doug Thompson 已提交
889 890
			(default off, can be set true via startup script)
	poll_msec	time period between POLL cycles for events
891
	==============	=======================================================
D
Doug Thompson 已提交
892 893 894

The test_device_edac device adds at least one of its own custom control:

895
	==============	==================================================
D
Doug Thompson 已提交
896 897 898 899 900 901 902
	test_bits	which in the current test driver does nothing but
			show how it is installed. A ported driver can
			add one or more such controls and/or attributes
			for specific uses.
			One out-of-tree driver uses controls here to allow
			for ERROR INJECTION operations to hardware
			injection registers
903
	==============	==================================================
D
Doug Thompson 已提交
904 905 906

The symlink points to the 'struct dev' that is registered for this edac_device.

907
Instances
908
---------
D
Doug Thompson 已提交
909

910 911
One or more instance directories are present. For the ``test_device_edac``
case:
D
Doug Thompson 已提交
912

913 914 915
	+----------------+
	| test-instance0 |
	+----------------+
D
Doug Thompson 已提交
916 917 918 919 920


In this directory there are two default counter attributes, which are totals of
counter in deeper subdirectories.

921
	==============	====================================
D
Doug Thompson 已提交
922 923
	ce_count	total of CE events of subdirectories
	ue_count	total of UE events of subdirectories
924
	==============	====================================
D
Doug Thompson 已提交
925

926
Blocks
927
------
D
Doug Thompson 已提交
928

929 930
At the lowest directory level is the ``block`` directory. There can be 0, 1
or more blocks specified in each instance:
D
Doug Thompson 已提交
931

932 933 934
	+-------------+
	| test-block0 |
	+-------------+
D
Doug Thompson 已提交
935 936 937

In this directory the default attributes are:

938 939
	==============	================================================
	ce_count	which is counter of CE events for this ``block``
D
Doug Thompson 已提交
940
			of hardware being monitored
941
	ue_count	which is counter of UE events for this ``block``
D
Doug Thompson 已提交
942
			of hardware being monitored
943
	==============	================================================
D
Doug Thompson 已提交
944 945


946
The ``test_device_edac`` device adds 4 attributes and 1 control:
D
Doug Thompson 已提交
947

948
	================== ====================================================
D
Doug Thompson 已提交
949 950 951 952 953 954 955 956
	test-block-bits-0	for every POLL cycle this counter
				is incremented
	test-block-bits-1	every 10 cycles, this counter is bumped once,
				and test-block-bits-0 is set to 0
	test-block-bits-2	every 100 cycles, this counter is bumped once,
				and test-block-bits-1 is set to 0
	test-block-bits-3	every 1000 cycles, this counter is bumped once,
				and test-block-bits-2 is set to 0
957
	================== ====================================================
D
Doug Thompson 已提交
958 959


960
	================== ====================================================
D
Doug Thompson 已提交
961 962
	reset-counters		writing ANY thing to this control will
				reset all the above counters.
963
	================== ====================================================
D
Doug Thompson 已提交
964 965


966
Use of the ``test_device_edac`` driver should enable any others to create their own
D
Doug Thompson 已提交
967 968
unique drivers for their hardware systems.

969 970
The ``test_device_edac`` sample driver is located at the
http://bluesmoke.sourceforge.net project site for EDAC.
D
Doug Thompson 已提交
971

972

973 974
Usage of EDAC APIs on Nehalem and newer Intel CPUs
--------------------------------------------------
975

976 977 978 979
On older Intel architectures, the memory controller was part of the North
Bridge chipset. Nehalem, Sandy Bridge, Ivy Bridge, Haswell, Sky Lake and
newer Intel architectures integrated an enhanced version of the memory
controller (MC) inside the CPUs.
980

981 982 983 984 985 986 987 988 989 990 991
This chapter will cover the differences of the enhanced memory controllers
found on newer Intel CPUs, such as ``i7core_edac``, ``sb_edac`` and
``sbx_edac`` drivers.

.. note::

   The Xeon E7 processor families use a separate chip for the memory
   controller, called Intel Scalable Memory Buffer. This section doesn't
   apply for such families.

1) There is one Memory Controller per Quick Patch Interconnect
992 993
   (QPI). At the driver, the term "socket" means one QPI. This is
   associated with a physical CPU socket.
994 995

   Each MC have 3 physical read channels, 3 physical write channels and
996
   3 logic channels. The driver currently sees it as just 3 channels.
997 998 999
   Each channel can have up to 3 DIMMs.

   The minimum known unity is DIMMs. There are no information about csrows.
1000
   As EDAC API maps the minimum unity is csrows, the driver sequentially
1001
   maps channel/DIMM into different csrows.
1002

1003 1004
   For example, supposing the following layout::

1005 1006 1007 1008 1009 1010 1011
	Ch0 phy rd0, wr0 (0x063f4031): 2 ranks, UDIMMs
	  dimm 0 1024 Mb offset: 0, bank: 8, rank: 1, row: 0x4000, col: 0x400
	  dimm 1 1024 Mb offset: 4, bank: 8, rank: 1, row: 0x4000, col: 0x400
        Ch1 phy rd1, wr1 (0x063f4031): 2 ranks, UDIMMs
	  dimm 0 1024 Mb offset: 0, bank: 8, rank: 1, row: 0x4000, col: 0x400
	Ch2 phy rd3, wr3 (0x063f4031): 2 ranks, UDIMMs
	  dimm 0 1024 Mb offset: 0, bank: 8, rank: 1, row: 0x4000, col: 0x400
1012 1013 1014

   The driver will map it as::

1015 1016 1017 1018 1019
	csrow0: channel 0, dimm0
	csrow1: channel 0, dimm1
	csrow2: channel 1, dimm0
	csrow3: channel 2, dimm0

1020
   exports one DIMM per csrow.
1021

1022
   Each QPI is exported as a different memory controller.
1023

1024 1025
2) The MC has the ability to inject errors to test drivers. The drivers
   implement this functionality via some error injection nodes:
1026 1027

   For injecting a memory error, there are some sysfs nodes, under
1028
   ``/sys/devices/system/edac/mc/mc?/``:
1029

1030
   - ``inject_addrmatch/*``:
1031
      Controls the error injection mask register. It is possible to specify
1032 1033
      several characteristics of the address to match an error code::

1034 1035 1036 1037 1038 1039
         dimm = the affected dimm. Numbers are relative to a channel;
         rank = the memory rank;
         channel = the channel that will generate an error;
         bank = the affected bank;
         page = the page address;
         column (or col) = the address column.
1040

1041 1042 1043 1044 1045
      each of the above values can be set to "any" to match any valid value.

      At driver init, all values are set to any.

      For example, to generate an error at rank 1 of dimm 2, for any channel,
1046 1047
      any bank, any page, any column::

1048 1049
		echo 2 >/sys/devices/system/edac/mc/mc0/inject_addrmatch/dimm
		echo 1 >/sys/devices/system/edac/mc/mc0/inject_addrmatch/rank
1050

1051 1052
	To return to the default behaviour of matching any, you can do::

1053 1054
		echo any >/sys/devices/system/edac/mc/mc0/inject_addrmatch/dimm
		echo any >/sys/devices/system/edac/mc/mc0/inject_addrmatch/rank
1055

1056 1057 1058 1059 1060
   - ``inject_eccmask``:
          specifies what bits will have troubles,

   - ``inject_section``:
       specifies what ECC cache section will get the error::
1061 1062 1063 1064 1065

		3 for both
		2 for the highest
		1 for the lowest

1066 1067 1068
   - ``inject_type``:
       specifies the type of error, being a combination of the following bits::

1069 1070 1071 1072
		bit 0 - repeat
		bit 1 - ecc
		bit 2 - parity

1073 1074
   - ``inject_enable``:
       starts the error generation when something different than 0 is written.
1075 1076 1077 1078 1079 1080 1081 1082

   All inject vars can be read. root permission is needed for write.

   Datasheet states that the error will only be generated after a write on an
   address that matches inject_addrmatch. It seems, however, that reading will
   also produce an error.

   For example, the following code will generate an error for any write access
1083
   at socket 0, on any DIMM/address on channel 2::
1084

1085 1086 1087 1088 1089 1090
	echo 2 >/sys/devices/system/edac/mc/mc0/inject_addrmatch/channel
	echo 2 >/sys/devices/system/edac/mc/mc0/inject_type
	echo 64 >/sys/devices/system/edac/mc/mc0/inject_eccmask
	echo 3 >/sys/devices/system/edac/mc/mc0/inject_section
	echo 1 >/sys/devices/system/edac/mc/mc0/inject_enable
	dd if=/dev/mem of=/dev/null seek=16k bs=4k count=1 >& /dev/null
1091

1092 1093 1094
   For socket 1, it is needed to replace "mc0" by "mc1" at the above
   commands.

1095
   The generated error message will look like::
1096

1097
	EDAC MC0: UE row 0, channel-a= 0 channel-b= 0 labels "-": NON_FATAL (addr = 0x0075b980, socket=0, Dimm=0, Channel=2, syndrome=0x00000040, count=1, Err=8c0000400001009f:4000080482 (read error: read ECC error))
1098

1099
3) Corrected Error memory register counters
1100

1101 1102 1103
   Those newer MCs have some registers to count memory errors. The driver
   uses those registers to report Corrected Errors on devices with Registered
   DIMMs.
1104

1105 1106
   However, those counters don't work with Unregistered DIMM. As the chipset
   offers some counters that also work with UDIMMs (but with a worse level of
1107 1108
   granularity than the default ones), the driver exposes those registers for
   UDIMM memories.
1109

1110
   They can be read by looking at the contents of ``all_channel_counts/``::
1111

1112
     $ for i in /sys/devices/system/edac/mc/mc0/all_channel_counts/*; do echo $i; cat $i; done
1113 1114 1115 1116 1117 1118
	/sys/devices/system/edac/mc/mc0/all_channel_counts/udimm0
	0
	/sys/devices/system/edac/mc/mc0/all_channel_counts/udimm1
	0
	/sys/devices/system/edac/mc/mc0/all_channel_counts/udimm2
	0
1119 1120 1121

   What happens here is that errors on different csrows, but at the same
   dimm number will increment the same counter.
1122 1123
   So, in this memory mapping::

1124 1125 1126 1127
	csrow0: channel 0, dimm0
	csrow1: channel 0, dimm1
	csrow2: channel 1, dimm0
	csrow3: channel 2, dimm0
1128

1129
   The hardware will increment udimm0 for an error at the first dimm at either
1130 1131
   csrow0, csrow2  or csrow3;

1132
   The hardware will increment udimm1 for an error at the second dimm at either
1133 1134
   csrow0, csrow2  or csrow3;

1135
   The hardware will increment udimm2 for an error at the third dimm at either
1136
   csrow0, csrow2  or csrow3;
1137 1138 1139 1140

4) Standard error counters

   The standard error counters are generated when an mcelog error is received
1141 1142
   by the driver. Since, with UDIMM, this is counted by software, it is
   possible that some errors could be lost. With RDIMM's, they display the
1143
   contents of the registers
1144

1145 1146 1147 1148
Reference documents used on ``amd64_edac``
------------------------------------------

``amd64_edac`` module is based on the following documents
1149 1150
(available from http://support.amd.com/en-us/search/tech-docs):

1151
1. :Title:  BIOS and Kernel Developer's Guide for AMD Athlon 64 and AMD
1152
	   Opteron Processors
1153 1154 1155
   :AMD publication #: 26094
   :Revision: 3.26
   :Link: http://support.amd.com/TechDocs/26094.PDF
1156

1157
2. :Title:  BIOS and Kernel Developer's Guide for AMD NPT Family 0Fh
1158
	   Processors
1159 1160 1161 1162
   :AMD publication #: 32559
   :Revision: 3.00
   :Issue Date: May 2006
   :Link: http://support.amd.com/TechDocs/32559.pdf
1163

1164
3. :Title:  BIOS and Kernel Developer's Guide (BKDG) For AMD Family 10h
1165
	   Processors
1166 1167 1168 1169
   :AMD publication #: 31116
   :Revision: 3.00
   :Issue Date: September 07, 2007
   :Link: http://support.amd.com/TechDocs/31116.pdf
1170

1171
4. :Title: BIOS and Kernel Developer's Guide (BKDG) for AMD Family 15h
1172
	  Models 30h-3Fh Processors
1173 1174 1175 1176
   :AMD publication #: 49125
   :Revision: 3.06
   :Issue Date: 2/12/2015 (latest release)
   :Link: http://support.amd.com/TechDocs/49125_15h_Models_30h-3Fh_BKDG.pdf
1177

1178
5. :Title: BIOS and Kernel Developer's Guide (BKDG) for AMD Family 15h
1179
	  Models 60h-6Fh Processors
1180 1181 1182 1183
   :AMD publication #: 50742
   :Revision: 3.01
   :Issue Date: 7/23/2015 (latest release)
   :Link: http://support.amd.com/TechDocs/50742_15h_Models_60h-6Fh_BKDG.pdf
1184

1185
6. :Title: BIOS and Kernel Developer's Guide (BKDG) for AMD Family 16h
1186
	  Models 00h-0Fh Processors
1187 1188 1189 1190 1191 1192 1193 1194 1195
   :AMD publication #: 48751
   :Revision: 3.03
   :Issue Date: 2/23/2015 (latest release)
   :Link: http://support.amd.com/TechDocs/48751_16h_bkdg.pdf

Credits
=======

* Written by Doug Thompson <dougthompson@xmission.com>
1196

1197 1198
  - 7 Dec 2005
  - 17 Jul 2007	Updated
1199

1200
* |copy| Mauro Carvalho Chehab
1201

1202
  - 05 Aug 2009	Nehalem interface
1203
  - 26 Oct 2016 Converted to ReST and cleanups at the Nehalem section
1204

1205
* EDAC authors/maintainers:
1206

1207 1208 1209 1210
  - Doug Thompson, Dave Jiang, Dave Peterson et al,
  - Mauro Carvalho Chehab
  - Borislav Petkov
  - original author: Thayne Harbaugh