2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-28 12:57:51 +00:00

712 Commits

Author SHA1 Message Date
Jean Delvare
88cab8add5 Reindent sysfs helpers.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5444 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 18:10:24 +00:00
Jean Delvare
3ee60a6fac Don't create module options for bus drivers we don't even need to load.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5443 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 17:53:36 +00:00
Jean Delvare
3cdf96e0f4 Cleanup generate_modprobes() a bit.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5442 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 17:47:07 +00:00
Jean Delvare
f932415c8a Fix bus number prediction logic (#2327). We don't need anything complex,
given how rare are the cases where this really matters. On most systems
we will only load one I2C bus driver, so the bus numbers simply can't
change.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5441 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 17:44:12 +00:00
Jean Delvare
7b2e59500a Fix scx200_acb name matching regexp.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5440 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 16:44:00 +00:00
Jean Delvare
1376b4846d bmcsensors doesn't exist in the Linux 2.6 kernel.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5439 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 16:02:09 +00:00
Jean Delvare
bea9aa2086 Stop keeping track of the misdetected chips. Doing so needed very tricky
code, which isn't really needed anymode. For one thing, misdetections are
rare, as we have improved the detection functions quite a lot over the
years (and new chips are in general easier to detect reliably). It it
also unlikely that a driver which caused a misdetection will still be
loaded for another device on the same system. For another, this is really
the kernel drivers' job to make sure they will not bind to the wrong
device anyway (and we did indeed improve the drivers in this respect.)

More cleanups are certainly possible in this area. I have the feeling
that the data structures have not been wisely chosen. For efficient
confidence value comparisons, the detection data should be
address-centric rather than driver-centric.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5438 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 16:00:04 +00:00
Jean Delvare
911b13eecf 2 digits are enough to print an I2C address.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5437 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 15:00:21 +00:00
Jean Delvare
820d8d3c0e Delete unused @probelist in generate_modprobes().
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5436 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-27 14:54:28 +00:00
Jean Delvare
feda422989 Reindent 2 functions.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5435 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-26 17:17:29 +00:00
Jean Delvare
19cb69acf0 Fix handling of bus driver names with an underscore.
Simplify loading of bus drivers: we don't really need to make this
part interactive, as nothing can really go wrong at this point.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5434 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-26 16:36:04 +00:00
Jean Delvare
9e482430e0 Unload kernel drivers which we loaded ourselves when we are done with them.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5433 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-26 14:52:07 +00:00
Jean Delvare
b3c97e6eb8 As of kernel 2.6.28, alias detection is handled by kernel drivers
directly, so module options are no longer needed.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5432 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-26 10:51:22 +00:00
Jean Delvare
d08e028567 Comment clarification.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5430 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-25 13:27:10 +00:00
Jean Delvare
0667d809e0 Drop useless parentheses.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5429 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 17:28:25 +00:00
Jean Delvare
4884bd8652 Clean up smartbatt_detect.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5428 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 17:26:33 +00:00
Jean Delvare
09d444883d Merge the W83L785TS detection into w83l784r_detect.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5427 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 17:24:32 +00:00
Jean Delvare
0d2a30a53c Improve GL525 detection a bit, fix the (missing) driver name.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5426 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 17:15:40 +00:00
Jean Delvare
e040e561ba Merge the GL520 detection into gl518_detect.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5425 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 17:10:31 +00:00
Jean Delvare
81f81f39e1 Complete GL520SM detection.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5424 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 17:05:33 +00:00
Jean Delvare
a7adce905a Merge both GL518 entries into one. We don't need separate entries as
both revisions are handled by the same driver anyway.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5423 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 16:59:25 +00:00
Jean Delvare
60e1fa7392 Merge all Mozart-2 entries. We really don't need 3 entries for this
especially when we don't even support these chips.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5422 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 16:55:48 +00:00
Jean Delvare
b1bd48665a Harmonize the order of the parameters of all I2C detection functions.
The purpose of such an admittedly intrusive change is that we then no
longer need to document the calling convention of each function
individually, which spares a huge amount of comments.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5421 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 16:51:00 +00:00
Jean Delvare
e8f9a15798 Rename it8712_detect to it8712_i2c_detect for clarity.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5420 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 15:51:32 +00:00
Jean Delvare
cbb496e134 Refactor IPMI detection functions.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5419 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 15:50:00 +00:00
Jean Delvare
9f03b10a04 Group all ISA detection functions and harmonize their parameters.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5418 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 15:42:03 +00:00
Jean Delvare
7a8669796e Drop $chip parameter from all detection functions which handle only
one chip. Let's not make the code more complex than needed.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5417 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 15:27:26 +00:00
Jean Delvare
ec73088454 Drop separate LM78-J entry, we really have no good reason to handle
the LM78-J differently from the original LM78.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5416 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 14:56:18 +00:00
Jean Delvare
f60a79b999 Oops, remove debug print.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5415 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 14:51:43 +00:00
Jean Delvare
9bbc5b348f Move all alias detection functions in once place and harmonize their
parameters.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5414 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 14:51:11 +00:00
Jean Delvare
829298b0c6 Comment clarification.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5413 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 13:57:39 +00:00
Jean Delvare
569de49970 Drop old comment.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5412 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 13:52:07 +00:00
Jean Delvare
9cc1de4bfb Comment update.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5411 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 13:46:52 +00:00
Jean Delvare
a6706d680a Update an obsolete comment.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5410 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 13:34:30 +00:00
Jean Delvare
4814ce52c3 Drop old SiS I2C adapter entries. If anyone really wanted to write a
driver for these chips, it would already be done by now.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5409 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 13:31:58 +00:00
Jean Delvare
b5df304f5d Add a separate look-up table to figure out an I2C adapter's driver
based on the adapters description in sysfs. This is more efficient to
have one entry per driver than one per device as we did so far.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5408 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 13:24:00 +00:00
Jean Delvare
0b86f4e187 Get I2C adapter driver names from sysfs. The old method (matching against
regexp for known I2C adapters) is still used as a fallback, as early 2.6
kernels don't support the new method, and some drivers (i2c-viapro for
example) do not bind to their device so the new method doesn't work for
them.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5407 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-24 12:42:00 +00:00
Jean Delvare
a1db385f3c Fix SMBus detection of early W83627EHF chips.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5405 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-23 15:24:50 +00:00
Jean Delvare
963ca0992c Fix device->driver lookup name. What we are really interested in is the
name of the kernel module, not the name of the driver. This went unnoticed
so far because almost all hwmon drivers have a driver name equal to the
module name.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5404 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-23 15:16:45 +00:00
Rudolf Marek
973789e9e6 Fix the CHIPID for W83627DHG.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5403 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-23 14:27:22 +00:00
Jean Delvare
a0ddf07aad Handle special case chips more efficiently. Instead of listing every
chip twice with just the driver field differing, we put the chip entry
in the main list directly and resolve the driver field at run-time.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5402 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-22 18:04:50 +00:00
Jean Delvare
5cd00e8a72 Merge all FSC detection functions into a single function.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5401 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-22 17:28:30 +00:00
Jean Delvare
f70ea56585 Merge LM87 and ADM1024 detection in a single function.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5400 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-22 16:05:13 +00:00
Jean Delvare
4de44481ae Drop support for Linux 2.4.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5399 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-22 15:52:52 +00:00
Jean Delvare
a048d7a22a We now have a driver for the ADT7473.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5397 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-21 20:26:43 +00:00
Jean Delvare
992ab93b71 Fix detection of SMSC LPC47M292. Add detection of SMSC LPC47M233.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5395 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-21 08:52:40 +00:00
Jean Delvare
f62a62abaa Drop old comments.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5387 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-18 12:23:00 +00:00
Jean Delvare
1533724750 Missing comma in comment.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5385 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-18 12:19:40 +00:00
Jean Delvare
7dc02997d0 Fix detection of ADT7462.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5383 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-11-17 21:35:50 +00:00
Jean Delvare
2bf52892a9 The PC8374L looks like an LM96000 on the SMBus.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5380 7894878c-1315-0410-8ee3-d5d059ff63e0
2008-10-30 12:33:05 +00:00