blob: 7d6d9dfcc58a6bb8a40a5492b0b428664e5b861a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare455f3322006-06-12 21:52:02 +02002 i2c-i801.c - Part of lm_sensors, Linux kernel modules for hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 monitoring
4 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>,
5 Philip Edelbrock <phil@netroedge.com>, and Mark D. Studebaker
6 <mdsxyz123@yahoo.com>
Jean Delvare63420642008-01-27 18:14:50 +01007 Copyright (C) 2007 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24/*
Jean Delvareae7b0492008-01-27 18:14:49 +010025 Supports the following Intel I/O Controller Hubs (ICH):
26
27 I/O Block I2C
28 region SMBus Block proc. block
29 Chip name PCI ID size PEC buffer call read
30 ----------------------------------------------------------------------
31 82801AA (ICH) 0x2413 16 no no no no
32 82801AB (ICH0) 0x2423 16 no no no no
33 82801BA (ICH2) 0x2443 16 no no no no
34 82801CA (ICH3) 0x2483 32 soft no no no
35 82801DB (ICH4) 0x24c3 32 hard yes no no
36 82801E (ICH5) 0x24d3 32 hard yes yes yes
37 6300ESB 0x25a4 32 hard yes yes yes
38 82801F (ICH6) 0x266a 32 hard yes yes yes
39 6310ESB/6320ESB 0x269b 32 hard yes yes yes
40 82801G (ICH7) 0x27da 32 hard yes yes yes
41 82801H (ICH8) 0x283e 32 hard yes yes yes
42 82801I (ICH9) 0x2930 32 hard yes yes yes
Gaston, Jason Dd28dc712008-02-24 20:03:42 +010043 Tolapai 0x5032 32 hard yes yes yes
44 ICH10 0x3a30 32 hard yes yes yes
45 ICH10 0x3a60 32 hard yes yes yes
Jean Delvareae7b0492008-01-27 18:14:49 +010046
47 Features supported by this driver:
48 Software PEC no
49 Hardware PEC yes
50 Block buffer yes
51 Block process call transaction no
Jean Delvare63420642008-01-27 18:14:50 +010052 I2C block read transaction yes (doesn't use the block buffer)
Jean Delvareae7b0492008-01-27 18:14:49 +010053
54 See the file Documentation/i2c/busses/i2c-i801 for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070055*/
56
57/* Note: we assume there can only be one I801, with one SMBus interface */
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/module.h>
60#include <linux/pci.h>
61#include <linux/kernel.h>
62#include <linux/stddef.h>
63#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/ioport.h>
65#include <linux/init.h>
66#include <linux/i2c.h>
67#include <asm/io.h>
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* I801 SMBus address offsets */
70#define SMBHSTSTS (0 + i801_smba)
71#define SMBHSTCNT (2 + i801_smba)
72#define SMBHSTCMD (3 + i801_smba)
73#define SMBHSTADD (4 + i801_smba)
74#define SMBHSTDAT0 (5 + i801_smba)
75#define SMBHSTDAT1 (6 + i801_smba)
76#define SMBBLKDAT (7 + i801_smba)
Jean Delvareae7b0492008-01-27 18:14:49 +010077#define SMBPEC (8 + i801_smba) /* ICH3 and later */
78#define SMBAUXSTS (12 + i801_smba) /* ICH4 and later */
79#define SMBAUXCTL (13 + i801_smba) /* ICH4 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* PCI Address Constants */
Jean Delvare6dcc19d2006-06-12 21:53:02 +020082#define SMBBAR 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define SMBHSTCFG 0x040
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* Host configuration bits for SMBHSTCFG */
86#define SMBHSTCFG_HST_EN 1
87#define SMBHSTCFG_SMB_SMI_EN 2
88#define SMBHSTCFG_I2C_EN 4
89
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +020090/* Auxillary control register bits, ICH4+ only */
91#define SMBAUXCTL_CRC 1
92#define SMBAUXCTL_E32B 2
93
94/* kill bit for SMBHSTCNT */
95#define SMBHSTCNT_KILL 2
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* Other settings */
98#define MAX_TIMEOUT 100
99#define ENABLE_INT9 0 /* set to 0x01 to enable - untested */
100
101/* I801 command constants */
102#define I801_QUICK 0x00
103#define I801_BYTE 0x04
104#define I801_BYTE_DATA 0x08
105#define I801_WORD_DATA 0x0C
Jean Delvareae7b0492008-01-27 18:14:49 +0100106#define I801_PROC_CALL 0x10 /* unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define I801_BLOCK_DATA 0x14
Jean Delvare63420642008-01-27 18:14:50 +0100108#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define I801_BLOCK_LAST 0x34
Jean Delvare63420642008-01-27 18:14:50 +0100110#define I801_I2C_BLOCK_LAST 0x38 /* ICH5 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define I801_START 0x40
Jean Delvareae7b0492008-01-27 18:14:49 +0100112#define I801_PEC_EN 0x80 /* ICH3 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200114/* I801 Hosts Status register bits */
115#define SMBHSTSTS_BYTE_DONE 0x80
116#define SMBHSTSTS_INUSE_STS 0x40
117#define SMBHSTSTS_SMBALERT_STS 0x20
118#define SMBHSTSTS_FAILED 0x10
119#define SMBHSTSTS_BUS_ERR 0x08
120#define SMBHSTSTS_DEV_ERR 0x04
121#define SMBHSTSTS_INTR 0x02
122#define SMBHSTSTS_HOST_BUSY 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200124static unsigned long i801_smba;
Jean Delvarea5aaea32007-03-22 19:49:01 +0100125static unsigned char i801_original_hstcfg;
Jean Delvared6072f82005-09-25 16:37:04 +0200126static struct pci_driver i801_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static struct pci_dev *I801_dev;
Jean Delvare369f6f42008-01-27 18:14:50 +0100128
129#define FEATURE_SMBUS_PEC (1 << 0)
130#define FEATURE_BLOCK_BUFFER (1 << 1)
131#define FEATURE_BLOCK_PROC (1 << 2)
132#define FEATURE_I2C_BLOCK_READ (1 << 3)
133static unsigned int i801_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200135static int i801_transaction(int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 int temp;
138 int result = 0;
139 int timeout = 0;
140
Jean Delvare368609c2005-07-29 12:15:07 -0700141 dev_dbg(&I801_dev->dev, "Transaction (pre): CNT=%02x, CMD=%02x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
143 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
144 inb_p(SMBHSTDAT1));
145
146 /* Make sure the SMBus host is ready to start transmitting */
147 /* 0x1f = Failed, Bus_Err, Dev_Err, Intr, Host_Busy */
148 if ((temp = (0x1f & inb_p(SMBHSTSTS))) != 0x00) {
Jean Delvare541e6a02005-06-23 22:18:08 +0200149 dev_dbg(&I801_dev->dev, "SMBus busy (%02x). Resetting...\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 temp);
151 outb_p(temp, SMBHSTSTS);
152 if ((temp = (0x1f & inb_p(SMBHSTSTS))) != 0x00) {
153 dev_dbg(&I801_dev->dev, "Failed! (%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200154 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 } else {
Jean Delvarefcdd96e2007-02-13 22:08:59 +0100156 dev_dbg(&I801_dev->dev, "Successful!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158 }
159
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200160 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
161 * INTREN, SMBSCMD are passed in xact */
162 outb_p(xact | I801_START, SMBHSTCNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /* We will always wait for a fraction of a second! */
165 do {
166 msleep(1);
167 temp = inb_p(SMBHSTSTS);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200168 } while ((temp & SMBHSTSTS_HOST_BUSY) && (timeout++ < MAX_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* If the SMBus is still busy, we give up */
171 if (timeout >= MAX_TIMEOUT) {
172 dev_dbg(&I801_dev->dev, "SMBus Timeout!\n");
David Brownell97140342008-07-14 22:38:25 +0200173 result = -ETIMEDOUT;
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200174 /* try to stop the current command */
175 dev_dbg(&I801_dev->dev, "Terminating the current operation\n");
176 outb_p(inb_p(SMBHSTCNT) | SMBHSTCNT_KILL, SMBHSTCNT);
177 msleep(1);
178 outb_p(inb_p(SMBHSTCNT) & (~SMBHSTCNT_KILL), SMBHSTCNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200181 if (temp & SMBHSTSTS_FAILED) {
David Brownell97140342008-07-14 22:38:25 +0200182 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 dev_dbg(&I801_dev->dev, "Error: Failed bus transaction\n");
184 }
185
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200186 if (temp & SMBHSTSTS_BUS_ERR) {
David Brownell97140342008-07-14 22:38:25 +0200187 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 dev_err(&I801_dev->dev, "Bus collision! SMBus may be locked "
189 "until next hard reset. (sorry!)\n");
190 /* Clock stops and slave is stuck in mid-transmission */
191 }
192
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200193 if (temp & SMBHSTSTS_DEV_ERR) {
David Brownell97140342008-07-14 22:38:25 +0200194 result = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 dev_dbg(&I801_dev->dev, "Error: no response!\n");
196 }
197
198 if ((inb_p(SMBHSTSTS) & 0x1f) != 0x00)
199 outb_p(inb(SMBHSTSTS), SMBHSTSTS);
200
201 if ((temp = (0x1f & inb_p(SMBHSTSTS))) != 0x00) {
Jean Delvare368609c2005-07-29 12:15:07 -0700202 dev_dbg(&I801_dev->dev, "Failed reset at end of transaction "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 "(%02x)\n", temp);
204 }
205 dev_dbg(&I801_dev->dev, "Transaction (post): CNT=%02x, CMD=%02x, "
206 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
207 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
208 inb_p(SMBHSTDAT1));
209 return result;
210}
211
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200212/* wait for INTR bit as advised by Intel */
213static void i801_wait_hwpec(void)
214{
215 int timeout = 0;
216 int temp;
217
218 do {
219 msleep(1);
220 temp = inb_p(SMBHSTSTS);
221 } while ((!(temp & SMBHSTSTS_INTR))
222 && (timeout++ < MAX_TIMEOUT));
223
224 if (timeout >= MAX_TIMEOUT) {
225 dev_dbg(&I801_dev->dev, "PEC Timeout!\n");
226 }
227 outb_p(temp, SMBHSTSTS);
228}
229
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200230static int i801_block_transaction_by_block(union i2c_smbus_data *data,
231 char read_write, int hwpec)
232{
233 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200234 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200235
236 inb_p(SMBHSTCNT); /* reset the data buffer index */
237
238 /* Use 32-byte buffer to process this transaction */
239 if (read_write == I2C_SMBUS_WRITE) {
240 len = data->block[0];
241 outb_p(len, SMBHSTDAT0);
242 for (i = 0; i < len; i++)
243 outb_p(data->block[i+1], SMBBLKDAT);
244 }
245
David Brownell97140342008-07-14 22:38:25 +0200246 status = i801_transaction(I801_BLOCK_DATA | ENABLE_INT9 |
247 I801_PEC_EN * hwpec);
248 if (status)
249 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200250
251 if (read_write == I2C_SMBUS_READ) {
252 len = inb_p(SMBHSTDAT0);
253 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200254 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200255
256 data->block[0] = len;
257 for (i = 0; i < len; i++)
258 data->block[i + 1] = inb_p(SMBBLKDAT);
259 }
260 return 0;
261}
262
263static int i801_block_transaction_byte_by_byte(union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100264 char read_write, int command,
265 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 int i, len;
268 int smbcmd;
269 int temp;
270 int result = 0;
271 int timeout;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200272 unsigned char errmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200274 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 outb_p(len, SMBHSTDAT0);
278 outb_p(data->block[1], SMBBLKDAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
281 for (i = 1; i <= len; i++) {
Jean Delvare63420642008-01-27 18:14:50 +0100282 if (i == len && read_write == I2C_SMBUS_READ) {
283 if (command == I2C_SMBUS_I2C_BLOCK_DATA)
284 smbcmd = I801_I2C_BLOCK_LAST;
285 else
286 smbcmd = I801_BLOCK_LAST;
287 } else {
288 if (command == I2C_SMBUS_I2C_BLOCK_DATA
289 && read_write == I2C_SMBUS_READ)
290 smbcmd = I801_I2C_BLOCK_DATA;
291 else
292 smbcmd = I801_BLOCK_DATA;
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 outb_p(smbcmd | ENABLE_INT9, SMBHSTCNT);
295
296 dev_dbg(&I801_dev->dev, "Block (pre %d): CNT=%02x, CMD=%02x, "
Jean Delvare63420642008-01-27 18:14:50 +0100297 "ADD=%02x, DAT0=%02x, DAT1=%02x, BLKDAT=%02x\n", i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 inb_p(SMBHSTCNT), inb_p(SMBHSTCMD), inb_p(SMBHSTADD),
Jean Delvare63420642008-01-27 18:14:50 +0100299 inb_p(SMBHSTDAT0), inb_p(SMBHSTDAT1), inb_p(SMBBLKDAT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 /* Make sure the SMBus host is ready to start transmitting */
302 temp = inb_p(SMBHSTSTS);
303 if (i == 1) {
Jean Delvare002cf632007-08-14 18:37:13 +0200304 /* Erroneous conditions before transaction:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * Byte_Done, Failed, Bus_Err, Dev_Err, Intr, Host_Busy */
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200306 errmask = 0x9f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 } else {
Jean Delvare002cf632007-08-14 18:37:13 +0200308 /* Erroneous conditions during transaction:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 * Failed, Bus_Err, Dev_Err, Intr */
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200310 errmask = 0x1e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312 if (temp & errmask) {
313 dev_dbg(&I801_dev->dev, "SMBus busy (%02x). "
Jean Delvare541e6a02005-06-23 22:18:08 +0200314 "Resetting...\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 outb_p(temp, SMBHSTSTS);
316 if (((temp = inb_p(SMBHSTSTS)) & errmask) != 0x00) {
317 dev_err(&I801_dev->dev,
318 "Reset failed! (%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200319 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200321 if (i != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* if die in middle of block transaction, fail */
David Brownell97140342008-07-14 22:38:25 +0200323 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325
326 if (i == 1)
327 outb_p(inb(SMBHSTCNT) | I801_START, SMBHSTCNT);
328
329 /* We will always wait for a fraction of a second! */
330 timeout = 0;
331 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 msleep(1);
Jean Delvare397e2f62006-06-12 21:49:36 +0200333 temp = inb_p(SMBHSTSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200335 while ((!(temp & SMBHSTSTS_BYTE_DONE))
336 && (timeout++ < MAX_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /* If the SMBus is still busy, we give up */
339 if (timeout >= MAX_TIMEOUT) {
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200340 /* try to stop the current command */
341 dev_dbg(&I801_dev->dev, "Terminating the current "
342 "operation\n");
343 outb_p(inb_p(SMBHSTCNT) | SMBHSTCNT_KILL, SMBHSTCNT);
344 msleep(1);
345 outb_p(inb_p(SMBHSTCNT) & (~SMBHSTCNT_KILL),
346 SMBHSTCNT);
David Brownell97140342008-07-14 22:38:25 +0200347 result = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 dev_dbg(&I801_dev->dev, "SMBus Timeout!\n");
349 }
350
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200351 if (temp & SMBHSTSTS_FAILED) {
David Brownell97140342008-07-14 22:38:25 +0200352 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 dev_dbg(&I801_dev->dev,
354 "Error: Failed bus transaction\n");
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200355 } else if (temp & SMBHSTSTS_BUS_ERR) {
David Brownell97140342008-07-14 22:38:25 +0200356 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dev_err(&I801_dev->dev, "Bus collision!\n");
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200358 } else if (temp & SMBHSTSTS_DEV_ERR) {
David Brownell97140342008-07-14 22:38:25 +0200359 result = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 dev_dbg(&I801_dev->dev, "Error: no response!\n");
361 }
362
Jean Delvare63420642008-01-27 18:14:50 +0100363 if (i == 1 && read_write == I2C_SMBUS_READ
364 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 len = inb_p(SMBHSTDAT0);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200366 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200367 return -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 data->block[0] = len;
369 }
370
371 /* Retrieve/store value in SMBBLKDAT */
372 if (read_write == I2C_SMBUS_READ)
373 data->block[i] = inb_p(SMBBLKDAT);
374 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
375 outb_p(data->block[i+1], SMBBLKDAT);
376 if ((temp & 0x9e) != 0x00)
377 outb_p(temp, SMBHSTSTS); /* signals SMBBLKDAT ready */
378
379 if ((temp = (0x1e & inb_p(SMBHSTSTS))) != 0x00) {
380 dev_dbg(&I801_dev->dev,
381 "Bad status (%02x) at end of transaction\n",
382 temp);
383 }
384 dev_dbg(&I801_dev->dev, "Block (post %d): CNT=%02x, CMD=%02x, "
Jean Delvare63420642008-01-27 18:14:50 +0100385 "ADD=%02x, DAT0=%02x, DAT1=%02x, BLKDAT=%02x\n", i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 inb_p(SMBHSTCNT), inb_p(SMBHSTCMD), inb_p(SMBHSTADD),
Jean Delvare63420642008-01-27 18:14:50 +0100387 inb_p(SMBHSTDAT0), inb_p(SMBHSTDAT1), inb_p(SMBBLKDAT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (result < 0)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200390 return result;
391 }
392 return result;
393}
394
395static int i801_set_block_buffer_mode(void)
396{
397 outb_p(inb_p(SMBAUXCTL) | SMBAUXCTL_E32B, SMBAUXCTL);
398 if ((inb_p(SMBAUXCTL) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200399 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200400 return 0;
401}
402
403/* Block transaction function */
404static int i801_block_transaction(union i2c_smbus_data *data, char read_write,
405 int command, int hwpec)
406{
407 int result = 0;
408 unsigned char hostc;
409
410 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
411 if (read_write == I2C_SMBUS_WRITE) {
412 /* set I2C_EN bit in configuration register */
413 pci_read_config_byte(I801_dev, SMBHSTCFG, &hostc);
414 pci_write_config_byte(I801_dev, SMBHSTCFG,
415 hostc | SMBHSTCFG_I2C_EN);
Jean Delvare63420642008-01-27 18:14:50 +0100416 } else if (!(i801_features & FEATURE_I2C_BLOCK_READ)) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200417 dev_err(&I801_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100418 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200419 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
Jean Delvare63420642008-01-27 18:14:50 +0100423 if (read_write == I2C_SMBUS_WRITE
424 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200425 if (data->block[0] < 1)
426 data->block[0] = 1;
427 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
428 data->block[0] = I2C_SMBUS_BLOCK_MAX;
429 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100430 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200431 }
432
Jean Delvare369f6f42008-01-27 18:14:50 +0100433 if ((i801_features & FEATURE_BLOCK_BUFFER)
Jean Delvare63420642008-01-27 18:14:50 +0100434 && !(command == I2C_SMBUS_I2C_BLOCK_DATA
435 && read_write == I2C_SMBUS_READ)
Jean Delvare369f6f42008-01-27 18:14:50 +0100436 && i801_set_block_buffer_mode() == 0)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200437 result = i801_block_transaction_by_block(data, read_write,
438 hwpec);
439 else
440 result = i801_block_transaction_byte_by_byte(data, read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100441 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200442
443 if (result == 0 && hwpec)
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200444 i801_wait_hwpec();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Jean Delvare63420642008-01-27 18:14:50 +0100446 if (command == I2C_SMBUS_I2C_BLOCK_DATA
447 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* restore saved configuration register value */
449 pci_write_config_byte(I801_dev, SMBHSTCFG, hostc);
450 }
451 return result;
452}
453
David Brownell97140342008-07-14 22:38:25 +0200454/* Return negative errno on error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455static s32 i801_access(struct i2c_adapter * adap, u16 addr,
456 unsigned short flags, char read_write, u8 command,
457 int size, union i2c_smbus_data * data)
458{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200459 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 int block = 0;
461 int ret, xact = 0;
462
Jean Delvare369f6f42008-01-27 18:14:50 +0100463 hwpec = (i801_features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200464 && size != I2C_SMBUS_QUICK
465 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 switch (size) {
468 case I2C_SMBUS_QUICK:
469 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
470 SMBHSTADD);
471 xact = I801_QUICK;
472 break;
473 case I2C_SMBUS_BYTE:
474 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
475 SMBHSTADD);
476 if (read_write == I2C_SMBUS_WRITE)
477 outb_p(command, SMBHSTCMD);
478 xact = I801_BYTE;
479 break;
480 case I2C_SMBUS_BYTE_DATA:
481 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
482 SMBHSTADD);
483 outb_p(command, SMBHSTCMD);
484 if (read_write == I2C_SMBUS_WRITE)
485 outb_p(data->byte, SMBHSTDAT0);
486 xact = I801_BYTE_DATA;
487 break;
488 case I2C_SMBUS_WORD_DATA:
489 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
490 SMBHSTADD);
491 outb_p(command, SMBHSTCMD);
492 if (read_write == I2C_SMBUS_WRITE) {
493 outb_p(data->word & 0xff, SMBHSTDAT0);
494 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
495 }
496 xact = I801_WORD_DATA;
497 break;
498 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
500 SMBHSTADD);
501 outb_p(command, SMBHSTCMD);
502 block = 1;
503 break;
Jean Delvare63420642008-01-27 18:14:50 +0100504 case I2C_SMBUS_I2C_BLOCK_DATA:
505 /* NB: page 240 of ICH5 datasheet shows that the R/#W
506 * bit should be cleared here, even when reading */
507 outb_p((addr & 0x7f) << 1, SMBHSTADD);
508 if (read_write == I2C_SMBUS_READ) {
509 /* NB: page 240 of ICH5 datasheet also shows
510 * that DATA1 is the cmd field when reading */
511 outb_p(command, SMBHSTDAT1);
512 } else
513 outb_p(command, SMBHSTCMD);
514 block = 1;
515 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 case I2C_SMBUS_PROC_CALL:
517 default:
518 dev_err(&I801_dev->dev, "Unsupported transaction %d\n", size);
David Brownell97140342008-07-14 22:38:25 +0200519 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200522 if (hwpec) /* enable/disable hardware PEC */
523 outb_p(inb_p(SMBAUXCTL) | SMBAUXCTL_CRC, SMBAUXCTL);
524 else
525 outb_p(inb_p(SMBAUXCTL) & (~SMBAUXCTL_CRC), SMBAUXCTL);
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if(block)
Jean Delvare585b3162005-10-26 21:31:15 +0200528 ret = i801_block_transaction(data, read_write, size, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200529 else
530 ret = i801_transaction(xact | ENABLE_INT9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Jean Delvarec79cfba2006-04-20 02:43:18 -0700532 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200533 time, so we forcibly disable it after every transaction. Turn off
534 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100535 if (hwpec || block)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200536 outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B),
537 SMBAUXCTL);
Jean Delvarec79cfba2006-04-20 02:43:18 -0700538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if(block)
540 return ret;
541 if(ret)
David Brownell97140342008-07-14 22:38:25 +0200542 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
544 return 0;
545
546 switch (xact & 0x7f) {
547 case I801_BYTE: /* Result put in SMBHSTDAT0 */
548 case I801_BYTE_DATA:
549 data->byte = inb_p(SMBHSTDAT0);
550 break;
551 case I801_WORD_DATA:
552 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
553 break;
554 }
555 return 0;
556}
557
558
559static u32 i801_func(struct i2c_adapter *adapter)
560{
561 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100562 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
563 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
Jean Delvare63420642008-01-27 18:14:50 +0100564 ((i801_features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
565 ((i801_features & FEATURE_I2C_BLOCK_READ) ?
566 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Jean Delvare8f9082c2006-09-03 22:39:46 +0200569static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 .smbus_xfer = i801_access,
571 .functionality = i801_func,
572};
573
574static struct i2c_adapter i801_adapter = {
575 .owner = THIS_MODULE,
Stephen Hemminger9ace5552007-02-13 22:09:01 +0100576 .id = I2C_HW_SMBUS_I801,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 .class = I2C_CLASS_HWMON,
578 .algo = &smbus_algorithm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579};
580
581static struct pci_device_id i801_ids[] = {
582 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
583 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
584 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
585 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
586 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
587 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
588 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
589 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
590 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700591 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800592 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800593 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Jason Gastone07bc672007-10-13 23:56:31 +0200594 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TOLAPAI_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100595 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
596 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 { 0, }
598};
599
600MODULE_DEVICE_TABLE (pci, i801_ids);
601
602static int __devinit i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
603{
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200604 unsigned char temp;
Jean Delvare455f3322006-06-12 21:52:02 +0200605 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200607 I801_dev = dev;
Jean Delvare369f6f42008-01-27 18:14:50 +0100608 i801_features = 0;
Jean Delvare250d1bd2006-12-10 21:21:33 +0100609 switch (dev->device) {
Jean Delvare250d1bd2006-12-10 21:21:33 +0100610 case PCI_DEVICE_ID_INTEL_82801EB_3:
611 case PCI_DEVICE_ID_INTEL_ESB_4:
612 case PCI_DEVICE_ID_INTEL_ICH6_16:
613 case PCI_DEVICE_ID_INTEL_ICH7_17:
614 case PCI_DEVICE_ID_INTEL_ESB2_17:
615 case PCI_DEVICE_ID_INTEL_ICH8_5:
616 case PCI_DEVICE_ID_INTEL_ICH9_6:
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100617 case PCI_DEVICE_ID_INTEL_TOLAPAI_1:
618 case PCI_DEVICE_ID_INTEL_ICH10_4:
619 case PCI_DEVICE_ID_INTEL_ICH10_5:
Jean Delvare63420642008-01-27 18:14:50 +0100620 i801_features |= FEATURE_I2C_BLOCK_READ;
621 /* fall through */
622 case PCI_DEVICE_ID_INTEL_82801DB_3:
Jean Delvare369f6f42008-01-27 18:14:50 +0100623 i801_features |= FEATURE_SMBUS_PEC;
624 i801_features |= FEATURE_BLOCK_BUFFER;
Jean Delvare250d1bd2006-12-10 21:21:33 +0100625 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +0100626 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200627
628 err = pci_enable_device(dev);
629 if (err) {
630 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
631 err);
632 goto exit;
633 }
634
635 /* Determine the address of the SMBus area */
636 i801_smba = pci_resource_start(dev, SMBBAR);
637 if (!i801_smba) {
638 dev_err(&dev->dev, "SMBus base address uninitialized, "
639 "upgrade BIOS\n");
640 err = -ENODEV;
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200641 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200642 }
643
644 err = pci_request_region(dev, SMBBAR, i801_driver.name);
645 if (err) {
646 dev_err(&dev->dev, "Failed to request SMBus region "
Andrew Morton598736c2006-06-30 01:56:20 -0700647 "0x%lx-0x%Lx\n", i801_smba,
648 (unsigned long long)pci_resource_end(dev, SMBBAR));
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200649 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200650 }
651
652 pci_read_config_byte(I801_dev, SMBHSTCFG, &temp);
Jean Delvarea5aaea32007-03-22 19:49:01 +0100653 i801_original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200654 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
655 if (!(temp & SMBHSTCFG_HST_EN)) {
656 dev_info(&dev->dev, "Enabling SMBus device\n");
657 temp |= SMBHSTCFG_HST_EN;
658 }
659 pci_write_config_byte(I801_dev, SMBHSTCFG, temp);
660
661 if (temp & SMBHSTCFG_SMB_SMI_EN)
662 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
663 else
664 dev_dbg(&dev->dev, "SMBus using PCI Interrupt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Jean Delvarea0921b62008-01-27 18:14:50 +0100666 /* Clear special mode bits */
667 if (i801_features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
668 outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B),
669 SMBAUXCTL);
670
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100671 /* set up the sysfs linkage to our parent device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 i801_adapter.dev.parent = &dev->dev;
673
David Brownell2096b952007-05-01 23:26:28 +0200674 snprintf(i801_adapter.name, sizeof(i801_adapter.name),
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200675 "SMBus I801 adapter at %04lx", i801_smba);
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200676 err = i2c_add_adapter(&i801_adapter);
677 if (err) {
678 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200679 goto exit_release;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200680 }
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200681 return 0;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200682
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200683exit_release:
684 pci_release_region(dev, SMBBAR);
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200685exit:
686 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
689static void __devexit i801_remove(struct pci_dev *dev)
690{
691 i2c_del_adapter(&i801_adapter);
Jean Delvarea5aaea32007-03-22 19:49:01 +0100692 pci_write_config_byte(I801_dev, SMBHSTCFG, i801_original_hstcfg);
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200693 pci_release_region(dev, SMBBAR);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200694 /*
695 * do not call pci_disable_device(dev) since it can cause hard hangs on
696 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Jean Delvarea5aaea32007-03-22 19:49:01 +0100700#ifdef CONFIG_PM
701static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
702{
703 pci_save_state(dev);
704 pci_write_config_byte(dev, SMBHSTCFG, i801_original_hstcfg);
705 pci_set_power_state(dev, pci_choose_state(dev, mesg));
706 return 0;
707}
708
709static int i801_resume(struct pci_dev *dev)
710{
711 pci_set_power_state(dev, PCI_D0);
712 pci_restore_state(dev);
713 return pci_enable_device(dev);
714}
715#else
716#define i801_suspend NULL
717#define i801_resume NULL
718#endif
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 .name = "i801_smbus",
722 .id_table = i801_ids,
723 .probe = i801_probe,
724 .remove = __devexit_p(i801_remove),
Jean Delvarea5aaea32007-03-22 19:49:01 +0100725 .suspend = i801_suspend,
726 .resume = i801_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727};
728
729static int __init i2c_i801_init(void)
730{
731 return pci_register_driver(&i801_driver);
732}
733
734static void __exit i2c_i801_exit(void)
735{
736 pci_unregister_driver(&i801_driver);
737}
738
Jean Delvare63420642008-01-27 18:14:50 +0100739MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
740 "Jean Delvare <khali@linux-fr.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741MODULE_DESCRIPTION("I801 SMBus driver");
742MODULE_LICENSE("GPL");
743
744module_init(i2c_i801_init);
745module_exit(i2c_i801_exit);