brintos

brintos / linux-shallow public Read only

0
0
Text · 879 B · d74872a Raw
39 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/fuse/renesas,rcar-otp.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: R-Car E-FUSE connected to OTP_MEM8 9maintainers:10  - Geert Uytterhoeven <geert+renesas@glider.be>11 12description:13  The E-FUSE is a type of non-volatile memory, which is accessible through the14  One-Time Programmable Memory (OTP_MEM) module on some R-Car Gen4 SoCs.15 16properties:17  compatible:18    enum:19      - renesas,r8a779g0-otp # R-CarV4H20      - renesas,r8a779h0-otp # R-CarV4M21 22  reg:23    items:24      - description: OTP_MEM_025      - description: OTP_MEM_126 27required:28  - compatible29  - reg30 31additionalProperties: false32 33examples:34  - |35    otp: otp@e61be000 {36            compatible = "renesas,r8a779g0-otp";37            reg = <0xe61be000 0x1000>, <0xe61bf000 0x1000>;38    };39