diff options
author | Corey Minyard <minyard@acm.org> | 2021-09-29 13:51:05 +0200 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2021-10-05 13:54:17 +0200 |
commit | 63c4eb347164845b380089012fe43992511c0ad3 (patch) | |
tree | 9f90e661da356b447fda373e90df0858c8be7fce /drivers/char/ipmi/Kconfig | |
parent | ipmi: Add support for IPMB direct messages (diff) | |
download | linux-63c4eb347164845b380089012fe43992511c0ad3.tar.xz linux-63c4eb347164845b380089012fe43992511c0ad3.zip |
ipmi:ipmb: Add initial support for IPMI over IPMB
This provides access to the management controllers on an IPMB bus to a
device sitting on the IPMB bus. It also provides slave capability to
respond to received messages on the bus.
Signed-off-by: Corey Minyard <minyard@acm.org>
Tested-by: Andrew Manley <andrew.manley@sealingtech.com>
Reviewed-by: Andrew Manley <andrew.manley@sealingtech.com>
Diffstat (limited to 'drivers/char/ipmi/Kconfig')
-rw-r--r-- | drivers/char/ipmi/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/char/ipmi/Kconfig b/drivers/char/ipmi/Kconfig index 249b31197eea..7456bdff22ec 100644 --- a/drivers/char/ipmi/Kconfig +++ b/drivers/char/ipmi/Kconfig @@ -75,6 +75,15 @@ config IPMI_SSIF have a driver that must be accessed over an I2C bus instead of a standard interface. This module requires I2C support. +config IPMI_IPMB + tristate 'IPMI IPMB interface' + depends on I2C_SLAVE + help + Provides a driver for a system running right on the IPMB bus. + It supports normal system interface messages to a BMC on the IPMB + bus, and it also supports direct messaging on the bus using + IPMB direct messages. This module requires I2C support. + config IPMI_POWERNV depends on PPC_POWERNV tristate 'POWERNV (OPAL firmware) IPMI interface' |