1998-12-20 16:54:03 +00:00
|
|
|
/*
|
|
|
|
sensors.h - Part of libsensors, a Linux library for reading sensor data.
|
1999-02-08 22:50:29 +00:00
|
|
|
Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
|
2007-08-19 15:03:50 +00:00
|
|
|
Copyright (C) 2007 Jean Delvare <khali@linux-fr.org>
|
1998-12-20 16:54:03 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIB_SENSORS_SENSORS_H
|
|
|
|
#define LIB_SENSORS_SENSORS_H
|
|
|
|
|
1998-12-21 14:14:25 +00:00
|
|
|
#include <stdio.h>
|
2007-04-09 17:48:57 +00:00
|
|
|
#include <limits.h>
|
1998-12-21 14:14:25 +00:00
|
|
|
|
1998-12-20 16:54:03 +00:00
|
|
|
/* Publicly accessible library functions */
|
|
|
|
|
|
|
|
#define SENSORS_CHIP_NAME_PREFIX_ANY NULL
|
|
|
|
#define SENSORS_CHIP_NAME_ADDR_ANY -1
|
|
|
|
|
2007-08-19 15:03:50 +00:00
|
|
|
#define SENSORS_BUS_TYPE_ANY (-1)
|
|
|
|
#define SENSORS_BUS_TYPE_I2C 0
|
|
|
|
#define SENSORS_BUS_TYPE_ISA 1
|
|
|
|
#define SENSORS_BUS_TYPE_PCI 2
|
2007-08-19 15:07:05 +00:00
|
|
|
#define SENSORS_BUS_TYPE_SPI 3
|
2007-08-19 15:03:50 +00:00
|
|
|
#define SENSORS_BUS_NR_ANY (-1)
|
2007-08-19 15:05:52 +00:00
|
|
|
#define SENSORS_BUS_NR_IGNORE (-2)
|
2007-08-19 15:03:50 +00:00
|
|
|
|
2000-02-02 20:19:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2007-07-10 19:55:06 +00:00
|
|
|
extern const char *libsensors_version;
|
|
|
|
|
2007-08-19 15:03:50 +00:00
|
|
|
typedef struct sensors_bus_id {
|
|
|
|
short type;
|
|
|
|
short nr;
|
|
|
|
} sensors_bus_id;
|
|
|
|
|
2007-08-16 16:18:18 +00:00
|
|
|
/* A chip name is encoded in this structure */
|
1998-12-20 16:54:03 +00:00
|
|
|
typedef struct sensors_chip_name {
|
2007-08-16 16:18:18 +00:00
|
|
|
char *prefix;
|
2007-08-19 15:03:50 +00:00
|
|
|
sensors_bus_id bus;
|
2007-08-16 16:18:18 +00:00
|
|
|
int addr;
|
|
|
|
char *path;
|
1998-12-20 16:54:03 +00:00
|
|
|
} sensors_chip_name;
|
|
|
|
|
2007-08-22 17:04:12 +00:00
|
|
|
/* Load the configuration file and the detected chips list. If this
|
|
|
|
returns a value unequal to zero, you are in trouble; you can not
|
|
|
|
assume anything will be initialized properly. If you want to
|
|
|
|
reload the configuration file, call sensors_cleanup() below before
|
|
|
|
calling sensors_init() again. */
|
2007-08-16 16:18:18 +00:00
|
|
|
int sensors_init(FILE *input);
|
1998-12-20 21:57:39 +00:00
|
|
|
|
2003-11-23 21:26:37 +00:00
|
|
|
/* Clean-up function: You can't access anything after
|
1998-12-20 21:57:39 +00:00
|
|
|
this, until the next sensors_init() call! */
|
2007-08-16 16:18:18 +00:00
|
|
|
void sensors_cleanup(void);
|
1998-12-20 21:57:39 +00:00
|
|
|
|
2007-08-16 16:18:18 +00:00
|
|
|
/* Parse a chip name to the internal representation. Return 0 on success, <0
|
1998-12-20 16:54:03 +00:00
|
|
|
on error. */
|
2007-08-16 16:18:18 +00:00
|
|
|
int sensors_parse_chip_name(const char *orig_name, sensors_chip_name *res);
|
1998-12-20 16:54:03 +00:00
|
|
|
|
2007-08-16 10:04:57 +00:00
|
|
|
/* Print a chip name from its internal representation. Note that chip should
|
|
|
|
not contain wildcard values! Return the number of characters printed on
|
|
|
|
success (same as snprintf), <0 on error. */
|
|
|
|
int sensors_snprintf_chip_name(char *str, size_t size,
|
|
|
|
const sensors_chip_name *chip);
|
|
|
|
|
2007-08-19 15:03:50 +00:00
|
|
|
/* This function returns the adapter name of a bus,
|
2007-08-16 16:18:18 +00:00
|
|
|
as used within the sensors_chip_name structure. If it could not be found,
|
1998-12-22 17:41:43 +00:00
|
|
|
it returns NULL */
|
2007-08-19 15:03:50 +00:00
|
|
|
const char *sensors_get_adapter_name(const sensors_bus_id *bus);
|
2006-10-13 19:55:41 +00:00
|
|
|
|
1998-12-20 16:54:03 +00:00
|
|
|
/* Look up the label which belongs to this chip. Note that chip should not
|
2007-08-22 17:05:01 +00:00
|
|
|
contain wildcard values! The returned string is newly allocated (free it
|
|
|
|
yourself). On failure, NULL is returned.
|
2007-08-18 06:58:33 +00:00
|
|
|
If no label exists for this feature, its name is returned itself. */
|
2007-08-22 17:05:01 +00:00
|
|
|
char *sensors_get_label(const sensors_chip_name *name, int feature);
|
1998-12-20 16:54:03 +00:00
|
|
|
|
|
|
|
/* Read the value of a feature of a certain chip. Note that chip should not
|
|
|
|
contain wildcard values! This function will return 0 on success, and <0
|
|
|
|
on failure. */
|
2007-08-22 17:06:13 +00:00
|
|
|
int sensors_get_value(const sensors_chip_name *name, int feature,
|
|
|
|
double *value);
|
1998-12-20 16:54:03 +00:00
|
|
|
|
|
|
|
/* Set the value of a feature of a certain chip. Note that chip should not
|
|
|
|
contain wildcard values! This function will return 0 on success, and <0
|
1998-12-29 19:48:43 +00:00
|
|
|
on failure. */
|
2007-08-22 17:06:13 +00:00
|
|
|
int sensors_set_value(const sensors_chip_name *name, int feature,
|
|
|
|
double value);
|
1998-12-20 16:54:03 +00:00
|
|
|
|
1998-12-29 19:48:43 +00:00
|
|
|
/* Execute all set statements for this particular chip. The chip may contain
|
|
|
|
wildcards! This function will return 0 on success, and <0 on failure. */
|
2007-08-16 16:18:18 +00:00
|
|
|
int sensors_do_chip_sets(const sensors_chip_name *name);
|
1998-12-29 19:48:43 +00:00
|
|
|
|
2007-08-26 08:26:20 +00:00
|
|
|
/* This function returns all detected chips that match a given chip name,
|
|
|
|
one by one. If no chip name is provided, all detected chips are returned.
|
|
|
|
To start at the beginning of the list, use 0 for nr; NULL is returned if
|
|
|
|
we are at the end of the list. Do not try to change these chip names, as
|
|
|
|
they point to internal structures! */
|
|
|
|
const sensors_chip_name *sensors_get_detected_chips(const sensors_chip_name
|
|
|
|
*match, int *nr);
|
1998-12-22 02:06:51 +00:00
|
|
|
|
2007-09-05 08:13:15 +00:00
|
|
|
/* These defines are used in the flags field of sensors_feature_data */
|
2007-09-05 08:17:22 +00:00
|
|
|
#define SENSORS_MODE_R 1
|
|
|
|
#define SENSORS_MODE_W 2
|
|
|
|
#define SENSORS_COMPUTE_MAPPING 4
|
1998-12-24 18:40:58 +00:00
|
|
|
|
|
|
|
/* This define is used in the mapping field of sensors_feature_data if no
|
|
|
|
mapping is available */
|
|
|
|
#define SENSORS_NO_MAPPING -1
|
|
|
|
|
2007-04-10 11:51:07 +00:00
|
|
|
/* This enum contains some "magic" used by sensors_read_dynamic_chip() from
|
2007-07-05 16:09:40 +00:00
|
|
|
lib/sysfs.c. All the sensor types (in, fan, temp, vid) are a multiple of
|
2007-09-05 08:17:22 +00:00
|
|
|
0x100 apart, and sensor features which should not have a compute mapping to
|
2007-04-10 11:51:07 +00:00
|
|
|
the _input feature start at 0x?10. */
|
2007-04-09 14:40:05 +00:00
|
|
|
typedef enum sensors_feature_type {
|
2007-08-16 16:18:18 +00:00
|
|
|
SENSORS_FEATURE_IN = 0x000,
|
|
|
|
SENSORS_FEATURE_IN_MIN,
|
|
|
|
SENSORS_FEATURE_IN_MAX,
|
|
|
|
SENSORS_FEATURE_IN_ALARM = 0x010,
|
|
|
|
SENSORS_FEATURE_IN_MIN_ALARM,
|
|
|
|
SENSORS_FEATURE_IN_MAX_ALARM,
|
2007-09-20 21:23:19 +00:00
|
|
|
SENSORS_FEATURE_IN_BEEP,
|
2007-08-16 16:18:18 +00:00
|
|
|
|
|
|
|
SENSORS_FEATURE_FAN = 0x100,
|
|
|
|
SENSORS_FEATURE_FAN_MIN,
|
|
|
|
SENSORS_FEATURE_FAN_ALARM = 0x110,
|
|
|
|
SENSORS_FEATURE_FAN_FAULT,
|
|
|
|
SENSORS_FEATURE_FAN_DIV,
|
2007-09-20 21:23:19 +00:00
|
|
|
SENSORS_FEATURE_FAN_BEEP,
|
2007-08-16 16:18:18 +00:00
|
|
|
|
|
|
|
SENSORS_FEATURE_TEMP = 0x200,
|
|
|
|
SENSORS_FEATURE_TEMP_MAX,
|
|
|
|
SENSORS_FEATURE_TEMP_MAX_HYST,
|
|
|
|
SENSORS_FEATURE_TEMP_MIN,
|
|
|
|
SENSORS_FEATURE_TEMP_CRIT,
|
|
|
|
SENSORS_FEATURE_TEMP_CRIT_HYST,
|
|
|
|
SENSORS_FEATURE_TEMP_ALARM = 0x210,
|
|
|
|
SENSORS_FEATURE_TEMP_MAX_ALARM,
|
|
|
|
SENSORS_FEATURE_TEMP_MIN_ALARM,
|
|
|
|
SENSORS_FEATURE_TEMP_CRIT_ALARM,
|
|
|
|
SENSORS_FEATURE_TEMP_FAULT,
|
2007-08-29 14:08:47 +00:00
|
|
|
SENSORS_FEATURE_TEMP_TYPE,
|
2007-09-05 12:31:12 +00:00
|
|
|
SENSORS_FEATURE_TEMP_OFFSET,
|
2007-09-20 21:23:19 +00:00
|
|
|
SENSORS_FEATURE_TEMP_BEEP,
|
2007-08-16 16:18:18 +00:00
|
|
|
|
2007-09-05 12:29:20 +00:00
|
|
|
SENSORS_FEATURE_VID = 0x1000,
|
2007-08-16 16:18:18 +00:00
|
|
|
|
2007-09-05 12:28:31 +00:00
|
|
|
SENSORS_FEATURE_BEEP_ENABLE = 0x1100,
|
|
|
|
|
2007-08-16 16:18:18 +00:00
|
|
|
SENSORS_FEATURE_UNKNOWN = INT_MAX,
|
2007-04-09 14:40:05 +00:00
|
|
|
} sensors_feature_type;
|
|
|
|
|
2007-09-23 11:59:51 +00:00
|
|
|
/* Data about a single chip feature:
|
|
|
|
name is the string name used to refer to this feature (in config files)
|
|
|
|
number is the internal feature number, used in many functions to refer
|
|
|
|
to this feature
|
|
|
|
type is the feature or subfeature type
|
|
|
|
mapping is either SENSORS_NO_MAPPING if this is feature is the
|
|
|
|
main element of category; or it is the number of a feature with which
|
|
|
|
this subfeature is logically grouped (a group could be fan, fan_min
|
|
|
|
and fan_div)
|
|
|
|
flags is a bitfield, its value is a combination of SENSORS_MODE_R (readable),
|
|
|
|
SENSORS_MODE_W (writable) and SENSORS_COMPUTE_MAPPING (affected by the
|
|
|
|
computation rules of the main feature) */
|
2007-07-19 20:46:09 +00:00
|
|
|
typedef struct sensors_feature_data {
|
2007-08-16 16:18:18 +00:00
|
|
|
char *name;
|
2007-08-30 21:23:22 +00:00
|
|
|
int number;
|
2007-08-16 16:18:18 +00:00
|
|
|
sensors_feature_type type;
|
|
|
|
int mapping;
|
2007-09-05 08:13:15 +00:00
|
|
|
unsigned int flags;
|
2007-07-19 20:46:09 +00:00
|
|
|
} sensors_feature_data;
|
|
|
|
|
|
|
|
/* This returns all features of a specific chip. They are returned in
|
|
|
|
bunches: everything with the same mapping is returned just after each
|
|
|
|
other, with the master feature in front (that feature does not map to
|
2007-07-24 08:19:59 +00:00
|
|
|
itself, but has SENSORS_NO_MAPPING as mapping field). nr is
|
|
|
|
an internally used variable. Set it to zero to start again at the
|
2007-07-19 20:46:09 +00:00
|
|
|
begin of the list. If no more features are found NULL is returned.
|
|
|
|
Do not try to change the returned structure; you will corrupt internal
|
|
|
|
data structures. */
|
2007-08-16 16:18:18 +00:00
|
|
|
const sensors_feature_data *sensors_get_all_features
|
2007-08-31 14:42:20 +00:00
|
|
|
(const sensors_chip_name *name, int *nr);
|
2007-04-09 17:48:57 +00:00
|
|
|
|
2000-02-02 20:19:59 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
1998-12-20 16:54:03 +00:00
|
|
|
#endif /* def LIB_SENSORS_ERROR_H */
|