blob: 377507c56162ae79a8cf866035fc51fff0e5afe3 [file] [log] [blame]
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -03001=======================
2I2C/SMBus Functionality
3=======================
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005INTRODUCTION
6------------
7
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -03008Because not every I2C or SMBus adapter implements everything in the
Linus Torvalds1da177e2005-04-16 15:20:36 -07009I2C specifications, a client can not trust that everything it needs
10is implemented when it is given the option to attach to an adapter:
11the client needs some way to check whether an adapter has the needed
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030012functionality.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14
15FUNCTIONALITY CONSTANTS
16-----------------------
17
18For the most up-to-date list of functionality constants, please check
Baruch Siach8421d4f2015-02-19 12:51:30 +020019<uapi/linux/i2c.h>!
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030021 =============================== ==============================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 I2C_FUNC_I2C Plain i2c-level commands (Pure SMBus
23 adapters typically can not do these)
24 I2C_FUNC_10BIT_ADDR Handles the 10-bit address extensions
Hideki Iwamotod057c962005-09-25 16:53:04 +020025 I2C_FUNC_PROTOCOL_MANGLING Knows about the I2C_M_IGNORE_NAK,
Mark Brown14674e72012-05-30 10:55:34 +020026 I2C_M_REV_DIR_ADDR and I2C_M_NO_RD_ACK
27 flags (which modify the I2C protocol!)
28 I2C_FUNC_NOSTART Can skip repeated start sequence
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 I2C_FUNC_SMBUS_QUICK Handles the SMBus write_quick command
30 I2C_FUNC_SMBUS_READ_BYTE Handles the SMBus read_byte command
31 I2C_FUNC_SMBUS_WRITE_BYTE Handles the SMBus write_byte command
32 I2C_FUNC_SMBUS_READ_BYTE_DATA Handles the SMBus read_byte_data command
33 I2C_FUNC_SMBUS_WRITE_BYTE_DATA Handles the SMBus write_byte_data command
34 I2C_FUNC_SMBUS_READ_WORD_DATA Handles the SMBus read_word_data command
35 I2C_FUNC_SMBUS_WRITE_WORD_DATA Handles the SMBus write_byte_data command
36 I2C_FUNC_SMBUS_PROC_CALL Handles the SMBus process_call command
37 I2C_FUNC_SMBUS_READ_BLOCK_DATA Handles the SMBus read_block_data command
38 I2C_FUNC_SMBUS_WRITE_BLOCK_DATA Handles the SMBus write_block_data command
39 I2C_FUNC_SMBUS_READ_I2C_BLOCK Handles the SMBus read_i2c_block_data command
40 I2C_FUNC_SMBUS_WRITE_I2C_BLOCK Handles the SMBus write_i2c_block_data command
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030041 =============================== ==============================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43A few combinations of the above flags are also defined for your convenience:
44
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030045 ========================= ======================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 I2C_FUNC_SMBUS_BYTE Handles the SMBus read_byte
47 and write_byte commands
48 I2C_FUNC_SMBUS_BYTE_DATA Handles the SMBus read_byte_data
49 and write_byte_data commands
50 I2C_FUNC_SMBUS_WORD_DATA Handles the SMBus read_word_data
51 and write_word_data commands
52 I2C_FUNC_SMBUS_BLOCK_DATA Handles the SMBus read_block_data
53 and write_block_data commands
54 I2C_FUNC_SMBUS_I2C_BLOCK Handles the SMBus read_i2c_block_data
55 and write_i2c_block_data commands
Geert Uytterhoeven6808b002014-03-11 11:23:43 +010056 I2C_FUNC_SMBUS_EMUL Handles all SMBus commands that can be
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 emulated by a real I2C adapter (using
58 the transparent emulation layer)
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030059 ========================= ======================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Mark Brown14674e72012-05-30 10:55:34 +020061In kernel versions prior to 3.5 I2C_FUNC_NOSTART was implemented as
62part of I2C_FUNC_PROTOCOL_MANGLING.
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Jean Delvare88b28322008-05-11 20:37:05 +020065ADAPTER IMPLEMENTATION
66----------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jean Delvare88b28322008-05-11 20:37:05 +020068When you write a new adapter driver, you will have to implement a
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030069function callback ``functionality``. Typical implementations are given
Jean Delvare88b28322008-05-11 20:37:05 +020070below.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Jean Delvare88b28322008-05-11 20:37:05 +020072A typical SMBus-only adapter would list all the SMBus transactions it
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030073supports. This example comes from the i2c-piix4 driver::
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jean Delvare88b28322008-05-11 20:37:05 +020075 static u32 piix4_func(struct i2c_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 {
Jean Delvare88b28322008-05-11 20:37:05 +020077 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
78 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
79 I2C_FUNC_SMBUS_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
81
Jean Delvare88b28322008-05-11 20:37:05 +020082A typical full-I2C adapter would use the following (from the i2c-pxa
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -030083driver)::
Jean Delvare88b28322008-05-11 20:37:05 +020084
85 static u32 i2c_pxa_functionality(struct i2c_adapter *adap)
86 {
87 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
88 }
89
90I2C_FUNC_SMBUS_EMUL includes all the SMBus transactions (with the
91addition of I2C block transactions) which i2c-core can emulate using
92I2C_FUNC_I2C without any help from the adapter driver. The idea is
93to let the client drivers check for the support of SMBus functions
94without having to care whether the said functions are implemented in
95hardware by the adapter, or emulated in software by i2c-core on top
96of an I2C adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98
99CLIENT CHECKING
100---------------
101
102Before a client tries to attach to an adapter, or even do tests to check
103whether one of the devices it supports is present on an adapter, it should
Jean Delvare88b28322008-05-11 20:37:05 +0200104check whether the needed functionality is present. The typical way to do
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -0300105this is (from the lm75 driver)::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Jean Delvare88b28322008-05-11 20:37:05 +0200107 static int lm75_detect(...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 {
Jean Delvare88b28322008-05-11 20:37:05 +0200109 (...)
110 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
111 I2C_FUNC_SMBUS_WORD_DATA))
112 goto exit;
113 (...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
Jean Delvare88b28322008-05-11 20:37:05 +0200116Here, the lm75 driver checks if the adapter can do both SMBus byte data
117and SMBus word data transactions. If not, then the driver won't work on
118this adapter and there's no point in going on. If the check above is
119successful, then the driver knows that it can call the following
120functions: i2c_smbus_read_byte_data(), i2c_smbus_write_byte_data(),
121i2c_smbus_read_word_data() and i2c_smbus_write_word_data(). As a rule of
122thumb, the functionality constants you test for with
123i2c_check_functionality() should match exactly the i2c_smbus_* functions
124which you driver is calling.
125
126Note that the check above doesn't tell whether the functionalities are
127implemented in hardware by the underlying adapter or emulated in
128software by i2c-core. Client drivers don't have to care about this, as
129i2c-core will transparently implement SMBus transactions on top of I2C
130adapters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132
133CHECKING THROUGH /DEV
134---------------------
135
136If you try to access an adapter from a userspace program, you will have
137to use the /dev interface. You will still have to check whether the
138functionality you need is supported, of course. This is done using
Jean Delvare88b28322008-05-11 20:37:05 +0200139the I2C_FUNCS ioctl. An example, adapted from the i2cdetect program, is
Mauro Carvalho Chehabccf988b2019-07-26 09:51:16 -0300140below::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 int file;
Jean Delvare88b28322008-05-11 20:37:05 +0200143 if (file = open("/dev/i2c-0", O_RDWR) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /* Some kind of error handling */
145 exit(1);
146 }
Jean Delvare88b28322008-05-11 20:37:05 +0200147 if (ioctl(file, I2C_FUNCS, &funcs) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* Some kind of error handling */
149 exit(1);
150 }
Jean Delvare88b28322008-05-11 20:37:05 +0200151 if (!(funcs & I2C_FUNC_SMBUS_QUICK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* Oops, the needed functionality (SMBus write_quick function) is
153 not available! */
154 exit(1);
155 }
156 /* Now it is safe to use the SMBus write_quick command */