Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #
  2. # 1-wire slaves configuration
  3. #
  4. menu "1-wire Slaves"
  5. config W1_SLAVE_THERM
  6. tristate "Thermal family implementation"
  7. help
  8. Say Y here if you want to connect 1-wire thermal sensors to your
  9. wire.
  10. config W1_SLAVE_SMEM
  11. tristate "Simple 64bit memory family implementation"
  12. help
  13. Say Y here if you want to connect 1-wire
  14. simple 64bit memory rom(ds2401/ds2411/ds1990*) to your wire.
  15. config W1_SLAVE_DS2423
  16. tristate "Counter 1-wire device (DS2423)"
  17. select CRC16
  18. help
  19. If you enable this you can read the counter values available
  20. in the DS2423 chipset from the w1_slave file under the
  21. sys file system.
  22. Say Y here if you want to use a 1-wire
  23. counter family device (DS2423).
  24. config W1_SLAVE_DS2431
  25. tristate "1kb EEPROM family support (DS2431)"
  26. help
  27. Say Y here if you want to use a 1-wire
  28. 1kb EEPROM family device (DS2431)
  29. config W1_SLAVE_DS2433
  30. tristate "4kb EEPROM family support (DS2433)"
  31. help
  32. Say Y here if you want to use a 1-wire
  33. 4kb EEPROM family device (DS2433).
  34. config W1_SLAVE_DS2433_CRC
  35. bool "Protect DS2433 data with a CRC16"
  36. depends on W1_SLAVE_DS2433
  37. select CRC16
  38. help
  39. Say Y here to protect DS2433 data with a CRC16.
  40. Each block has 30 bytes of data and a two byte CRC16.
  41. Full block writes are only allowed if the CRC is valid.
  42. config W1_SLAVE_DS2760
  43. tristate "Dallas 2760 battery monitor chip (HP iPAQ & others)"
  44. depends on W1
  45. help
  46. If you enable this you will have the DS2760 battery monitor
  47. chip support.
  48. The battery monitor chip is used in many batteries/devices
  49. as the one who is responsible for charging/discharging/monitoring
  50. Li+ batteries.
  51. If you are unsure, say N.
  52. config W1_SLAVE_BQ27000
  53. tristate "BQ27000 slave support"
  54. depends on W1
  55. help
  56. Say Y here if you want to use a hdq
  57. bq27000 slave support.
  58. endmenu