~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/devfreq_cooling.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/devfreq_cooling.h (Version linux-6.12-rc7) and /include/linux/devfreq_cooling.h (Version linux-6.2.16)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*                                                  2 /*
  3  * devfreq_cooling: Thermal cooling device imp      3  * devfreq_cooling: Thermal cooling device implementation for devices using
  4  *                  devfreq                         4  *                  devfreq
  5  *                                                  5  *
  6  * Copyright (C) 2014-2015 ARM Limited              6  * Copyright (C) 2014-2015 ARM Limited
  7  *                                                  7  *
  8  */                                                 8  */
  9                                                     9 
 10 #ifndef __DEVFREQ_COOLING_H__                      10 #ifndef __DEVFREQ_COOLING_H__
 11 #define __DEVFREQ_COOLING_H__                      11 #define __DEVFREQ_COOLING_H__
 12                                                    12 
 13 #include <linux/devfreq.h>                         13 #include <linux/devfreq.h>
 14 #include <linux/thermal.h>                         14 #include <linux/thermal.h>
 15                                                    15 
 16                                                    16 
 17 /**                                                17 /**
 18  * struct devfreq_cooling_power - Devfreq cool     18  * struct devfreq_cooling_power - Devfreq cooling power ops
 19  * @get_real_power:     When this is set, the      19  * @get_real_power:     When this is set, the framework uses it to ask the
 20  *                      device driver for the      20  *                      device driver for the actual power.
 21  *                      Some devices have more     21  *                      Some devices have more sophisticated methods
 22  *                      (like power counters)      22  *                      (like power counters) to approximate the actual power
 23  *                      that they use.             23  *                      that they use.
 24  *                      This function provides     24  *                      This function provides more accurate data to the
 25  *                      thermal governor. When     25  *                      thermal governor. When the driver does not provide
 26  *                      such function, framewo     26  *                      such function, framework just uses pre-calculated
 27  *                      table and scale the po     27  *                      table and scale the power by 'utilization'
 28  *                      (based on 'busy_time'      28  *                      (based on 'busy_time' and 'total_time' taken from
 29  *                      devfreq 'last_status')     29  *                      devfreq 'last_status').
 30  *                      The value returned by      30  *                      The value returned by this function must be lower
 31  *                      or equal than the maxi     31  *                      or equal than the maximum power value
 32  *                      for the current state      32  *                      for the current state
 33  *                      (which can be found in     33  *                      (which can be found in power_table[state]).
 34  *                      When this interface is     34  *                      When this interface is used, the power_table holds
 35  *                      max total (static + dy     35  *                      max total (static + dynamic) power value for each OPP.
 36  */                                                36  */
 37 struct devfreq_cooling_power {                     37 struct devfreq_cooling_power {
 38         int (*get_real_power)(struct devfreq *     38         int (*get_real_power)(struct devfreq *df, u32 *power,
 39                               unsigned long fr     39                               unsigned long freq, unsigned long voltage);
 40 };                                                 40 };
 41                                                    41 
 42 #ifdef CONFIG_DEVFREQ_THERMAL                      42 #ifdef CONFIG_DEVFREQ_THERMAL
 43                                                    43 
 44 struct thermal_cooling_device *                    44 struct thermal_cooling_device *
 45 of_devfreq_cooling_register_power(struct devic     45 of_devfreq_cooling_register_power(struct device_node *np, struct devfreq *df,
 46                                   struct devfr     46                                   struct devfreq_cooling_power *dfc_power);
 47 struct thermal_cooling_device *                    47 struct thermal_cooling_device *
 48 of_devfreq_cooling_register(struct device_node     48 of_devfreq_cooling_register(struct device_node *np, struct devfreq *df);
 49 struct thermal_cooling_device *devfreq_cooling     49 struct thermal_cooling_device *devfreq_cooling_register(struct devfreq *df);
 50 void devfreq_cooling_unregister(struct thermal     50 void devfreq_cooling_unregister(struct thermal_cooling_device *dfc);
 51 struct thermal_cooling_device *                    51 struct thermal_cooling_device *
 52 devfreq_cooling_em_register(struct devfreq *df     52 devfreq_cooling_em_register(struct devfreq *df,
 53                             struct devfreq_coo     53                             struct devfreq_cooling_power *dfc_power);
 54                                                    54 
 55 #else /* !CONFIG_DEVFREQ_THERMAL */                55 #else /* !CONFIG_DEVFREQ_THERMAL */
 56                                                    56 
 57 static inline struct thermal_cooling_device *      57 static inline struct thermal_cooling_device *
 58 of_devfreq_cooling_register_power(struct devic     58 of_devfreq_cooling_register_power(struct device_node *np, struct devfreq *df,
 59                                   struct devfr     59                                   struct devfreq_cooling_power *dfc_power)
 60 {                                                  60 {
 61         return ERR_PTR(-EINVAL);                   61         return ERR_PTR(-EINVAL);
 62 }                                                  62 }
 63                                                    63 
 64 static inline struct thermal_cooling_device *      64 static inline struct thermal_cooling_device *
 65 of_devfreq_cooling_register(struct device_node     65 of_devfreq_cooling_register(struct device_node *np, struct devfreq *df)
 66 {                                                  66 {
 67         return ERR_PTR(-EINVAL);                   67         return ERR_PTR(-EINVAL);
 68 }                                                  68 }
 69                                                    69 
 70 static inline struct thermal_cooling_device *      70 static inline struct thermal_cooling_device *
 71 devfreq_cooling_register(struct devfreq *df)       71 devfreq_cooling_register(struct devfreq *df)
 72 {                                                  72 {
 73         return ERR_PTR(-EINVAL);                   73         return ERR_PTR(-EINVAL);
 74 }                                                  74 }
 75                                                    75 
 76 static inline struct thermal_cooling_device *      76 static inline struct thermal_cooling_device *
 77 devfreq_cooling_em_register(struct devfreq *df     77 devfreq_cooling_em_register(struct devfreq *df,
 78                             struct devfreq_coo     78                             struct devfreq_cooling_power *dfc_power)
 79 {                                                  79 {
 80         return ERR_PTR(-EINVAL);                   80         return ERR_PTR(-EINVAL);
 81 }                                                  81 }
 82                                                    82 
 83 static inline void                                 83 static inline void
 84 devfreq_cooling_unregister(struct thermal_cool     84 devfreq_cooling_unregister(struct thermal_cooling_device *dfc)
 85 {                                                  85 {
 86 }                                                  86 }
 87                                                    87 
 88 #endif /* CONFIG_DEVFREQ_THERMAL */                88 #endif /* CONFIG_DEVFREQ_THERMAL */
 89 #endif /* __DEVFREQ_COOLING_H__ */                 89 #endif /* __DEVFREQ_COOLING_H__ */
 90                                                    90 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php