54 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * int340x_thermal_zone.h4 * Copyright (c) 2015, Intel Corporation.5 */6 7#ifndef __INT340X_THERMAL_ZONE_H__8#define __INT340X_THERMAL_ZONE_H__9 10#include <acpi/acpi_lpat.h>11 12#define INT340X_THERMAL_MAX_ACT_TRIP_COUNT 1013#define INT340X_THERMAL_MAX_TRIP_COUNT INT340X_THERMAL_MAX_ACT_TRIP_COUNT + 314 15struct active_trip {16 int temp;17 int id;18 bool valid;19};20 21struct int34x_thermal_zone {22 struct acpi_device *adev;23 int aux_trip_nr;24 struct thermal_zone_device *zone;25 void *priv_data;26 struct acpi_lpat_conversion_table *lpat_table;27};28 29struct int34x_thermal_zone *int340x_thermal_zone_add(struct acpi_device *,30 int (*get_temp) (struct thermal_zone_device *, int *));31void int340x_thermal_zone_remove(struct int34x_thermal_zone *);32void int340x_thermal_update_trips(struct int34x_thermal_zone *int34x_zone);33 34static inline void int340x_thermal_zone_set_priv_data(35 struct int34x_thermal_zone *tzone, void *priv_data)36{37 tzone->priv_data = priv_data;38}39 40static inline void *int340x_thermal_zone_get_priv_data(41 struct int34x_thermal_zone *tzone)42{43 return tzone->priv_data;44}45 46static inline void int340x_thermal_zone_device_update(47 struct int34x_thermal_zone *tzone,48 enum thermal_notify_event event)49{50 thermal_zone_device_update(tzone->zone, event);51}52 53#endif54