1 # SPDX-License-Identifier: GPL-2.0-only
3 # IPMI device configuration
6 menuconfig IPMI_HANDLER
7 tristate 'IPMI top-level message handler'
9 select IPMI_DMI_DECODE if DMI
11 This enables the central IPMI message handler, required for IPMI
14 IPMI is a standard for managing sensors (temperature,
15 voltage, etc.) in a system.
17 See <file:Documentation/driver-api/ipmi.rst> for more details on the driver.
21 config IPMI_DMI_DECODE
30 config IPMI_PANIC_EVENT
31 bool 'Generate a panic event to all BMCs on a panic'
33 When a panic occurs, this will cause the IPMI message handler to,
34 by default, generate an IPMI event describing the panic to each
35 interface registered with the message handler. This is always
36 available, the module parameter for ipmi_msghandler named
37 panic_op can be set to "event" to chose this value, this config
38 simply causes the default value to be set to "event".
40 config IPMI_PANIC_STRING
41 bool 'Generate OEM events containing the panic string'
42 depends on IPMI_PANIC_EVENT
44 When a panic occurs, this will cause the IPMI message handler to,
45 by default, generate IPMI OEM type f0 events holding the IPMB
46 address of the panic generator (byte 4 of the event), a sequence
47 number for the string (byte 5 of the event) and part of the
48 string (the rest of the event). Bytes 1, 2, and 3 are the normal
49 usage for an OEM event. You can fetch these events and use the
50 sequence numbers to piece the string together. This config
51 parameter sets the default value to generate these events,
52 the module parameter for ipmi_msghandler named panic_op can
53 be set to "string" to chose this value, this config simply
54 causes the default value to be set to "string".
56 config IPMI_DEVICE_INTERFACE
57 tristate 'Device interface for IPMI'
59 This provides an IOCTL interface to the IPMI message handler so
60 userland processes may use IPMI. It supports poll() and select().
63 tristate 'IPMI System Interface handler'
66 Provides a driver for System Interfaces (KCS, SMIC, BT).
67 Currently, only KCS and SMIC are supported. If
68 you are using IPMI, you should probably say "y" here.
71 tristate 'IPMI SMBus handler (SSIF)'
74 Provides a driver for a SMBus interface to a BMC, meaning that you
75 have a driver that must be accessed over an I2C bus instead of a
76 standard interface. This module requires I2C support.
79 depends on PPC_POWERNV
80 tristate 'POWERNV (OPAL firmware) IPMI interface'
82 Provides a driver for OPAL firmware-based IPMI interfaces.
85 tristate 'IPMI Watchdog Timer'
87 This enables the IPMI watchdog timer.
90 tristate 'IPMI Poweroff'
92 This enables a function to power off the system with IPMI if
93 the IPMI management controller is capable of this.
100 config ASPEED_KCS_IPMI_BMC
101 depends on ARCH_ASPEED || COMPILE_TEST
104 tristate "Aspeed KCS IPMI BMC driver"
106 Provides a driver for the KCS (Keyboard Controller Style) IPMI
107 interface found on Aspeed SOCs (AST2400 and AST2500).
109 The driver implements the BMC side of the KCS contorller, it
110 provides the access of KCS IO space for BMC side.
112 config NPCM7XX_KCS_IPMI_BMC
113 depends on ARCH_NPCM7XX || COMPILE_TEST
116 tristate "NPCM7xx KCS IPMI BMC driver"
118 Provides a driver for the KCS (Keyboard Controller Style) IPMI
119 interface found on Nuvoton NPCM7xx SOCs.
121 The driver implements the BMC side of the KCS contorller, it
122 provides the access of KCS IO space for BMC side.
124 This support is also available as a module. If so, the module
125 will be called kcs_bmc_npcm7xx.
127 config ASPEED_BT_IPMI_BMC
128 depends on ARCH_ASPEED || COMPILE_TEST
129 depends on REGMAP && REGMAP_MMIO && MFD_SYSCON
130 tristate "BT IPMI bmc driver"
132 Provides a driver for the BT (Block Transfer) IPMI interface
133 found on Aspeed SOCs (AST2400 and AST2500). The driver
134 implements the BMC side of the BT interface.
136 config IPMB_DEVICE_INTERFACE
137 tristate 'IPMB Interface handler'
141 Provides a driver for a device (Satellite MC) to
142 receive requests and send responses back to the BMC via
143 the IPMB interface. This module requires I2C support.