blob: 600194cf18045e3f43a9ba5c2c3450bf4f521e88 [file] [log] [blame]
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +00001Kernel driver smsc47b397
2========================
3
4Supported chips:
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -03005
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +00006 * SMSC LPC47B397-NC
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -03007
Mark M. Hoffman7ab83a92005-10-17 23:01:45 +02008 * SMSC SCH5307-NS
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -03009
Juerg Haefliger2dbbdb32007-06-20 15:41:33 -070010 * SMSC SCH5317
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030011
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000012 Prefix: 'smsc47b397'
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030013
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000014 Addresses scanned: none, address read from Super I/O config space
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030015
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000016 Datasheet: In this file
17
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030018Authors:
19
20 - Mark M. Hoffman <mhoffman@lightlink.com>
21 - Utilitek Systems, Inc.
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023November 23, 2004
24
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030025The following specification describes the SMSC LPC47B397-NC [1]_ sensor chip
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000026(for which there is no public datasheet available). This document was
Linus Torvalds1da177e2005-04-16 15:20:36 -070027provided by Craig Kelly (In-Store Broadcast Network) and edited/corrected
28by Mark M. Hoffman <mhoffman@lightlink.com>.
29
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030030.. [1] And SMSC SCH5307-NS and SCH5317, which have different device IDs but are
31 otherwise compatible.
Mark M. Hoffman7ab83a92005-10-17 23:01:45 +020032
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030033-------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030035Methods for detecting the HP SIO and reading the thermal data on a dc7100
36-------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38The thermal information on the dc7100 is contained in the SIO Hardware Monitor
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000039(HWM). The information is accessed through an index/data pair. The index/data
40pair is located at the HWM Base Address + 0 and the HWM Base Address + 1. The
Linus Torvalds1da177e2005-04-16 15:20:36 -070041HWM Base address can be obtained from Logical Device 8, registers 0x60 (MSB)
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000042and 0x61 (LSB). Currently we are using 0x480 for the HWM Base Address and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430x480 and 0x481 for the index/data pair.
44
45Reading temperature information.
46The temperature information is located in the following registers:
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030047
48=============== ======= =======================================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070049Temp1 0x25 (Currently, this reflects the CPU temp on all systems).
50Temp2 0x26
51Temp3 0x27
52Temp4 0x80
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030053=============== ======= =======================================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55Programming Example
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030056The following is an example of how to read the HWM temperature registers::
57
58 MOV DX,480H
59 MOV AX,25H
60 OUT DX,AL
61 MOV DX,481H
62 IN AL,DX
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64AL contains the data in hex, the temperature in Celsius is the decimal
65equivalent.
66
67Ex: If AL contains 0x2A, the temperature is 42 degrees C.
68
69Reading tach information.
70The fan speed information is located in the following registers:
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030071
72=============== ======= ======= =================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 LSB MSB
74Tach1 0x28 0x29 (Currently, this reflects the CPU
75 fan speed on all systems).
76Tach2 0x2A 0x2B
77Tach3 0x2C 0x2D
78Tach4 0x2E 0x2F
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030079=============== ======= ======= =================================
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030081.. Important::
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030083 Reading the tach LSB locks the tach MSB.
84 The LSB Must be read first.
85
86How to convert the tach reading to RPM
87--------------------------------------
88
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000089The tach reading (TCount) is given by: (Tach MSB * 256) + (Tach LSB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090The SIO counts the number of 90kHz (11.111us) pulses per revolution.
91RPM = 60/(TCount * 11.111us)
92
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -030093Example::
94
95 Reg 0x28 = 0x9B
96 Reg 0x29 = 0x08
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98TCount = 0x89B = 2203
99
100RPM = 60 / (2203 * 11.11111 E-6) = 2451 RPM
101
102Obtaining the SIO version.
103
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300104Configuration Sequence
105----------------------
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107To program the configuration registers, the following sequence must be followed:
1081. Enter Configuration Mode
1092. Configure the Configuration Registers
1103. Exit Configuration Mode.
111
112Enter Configuration Mode
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300113^^^^^^^^^^^^^^^^^^^^^^^^
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115To place the chip into the Configuration State The config key (0x55) is written
R.Marek@sh.cvut.cz2bf34a12005-05-26 12:42:11 +0000116to the CONFIG PORT (0x2E).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118Configuration Mode
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300119^^^^^^^^^^^^^^^^^^
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121In configuration mode, the INDEX PORT is located at the CONFIG PORT address and
122the DATA PORT is at INDEX PORT address + 1.
123
R.Marek@sh.cvut.cz2bf34a12005-05-26 12:42:11 +0000124The desired configuration registers are accessed in two steps:
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126a. Write the index of the Logical Device Number Configuration Register
127 (i.e., 0x07) to the INDEX PORT and then write the number of the
128 desired logical device to the DATA PORT.
129
130b. Write the address of the desired configuration register within the
131 logical device to the INDEX PORT and then write or read the config-
R.Marek@sh.cvut.cz2bf34a12005-05-26 12:42:11 +0000132 uration register through the DATA PORT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300134Note:
135 If accessing the Global Configuration Registers, step (a) is not required.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137Exit Configuration Mode
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300138^^^^^^^^^^^^^^^^^^^^^^^
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140To exit the Configuration State the write 0xAA to the CONFIG PORT (0x2E).
141The chip returns to the RUN State. (This is important).
142
143Programming Example
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300144^^^^^^^^^^^^^^^^^^^
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300146The following is an example of how to read the SIO Device ID located at 0x20:
147
148 ; ENTER CONFIGURATION MODE
149 MOV DX,02EH
150 MOV AX,055H
151 OUT DX,AL
152 ; GLOBAL CONFIGURATION REGISTER
153 MOV DX,02EH
154 MOV AL,20H
155 OUT DX,AL
156 ; READ THE DATA
157 MOV DX,02FH
158 IN AL,DX
159 ; EXIT CONFIGURATION MODE
160 MOV DX,02EH
161 MOV AX,0AAH
162 OUT DX,AL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164The registers of interest for identifying the SIO on the dc7100 are Device ID
165(0x20) and Device Rev (0x21).
166
Juerg Haefliger2dbbdb32007-06-20 15:41:33 -0700167The Device ID will read 0x6F (0x81 for SCH5307-NS, and 0x85 for SCH5317)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168The Device Rev currently reads 0x01
169
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300170Obtaining the HWM Base Address
171------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Mauro Carvalho Chehabb04f2f72019-04-17 06:46:28 -0300173The following is an example of how to read the HWM Base Address located in
174Logical Device 8::
175
176 ; ENTER CONFIGURATION MODE
177 MOV DX,02EH
178 MOV AX,055H
179 OUT DX,AL
180 ; CONFIGURE REGISTER CRE0,
181 ; LOGICAL DEVICE 8
182 MOV DX,02EH
183 MOV AL,07H
184 OUT DX,AL ;Point to LD# Config Reg
185 MOV DX,02FH
186 MOV AL, 08H
187 OUT DX,AL;Point to Logical Device 8
188 ;
189 MOV DX,02EH
190 MOV AL,60H
191 OUT DX,AL ; Point to HWM Base Addr MSB
192 MOV DX,02FH
193 IN AL,DX ; Get MSB of HWM Base Addr
194 ; EXIT CONFIGURATION MODE
195 MOV DX,02EH
196 MOV AX,0AAH
197 OUT DX,AL