File: sim_resources.h

package info (click to toggle)
openhpi 3.8.0-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 31,792 kB
  • sloc: ansic: 225,326; cpp: 63,687; java: 16,472; cs: 15,161; python: 11,884; sh: 11,508; makefile: 4,945; perl: 1,529; xml: 36; asm: 13
file content (77 lines) | stat: -rw-r--r-- 2,076 bytes parent folder | download | duplicates (8)
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
70
71
72
73
74
75
76
77
/*      -*- linux-c -*-
 *
 * (C) Copyright IBM Corp. 2005
 *
 * 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.  This
 * file and program are licensed under a BSD style license.  See
 * the Copying file included with the OpenHPI distribution for
 * full licensing terms.
 *
 * Author(s):
 *	  Christina Hernandez <hernanc@us.ibm.com>
 *        W. David Ashley <dashley@us.ibm.com>
 */


#ifndef __SIM_RESOURCES_H
#define __SIM_RESOURCES_H

#include <SaHpi.h>
#include <sim_sensors.h>

/* Start HPI location numbers from 0 */
#define SIM_HPI_LOCATION_BASE 1

/* IBM Manufacturing Number */
/* Corresponding to change made in snmp_bc_resources.h */
#define IBM_MANUFACTURING_ID 20944

/* Resource Ids for SIM resources
   if the sim_rpt_array order changes this will need to change also */
typedef enum {
	SIM_RPT_ENTRY_CHASSIS = 1,
	SIM_RPT_ENTRY_CPU,
        SIM_RPT_ENTRY_DASD,
        SIM_RPT_ENTRY_HS_DASD,
	SIM_RPT_ENTRY_FAN
} SimRptEntryT;

/* Maximum number of SIM resources */
#define SIM_MAX_CPU    8
#define SIM_MAX_FAN    8
#define SIM_MAX_DASD   4

/* Maximum entries in eventlog */
#define SIM_EL_MAX_SIZE 256

/**********************
 * Resource Definitions
 **********************/

#define SIM_MAX_EVENTS_PER_RESOURCE 10
#define SIM_MAX_RESOURCE_EVENT_ARRAY_SIZE (SIM_MAX_EVENTS_PER_RESOURCE + 1)
                                       /* Includes an ending NULL entry */

struct simResourceInfo {
        SaHpiHsStateT cur_hsstate;
        SaHpiHsIndicatorStateT cur_indicator_hsstate;
        SaHpiPowerStateT cur_powerstate;
        SaHpiTimeoutT ae_timeout;
};

struct sim_rpt {
        SaHpiRptEntryT rpt;
        const  char *comment;
};

extern struct sim_rpt sim_rpt_array[];
extern struct sim_sensor sim_chassis_sensors[];
extern struct sim_sensor sim_cpu_sensors[];
extern struct sim_sensor sim_dasd_sensors[];
extern struct sim_sensor sim_hs_dasd_sensors[];
extern struct sim_sensor sim_fan_sensors[];

#endif