i2c-sis96x.rst 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ========================
  2. Kernel driver i2c-sis96x
  3. ========================
  4. Replaces 2.4.x i2c-sis645
  5. Supported adapters:
  6. * Silicon Integrated Systems Corp (SiS)
  7. Any combination of these host bridges:
  8. 645, 645DX (aka 646), 648, 650, 651, 655, 735, 745, 746
  9. and these south bridges:
  10. 961, 962, 963(L)
  11. Author: Mark M. Hoffman <[email protected]>
  12. Description
  13. -----------
  14. This SMBus only driver is known to work on motherboards with the above
  15. named chipset combinations. The driver was developed without benefit of a
  16. proper datasheet from SiS. The SMBus registers are assumed compatible with
  17. those of the SiS630, although they are located in a completely different
  18. place. Thanks to Alexander Malysh <[email protected]> for providing the
  19. SiS630 datasheet (and driver).
  20. The command ``lspci`` as root should produce something like these lines::
  21. 00:00.0 Host bridge: Silicon Integrated Systems [SiS]: Unknown device 0645
  22. 00:02.0 ISA bridge: Silicon Integrated Systems [SiS] 85C503/5513
  23. 00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown device 0016
  24. or perhaps this::
  25. 00:00.0 Host bridge: Silicon Integrated Systems [SiS]: Unknown device 0645
  26. 00:02.0 ISA bridge: Silicon Integrated Systems [SiS]: Unknown device 0961
  27. 00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown device 0016
  28. (kernel versions later than 2.4.18 may fill in the "Unknown"s)
  29. If you can't see it please look on quirk_sis_96x_smbus
  30. (drivers/pci/quirks.c) (also if southbridge detection fails)
  31. I suspect that this driver could be made to work for the following SiS
  32. chipsets as well: 635, and 635T. If anyone owns a board with those chips
  33. AND is willing to risk crashing & burning an otherwise well-behaved kernel
  34. in the name of progress... please contact me at <[email protected]> or
  35. via the linux-i2c mailing list: <[email protected]>. Please send bug
  36. reports and/or success stories as well.
  37. TO DOs
  38. ------
  39. * The driver does not support SMBus block reads/writes; I may add them if a
  40. scenario is found where they're needed.
  41. Thank You
  42. ---------
  43. Mark D. Studebaker <[email protected]>
  44. - design hints and bug fixes
  45. Alexander Maylsh <[email protected]>
  46. - ditto, plus an important datasheet... almost the one I really wanted
  47. Hans-Günter Lütke Uphues <[email protected]>
  48. - patch for SiS735
  49. Robert Zwerus <[email protected]>
  50. - testing for SiS645DX
  51. Kianusch Sayah Karadji <[email protected]>
  52. - patch for SiS645DX/962
  53. Ken Healy
  54. - patch for SiS655
  55. To anyone else who has written w/ feedback, thanks!