ds2502.txt 697 B

123456789101112131415161718192021222324252627282930313233
  1. Maxim DS2502 driver device binding - one wire protocol add only memory from Maxim
  2. =======================
  3. This memory needs to be connected to a onewire bus, as a child node.
  4. The bus will read the device serial number and match this node with a found
  5. device on the bus
  6. Also check doc/device-tree-bindings/w1 for onewire bus drivers
  7. Driver:
  8. - drivers/w1-eeprom/ds2502.c
  9. Ds2502 device-tree node properties:
  10. Required:
  11. * compatible = "maxim,ds2502"
  12. Optional:
  13. * none
  14. Example:
  15. eeprom1: eeprom@0 {
  16. compatible = "maxim,ds2502";
  17. };
  18. Example with parent bus:
  19. onewire {
  20. compatible = "fsl,imx53-owire";
  21. reg = <0x63fa4000 0x4000>;
  22. eeprom1: eeprom@0 {
  23. compatible = "maxim,ds2502";
  24. };
  25. };