max6875 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. Kernel driver max6875
  2. =====================
  3. Supported chips:
  4. * Maxim max6874, max6875
  5. Prefixes: 'max6875'
  6. Addresses scanned: 0x50, 0x52
  7. Datasheets:
  8. http://pdfserv.maxim-ic.com/en/ds/MAX6874-MAX6875.pdf
  9. Author: Ben Gardner <bgardner@wabtec.com>
  10. Module Parameters
  11. -----------------
  12. * allow_write int
  13. Set to non-zero to enable write permission:
  14. *0: Read only
  15. 1: Read and write
  16. Description
  17. -----------
  18. The MAXIM max6875 is a EEPROM-programmable power-supply sequencer/supervisor.
  19. It provides timed outputs that can be used as a watchdog, if properly wired.
  20. It also provides 512 bytes of user EEPROM.
  21. At reset, the max6875 reads the configuration eeprom into its configuration
  22. registers. The chip then begins to operate according to the values in the
  23. registers.
  24. See the datasheet for details on how to program the EEPROM.
  25. Sysfs entries
  26. -------------
  27. eeprom_user - 512 bytes of user-defined EEPROM space. Only writable if
  28. allow_write was set and register 0x43 is 0.
  29. eeprom_config - 70 bytes of config EEPROM. Note that changes will not get
  30. loaded into register space until a power cycle or device reset.
  31. reg_config - 70 bytes of register space. Any changes take affect immediately.
  32. General Remarks
  33. ---------------
  34. A typical application will require that the EEPROMs be programmed once and
  35. never altered afterwards.