zii,rave-sp-eeprom.txt 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Zodiac Inflight Innovations RAVE EEPROM Bindings
  2. RAVE SP EEPROM device is a "MFD cell" device exposing physical EEPROM
  3. attached to RAVE Supervisory Processor. It is expected that its Device
  4. Tree node is specified as a child of the node corresponding to the
  5. parent RAVE SP device (as documented in
  6. Documentation/devicetree/bindings/mfd/zii,rave-sp.txt)
  7. Required properties:
  8. - compatible: Should be "zii,rave-sp-eeprom"
  9. Optional properties:
  10. - zii,eeprom-name: Unique EEPROM identifier describing its function in the
  11. system. Will be used as created NVMEM deivce's name.
  12. Data cells:
  13. Data cells are child nodes of eerpom node, bindings for which are
  14. documented in Documentation/devicetree/bindings/nvmem/nvmem.txt
  15. Example:
  16. rave-sp {
  17. compatible = "zii,rave-sp-rdu1";
  18. current-speed = <38400>;
  19. eeprom@a4 {
  20. compatible = "zii,rave-sp-eeprom";
  21. reg = <0xa4 0x4000>;
  22. #address-cells = <1>;
  23. #size-cells = <1>;
  24. zii,eeprom-name = "main-eeprom";
  25. wdt_timeout: wdt-timeout@81 {
  26. reg = <0x81 2>;
  27. };
  28. };
  29. }