Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. menuconfig W1
  2. tristate "Dallas's 1-wire support"
  3. depends on HAS_IOMEM
  4. ---help---
  5. Dallas' 1-wire bus is useful to connect slow 1-pin devices
  6. such as iButtons and thermal sensors.
  7. If you want W1 support, you should say Y here.
  8. This W1 support can also be built as a module. If so, the module
  9. will be called wire.
  10. if W1
  11. config W1_CON
  12. depends on CONNECTOR
  13. bool "Userspace communication over connector"
  14. default y
  15. --- help ---
  16. This allows to communicate with userspace using connector. For more
  17. information see <file:Documentation/connector/connector.txt>.
  18. There are three types of messages between w1 core and userspace:
  19. 1. Events. They are generated each time new master or slave device found
  20. either due to automatic or requested search.
  21. 2. Userspace commands. Includes read/write and search/alarm search commands.
  22. 3. Replies to userspace commands.
  23. config W1_WORKQUEUE
  24. bool "Using kthread for checking w1 slave"
  25. default n
  26. help
  27. This allows to start the WQ func. when w1 master is looking for slaves.
  28. config W1_FAST_CHECK
  29. bool "Using fast check for checking w1 slave"
  30. default n
  31. help
  32. This allows to start the WQ func. when w1 master is looking for slaves.
  33. config W1_CF
  34. bool "Using cmd for find node"
  35. default n
  36. help
  37. This allows to check the node.
  38. config W1_SN
  39. bool "New node for checking SN"
  40. default n
  41. help
  42. This allows to check the SN.
  43. source drivers/w1/masters/Kconfig
  44. source drivers/w1/slaves/Kconfig
  45. endif # W1