xref: /openbmc/linux/drivers/i3c/Kconfig (revision 8dda2eac)
1# SPDX-License-Identifier: GPL-2.0
2
3menuconfig I3C
4	tristate "I3C support"
5	select I2C
6	help
7	  I3C is a serial protocol standardized by the MIPI alliance.
8
9	  It's supposed to be backward compatible with I2C while providing
10	  support for high speed transfers and native interrupt support
11	  without the need for extra pins.
12
13	  The I3C protocol also standardizes the slave device types and is
14	  mainly designed to communicate with sensors.
15
16	  If you want I3C support, you should say Y here and also to the
17	  specific driver for your bus adapter(s) below.
18
19	  This I3C support can also be built as a module.  If so, the module
20	  will be called i3c.
21
22if I3C
23source "drivers/i3c/master/Kconfig"
24endif # I3C
25