diff options
author | Titus Rwantare <titusr@google.com> | 2021-07-08 10:25:52 -0700 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2021-07-08 14:15:45 -0500 |
commit | 3746d5c15e70570be265e55c838429db97ef94ab (patch) | |
tree | 7d5c21c92dee148693d8e57539afea9fa2f1f04d /hw/i2c/Kconfig | |
parent | 9e7449901d33ed0ddc0c432b15896019e3aec4f1 (diff) |
hw/i2c: add support for PMBus
QEMU has support for SMBus devices, and PMBus is a more specific
implementation of SMBus. The additions made in this commit makes it easier to
add new PMBus devices to QEMU.
https://pmbus.org/specification-archives/
Reviewed-by: Joel Stanley <joel@jms.id.au>
Reviewed-by: Hao Wu <wuhaotsh@google.com>
Signed-off-by: Titus Rwantare <titusr@google.com>
Message-Id: <20210708172556.1868139-2-titusr@google.com>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'hw/i2c/Kconfig')
-rw-r--r-- | hw/i2c/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/i2c/Kconfig b/hw/i2c/Kconfig index 8d120a25d5..8217cb5041 100644 --- a/hw/i2c/Kconfig +++ b/hw/i2c/Kconfig @@ -32,3 +32,7 @@ config MPC_I2C config PCA954X bool select I2C + +config PMBUS + bool + select SMBUS |