| 1 | Kernel driver `i2c-sis645.o' |
|---|
| 2 | |
|---|
| 3 | Status: Beta |
|---|
| 4 | |
|---|
| 5 | Supported adapters: |
|---|
| 6 | * Silicon Integrated Systems Corp (SiS) |
|---|
| 7 | 645/961 chipset |
|---|
| 8 | 645DX/961 chipset |
|---|
| 9 | 735 chipset |
|---|
| 10 | |
|---|
| 11 | Author: Mark M. Hoffman <mhoffman@lightlink.com> |
|---|
| 12 | |
|---|
| 13 | License: GPL |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | Module Parameters |
|---|
| 17 | ----------------- |
|---|
| 18 | |
|---|
| 19 | (none) |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | Description |
|---|
| 23 | ----------- |
|---|
| 24 | |
|---|
| 25 | This SMBus only driver is known to work on motherboards with the above named |
|---|
| 26 | chipset combinations. The driver was developed without benefit of a proper |
|---|
| 27 | datasheet from SiS. The SMBus registers are assumed compatible with those of |
|---|
| 28 | the SiS630, although they are located in a completely different place. Thanks |
|---|
| 29 | to Alexander Malysh <amalysh@web.de> for providing the SiS630 datasheet (and |
|---|
| 30 | driver). |
|---|
| 31 | |
|---|
| 32 | The command "lspci" as root should produce something like these lines: |
|---|
| 33 | |
|---|
| 34 | 00:00.0 Host bridge: Silicon Integrated Systems [SiS]: Unknown device 0645 |
|---|
| 35 | 00:02.0 ISA bridge: Silicon Integrated Systems [SiS] 85C503/5513 |
|---|
| 36 | 00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown device 0016 |
|---|
| 37 | |
|---|
| 38 | or perhaps this... |
|---|
| 39 | |
|---|
| 40 | 00:00.0 Host bridge: Silicon Integrated Systems [SiS]: Unknown device 0645 (rev 02) |
|---|
| 41 | 00:02.0 ISA bridge: Silicon Integrated Systems [SiS]: Unknown device 0961 |
|---|
| 42 | 00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown device 0016 |
|---|
| 43 | |
|---|
| 44 | (kernel versions later than 2.4.18 may fill in the "Unknown"s) |
|---|
| 45 | |
|---|
| 46 | If the SMBus line is missing, then the BIOS on the board has disabled the |
|---|
| 47 | device. This driver is capable of enabling it, as long as the kernel has |
|---|
| 48 | CONFIG_HOTPLUG enabled. In that case, the SMBus device will appear in "lspci" |
|---|
| 49 | after the driver is loaded. Note that you need to rebuild lm_sensors AFTER |
|---|
| 50 | running "make config" or equivalent on your kernel, otherwise the i2c-sis645 |
|---|
| 51 | driver will not build in this support. |
|---|
| 52 | |
|---|
| 53 | I suspect that this driver could be made to work for the following SiS chipsets |
|---|
| 54 | as well: 648/963, 651/962, 650/961, 635, and 635T. |
|---|
| 55 | If anyone owns a board with those chips AND is willing to risk crashing & |
|---|
| 56 | burning an otherwise well-behaved kernel in the name of progress... please |
|---|
| 57 | contact me at <mhoffman@lightlink.com> or via the project's mailing list: |
|---|
| 58 | <sensors@stimpy.netroedge.com>. Please send bug reports and/or success |
|---|
| 59 | stories as well. |
|---|
| 60 | |
|---|
| 61 | |
|---|
| 62 | TO DOs |
|---|
| 63 | ----------- |
|---|
| 64 | * The driver does not support SMBus block reads/writes; I may add them if a |
|---|
| 65 | scenario is found where they're needed. |
|---|
| 66 | * Determine if any of Albert Cranford's cleanups for kernel 2.5.34 can be |
|---|
| 67 | applied to this code. |
|---|
| 68 | |
|---|
| 69 | |
|---|
| 70 | Thank Yous |
|---|
| 71 | ----------- |
|---|
| 72 | Mark D. Studebaker <mds@paradyne.com> |
|---|
| 73 | - design hints and bug fixes |
|---|
| 74 | Alexander Maylsh <amalysh@web.de> |
|---|
| 75 | - ditto, plus an important datasheet... almost the one I really wanted |
|---|
| 76 | Hans-Günter Lütke Uphues <hg_lu@t-online.de> |
|---|
| 77 | - patch for SiS735 |
|---|
| 78 | Robert Zwerus <arzie@dds.nl> |
|---|
| 79 | - testing for SiS645DX |
|---|
| 80 | To anyone else who has written w/ feedback, thanks! |
|---|
| 81 | |
|---|