On Sun, Apr 5, 2020 at 11:00 PM la...@ap... <la...@ap...> wrote:
>
> This patch allows controlling multiple fans as if they were a single fan.
>
> This adds P52, P72, X1E, and X1E gen to dual fan quirks. Both fans are controlled together.
>
> Tested on an X1 Extreme Gen2.
>
> The patch is defensive, it adds only specific supported machines, and falls back to the old behavior if both fans cannot be controlled.
> It does attempt single fan control for all previously white-listed Thinkpads.
>
> Background:
> I tested the BIOS default behavior on my X1E gen2 and both fans are always changed together.
> So rather than adding controls for each fan, this controls both fans together as the BIOS would do.
>
> This was inspired by a discussion on dual fan support for the thinkfan tool (https://github.com/vmatare/thinkfan/issues/58).
> (Thanks to Github users voidworker, and civic9.)
>
> The BIOS ids for P52/P72 and X1E are taken from there. The X1E gen2 id is verified on my machine.
>
It doesn't apply :-(
Please, fix and resend.
> Signed-off-by: Lars Hofhansl <la...@ap...>
>
> ---
>
> diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c
> index da794dcfdd92..8d46b4c2bde8 100644
> --- a/drivers/platform/x86/thinkpad_acpi.c
> +++ b/drivers/platform/x86/thinkpad_acpi.c
> @@ -8325,11 +8325,20 @@ static int fan_set_level(int level)
>
> switch (fan_control_access_mode) {
> case TPACPI_FAN_WR_ACPI_SFAN:
> - if (level >= 0 && level <= 7) {
> - if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
> - return -EIO;
> - } else
> + if (((level < 0) || (level > 7)))
> return -EINVAL;
> +
> + if (tp_features.second_fan) {
> + if (!fan_select_fan2() ||
> + !acpi_evalf(sfan_handle, NULL, NULL, "vd", level)) {
> + fan_select_fan1();
> + pr_warn("Couldn't set 2nd fan level, disabling support\n");
> + tp_features.second_fan = 0;
> + }
> + fan_select_fan1();
> + }
> + if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
> + return -EIO;
> break;
>
> case TPACPI_FAN_WR_ACPI_FANS:
> @@ -8346,6 +8355,16 @@ static int fan_set_level(int level)
> else if (level & TP_EC_FAN_AUTO)
> level |= 4; /* safety min speed 4 */
>
> + if (tp_features.second_fan) {
> + if (!fan_select_fan2() ||
> + !acpi_ec_write(fan_status_offset, level)) {
> + fan_select_fan1();
> + pr_warn("Couldn't set 2nd fan level, disabling support\n");
> + tp_features.second_fan = 0;
> + }
> + fan_select_fan1();
> +
> + }
> if (!acpi_ec_write(fan_status_offset, level))
> return -EIO;
> else
> @@ -8772,6 +8791,9 @@ static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
> TPACPI_QEC_IBM('7', '0', TPACPI_FAN_Q1),
> TPACPI_QEC_LNV('7', 'M', TPACPI_FAN_2FAN),
> TPACPI_Q_LNV('N', '1', TPACPI_FAN_2FAN),
> + TPACPI_Q_LNV3('N', '2', 'C', TPACPI_FAN_2FAN), /* P52 / P72 */
> + TPACPI_Q_LNV3('N', '2', 'E', TPACPI_FAN_2FAN), /* X1 Extreme (1st gen) */
> + TPACPI_Q_LNV3('N', '2', 'O', TPACPI_FAN_2FAN), /* X1 Extreme (2nd gen) */
> };
>
> static int __init fan_init(struct ibm_init_struct *iibm)
> @@ -8813,8 +8835,7 @@ static int __init fan_init(struct ibm_init_struct *iibm)
> fan_quirk1_setup();
> if (quirks & TPACPI_FAN_2FAN) {
> tp_features.second_fan = 1;
> - dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
> - "secondary fan support enabled\n");
> + pr_info("secondary fan support enabled\n");
> }
> } else {
> pr_err("ThinkPad ACPI EC access misbehaving, fan status and control unavailable\n");
--
With Best Regards,
Andy Shevchenko
|