msm_thermal_ioctl.h 885 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef _MSM_THERMAL_IOCTL_H
  2. #define _MSM_THERMAL_IOCTL_H
  3. #include <linux/ioctl.h>
  4. #define MSM_THERMAL_IOCTL_NAME "msm_thermal_query"
  5. struct __attribute__((__packed__)) cpu_freq_arg {
  6. uint32_t cpu_num;
  7. uint32_t freq_req;
  8. };
  9. struct __attribute__((__packed__)) msm_thermal_ioctl {
  10. uint32_t size;
  11. union {
  12. struct cpu_freq_arg cpu_freq;
  13. };
  14. };
  15. enum {
  16. /*Set CPU Frequency*/
  17. MSM_SET_CPU_MAX_FREQ = 0x00,
  18. MSM_SET_CPU_MIN_FREQ = 0x01,
  19. MSM_CMD_MAX_NR,
  20. };
  21. #define MSM_THERMAL_MAGIC_NUM 0xCA /*Unique magic number*/
  22. #define MSM_THERMAL_SET_CPU_MAX_FREQUENCY _IOW(MSM_THERMAL_MAGIC_NUM,\
  23. MSM_SET_CPU_MAX_FREQ, struct msm_thermal_ioctl)
  24. #define MSM_THERMAL_SET_CPU_MIN_FREQUENCY _IOW(MSM_THERMAL_MAGIC_NUM,\
  25. MSM_SET_CPU_MIN_FREQ, struct msm_thermal_ioctl)
  26. #ifdef __KERNEL__
  27. extern int msm_thermal_ioctl_init(void);
  28. extern void msm_thermal_ioctl_cleanup(void);
  29. #endif
  30. #endif