46 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/nvmem/microchip,lan9662-otpc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Microchip LAN9662 OTP Controller (OTPC)8 9maintainers:10 - Horatiu Vultur <horatiu.vultur@microchip.com>11 12description: |13 OTP controller drives a NVMEM memory where system specific data14 (e.g. hardware configuration settings, chip identifiers) or15 user specific data could be stored.16 17allOf:18 - $ref: nvmem.yaml#19 20properties:21 compatible:22 oneOf:23 - items:24 - const: microchip,lan9668-otpc25 - const: microchip,lan9662-otpc26 - enum:27 - microchip,lan9662-otpc28 29 reg:30 maxItems: 131 32required:33 - compatible34 - reg35 36unevaluatedProperties: false37 38examples:39 - |40 otpc: otp@e0021000 {41 compatible = "microchip,lan9662-otpc";42 reg = <0xe0021000 0x300>;43 };44 45...46