summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2015-11-13 10:40:45 -0600
committerPatrick Williams <patrick@stwcx.xyz>2015-11-13 10:40:45 -0600
commitc51fc143bacc648d2de9d05f8be97948b1313098 (patch)
tree152da0a84741370fc99c92d41407e9273771eb33
parent1da5c8668368417802f2c0007f61dbe35c3c3052 (diff)
parent40814c6ea395d43afde5e8a3785bdcc89dc094fe (diff)
downloadphosphor-host-ipmid-c51fc143bacc648d2de9d05f8be97948b1313098.tar.gz
phosphor-host-ipmid-c51fc143bacc648d2de9d05f8be97948b1313098.zip
Merge pull request #35 from anoo1/bootoptions
Add support for IPMI Get Boot Options command
-rw-r--r--Makefile1
-rw-r--r--chassishandler.C62
-rw-r--r--chassishandler.h17
3 files changed, 80 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 97c45e6..1a37c0f 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@ DAEMON_OBJ = $(DAEMON).o
LIB_APP_OBJ = apphandler.o \
sensorhandler.o \
storagehandler.o \
+ chassishandler.o \
dcmihandler.o \
ipmisensor.o \
storageaddsel.o \
diff --git a/chassishandler.C b/chassishandler.C
new file mode 100644
index 0000000..d00a124
--- /dev/null
+++ b/chassishandler.C
@@ -0,0 +1,62 @@
+#include "chassishandler.h"
+#include "ipmid-api.h"
+#include <stdio.h>
+#include <string.h>
+#include <stdint.h>
+
+void register_netfn_chassis_functions() __attribute__((constructor));
+
+struct get_sys_boot_options_t {
+ uint8_t parameter;
+ uint8_t set;
+ uint8_t block;
+} __attribute__ ((packed));
+
+ipmi_ret_t ipmi_chassis_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
+ ipmi_request_t request, ipmi_response_t response,
+ ipmi_data_len_t data_len, ipmi_context_t context)
+{
+ printf("Handling CHASSIS WILDCARD Netfn:[0x%X], Cmd:[0x%X]\n",netfn, cmd);
+ // Status code.
+ ipmi_ret_t rc = IPMI_CC_OK;
+ *data_len = 0;
+ return rc;
+}
+
+ipmi_ret_t ipmi_chassis_get_sys_boot_options(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
+ ipmi_request_t request, ipmi_response_t response,
+ ipmi_data_len_t data_len, ipmi_context_t context)
+{
+ ipmi_ret_t rc = IPMI_CC_OK;
+ *data_len = 0;
+
+ printf("IPMI GET_SYS_BOOT_OPTIONS\n");
+
+ get_sys_boot_options_t *reqptr = (get_sys_boot_options_t*) request;
+
+ // TODO Return default values to OPAL until dbus interface is available
+
+ if (reqptr->parameter == 5) // Parameter #5
+ {
+ uint8_t buf[] = {0x1,0x5,80,0,0,0,0};
+ *data_len = sizeof(buf);
+ memcpy(response, &buf, *data_len);
+ }
+ else
+ {
+ fprintf(stderr, "Unsupported parameter 0x%x\n", reqptr->parameter);
+ return IPMI_CC_PARM_NOT_SUPPORTED;
+ }
+
+ return rc;
+}
+
+void register_netfn_chassis_functions()
+{
+ printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_CHASSIS, IPMI_CMD_WILDCARD);
+ ipmi_register_callback(NETFUN_CHASSIS, IPMI_CMD_WILDCARD, NULL, ipmi_chassis_wildcard);
+
+ printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_CHASSIS, IPMI_CMD_GET_SYS_BOOT_OPTIONS);
+ ipmi_register_callback(NETFUN_CHASSIS, IPMI_CMD_GET_SYS_BOOT_OPTIONS, NULL, ipmi_chassis_get_sys_boot_options);
+}
+
diff --git a/chassishandler.h b/chassishandler.h
new file mode 100644
index 0000000..99ed366
--- /dev/null
+++ b/chassishandler.h
@@ -0,0 +1,17 @@
+#ifndef __HOST_IPMI_CHASSIS_HANDLER_H__
+#define __HOST_IPMI_CHASSIS_HANDLER_H__
+
+// IPMI commands for Chassis net functions.
+enum ipmi_netfn_app_cmds
+{
+ // Get capability bits
+ IPMI_CMD_GET_SYS_BOOT_OPTIONS = 0x09,
+};
+
+// Command specific completion codes
+enum ipmi_chassis_return_codes
+{
+ IPMI_CC_PARM_NOT_SUPPORTED = 0x80,
+};
+
+#endif
OpenPOWER on IntegriCloud