vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 1 | #ifndef __HOST_IPMID_IPMI_H__ |
| 2 | #define __HOST_IPMID_IPMI_H__ |
| 3 | #include "ipmid-api.h" |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 4 | #include <stdio.h> |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 5 | |
| 6 | // When the requester sends in a netfn and a command along with data, this |
| 7 | // function will look for registered handlers that will handle that [netfn,cmd] |
| 8 | // and will make a call to that plugin implementation and send back the response. |
| 9 | ipmi_ret_t ipmi_netfn_router(const ipmi_netfn_t, const ipmi_cmd_t, ipmi_request_t, |
| 10 | ipmi_response_t, unsigned int *data_len); |
| 11 | |
| 12 | // Plugin libraries need to _end_ with .so |
| 13 | #define IPMI_PLUGIN_EXTN ".so" |
Chris Austen | 4f1c79d | 2015-10-13 12:32:13 -0500 | [diff] [blame] | 14 | |
| 15 | // The BT FIFO in the AST2400 can only handle 64 bytes. |
| 16 | // Can only allow 63 because the BT interface still |
| 17 | // needs 1 byte for the length field. |
| 18 | #define MAX_IPMI_BUFFER 63 |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 19 | |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 20 | extern FILE *ipmiio, *ipmidbus, *ipmicmddetails; |
| 21 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 22 | #endif |