xref: /freebsd/sys/contrib/device-tree/Bindings/nvmem/nintendo-otp.yaml (revision fac71e4e09885bb2afa3d984a0c239a52e1a7418)
1354d7675SEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2354d7675SEmmanuel Vadot%YAML 1.2
3354d7675SEmmanuel Vadot---
4354d7675SEmmanuel Vadot$id: http://devicetree.org/schemas/nvmem/nintendo-otp.yaml#
5354d7675SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6354d7675SEmmanuel Vadot
77ef62cebSEmmanuel Vadottitle: Nintendo Wii and Wii U OTP
8354d7675SEmmanuel Vadot
9354d7675SEmmanuel Vadotdescription: |
10354d7675SEmmanuel Vadot  This binding represents the OTP memory as found on a Nintendo Wii or Wii U,
11354d7675SEmmanuel Vadot  which contains common and per-console keys, signatures and related data
12354d7675SEmmanuel Vadot  required to access peripherals.
13354d7675SEmmanuel Vadot
14354d7675SEmmanuel Vadot  See https://wiiubrew.org/wiki/Hardware/OTP
15354d7675SEmmanuel Vadot
16354d7675SEmmanuel Vadotmaintainers:
17354d7675SEmmanuel Vadot  - Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
18354d7675SEmmanuel Vadot
19354d7675SEmmanuel VadotallOf:
20*fac71e4eSEmmanuel Vadot  - $ref: nvmem.yaml#
21354d7675SEmmanuel Vadot
22354d7675SEmmanuel Vadotproperties:
23354d7675SEmmanuel Vadot  compatible:
24354d7675SEmmanuel Vadot    enum:
25354d7675SEmmanuel Vadot      - nintendo,hollywood-otp
26354d7675SEmmanuel Vadot      - nintendo,latte-otp
27354d7675SEmmanuel Vadot
28354d7675SEmmanuel Vadot  reg:
29354d7675SEmmanuel Vadot    maxItems: 1
30354d7675SEmmanuel Vadot
31354d7675SEmmanuel Vadotrequired:
32354d7675SEmmanuel Vadot  - compatible
33354d7675SEmmanuel Vadot  - reg
34354d7675SEmmanuel Vadot
35354d7675SEmmanuel VadotunevaluatedProperties: false
36354d7675SEmmanuel Vadot
37354d7675SEmmanuel Vadotexamples:
38354d7675SEmmanuel Vadot  - |
39354d7675SEmmanuel Vadot    otp@d8001ec {
40354d7675SEmmanuel Vadot        compatible = "nintendo,latte-otp";
41354d7675SEmmanuel Vadot        reg = <0x0d8001ec 0x8>;
42354d7675SEmmanuel Vadot    };
43354d7675SEmmanuel Vadot
44354d7675SEmmanuel Vadot...
45