xcat-core/perl-xCAT-2.0/xCAT/data/ipmigenericevents.pm
jbjohnso c99d72a179 Initial xCAT 2.0 import
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2007-10-26 22:44:33 +00:00

67 lines
3.1 KiB
Perl

# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
#ipmigenericevent.tab",
#DO NOT EDIT",
#",
#<sensor type code>",<sensor offset>,<sensor type>,<event>",
package xCAT::data::ipmigenericevents;
%ipmigenericevents = (
"01h,00h"=>"Threshold,Lower Non-critical - going low",
"01h,01h"=>"Threshold,Lower Non-critical - going high",
"01h,02h"=>"Threshold,Lower Critical - going low",
"01h,03h"=>"Threshold,Lower Critical - going high",
"01h,04h"=>"Threshold,Lower Non-recoverable - going low",
"01h,05h"=>"Threshold,Lower Non-recoverable - going high",
"01h,06h"=>"Threshold,Upper Non-critical - going low",
"01h,07h"=>"Threshold,Upper Non-critical - going high",
"01h,08h"=>"Threshold,Upper Critical - going low",
"01h,09h"=>"Threshold,Upper Critical - going high",
"01h,0Ah"=>"Threshold,Upper Non-recoverable - going low",
"01h,0Bh"=>"Threshold,Upper Non-recoverable - going high",
"02h,00h"=>"Discrete,Transition to Idle",
"02h,01h"=>"Discrete,Transition to Active",
"02h,02h"=>"Discrete,Transition to Busy",
"03h,00h"=>"'digital' Discrete,State Deasserted",
"03h,01h"=>"'digital' Discrete,State Asserted",
"04h,00h"=>"'digital' Discrete,Predictive Failure Deasserted",
"04h,01h"=>"'digital' Discrete,Predictive Failure Asserted",
"05h,00h"=>"'digital' Discrete,Limit Not Exceeded",
"05h,01h"=>"'digital' Discrete,Limit Exceeded",
"06h,00h"=>"'digital' Discrete,Performance Met",
"06h,01h"=>"'digital' Discrete,Performance Lags",
"07h,00h"=>"Discrete,transition to OK",
"07h,01h"=>"Discrete,transition to Non-Critical from OK",
"07h,02h"=>"Discrete,transition to Critical from Less Severe",
"07h,03h"=>"Discrete,transition to Non-recoverable from Less Severe",
"07h,04h"=>"Discrete,transition to Non-Critical from More Severe",
"07h,05h"=>"Discrete,transition to Critical from Non-recoverable",
"07h,06h"=>"Discrete,transition to Non-recoverable",
"07h,07h"=>"Discrete,Monitor",
"07h,08h"=>"Discrete,Informational",
"08h,00h"=>"'digital' Discrete,Device Removed / Device Absent",
"08h,01h"=>"'digital' Discrete,Device Inserted / Device Present",
"09h,00h"=>"'digital' Discrete,Device Disabled",
"09h,01h"=>"'digital' Discrete,Device Enabled",
"0Ah,00h"=>"Discrete,transition to Running",
"0Ah,01h"=>"Discrete,transition to In Test",
"0Ah,02h"=>"Discrete,transition to Power Off",
"0Ah,03h"=>"Discrete,transition to On Line",
"0Ah,04h"=>"Discrete,transition to Off Line",
"0Ah,05h"=>"Discrete,transition to Off Duty",
"0Ah,06h"=>"Discrete,transition to Degraded",
"0Ah,07h"=>"Discrete,transition to Power Save",
"0Ah,08h"=>"Discrete,Install Error",
"0Bh,00h"=>"Discrete,Redundancy Regained",
"0Bh,01h"=>"Discrete,Redundancy Lost",
"0Bh,02h"=>"Discrete,Redundancy Degraded",
"0Bh,03h"=>"Discrete,Non-redundant:Sufficient resources",
"0Bh,04h"=>"Discrete,Non-redundant:Sufficient from insufficient resources",
"0Bh,05h"=>"Discrete,Non-redundant:Insufficient resources",
"0Bh,06h"=>"Discrete,Redundancy Degraded from Fully Reduntant",
"0Bh,06h"=>"Discrete,Redundancy Degraded from Non-Reduntant",
"0Ch,00h"=>"Discrete,D0 Power State",
"0Ch,01h"=>"Discrete,D1 Power State",
"0Ch,02h"=>"Discrete,D2 Power State",
"0Ch,03h"=>"Discrete,D3 Power State",
);