Changeset 1010
- Timestamp:
- 02/03/01 20:22:54 (8 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (2 diffs)
- lm-sensors/trunk/README (modified) (1 diff)
- lm-sensors/trunk/doc/chips/via686a (modified) (3 diffs)
- lm-sensors/trunk/kernel/chips/via686a.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r1006 r1010 18 18 ----------------------------------------------------------------------------- 19 19 20 2. 5.6(2001????)20 2.6.0 (2001????) 21 21 File doc/FAQ: Updates 22 File doc/chips/via686a: Claim support for 686b. 22 23 File sensors.conf.eg: Adjust as99127f -12V calculation 23 24 Module lm78: Recognize chipid=0x20 … … 26 27 Module via686a: Allow force=9191,address (for A7V/K7V boards) 27 28 Program mkpatch.pl: Fix adm9240 typos 29 Program sensors: Change reported version from 1.3 to the lm_sensors version. 28 30 Program sensors-detect: Recognize lm78 with chipid=0x20 29 31 lm-sensors/trunk/README
r1005 r1010 56 56 TelCom TCN75 57 57 TI THMC10 and THMC50 58 VIA Technologies VT82C686A embedded sensors58 VIA Technologies VT82C686A/B embedded sensors 59 59 Winbond W83781D, W83782D, W83783S, and W83627HF 60 60 lm-sensors/trunk/doc/chips/via686a
r999 r1010 2 2 ========================= 3 3 4 Status: Alpha.4 Status: Stable. 5 5 6 6 Supported chips: 7 * Via 686aSouthbridge Integrated Hardware Monitor7 * Via VT82C686A, VT82C686B Southbridge Integrated Hardware Monitor 8 8 Prefix: via686a 9 9 Addresses scanned: ISA in PCI-space encoded address 10 Datasheet: Publicly available at the Silicon Integrated Systems Corp. site.10 Datasheet: Publicly available at the Via site http://www.via.com.tw. 11 11 12 12 Authors: Kyösti Mälkki <kmalkki@cc.hut.fi>, … … 19 19 ----------------- 20 20 21 force=9191,address Set the I/O base address. Useful for Asus A7V boards that22 don't set the address in the BIOS. Does not do a PCI23 force; the via686a must still be present in lspci.21 force=9191,address Set the I/O base address. Useful for Asus A7V boards 22 that don't set the address in the BIOS. Does not do a 23 PCI force; the via686a must still be present in lspci. 24 24 Don't use this unless the driver complains that the 25 25 base address is not set. Otherwise the driver will … … 31 31 Description 32 32 ----------- 33 34 The driver does not distinguish between a 686A or 686B and reports 35 both as a 686A. 33 36 34 37 The Via 686a southbridge has integrated hardware monitor functionality. lm-sensors/trunk/kernel/chips/via686a.c
r999 r1010 3 3 for hardware monitoring 4 4 5 Copyright (c) 1998 , 1999,2000Frodo Looijaard <frodol@dds.nl>,5 Copyright (c) 1998 - 2001 Frodo Looijaard <frodol@dds.nl>, 6 6 Kyösti Mälkki <kmalkki@cc.hut.fi>, 7 7 Mark Studebaker <mdsxyz123@yahoo.com>, … … 26 26 27 27 /* 28 Warning - only supports a single via686a device. 28 Supports the Via VT82C686A and VT82C686B south bridges. 29 Reports either as a 686A. 30 See doc/chips/via686a for details. 31 Warning - only supports a single device. 29 32 */ 30 33 #include <linux/version.h>
