* [lm-sensors] What to use as prefix for TI TMP401 IC,
@ 2007-10-27 8:47 Hans de Goede
2007-10-28 12:43 ` Jean Delvare
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Hans de Goede @ 2007-10-27 8:47 UTC (permalink / raw)
To: lm-sensors
Hi All,
As part of the linuxdriverproject:
http://linuxdriverproject.org
I'm working on a TI TMP401 driver, but what should I use as prefix:
ti_tmp401 or just tmp401?
Regards,
Hans
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [lm-sensors] What to use as prefix for TI TMP401 IC,
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
@ 2007-10-28 12:43 ` Jean Delvare
2007-10-28 12:55 ` Hans de Goede
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Jean Delvare @ 2007-10-28 12:43 UTC (permalink / raw)
To: lm-sensors
Hi Hans,
On Sat, 27 Oct 2007 10:47:56 +0200, Hans de Goede wrote:
> As part of the linuxdriverproject:
> http://linuxdriverproject.org
>
> I'm working on a TI TMP401 driver, but what should I use as prefix:
> ti_tmp401 or just tmp401?
Just tmp401, please.
Did you check first if the TMP401 was compatible with another device we
already support? After a quick look, the register map reminds me those
of the LM90/ADM1032 a lot. It would be worth checking that the TMP401
device couldn't be supported by the lm90 driver by just adding the
device and manufacturer ID...
Also, I suggest that you add detection for the TMP401 to sensors-detect
right away. That's the best way to find early testers for your work.
--
Jean Delvare
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [lm-sensors] What to use as prefix for TI TMP401 IC,
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
2007-10-28 12:43 ` Jean Delvare
@ 2007-10-28 12:55 ` Hans de Goede
2007-10-28 14:24 ` Hans de Goede
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Hans de Goede @ 2007-10-28 12:55 UTC (permalink / raw)
To: lm-sensors
Jean Delvare wrote:
> Hi Hans,
>
> On Sat, 27 Oct 2007 10:47:56 +0200, Hans de Goede wrote:
>> As part of the linuxdriverproject:
>> http://linuxdriverproject.org
>>
>> I'm working on a TI TMP401 driver, but what should I use as prefix:
>> ti_tmp401 or just tmp401?
>
> Just tmp401, please.
>
I already figured as much in the mean time (after looking at the devices page
of the wiki), still thanks for the answer!
> Did you check first if the TMP401 was compatible with another device we
> already support? After a quick look, the register map reminds me those
> of the LM90/ADM1032 a lot. It would be worth checking that the TMP401
> device couldn't be supported by the lm90 driver by just adding the
> device and manufacturer ID...
>
I did, its indeed like the lm90, except that the local (on chip) temp sensor
registers all are 16 bits (split in a low and high reg) insetad of the 8 bits
of the lm90, which esp with all the special cases already in lm90.c seems like
enough of a divergence to me to warrant a new driver.
> Also, I suggest that you add detection for the TMP401 to sensors-detect
> right away. That's the best way to find early testers for your work.
>
Will do.
Regards,
Hans
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [lm-sensors] What to use as prefix for TI TMP401 IC,
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
2007-10-28 12:43 ` Jean Delvare
2007-10-28 12:55 ` Hans de Goede
@ 2007-10-28 14:24 ` Hans de Goede
2007-10-28 19:20 ` Jean Delvare
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Hans de Goede @ 2007-10-28 14:24 UTC (permalink / raw)
To: lm-sensors
Jean Delvare wrote:
> Also, I suggest that you add detection for the TMP401 to sensors-detect
> right away. That's the best way to find early testers for your work.
>
Done. (not tested I don't have access to the actual hardware at this moment).
Regards,
Hans
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [lm-sensors] What to use as prefix for TI TMP401 IC,
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
` (2 preceding siblings ...)
2007-10-28 14:24 ` Hans de Goede
@ 2007-10-28 19:20 ` Jean Delvare
2007-10-28 20:09 ` Jean Delvare
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Jean Delvare @ 2007-10-28 19:20 UTC (permalink / raw)
To: lm-sensors
On Sun, 28 Oct 2007 13:55:45 +0100, Hans de Goede wrote:
> Jean Delvare wrote:
> > Did you check first if the TMP401 was compatible with another device we
> > already support? After a quick look, the register map reminds me those
> > of the LM90/ADM1032 a lot. It would be worth checking that the TMP401
> > device couldn't be supported by the lm90 driver by just adding the
> > device and manufacturer ID...
>
> I did, its indeed like the lm90, except that the local (on chip) temp sensor
> registers all are 16 bits (split in a low and high reg) insetad of the 8 bits
> of the lm90, which esp with all the special cases already in lm90.c seems like
> enough of a divergence to me to warrant a new driver.
Good point, I agree that a separate driver is fine in this case. You
might still be able to copy-n-paste a good load of code from the lm90
driver, as it is state-of-the-art when it comes to dynamic sysfs
callbacks, individual alarm files, etc.
> > Also, I suggest that you add detection for the TMP401 to sensors-detect
> > right away. That's the best way to find early testers for your work.
>
> Will do.
Thank you. Other than a misplaced parenthesis in a comment, it looks OK
to me. Can you please also add an entry in the Devices table on the
wiki, so that everybody can follow your progress?
--
Jean Delvare
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [lm-sensors] What to use as prefix for TI TMP401 IC,
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
` (3 preceding siblings ...)
2007-10-28 19:20 ` Jean Delvare
@ 2007-10-28 20:09 ` Jean Delvare
2007-11-01 19:30 ` Jean Delvare
2007-11-01 21:58 ` Hans de Goede
6 siblings, 0 replies; 8+ messages in thread
From: Jean Delvare @ 2007-10-28 20:09 UTC (permalink / raw)
To: lm-sensors
Hi Hans,
On Sun, 28 Oct 2007 15:24:06 +0100, Hans de Goede wrote:
> Jean Delvare wrote:
> > Also, I suggest that you add detection for the TMP401 to sensors-detect
> > right away. That's the best way to find early testers for your work.
>
> Done. (not tested I don't have access to the actual hardware at this moment).
In this kind of situation, I can only recommend using Mark Hoffman's
i2c-stub driver. It allows emulating one or more I2C/SMBus chips from
dumps. It works as follows:
* On the machine with the chip, use i2cdump to dump the registers of
the chip:
i2cdump -y 0 0x4c b > tmp401.dump
* On your own workstation, build the i2c-stub driver
(CONFIG_I2C_STUB=m) and load it. You must pass the chip address as a
parameter, so that the driver will emulate a chip at this specific
address:
modprobe i2c-stub chip_addr=0x4c
* Program the emulated chip from the dump. Get my helper script from:
http://jdelvare.pck.nerim.net/sensors/stub-from-dump.pl
Run that script on the dump and it will generate a shell script to
program the emulated chip:
./stub-from-dump.pl tmp401.dump > set_tmp401.sh
Then as root, run the script in question:
sh set_tmp401.sh 6 0x4c
Adjust the bus number so that it matches those of i2c-stub, check with
i2cdetect -l. The script simply runs i2cset for each register.
At this point you have an emulated chip to play with. It will let you
test sensors-detect, device detection at driver load, the sysfs
interface, etc.
Limitations:
* Driver must only use byte register access. i2c-stub supports word
access by my script doesn't (yet).
* Device must not have banks (as Winbond devices do).
* You can't test alarms this way, obviously.
Beware that i2c-stub is very verbose and will flood your logs. This
might help a lot when debugging the driver though.
If this proves useful, I should probably cleanup stub-from-dump.pl and
include it in i2c-tools so that others can benefit.
--
Jean Delvare
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [lm-sensors] What to use as prefix for TI TMP401 IC,
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
` (4 preceding siblings ...)
2007-10-28 20:09 ` Jean Delvare
@ 2007-11-01 19:30 ` Jean Delvare
2007-11-01 21:58 ` Hans de Goede
6 siblings, 0 replies; 8+ messages in thread
From: Jean Delvare @ 2007-11-01 19:30 UTC (permalink / raw)
To: lm-sensors
On Sun, 28 Oct 2007 21:09:37 +0100, Jean Delvare wrote:
> On Sun, 28 Oct 2007 15:24:06 +0100, Hans de Goede wrote:
> > Jean Delvare wrote:
> > > Also, I suggest that you add detection for the TMP401 to sensors-detect
> > > right away. That's the best way to find early testers for your work.
> >
> > Done. (not tested I don't have access to the actual hardware at this moment).
>
> In this kind of situation, I can only recommend using Mark Hoffman's
> i2c-stub driver. It allows emulating one or more I2C/SMBus chips from
> dumps. It works as follows:
>
> * On the machine with the chip, use i2cdump to dump the registers of
> the chip:
>
> i2cdump -y 0 0x4c b > tmp401.dump
>
> * On your own workstation, build the i2c-stub driver
> (CONFIG_I2C_STUB=m) and load it. You must pass the chip address as a
> parameter, so that the driver will emulate a chip at this specific
> address:
>
> modprobe i2c-stub chip_addr=0x4c
>
> * Program the emulated chip from the dump. Get my helper script from:
>
> http://jdelvare.pck.nerim.net/sensors/stub-from-dump.pl
>
> Run that script on the dump and it will generate a shell script to
> program the emulated chip:
>
> ./stub-from-dump.pl tmp401.dump > set_tmp401.sh
>
> Then as root, run the script in question:
>
> sh set_tmp401.sh 6 0x4c
>
> Adjust the bus number so that it matches those of i2c-stub, check with
> i2cdetect -l. The script simply runs i2cset for each register.
>
> At this point you have an emulated chip to play with. It will let you
> test sensors-detect, device detection at driver load, the sysfs
> interface, etc.
>
> Limitations:
> * Driver must only use byte register access. i2c-stub supports word
> access by my script doesn't (yet).
> * Device must not have banks (as Winbond devices do).
> * You can't test alarms this way, obviously.
>
> Beware that i2c-stub is very verbose and will flood your logs. This
> might help a lot when debugging the driver though.
>
> If this proves useful, I should probably cleanup stub-from-dump.pl and
> include it in i2c-tools so that others can benefit.
I've committed an improved version of this script to the i2c-tools
repository. This version programs the i2c-stub chip directly rather
than generating an intermediate shell script. It also loads the
i2c-stub driver automatically, and detects its number automatically as
well.
I've also added a manual page so that hopefully more developers can use
it.
--
Jean Delvare
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [lm-sensors] What to use as prefix for TI TMP401 IC,
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
` (5 preceding siblings ...)
2007-11-01 19:30 ` Jean Delvare
@ 2007-11-01 21:58 ` Hans de Goede
6 siblings, 0 replies; 8+ messages in thread
From: Hans de Goede @ 2007-11-01 21:58 UTC (permalink / raw)
To: lm-sensors
Jean Delvare wrote:
> On Sun, 28 Oct 2007 21:09:37 +0100, Jean Delvare wrote:
>> On Sun, 28 Oct 2007 15:24:06 +0100, Hans de Goede wrote:
>>> Jean Delvare wrote:
>>>> Also, I suggest that you add detection for the TMP401 to sensors-detect
>>>> right away. That's the best way to find early testers for your work.
>>> Done. (not tested I don't have access to the actual hardware at this moment).
>> In this kind of situation, I can only recommend using Mark Hoffman's
>> i2c-stub driver. It allows emulating one or more I2C/SMBus chips from
>> dumps. It works as follows:
>>
>> * On the machine with the chip, use i2cdump to dump the registers of
>> the chip:
>>
>> i2cdump -y 0 0x4c b > tmp401.dump
>>
>> * On your own workstation, build the i2c-stub driver
>> (CONFIG_I2C_STUB=m) and load it. You must pass the chip address as a
>> parameter, so that the driver will emulate a chip at this specific
>> address:
>>
>> modprobe i2c-stub chip_addr=0x4c
>>
>> * Program the emulated chip from the dump. Get my helper script from:
>>
>> http://jdelvare.pck.nerim.net/sensors/stub-from-dump.pl
>>
>> Run that script on the dump and it will generate a shell script to
>> program the emulated chip:
>>
>> ./stub-from-dump.pl tmp401.dump > set_tmp401.sh
>>
>> Then as root, run the script in question:
>>
>> sh set_tmp401.sh 6 0x4c
>>
>> Adjust the bus number so that it matches those of i2c-stub, check with
>> i2cdetect -l. The script simply runs i2cset for each register.
>>
>> At this point you have an emulated chip to play with. It will let you
>> test sensors-detect, device detection at driver load, the sysfs
>> interface, etc.
>>
>> Limitations:
>> * Driver must only use byte register access. i2c-stub supports word
>> access by my script doesn't (yet).
>> * Device must not have banks (as Winbond devices do).
>> * You can't test alarms this way, obviously.
>>
>> Beware that i2c-stub is very verbose and will flood your logs. This
>> might help a lot when debugging the driver though.
>>
>> If this proves useful, I should probably cleanup stub-from-dump.pl and
>> include it in i2c-tools so that others can benefit.
>
> I've committed an improved version of this script to the i2c-tools
> repository. This version programs the i2c-stub chip directly rather
> than generating an intermediate shell script. It also loads the
> i2c-stub driver automatically, and detects its number automatically as
> well.
>
> I've also added a manual page so that hopefully more developers can use
> it.
>
Sounds good!
Regards,
Hans
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2007-11-01 21:58 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-27 8:47 [lm-sensors] What to use as prefix for TI TMP401 IC, Hans de Goede
2007-10-28 12:43 ` Jean Delvare
2007-10-28 12:55 ` Hans de Goede
2007-10-28 14:24 ` Hans de Goede
2007-10-28 19:20 ` Jean Delvare
2007-10-28 20:09 ` Jean Delvare
2007-11-01 19:30 ` Jean Delvare
2007-11-01 21:58 ` Hans de Goede
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.