Home | History | Annotate | Line # | Download | only in sysmon
sysmon_envsys_tables.c revision 1.1
      1  1.1  xtraeme /* $NetBSD: sysmon_envsys_tables.c,v 1.1 2007/09/04 16:54:02 xtraeme Exp $ */
      2  1.1  xtraeme 
      3  1.1  xtraeme /*-
      4  1.1  xtraeme  * Copyright (c) 2007 The NetBSD Foundation, Inc.
      5  1.1  xtraeme  * All rights reserved.
      6  1.1  xtraeme  *
      7  1.1  xtraeme  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  xtraeme  * by Juan Romero Pardines.
      9  1.1  xtraeme  *
     10  1.1  xtraeme  * Redistribution and use in source and binary forms, with or without
     11  1.1  xtraeme  * modification, are permitted provided that the following conditions
     12  1.1  xtraeme  * are met:
     13  1.1  xtraeme  * 1. Redistributions of source code must retain the above copyright
     14  1.1  xtraeme  *    notice, this list of conditions and the following disclaimer.
     15  1.1  xtraeme  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  xtraeme  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  xtraeme  *    documentation and/or other materials provided with the distribution.
     18  1.1  xtraeme  * 3. All advertising materials mentioning features or use of this software
     19  1.1  xtraeme  *    must display the following acknowledgement:
     20  1.1  xtraeme  *      This product includes software developed by Juan Romero Pardines
     21  1.1  xtraeme  *      for the NetBSD Foundation, Inc. and its contributors.
     22  1.1  xtraeme  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  xtraeme  *    contributors may be used to endorse or promote products derived
     24  1.1  xtraeme  *    from this software without specific prior written permission.
     25  1.1  xtraeme  *
     26  1.1  xtraeme  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  xtraeme  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  xtraeme  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  xtraeme  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  xtraeme  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  xtraeme  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  xtraeme  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  xtraeme  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  xtraeme  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  xtraeme  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  xtraeme  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  xtraeme  */
     38  1.1  xtraeme 
     39  1.1  xtraeme #include <sys/cdefs.h>
     40  1.1  xtraeme __KERNEL_RCSID(0, "$NetBSD: sysmon_envsys_tables.c,v 1.1 2007/09/04 16:54:02 xtraeme Exp $");
     41  1.1  xtraeme 
     42  1.1  xtraeme #include <sys/types.h>
     43  1.1  xtraeme 
     44  1.1  xtraeme #include <dev/sysmon/sysmonvar.h>
     45  1.1  xtraeme #include <dev/sysmon/sysmon_envsysvar.h>
     46  1.1  xtraeme 
     47  1.1  xtraeme /*
     48  1.1  xtraeme  * Available units type descriptions.
     49  1.1  xtraeme  */
     50  1.1  xtraeme static const struct sme_description_table sme_units_description[] = {
     51  1.1  xtraeme 	{ ENVSYS_STEMP,		PENVSYS_TYPE_TEMP,	"Temperature" },
     52  1.1  xtraeme 	{ ENVSYS_SFANRPM,	PENVSYS_TYPE_FAN,	"Fan" },
     53  1.1  xtraeme 	{ ENVSYS_SVOLTS_AC,	PENVSYS_TYPE_VOLTAGE,	"Voltage AC" },
     54  1.1  xtraeme 	{ ENVSYS_SVOLTS_DC,	PENVSYS_TYPE_VOLTAGE,	"Voltage DC" },
     55  1.1  xtraeme 	{ ENVSYS_SOHMS,		PENVSYS_TYPE_RESISTANCE,"Ohms" },
     56  1.1  xtraeme 	{ ENVSYS_SWATTS,	PENVSYS_TYPE_POWER,	"Watts" },
     57  1.1  xtraeme 	{ ENVSYS_SAMPS,		PENVSYS_TYPE_POWER,	"Ampere" },
     58  1.1  xtraeme 	{ ENVSYS_SWATTHOUR,	PENVSYS_TYPE_BATTERY,	"Watt hour" },
     59  1.1  xtraeme 	{ ENVSYS_SAMPHOUR,	PENVSYS_TYPE_BATTERY,	"Ampere hour" },
     60  1.1  xtraeme 	{ ENVSYS_INDICATOR,	PENVSYS_TYPE_INDICATOR,	"Indicator" },
     61  1.1  xtraeme 	{ ENVSYS_INTEGER,	PENVSYS_TYPE_INDICATOR,	"Integer" },
     62  1.1  xtraeme 	{ ENVSYS_DRIVE,		PENVSYS_TYPE_DRIVE,	"Drive" },
     63  1.1  xtraeme 	{ ENVSYS_BATTERY_STATE,	PENVSYS_TYPE_BATTERY,	"Battery state" },
     64  1.1  xtraeme 	{ -1,			-1,			"unknown" }
     65  1.1  xtraeme };
     66  1.1  xtraeme 
     67  1.1  xtraeme /*
     68  1.1  xtraeme  * Available sensor state descriptions.
     69  1.1  xtraeme  */
     70  1.1  xtraeme static const struct sme_description_table sme_state_description[] = {
     71  1.1  xtraeme 	{ ENVSYS_SVALID,	-1, 	"valid" },
     72  1.1  xtraeme 	{ ENVSYS_SINVALID,	-1, 	"invalid" },
     73  1.1  xtraeme 	{ ENVSYS_SCRITICAL,	-1, 	"critical" },
     74  1.1  xtraeme 	{ ENVSYS_SCRITUNDER,	-1, 	"critical-under" },
     75  1.1  xtraeme 	{ ENVSYS_SCRITOVER,	-1, 	"critical-over" },
     76  1.1  xtraeme 	{ ENVSYS_SWARNUNDER,	-1, 	"warning-under" },
     77  1.1  xtraeme 	{ ENVSYS_SWARNOVER,	-1, 	"warning-over" },
     78  1.1  xtraeme 	{ -1,			-1, 	"unknown" }
     79  1.1  xtraeme };
     80  1.1  xtraeme 
     81  1.1  xtraeme /*
     82  1.1  xtraeme  * Available drive state descriptions.
     83  1.1  xtraeme  */
     84  1.1  xtraeme static const struct sme_description_table sme_drivestate_description[] = {
     85  1.1  xtraeme 	{ ENVSYS_DRIVE_EMPTY,		-1, 	"drive state is unknown" },
     86  1.1  xtraeme 	{ ENVSYS_DRIVE_READY,		-1, 	"drive is ready" },
     87  1.1  xtraeme 	{ ENVSYS_DRIVE_POWERUP,		-1, 	"drive is powering up" },
     88  1.1  xtraeme 	{ ENVSYS_DRIVE_ONLINE,		-1, 	"drive is online" },
     89  1.1  xtraeme 	{ ENVSYS_DRIVE_IDLE,		-1, 	"drive is idle" },
     90  1.1  xtraeme 	{ ENVSYS_DRIVE_ACTIVE,		-1, 	"drive is active" },
     91  1.1  xtraeme 	{ ENVSYS_DRIVE_REBUILD,		-1, 	"drive is rebuilding" },
     92  1.1  xtraeme 	{ ENVSYS_DRIVE_POWERDOWN,	-1, 	"drive is powering down" },
     93  1.1  xtraeme 	{ ENVSYS_DRIVE_FAIL,		-1, 	"drive failed" },
     94  1.1  xtraeme 	{ ENVSYS_DRIVE_PFAIL,		-1, 	"drive degraded" },
     95  1.1  xtraeme 	{ -1,				-1, 	"unknown" }
     96  1.1  xtraeme };
     97  1.1  xtraeme 
     98  1.1  xtraeme /*
     99  1.1  xtraeme  * Available battery state descriptions.
    100  1.1  xtraeme  */
    101  1.1  xtraeme static const struct sme_description_table sme_batterystate_description[] = {
    102  1.1  xtraeme 	{ ENVSYS_BATTERY_STATE_NORMAL,		-1,	"NORMAL" },
    103  1.1  xtraeme 	{ ENVSYS_BATTERY_STATE_WARNING,		-1, 	"WARNING" },
    104  1.1  xtraeme 	{ ENVSYS_BATTERY_STATE_CRITICAL,	-1, 	"CRITICAL" },
    105  1.1  xtraeme 	{ ENVSYS_BATTERY_STATE_LOW,		-1,	"LOW" },
    106  1.1  xtraeme 	{ -1,					-1, 	"UNKNOWN" }
    107  1.1  xtraeme };
    108  1.1  xtraeme 
    109  1.1  xtraeme /*
    110  1.1  xtraeme  * Returns the table associated with type.
    111  1.1  xtraeme  */
    112  1.1  xtraeme const struct sme_description_table *
    113  1.1  xtraeme sme_get_description_table(int type)
    114  1.1  xtraeme {
    115  1.1  xtraeme 	const struct sme_description_table *ud = sme_units_description;
    116  1.1  xtraeme 	const struct sme_description_table *sd = sme_state_description;
    117  1.1  xtraeme 	const struct sme_description_table *dd = sme_drivestate_description;
    118  1.1  xtraeme 	const struct sme_description_table *bd = sme_batterystate_description;
    119  1.1  xtraeme 
    120  1.1  xtraeme 	switch (type) {
    121  1.1  xtraeme 	case SME_DESC_UNITS:
    122  1.1  xtraeme 		return ud;
    123  1.1  xtraeme 	case SME_DESC_STATES:
    124  1.1  xtraeme 		return sd;
    125  1.1  xtraeme 	case SME_DESC_DRIVE_STATES:
    126  1.1  xtraeme 		return dd;
    127  1.1  xtraeme 	case SME_DESC_BATTERY_STATES:
    128  1.1  xtraeme 		return bd;
    129  1.1  xtraeme 	default:
    130  1.1  xtraeme 		return NULL;
    131  1.1  xtraeme 	}
    132  1.1  xtraeme }
    133