diff options
author | Corey Minyard <cminyard@mvista.com> | 2012-03-19 17:00:55 -0400 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2014-12-11 16:04:11 -0500 |
commit | 259307074bfcf1ff88016e12c68f057aee6cb694 (patch) | |
tree | e664a8546fe3ba25663fb6d3e821a0e328be52e9 /drivers/char/ipmi/Kconfig | |
parent | 99ab32f3b5d705be562b8c4d9dca7c1ae3dc2cdf (diff) |
ipmi: Add SMBus interface driver (SSIF)
This patch adds the SMBus interface to the IPMI driver.
Signed-off-by: Corey Minyard <minyard@acm.org>
Documentation/IPMI.txt | 32
drivers/char/ipmi/Kconfig | 11
drivers/char/ipmi/Makefile | 1
drivers/char/ipmi/ipmi_smb.c | 1737 +++++++++++++++++++++++++++++++++++++++++++
4 files changed, 1769 insertions(+), 12 deletions(-)
Diffstat (limited to 'drivers/char/ipmi/Kconfig')
-rw-r--r-- | drivers/char/ipmi/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/char/ipmi/Kconfig b/drivers/char/ipmi/Kconfig index db1c9b7adaa6..809d28328c6f 100644 --- a/drivers/char/ipmi/Kconfig +++ b/drivers/char/ipmi/Kconfig | |||
@@ -62,6 +62,14 @@ config IPMI_SI_PROBE_DEFAULTS | |||
62 | only be available on older systems if the "ipmi_si_intf.trydefaults=1" | 62 | only be available on older systems if the "ipmi_si_intf.trydefaults=1" |
63 | boot argument is passed. | 63 | boot argument is passed. |
64 | 64 | ||
65 | config IPMI_SSIF | ||
66 | tristate 'IPMI SMBus handler (SSIF)' | ||
67 | select I2C | ||
68 | help | ||
69 | Provides a driver for a SMBus interface to a BMC, meaning that you | ||
70 | have a driver that must be accessed over an I2C bus instead of a | ||
71 | standard interface. This module requires I2C support. | ||
72 | |||
65 | config IPMI_WATCHDOG | 73 | config IPMI_WATCHDOG |
66 | tristate 'IPMI Watchdog Timer' | 74 | tristate 'IPMI Watchdog Timer' |
67 | help | 75 | help |