mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 06:04:23 +08:00
6a11e5c67a
This change adds an initial IPMI driver for powerpc OPAL firmware. The interface is exposed entirely through firmware: we have two functions to send and receive IPMI messages, and an interrupt notification from the firmware to signify that a message is available. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> Signed-off-by: Corey Minyard <cminyard@mvista.com>
14 lines
424 B
Makefile
14 lines
424 B
Makefile
#
|
|
# Makefile for the ipmi drivers.
|
|
#
|
|
|
|
ipmi_si-y := ipmi_si_intf.o ipmi_kcs_sm.o ipmi_smic_sm.o ipmi_bt_sm.o
|
|
|
|
obj-$(CONFIG_IPMI_HANDLER) += ipmi_msghandler.o
|
|
obj-$(CONFIG_IPMI_DEVICE_INTERFACE) += ipmi_devintf.o
|
|
obj-$(CONFIG_IPMI_SI) += ipmi_si.o
|
|
obj-$(CONFIG_IPMI_SSIF) += ipmi_ssif.o
|
|
obj-$(CONFIG_IPMI_POWERNV) += ipmi_powernv.o
|
|
obj-$(CONFIG_IPMI_WATCHDOG) += ipmi_watchdog.o
|
|
obj-$(CONFIG_IPMI_POWEROFF) += ipmi_poweroff.o
|