Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #
  2. # IPMI device configuration
  3. #
  4. menuconfig IPMI_HANDLER
  5. tristate 'IPMI top-level message handler'
  6. depends on HAS_IOMEM
  7. help
  8. This enables the central IPMI message handler, required for IPMI
  9. to work.
  10. IPMI is a standard for managing sensors (temperature,
  11. voltage, etc.) in a system.
  12. See <file:Documentation/IPMI.txt> for more details on the driver.
  13. If unsure, say N.
  14. if IPMI_HANDLER
  15. config IPMI_PANIC_EVENT
  16. bool 'Generate a panic event to all BMCs on a panic'
  17. help
  18. When a panic occurs, this will cause the IPMI message handler to
  19. generate an IPMI event describing the panic to each interface
  20. registered with the message handler.
  21. config IPMI_PANIC_STRING
  22. bool 'Generate OEM events containing the panic string'
  23. depends on IPMI_PANIC_EVENT
  24. help
  25. When a panic occurs, this will cause the IPMI message handler to
  26. generate IPMI OEM type f0 events holding the IPMB address of the
  27. panic generator (byte 4 of the event), a sequence number for the
  28. string (byte 5 of the event) and part of the string (the rest of the
  29. event). Bytes 1, 2, and 3 are the normal usage for an OEM event.
  30. You can fetch these events and use the sequence numbers to piece the
  31. string together.
  32. config IPMI_DEVICE_INTERFACE
  33. tristate 'Device interface for IPMI'
  34. help
  35. This provides an IOCTL interface to the IPMI message handler so
  36. userland processes may use IPMI. It supports poll() and select().
  37. config IPMI_SI
  38. tristate 'IPMI System Interface handler'
  39. help
  40. Provides a driver for System Interfaces (KCS, SMIC, BT).
  41. Currently, only KCS and SMIC are supported. If
  42. you are using IPMI, you should probably say "y" here.
  43. config IPMI_WATCHDOG
  44. tristate 'IPMI Watchdog Timer'
  45. help
  46. This enables the IPMI watchdog timer.
  47. config IPMI_POWEROFF
  48. tristate 'IPMI Poweroff'
  49. help
  50. This enables a function to power off the system with IPMI if
  51. the IPMI management controller is capable of this.
  52. endif # IPMI_HANDLER