Unraid-SlackPack/source/freeipmi/usr/include/freeipmi/spec/ipmi-netfn-spec.h
2016-03-24 14:02:30 -06:00

91 lines
3.6 KiB
C

/*
* Copyright (C) 2003-2015 FreeIPMI Core Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef IPMI_NETFN_SPEC_H
#define IPMI_NETFN_SPEC_H
#ifdef __cplusplus
extern "C" {
#endif
/* Notes:
Refer to IPMIv1_5_rev1_1.pdf Table 5-1, Network Function Codes
for complete description
*/
#define IPMI_NET_FN_CHASSIS_RQ 0x00
#define IPMI_NET_FN_CHASSIS_RS 0x01
#define IPMI_NET_FN_BRIDGE_RQ 0x02
#define IPMI_NET_FN_BRIDGE_RS 0x03
#define IPMI_NET_FN_SENSOR_EVENT_RQ 0x04
#define IPMI_NET_FN_SENSOR_EVENT_RS 0x05
#define IPMI_NET_FN_APP_RQ 0x06
#define IPMI_NET_FN_APP_RS 0x07
#define IPMI_NET_FN_FIRMWARE_RQ 0x08
#define IPMI_NET_FN_FIRMWARE_RS 0x09
#define IPMI_NET_FN_STORAGE_RQ 0x0A
#define IPMI_NET_FN_STORAGE_RS 0x0B
#define IPMI_NET_FN_TRANSPORT_RQ 0x0C
#define IPMI_NET_FN_TRANSPORT_RS 0x0D
#define IPMI_NET_FN_GROUP_EXTENSION_RQ 0x2C
#define IPMI_NET_FN_GROUP_EXTENSION_RS 0x2D
#define IPMI_NET_FN_OEM_GROUP_RQ 0x2E
#define IPMI_NET_FN_OEM_GROUP_RS 0x2F
#define IPMI_NET_FN_CONTROLLER_SPECIFIC_OEM_GROUP_MIN 0x30
#define IPMI_NET_FN_CONTROLLER_SPECIFIC_OEM_GROUP_MAX 0x3F
#define IPMI_NET_FN_RQ_RS_MASK 0x1
#define IPMI_NET_FN_GROUP_EXTENSION_IDENTIFICATION_PICMG 0x00
#define IPMI_NET_FN_GROUP_EXTENSION_IDENTIFICATION_DMTF 0x01
#define IPMI_NET_FN_GROUP_EXTENSION_IDENTIFICATION_SSI 0x02
#define IPMI_NET_FN_GROUP_EXTENSION_IDENTIFICATION_VITA 0x03
#define IPMI_NET_FN_GROUP_EXTENSION_IDENTIFICATION_DCMI 0xDC
/* To avoid gcc warnings, add +1 in comparison */
/* Include checks for possible oem network functions */
#define IPMI_NET_FN_VALID(__net_fn) \
((((__net_fn+1) >= IPMI_NET_FN_CHASSIS_RS \
&& (__net_fn) <= IPMI_NET_FN_TRANSPORT_RS) \
|| ((__net_fn) >= IPMI_NET_FN_GROUP_EXTENSION_RQ \
&& (__net_fn) <= IPMI_NET_FN_CONTROLLER_SPECIFIC_OEM_GROUP_MAX)) ? 1 : 0)
#define IPMI_NET_FN_RQ_VALID(__net_fn) \
((IPMI_NET_FN_VALID (__net_fn) \
&& (!((__net_fn) & IPMI_NET_FN_RQ_RS_MASK))) ? 1 : 0)
#define IPMI_NET_FN_RS_VALID(__net_fn) \
((IPMI_NET_FN_VALID (__net_fn) \
&& ((__net_fn) & IPMI_NET_FN_RQ_RS_MASK)) ? 1 : 0)
#define IPMI_NET_FN_GROUP_EXTENSION(__net_fn) \
(((__net_fn) == IPMI_NET_FN_GROUP_EXTENSION_RQ \
|| (__net_fn) == IPMI_NET_FN_GROUP_EXTENSION_RS) ? 1 : 0)
#define IPMI_NET_FN_OEM_GROUP(__net_fn) \
(((__net_fn) == IPMI_NET_FN_OEM_GROUP_RQ \
|| (__net_fn) == IPMI_NET_FN_OEM_GROUP_RS) ? 1 : 0)
#define IPMI_NET_FN_CONTROLLER_SPECIFIC_OEM_GROUP(__net_fn) \
(((__net_fn) >= IPMI_NET_FN_CONTROLLER_SPECIFIC_OEM_GROUP_MIN \
&& (__net_fn) <= IPMI_NET_FN_CONTROLLER_SPECIFIC_OEM_GROUP_MAX) ? 1 : 0)
#ifdef __cplusplus
}
#endif
#endif /* IPMI_NETFN_SPEC_H */