Blame view

drivers/w1/Kconfig 970 Bytes
012bfdf00   Jan Engelhardt   Use menuconfig ob...
1
  menuconfig W1
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
  	tristate "Dallas's 1-wire support"
012bfdf00   Jan Engelhardt   Use menuconfig ob...
3
  	depends on HAS_IOMEM
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
  	---help---
46e07f6e5   Evgeniy Polyakov   [PATCH] w1: Make ...
5
  	  Dallas' 1-wire bus is useful to connect slow 1-pin devices
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
  	  such as iButtons and thermal sensors.
7785925dd   Evgeniy Polyakov   [PATCH] w1: clean...
7

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
  	  If you want W1 support, you should say Y here.
  
  	  This W1 support can also be built as a module.  If so, the module
4737f0978   Pavel Machek   trivial: Kconfig:...
11
  	  will be called wire.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12

012bfdf00   Jan Engelhardt   Use menuconfig ob...
13
  if W1
46e07f6e5   Evgeniy Polyakov   [PATCH] w1: Make ...
14
  config W1_CON
012bfdf00   Jan Engelhardt   Use menuconfig ob...
15
  	depends on CONNECTOR
46e07f6e5   Evgeniy Polyakov   [PATCH] w1: Make ...
16
17
  	bool "Userspace communication over connector"
  	default y
d132d7f6f   Paul Bolle   Kconfig: replace ...
18
  	---help---
e403149c9   Dirk Hohndel   Kbuild/doc: fix l...
19
20
  	  This allows to communicate with userspace using connector. For more
  	  information see <file:Documentation/connector/connector.txt>.
46e07f6e5   Evgeniy Polyakov   [PATCH] w1: Make ...
21
22
23
  	  There are three types of messages between w1 core and userspace:
  	  1. Events. They are generated each time new master or slave device found
  		either due to automatic or requested search.
095096038   Matt LaPlante   Fix several typos...
24
  	  2. Userspace commands. Includes read/write and search/alarm search commands.
46e07f6e5   Evgeniy Polyakov   [PATCH] w1: Make ...
25
  	  3. Replies to userspace commands.
bd529cfb4   Evgeniy Polyakov   [PATCH] W1: Move ...
26
27
  source drivers/w1/masters/Kconfig
  source drivers/w1/slaves/Kconfig
0a25e4d56   Evgeniy Polyakov   [PATCH] w1_ds2433...
28

012bfdf00   Jan Engelhardt   Use menuconfig ob...
29
  endif # W1