Home
last modified time | relevance | path

Searched refs:tz (Results 1 – 57 of 57) sorted by relevance

/linux-4.4.14/drivers/acpi/
Dthermal.c197 static int acpi_thermal_get_temperature(struct acpi_thermal *tz) in acpi_thermal_get_temperature() argument
202 if (!tz) in acpi_thermal_get_temperature()
205 tz->last_temperature = tz->temperature; in acpi_thermal_get_temperature()
207 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp); in acpi_thermal_get_temperature()
211 tz->temperature = tmp; in acpi_thermal_get_temperature()
213 tz->temperature)); in acpi_thermal_get_temperature()
218 static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz) in acpi_thermal_get_polling_frequency() argument
223 if (!tz) in acpi_thermal_get_polling_frequency()
226 status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp); in acpi_thermal_get_polling_frequency()
230 tz->polling_frequency = tmp; in acpi_thermal_get_polling_frequency()
[all …]
/linux-4.4.14/drivers/thermal/
Dthermal_core.c89 static void bind_previous_governor(struct thermal_zone_device *tz, in bind_previous_governor() argument
92 if (tz->governor && tz->governor->bind_to_tz) { in bind_previous_governor()
93 if (tz->governor->bind_to_tz(tz)) { in bind_previous_governor()
94 dev_err(&tz->device, in bind_previous_governor()
96 failed_gov_name, tz->governor->name, tz->type); in bind_previous_governor()
97 tz->governor = NULL; in bind_previous_governor()
111 static int thermal_set_governor(struct thermal_zone_device *tz, in thermal_set_governor() argument
116 if (tz->governor && tz->governor->unbind_from_tz) in thermal_set_governor()
117 tz->governor->unbind_from_tz(tz); in thermal_set_governor()
120 ret = new_gov->bind_to_tz(tz); in thermal_set_governor()
[all …]
Dpower_allocator.c93 static u32 estimate_sustainable_power(struct thermal_zone_device *tz) in estimate_sustainable_power() argument
97 struct power_allocator_params *params = tz->governor_data; in estimate_sustainable_power()
99 list_for_each_entry(instance, &tz->thermal_instances, tz_node) { in estimate_sustainable_power()
106 if (power_actor_get_min_power(cdev, tz, &min_power)) in estimate_sustainable_power()
134 static void estimate_pid_constants(struct thermal_zone_device *tz, in estimate_pid_constants() argument
142 ret = tz->ops->get_trip_temp(tz, trip_switch_on, &switch_on_temp); in estimate_pid_constants()
158 if (!tz->tzp->k_po || force) in estimate_pid_constants()
159 tz->tzp->k_po = int_to_frac(sustainable_power) / in estimate_pid_constants()
162 if (!tz->tzp->k_pu || force) in estimate_pid_constants()
163 tz->tzp->k_pu = int_to_frac(2 * sustainable_power) / in estimate_pid_constants()
[all …]
Dof-thermal.c93 static int of_thermal_get_temp(struct thermal_zone_device *tz, in of_thermal_get_temp() argument
96 struct __thermal_zone *data = tz->devdata; in of_thermal_get_temp()
114 int of_thermal_get_ntrips(struct thermal_zone_device *tz) in of_thermal_get_ntrips() argument
116 struct __thermal_zone *data = tz->devdata; in of_thermal_get_ntrips()
135 bool of_thermal_is_trip_valid(struct thermal_zone_device *tz, int trip) in of_thermal_is_trip_valid() argument
137 struct __thermal_zone *data = tz->devdata; in of_thermal_is_trip_valid()
157 of_thermal_get_trip_points(struct thermal_zone_device *tz) in of_thermal_get_trip_points() argument
159 struct __thermal_zone *data = tz->devdata; in of_thermal_get_trip_points()
179 static int of_thermal_set_emul_temp(struct thermal_zone_device *tz, in of_thermal_set_emul_temp() argument
182 struct __thermal_zone *data = tz->devdata; in of_thermal_set_emul_temp()
[all …]
Dgov_bang_bang.c26 static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip) in thermal_zone_trip_update() argument
31 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update()
32 tz->ops->get_trip_hyst(tz, trip, &trip_hyst); in thermal_zone_trip_update()
34 dev_dbg(&tz->device, "Trip%d[temp=%d]:temp=%d:hyst=%d\n", in thermal_zone_trip_update()
35 trip, trip_temp, tz->temperature, in thermal_zone_trip_update()
38 mutex_lock(&tz->lock); in thermal_zone_trip_update()
40 list_for_each_entry(instance, &tz->thermal_instances, tz_node) { in thermal_zone_trip_update()
59 if (instance->target == 0 && tz->temperature >= trip_temp) in thermal_zone_trip_update()
62 tz->temperature < trip_temp - trip_hyst) in thermal_zone_trip_update()
71 mutex_unlock(&tz->lock); in thermal_zone_trip_update()
[all …]
Dstep_wise.c116 static void update_passive_instance(struct thermal_zone_device *tz, in update_passive_instance() argument
124 tz->passive += value; in update_passive_instance()
127 static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip) in thermal_zone_trip_update() argument
137 trip_temp = tz->forced_passive; in thermal_zone_trip_update()
140 tz->ops->get_trip_temp(tz, trip, &trip_temp); in thermal_zone_trip_update()
141 tz->ops->get_trip_type(tz, trip, &trip_type); in thermal_zone_trip_update()
144 trend = get_tz_trend(tz, trip); in thermal_zone_trip_update()
146 if (tz->temperature >= trip_temp) { in thermal_zone_trip_update()
148 trace_thermal_zone_trip(tz, trip, trip_type); in thermal_zone_trip_update()
151 dev_dbg(&tz->device, "Trip%d[type=%d,temp=%d]:trend=%d,throttle=%d\n", in thermal_zone_trip_update()
[all …]
Dfair_share.c34 static int get_trip_level(struct thermal_zone_device *tz) in get_trip_level() argument
40 if (tz->trips == 0 || !tz->ops->get_trip_temp) in get_trip_level()
43 for (count = 0; count < tz->trips; count++) { in get_trip_level()
44 tz->ops->get_trip_temp(tz, count, &trip_temp); in get_trip_level()
45 if (tz->temperature < trip_temp) in get_trip_level()
54 tz->ops->get_trip_type(tz, count - 1, &trip_type); in get_trip_level()
55 trace_thermal_zone_trip(tz, count - 1, trip_type); in get_trip_level()
61 static long get_target_state(struct thermal_zone_device *tz, in get_target_state() argument
68 return (long)(percentage * level * max_state) / (100 * tz->trips); in get_target_state()
89 static int fair_share_throttle(struct thermal_zone_device *tz, int trip) in fair_share_throttle() argument
[all …]
Dthermal_hwmon.c52 struct thermal_zone_device *tz; member
79 struct thermal_zone_device *tz = temp->tz; in temp_input_show() local
81 ret = thermal_zone_get_temp(tz, &temperature); in temp_input_show()
97 struct thermal_zone_device *tz = temp->tz; in temp_crit_show() local
101 ret = tz->ops->get_trip_temp(tz, 0, &temperature); in temp_crit_show()
110 thermal_hwmon_lookup_by_type(const struct thermal_zone_device *tz) in thermal_hwmon_lookup_by_type() argument
116 if (!strcmp(hwmon->type, tz->type)) { in thermal_hwmon_lookup_by_type()
128 const struct thermal_zone_device *tz) in thermal_hwmon_lookup_temp() argument
134 if (temp->tz == tz) { in thermal_hwmon_lookup_temp()
143 static bool thermal_zone_crit_temp_valid(struct thermal_zone_device *tz) in thermal_zone_crit_temp_valid() argument
[all …]
Dimx_thermal.c91 struct thermal_zone_device *tz; member
133 static int imx_get_temp(struct thermal_zone_device *tz, int *temp) in imx_get_temp() argument
135 struct imx_thermal_data *data = tz->devdata; in imx_get_temp()
172 dev_dbg(&tz->device, "temp measurement never finished\n"); in imx_get_temp()
189 dev_dbg(&tz->device, "thermal alarm off: T < %d\n", in imx_get_temp()
195 dev_dbg(&tz->device, "millicelsius: %d\n", *temp); in imx_get_temp()
208 static int imx_get_mode(struct thermal_zone_device *tz, in imx_get_mode() argument
211 struct imx_thermal_data *data = tz->devdata; in imx_get_mode()
218 static int imx_set_mode(struct thermal_zone_device *tz, in imx_set_mode() argument
221 struct imx_thermal_data *data = tz->devdata; in imx_set_mode()
[all …]
Dthermal_hwmon.h34 int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz);
35 void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz);
38 thermal_add_hwmon_sysfs(struct thermal_zone_device *tz) in thermal_add_hwmon_sysfs() argument
44 thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz) in thermal_remove_hwmon_sysfs() argument
Duser_space.c35 static int notify_user_space(struct thermal_zone_device *tz, int trip) in notify_user_space() argument
37 mutex_lock(&tz->lock); in notify_user_space()
38 kobject_uevent(&tz->device.kobj, KOBJ_CHANGE); in notify_user_space()
39 mutex_unlock(&tz->lock); in notify_user_space()
Dthermal_core.h41 struct thermal_zone_device *tz; member
111 static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz) in of_thermal_get_ntrips() argument
115 static inline bool of_thermal_is_trip_valid(struct thermal_zone_device *tz, in of_thermal_is_trip_valid() argument
121 of_thermal_get_trip_points(struct thermal_zone_device *tz) in of_thermal_get_trip_points() argument
Dcpu_cooling.c422 struct thermal_zone_device *tz, unsigned long freq, in get_static_power() argument
451 return cpufreq_device->plat_get_static_power(cpumask, tz->passive_delay, in get_static_power()
571 struct thermal_zone_device *tz, in cpufreq_get_requested_power() argument
617 ret = get_static_power(cpufreq_device, tz, freq, &static_power); in cpufreq_get_requested_power()
651 struct thermal_zone_device *tz, in cpufreq_state2power() argument
674 ret = get_static_power(cpufreq_device, tz, freq, &static_power); in cpufreq_state2power()
703 struct thermal_zone_device *tz, u32 power, in cpufreq_power2state() argument
719 ret = get_static_power(cpufreq_device, tz, cur_freq, &static_power); in cpufreq_power2state()
Dtegra_soctherm.c345 struct thermal_zone_device *tz; in tegra_soctherm_probe() local
422 tz = thermal_zone_of_sensor_register(&pdev->dev, i, zone, in tegra_soctherm_probe()
424 if (IS_ERR(tz)) { in tegra_soctherm_probe()
425 err = PTR_ERR(tz); in tegra_soctherm_probe()
431 tegra->thermctl_tzs[i] = tz; in tegra_soctherm_probe()
Ddevfreq_cooling.c275 struct thermal_zone_device *tz, in devfreq_cooling_get_requested_power() argument
307 struct thermal_zone_device *tz, in devfreq_cooling_state2power() argument
326 struct thermal_zone_device *tz, in devfreq_cooling_power2state() argument
/linux-4.4.14/fs/isofs/
Dutil.c20 int year, month, day, hour, minute, second, tz; in iso_date() local
29 if (flag == 0) tz = p[6]; /* High sierra has no time zone */ in iso_date()
30 else tz = 0; in iso_date()
38 if (tz & 0x80) in iso_date()
39 tz |= (-1 << 8); in iso_date()
66 if (-52 <= tz && tz <= 52) in iso_date()
67 crtime -= tz * 15 * 60; in iso_date()
/linux-4.4.14/include/linux/
Dthermal.h229 int (*bind_to_tz)(struct thermal_zone_device *tz);
230 void (*unbind_from_tz)(struct thermal_zone_device *tz);
231 int (*throttle)(struct thermal_zone_device *tz, int trip);
266 int (*match) (struct thermal_zone_device *tz,
366 struct thermal_zone_device *tz);
377 struct thermal_zone_device *tz) in thermal_zone_of_sensor_unregister() argument
391 struct thermal_zone_device *tz, u32 *max_power);
393 struct thermal_zone_device *tz, u32 *min_power);
416 int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp);
427 struct thermal_zone_device *tz, u32 *max_power) in power_actor_get_max_power() argument
[all …]
Dtimekeeping.h15 const struct timezone *tz);
Dsecurity.h72 extern int cap_settime(const struct timespec *ts, const struct timezone *tz);
209 int security_settime(const struct timespec *ts, const struct timezone *tz);
461 const struct timezone *tz) in security_settime() argument
463 return cap_settime(ts, tz); in security_settime()
Dcompat.h421 struct timezone __user *tz);
423 struct timezone __user *tz);
Dsyscalls.h213 struct timezone __user *tz);
215 struct timezone __user *tz);
Dlsm_hooks.h1327 int (*settime)(const struct timespec *ts, const struct timezone *tz);
/linux-4.4.14/drivers/thermal/samsung/
Dexynos_tmu.c217 struct thermal_zone_device *tz = p->tzd; in exynos_report_trigger() local
221 if (!tz) { in exynos_report_trigger()
226 thermal_zone_device_update(tz); in exynos_report_trigger()
228 mutex_lock(&tz->lock); in exynos_report_trigger()
230 for (i = 0; i < of_thermal_get_ntrips(tz); i++) { in exynos_report_trigger()
231 tz->ops->get_trip_temp(tz, i, &temp); in exynos_report_trigger()
232 if (tz->last_temperature < temp) in exynos_report_trigger()
237 kobject_uevent_env(&tz->device.kobj, KOBJ_CHANGE, envp); in exynos_report_trigger()
238 mutex_unlock(&tz->lock); in exynos_report_trigger()
316 struct thermal_zone_device *tz = data->tzd; in get_th_reg() local
[all …]
/linux-4.4.14/include/trace/events/
Dthermal.h13 TP_PROTO(struct thermal_zone_device *tz),
15 TP_ARGS(tz),
18 __string(thermal_zone, tz->type)
25 __assign_str(thermal_zone, tz->type);
26 __entry->id = tz->id;
27 __entry->temp_prev = tz->last_temperature;
28 __entry->temp = tz->temperature;
57 TP_PROTO(struct thermal_zone_device *tz, int trip,
60 TP_ARGS(tz, trip, trip_type),
63 __string(thermal_zone, tz->type)
[all …]
Dthermal_power_allocator.h10 TP_PROTO(struct thermal_zone_device *tz, u32 *req_power,
15 TP_ARGS(tz, req_power, total_req_power, granted_power,
31 __entry->tz_id = tz->id;
58 TP_PROTO(struct thermal_zone_device *tz, s32 err, s32 err_integral,
60 TP_ARGS(tz, err, err_integral, p, i, d, output),
71 __entry->tz_id = tz->id;
/linux-4.4.14/arch/x86/entry/vdso/
Dvclock_gettime.c26 extern int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz);
54 notrace static long vdso_fallback_gtod(struct timeval *tv, struct timezone *tz) in vdso_fallback_gtod() argument
59 "0" (__NR_gettimeofday), "D" (tv), "S" (tz) : "memory"); in vdso_fallback_gtod()
150 notrace static long vdso_fallback_gtod(struct timeval *tv, struct timezone *tz) in vdso_fallback_gtod() argument
160 : "0" (__NR_gettimeofday), "g" (tv), "c" (tz) in vdso_fallback_gtod()
308 notrace int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz) in __vdso_gettimeofday() argument
312 return vdso_fallback_gtod(tv, tz); in __vdso_gettimeofday()
315 if (unlikely(tz != NULL)) { in __vdso_gettimeofday()
316 tz->tz_minuteswest = gtod->tz_minuteswest; in __vdso_gettimeofday()
317 tz->tz_dsttime = gtod->tz_dsttime; in __vdso_gettimeofday()
/linux-4.4.14/kernel/time/
Dtime.c103 struct timezone __user *, tz) in SYSCALL_DEFINE2() argument
111 if (unlikely(tz != NULL)) { in SYSCALL_DEFINE2()
112 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz))) in SYSCALL_DEFINE2()
163 int do_sys_settimeofday(const struct timespec *tv, const struct timezone *tz) in do_sys_settimeofday() argument
171 error = security_settime(tv, tz); in do_sys_settimeofday()
175 if (tz) { in do_sys_settimeofday()
177 if (tz->tz_minuteswest > 15*60 || tz->tz_minuteswest < -15*60) in do_sys_settimeofday()
180 sys_tz = *tz; in do_sys_settimeofday()
194 struct timezone __user *, tz) in SYSCALL_DEFINE2() argument
210 if (tz) { in SYSCALL_DEFINE2()
[all …]
/linux-4.4.14/arch/arm/vdso/
Dvgettimeofday.c232 register struct timezone *tz asm("r1") = _tz; in gettimeofday_fallback()
240 : "r" (tv), "r" (tz), "r" (nr) in gettimeofday_fallback()
246 notrace int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz) in __vdso_gettimeofday() argument
256 return gettimeofday_fallback(tv, tz); in __vdso_gettimeofday()
262 if (tz) { in __vdso_gettimeofday()
263 tz->tz_minuteswest = vdata->tz_minuteswest; in __vdso_gettimeofday()
264 tz->tz_dsttime = vdata->tz_dsttime; in __vdso_gettimeofday()
/linux-4.4.14/arch/tile/kernel/vdso/
Dvgettimeofday.c131 struct timezone *tz) in __vdso_gettimeofday() argument
138 if (unlikely(tz != NULL)) { in __vdso_gettimeofday()
141 tz->tz_minuteswest = vdso->tz_minuteswest; in __vdso_gettimeofday()
142 tz->tz_dsttime = vdso->tz_dsttime; in __vdso_gettimeofday()
155 int gettimeofday(struct timeval *tv, struct timezone *tz)
/linux-4.4.14/arch/mips/vdso/
Dgettimeofday.c182 int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz) in __vdso_gettimeofday() argument
197 if (tz) { in __vdso_gettimeofday()
198 tz->tz_minuteswest = data->tz_minuteswest; in __vdso_gettimeofday()
199 tz->tz_dsttime = data->tz_dsttime; in __vdso_gettimeofday()
/linux-4.4.14/drivers/hwmon/
Dtmp102.c56 struct thermal_zone_device *tz; member
235 tmp102->tz = thermal_zone_of_sensor_register(hwmon_dev, 0, hwmon_dev, in tmp102_probe()
237 if (IS_ERR(tmp102->tz)) in tmp102_probe()
238 tmp102->tz = NULL; in tmp102_probe()
254 thermal_zone_of_sensor_unregister(tmp102->hwmon_dev, tmp102->tz); in tmp102_remove()
Dlm75.c80 struct thermal_zone_device *tz; member
309 data->tz = thermal_zone_of_sensor_register(data->hwmon_dev, 0, in lm75_probe()
312 if (IS_ERR(data->tz)) in lm75_probe()
313 data->tz = NULL; in lm75_probe()
325 thermal_zone_of_sensor_unregister(data->hwmon_dev, data->tz); in lm75_remove()
Dntc_thermistor.c224 struct thermal_zone_device *tz; member
636 data->tz = thermal_zone_of_sensor_register(data->dev, 0, data->dev, in ntc_thermistor_probe()
638 if (IS_ERR(data->tz)) { in ntc_thermistor_probe()
640 data->tz = NULL; in ntc_thermistor_probe()
659 thermal_zone_of_sensor_unregister(data->dev, data->tz); in ntc_thermistor_remove()
/linux-4.4.14/arch/x86/um/vdso/
Dum_vdso.c31 int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz) in __vdso_gettimeofday() argument
36 "0" (__NR_gettimeofday), "D" (tv), "S" (tz) : "memory"); in __vdso_gettimeofday()
/linux-4.4.14/drivers/input/touchscreen/
Dsun4i-ts.c118 struct thermal_zone_device *tz; member
369 ts->tz = thermal_zone_of_sensor_register(ts->dev, 0, ts, in sun4i_ts_probe()
371 if (IS_ERR(ts->tz)) in sun4i_ts_probe()
372 ts->tz = NULL; in sun4i_ts_probe()
380 thermal_zone_of_sensor_unregister(ts->dev, ts->tz); in sun4i_ts_probe()
397 thermal_zone_of_sensor_unregister(ts->dev, ts->tz); in sun4i_ts_remove()
/linux-4.4.14/Documentation/timers/
Dhpet_example.c137 struct timezone tz; in hpet_poll() local
182 gettimeofday(&stv, &tz); in hpet_poll()
188 gettimeofday(&etv, &tz); in hpet_poll()
/linux-4.4.14/tools/thermal/tmon/
Dtui.c558 static void draw_tp_line(int tz, int y) in draw_tp_line() argument
563 for (j = 0; j < ptdata.tzi[tz].nr_trip_pts; j++) { in draw_tp_line()
564 x = ptdata.tzi[tz].tp[j].temp / 1000; in draw_tp_line()
566 "%c%d", trip_type_to_char(ptdata.tzi[tz].tp[j].type), in draw_tp_line()
569 tz, j, ptdata.tzi[tz].tp[j].temp); in draw_tp_line()
/linux-4.4.14/Documentation/vDSO/
Dvdso_test.c33 typedef long (*gtod_t)(struct timeval *tv, struct timezone *tz); in main()
Dvdso_standalone_test_x86.c90 typedef long (*gtod_t)(struct timeval *tv, struct timezone *tz); in c_main()
/linux-4.4.14/arch/alpha/kernel/
Dosf_sys.c998 struct timezone __user *, tz) in SYSCALL_DEFINE2() argument
1006 if (tz) { in SYSCALL_DEFINE2()
1007 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz))) in SYSCALL_DEFINE2()
1014 struct timezone __user *, tz) in SYSCALL_DEFINE2() argument
1024 if (tz) { in SYSCALL_DEFINE2()
1025 if (copy_from_user(&ktz, tz, sizeof(*tz))) in SYSCALL_DEFINE2()
1029 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL); in SYSCALL_DEFINE2()
/linux-4.4.14/kernel/
Dcompat.c92 struct timezone __user *, tz) in COMPAT_SYSCALL_DEFINE2() argument
100 if (tz) { in COMPAT_SYSCALL_DEFINE2()
101 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz))) in COMPAT_SYSCALL_DEFINE2()
109 struct timezone __user *, tz) in COMPAT_SYSCALL_DEFINE2() argument
121 if (tz) { in COMPAT_SYSCALL_DEFINE2()
122 if (copy_from_user(&new_tz, tz, sizeof(*tz))) in COMPAT_SYSCALL_DEFINE2()
126 return do_sys_settimeofday(tv ? &new_ts : NULL, tz ? &new_tz : NULL); in COMPAT_SYSCALL_DEFINE2()
/linux-4.4.14/Documentation/thermal/
Dpower_allocator.txt182 struct thermal_zone_device *tz, u32 *power);
184 @tz: thermal zone in which we are currently operating
194 thermal_zone_device *tz, unsigned long state, u32 *power);
196 @tz: thermal zone in which we are currently operating
Dsysfs-api.txt69 1.1.2 void thermal_zone_device_unregister(struct thermal_zone_device *tz)
96 1.3.1 int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz,
103 tz: the thermal zone device
116 1.3.2 int thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz,
122 tz: the thermal zone device
152 .match: This call back returns success(0) if the 'tz and cdev' need to
/linux-4.4.14/drivers/staging/comedi/drivers/
Djr3_pci.h248 tz, enumerator
/linux-4.4.14/Documentation/isdn/
DCREDITS14 Volker Götz (volker@oops.franken.de)
DREADME405 contributed by Michael Knigge (imon), Volker Götz (imontty) and
/linux-4.4.14/arch/arm/boot/dts/
Dmt8127.dtsi26 enable-method = "mediatek,mt81xx-tz-smp";
Dmt8135.dtsi49 enable-method = "mediatek,mt81xx-tz-smp";
Dimx50.dtsi44 tzic: tz-interrupt-controller@0fffc000 {
Dimx51.dtsi41 tzic: tz-interrupt-controller@e0000000 {
Dimx53.dtsi73 tzic: tz-interrupt-controller@0fffc000 {
/linux-4.4.14/include/xen/interface/
Dplatform.h144 int16_t tz; member
/linux-4.4.14/security/
Dcommoncap.c114 int cap_settime(const struct timespec *ts, const struct timezone *tz) in cap_settime() argument
Dsecurity.c211 int security_settime(const struct timespec *ts, const struct timezone *tz) in security_settime() argument
213 return call_int_hook(settime, 0, ts, tz); in security_settime()
/linux-4.4.14/Documentation/DocBook/media/
Ddvbstb.png.b64320 Opw/f34ycuTIDvWamj9/fjJu3LiMfgw7duxICgsLk6qqqhZd//08tz/Ia+ek+vr6ZNGiRUlhYeEp
/linux-4.4.14/Documentation/devicetree/bindings/arm/
Dcpus.txt199 "mediatek,mt81xx-tz-smp"
/linux-4.4.14/Documentation/filesystems/
Dvfat.txt107 tz=UTC -- Interpret timestamps as UTC rather than local time.