Commit b429b6ff authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

thermal: intel: intel_soc_dts_iosf: Always use 2 trips

Both the existing callers of intel_soc_dts_iosf_init() pass 2 as the trip
count argument, so it can be replaced with SOC_MAX_DTS_TRIPS everywhere in
the code and the trip_count argument of that function can be dropped.

This also allows the trip_count field to be dropped from struct
intel_soc_dts_sensor_entry, as it is always equal to 2, and some
related code can be simplified.

Make changes accordingly.

No intentional functional impact.
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: default avatarSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
parent e49c8ed8
...@@ -59,7 +59,7 @@ static int proc_thermal_pci_probe(struct pci_dev *pdev, ...@@ -59,7 +59,7 @@ static int proc_thermal_pci_probe(struct pci_dev *pdev,
* ACPI/MSR. So we don't want to fail for auxiliary DTSs. * ACPI/MSR. So we don't want to fail for auxiliary DTSs.
*/ */
proc_priv->soc_dts = intel_soc_dts_iosf_init( proc_priv->soc_dts = intel_soc_dts_iosf_init(
INTEL_SOC_DTS_INTERRUPT_MSI, 2, 0); INTEL_SOC_DTS_INTERRUPT_MSI, 0);
if (!IS_ERR(proc_priv->soc_dts) && pdev->irq) { if (!IS_ERR(proc_priv->soc_dts) && pdev->irq) {
ret = pci_enable_msi(pdev); ret = pci_enable_msi(pdev);
......
...@@ -37,9 +37,6 @@ ...@@ -37,9 +37,6 @@
/* DTS encoding for TJ MAX temperature */ /* DTS encoding for TJ MAX temperature */
#define SOC_DTS_TJMAX_ENCODING 0x7F #define SOC_DTS_TJMAX_ENCODING 0x7F
/* Only 2 out of 4 is allowed for OSPM */
#define SOC_MAX_DTS_TRIPS 2
/* Mask for two trips in status bits */ /* Mask for two trips in status bits */
#define SOC_DTS_TRIP_MASK 0x03 #define SOC_DTS_TRIP_MASK 0x03
...@@ -253,12 +250,10 @@ static void remove_dts_thermal_zone(struct intel_soc_dts_sensor_entry *dts) ...@@ -253,12 +250,10 @@ static void remove_dts_thermal_zone(struct intel_soc_dts_sensor_entry *dts)
} }
static int add_dts_thermal_zone(int id, struct intel_soc_dts_sensor_entry *dts, static int add_dts_thermal_zone(int id, struct intel_soc_dts_sensor_entry *dts,
bool notification_support, int trip_cnt, bool notification_support, int read_only_trip_cnt)
int read_only_trip_cnt)
{ {
char name[10]; char name[10];
unsigned long trip; unsigned long trip;
int trip_count = 0;
int trip_mask = 0; int trip_mask = 0;
int writable_trip_cnt = 0; int writable_trip_cnt = 0;
unsigned long ptps; unsigned long ptps;
...@@ -274,8 +269,7 @@ static int add_dts_thermal_zone(int id, struct intel_soc_dts_sensor_entry *dts, ...@@ -274,8 +269,7 @@ static int add_dts_thermal_zone(int id, struct intel_soc_dts_sensor_entry *dts,
dts->id = id; dts->id = id;
if (notification_support) { if (notification_support) {
trip_count = min(SOC_MAX_DTS_TRIPS, trip_cnt); writable_trip_cnt = SOC_MAX_DTS_TRIPS - read_only_trip_cnt;
writable_trip_cnt = trip_count - read_only_trip_cnt;
trip_mask = GENMASK(writable_trip_cnt - 1, 0); trip_mask = GENMASK(writable_trip_cnt - 1, 0);
} }
...@@ -290,10 +284,9 @@ static int add_dts_thermal_zone(int id, struct intel_soc_dts_sensor_entry *dts, ...@@ -290,10 +284,9 @@ static int add_dts_thermal_zone(int id, struct intel_soc_dts_sensor_entry *dts,
trip_mask &= ~BIT(i / 8); trip_mask &= ~BIT(i / 8);
} }
dts->trip_mask = trip_mask; dts->trip_mask = trip_mask;
dts->trip_count = trip_count;
snprintf(name, sizeof(name), "soc_dts%d", id); snprintf(name, sizeof(name), "soc_dts%d", id);
dts->tzone = thermal_zone_device_register(name, dts->tzone = thermal_zone_device_register(name,
trip_count, SOC_MAX_DTS_TRIPS,
trip_mask, trip_mask,
dts, &tzone_ops, dts, &tzone_ops,
NULL, 0, 0); NULL, 0, 0);
...@@ -324,11 +317,10 @@ int intel_soc_dts_iosf_add_read_only_critical_trip( ...@@ -324,11 +317,10 @@ int intel_soc_dts_iosf_add_read_only_critical_trip(
for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) { for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) {
struct intel_soc_dts_sensor_entry *entry = &sensors->soc_dts[i]; struct intel_soc_dts_sensor_entry *entry = &sensors->soc_dts[i];
int temp = sensors->tj_max - critical_offset; int temp = sensors->tj_max - critical_offset;
unsigned long count = entry->trip_count;
unsigned long mask = entry->trip_mask; unsigned long mask = entry->trip_mask;
j = find_first_zero_bit(&mask, count); j = find_first_zero_bit(&mask, SOC_MAX_DTS_TRIPS);
if (j < count) if (j < SOC_MAX_DTS_TRIPS)
return update_trip_temp(entry, j, temp, THERMAL_TRIP_CRITICAL); return update_trip_temp(entry, j, temp, THERMAL_TRIP_CRITICAL);
} }
...@@ -372,8 +364,7 @@ void intel_soc_dts_iosf_interrupt_handler(struct intel_soc_dts_sensors *sensors) ...@@ -372,8 +364,7 @@ void intel_soc_dts_iosf_interrupt_handler(struct intel_soc_dts_sensors *sensors)
EXPORT_SYMBOL_GPL(intel_soc_dts_iosf_interrupt_handler); EXPORT_SYMBOL_GPL(intel_soc_dts_iosf_interrupt_handler);
struct intel_soc_dts_sensors *intel_soc_dts_iosf_init( struct intel_soc_dts_sensors *intel_soc_dts_iosf_init(
enum intel_soc_dts_interrupt_type intr_type, int trip_count, enum intel_soc_dts_interrupt_type intr_type, int read_only_trip_count)
int read_only_trip_count)
{ {
struct intel_soc_dts_sensors *sensors; struct intel_soc_dts_sensors *sensors;
bool notification; bool notification;
...@@ -384,7 +375,7 @@ struct intel_soc_dts_sensors *intel_soc_dts_iosf_init( ...@@ -384,7 +375,7 @@ struct intel_soc_dts_sensors *intel_soc_dts_iosf_init(
if (!iosf_mbi_available()) if (!iosf_mbi_available())
return ERR_PTR(-ENODEV); return ERR_PTR(-ENODEV);
if (!trip_count || read_only_trip_count > trip_count) if (read_only_trip_count > SOC_MAX_DTS_TRIPS)
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
tj_max = intel_tcc_get_tjmax(-1); tj_max = intel_tcc_get_tjmax(-1);
...@@ -406,8 +397,7 @@ struct intel_soc_dts_sensors *intel_soc_dts_iosf_init( ...@@ -406,8 +397,7 @@ struct intel_soc_dts_sensors *intel_soc_dts_iosf_init(
for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) { for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) {
sensors->soc_dts[i].sensors = sensors; sensors->soc_dts[i].sensors = sensors;
ret = add_dts_thermal_zone(i, &sensors->soc_dts[i], ret = add_dts_thermal_zone(i, &sensors->soc_dts[i],
notification, trip_count, notification, read_only_trip_count);
read_only_trip_count);
if (ret) if (ret)
goto err_free; goto err_free;
} }
......
...@@ -12,6 +12,9 @@ ...@@ -12,6 +12,9 @@
/* DTS0 and DTS 1 */ /* DTS0 and DTS 1 */
#define SOC_MAX_DTS_SENSORS 2 #define SOC_MAX_DTS_SENSORS 2
/* Only 2 out of 4 is allowed for OSPM */
#define SOC_MAX_DTS_TRIPS 2
enum intel_soc_dts_interrupt_type { enum intel_soc_dts_interrupt_type {
INTEL_SOC_DTS_INTERRUPT_NONE, INTEL_SOC_DTS_INTERRUPT_NONE,
INTEL_SOC_DTS_INTERRUPT_APIC, INTEL_SOC_DTS_INTERRUPT_APIC,
...@@ -26,8 +29,7 @@ struct intel_soc_dts_sensor_entry { ...@@ -26,8 +29,7 @@ struct intel_soc_dts_sensor_entry {
int id; int id;
u32 store_status; u32 store_status;
u32 trip_mask; u32 trip_mask;
u32 trip_count; enum thermal_trip_type trip_types[SOC_MAX_DTS_TRIPS];
enum thermal_trip_type trip_types[2];
struct thermal_zone_device *tzone; struct thermal_zone_device *tzone;
struct intel_soc_dts_sensors *sensors; struct intel_soc_dts_sensors *sensors;
}; };
...@@ -41,8 +43,7 @@ struct intel_soc_dts_sensors { ...@@ -41,8 +43,7 @@ struct intel_soc_dts_sensors {
}; };
struct intel_soc_dts_sensors *intel_soc_dts_iosf_init( struct intel_soc_dts_sensors *intel_soc_dts_iosf_init(
enum intel_soc_dts_interrupt_type intr_type, int trip_count, enum intel_soc_dts_interrupt_type intr_type, int read_only_trip_count);
int read_only_trip_count);
void intel_soc_dts_iosf_exit(struct intel_soc_dts_sensors *sensors); void intel_soc_dts_iosf_exit(struct intel_soc_dts_sensors *sensors);
void intel_soc_dts_iosf_interrupt_handler( void intel_soc_dts_iosf_interrupt_handler(
struct intel_soc_dts_sensors *sensors); struct intel_soc_dts_sensors *sensors);
......
...@@ -51,7 +51,7 @@ static int __init intel_soc_thermal_init(void) ...@@ -51,7 +51,7 @@ static int __init intel_soc_thermal_init(void)
return -ENODEV; return -ENODEV;
/* Create a zone with 2 trips with marked as read only */ /* Create a zone with 2 trips with marked as read only */
soc_dts = intel_soc_dts_iosf_init(INTEL_SOC_DTS_INTERRUPT_APIC, 2, 1); soc_dts = intel_soc_dts_iosf_init(INTEL_SOC_DTS_INTERRUPT_APIC, 1);
if (IS_ERR(soc_dts)) { if (IS_ERR(soc_dts)) {
err = PTR_ERR(soc_dts); err = PTR_ERR(soc_dts);
return err; return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment