i2c-i801 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. Kernel driver i2c-i801
  2. Supported adapters:
  3. * Intel 82801AA and 82801AB (ICH and ICH0 - part of the
  4. '810' and '810E' chipsets)
  5. * Intel 82801BA (ICH2 - part of the '815E' chipset)
  6. * Intel 82801CA/CAM (ICH3)
  7. * Intel 82801DB (ICH4) (HW PEC supported)
  8. * Intel 82801EB/ER (ICH5) (HW PEC supported)
  9. * Intel 6300ESB
  10. * Intel 82801FB/FR/FW/FRW (ICH6)
  11. * Intel 82801G (ICH7)
  12. * Intel 631xESB/632xESB (ESB2)
  13. * Intel 82801H (ICH8)
  14. * Intel 82801I (ICH9)
  15. * Intel EP80579 (Tolapai)
  16. * Intel 82801JI (ICH10)
  17. * Intel 5/3400 Series (PCH)
  18. * Intel Cougar Point (PCH)
  19. * Intel Patsburg (PCH)
  20. Datasheets: Publicly available at the Intel website
  21. Authors:
  22. Mark Studebaker <mdsxyz123@yahoo.com>
  23. Jean Delvare <khali@linux-fr.org>
  24. Module Parameters
  25. -----------------
  26. * disable_features (bit vector)
  27. Disable selected features normally supported by the device. This makes it
  28. possible to work around possible driver or hardware bugs if the feature in
  29. question doesn't work as intended for whatever reason. Bit values:
  30. 1 disable SMBus PEC
  31. 2 disable the block buffer
  32. 8 disable the I2C block read functionality
  33. Description
  34. -----------
  35. The ICH (properly known as the 82801AA), ICH0 (82801AB), ICH2 (82801BA),
  36. ICH3 (82801CA/CAM) and later devices (PCH) are Intel chips that are a part of
  37. Intel's '810' chipset for Celeron-based PCs, '810E' chipset for
  38. Pentium-based PCs, '815E' chipset, and others.
  39. The ICH chips contain at least SEVEN separate PCI functions in TWO logical
  40. PCI devices. An output of lspci will show something similar to the
  41. following:
  42. 00:1e.0 PCI bridge: Intel Corporation: Unknown device 2418 (rev 01)
  43. 00:1f.0 ISA bridge: Intel Corporation: Unknown device 2410 (rev 01)
  44. 00:1f.1 IDE interface: Intel Corporation: Unknown device 2411 (rev 01)
  45. 00:1f.2 USB Controller: Intel Corporation: Unknown device 2412 (rev 01)
  46. 00:1f.3 Unknown class [0c05]: Intel Corporation: Unknown device 2413 (rev 01)
  47. The SMBus controller is function 3 in device 1f. Class 0c05 is SMBus Serial
  48. Controller.
  49. The ICH chips are quite similar to Intel's PIIX4 chip, at least in the
  50. SMBus controller.
  51. Process Call Support
  52. --------------------
  53. Not supported.
  54. I2C Block Read Support
  55. ----------------------
  56. I2C block read is supported on the 82801EB (ICH5) and later chips.
  57. SMBus 2.0 Support
  58. -----------------
  59. The 82801DB (ICH4) and later chips support several SMBus 2.0 features.
  60. Hidden ICH SMBus
  61. ----------------
  62. If your system has an Intel ICH south bridge, but you do NOT see the
  63. SMBus device at 00:1f.3 in lspci, and you can't figure out any way in the
  64. BIOS to enable it, it means it has been hidden by the BIOS code. Asus is
  65. well known for first doing this on their P4B motherboard, and many other
  66. boards after that. Some vendor machines are affected as well.
  67. The first thing to try is the "i2c_ec" ACPI driver. It could be that the
  68. SMBus was hidden on purpose because it'll be driven by ACPI. If the
  69. i2c_ec driver works for you, just forget about the i2c-i801 driver and
  70. don't try to unhide the ICH SMBus. Even if i2c_ec doesn't work, you
  71. better make sure that the SMBus isn't used by the ACPI code. Try loading
  72. the "fan" and "thermal" drivers, and check in /proc/acpi/fan and
  73. /proc/acpi/thermal_zone. If you find anything there, it's likely that
  74. the ACPI is accessing the SMBus and it's safer not to unhide it. Only
  75. once you are certain that ACPI isn't using the SMBus, you can attempt
  76. to unhide it.
  77. In order to unhide the SMBus, we need to change the value of a PCI
  78. register before the kernel enumerates the PCI devices. This is done in
  79. drivers/pci/quirks.c, where all affected boards must be listed (see
  80. function asus_hides_smbus_hostbridge.) If the SMBus device is missing,
  81. and you think there's something interesting on the SMBus (e.g. a
  82. hardware monitoring chip), you need to add your board to the list.
  83. The motherboard is identified using the subvendor and subdevice IDs of the
  84. host bridge PCI device. Get yours with "lspci -n -v -s 00:00.0":
  85. 00:00.0 Class 0600: 8086:2570 (rev 02)
  86. Subsystem: 1043:80f2
  87. Flags: bus master, fast devsel, latency 0
  88. Memory at fc000000 (32-bit, prefetchable) [size=32M]
  89. Capabilities: [e4] #09 [2106]
  90. Capabilities: [a0] AGP version 3.0
  91. Here the host bridge ID is 2570 (82865G/PE/P), the subvendor ID is 1043
  92. (Asus) and the subdevice ID is 80f2 (P4P800-X). You can find the symbolic
  93. names for the bridge ID and the subvendor ID in include/linux/pci_ids.h,
  94. and then add a case for your subdevice ID at the right place in
  95. drivers/pci/quirks.c. Then please give it very good testing, to make sure
  96. that the unhidden SMBus doesn't conflict with e.g. ACPI.
  97. If it works, proves useful (i.e. there are usable chips on the SMBus)
  98. and seems safe, please submit a patch for inclusion into the kernel.
  99. Note: There's a useful script in lm_sensors 2.10.2 and later, named
  100. unhide_ICH_SMBus (in prog/hotplug), which uses the fakephp driver to
  101. temporarily unhide the SMBus without having to patch and recompile your
  102. kernel. It's very convenient if you just want to check if there's
  103. anything interesting on your hidden ICH SMBus.
  104. **********************
  105. The lm_sensors project gratefully acknowledges the support of Texas
  106. Instruments in the initial development of this driver.
  107. The lm_sensors project gratefully acknowledges the support of Intel in the
  108. development of SMBus 2.0 / ICH4 features of this driver.