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
|
/* -*- linux-c -*-
*
* (C) Copyright IBM Corp. 2005, 2006
*
* 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>
* Renier Morales <renier@openhpi.org>
*/
#ifndef __SIM_CONTROLS_H
#define __SIM_CONTROLS_H
/*******************
Control Definitions
*********************/
struct sim_control_info {
SaHpiCtrlModeT mode;
SaHpiCtrlStateT state;
};
struct sim_control {
int index;
SaHpiCtrlRecT control;
SaHpiCtrlModeT mode;
const char *comment;
};
extern struct sim_control sim_chassis_controls[];
extern struct sim_control sim_cpu_controls[];
extern struct sim_control sim_dasd_controls[];
extern struct sim_control sim_hs_dasd_controls[];
extern struct sim_control sim_fan_controls[];
SaErrorT sim_discover_chassis_controls(struct oh_handler_state *state,
struct oh_event *e);
SaErrorT sim_discover_cpu_controls(struct oh_handler_state *state,
struct oh_event *e);
SaErrorT sim_discover_dasd_controls(struct oh_handler_state *state,
struct oh_event *e);
SaErrorT sim_discover_hs_dasd_controls(struct oh_handler_state *state,
struct oh_event *e);
SaErrorT sim_discover_fan_controls(struct oh_handler_state *state,
struct oh_event *e);
#endif
|