summaryrefslogtreecommitdiffstats
path: root/src/drivers/ipmi/ipmi_kcs.h
blob: 9a04377a0ae8d1b0580c1532dd41a1fabec432c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * This file is part of the coreboot project.
 *
 * 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; version 2 of
 * the License.
 *
 * 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.
 */

#ifndef __IPMI_KCS_H
#define __IPMI_KCS_H

#define IPMI_NETFN_CHASSIS 0x00
#define IPMI_NETFN_BRIDGE 0x02
#define IPMI_NETFN_SENSOREVENT 0x04
#define IPMI_NETFN_APPLICATION 0x06
#define  IPMI_BMC_GET_DEVICE_ID 0x01
#define   IPMI_IPMI_VERSION_MINOR(x) ((x) >> 4)
#define   IPMI_IPMI_VERSION_MAJOR(x) ((x) & 0xf)
#define  IPMI_BMC_GET_SELFTEST_RESULTS 0x04
#define   IPMI_APP_SELFTEST_RESERVED             0xFF
#define   IPMI_APP_SELFTEST_NO_ERROR             0x55
#define   IPMI_APP_SELFTEST_NOT_IMPLEMENTED      0x56
#define   IPMI_APP_SELFTEST_ERROR                0x57
#define   IPMI_APP_SELFTEST_FATAL_HW_ERROR       0x58

#define IPMI_NETFN_FIRMWARE 0x08
#define IPMI_NETFN_STORAGE 0x0a
#define   IPMI_READ_FRU_DATA 0x11
#define IPMI_NETFN_TRANSPORT 0x0c

#define IPMI_CMD_ACPI_POWERON 0x06

extern int ipmi_kcs_message(int port, int netfn, int lun, int cmd,
			    const unsigned char *inmsg, int inlen,
			    unsigned char *outmsg, int outlen);

struct ipmi_rsp {
	uint8_t lun;
	uint8_t cmd;
	uint8_t completion_code;
} __packed;

/* Get Device ID */
struct ipmi_devid_rsp {
	struct ipmi_rsp resp;
	uint8_t device_id;
	uint8_t device_revision;
	uint8_t fw_rev1;
	uint8_t fw_rev2;
	uint8_t ipmi_version;
	uint8_t additional_device_support;
	uint8_t manufacturer_id[3];
	uint8_t product_id[2];
} __packed;

/* Get Self Test Results */
struct ipmi_selftest_rsp {
	struct ipmi_rsp resp;
	uint8_t result;
	uint8_t param;
} __packed;

#endif