From: Guenter Roeck <guenter.roeck@ericsson.com>
To: Jean Delvare <khali@linux-fr.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
"lm-sensors@lm-sensors.org" <lm-sensors@lm-sensors.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696
Date: Wed, 08 Sep 2010 13:56:54 +0000 [thread overview]
Message-ID: <20100908135654.GA11277@ericsson.com> (raw)
In-Reply-To: <20100908134854.2c60f406@hyperion.delvare>
Hi Jean,
On Wed, Sep 08, 2010 at 07:48:54AM -0400, Jean Delvare wrote:
> On Wed, 8 Sep 2010 03:28:16 -0700, Guenter Roeck wrote:
> > Hi Jean,
> >
> > On Mon, Sep 06, 2010 at 12:12:29PM -0400, Jean Delvare wrote:
> > > Hi Guenter,
> > >
> > > On Sat, 4 Sep 2010 15:34:35 -0700, Guenter Roeck wrote:
> > > > Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
> > > > ---
> > > > To apply this patch, the previously submitted lm90 cleanup patch has to be
> > > > applied first.
> > > >
> > > > My main concern with this patch is the chip detection code, specifically if it
> > > > is able to safely distinguish between MAX6680/81 and MAX6695/96.
> > > > Would be great to get some test coverage from a system with one of those chips.
> > >
> > > Unfortunately I don't have any of these Maxim chips at hand. I have an
> > > ADM1032 but it won't offer much coverage obviously. And I have dumps of
> > > Maxim chips, but the real chips behave differently, so it's of little
> > > help.
> > >
> > Do you by any chance have register dumps of max6657/58/59 ?
>
> Yes I do. I have dumps of max6658 and max6659 chips, I'm attaching
> them. Please keep in mind that registers are read sequentially, in
> order, and this matters because these chips return the last read value
> whenever you access a nonexistent register. This even holds for
> registers with fewer than 8 bits, e.g. config1.
>
> > max6659 also supports a 3rd upper limit. Turns out it is convenient to add support
> > for this limit first before adding support for max6696. To do that, I'll need
> > to be able to distinguish between max6657/58 and max6659. My thought is to check
> > for the address and if register 0x16 exists.
> >
> > Also, do you happen to remember why address 0x4e for max6659 is not supported by the driver ?
> > The code only says that it isn't supported, and it does not detect it, but there
> > is not reason. sensors-detect does detect it at address 0x4e.
>
> I think the reason is historical. As we never had a report of anyone
> with a MAX6659 chip at 0x4e, and detection for this device is weak, and
> the driver didn't support any other device at this address, it seemed
> more reasonable to not scan the address at all. Now that the driver
> supports more devices at this address and thus scans it anyway, I have
> no objection supporting the MAX6659 at 0x4e.
>
Too bad - registers 0x16 and 0x17 exist on both 6658 and 6659. So the only way to detect 6659
would be the address (0x4d or 0x4e), and we would mis-detect it on 0x4c. Is that worth it ?
Guenter
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
WARNING: multiple messages have this Message-ID (diff)
From: Guenter Roeck <guenter.roeck@ericsson.com>
To: Jean Delvare <khali@linux-fr.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
"lm-sensors@lm-sensors.org" <lm-sensors@lm-sensors.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver
Date: Wed, 8 Sep 2010 06:56:54 -0700 [thread overview]
Message-ID: <20100908135654.GA11277@ericsson.com> (raw)
In-Reply-To: <20100908134854.2c60f406@hyperion.delvare>
Hi Jean,
On Wed, Sep 08, 2010 at 07:48:54AM -0400, Jean Delvare wrote:
> On Wed, 8 Sep 2010 03:28:16 -0700, Guenter Roeck wrote:
> > Hi Jean,
> >
> > On Mon, Sep 06, 2010 at 12:12:29PM -0400, Jean Delvare wrote:
> > > Hi Guenter,
> > >
> > > On Sat, 4 Sep 2010 15:34:35 -0700, Guenter Roeck wrote:
> > > > Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
> > > > ---
> > > > To apply this patch, the previously submitted lm90 cleanup patch has to be
> > > > applied first.
> > > >
> > > > My main concern with this patch is the chip detection code, specifically if it
> > > > is able to safely distinguish between MAX6680/81 and MAX6695/96.
> > > > Would be great to get some test coverage from a system with one of those chips.
> > >
> > > Unfortunately I don't have any of these Maxim chips at hand. I have an
> > > ADM1032 but it won't offer much coverage obviously. And I have dumps of
> > > Maxim chips, but the real chips behave differently, so it's of little
> > > help.
> > >
> > Do you by any chance have register dumps of max6657/58/59 ?
>
> Yes I do. I have dumps of max6658 and max6659 chips, I'm attaching
> them. Please keep in mind that registers are read sequentially, in
> order, and this matters because these chips return the last read value
> whenever you access a nonexistent register. This even holds for
> registers with fewer than 8 bits, e.g. config1.
>
> > max6659 also supports a 3rd upper limit. Turns out it is convenient to add support
> > for this limit first before adding support for max6696. To do that, I'll need
> > to be able to distinguish between max6657/58 and max6659. My thought is to check
> > for the address and if register 0x16 exists.
> >
> > Also, do you happen to remember why address 0x4e for max6659 is not supported by the driver ?
> > The code only says that it isn't supported, and it does not detect it, but there
> > is not reason. sensors-detect does detect it at address 0x4e.
>
> I think the reason is historical. As we never had a report of anyone
> with a MAX6659 chip at 0x4e, and detection for this device is weak, and
> the driver didn't support any other device at this address, it seemed
> more reasonable to not scan the address at all. Now that the driver
> supports more devices at this address and thus scans it anyway, I have
> no objection supporting the MAX6659 at 0x4e.
>
Too bad - registers 0x16 and 0x17 exist on both 6658 and 6659. So the only way to detect 6659
would be the address (0x4d or 0x4e), and we would mis-detect it on 0x4c. Is that worth it ?
Guenter
next prev parent reply other threads:[~2010-09-08 13:56 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-04 22:34 [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 to Guenter Roeck
2010-09-04 22:34 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Guenter Roeck
2010-09-06 16:12 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Jean Delvare
2010-09-06 16:12 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Jean Delvare
2010-09-07 2:00 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Guenter Roeck
2010-09-07 2:00 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Guenter Roeck
2010-09-07 7:43 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Jean Delvare
2010-09-07 7:43 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Jean Delvare
2010-09-08 10:28 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Guenter Roeck
2010-09-08 10:28 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Guenter Roeck
2010-09-08 11:48 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Jean Delvare
2010-09-08 11:48 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Jean Delvare
2010-09-08 13:56 ` Guenter Roeck [this message]
2010-09-08 13:56 ` Guenter Roeck
2010-09-08 15:29 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Jean Delvare
2010-09-08 15:29 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Jean Delvare
2010-09-08 18:30 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Guenter Roeck
2010-09-08 18:30 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Guenter Roeck
2010-09-08 19:44 ` [lm-sensors] [PATCH] hwmon: Add support for max6695 and max6696 Jean Delvare
2010-09-08 19:44 ` [PATCH] hwmon: Add support for max6695 and max6696 to lm90 driver Jean Delvare
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=20100908135654.GA11277@ericsson.com \
--to=guenter.roeck@ericsson.com \
--cc=akpm@linux-foundation.org \
--cc=khali@linux-fr.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lm-sensors@lm-sensors.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.