2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-09-02 15:25:38 +00:00

Add detection of ITE IT8510E/TE/G, IT8511E/TE/G, IT8513E/F/G, and IT8518E

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@6024 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Guenter Roeck
2012-03-04 18:10:41 +00:00
parent 37bdb0bb5a
commit 9e144ca2a5
2 changed files with 21 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ SVN HEAD
Add detection of National Semiconductor LM96080 Add detection of National Semiconductor LM96080
Add detection of ITE IT8771E Add detection of ITE IT8771E
Add detection of ITE IT8781F, IT8782F and IT8783F Add detection of ITE IT8781F, IT8782F and IT8783F
Add detection of ITE IT8510E/TE/G, IT8511E/TE/G, IT8513E/F/G, and IT8518E
3.3.1 (2011-07-21) 3.3.1 (2011-07-21)
isadump: Add support for word (16-bit) and long (32-bit) reads isadump: Add support for word (16-bit) and long (32-bit) reads

View File

@@ -1594,16 +1594,36 @@ use constant FEAT_SMBUS => (1 << 7);
devid => 0xf2, devid => 0xf2,
logdev => 0x14, logdev => 0x14,
features => FEAT_IN | FEAT_TEMP, features => FEAT_IN | FEAT_TEMP,
}, {
name => "ITE IT8510E/TE/G Super IO",
driver => "to-be-written",
devid => 0x8510,
features => FEAT_IN | FEAT_FAN,
}, {
name => "ITE IT8511E/TE/G Super IO",
driver => "to-be-written",
devid => 0x8511,
features => FEAT_IN | FEAT_FAN,
}, { }, {
name => "ITE IT8512E/F/G Super IO", name => "ITE IT8512E/F/G Super IO",
driver => "to-be-written", driver => "to-be-written",
devid => 0x8512, devid => 0x8512,
features => FEAT_IN | FEAT_FAN, features => FEAT_IN | FEAT_FAN,
}, {
name => "ITE IT8513E/F/G Super IO",
driver => "to-be-written",
devid => 0x8513,
features => FEAT_IN | FEAT_FAN,
}, { }, {
name => "ITE IT8516E/F/G Super IO", name => "ITE IT8516E/F/G Super IO",
driver => "to-be-written", driver => "to-be-written",
devid => 0x8516, devid => 0x8516,
features => FEAT_IN | FEAT_FAN, features => FEAT_IN | FEAT_FAN,
}, {
name => "ITE IT8518E Super IO",
driver => "to-be-written",
devid => 0x8518,
features => FEAT_IN | FEAT_FAN,
} }
); );