]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/i2c/busses/i2c-i801.c
i2c-i801: Add Intel Patsburg device ID
[net-next-2.6.git] / drivers / i2c / busses / i2c-i801.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>,
3 Philip Edelbrock <phil@netroedge.com>, and Mark D. Studebaker
4 <mdsxyz123@yahoo.com>
cf898dc5 5 Copyright (C) 2007, 2008 Jean Delvare <khali@linux-fr.org>
1da177e4
LT
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20*/
21
22/*
ae7b0497
JD
23 Supports the following Intel I/O Controller Hubs (ICH):
24
25 I/O Block I2C
26 region SMBus Block proc. block
27 Chip name PCI ID size PEC buffer call read
28 ----------------------------------------------------------------------
29 82801AA (ICH) 0x2413 16 no no no no
30 82801AB (ICH0) 0x2423 16 no no no no
31 82801BA (ICH2) 0x2443 16 no no no no
32 82801CA (ICH3) 0x2483 32 soft no no no
33 82801DB (ICH4) 0x24c3 32 hard yes no no
34 82801E (ICH5) 0x24d3 32 hard yes yes yes
35 6300ESB 0x25a4 32 hard yes yes yes
36 82801F (ICH6) 0x266a 32 hard yes yes yes
37 6310ESB/6320ESB 0x269b 32 hard yes yes yes
38 82801G (ICH7) 0x27da 32 hard yes yes yes
39 82801H (ICH8) 0x283e 32 hard yes yes yes
40 82801I (ICH9) 0x2930 32 hard yes yes yes
cb04e95b 41 EP80579 (Tolapai) 0x5032 32 hard yes yes yes
d28dc711
GJ
42 ICH10 0x3a30 32 hard yes yes yes
43 ICH10 0x3a60 32 hard yes yes yes
cb04e95b 44 5/3400 Series (PCH) 0x3b30 32 hard yes yes yes
39376434 45 Cougar Point (PCH) 0x1c22 32 hard yes yes yes
e30d9859 46 Patsburg (PCH) 0x1d22 32 hard yes yes yes
ae7b0497
JD
47
48 Features supported by this driver:
49 Software PEC no
50 Hardware PEC yes
51 Block buffer yes
52 Block process call transaction no
6342064c 53 I2C block read transaction yes (doesn't use the block buffer)
ae7b0497
JD
54
55 See the file Documentation/i2c/busses/i2c-i801 for details.
1da177e4
LT
56*/
57
58/* Note: we assume there can only be one I801, with one SMBus interface */
59
1da177e4
LT
60#include <linux/module.h>
61#include <linux/pci.h>
62#include <linux/kernel.h>
63#include <linux/stddef.h>
64#include <linux/delay.h>
1da177e4
LT
65#include <linux/ioport.h>
66#include <linux/init.h>
67#include <linux/i2c.h>
54fb4a05 68#include <linux/acpi.h>
1561bfe5 69#include <linux/io.h>
fa5bfab7 70#include <linux/dmi.h>
1da177e4 71
1da177e4
LT
72/* I801 SMBus address offsets */
73#define SMBHSTSTS (0 + i801_smba)
74#define SMBHSTCNT (2 + i801_smba)
75#define SMBHSTCMD (3 + i801_smba)
76#define SMBHSTADD (4 + i801_smba)
77#define SMBHSTDAT0 (5 + i801_smba)
78#define SMBHSTDAT1 (6 + i801_smba)
79#define SMBBLKDAT (7 + i801_smba)
ae7b0497
JD
80#define SMBPEC (8 + i801_smba) /* ICH3 and later */
81#define SMBAUXSTS (12 + i801_smba) /* ICH4 and later */
82#define SMBAUXCTL (13 + i801_smba) /* ICH4 and later */
1da177e4
LT
83
84/* PCI Address Constants */
6dcc19df 85#define SMBBAR 4
1da177e4 86#define SMBHSTCFG 0x040
1da177e4
LT
87
88/* Host configuration bits for SMBHSTCFG */
89#define SMBHSTCFG_HST_EN 1
90#define SMBHSTCFG_SMB_SMI_EN 2
91#define SMBHSTCFG_I2C_EN 4
92
ca8b9e32
OR
93/* Auxillary control register bits, ICH4+ only */
94#define SMBAUXCTL_CRC 1
95#define SMBAUXCTL_E32B 2
96
97/* kill bit for SMBHSTCNT */
98#define SMBHSTCNT_KILL 2
99
1da177e4
LT
100/* Other settings */
101#define MAX_TIMEOUT 100
102#define ENABLE_INT9 0 /* set to 0x01 to enable - untested */
103
104/* I801 command constants */
105#define I801_QUICK 0x00
106#define I801_BYTE 0x04
107#define I801_BYTE_DATA 0x08
108#define I801_WORD_DATA 0x0C
ae7b0497 109#define I801_PROC_CALL 0x10 /* unimplemented */
1da177e4 110#define I801_BLOCK_DATA 0x14
6342064c 111#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
1da177e4 112#define I801_BLOCK_LAST 0x34
6342064c 113#define I801_I2C_BLOCK_LAST 0x38 /* ICH5 and later */
1da177e4 114#define I801_START 0x40
ae7b0497 115#define I801_PEC_EN 0x80 /* ICH3 and later */
1da177e4 116
ca8b9e32
OR
117/* I801 Hosts Status register bits */
118#define SMBHSTSTS_BYTE_DONE 0x80
119#define SMBHSTSTS_INUSE_STS 0x40
120#define SMBHSTSTS_SMBALERT_STS 0x20
121#define SMBHSTSTS_FAILED 0x10
122#define SMBHSTSTS_BUS_ERR 0x08
123#define SMBHSTSTS_DEV_ERR 0x04
124#define SMBHSTSTS_INTR 0x02
125#define SMBHSTSTS_HOST_BUSY 0x01
1da177e4 126
cf898dc5
JD
127#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_FAILED | \
128 SMBHSTSTS_BUS_ERR | SMBHSTSTS_DEV_ERR | \
129 SMBHSTSTS_INTR)
130
6dcc19df 131static unsigned long i801_smba;
a5aaea37 132static unsigned char i801_original_hstcfg;
d6072f84 133static struct pci_driver i801_driver;
1da177e4 134static struct pci_dev *I801_dev;
369f6f4a
JD
135
136#define FEATURE_SMBUS_PEC (1 << 0)
137#define FEATURE_BLOCK_BUFFER (1 << 1)
138#define FEATURE_BLOCK_PROC (1 << 2)
139#define FEATURE_I2C_BLOCK_READ (1 << 3)
140static unsigned int i801_features;
1da177e4 141
adff687d
JD
142static const char *i801_feature_names[] = {
143 "SMBus PEC",
144 "Block buffer",
145 "Block process call",
146 "I2C block read",
147};
148
149static unsigned int disable_features;
150module_param(disable_features, uint, S_IRUGO | S_IWUSR);
151MODULE_PARM_DESC(disable_features, "Disable selected driver features");
152
cf898dc5
JD
153/* Make sure the SMBus host is ready to start transmitting.
154 Return 0 if it is, -EBUSY if it is not. */
155static int i801_check_pre(void)
1da177e4 156{
2b73809d 157 int status;
1da177e4 158
cf898dc5
JD
159 status = inb_p(SMBHSTSTS);
160 if (status & SMBHSTSTS_HOST_BUSY) {
161 dev_err(&I801_dev->dev, "SMBus is busy, can't use it!\n");
162 return -EBUSY;
163 }
164
165 status &= STATUS_FLAGS;
166 if (status) {
167 dev_dbg(&I801_dev->dev, "Clearing status flags (%02x)\n",
2b73809d
JD
168 status);
169 outb_p(status, SMBHSTSTS);
cf898dc5
JD
170 status = inb_p(SMBHSTSTS) & STATUS_FLAGS;
171 if (status) {
172 dev_err(&I801_dev->dev,
173 "Failed clearing status flags (%02x)\n",
174 status);
97140342 175 return -EBUSY;
1da177e4
LT
176 }
177 }
178
cf898dc5
JD
179 return 0;
180}
1da177e4 181
cf898dc5
JD
182/* Convert the status register to an error code, and clear it. */
183static int i801_check_post(int status, int timeout)
184{
185 int result = 0;
1da177e4
LT
186
187 /* If the SMBus is still busy, we give up */
cf898dc5
JD
188 if (timeout) {
189 dev_err(&I801_dev->dev, "Transaction timeout\n");
ca8b9e32
OR
190 /* try to stop the current command */
191 dev_dbg(&I801_dev->dev, "Terminating the current operation\n");
192 outb_p(inb_p(SMBHSTCNT) | SMBHSTCNT_KILL, SMBHSTCNT);
193 msleep(1);
194 outb_p(inb_p(SMBHSTCNT) & (~SMBHSTCNT_KILL), SMBHSTCNT);
cf898dc5
JD
195
196 /* Check if it worked */
197 status = inb_p(SMBHSTSTS);
198 if ((status & SMBHSTSTS_HOST_BUSY) ||
199 !(status & SMBHSTSTS_FAILED))
200 dev_err(&I801_dev->dev,
201 "Failed terminating the transaction\n");
202 outb_p(STATUS_FLAGS, SMBHSTSTS);
203 return -ETIMEDOUT;
1da177e4
LT
204 }
205
2b73809d 206 if (status & SMBHSTSTS_FAILED) {
97140342 207 result = -EIO;
cf898dc5
JD
208 dev_err(&I801_dev->dev, "Transaction failed\n");
209 }
210 if (status & SMBHSTSTS_DEV_ERR) {
211 result = -ENXIO;
212 dev_dbg(&I801_dev->dev, "No response\n");
1da177e4 213 }
2b73809d 214 if (status & SMBHSTSTS_BUS_ERR) {
dcb5c923
JD
215 result = -EAGAIN;
216 dev_dbg(&I801_dev->dev, "Lost arbitration\n");
1da177e4
LT
217 }
218
cf898dc5
JD
219 if (result) {
220 /* Clear error flags */
221 outb_p(status & STATUS_FLAGS, SMBHSTSTS);
222 status = inb_p(SMBHSTSTS) & STATUS_FLAGS;
223 if (status) {
224 dev_warn(&I801_dev->dev, "Failed clearing status "
225 "flags at end of transaction (%02x)\n",
226 status);
227 }
1da177e4
LT
228 }
229
1da177e4
LT
230 return result;
231}
232
cf898dc5
JD
233static int i801_transaction(int xact)
234{
235 int status;
236 int result;
237 int timeout = 0;
238
239 result = i801_check_pre();
240 if (result < 0)
241 return result;
242
243 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
244 * INTREN, SMBSCMD are passed in xact */
245 outb_p(xact | I801_START, SMBHSTCNT);
246
247 /* We will always wait for a fraction of a second! */
248 do {
249 msleep(1);
250 status = inb_p(SMBHSTSTS);
251 } while ((status & SMBHSTSTS_HOST_BUSY) && (timeout++ < MAX_TIMEOUT));
252
4ccc28f7 253 result = i801_check_post(status, timeout > MAX_TIMEOUT);
cf898dc5
JD
254 if (result < 0)
255 return result;
256
257 outb_p(SMBHSTSTS_INTR, SMBHSTSTS);
258 return 0;
259}
260
ca8b9e32
OR
261/* wait for INTR bit as advised by Intel */
262static void i801_wait_hwpec(void)
263{
264 int timeout = 0;
2b73809d 265 int status;
ca8b9e32
OR
266
267 do {
268 msleep(1);
2b73809d
JD
269 status = inb_p(SMBHSTSTS);
270 } while ((!(status & SMBHSTSTS_INTR))
ca8b9e32
OR
271 && (timeout++ < MAX_TIMEOUT));
272
4ccc28f7 273 if (timeout > MAX_TIMEOUT)
ca8b9e32 274 dev_dbg(&I801_dev->dev, "PEC Timeout!\n");
4ccc28f7 275
2b73809d 276 outb_p(status, SMBHSTSTS);
ca8b9e32
OR
277}
278
7edcb9ab
OR
279static int i801_block_transaction_by_block(union i2c_smbus_data *data,
280 char read_write, int hwpec)
281{
282 int i, len;
97140342 283 int status;
7edcb9ab
OR
284
285 inb_p(SMBHSTCNT); /* reset the data buffer index */
286
287 /* Use 32-byte buffer to process this transaction */
288 if (read_write == I2C_SMBUS_WRITE) {
289 len = data->block[0];
290 outb_p(len, SMBHSTDAT0);
291 for (i = 0; i < len; i++)
292 outb_p(data->block[i+1], SMBBLKDAT);
293 }
294
97140342
DB
295 status = i801_transaction(I801_BLOCK_DATA | ENABLE_INT9 |
296 I801_PEC_EN * hwpec);
297 if (status)
298 return status;
7edcb9ab
OR
299
300 if (read_write == I2C_SMBUS_READ) {
301 len = inb_p(SMBHSTDAT0);
302 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
97140342 303 return -EPROTO;
7edcb9ab
OR
304
305 data->block[0] = len;
306 for (i = 0; i < len; i++)
307 data->block[i + 1] = inb_p(SMBBLKDAT);
308 }
309 return 0;
310}
311
312static int i801_block_transaction_byte_by_byte(union i2c_smbus_data *data,
6342064c
JD
313 char read_write, int command,
314 int hwpec)
1da177e4
LT
315{
316 int i, len;
317 int smbcmd;
2b73809d 318 int status;
cf898dc5 319 int result;
1da177e4 320 int timeout;
cf898dc5
JD
321
322 result = i801_check_pre();
323 if (result < 0)
324 return result;
1da177e4 325
7edcb9ab 326 len = data->block[0];
1da177e4
LT
327
328 if (read_write == I2C_SMBUS_WRITE) {
1da177e4
LT
329 outb_p(len, SMBHSTDAT0);
330 outb_p(data->block[1], SMBBLKDAT);
1da177e4
LT
331 }
332
333 for (i = 1; i <= len; i++) {
6342064c
JD
334 if (i == len && read_write == I2C_SMBUS_READ) {
335 if (command == I2C_SMBUS_I2C_BLOCK_DATA)
336 smbcmd = I801_I2C_BLOCK_LAST;
337 else
338 smbcmd = I801_BLOCK_LAST;
339 } else {
340 if (command == I2C_SMBUS_I2C_BLOCK_DATA
341 && read_write == I2C_SMBUS_READ)
342 smbcmd = I801_I2C_BLOCK_DATA;
343 else
344 smbcmd = I801_BLOCK_DATA;
345 }
1da177e4
LT
346 outb_p(smbcmd | ENABLE_INT9, SMBHSTCNT);
347
1da177e4
LT
348 if (i == 1)
349 outb_p(inb(SMBHSTCNT) | I801_START, SMBHSTCNT);
350
351 /* We will always wait for a fraction of a second! */
352 timeout = 0;
353 do {
1da177e4 354 msleep(1);
2b73809d 355 status = inb_p(SMBHSTSTS);
3fb21c64
IM
356 } while ((!(status & SMBHSTSTS_BYTE_DONE))
357 && (timeout++ < MAX_TIMEOUT));
1da177e4 358
4ccc28f7 359 result = i801_check_post(status, timeout > MAX_TIMEOUT);
cf898dc5
JD
360 if (result < 0)
361 return result;
1da177e4 362
6342064c
JD
363 if (i == 1 && read_write == I2C_SMBUS_READ
364 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
1da177e4 365 len = inb_p(SMBHSTDAT0);
cf898dc5
JD
366 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
367 dev_err(&I801_dev->dev,
368 "Illegal SMBus block read size %d\n",
369 len);
370 /* Recover */
371 while (inb_p(SMBHSTSTS) & SMBHSTSTS_HOST_BUSY)
372 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS);
373 outb_p(SMBHSTSTS_INTR, SMBHSTSTS);
97140342 374 return -EPROTO;
cf898dc5 375 }
1da177e4
LT
376 data->block[0] = len;
377 }
378
379 /* Retrieve/store value in SMBBLKDAT */
380 if (read_write == I2C_SMBUS_READ)
381 data->block[i] = inb_p(SMBBLKDAT);
382 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
383 outb_p(data->block[i+1], SMBBLKDAT);
1da177e4 384
cf898dc5
JD
385 /* signals SMBBLKDAT ready */
386 outb_p(SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR, SMBHSTSTS);
1da177e4 387 }
cf898dc5
JD
388
389 return 0;
7edcb9ab 390}
1da177e4 391
7edcb9ab
OR
392static int i801_set_block_buffer_mode(void)
393{
394 outb_p(inb_p(SMBAUXCTL) | SMBAUXCTL_E32B, SMBAUXCTL);
395 if ((inb_p(SMBAUXCTL) & SMBAUXCTL_E32B) == 0)
97140342 396 return -EIO;
7edcb9ab
OR
397 return 0;
398}
399
400/* Block transaction function */
401static int i801_block_transaction(union i2c_smbus_data *data, char read_write,
402 int command, int hwpec)
403{
404 int result = 0;
405 unsigned char hostc;
406
407 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
408 if (read_write == I2C_SMBUS_WRITE) {
409 /* set I2C_EN bit in configuration register */
410 pci_read_config_byte(I801_dev, SMBHSTCFG, &hostc);
411 pci_write_config_byte(I801_dev, SMBHSTCFG,
412 hostc | SMBHSTCFG_I2C_EN);
6342064c 413 } else if (!(i801_features & FEATURE_I2C_BLOCK_READ)) {
7edcb9ab 414 dev_err(&I801_dev->dev,
6342064c 415 "I2C block read is unsupported!\n");
97140342 416 return -EOPNOTSUPP;
7edcb9ab
OR
417 }
418 }
419
6342064c
JD
420 if (read_write == I2C_SMBUS_WRITE
421 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
7edcb9ab
OR
422 if (data->block[0] < 1)
423 data->block[0] = 1;
424 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
425 data->block[0] = I2C_SMBUS_BLOCK_MAX;
426 } else {
6342064c 427 data->block[0] = 32; /* max for SMBus block reads */
7edcb9ab
OR
428 }
429
c074c39d
JD
430 /* Experience has shown that the block buffer can only be used for
431 SMBus (not I2C) block transactions, even though the datasheet
432 doesn't mention this limitation. */
369f6f4a 433 if ((i801_features & FEATURE_BLOCK_BUFFER)
c074c39d 434 && command != I2C_SMBUS_I2C_BLOCK_DATA
369f6f4a 435 && i801_set_block_buffer_mode() == 0)
7edcb9ab
OR
436 result = i801_block_transaction_by_block(data, read_write,
437 hwpec);
438 else
439 result = i801_block_transaction_byte_by_byte(data, read_write,
6342064c 440 command, hwpec);
7edcb9ab
OR
441
442 if (result == 0 && hwpec)
ca8b9e32 443 i801_wait_hwpec();
1da177e4 444
6342064c
JD
445 if (command == I2C_SMBUS_I2C_BLOCK_DATA
446 && read_write == I2C_SMBUS_WRITE) {
1da177e4
LT
447 /* restore saved configuration register value */
448 pci_write_config_byte(I801_dev, SMBHSTCFG, hostc);
449 }
450 return result;
451}
452
97140342 453/* Return negative errno on error. */
3fb21c64 454static s32 i801_access(struct i2c_adapter *adap, u16 addr,
1da177e4 455 unsigned short flags, char read_write, u8 command,
3fb21c64 456 int size, union i2c_smbus_data *data)
1da177e4 457{
e8aac4a9 458 int hwpec;
1da177e4
LT
459 int block = 0;
460 int ret, xact = 0;
461
369f6f4a 462 hwpec = (i801_features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
e8aac4a9
JD
463 && size != I2C_SMBUS_QUICK
464 && size != I2C_SMBUS_I2C_BLOCK_DATA;
1da177e4
LT
465
466 switch (size) {
467 case I2C_SMBUS_QUICK:
468 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
469 SMBHSTADD);
470 xact = I801_QUICK;
471 break;
472 case I2C_SMBUS_BYTE:
473 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
474 SMBHSTADD);
475 if (read_write == I2C_SMBUS_WRITE)
476 outb_p(command, SMBHSTCMD);
477 xact = I801_BYTE;
478 break;
479 case I2C_SMBUS_BYTE_DATA:
480 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
481 SMBHSTADD);
482 outb_p(command, SMBHSTCMD);
483 if (read_write == I2C_SMBUS_WRITE)
484 outb_p(data->byte, SMBHSTDAT0);
485 xact = I801_BYTE_DATA;
486 break;
487 case I2C_SMBUS_WORD_DATA:
488 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
489 SMBHSTADD);
490 outb_p(command, SMBHSTCMD);
491 if (read_write == I2C_SMBUS_WRITE) {
492 outb_p(data->word & 0xff, SMBHSTDAT0);
493 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
494 }
495 xact = I801_WORD_DATA;
496 break;
497 case I2C_SMBUS_BLOCK_DATA:
1da177e4
LT
498 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
499 SMBHSTADD);
500 outb_p(command, SMBHSTCMD);
501 block = 1;
502 break;
6342064c
JD
503 case I2C_SMBUS_I2C_BLOCK_DATA:
504 /* NB: page 240 of ICH5 datasheet shows that the R/#W
505 * bit should be cleared here, even when reading */
506 outb_p((addr & 0x7f) << 1, SMBHSTADD);
507 if (read_write == I2C_SMBUS_READ) {
508 /* NB: page 240 of ICH5 datasheet also shows
509 * that DATA1 is the cmd field when reading */
510 outb_p(command, SMBHSTDAT1);
511 } else
512 outb_p(command, SMBHSTCMD);
513 block = 1;
514 break;
1da177e4
LT
515 default:
516 dev_err(&I801_dev->dev, "Unsupported transaction %d\n", size);
97140342 517 return -EOPNOTSUPP;
1da177e4
LT
518 }
519
ca8b9e32
OR
520 if (hwpec) /* enable/disable hardware PEC */
521 outb_p(inb_p(SMBAUXCTL) | SMBAUXCTL_CRC, SMBAUXCTL);
522 else
523 outb_p(inb_p(SMBAUXCTL) & (~SMBAUXCTL_CRC), SMBAUXCTL);
e8aac4a9 524
3fb21c64 525 if (block)
585b3160 526 ret = i801_block_transaction(data, read_write, size, hwpec);
7edcb9ab
OR
527 else
528 ret = i801_transaction(xact | ENABLE_INT9);
1da177e4 529
c79cfbac 530 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
7edcb9ab
OR
531 time, so we forcibly disable it after every transaction. Turn off
532 E32B for the same reason. */
a0921b6c 533 if (hwpec || block)
7edcb9ab
OR
534 outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B),
535 SMBAUXCTL);
c79cfbac 536
3fb21c64 537 if (block)
1da177e4 538 return ret;
3fb21c64 539 if (ret)
97140342 540 return ret;
1da177e4
LT
541 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
542 return 0;
543
544 switch (xact & 0x7f) {
545 case I801_BYTE: /* Result put in SMBHSTDAT0 */
546 case I801_BYTE_DATA:
547 data->byte = inb_p(SMBHSTDAT0);
548 break;
549 case I801_WORD_DATA:
550 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
551 break;
552 }
553 return 0;
554}
555
556
557static u32 i801_func(struct i2c_adapter *adapter)
558{
559 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
369f6f4a
JD
560 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
561 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
6342064c
JD
562 ((i801_features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
563 ((i801_features & FEATURE_I2C_BLOCK_READ) ?
564 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
1da177e4
LT
565}
566
8f9082c5 567static const struct i2c_algorithm smbus_algorithm = {
1da177e4
LT
568 .smbus_xfer = i801_access,
569 .functionality = i801_func,
570};
571
572static struct i2c_adapter i801_adapter = {
573 .owner = THIS_MODULE,
3401b2ff 574 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
1da177e4 575 .algo = &smbus_algorithm,
1da177e4
LT
576};
577
4111ecd2 578static const struct pci_device_id i801_ids[] = {
1da177e4
LT
579 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
580 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
581 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
582 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
583 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
584 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
585 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
586 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
587 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
b0a70b57 588 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
8254fc4a 589 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
adbc2a10 590 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
cb04e95b 591 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
d28dc711
GJ
592 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
593 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
cb04e95b
SH
594 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
595 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
e30d9859 596 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
1da177e4
LT
597 { 0, }
598};
599
3fb21c64 600MODULE_DEVICE_TABLE(pci, i801_ids);
1da177e4 601
1561bfe5
JD
602#if defined CONFIG_INPUT_APANEL || defined CONFIG_INPUT_APANEL_MODULE
603static unsigned char apanel_addr;
604
605/* Scan the system ROM for the signature "FJKEYINF" */
606static __init const void __iomem *bios_signature(const void __iomem *bios)
607{
608 ssize_t offset;
609 const unsigned char signature[] = "FJKEYINF";
610
611 for (offset = 0; offset < 0x10000; offset += 0x10) {
612 if (check_signature(bios + offset, signature,
613 sizeof(signature)-1))
614 return bios + offset;
615 }
616 return NULL;
617}
618
619static void __init input_apanel_init(void)
620{
621 void __iomem *bios;
622 const void __iomem *p;
623
624 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
625 p = bios_signature(bios);
626 if (p) {
627 /* just use the first address */
628 apanel_addr = readb(p + 8 + 3) >> 1;
629 }
630 iounmap(bios);
631}
632#else
633static void __init input_apanel_init(void) {}
634#endif
635
fa5bfab7
HG
636#if defined CONFIG_SENSORS_FSCHMD || defined CONFIG_SENSORS_FSCHMD_MODULE
637struct dmi_onboard_device_info {
638 const char *name;
639 u8 type;
640 unsigned short i2c_addr;
641 const char *i2c_type;
642};
643
644static struct dmi_onboard_device_info __devinitdata dmi_devices[] = {
645 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
646 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
647 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
648};
649
650static void __devinit dmi_check_onboard_device(u8 type, const char *name,
651 struct i2c_adapter *adap)
652{
653 int i;
654 struct i2c_board_info info;
655
656 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
657 /* & ~0x80, ignore enabled/disabled bit */
658 if ((type & ~0x80) != dmi_devices[i].type)
659 continue;
faabd47f 660 if (strcasecmp(name, dmi_devices[i].name))
fa5bfab7
HG
661 continue;
662
663 memset(&info, 0, sizeof(struct i2c_board_info));
664 info.addr = dmi_devices[i].i2c_addr;
665 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
666 i2c_new_device(adap, &info);
667 break;
668 }
669}
670
671/* We use our own function to check for onboard devices instead of
672 dmi_find_device() as some buggy BIOS's have the devices we are interested
673 in marked as disabled */
674static void __devinit dmi_check_onboard_devices(const struct dmi_header *dm,
675 void *adap)
676{
677 int i, count;
678
679 if (dm->type != 10)
680 return;
681
682 count = (dm->length - sizeof(struct dmi_header)) / 2;
683 for (i = 0; i < count; i++) {
684 const u8 *d = (char *)(dm + 1) + (i * 2);
685 const char *name = ((char *) dm) + dm->length;
686 u8 type = d[0];
687 u8 s = d[1];
688
689 if (!s)
690 continue;
691 s--;
692 while (s > 0 && name[0]) {
693 name += strlen(name) + 1;
694 s--;
695 }
696 if (name[0] == 0) /* Bogus string reference */
697 continue;
698
699 dmi_check_onboard_device(type, name, adap);
700 }
701}
702#endif
703
3fb21c64
IM
704static int __devinit i801_probe(struct pci_dev *dev,
705 const struct pci_device_id *id)
1da177e4 706{
02dd7ae2 707 unsigned char temp;
adff687d 708 int err, i;
1da177e4 709
02dd7ae2 710 I801_dev = dev;
369f6f4a 711 i801_features = 0;
250d1bd3 712 switch (dev->device) {
e0e8398c 713 default:
6342064c
JD
714 i801_features |= FEATURE_I2C_BLOCK_READ;
715 /* fall through */
716 case PCI_DEVICE_ID_INTEL_82801DB_3:
369f6f4a
JD
717 i801_features |= FEATURE_SMBUS_PEC;
718 i801_features |= FEATURE_BLOCK_BUFFER;
e0e8398c
JD
719 /* fall through */
720 case PCI_DEVICE_ID_INTEL_82801CA_3:
721 case PCI_DEVICE_ID_INTEL_82801BA_2:
722 case PCI_DEVICE_ID_INTEL_82801AB_3:
723 case PCI_DEVICE_ID_INTEL_82801AA_3:
250d1bd3 724 break;
250d1bd3 725 }
02dd7ae2 726
adff687d
JD
727 /* Disable features on user request */
728 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
729 if (i801_features & disable_features & (1 << i))
730 dev_notice(&dev->dev, "%s disabled by user\n",
731 i801_feature_names[i]);
732 }
733 i801_features &= ~disable_features;
734
02dd7ae2
JD
735 err = pci_enable_device(dev);
736 if (err) {
737 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
738 err);
739 goto exit;
740 }
741
742 /* Determine the address of the SMBus area */
743 i801_smba = pci_resource_start(dev, SMBBAR);
744 if (!i801_smba) {
745 dev_err(&dev->dev, "SMBus base address uninitialized, "
746 "upgrade BIOS\n");
747 err = -ENODEV;
d6fcb3b9 748 goto exit;
02dd7ae2
JD
749 }
750
54fb4a05 751 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
18669eab
JD
752 if (err) {
753 err = -ENODEV;
54fb4a05 754 goto exit;
18669eab 755 }
54fb4a05 756
02dd7ae2
JD
757 err = pci_request_region(dev, SMBBAR, i801_driver.name);
758 if (err) {
759 dev_err(&dev->dev, "Failed to request SMBus region "
598736c5
AM
760 "0x%lx-0x%Lx\n", i801_smba,
761 (unsigned long long)pci_resource_end(dev, SMBBAR));
d6fcb3b9 762 goto exit;
02dd7ae2
JD
763 }
764
765 pci_read_config_byte(I801_dev, SMBHSTCFG, &temp);
a5aaea37 766 i801_original_hstcfg = temp;
02dd7ae2
JD
767 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
768 if (!(temp & SMBHSTCFG_HST_EN)) {
769 dev_info(&dev->dev, "Enabling SMBus device\n");
770 temp |= SMBHSTCFG_HST_EN;
771 }
772 pci_write_config_byte(I801_dev, SMBHSTCFG, temp);
773
774 if (temp & SMBHSTCFG_SMB_SMI_EN)
775 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
776 else
777 dev_dbg(&dev->dev, "SMBus using PCI Interrupt\n");
1da177e4 778
a0921b6c
JD
779 /* Clear special mode bits */
780 if (i801_features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
781 outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B),
782 SMBAUXCTL);
783
405ae7d3 784 /* set up the sysfs linkage to our parent device */
1da177e4
LT
785 i801_adapter.dev.parent = &dev->dev;
786
7e2193a8
JD
787 /* Retry up to 3 times on lost arbitration */
788 i801_adapter.retries = 3;
789
2096b956 790 snprintf(i801_adapter.name, sizeof(i801_adapter.name),
6dcc19df 791 "SMBus I801 adapter at %04lx", i801_smba);
02dd7ae2
JD
792 err = i2c_add_adapter(&i801_adapter);
793 if (err) {
794 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
d6fcb3b9 795 goto exit_release;
02dd7ae2 796 }
1561bfe5
JD
797
798 /* Register optional slaves */
799#if defined CONFIG_INPUT_APANEL || defined CONFIG_INPUT_APANEL_MODULE
800 if (apanel_addr) {
801 struct i2c_board_info info;
802
803 memset(&info, 0, sizeof(struct i2c_board_info));
804 info.addr = apanel_addr;
805 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
806 i2c_new_device(&i801_adapter, &info);
807 }
808#endif
fa5bfab7 809#if defined CONFIG_SENSORS_FSCHMD || defined CONFIG_SENSORS_FSCHMD_MODULE
faabd47f 810 if (dmi_name_in_vendors("FUJITSU"))
fa5bfab7
HG
811 dmi_walk(dmi_check_onboard_devices, &i801_adapter);
812#endif
1561bfe5 813
d6fcb3b9 814 return 0;
02dd7ae2 815
d6fcb3b9
DR
816exit_release:
817 pci_release_region(dev, SMBBAR);
02dd7ae2
JD
818exit:
819 return err;
1da177e4
LT
820}
821
822static void __devexit i801_remove(struct pci_dev *dev)
823{
824 i2c_del_adapter(&i801_adapter);
a5aaea37 825 pci_write_config_byte(I801_dev, SMBHSTCFG, i801_original_hstcfg);
6dcc19df 826 pci_release_region(dev, SMBBAR);
d6fcb3b9
DR
827 /*
828 * do not call pci_disable_device(dev) since it can cause hard hangs on
829 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
830 */
1da177e4
LT
831}
832
a5aaea37
JD
833#ifdef CONFIG_PM
834static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
835{
836 pci_save_state(dev);
837 pci_write_config_byte(dev, SMBHSTCFG, i801_original_hstcfg);
838 pci_set_power_state(dev, pci_choose_state(dev, mesg));
839 return 0;
840}
841
842static int i801_resume(struct pci_dev *dev)
843{
844 pci_set_power_state(dev, PCI_D0);
845 pci_restore_state(dev);
846 return pci_enable_device(dev);
847}
848#else
849#define i801_suspend NULL
850#define i801_resume NULL
851#endif
852
1da177e4
LT
853static struct pci_driver i801_driver = {
854 .name = "i801_smbus",
855 .id_table = i801_ids,
856 .probe = i801_probe,
857 .remove = __devexit_p(i801_remove),
a5aaea37
JD
858 .suspend = i801_suspend,
859 .resume = i801_resume,
1da177e4
LT
860};
861
862static int __init i2c_i801_init(void)
863{
1561bfe5 864 input_apanel_init();
1da177e4
LT
865 return pci_register_driver(&i801_driver);
866}
867
868static void __exit i2c_i801_exit(void)
869{
870 pci_unregister_driver(&i801_driver);
871}
872
6342064c
JD
873MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
874 "Jean Delvare <khali@linux-fr.org>");
1da177e4
LT
875MODULE_DESCRIPTION("I801 SMBus driver");
876MODULE_LICENSE("GPL");
877
878module_init(i2c_i801_init);
879module_exit(i2c_i801_exit);