root/lm-sensors/branches/lm-sensors-2.10/doc/busses/i2c-ali15x3

Revision 1584, 4.4 KB (checked in by khali, 10 years ago)

Documentation fixes and updates for ALI busses

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1Kernel driver `i2c-ali15x3.o'
2
3Status: Complete and tested; block reads/writes untested (not used by any
4        current chip driver)
5
6Supported adapters:
7  * Acer Labs, Inc. ALI 1533 and 1543C (south bridge)
8    Datasheet: Available at the Acer Labs website (password required)
9
10Author: Frodo Looijaard <frodol@dds.nl>, Philip Edelbrock
11        <phil@netroedge.com>, and Mark D. Studebaker <mdsxyz123@yahoo.com>
12
13License: GPL
14
15
16Module Parameters
17-----------------
18
19* force_addr: int
20  Initialize the base address of the i2c controller
21
22
23Notes
24-----
25
26The force_addr parameter is useful for boards that don't set the address
27in the BIOS. Does not do a PCI force; the device must still be present
28in lspci. Don't use this unless the driver complains that the
29base address is not set.
30Example: 'modprobe i2c-ali15x3 force_addr=0xe800'
31
32SMBus periodically hangs on ASUS P5A motherboards and can only be
33cleared by a power cycle. Cause unknown (see Issues below).
34
35
36Description
37-----------
38
39This is the driver for the SMB Host controller on
40Acer Labs Inc. (ALI) M1541 and M1543C South Bridges.
41
42The M1543C is a South bridge for desktop systems.
43The M1541 is a South bridge for portable systems.
44They are part of the following ALI chipsets:
45   "Aladdin Pro 2": Includes the M1621 Slot 1 North bridge
46   with AGP and 100MHz CPU Front Side bus
47
48   "Aladdin V": Includes the M1541 Socket 7 North bridge
49   with AGP and 100MHz CPU Front Side bus
50   Some Aladdin V motherboards:
51        Asus P5A
52        Atrend ATC-5220
53        BCM/GVC VP1541
54        Biostar M5ALA
55        Gigabyte GA-5AX (** Generally doesn't work because the BIOS doesn't
56                            enable the 7101 device! **)
57        Iwill XA100 Plus
58        Micronics C200
59        Microstar (MSI) MS-5169
60
61   "Aladdin IV": Includes the M1541 Socket 7 North bridge
62   with host bus up to 83.3 MHz.
63
64For an overview of these chips see http://www.acerlabs.com
65At this time the full data sheets on the web site are password protected,
66however if you contact the ALI office in San Jose
67they may give you the password.
68
69The M1533/M1543C devices appear as FOUR separate devices
70on the PCI bus. An output of lspci will show something similar
71to the following:
72
73  00:02.0 USB Controller: Acer Laboratories Inc. M5237 (rev 03)
74  00:03.0 Bridge: Acer Laboratories Inc. M7101      <= THIS IS THE ONE WE NEED
75  00:07.0 ISA bridge: Acer Laboratories Inc. M1533 (rev c3)
76  00:0f.0 IDE interface: Acer Laboratories Inc. M5229 (rev c1)
77
78** IMPORTANT **
79** If you have a 1533 or 1543C on the board and you get
80** "ali15x3.o: Error: Can't detect ali15x3!"
81** then run lspci.
82** If you see the 1533 and 5229 devices but NOT the 7101 device,
83** then you must enable ACPI, the PMU, SMB, or something similar
84** in the BIOS. If you can't figure out how to enable the
85** 7101 device in the BIOS, you can try one of the "hotplug" modules -
86** see below.
87** The driver won't work if it can't find the 7101 device.
88
89The SMB controller is part of the 7101 device, which is an
90ACPI-compliant Power Management Unit (PMU).
91
92The whole 7101 device has to be enabled for the SMB to work.
93You can't just enable the SMB alone.
94The SMB and the ACPI have separate I/O spaces.
95We make sure that the SMB is enabled. We leave the ACPI alone.
96
97
98Features
99--------
100This driver controls the SMB Host only.
101The SMB Slave controller on the M15X3 is not enabled.
102This driver does not use interrupts.
103
104
105Issues
106------
107This driver requests the I/O space for only the SMB
108registers. It doesn't use the ACPI region.
109
110On the ASUS P5A motherboard, there are several reports that
111the SMBus will hang and this can only be resolved by
112powering off the computer. It appears to be worse when the board
113gets hot, for example under heavy CPU load, or in the summer.
114There may be electrical problems on this board.
115On the P5A, the W83781D sensor chip is on both the ISA and
116SMBus. Therefore the SMBus hangs can generally be avoided
117by accessing the W83781D on the ISA bus only.
118
119
120Hot Plug Modules
121----------------
122
123There are EXPERIMENTAL "hotplug" modules which will enable the
124m7101 device if it is not enabled on your motherboard.
125Use these at your own risk. Read the README file carefully.
126
127m7101 Version 0.1 for 2.2 and early 2.3 kernels:
128        README:            http://www.netroedge.com/~lm78/misc/README-m7101.txt
129        source and README: http://www.netroedge.com/~lm78/misc/m7101-0.1.tar.gz
130
131m7101 Version 0.2 for 2.4 and later 2.3 kernels:
132        In the directory prog/hotplug in this package.
133        Must be built separately.
134
135
Note: See TracBrowser for help on using the browser.