diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-11-19 21:11:00 -0500 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2014-12-09 01:10:41 -0500 |
commit | af6c9f1657ca6d2ef2b2c0e31ad17c6fbf773baf (patch) | |
tree | a2a148611792c71bcee577c505b20851f07fcefd /include/uapi/linux/thermal.h | |
parent | 9d367e5e7b05c71a8c1ac4e9b6e00ba45a79f2fc (diff) |
thermal: provide an UAPI header file
include/linux/thermal.h contains definitions for the Thermal generic
netlink family, but none of the valuable information relevant to
user-space such as the Genl family name, multicast group, version or
command set and data types is exported to user-space.
Export all the relevant generic netlink information to user-space to
make this genl family usable by user-space, and while at it, export
THERMAL_NAME_LENGTH since it limits name length for thermal_hwmon
devices.
Kbuild and MAINTAINERS are also updated accordingly to reflect this new
file: include/uapi/linux/thermal.h.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'include/uapi/linux/thermal.h')
-rw-r--r-- | include/uapi/linux/thermal.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/uapi/linux/thermal.h b/include/uapi/linux/thermal.h new file mode 100644 index 000000000000..ac5535855982 --- /dev/null +++ b/include/uapi/linux/thermal.h | |||
@@ -0,0 +1,35 @@ | |||
1 | #ifndef _UAPI_LINUX_THERMAL_H | ||
2 | #define _UAPI_LINUX_THERMAL_H | ||
3 | |||
4 | #define THERMAL_NAME_LENGTH 20 | ||
5 | |||
6 | /* Adding event notification support elements */ | ||
7 | #define THERMAL_GENL_FAMILY_NAME "thermal_event" | ||
8 | #define THERMAL_GENL_VERSION 0x01 | ||
9 | #define THERMAL_GENL_MCAST_GROUP_NAME "thermal_mc_grp" | ||
10 | |||
11 | /* Events supported by Thermal Netlink */ | ||
12 | enum events { | ||
13 | THERMAL_AUX0, | ||
14 | THERMAL_AUX1, | ||
15 | THERMAL_CRITICAL, | ||
16 | THERMAL_DEV_FAULT, | ||
17 | }; | ||
18 | |||
19 | /* attributes of thermal_genl_family */ | ||
20 | enum { | ||
21 | THERMAL_GENL_ATTR_UNSPEC, | ||
22 | THERMAL_GENL_ATTR_EVENT, | ||
23 | __THERMAL_GENL_ATTR_MAX, | ||
24 | }; | ||
25 | #define THERMAL_GENL_ATTR_MAX (__THERMAL_GENL_ATTR_MAX - 1) | ||
26 | |||
27 | /* commands supported by the thermal_genl_family */ | ||
28 | enum { | ||
29 | THERMAL_GENL_CMD_UNSPEC, | ||
30 | THERMAL_GENL_CMD_EVENT, | ||
31 | __THERMAL_GENL_CMD_MAX, | ||
32 | }; | ||
33 | #define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1) | ||
34 | |||
35 | #endif /* _UAPI_LINUX_THERMAL_H */ | ||