1 .\" Copyright (c) 2006, M. Warner Losh
2 .\" Copyright (c) 1998, Nicolas Souchu
3 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in the
12 .\" documentation and/or other materials provided with the distribution.
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .Nd I2C generic I/O device driver
41 device driver provides generic I/O to any
44 In order to control I2C devices, use
48 .Bl -tag -width ".Dv I2CRSTCARD"
50 .Pq Vt "struct iiccmd"
51 Sends the start condition to the slave specified by the
54 All other elements are ignored.
56 No argument is passed.
57 Sends the stop condition to the bus.
58 This terminates the current transaction.
60 .Pq Vt "struct iiccmd"
62 The argument is completely ignored.
64 .Pq Vt "struct iiccmd"
67 The bus should already be started.
73 element is the number of bytes to write.
76 element is a boolean flag.
77 It is non-zero when additional write commands will follow.
80 element is a pointer to the data to write to the bus.
82 .Pq Vt "struct iiccmd"
85 The bus should already be started.
91 element is the number of bytes to write.
94 element is a boolean flag.
95 It is non-zero when additional write commands will follow.
98 element is a pointer to where to store the data read from the bus.
99 Short reads on the bus produce undefined results.
101 .Pq Vt "struct iic_rdwr_data"
102 Generic read/write interface.
103 Allows for an arbitrary number of commands to be sent to
104 an arbitrary number of devices on the bus.
105 A read transfer is specified if
109 Otherwise the transfer is a write transfer.
112 element specifies the 7-bit address for the transfer.
115 element is the length of the data.
118 element is a buffer for that data.
119 This ioctl is intended to be
124 The following data structures are defined in
126 and referenced above:
127 .Bd -literal -offset indent
135 /* Designed to be compatible with linux's struct i2c_msg */
140 #define IIC_M_RD 0x0001 /* read vs write */
141 uint16_t len; /* msg legnth */
145 struct iic_rdwr_data {
146 struct iic_msg *msgs;
151 It is also possible to use read/write routines, then I2C start/stop handshake is
155 However, the address used for the read/write routines is the one
168 manual page first appeared in
173 manual page was written by
182 All other interfaces suffer from some kind of race.