brintos

brintos / linux-shallow public Read only

0
0
Text · 633 B · df826b4 Raw
38 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/nvmem/fsl,t1023-sfp.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NXP QorIQ eFuse support8 9maintainers:10  - Richard Alpe <richard@bit42.se>11 12description:13  Read support for the eFuses (SFP) on NXP QorIQ series SoC's.14 15allOf:16  - $ref: nvmem.yaml#17 18properties:19  compatible:20    const: fsl,t1023-sfp21 22  reg:23    maxItems: 124 25required:26  - compatible27  - reg28 29unevaluatedProperties: false30 31examples:32  - |33    efuse@e8000 {34        compatible = "fsl,t1023-sfp";35        reg = <0xe8000 0x1000>;36    };37...38