public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: Flavio Leitner <fbl@redhat.com>, linux-kernel@vger.kernel.org
Cc: Arnd Bergmann <arnd@arndb.de>, Flavio Leitner <fbl@sysclose.org>
Subject: Re: [PATCH] i8k: increase fan limit to 3
Date: Wed, 21 May 2014 20:32:24 -0700	[thread overview]
Message-ID: <537D6FC8.5000105@roeck-us.net> (raw)
In-Reply-To: <1400725168-21358-1-git-send-email-fbl@redhat.com>

On 05/21/2014 07:19 PM, Flavio Leitner wrote:
> From: Flavio Leitner <fbl@sysclose.org>
>
> It is possible to increase left fan speed on a
> DELL Precision 490n system up to 3.
>
>      value    fan rpm
>        1      35460
>        2      64740
>        3      78510
>
Guess the speed factor 30 doesn't apply here.

> Signed-off-by: Flavio Leitner <fbl@sysclose.org>
> ---
>   drivers/char/i8k.c       | 4 ++--
>   include/uapi/linux/i8k.h | 3 ++-
>   2 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c
> index d915707..99180f0 100644
> --- a/drivers/char/i8k.c
> +++ b/drivers/char/i8k.c
> @@ -519,7 +519,7 @@ static ssize_t i8k_hwmon_show_pwm(struct device *dev,
>   	status = i8k_get_fan_status(index);
>   	if (status < 0)
>   		return -EIO;
> -	return sprintf(buf, "%d\n", clamp_val(status * 128, 0, 255));
> +	return sprintf(buf, "%d\n", clamp_val(status * 128, 0, 384));
>   }
>
>   static ssize_t i8k_hwmon_set_pwm(struct device *dev,
> @@ -533,7 +533,7 @@ static ssize_t i8k_hwmon_set_pwm(struct device *dev,
>   	err = kstrtoul(buf, 10, &val);
>   	if (err)
>   		return err;
> -	val = clamp_val(DIV_ROUND_CLOSEST(val, 128), 0, 2);
> +	val = clamp_val(DIV_ROUND_CLOSEST(val, 128), 0, 3);
>
>   	mutex_lock(&i8k_mutex);
>   	err = i8k_set_fan(index, val);
> diff --git a/include/uapi/linux/i8k.h b/include/uapi/linux/i8k.h
> index 1c45ba5..133d02f 100644
> --- a/include/uapi/linux/i8k.h
> +++ b/include/uapi/linux/i8k.h
> @@ -34,7 +34,8 @@
>   #define I8K_FAN_OFF		0
>   #define I8K_FAN_LOW		1
>   #define I8K_FAN_HIGH		2
> -#define I8K_FAN_MAX		I8K_FAN_HIGH
> +#define I8K_FAN_TURBO		3
> +#define I8K_FAN_MAX		I8K_FAN_TURBO
>
>   #define I8K_VOL_UP		1
>   #define I8K_VOL_DOWN		2
>

I'll have to test this on older systems to make sure it doesn't cause problems there.

Guenter


  reply	other threads:[~2014-05-22  3:32 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-22  2:19 [PATCH] i8k: increase fan limit to 3 Flavio Leitner
2014-05-22  3:32 ` Guenter Roeck [this message]
2014-05-22  3:45   ` Flavio Leitner
2014-05-22  5:36     ` Guenter Roeck
2014-05-22 12:33       ` Flavio Leitner
2014-05-22  8:28   ` Thomas Bogendoerfer
2014-05-22 15:12     ` Guenter Roeck
2014-05-22 16:27       ` Jean Delvare
2014-05-22 15:10 ` Guenter Roeck
2014-05-22 15:54   ` Flavio Leitner
2014-05-22 18:00     ` Guenter Roeck
2014-05-23 17:09       ` Flavio Leitner
2014-05-23 18:33         ` Guenter Roeck
2014-05-25 15:28           ` Flavio Leitner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=537D6FC8.5000105@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=arnd@arndb.de \
    --cc=fbl@redhat.com \
    --cc=fbl@sysclose.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox