Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # EEPROM subsystem configuration
  3. #
  4. menu "1-wire EEPROM support"
  5. config W1_EEPROM
  6. bool "Enable support for EEPROMs on 1wire interface"
  7. depends on DM
  8. help
  9. Support for the EEPROMs connected on 1-wire Dallas protocol interface
  10. if W1_EEPROM
  11. config W1_EEPROM_DS24XXX
  12. bool "Enable Maxim DS24 families EEPROM support"
  13. depends on W1
  14. help
  15. Maxim DS24 EEPROMs 1-Wire EEPROM support
  16. config W1_EEPROM_DS2502
  17. bool "Enable Maxim DS2502 Add-Only Memory support"
  18. depends on W1
  19. help
  20. Maxim DS2502 1-Wire add-only memory support.
  21. This device has 128 bytes of data memory, organized as 4 pages of
  22. 32 bytes and 8 out of band status bytes that may be used to redirect
  23. pages, allowing data to be modified up to 4 times (by external
  24. programming).
  25. The device may be seen as a 32 byte memory, using the page redirection
  26. or as a 128 byte memory, ignoring the page redirection.
  27. config W1_EEPROM_SANDBOX
  28. bool "Enable sandbox onewire EEPROM driver"
  29. depends on W1
  30. help
  31. Sandbox driver for a onewire EEPROM memory
  32. endif
  33. endmenu