imx-ocotp.txt 635 B

123456789101112131415161718192021
  1. Freescale i.MX6 On-Chip OTP Controller (OCOTP) device tree bindings
  2. This binding represents the on-chip eFuse OTP controller found on
  3. i.MX6Q/D, i.MX6DL/S, i.MX6SL, and i.MX6SX SoCs.
  4. Required properties:
  5. - compatible: should be one of
  6. "fsl,imx6q-ocotp" (i.MX6Q/D/DL/S),
  7. "fsl,imx6sl-ocotp" (i.MX6SL), or
  8. "fsl,imx6sx-ocotp" (i.MX6SX), followed by "syscon".
  9. - reg: Should contain the register base and length.
  10. - clocks: Should contain a phandle pointing to the gated peripheral clock.
  11. Example:
  12. ocotp: ocotp@021bc000 {
  13. compatible = "fsl,imx6q-ocotp", "syscon";
  14. reg = <0x021bc000 0x4000>;
  15. clocks = <&clks IMX6QDL_CLK_IIM>;
  16. };