Path: blob/master/Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
26308 views
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause1%YAML 1.22---3$id: http://devicetree.org/schemas/edac/amazon,al-mc-edac.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Amazon's Annapurna Labs Memory Controller EDAC78maintainers:9- Talel Shenhar <talel@amazon.com>10- Talel Shenhar <talelshenhar@gmail.com>1112description: |13EDAC node is defined to describe on-chip error detection and correction for14Amazon's Annapurna Labs Memory Controller.1516properties:1718compatible:19const: amazon,al-mc-edac2021reg:22maxItems: 12324"#address-cells":25const: 22627"#size-cells":28const: 22930interrupts:31minItems: 132items:33- description: uncorrectable error interrupt34- description: correctable error interrupt3536interrupt-names:37minItems: 138items:39- const: ue40- const: ce4142required:43- compatible44- reg45- "#address-cells"46- "#size-cells"4748additionalProperties: false4950examples:51- |52#include <dt-bindings/interrupt-controller/irq.h>53soc {54#address-cells = <2>;55#size-cells = <2>;56edac@f0080000 {57#address-cells = <2>;58#size-cells = <2>;59compatible = "amazon,al-mc-edac";60reg = <0x0 0xf0080000 0x0 0x00010000>;61interrupt-parent = <&amazon_al_system_fabric>;62interrupt-names = "ue";63interrupts = <20 IRQ_TYPE_LEVEL_HIGH>;64};65};666768