blob: d6dcb138abf510534d2539665f74176c013a37b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001MODULE: i2c-stub
2
3DESCRIPTION:
4
5This module is a very simple fake I2C/SMBus driver. It implements four
6types of SMBus commands: write quick, (r/w) byte, (r/w) byte data, and
7(r/w) word data.
8
9No hardware is needed nor associated with this module. It will accept write
10quick commands to all addresses; it will respond to the other commands (also
11to all addresses) by reading from or writing to an array in memory. It will
12also spam the kernel logs for every command it handles.
13
14A pointer register with auto-increment is implemented for all byte
15operations. This allows for continuous byte reads like those supported by
16EEPROMs, among others.
17
18The typical use-case is like this:
19 1. load this module
20 2. use i2cset (from lm_sensors project) to pre-load some data
21 3. load the target sensors chip driver module
22 4. observe its behavior in the kernel log
23
24CAVEATS:
25
26There are independent arrays for byte/data and word/data commands. Depending
27on if/how a target driver mixes them, you'll need to be careful.
28
29If your target driver polls some byte or word waiting for it to change, the
30stub could lock it up. Use i2cset to unlock it.
31
32If the hardware for your driver has banked registers (e.g. Winbond sensors
33chips) this module will not work well - although it could be extended to
34support that pretty easily.
35
36If you spam it hard enough, printk can be lossy. This module really wants
37something like relayfs.
38