Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #
  2. # IPMI device configuration
  3. #
  4. menu "IPMI"
  5. depends on HAS_IOMEM
  6. config IPMI_HANDLER
  7. tristate 'IPMI top-level message handler'
  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_PANIC_EVENT
  16. bool 'Generate a panic event to all BMCs on a panic'
  17. depends on IPMI_HANDLER
  18. help
  19. When a panic occurs, this will cause the IPMI message handler to
  20. generate an IPMI event describing the panic to each interface
  21. registered with the message handler.
  22. config IPMI_PANIC_STRING
  23. bool 'Generate OEM events containing the panic string'
  24. depends on IPMI_PANIC_EVENT
  25. help
  26. When a panic occurs, this will cause the IPMI message handler to
  27. generate IPMI OEM type f0 events holding the IPMB address of the
  28. panic generator (byte 4 of the event), a sequence number for the
  29. string (byte 5 of the event) and part of the string (the rest of the
  30. event). Bytes 1, 2, and 3 are the normal usage for an OEM event.
  31. You can fetch these events and use the sequence numbers to piece the
  32. string together.
  33. config IPMI_DEVICE_INTERFACE
  34. tristate 'Device interface for IPMI'
  35. depends on IPMI_HANDLER
  36. help
  37. This provides an IOCTL interface to the IPMI message handler so
  38. userland processes may use IPMI. It supports poll() and select().
  39. config IPMI_SI
  40. tristate 'IPMI System Interface handler'
  41. depends on IPMI_HANDLER
  42. help
  43. Provides a driver for System Interfaces (KCS, SMIC, BT).
  44. Currently, only KCS and SMIC are supported. If
  45. you are using IPMI, you should probably say "y" here.
  46. config IPMI_WATCHDOG
  47. tristate 'IPMI Watchdog Timer'
  48. depends on IPMI_HANDLER
  49. help
  50. This enables the IPMI watchdog timer.
  51. config IPMI_POWEROFF
  52. tristate 'IPMI Poweroff'
  53. depends on IPMI_HANDLER
  54. help
  55. This enables a function to power off the system with IPMI if
  56. the IPMI management controller is capable of this.
  57. endmenu