| /linux/drivers/thermal/ |
| H A D | thermal_core.c | 69 * @tz: a valid pointer to a struct thermal_zone_device 75 static void bind_previous_governor(struct thermal_zone_device *tz, in bind_previous_governor() argument 78 if (tz->governor && tz->governor->bind_to_tz) { in bind_previous_governor() 79 if (tz->governor->bind_to_tz(tz)) { in bind_previous_governor() 80 dev_err(&tz->device, in bind_previous_governor() 82 failed_gov_name, tz->governor->name, tz->type); in bind_previous_governor() 83 tz->governor = NULL; in bind_previous_governor() 90 * @tz: a valid pointer to a struct thermal_zone_device 93 * Change the governor of thermal zone @tz. 97 static int thermal_set_governor(struct thermal_zone_device *tz, in thermal_set_governor() argument [all …]
|
| H A D | thermal_helpers.c | 25 int get_tz_trend(struct thermal_zone_device *tz, const struct thermal_trip *trip) in get_tz_trend() argument 29 if (tz->emul_temperature || !tz->ops.get_trend || in get_tz_trend() 30 tz->ops.get_trend(tz, trip, &trend)) { in get_tz_trend() 31 if (tz->temperature > tz->last_temperature) in get_tz_trend() 33 else if (tz->temperature < tz->last_temperature) in get_tz_trend() 42 static bool thermal_instance_present(struct thermal_zone_device *tz, in thermal_instance_present() argument 57 bool thermal_trip_is_bound_to_cdev(struct thermal_zone_device *tz, in thermal_trip_is_bound_to_cdev() argument 61 guard(thermal_zone)(tz); in thermal_trip_is_bound_to_cdev() 64 return thermal_instance_present(tz, cdev, trip); in thermal_trip_is_bound_to_cdev() 70 * @tz: a valid pointer to a struct thermal_zone_device [all …]
|
| H A D | thermal_thresholds.c | 16 int thermal_thresholds_init(struct thermal_zone_device *tz) in thermal_thresholds_init() argument 18 INIT_LIST_HEAD(&tz->user_thresholds); in thermal_thresholds_init() 23 static void __thermal_thresholds_flush(struct thermal_zone_device *tz) in __thermal_thresholds_flush() argument 25 struct list_head *thresholds = &tz->user_thresholds; in __thermal_thresholds_flush() 34 void thermal_thresholds_flush(struct thermal_zone_device *tz) in thermal_thresholds_flush() argument 36 lockdep_assert_held(&tz->lock); in thermal_thresholds_flush() 38 __thermal_thresholds_flush(tz); in thermal_thresholds_flush() 40 thermal_notify_threshold_flush(tz); in thermal_thresholds_flush() 42 __thermal_zone_device_update(tz, THERMAL_TZ_FLUSH_THRESHOLDS); in thermal_thresholds_flush() 45 void thermal_thresholds_exit(struct thermal_zone_device *tz) in thermal_thresholds_exit() argument [all …]
|
| H A D | gov_power_allocator.c | 107 * @tz: thermal zone we are operating in 116 static u32 estimate_sustainable_power(struct thermal_zone_device *tz) in estimate_sustainable_power() argument 118 struct power_allocator_params *params = tz->governor_data; in estimate_sustainable_power() 141 * @tz: thermal zone for which to estimate the constants 149 static void estimate_pid_constants(struct thermal_zone_device *tz, in estimate_pid_constants() argument 171 tz->tzp->k_po = int_to_frac(sustainable_power) / in estimate_pid_constants() 174 tz->tzp->k_pu = int_to_frac(2 * sustainable_power) / in estimate_pid_constants() 177 k_i = tz->tzp->k_pu / 10; in estimate_pid_constants() 178 tz->tzp->k_i = k_i > 0 ? k_i : 1; in estimate_pid_constants() 188 * @tz: thermal zone for which to estimate the constants [all …]
|
| H A D | thermal_hwmon.c | 40 struct thermal_zone_device *tz; member 60 struct thermal_zone_device *tz = temp->tz; in temp_input_show() local 62 ret = thermal_zone_get_temp(tz, &temperature); in temp_input_show() 78 struct thermal_zone_device *tz = temp->tz; in temp_crit_show() local 82 guard(thermal_zone)(tz); in temp_crit_show() 84 ret = tz->ops.get_crit_temp(tz, &temperature); in temp_crit_show() 93 thermal_hwmon_lookup_by_type(const struct thermal_zone_device *tz) in thermal_hwmon_lookup_by_type() argument 99 strscpy(type, tz->type); in thermal_hwmon_lookup_by_type() 108 static bool thermal_zone_crit_temp_valid(struct thermal_zone_device *tz) in thermal_zone_crit_temp_valid() argument 111 return tz->ops.get_crit_temp && !tz->ops.get_crit_temp(tz, &temp); in thermal_zone_crit_temp_valid() [all …]
|
| H A D | thermal_trip.c | 27 int for_each_thermal_trip(struct thermal_zone_device *tz, in for_each_thermal_trip() argument 34 for_each_trip_desc(tz, td) { in for_each_thermal_trip() 44 int thermal_zone_for_each_trip(struct thermal_zone_device *tz, in thermal_zone_for_each_trip() argument 48 guard(thermal_zone)(tz); in thermal_zone_for_each_trip() 50 return for_each_thermal_trip(tz, cb, data); in thermal_zone_for_each_trip() 54 void thermal_zone_set_trips(struct thermal_zone_device *tz, int low, int high) in thermal_zone_set_trips() argument 58 lockdep_assert_held(&tz->lock); in thermal_zone_set_trips() 60 if (!tz->ops.set_trips) in thermal_zone_set_trips() 64 if (tz->prev_low_trip == low && tz->prev_high_trip == high) in thermal_zone_set_trips() 67 tz->prev_low_trip = low; in thermal_zone_set_trips() [all …]
|
| H A D | thermal_netlink.c | 351 int thermal_notify_tz_create(const struct thermal_zone_device *tz) in thermal_notify_tz_create() argument 353 struct param p = { .tz_id = tz->id, .name = tz->type }; in thermal_notify_tz_create() 358 int thermal_notify_tz_delete(const struct thermal_zone_device *tz) in thermal_notify_tz_delete() argument 360 struct param p = { .tz_id = tz->id }; in thermal_notify_tz_delete() 365 int thermal_notify_tz_enable(const struct thermal_zone_device *tz) in thermal_notify_tz_enable() argument 367 struct param p = { .tz_id = tz->id }; in thermal_notify_tz_enable() 372 int thermal_notify_tz_disable(const struct thermal_zone_device *tz) in thermal_notify_tz_disable() argument 374 struct param p = { .tz_id = tz->id }; in thermal_notify_tz_disable() 379 int thermal_notify_tz_trip_down(const struct thermal_zone_device *tz, in thermal_notify_tz_trip_down() argument 382 struct param p = { .tz_id = tz->id, in thermal_notify_tz_trip_down() [all …]
|
| H A D | thermal_debugfs.h | 8 void thermal_debug_tz_add(struct thermal_zone_device *tz); 9 void thermal_debug_tz_remove(struct thermal_zone_device *tz); 10 void thermal_debug_tz_resume(struct thermal_zone_device *tz); 11 void thermal_debug_tz_trip_up(struct thermal_zone_device *tz, 13 void thermal_debug_tz_trip_down(struct thermal_zone_device *tz, 15 void thermal_debug_update_trip_stats(struct thermal_zone_device *tz); 22 static inline void thermal_debug_tz_add(struct thermal_zone_device *tz) {} in thermal_debug_tz_add() argument 23 static inline void thermal_debug_tz_remove(struct thermal_zone_device *tz) {} in thermal_debug_tz_remove() argument 24 static inline void thermal_debug_tz_resume(struct thermal_zone_device *tz) {} in thermal_debug_tz_resume() argument 25 static inline void thermal_debug_tz_trip_up(struct thermal_zone_device *tz, in thermal_debug_tz_trip_up() argument [all …]
|
| H A D | thermal_debugfs.c | 122 * @node: a list element to be added to the list of tz events 146 * @tz: thermal zone this object belongs to 152 struct thermal_zone_device *tz; member 556 static struct tz_episode *thermal_debugfs_tz_event_alloc(struct thermal_zone_device *tz, in thermal_debugfs_tz_event_alloc() argument 562 tze = kzalloc_flex(*tze, trip_stats, tz->num_trips); in thermal_debugfs_tz_event_alloc() 571 for (i = 0; i < tz->num_trips; i++) { in thermal_debugfs_tz_event_alloc() 579 void thermal_debug_tz_trip_up(struct thermal_zone_device *tz, in thermal_debug_tz_trip_up() argument 582 struct thermal_debugfs *thermal_dbg = tz->debugfs; in thermal_debug_tz_trip_up() 583 int trip_id = thermal_zone_trip_id(tz, trip); in thermal_debug_tz_trip_up() 630 tze = thermal_debugfs_tz_event_alloc(tz, now); in thermal_debug_tz_trip_up() [all …]
|
| H A D | thermal_trace_ipa.h | 13 TP_PROTO(struct thermal_zone_device *tz, u32 total_req_power, 16 TP_ARGS(tz, total_req_power, total_granted_power, num_actors, 29 __entry->tz_id = tz->id; 47 TP_PROTO(struct thermal_zone_device *tz, int actor_id, u32 req_power, 49 TP_ARGS(tz, actor_id, req_power, granted_power), 57 __entry->tz_id = tz->id; 69 TP_PROTO(struct thermal_zone_device *tz, s32 err, s32 err_integral, 71 TP_ARGS(tz, err, err_integral, p, i, d, output), 82 __entry->tz_id = tz->id;
|
| H A D | thermal_hwmon.h | 19 int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz); 20 int devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz); 21 void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz); 24 thermal_add_hwmon_sysfs(struct thermal_zone_device *tz) in thermal_add_hwmon_sysfs() argument 30 devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz) in devm_thermal_add_hwmon_sysfs() argument 36 thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz) in thermal_remove_hwmon_sysfs() argument
|
| H A D | thermal_of.c | 225 static struct device_node *thermal_of_zone_get_by_name(struct thermal_zone_device *tz) in thermal_of_zone_get_by_name() argument 233 tz_np = of_get_child_by_name(np, tz->type); in thermal_of_zone_get_by_name() 323 static bool thermal_of_should_bind(struct thermal_zone_device *tz, in thermal_of_should_bind() argument 331 tz_np = thermal_of_zone_get_by_name(tz); in thermal_of_should_bind() 333 pr_err("Failed to get node tz by name\n"); in thermal_of_should_bind() 357 * @tz: a pointer to the thermal zone structure 359 static void thermal_of_zone_unregister(struct thermal_zone_device *tz) in thermal_of_zone_unregister() argument 361 thermal_zone_device_disable(tz); in thermal_of_zone_unregister() 362 thermal_zone_device_unregister(tz); in thermal_of_zone_unregister() 389 struct thermal_zone_device *tz; in thermal_of_zone_register() local [all …]
|
| H A D | imx_thermal.c | 205 struct thermal_zone_device *tz; member 254 static int imx_get_temp(struct thermal_zone_device *tz, int *temp) in imx_get_temp() argument 256 struct imx_thermal_data *data = thermal_zone_device_priv(tz); in imx_get_temp() 310 static int imx_change_mode(struct thermal_zone_device *tz, in imx_change_mode() argument 313 struct imx_thermal_data *data = thermal_zone_device_priv(tz); in imx_change_mode() 334 static int imx_set_trip_temp(struct thermal_zone_device *tz, in imx_set_trip_temp() argument 337 struct imx_thermal_data *data = thermal_zone_device_priv(tz); in imx_set_trip_temp() 356 static bool imx_should_bind(struct thermal_zone_device *tz, in imx_should_bind() argument 523 thermal_zone_device_update(data->tz, THERMAL_EVENT_UNSPECIFIED); in imx_thermal_alarm_irq_thread() 682 data->tz = thermal_zone_device_register_with_trips("imx_thermal_zone", in imx_thermal_probe() [all …]
|
| H A D | loongson2_thermal.c | 73 static int loongson2_2k1000_get_temp(struct thermal_zone_device *tz, int *temp) in loongson2_2k1000_get_temp() argument 76 struct loongson2_thermal_data *data = thermal_zone_device_priv(tz); in loongson2_2k1000_get_temp() 84 static int loongson2_2k2000_get_temp(struct thermal_zone_device *tz, int *temp) in loongson2_2k2000_get_temp() argument 87 struct loongson2_thermal_data *data = thermal_zone_device_priv(tz); in loongson2_2k2000_get_temp() 107 static int loongson2_thermal_set_trips(struct thermal_zone_device *tz, int low, int high) in loongson2_thermal_set_trips() argument 109 struct loongson2_thermal_data *data = thermal_zone_device_priv(tz); in loongson2_thermal_set_trips()
|
| H A D | armada_thermal.c | 116 struct thermal_zone_device *tz; member 404 static int armada_get_temp(struct thermal_zone_device *tz, int *temp) in armada_get_temp() argument 406 struct armada_thermal_sensor *sensor = thermal_zone_device_priv(tz); in armada_get_temp() 784 struct thermal_zone_device *tz, in armada_configure_overheat_int() argument 791 ret = thermal_zone_get_crit_temp(tz, &temperature); in armada_configure_overheat_int() 803 priv->overheat_sensor = tz; in armada_configure_overheat_int() 812 struct thermal_zone_device *tz; in armada_thermal_probe() local 862 tz = thermal_tripless_zone_device_register(priv->zone_name, in armada_thermal_probe() 865 if (IS_ERR(tz)) { in armada_thermal_probe() 868 return PTR_ERR(tz); in armada_thermal_probe() [all …]
|
| /linux/tools/testing/selftests/timers/ |
| H A D | set-tz.c | 1 /* Set tz value 30 struct timezone tz; in set_tz() local 32 tz.tz_minuteswest = min; in set_tz() 33 tz.tz_dsttime = dst; in set_tz() 35 return settimeofday(0, &tz); in set_tz() 40 struct timezone tz; in get_tz_min() local 43 memset(&tz, 0, sizeof(tz)); in get_tz_min() 44 gettimeofday(&tv, &tz); in get_tz_min() 45 return tz.tz_minuteswest; in get_tz_min() 50 struct timezone tz; in get_tz_dst() local [all …]
|
| /linux/drivers/thermal/testing/ |
| H A D | zone.c | 30 * @tz: Test thermal zone based on this template, if present. 43 struct thermal_zone_device *tz; member 115 if (!tt_zone->tz) in tt_zone_tz_temp_get() 128 if (!tt_zone->tz) in tt_zone_tz_temp_set() 132 thermal_zone_device_update(tt_zone->tz, THERMAL_EVENT_TEMP_SAMPLE); in tt_zone_tz_temp_set() 166 snprintf(f_name, TT_MAX_FILE_NAME_LENGTH, "tz%d", tt_zone->id); in tt_add_tz_work_fn() 229 if (tt_zone->tz) { in tt_zone_unregister_tz() 230 thermal_zone_device_unregister(tt_zone->tz); in tt_zone_unregister_tz() 231 tt_zone->tz = NULL; in tt_zone_unregister_tz() 365 static int tt_zone_get_temp(struct thermal_zone_device *tz, int *temp) in tt_zone_get_temp() argument [all …]
|
| /linux/tools/include/nolibc/sys/ |
| H A D | time.h | 19 * int gettimeofday(struct timeval *tv, struct timezone *tz); 23 int _sys_gettimeofday(struct timeval *tv, struct timezone *tz) in sys_gettimeofday() argument 25 (void) tz; /* Non-NULL tz is undefined behaviour */ in sys_gettimeofday() 40 int gettimeofday(struct timeval *tv, struct timezone *tz) in sys_gettimeofday() 42 return __sysret(_sys_gettimeofday(tv, tz)); 44 gettimeofday(struct timeval * tv,struct timezone * tz) gettimeofday() argument
|
| /linux/tools/lib/thermal/include/ |
| H A D | thermal.h | 99 LIBTHERMAL_API int for_each_thermal_zone(struct thermal_zone *tz, cb_tz_t cb, void *arg); 107 LIBTHERMAL_API struct thermal_zone *thermal_zone_find_by_name(struct thermal_zone *tz, 110 LIBTHERMAL_API struct thermal_zone *thermal_zone_find_by_id(struct thermal_zone *tz, int id); 137 struct thermal_zone **tz); 143 struct thermal_zone *tz); 146 struct thermal_zone *tz); 149 struct thermal_zone *tz); 152 struct thermal_zone *tz); 155 struct thermal_zone *tz, 160 struct thermal_zone *tz, [all …]
|
| /linux/fs/isofs/ |
| H A D | util.c | 21 int year, month, day, hour, minute, second, tz; in iso_date() local 35 tz = p[16]; in iso_date() 45 tz = flags & ISO_DATE_HIGH_SIERRA ? 0 : p[6]; in iso_date() 54 if (tz & 0x80) in iso_date() 55 tz |= (-1 << 8); in iso_date() 82 if (-52 <= tz && tz <= 52) in iso_date() 83 ts.tv_sec -= tz * 15 * 60; in iso_date()
|
| /linux/drivers/thermal/broadcom/ |
| H A D | sr-thermal.c | 33 static int sr_get_temp(struct thermal_zone_device *tz, int *temp) in sr_get_temp() argument 35 struct sr_tmon *tmon = thermal_zone_device_priv(tz); in sr_get_temp() 50 struct thermal_zone_device *tz; in sr_thermal_probe() local 87 tz = devm_thermal_of_zone_register(dev, i, tmon, in sr_thermal_probe() 89 if (IS_ERR(tz)) in sr_thermal_probe() 90 return PTR_ERR(tz); in sr_thermal_probe()
|
| /linux/arch/parisc/kernel/vdso64/ |
| H A D | vdso64_generic.c | 11 int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz); 16 struct timezone *tz) in __vdso_gettimeofday() argument 18 return syscall2(__NR_gettimeofday, (long)tv, (long)tz); in __vdso_gettimeofday()
|
| /linux/arch/arm64/kernel/vdso/ |
| H A D | vgettimeofday.c | 10 int __kernel_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz); 20 struct timezone *tz) in __kernel_gettimeofday() argument 22 return __cvdso_gettimeofday(tv, tz); in __kernel_gettimeofday()
|
| /linux/arch/parisc/kernel/vdso32/ |
| H A D | vdso32_generic.c | 13 int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz); 19 struct timezone *tz) in __vdso_gettimeofday() argument 21 return syscall2(__NR_gettimeofday, (long)tv, (long)tz); in __vdso_gettimeofday()
|
| /linux/tools/thermal/tmon/ |
| H A D | tui.c | 56 #define SENSOR_WIN_HIGHT 4 /* one row for tz name, one for trip points */ 135 /* two lines to show borders, one line per tz show trip point position in setup_windows() 246 "bind tz%d cdev%d tp%lx %d cdev%lx\n", in show_cooling_device() 549 static void draw_tp_line(int tz, int y) in draw_tp_line() argument 554 for (j = 0; j < ptdata.tzi[tz].nr_trip_pts; j++) { in draw_tp_line() 555 x = ptdata.tzi[tz].tp[j].temp / 1000; in draw_tp_line() 557 "%c%d", trip_type_to_char(ptdata.tzi[tz].tp[j].type), in draw_tp_line() 559 syslog(LOG_INFO, "%s:tz %d tp %d temp = %lu\n", __func__, in draw_tp_line() 560 tz, j, ptdata.tzi[tz].tp[j].temp); in draw_tp_line() 587 /* y at tz temp data line */ in show_data_w() [all …]
|