mirror of
https://github.com/torvalds/linux.git
synced 2025-04-09 14:45:27 +00:00
Merge branch 'thermal-intel'
Merge updates of Intel thermal drivers for 6.14: - Add support for Panther Lake processors in multiple places (Zhang Rui, Srinivas Pandruvada). - Remove explicit user_space governor selection from Intel thermal drivers (Srinivas Pandruvada). * thermal-intel: thermal: intel: Fix compile issue when CONFIG_NET is not defined thermal: intel: int340x: Panther Lake power floor and workload hint support thermal: intel: int340x: Panther Lake DLVR support thermal: intel: Remove explicit user_space governor selection ACPI: DPTF: Support Panther Lake thermal: intel: int340x: processor: Enable MMIO RAPL for Panther Lake powercap: intel_rapl: Add support for Panther Lake platform
This commit is contained in:
commit
2dc7486955
@ -152,6 +152,7 @@ static const struct acpi_device_id pch_fivr_device_ids[] = {
|
||||
{"INTC1064", 0},
|
||||
{"INTC106B", 0},
|
||||
{"INTC10A3", 0},
|
||||
{"INTC10D7", 0},
|
||||
{"", 0},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(acpi, pch_fivr_device_ids);
|
||||
|
@ -236,6 +236,8 @@ static const struct acpi_device_id int3407_device_ids[] = {
|
||||
{"INTC106D", 0},
|
||||
{"INTC10A4", 0},
|
||||
{"INTC10A5", 0},
|
||||
{"INTC10D8", 0},
|
||||
{"INTC10D9", 0},
|
||||
{"", 0},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(acpi, int3407_device_ids);
|
||||
|
@ -55,6 +55,12 @@ static const struct acpi_device_id int340x_thermal_device_ids[] = {
|
||||
{"INTC10A3"},
|
||||
{"INTC10A4"},
|
||||
{"INTC10A5"},
|
||||
{"INTC10D4"},
|
||||
{"INTC10D5"},
|
||||
{"INTC10D6"},
|
||||
{"INTC10D7"},
|
||||
{"INTC10D8"},
|
||||
{"INTC10D9"},
|
||||
{""},
|
||||
};
|
||||
|
||||
|
@ -19,6 +19,7 @@
|
||||
{"INTC1063", }, /* Fan for Meteor Lake generation */ \
|
||||
{"INTC106A", }, /* Fan for Lunar Lake generation */ \
|
||||
{"INTC10A2", }, /* Fan for Raptor Lake generation */ \
|
||||
{"INTC10D6", }, /* Fan for Panther Lake generation */ \
|
||||
{"PNP0C0B", } /* Generic ACPI fan */
|
||||
|
||||
#define ACPI_FPS_NAME_LEN 20
|
||||
|
@ -1265,6 +1265,7 @@ static const struct x86_cpu_id rapl_ids[] __initconst = {
|
||||
X86_MATCH_VFM(INTEL_SAPPHIRERAPIDS_X, &rapl_defaults_spr_server),
|
||||
X86_MATCH_VFM(INTEL_EMERALDRAPIDS_X, &rapl_defaults_spr_server),
|
||||
X86_MATCH_VFM(INTEL_LUNARLAKE_M, &rapl_defaults_core),
|
||||
X86_MATCH_VFM(INTEL_PANTHERLAKE_L, &rapl_defaults_core),
|
||||
X86_MATCH_VFM(INTEL_ARROWLAKE_H, &rapl_defaults_core),
|
||||
X86_MATCH_VFM(INTEL_ARROWLAKE, &rapl_defaults_core),
|
||||
X86_MATCH_VFM(INTEL_ARROWLAKE_U, &rapl_defaults_core),
|
||||
|
@ -21,8 +21,8 @@ config INTEL_TCC
|
||||
|
||||
config X86_PKG_TEMP_THERMAL
|
||||
tristate "X86 package temperature thermal driver"
|
||||
depends on X86_THERMAL_VECTOR
|
||||
select THERMAL_GOV_USER_SPACE
|
||||
depends on X86_THERMAL_VECTOR && NET
|
||||
select THERMAL_NETLINK
|
||||
select INTEL_TCC
|
||||
default m
|
||||
help
|
||||
|
@ -5,8 +5,8 @@
|
||||
|
||||
config INT340X_THERMAL
|
||||
tristate "ACPI INT340X thermal drivers"
|
||||
depends on X86_64 && ACPI && PCI
|
||||
select THERMAL_GOV_USER_SPACE
|
||||
depends on X86_64 && ACPI && PCI && NET
|
||||
select THERMAL_NETLINK
|
||||
select ACPI_THERMAL_REL
|
||||
select ACPI_FAN
|
||||
select ACPI_THERMAL_LIB
|
||||
|
@ -521,7 +521,6 @@ static struct thermal_zone_device_ops int3400_thermal_ops = {
|
||||
};
|
||||
|
||||
static struct thermal_zone_params int3400_thermal_params = {
|
||||
.governor_name = "user_space",
|
||||
.no_hwmon = true,
|
||||
};
|
||||
|
||||
@ -690,6 +689,7 @@ static const struct acpi_device_id int3400_thermal_match[] = {
|
||||
{"INTC1042", 0},
|
||||
{"INTC1068", 0},
|
||||
{"INTC10A0", 0},
|
||||
{"INTC10D4", 0},
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -275,6 +275,7 @@ static const struct acpi_device_id int3403_device_ids[] = {
|
||||
{"INTC1062", 0},
|
||||
{"INTC1069", 0},
|
||||
{"INTC10A1", 0},
|
||||
{"INTC10D5", 0},
|
||||
{"", 0},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(acpi, int3403_device_ids);
|
||||
|
@ -105,7 +105,6 @@ static int int340x_thermal_read_trips(struct acpi_device *zone_adev,
|
||||
}
|
||||
|
||||
static struct thermal_zone_params int340x_thermal_params = {
|
||||
.governor_name = "user_space",
|
||||
.no_hwmon = true,
|
||||
};
|
||||
|
||||
|
@ -30,6 +30,7 @@
|
||||
#define PCI_DEVICE_ID_INTEL_RPL_THERMAL 0xA71D
|
||||
#define PCI_DEVICE_ID_INTEL_SKL_THERMAL 0x1903
|
||||
#define PCI_DEVICE_ID_INTEL_TGL_THERMAL 0x9A03
|
||||
#define PCI_DEVICE_ID_INTEL_PTL_THERMAL 0xB01D
|
||||
|
||||
struct power_config {
|
||||
u32 index;
|
||||
|
@ -272,7 +272,6 @@ static const struct thermal_zone_device_ops tzone_ops = {
|
||||
};
|
||||
|
||||
static struct thermal_zone_params tzone_params = {
|
||||
.governor_name = "user_space",
|
||||
.no_hwmon = true,
|
||||
};
|
||||
|
||||
@ -495,6 +494,9 @@ static const struct pci_device_id proc_thermal_pci_ids[] = {
|
||||
PROC_THERMAL_FEATURE_DVFS | PROC_THERMAL_FEATURE_DLVR | PROC_THERMAL_FEATURE_WT_HINT) },
|
||||
{ PCI_DEVICE_DATA(INTEL, RPL_THERMAL, PROC_THERMAL_FEATURE_RAPL |
|
||||
PROC_THERMAL_FEATURE_FIVR | PROC_THERMAL_FEATURE_DVFS | PROC_THERMAL_FEATURE_WT_REQ) },
|
||||
{ PCI_DEVICE_DATA(INTEL, PTL_THERMAL, PROC_THERMAL_FEATURE_RAPL |
|
||||
PROC_THERMAL_FEATURE_DLVR | PROC_THERMAL_FEATURE_MSI_SUPPORT |
|
||||
PROC_THERMAL_FEATURE_WT_HINT | PROC_THERMAL_FEATURE_POWER_FLOOR) },
|
||||
{ },
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user