Kconfig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #
  2. # IPMI device configuration
  3. #
  4. menuconfig IPMI_HANDLER
  5. tristate 'IPMI top-level message handler'
  6. depends on HAS_IOMEM
  7. select IPMI_DMI_DECODE if DMI
  8. help
  9. This enables the central IPMI message handler, required for IPMI
  10. to work.
  11. IPMI is a standard for managing sensors (temperature,
  12. voltage, etc.) in a system.
  13. See <file:Documentation/IPMI.txt> for more details on the driver.
  14. If unsure, say N.
  15. config IPMI_DMI_DECODE
  16. bool
  17. if IPMI_HANDLER
  18. config IPMI_PANIC_EVENT
  19. bool 'Generate a panic event to all BMCs on a panic'
  20. help
  21. When a panic occurs, this will cause the IPMI message handler to,
  22. by default, generate an IPMI event describing the panic to each
  23. interface registered with the message handler. This is always
  24. available, the module parameter for ipmi_msghandler named
  25. panic_op can be set to "event" to chose this value, this config
  26. simply causes the default value to be set to "event".
  27. config IPMI_PANIC_STRING
  28. bool 'Generate OEM events containing the panic string'
  29. depends on IPMI_PANIC_EVENT
  30. help
  31. When a panic occurs, this will cause the IPMI message handler to,
  32. by default, generate IPMI OEM type f0 events holding the IPMB
  33. address of the panic generator (byte 4 of the event), a sequence
  34. number for the string (byte 5 of the event) and part of the
  35. string (the rest of the event). Bytes 1, 2, and 3 are the normal
  36. usage for an OEM event. You can fetch these events and use the
  37. sequence numbers to piece the string together. This config
  38. parameter sets the default value to generate these events,
  39. the module parameter for ipmi_msghandler named panic_op can
  40. be set to "string" to chose this value, this config simply
  41. causes the default value to be set to "string".
  42. config IPMI_DEVICE_INTERFACE
  43. tristate 'Device interface for IPMI'
  44. help
  45. This provides an IOCTL interface to the IPMI message handler so
  46. userland processes may use IPMI. It supports poll() and select().
  47. config IPMI_SI
  48. tristate 'IPMI System Interface handler'
  49. help
  50. Provides a driver for System Interfaces (KCS, SMIC, BT).
  51. Currently, only KCS and SMIC are supported. If
  52. you are using IPMI, you should probably say "y" here.
  53. config IPMI_SSIF
  54. tristate 'IPMI SMBus handler (SSIF)'
  55. select I2C
  56. help
  57. Provides a driver for a SMBus interface to a BMC, meaning that you
  58. have a driver that must be accessed over an I2C bus instead of a
  59. standard interface. This module requires I2C support.
  60. config IPMI_POWERNV
  61. depends on PPC_POWERNV
  62. tristate 'POWERNV (OPAL firmware) IPMI interface'
  63. help
  64. Provides a driver for OPAL firmware-based IPMI interfaces.
  65. config IPMI_WATCHDOG
  66. tristate 'IPMI Watchdog Timer'
  67. help
  68. This enables the IPMI watchdog timer.
  69. config IPMI_POWEROFF
  70. tristate 'IPMI Poweroff'
  71. help
  72. This enables a function to power off the system with IPMI if
  73. the IPMI management controller is capable of this.
  74. endif # IPMI_HANDLER
  75. config IPMI_KCS_BMC
  76. tristate
  77. config ASPEED_KCS_IPMI_BMC
  78. depends on ARCH_ASPEED || COMPILE_TEST
  79. select IPMI_KCS_BMC
  80. select REGMAP_MMIO
  81. tristate "Aspeed KCS IPMI BMC driver"
  82. help
  83. Provides a driver for the KCS (Keyboard Controller Style) IPMI
  84. interface found on Aspeed SOCs (AST2400 and AST2500).
  85. The driver implements the BMC side of the KCS contorller, it
  86. provides the access of KCS IO space for BMC side.
  87. config NPCM7XX_KCS_IPMI_BMC
  88. depends on ARCH_NPCM7XX || COMPILE_TEST
  89. select IPMI_KCS_BMC
  90. select REGMAP_MMIO
  91. tristate "NPCM7xx KCS IPMI BMC driver"
  92. help
  93. Provides a driver for the KCS (Keyboard Controller Style) IPMI
  94. interface found on Nuvoton NPCM7xx SOCs.
  95. The driver implements the BMC side of the KCS contorller, it
  96. provides the access of KCS IO space for BMC side.
  97. This support is also available as a module. If so, the module
  98. will be called kcs_bmc_npcm7xx.
  99. config ASPEED_BT_IPMI_BMC
  100. depends on ARCH_ASPEED || COMPILE_TEST
  101. depends on REGMAP && REGMAP_MMIO && MFD_SYSCON
  102. tristate "BT IPMI bmc driver"
  103. help
  104. Provides a driver for the BT (Block Transfer) IPMI interface
  105. found on Aspeed SOCs (AST2400 and AST2500). The driver
  106. implements the BMC side of the BT interface.