amlogic-efuse.txt 635 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. = Amlogic eFuse device tree bindings =
  2. Required properties:
  3. - compatible: should be "amlogic,meson-gxbb-efuse"
  4. = Data cells =
  5. Are child nodes of eFuse, bindings of which as described in
  6. bindings/nvmem/nvmem.txt
  7. Example:
  8. efuse: efuse {
  9. compatible = "amlogic,meson-gxbb-efuse";
  10. #address-cells = <1>;
  11. #size-cells = <1>;
  12. sn: sn@14 {
  13. reg = <0x14 0x10>;
  14. };
  15. eth_mac: eth_mac@34 {
  16. reg = <0x34 0x10>;
  17. };
  18. bid: bid@46 {
  19. reg = <0x46 0x30>;
  20. };
  21. };
  22. = Data consumers =
  23. Are device nodes which consume nvmem data cells.
  24. For example:
  25. eth_mac {
  26. ...
  27. nvmem-cells = <&eth_mac>;
  28. nvmem-cell-names = "eth_mac";
  29. };