xref: /openbmc/linux/Documentation/driver-api/i3c/protocol.rst (revision 4b4193256c8d3bc3a5397b5cd9494c2ad386317d)
1bd360e81SBoris Brezillon.. SPDX-License-Identifier: GPL-2.0
2bd360e81SBoris Brezillon
3bd360e81SBoris Brezillon============
4bd360e81SBoris BrezillonI3C protocol
5bd360e81SBoris Brezillon============
6bd360e81SBoris Brezillon
7bd360e81SBoris BrezillonDisclaimer
8bd360e81SBoris Brezillon==========
9bd360e81SBoris Brezillon
10bd360e81SBoris BrezillonThis chapter will focus on aspects that matter to software developers. For
11bd360e81SBoris Brezilloneverything hardware related (like how things are transmitted on the bus, how
12bd360e81SBoris Brezilloncollisions are prevented, ...) please have a look at the I3C specification.
13bd360e81SBoris Brezillon
14bd360e81SBoris BrezillonThis document is just a brief introduction to the I3C protocol and the concepts
15bd360e81SBoris Brezillonit brings to the table. If you need more information, please refer to the MIPI
16bd360e81SBoris BrezillonI3C specification (can be downloaded here
17*1496878aSAlexander A. Klimovhttps://resources.mipi.org/mipi-i3c-v1-download).
18bd360e81SBoris Brezillon
19bd360e81SBoris BrezillonIntroduction
20bd360e81SBoris Brezillon============
21bd360e81SBoris Brezillon
22bd360e81SBoris BrezillonThe I3C (pronounced 'eye-three-see') is a MIPI standardized protocol designed
23bd360e81SBoris Brezillonto overcome I2C limitations (limited speed, external signals needed for
24bd360e81SBoris Brezilloninterrupts, no automatic detection of the devices connected to the bus, ...)
25bd360e81SBoris Brezillonwhile remaining power-efficient.
26bd360e81SBoris Brezillon
27bd360e81SBoris BrezillonI3C Bus
28bd360e81SBoris Brezillon=======
29bd360e81SBoris Brezillon
30bd360e81SBoris BrezillonAn I3C bus is made of several I3C devices and possibly some I2C devices as
31bd360e81SBoris Brezillonwell, but let's focus on I3C devices for now.
32bd360e81SBoris Brezillon
33bd360e81SBoris BrezillonAn I3C device on the I3C bus can have one of the following roles:
34bd360e81SBoris Brezillon
35bd360e81SBoris Brezillon* Master: the device is driving the bus. It's the one in charge of initiating
36bd360e81SBoris Brezillon  transactions or deciding who is allowed to talk on the bus (slave generated
37bd360e81SBoris Brezillon  events are possible in I3C, see below).
38bd360e81SBoris Brezillon* Slave: the device acts as a slave, and is not able to send frames to another
39bd360e81SBoris Brezillon  slave on the bus. The device can still send events to the master on
40bd360e81SBoris Brezillon  its own initiative if the master allowed it.
41bd360e81SBoris Brezillon
42bd360e81SBoris BrezillonI3C is a multi-master protocol, so there might be several masters on a bus,
43bd360e81SBoris Brezillonthough only one device can act as a master at a given time. In order to gain
44bd360e81SBoris Brezillonbus ownership, a master has to follow a specific procedure.
45bd360e81SBoris Brezillon
46bd360e81SBoris BrezillonEach device on the I3C bus has to be assigned a dynamic address to be able to
47bd360e81SBoris Brezilloncommunicate. Until this is done, the device should only respond to a limited
48bd360e81SBoris Brezillonset of commands. If it has a static address (also called legacy I2C address),
49bd360e81SBoris Brezillonthe device can reply to I2C transfers.
50bd360e81SBoris Brezillon
51bd360e81SBoris BrezillonIn addition to these per-device addresses, the protocol defines a broadcast
52bd360e81SBoris Brezillonaddress in order to address all devices on the bus.
53bd360e81SBoris Brezillon
54bd360e81SBoris BrezillonOnce a dynamic address has been assigned to a device, this address will be used
55bd360e81SBoris Brezillonfor any direct communication with the device. Note that even after being
56bd360e81SBoris Brezillonassigned a dynamic address, the device should still process broadcast messages.
57bd360e81SBoris Brezillon
58bd360e81SBoris BrezillonI3C Device discovery
59bd360e81SBoris Brezillon====================
60bd360e81SBoris Brezillon
61bd360e81SBoris BrezillonThe I3C protocol defines a mechanism to automatically discover devices present
62bd360e81SBoris Brezillonon the bus, their capabilities and the functionalities they provide. In this
63bd360e81SBoris Brezillonregard I3C is closer to a discoverable bus like USB than it is to I2C or SPI.
64bd360e81SBoris Brezillon
65bd360e81SBoris BrezillonThe discovery mechanism is called DAA (Dynamic Address Assignment), because it
66bd360e81SBoris Brezillonnot only discovers devices but also assigns them a dynamic address.
67bd360e81SBoris Brezillon
68bd360e81SBoris BrezillonDuring DAA, each I3C device reports 3 important things:
69bd360e81SBoris Brezillon
70bd360e81SBoris Brezillon* BCR: Bus Characteristic Register. This 8-bit register describes the device bus
71bd360e81SBoris Brezillon  related capabilities
72bd360e81SBoris Brezillon* DCR: Device Characteristic Register. This 8-bit register describes the
73bd360e81SBoris Brezillon  functionalities provided by the device
74bd360e81SBoris Brezillon* Provisional ID: A 48-bit unique identifier. On a given bus there should be no
75bd360e81SBoris Brezillon  Provisional ID collision, otherwise the discovery mechanism may fail.
76bd360e81SBoris Brezillon
77bd360e81SBoris BrezillonI3C slave events
78bd360e81SBoris Brezillon================
79bd360e81SBoris Brezillon
80bd360e81SBoris BrezillonThe I3C protocol allows slaves to generate events on their own, and thus allows
81bd360e81SBoris Brezillonthem to take temporary control of the bus.
82bd360e81SBoris Brezillon
83bd360e81SBoris BrezillonThis mechanism is called IBI for In Band Interrupts, and as stated in the name,
84bd360e81SBoris Brezillonit allows devices to generate interrupts without requiring an external signal.
85bd360e81SBoris Brezillon
86bd360e81SBoris BrezillonDuring DAA, each device on the bus has been assigned an address, and this
87bd360e81SBoris Brezillonaddress will serve as a priority identifier to determine who wins if 2 different
88bd360e81SBoris Brezillondevices are generating an interrupt at the same moment on the bus (the lower the
89bd360e81SBoris Brezillondynamic address the higher the priority).
90bd360e81SBoris Brezillon
91bd360e81SBoris BrezillonMasters are allowed to inhibit interrupts if they want to. This inhibition
92bd360e81SBoris Brezillonrequest can be broadcast (applies to all devices) or sent to a specific
93bd360e81SBoris Brezillondevice.
94bd360e81SBoris Brezillon
95bd360e81SBoris BrezillonI3C Hot-Join
96bd360e81SBoris Brezillon============
97bd360e81SBoris Brezillon
98bd360e81SBoris BrezillonThe Hot-Join mechanism is similar to USB hotplug. This mechanism allows
99bd360e81SBoris Brezillonslaves to join the bus after it has been initialized by the master.
100bd360e81SBoris Brezillon
101bd360e81SBoris BrezillonThis covers the following use cases:
102bd360e81SBoris Brezillon
103bd360e81SBoris Brezillon* the device is not powered when the bus is probed
104bd360e81SBoris Brezillon* the device is hotplugged on the bus through an extension board
105bd360e81SBoris Brezillon
106bd360e81SBoris BrezillonThis mechanism is relying on slave events to inform the master that a new
107bd360e81SBoris Brezillondevice joined the bus and is waiting for a dynamic address.
108bd360e81SBoris Brezillon
109bd360e81SBoris BrezillonThe master is then free to address the request as it wishes: ignore it or
110bd360e81SBoris Brezillonassign a dynamic address to the slave.
111bd360e81SBoris Brezillon
112bd360e81SBoris BrezillonI3C transfer types
113bd360e81SBoris Brezillon==================
114bd360e81SBoris Brezillon
115bd360e81SBoris BrezillonIf you omit SMBus (which is just a standardization on how to access registers
116bd360e81SBoris Brezillonexposed by I2C devices), I2C has only one transfer type.
117bd360e81SBoris Brezillon
118bd360e81SBoris BrezillonI3C defines 3 different classes of transfer in addition to I2C transfers which
119bd360e81SBoris Brezillonare here for backward compatibility with I2C devices.
120bd360e81SBoris Brezillon
121bd360e81SBoris BrezillonI3C CCC commands
122bd360e81SBoris Brezillon----------------
123bd360e81SBoris Brezillon
124bd360e81SBoris BrezillonCCC (Common Command Code) commands are meant to be used for anything that is
125bd360e81SBoris Brezillonrelated to bus management and all features that are common to a set of devices.
126bd360e81SBoris Brezillon
127bd360e81SBoris BrezillonCCC commands contain an 8-bit CCC ID describing the command that is executed.
128bd360e81SBoris BrezillonThe MSB of this ID specifies whether this is a broadcast command (bit7 = 0) or a
129bd360e81SBoris Brezillonunicast one (bit7 = 1).
130bd360e81SBoris Brezillon
131bd360e81SBoris BrezillonThe command ID can be followed by a payload. Depending on the command, this
132bd360e81SBoris Brezillonpayload is either sent by the master sending the command (write CCC command),
133bd360e81SBoris Brezillonor sent by the slave receiving the command (read CCC command). Of course, read
134bd360e81SBoris Brezillonaccesses only apply to unicast commands.
135bd360e81SBoris BrezillonNote that, when sending a CCC command to a specific device, the device address
136bd360e81SBoris Brezillonis passed in the first byte of the payload.
137bd360e81SBoris Brezillon
138bd360e81SBoris BrezillonThe payload length is not explicitly passed on the bus, and should be extracted
139bd360e81SBoris Brezillonfrom the CCC ID.
140bd360e81SBoris Brezillon
141bd360e81SBoris BrezillonNote that vendors can use a dedicated range of CCC IDs for their own commands
142bd360e81SBoris Brezillon(0x61-0x7f and 0xe0-0xef).
143bd360e81SBoris Brezillon
144bd360e81SBoris BrezillonI3C Private SDR transfers
145bd360e81SBoris Brezillon-------------------------
146bd360e81SBoris Brezillon
147bd360e81SBoris BrezillonPrivate SDR (Single Data Rate) transfers should be used for anything that is
148bd360e81SBoris Brezillondevice specific and does not require high transfer speed.
149bd360e81SBoris Brezillon
150bd360e81SBoris BrezillonIt is the equivalent of I2C transfers but in the I3C world. Each transfer is
151bd360e81SBoris Brezillonpassed the device address (dynamic address assigned during DAA), a payload
152bd360e81SBoris Brezillonand a direction.
153bd360e81SBoris Brezillon
154bd360e81SBoris BrezillonThe only difference with I2C is that the transfer is much faster (typical clock
155bd360e81SBoris Brezillonfrequency is 12.5MHz).
156bd360e81SBoris Brezillon
157bd360e81SBoris BrezillonI3C HDR commands
158bd360e81SBoris Brezillon----------------
159bd360e81SBoris Brezillon
160bd360e81SBoris BrezillonHDR commands should be used for anything that is device specific and requires
161bd360e81SBoris Brezillonhigh transfer speed.
162bd360e81SBoris Brezillon
163bd360e81SBoris BrezillonThe first thing attached to an HDR command is the HDR mode. There are currently
164bd360e81SBoris Brezillon3 different modes defined by the I3C specification (refer to the specification
165bd360e81SBoris Brezillonfor more details):
166bd360e81SBoris Brezillon
167bd360e81SBoris Brezillon* HDR-DDR: Double Data Rate mode
168bd360e81SBoris Brezillon* HDR-TSP: Ternary Symbol Pure. Only usable on busses with no I2C devices
169bd360e81SBoris Brezillon* HDR-TSL: Ternary Symbol Legacy. Usable on busses with I2C devices
170bd360e81SBoris Brezillon
171bd360e81SBoris BrezillonWhen sending an HDR command, the whole bus has to enter HDR mode, which is done
172bd360e81SBoris Brezillonusing a broadcast CCC command.
173bd360e81SBoris BrezillonOnce the bus has entered a specific HDR mode, the master sends the HDR command.
174bd360e81SBoris BrezillonAn HDR command is made of:
175bd360e81SBoris Brezillon
176bd360e81SBoris Brezillon* one 16-bits command word in big endian
177bd360e81SBoris Brezillon* N 16-bits data words in big endian
178bd360e81SBoris Brezillon
179bd360e81SBoris BrezillonThose words may be wrapped with specific preambles/post-ambles which depend on
180bd360e81SBoris Brezillonthe chosen HDR mode and are detailed here (see the specification for more
181bd360e81SBoris Brezillondetails).
182bd360e81SBoris Brezillon
183bd360e81SBoris BrezillonThe 16-bits command word is made of:
184bd360e81SBoris Brezillon
185bd360e81SBoris Brezillon* bit[15]: direction bit, read is 1, write is 0
186bd360e81SBoris Brezillon* bit[14:8]: command code. Identifies the command being executed, the amount of
187bd360e81SBoris Brezillon  data words and their meaning
188bd360e81SBoris Brezillon* bit[7:1]: I3C address of the device this command is addressed to
189bd360e81SBoris Brezillon* bit[0]: reserved/parity-bit
190bd360e81SBoris Brezillon
191bd360e81SBoris BrezillonBackward compatibility with I2C devices
192bd360e81SBoris Brezillon=======================================
193bd360e81SBoris Brezillon
194bd360e81SBoris BrezillonThe I3C protocol has been designed to be backward compatible with I2C devices.
195bd360e81SBoris BrezillonThis backward compatibility allows one to connect a mix of I2C and I3C devices
196bd360e81SBoris Brezillonon the same bus, though, in order to be really efficient, I2C devices should
197bd360e81SBoris Brezillonbe equipped with 50 ns spike filters.
198bd360e81SBoris Brezillon
199bd360e81SBoris BrezillonI2C devices can't be discovered like I3C ones and have to be statically
200bd360e81SBoris Brezillondeclared. In order to let the master know what these devices are capable of
201bd360e81SBoris Brezillon(both in terms of bus related limitations and functionalities), the software
202bd360e81SBoris Brezillonhas to provide some information, which is done through the LVR (Legacy I2C
203bd360e81SBoris BrezillonVirtual Register).
204