]> bbs.cooldavid.org Git - net-next-2.6.git/blame - Documentation/i2c/i2c-stub
scm: lower SCM_MAX_FD
[net-next-2.6.git] / Documentation / i2c / i2c-stub
CommitLineData
1da177e4
LT
1MODULE: i2c-stub
2
3DESCRIPTION:
4
47103178
JD
5This module is a very simple fake I2C/SMBus driver. It implements five
6types of SMBus commands: write quick, (r/w) byte, (r/w) byte data, (r/w)
7word data, and (r/w) I2C block data.
1da177e4 8
9d90c1fd
JD
9You need to provide chip addresses as a module parameter when loading this
10driver, which will then only react to SMBus commands to these addresses.
7a8d29ce 11
1da177e4 12No hardware is needed nor associated with this module. It will accept write
9d90c1fd
JD
13quick commands to the specified addresses; it will respond to the other
14commands (also to the specified addresses) by reading from or writing to
15arrays in memory. It will also spam the kernel logs for every command it
16handles.
1da177e4
LT
17
18A pointer register with auto-increment is implemented for all byte
19operations. This allows for continuous byte reads like those supported by
20EEPROMs, among others.
21
22The typical use-case is like this:
23 1. load this module
6471b689
JD
24 2. use i2cset (from the i2c-tools project) to pre-load some data
25 3. load the target chip driver module
1da177e4
LT
26 4. observe its behavior in the kernel log
27
b3af547e
JD
28There's a script named i2c-stub-from-dump in the i2c-tools package which
29can load register values automatically from a chip dump.
30
7a8d29ce
JD
31PARAMETERS:
32
9d90c1fd
JD
33int chip_addr[10]:
34 The SMBus addresses to emulate chips at.
7a8d29ce 35
38f41f28
JD
36unsigned long functionality:
37 Functionality override, to disable some commands. See I2C_FUNC_*
38 constants in <linux/i2c.h> for the suitable values. For example,
39 value 0x1f0000 would only enable the quick, byte and byte data
40 commands.
41
1da177e4
LT
42CAVEATS:
43
1da177e4
LT
44If your target driver polls some byte or word waiting for it to change, the
45stub could lock it up. Use i2cset to unlock it.
46
47If the hardware for your driver has banked registers (e.g. Winbond sensors
48chips) this module will not work well - although it could be extended to
49support that pretty easily.
50
51If you spam it hard enough, printk can be lossy. This module really wants
52something like relayfs.
53