blob: 1c8a97e284c63f68cfe07b29a7bc744a89155ece [file] [log] [blame]
#ifndef __HOST_IPMI_OPENPOWEROEM_HANDLER_H__
#define __HOST_IPMI_OPENPOWEROEM_HANDLER_H__
#include <stdint.h>
#include <host-ipmid/ipmid-api.h>
// IPMI commands for net functions.
enum ipmi_netfn_oem_cmds
{
IPMI_CMD_PREP_FW_UPDATE = 0x10,
IPMI_CMD_PESEL = 0xF0,
};
ipmi_ret_t ipmi_ibm_oem_partial_esel(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);
struct esel_request_t {
uint16_t resid;
uint16_t selrecord;
uint16_t offset;
uint8_t progress;
} __attribute__ ((packed)) ;
#endif