rohitmandrekar / open-hardware-monitor

Automatically exported from code.google.com/p/open-hardware-monitor
0 stars 0 forks source link

ITE 8712F #42

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
i have a little bit changed.
And tested with P7P55, M3N78 and Everest 5.5.2100

You can use it in your code

Original issue reported on code.google.com by rmattusc...@gmx.net on 19 Apr 2010 at 6:15

Attachments:

GoogleCodeExporter commented 9 years ago
Thx for the input.

Support for the ITE IT8712F is also required in issue 27. Some ITE IT8712F 
revisions
might need support for cases where no 16-bit fan tacho is available (which is 
the
main reason for not implementing support for it so far).

Better labels for temperatures would be good, but they seem to be very mainboard
specific (at least last time I checked about them for the ITE series).

I am not sure if I will use all suggested changes, but the ITE IT8712F will be 
added
for sure.

Original comment by moel.mich on 22 Apr 2010 at 12:25

GoogleCodeExporter commented 9 years ago
Regarding ITE 8712F

I'm working with an older machine and the +12v voltage appears to be reported 
incorrectly.

currently the value is calculated:
voltage = value + (value -Vf) * Ri/Rf

from the data sheet calculations should follow:
  Positive Voltage: Vs = Vin X (Ra+Rb) / Rb
  Negative Voltage: Vs = (1+Rin/Rf) X Vin – (Rin/Rf) X VREF

Is there a way to change the formula not just the parameters?

Also if you need resistor values from the main board i can supply these.

From attached report:
Version: 0.2.1.0
Sensors

|
+-+ Gigabyte GA-K8NF-9 (/mainboard)
|   |
|   +-+ ITE IT8712F (/lpc/it8712f)
|   |   +- Voltage[7] : 9.77477 : 0.816 : 10.09213 : +12V

Original comment by david_18...@hotmail.com on 30 Jan 2011 at 1:02

Attachments:

GoogleCodeExporter commented 9 years ago
The formulas you posted can be simplified as follows

Positive voltage: 

 voltage = value * (Ra + Rb) / Rb
         = value * (Ra / Rb + 1) 
         = value * (Ra / Rb) + value 
         = value + (value - 0) * Ra / Rb

 You get the same formula in the Open Hardware Monitor if you use: 

 Vf = 0, Ri = Ra, Rf = Rb.

Negative Voltage: 

 voltage = (1+Rin/Rf) * value – (Rin/Rf) * VREF
         = value + (Rin/Rf) * value – (Rin/Rf) * VREF
         = value + (Rin/Rf) * (value - VREF)
         = value + (value - VREF) * Rin/Rf

 You get the same formula in the Open Hardware Monitor if you use: 

 Vf = VREF, Ri = Rin, Rf = Rf.

This means the two formulas you posted are only special cases of the formula 
used in the Open Hardware Monitor and no change of formula is required. If you 
have correct resistor / reference voltage values for any mainboard, then these 
are always welcome.

The current collection of resistor / reference voltage valuse can be found in 
the source code: 
http://code.google.com/p/open-hardware-monitor/source/browse/trunk/Hardware/Main
board/SuperIOHardware.cs

Original comment by moel.mich on 30 Jan 2011 at 10:48

GoogleCodeExporter commented 9 years ago
This issue should be fixed by revision r306.

Original comment by moel.mich on 16 Apr 2011 at 2:51