Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 1 | ======================== |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | Kernel driver i2c-sis96x |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 3 | ======================== |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | Replaces 2.4.x i2c-sis645 |
| 6 | |
| 7 | Supported adapters: |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * Silicon Integrated Systems Corp (SiS) |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | Any combination of these host bridges: |
| 12 | 645, 645DX (aka 646), 648, 650, 651, 655, 735, 745, 746 |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | and these south bridges: |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 15 | 961, 962, 963(L) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | Author: Mark M. Hoffman <mhoffman@lightlink.com> |
| 18 | |
| 19 | Description |
| 20 | ----------- |
| 21 | |
| 22 | This SMBus only driver is known to work on motherboards with the above |
| 23 | named chipset combinations. The driver was developed without benefit of a |
| 24 | proper datasheet from SiS. The SMBus registers are assumed compatible with |
| 25 | those of the SiS630, although they are located in a completely different |
| 26 | place. Thanks to Alexander Malysh <amalysh@web.de> for providing the |
| 27 | SiS630 datasheet (and driver). |
| 28 | |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 29 | The command ``lspci`` as root should produce something like these lines:: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 31 | 00:00.0 Host bridge: Silicon Integrated Systems [SiS]: Unknown device 0645 |
| 32 | 00:02.0 ISA bridge: Silicon Integrated Systems [SiS] 85C503/5513 |
| 33 | 00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown device 0016 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 35 | or perhaps this:: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 37 | 00:00.0 Host bridge: Silicon Integrated Systems [SiS]: Unknown device 0645 |
| 38 | 00:02.0 ISA bridge: Silicon Integrated Systems [SiS]: Unknown device 0961 |
| 39 | 00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown device 0016 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | (kernel versions later than 2.4.18 may fill in the "Unknown"s) |
| 42 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 43 | If you can't see it please look on quirk_sis_96x_smbus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | (drivers/pci/quirks.c) (also if southbridge detection fails) |
| 45 | |
| 46 | I suspect that this driver could be made to work for the following SiS |
| 47 | chipsets as well: 635, and 635T. If anyone owns a board with those chips |
| 48 | AND is willing to risk crashing & burning an otherwise well-behaved kernel |
| 49 | in the name of progress... please contact me at <mhoffman@lightlink.com> or |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 50 | via the linux-i2c mailing list: <linux-i2c@vger.kernel.org>. Please send bug |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 51 | reports and/or success stories as well. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | |
| 54 | TO DOs |
| 55 | ------ |
| 56 | |
| 57 | * The driver does not support SMBus block reads/writes; I may add them if a |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 58 | scenario is found where they're needed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | |
| 61 | Thank You |
| 62 | --------- |
| 63 | |
| 64 | Mark D. Studebaker <mdsxyz123@yahoo.com> |
| 65 | - design hints and bug fixes |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | Alexander Maylsh <amalysh@web.de> |
| 68 | - ditto, plus an important datasheet... almost the one I really wanted |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 69 | |
John Anthony Kazos Jr | be2a608 | 2007-05-09 08:50:42 +0200 | [diff] [blame] | 70 | Hans-Günter Lütke Uphues <hg_lu@t-online.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | - patch for SiS735 |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | Robert Zwerus <arzie@dds.nl> |
| 74 | - testing for SiS645DX |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | Kianusch Sayah Karadji <kianusch@sk-tech.net> |
| 77 | - patch for SiS645DX/962 |
Mauro Carvalho Chehab | ccf988b | 2019-07-26 09:51:16 -0300 | [diff] [blame] | 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | Ken Healy |
| 80 | - patch for SiS655 |
| 81 | |
| 82 | To anyone else who has written w/ feedback, thanks! |