123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- /*
- * Copyright (C) 2008 Intel Corporation.
- * All rights reserved
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
- * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
- * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #ifndef IPMI_DCMI_H
- #define IPMI_DCMI_H
- #include <ipmitool/ipmi.h>
- /* DCMI commands per DCMI 1.5 SPEC */
- #define IPMI_DCMI 0xDC /* Group Extension Identification */
- #define IPMI_DCMI_COMPAT 0x01
- #define IPMI_DCMI_GETRED 0x02
- #define IPMI_DCMI_GETLMT 0x03
- #define IPMI_DCMI_SETLMT 0x04
- #define IPMI_DCMI_PWRACT 0x05
- #define IPMI_DCMI_GETASSET 0x06
- #define IPMI_DCMI_SETASSET 0x08
- #define IPMI_DCMI_GETMNGCTRLIDS 0x09
- #define IPMI_DCMI_SETMNGCTRLIDS 0x0A
- #define IPMI_DCMI_SETTERMALLIMIT 0x0B
- #define IPMI_DCMI_GETTERMALLIMIT 0x0C
- #define IPMI_DCMI_GETSNSR 0x07
- #define IPMI_DCMI_PWRMGT 0x08
- #define IPMI_DCMI_GETTEMPRED 0x10
- #define IPMI_DCMI_SETCONFPARAM 0x12
- #define IPMI_DCMI_GETCONFPARAM 0x13
- #define IPMI_DCMI_CONFORM 0x0001
- #define IPMI_DCMI_1_1_CONFORM 0x0101
- #define IPMI_DCMI_1_5_CONFORM 0x0501
- #define DCMI_MAX_BYTE_SIZE 0x10
- #define DCMI_MAX_BYTE_TEMP_READ_SIZE 0x08
- #define GOOD_PWR_GLIMIT_CCODE(ccode) ((ccode = ((ccode == 0x80) ? 0 : ccode)))
- #define GOOD_ASSET_TAG_CCODE(ccode) ((ccode = (((ccode == 0x80) || (ccode == 0x81) || (ccode == 0x82) || (ccode == 0x83)) ? 0 : ccode)))
- /* External Node Manager Configuration and Control Commands per spec 2.0 */
- #define IPMI_NM_POLICY_CTL 0xC0
- #define IPMI_NM_SET_POLICY 0xC1
- #define IPMI_NM_GET_POLICY 0xC2
- #define IPMI_NM_SET_ALERT_TH 0xC3
- #define IPMI_NM_GET_ALERT_TH 0xC4
- #define IPMI_NM_SET_SUSPEND 0xC5
- #define IPMI_NM_GET_SUSPEND 0xC6
- #define IPMI_NM_RESET_STATS 0xC7
- #define IPMI_NM_GET_STATS 0xC8
- #define IPMI_NM_GET_CAP 0xC9
- #define IPMI_NM_GET_VERSION 0xCA
- #define IPMI_NM_SET_POWER 0xCB
- #define IPMI_NM_SET_ALERT_DS 0xCE
- #define IPMI_NM_GET_ALERT_DS 0xCF
- #define IPMI_NM_LIMITING 0xF2
- /* Node Manager Policy Control Flags */
- #define IPMI_NM_GLOBAL_ENABLE 0x01
- #define IPMI_NM_DOMAIN_ENABLE 0x02
- #define IPMI_NM_PER_POLICY_ENABLE 0x04
- /* Node Manager Set Policy Enable */
- #define IPMI_NM_POLICY_ENABLE 0x10
- /* Node Manager Policy Trigger Codes */
- #define IPMI_NM_NO_POLICY_TRIG 0x00
- #define IPMI_NM_TEMP_TRIGGER 0x01
- #define IPMI_NM_NO_READ_TRIG 0x02
- #define IPMI_NM_RESET_TRIGGER 0x03
- #define IPMI_NM_BOOT_TRIGGER 0x04
- /* Policy Exception Actions flags */
- #define IPMI_NM_POLICY_ALERT 0x01
- #define IPMI_NM_POLICY_SHUT 0x02
- /* Power Correction codes for Policy action */
- #define IPMI_NM_PWR_AUTO_CORR 0x00
- #define IPMI_NM_PWR_SOFT_CORR 0x01
- #define IPMI_NM_PWR_AGGR_CORR 0x02
- /* Set Threshold message size */
- #define IPMI_NM_SET_THRESH_LEN 12
- /* Number of Suspend Periods */
- #define IPMI_NM_SUSPEND_PERIOD_MAX 5
- struct dcmi_cmd {
- uint16_t val;
- const char * str;
- const char * desc;
- };
- /* make a struct for the return from the get limit command */
- struct power_limit {
- uint8_t grp_id; /* first byte: Group Extension ID */
- uint16_t reserved_1; /* second and third bytes are reserved */
- uint8_t action; /* fourth byte is the exception action */
- uint16_t limit; /* fifth through sixth byte are the power limit in watts */
- uint32_t correction; /* seventh - 10th bytes are the correction period */
- uint16_t reserved_2; /* 11th - 12th are reserved bytes */
- uint16_t sample; /* 13th - 14th are sample period time */
- } __attribute__ ((packed));
- /* make a struct for the return from the reading command */
- struct power_reading {
- uint8_t grp_id; /* first byte: Group Extension ID */
- uint16_t curr_pwr;
- uint16_t min_sample;
- uint16_t max_sample;
- uint16_t avg_pwr;
- uint32_t time_stamp; /* time since epoch */
- uint32_t sample;
- uint8_t state;
- } __attribute__ ((packed));
- /* make a struct for the return from the capabilites command */
- struct capabilities {
- uint8_t grp_id; /* first byte: Group Extension ID */
- uint16_t conformance;
- uint8_t revision;
- uint8_t data_byte1;
- uint8_t data_byte2;
- uint8_t data_byte3;
- uint8_t data_byte4;
- } __attribute__ ((packed));
- /* make a struct for the return from the sensor info command */
- struct sensor_info {
- uint8_t grp_id; /* first byte: Group Extension ID */
- uint8_t i_instances;
- uint8_t i_records;
-
- } __attribute__ ((packed));
- /* make a struct for the return from the get asset tag command */
- struct asset_tag {
- uint8_t grp_id; /* first byte: Group Extension ID */
- uint8_t length;
- const char tag[16];
- } __attribute__ ((packed));
- /* make a struct for the return from the set asset tag command */
- struct set_asset_tag {
- uint8_t grp_id; /* first byte: Group Extension ID */
- uint8_t length;
- const char tag[16];
- uint8_t *data;
- } __attribute__ ((packed));
- /* make a struct for the return from the get thermal limit command */
- struct thermal_limit {
- uint8_t grp_id; /* first byte: Group Extension ID */
- uint8_t exceptionActions;
- uint8_t tempLimit;
- uint16_t exceptionTime;
- } __attribute__ ((packed));
- int ipmi_dcmi_main(struct ipmi_intf * intf, int argc, char ** argv);
- /* Node Manager discover command */
- struct nm_discover {
- uint8_t intel_id[3]; /* Always returns 000157 */
- uint8_t nm_version;
- uint8_t ipmi_version;
- uint8_t patch_version;
- uint8_t major_rev;
- uint8_t minor_rev;
- } __attribute__ ((packed));
- /* Node Manager get capabilites command */
- struct nm_capability {
- uint8_t intel_id[3];
- uint8_t max_settings;
- uint16_t max_value; /* max power/thermal/time after reset */
- uint16_t min_value; /* min "" */
- uint32_t min_corr; /* min correction time inmillesecs */
- uint32_t max_corr;
- uint16_t min_stats;
- uint16_t max_stats;
- uint8_t scope;
- } __attribute__ ((packed));
- /* Node Manager get statistics command */
- struct nm_statistics {
- uint8_t intel_id[3];
- uint16_t curr_value;
- uint16_t min_value;
- uint16_t max_value;
- uint16_t ave_value;
- uint32_t time_stamp;
- uint32_t stat_period;
- uint8_t id_state;
- } __attribute__ ((packed));
- /* Node Manager set policy */
- struct nm_policy {
- uint8_t intel_id[3];
- uint8_t domain; /* 0:3 are domain, 4 = Policy enabled */
- uint8_t policy_id;
- uint8_t policy_type; /* 0:3 trigger type 4 = action 5:6 correction */
- uint8_t policy_exception; /* exception actions */
- uint16_t policy_limits;
- uint32_t corr_time;
- uint16_t trigger_limit;
- uint16_t stats_period;
- } __attribute__ ((packed));
- /* Node Maager get policy */
- struct nm_get_policy {
- uint8_t intel_id[3];
- uint8_t domain; /* 0:3 are domain, 4 = Policy enabled */
- uint8_t policy_type; /* 0:3 trigger type 4 = action 5:6 correction */
- uint8_t policy_exception; /* exception actions */
- uint16_t policy_limits;
- uint32_t corr_time;
- uint16_t trigger_limit;
- uint16_t stats_period;
- } __attribute__ ((packed));
- /* Node Manager set alert destination */
- struct nm_set_alert {
- uint8_t intel_id[3];
- uint8_t chan; /* 0:3 BMC chan, 4:6 reserved, bit 7=0 register alert reciever =1 invalidate */
- uint8_t dest; /* lan destination */
- uint8_t string; /* alert string selector */
- } __attribute__ ((packed));
- /* Node Manager set alert threshold */
- struct nm_thresh {
- uint8_t intel_id[3];
- uint8_t domain; /* 0:3 are domain, 4 = Policy enabled */
- uint8_t policy_id;
- uint8_t count;
- uint16_t thresholds[3];
- } __attribute__ ((packed));
- /* Node Manager suspend period struct */
- struct nm_period {
- uint8_t start;
- uint8_t stop;
- uint8_t repeat;
- } __attribute__ ((packed));
- /* Node Manager set suspend period */
- struct nm_suspend {
- uint8_t intel_id[3];
- uint8_t domain; /* 0:3 are domain, 4 = Policy enabled */
- uint8_t policy_id;
- uint8_t count;
- struct nm_period period[IPMI_NM_SUSPEND_PERIOD_MAX];
- } __attribute__ ((packed));
- int ipmi_nm_main(struct ipmi_intf * intf, int argc, char ** argv);
- #endif /*IPMI_DCMI_H*/
|