eep_sandbox.txt 720 B

12345678910111213141516171819202122232425262728293031323334
  1. Onewire EEPROM sandbox driver device binding - one wire protocol sandbox EEPROM
  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/eep_sandbox.c
  9. Software ds24xxx device-tree node properties:
  10. Required:
  11. * compatible = "sandbox,w1-eeprom"
  12. Optional:
  13. * none
  14. Example:
  15. eeprom1: eeprom@0 {
  16. compatible = "sandbox,w1-eeprom";
  17. }
  18. Example with parent bus:
  19. onewire_tm: onewire {
  20. compatible = "w1-gpio";
  21. gpios = <&gpio_a 8>;
  22. eeprom1: eeprom@0 {
  23. compatible = "sandbox,w1-eeprom";
  24. }
  25. };