All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean Delvare <khali@linux-fr.org>
To: lm-sensors@vger.kernel.org
Subject: Re: [lm-sensors] [PATCH 1/4] hwmon: it87 support for 16-bit fan
Date: Mon, 07 Jul 2008 13:38:54 +0000	[thread overview]
Message-ID: <20080707153854.57ddbf2f@hyperion.delvare> (raw)
In-Reply-To: <1215427211-6001-1-git-send-email-andrew@ishiboo.com>

On Mon,  7 Jul 2008 06:40:08 -0400, Andrew Paprocki wrote:
> The it8705 chip supports 16-bit fan tachometers in revisions at least
> >= 0x03 (Version G). This patch enables 16-bit fan readings on all
> revisions >= 0x03 just like the it8712, it8716, and it8718 chips.
> 
> Signed-off-by: Andrew Paprocki <andrew@ishiboo.com>
> ---
>  Documentation/hwmon/it87 |    6 +++---
>  drivers/hwmon/it87.c     |   19 ++++++++++++-------
>  2 files changed, 15 insertions(+), 10 deletions(-)
> 
> diff --git a/Documentation/hwmon/it87 b/Documentation/hwmon/it87
> index d931525..3496b70 100644
> --- a/Documentation/hwmon/it87
> +++ b/Documentation/hwmon/it87
> @@ -6,7 +6,7 @@ Supported chips:
>      Prefix: 'it87'
>      Addresses scanned: from Super I/O config space (8 I/O ports)
>      Datasheet: Publicly available at the ITE website
> -               http://www.ite.com.tw/
> +               http://www.ite.com.tw/product_info/file/pc/IT8705F_V.0.4.1.pdf
>    * IT8712F
>      Prefix: 'it8712'
>      Addresses scanned: from Super I/O config space (8 I/O ports)
> @@ -97,8 +97,8 @@ The IT8716F, IT8718F and later IT8712F revisions have support for
>  The IT8716F and IT8718F, and late IT8712F and IT8705F also have optional
>  16-bit tachometer counters for fans 1 to 3. This is better (no more fan
>  clock divider mess) but not compatible with the older chips and
> -revisions. For now, the driver only uses the 16-bit mode on the
> -late IT8712F, IT8716F and IT8718F.
> +revisions. The 16-bit tachometer mode is enabled by the driver when one
> +of the above chips is detected.
>  
>  The IT8726F is just bit enhanced IT8716F with additional hardware
>  for AMD power sequencing. Therefore the chip will appear as IT8716F
> diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c
> index 2a36568..30cdb09 100644
> --- a/drivers/hwmon/it87.c
> +++ b/drivers/hwmon/it87.c
> @@ -272,9 +272,11 @@ struct it87_data {
>  
>  static inline int has_16bit_fans(const struct it87_data *data)
>  {
> -	/* IT8712F Datasheet 0.9.1, section 8.3.5 indicates 7h = Version I.
> -	   This is the first revision with 16bit tachometer support. */
> -	return (data->type = it8712 && data->revision >= 0x07)
> +	/* IT8705F Datasheet 0.4.1, 3h = Version G.
> +	   IT8712F Datasheet 0.9.1, section 8.3.5 indicates 7h = Version I.
> +	   These are the first revisions with 16bit tachometer support. */

Better spelt 16-bit.

> +	return (data->type = it87 && data->revision >= 0x03)
> +	    || (data->type = it8712 && data->revision >= 0x07)
>  	    || data->type = it8716
>  	    || data->type = it8718;
>  }
> @@ -1370,10 +1372,13 @@ static void __devinit it87_init_device(struct platform_device *pdev)
>  			it87_write_value(data, IT87_REG_FAN_16BIT,
>  					 tmp | 0x07);
>  		}
> -		if (tmp & (1 << 4))
> -			data->has_fan |= (1 << 3);	/* fan4 enabled */
> -		if (tmp & (1 << 5))
> -			data->has_fan |= (1 << 4);	/* fan5 enabled */
> +		/* IT8705F only supports three fans. */
> +		if (data->type != it87) {
> +			if (tmp & (1 << 4))
> +				data->has_fan |= (1 << 3); /* fan4 enabled */
> +			if (tmp & (1 << 5))
> +				data->has_fan |= (1 << 4); /* fan5 enabled */
> +		}
>  	}
>  
>  	/* Set current fan mode registers and the default settings for the

But other than that the patch looks alright to me.

Acked-by: Jean Delvare <khali@linux-fr.org>

-- 
Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

      reply	other threads:[~2008-07-07 13:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-07 10:40 [lm-sensors] [PATCH 1/4] hwmon: it87 support for 16-bit fan reading Andrew Paprocki
2008-07-07 13:38 ` Jean Delvare [this message]

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=20080707153854.57ddbf2f@hyperion.delvare \
    --to=khali@linux-fr.org \
    --cc=lm-sensors@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.