1 /****************************************************************************
2  ****************************************************************************
3  ***
4  ***   This header was automatically generated from a Linux kernel header
5  ***   of the same name, to make information necessary for userspace to
6  ***   call into the kernel available to libc.  It contains only constants,
7  ***   structures, and macros generated from the original header, and thus,
8  ***   contains no copyrightable information.
9  ***
10  ***   To edit the content of this header, modify the corresponding
11  ***   source file (e.g. under external/kernel-headers/original/) then
12  ***   run bionic/libc/kernel/tools/update_all.py
13  ***
14  ***   Any manual change here will be lost the next time this script will
15  ***   be run. You've been warned!
16  ***
17  ****************************************************************************
18  ****************************************************************************/
19 #ifndef _MSM_THERMAL_IOCTL_H
20 #define _MSM_THERMAL_IOCTL_H
21 #include <linux/ioctl.h>
22 #define MSM_THERMAL_IOCTL_NAME "msm_thermal_query"
23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24 struct __attribute__((__packed__)) cpu_freq_arg {
25  uint32_t cpu_num;
26  uint32_t freq_req;
27 };
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29 struct __attribute__((__packed__)) msm_thermal_ioctl {
30  uint32_t size;
31  union {
32  struct cpu_freq_arg cpu_freq;
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34  };
35 };
36 enum {
37  MSM_SET_CPU_MAX_FREQ = 0x00,
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39  MSM_SET_CPU_MIN_FREQ = 0x01,
40  MSM_CMD_MAX_NR,
41 };
42 #define MSM_THERMAL_MAGIC_NUM 0xCA
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44 #define MSM_THERMAL_SET_CPU_MAX_FREQUENCY _IOW(MSM_THERMAL_MAGIC_NUM,  MSM_SET_CPU_MAX_FREQ, struct msm_thermal_ioctl)
45 #define MSM_THERMAL_SET_CPU_MIN_FREQUENCY _IOW(MSM_THERMAL_MAGIC_NUM,  MSM_SET_CPU_MIN_FREQ, struct msm_thermal_ioctl)
46 #endif
47 
48