brintos

brintos / linux-shallow public Read only

0
0
Text · 924 B · 95121dd Raw
50 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/nvmem/mxs-ocotp.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: On-Chip OTP Memory for Freescale i.MX23/i.MX288 9maintainers:10  - Shawn Guo <shawnguo@kernel.org>11  - Sascha Hauer <s.hauer@pengutronix.de>12  - Fabio Estevam <festevam@gmail.com>13 14allOf:15  - $ref: nvmem.yaml#16  - $ref: nvmem-deprecated-cells.yaml#17 18properties:19  compatible:20    items:21      - enum:22          - fsl,imx23-ocotp23          - fsl,imx28-ocotp24      - const: fsl,ocotp25 26  reg:27    maxItems: 128 29  clocks:30    maxItems: 131 32required:33  - compatible34  - reg35  - clocks36 37unevaluatedProperties: false38 39examples:40  - |41    ocotp: efuse@8002c000 {42        compatible = "fsl,imx28-ocotp", "fsl,ocotp";43        #address-cells = <1>;44        #size-cells = <1>;45        reg = <0x8002c000 0x2000>;46        clocks = <&clks 25>;47    };48 49...50