Skip to content

Commit 8debe3c

Browse files
Wer-Wolfgroeck
authored andcommitted
hwmon: (dell-smm) Add XPS 9315 to fan control whitelist
A user reported that on this machine, disabling BIOS fan control is necessary in order to change the fan speed. Signed-off-by: Armin Wolf <W_Armin@gmx.de> Acked-by: Pali Rohár <pali@kernel.org> Link: https://lore.kernel.org/r/20240309212025.13758-1-W_Armin@gmx.de Signed-off-by: Guenter Roeck <linux@roeck-us.net>
1 parent 7e1449c commit 8debe3c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

drivers/hwmon/dell-smm-hwmon.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,10 +1450,15 @@ struct i8k_fan_control_data {
14501450
};
14511451

14521452
enum i8k_fan_controls {
1453+
I8K_FAN_30A3_31A3,
14531454
I8K_FAN_34A3_35A3,
14541455
};
14551456

14561457
static const struct i8k_fan_control_data i8k_fan_control_data[] __initconst = {
1458+
[I8K_FAN_30A3_31A3] = {
1459+
.manual_fan = 0x30a3,
1460+
.auto_fan = 0x31a3,
1461+
},
14571462
[I8K_FAN_34A3_35A3] = {
14581463
.manual_fan = 0x34a3,
14591464
.auto_fan = 0x35a3,
@@ -1517,6 +1522,14 @@ static const struct dmi_system_id i8k_whitelist_fan_control[] __initconst = {
15171522
},
15181523
.driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
15191524
},
1525+
{
1526+
.ident = "Dell XPS 9315",
1527+
.matches = {
1528+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1529+
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "XPS 9315"),
1530+
},
1531+
.driver_data = (void *)&i8k_fan_control_data[I8K_FAN_30A3_31A3],
1532+
},
15201533
{ }
15211534
};
15221535

0 commit comments

Comments
 (0)