2 i801.c - Part of lm_sensors, Linux kernel modules for hardware
4 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>,
5 Philip Edelbrock <phil@netroedge.com>, and Mark D. Studebaker
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 SUPPORTED DEVICES PCI ID
29 82801DB 24C3 (HW PEC supported, 32 byte buffer not supported)
30 82801EB 24D3 (HW PEC supported, 32 byte buffer not supported)
35 This driver supports several versions of Intel's I/O Controller Hubs (ICH).
36 For SMBus support, they are similar to the PIIX4 and are part
37 of Intel's '810' and other chipsets.
38 See the doc/busses/i2c-i801 file for details.
39 I2C Block Read and Process Call are not supported.
42 /* Note: we assume there can only be one I801, with one SMBus interface */
44 #include <linux/module.h>
45 #include <linux/pci.h>
46 #include <linux/kernel.h>
47 #include <linux/stddef.h>
48 #include <linux/delay.h>
49 #include <linux/sched.h>
50 #include <linux/ioport.h>
51 #include <linux/init.h>
52 #include <linux/i2c.h>
55 #ifdef I2C_FUNC_SMBUS_BLOCK_DATA_PEC
59 /* I801 SMBus address offsets */
60 #define SMBHSTSTS (0 + i801_smba)
61 #define SMBHSTCNT (2 + i801_smba)
62 #define SMBHSTCMD (3 + i801_smba)
63 #define SMBHSTADD (4 + i801_smba)
64 #define SMBHSTDAT0 (5 + i801_smba)
65 #define SMBHSTDAT1 (6 + i801_smba)
66 #define SMBBLKDAT (7 + i801_smba)
67 #define SMBPEC (8 + i801_smba) /* ICH4 only */
68 #define SMBAUXSTS (12 + i801_smba) /* ICH4 only */
69 #define SMBAUXCTL (13 + i801_smba) /* ICH4 only */
71 /* PCI Address Constants */
73 #define SMBHSTCFG 0x040
76 /* Host configuration bits for SMBHSTCFG */
77 #define SMBHSTCFG_HST_EN 1
78 #define SMBHSTCFG_SMB_SMI_EN 2
79 #define SMBHSTCFG_I2C_EN 4
82 #define MAX_TIMEOUT 100
83 #define ENABLE_INT9 0 /* set to 0x01 to enable - untested */
85 /* I801 command constants */
86 #define I801_QUICK 0x00
87 #define I801_BYTE 0x04
88 #define I801_BYTE_DATA 0x08
89 #define I801_WORD_DATA 0x0C
90 #define I801_PROC_CALL 0x10 /* later chips only, unimplemented */
91 #define I801_BLOCK_DATA 0x14
92 #define I801_I2C_BLOCK_DATA 0x18 /* unimplemented */
93 #define I801_BLOCK_LAST 0x34
94 #define I801_I2C_BLOCK_LAST 0x38 /* unimplemented */
95 #define I801_START 0x40
96 #define I801_PEC_EN 0x80 /* ICH4 only */
98 /* insmod parameters */
100 /* If force_addr is set to anything different from 0, we forcibly enable
101 the I801 at the given address. VERY DANGEROUS! */
102 static u16 force_addr;
103 module_param(force_addr, ushort, 0);
104 MODULE_PARM_DESC(force_addr,
105 "Forcibly enable the I801 at the given address. "
106 "EXTREMELY DANGEROUS!");
108 static int i801_transaction(void);
109 static int i801_block_transaction(union i2c_smbus_data *data,
110 char read_write, int command);
112 static unsigned short i801_smba;
113 static struct pci_dev *I801_dev;
116 static int i801_setup(struct pci_dev *dev)
118 int error_return = 0;
121 /* Note: we keep on searching until we have found 'function 3' */
122 if(PCI_FUNC(dev->devfn) != 3)
126 if ((dev->device == PCI_DEVICE_ID_INTEL_82801DB_3) ||
127 (dev->device == PCI_DEVICE_ID_INTEL_82801EB_3) ||
128 (dev->device == PCI_DEVICE_ID_INTEL_ESB_4))
133 /* Determine the address of the SMBus areas */
135 i801_smba = force_addr & 0xfff0;
137 pci_read_config_word(I801_dev, SMBBA, &i801_smba);
140 dev_err(&dev->dev, "SMB base address uninitialized "
141 "- upgrade BIOS or use force_addr=0xaddr\n");
146 if (!request_region(i801_smba, (isich4 ? 16 : 8), "i801-smbus")) {
147 dev_err(&dev->dev, "I801_smb region 0x%x already in use!\n",
149 error_return = -EBUSY;
153 pci_read_config_byte(I801_dev, SMBHSTCFG, &temp);
154 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
155 pci_write_config_byte(I801_dev, SMBHSTCFG, temp);
157 /* If force_addr is set, we program the new address here. Just to make
158 sure, we disable the device first. */
160 pci_write_config_byte(I801_dev, SMBHSTCFG, temp & 0xfe);
161 pci_write_config_word(I801_dev, SMBBA, i801_smba);
162 pci_write_config_byte(I801_dev, SMBHSTCFG, temp | 0x01);
163 dev_warn(&dev->dev, "WARNING: I801 SMBus interface set to "
164 "new address %04x!\n", i801_smba);
165 } else if ((temp & 1) == 0) {
166 pci_write_config_byte(I801_dev, SMBHSTCFG, temp | 1);
167 dev_warn(&dev->dev, "enabling SMBus device\n");
171 dev_dbg(&dev->dev, "I801 using Interrupt SMI# for SMBus.\n");
173 dev_dbg(&dev->dev, "I801 using PCI Interrupt for SMBus.\n");
175 pci_read_config_byte(I801_dev, SMBREV, &temp);
176 dev_dbg(&dev->dev, "SMBREV = 0x%X\n", temp);
177 dev_dbg(&dev->dev, "I801_smba = 0x%X\n", i801_smba);
183 static int i801_transaction(void)
189 dev_dbg(&I801_dev->dev, "Transaction (pre): CNT=%02x, CMD=%02x, "
190 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
191 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
194 /* Make sure the SMBus host is ready to start transmitting */
195 /* 0x1f = Failed, Bus_Err, Dev_Err, Intr, Host_Busy */
196 if ((temp = (0x1f & inb_p(SMBHSTSTS))) != 0x00) {
197 dev_dbg(&I801_dev->dev, "SMBus busy (%02x). Resetting...\n",
199 outb_p(temp, SMBHSTSTS);
200 if ((temp = (0x1f & inb_p(SMBHSTSTS))) != 0x00) {
201 dev_dbg(&I801_dev->dev, "Failed! (%02x)\n", temp);
204 dev_dbg(&I801_dev->dev, "Successfull!\n");
208 outb_p(inb(SMBHSTCNT) | I801_START, SMBHSTCNT);
210 /* We will always wait for a fraction of a second! */
213 temp = inb_p(SMBHSTSTS);
214 } while ((temp & 0x01) && (timeout++ < MAX_TIMEOUT));
216 /* If the SMBus is still busy, we give up */
217 if (timeout >= MAX_TIMEOUT) {
218 dev_dbg(&I801_dev->dev, "SMBus Timeout!\n");
224 dev_dbg(&I801_dev->dev, "Error: Failed bus transaction\n");
229 dev_err(&I801_dev->dev, "Bus collision! SMBus may be locked "
230 "until next hard reset. (sorry!)\n");
231 /* Clock stops and slave is stuck in mid-transmission */
236 dev_dbg(&I801_dev->dev, "Error: no response!\n");
239 if ((inb_p(SMBHSTSTS) & 0x1f) != 0x00)
240 outb_p(inb(SMBHSTSTS), SMBHSTSTS);
242 if ((temp = (0x1f & inb_p(SMBHSTSTS))) != 0x00) {
243 dev_dbg(&I801_dev->dev, "Failed reset at end of transaction "
246 dev_dbg(&I801_dev->dev, "Transaction (post): CNT=%02x, CMD=%02x, "
247 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
248 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
253 /* All-inclusive block transaction function */
254 static int i801_block_transaction(union i2c_smbus_data *data, char read_write,
262 unsigned char hostc, errmask;
264 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
265 if (read_write == I2C_SMBUS_WRITE) {
266 /* set I2C_EN bit in configuration register */
267 pci_read_config_byte(I801_dev, SMBHSTCFG, &hostc);
268 pci_write_config_byte(I801_dev, SMBHSTCFG,
269 hostc | SMBHSTCFG_I2C_EN);
271 dev_err(&I801_dev->dev,
272 "I2C_SMBUS_I2C_BLOCK_READ not DB!\n");
277 if (read_write == I2C_SMBUS_WRITE) {
278 len = data->block[0];
283 outb_p(len, SMBHSTDAT0);
284 outb_p(data->block[1], SMBBLKDAT);
286 len = 32; /* max for reads */
289 if(isich4 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
290 /* set 32 byte buffer */
293 for (i = 1; i <= len; i++) {
294 if (i == len && read_write == I2C_SMBUS_READ)
295 smbcmd = I801_BLOCK_LAST;
297 smbcmd = I801_BLOCK_DATA;
298 outb_p(smbcmd | ENABLE_INT9, SMBHSTCNT);
300 dev_dbg(&I801_dev->dev, "Block (pre %d): CNT=%02x, CMD=%02x, "
301 "ADD=%02x, DAT0=%02x, BLKDAT=%02x\n", i,
302 inb_p(SMBHSTCNT), inb_p(SMBHSTCMD), inb_p(SMBHSTADD),
303 inb_p(SMBHSTDAT0), inb_p(SMBBLKDAT));
305 /* Make sure the SMBus host is ready to start transmitting */
306 temp = inb_p(SMBHSTSTS);
308 /* Erronenous conditions before transaction:
309 * Byte_Done, Failed, Bus_Err, Dev_Err, Intr, Host_Busy */
312 /* Erronenous conditions during transaction:
313 * Failed, Bus_Err, Dev_Err, Intr */
316 if (temp & errmask) {
317 dev_dbg(&I801_dev->dev, "SMBus busy (%02x). "
318 "Resetting...\n", temp);
319 outb_p(temp, SMBHSTSTS);
320 if (((temp = inb_p(SMBHSTSTS)) & errmask) != 0x00) {
321 dev_err(&I801_dev->dev,
322 "Reset failed! (%02x)\n", temp);
327 /* if die in middle of block transaction, fail */
334 outb_p(inb(SMBHSTCNT) | I801_START, SMBHSTCNT);
336 /* We will always wait for a fraction of a second! */
339 temp = inb_p(SMBHSTSTS);
342 while ((!(temp & 0x80))
343 && (timeout++ < MAX_TIMEOUT));
345 /* If the SMBus is still busy, we give up */
346 if (timeout >= MAX_TIMEOUT) {
348 dev_dbg(&I801_dev->dev, "SMBus Timeout!\n");
353 dev_dbg(&I801_dev->dev,
354 "Error: Failed bus transaction\n");
355 } else if (temp & 0x08) {
357 dev_err(&I801_dev->dev, "Bus collision!\n");
358 } else if (temp & 0x04) {
360 dev_dbg(&I801_dev->dev, "Error: no response!\n");
363 if (i == 1 && read_write == I2C_SMBUS_READ) {
364 len = inb_p(SMBHSTDAT0);
369 data->block[0] = len;
372 /* Retrieve/store value in SMBBLKDAT */
373 if (read_write == I2C_SMBUS_READ)
374 data->block[i] = inb_p(SMBBLKDAT);
375 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
376 outb_p(data->block[i+1], SMBBLKDAT);
377 if ((temp & 0x9e) != 0x00)
378 outb_p(temp, SMBHSTSTS); /* signals SMBBLKDAT ready */
380 if ((temp = (0x1e & inb_p(SMBHSTSTS))) != 0x00) {
381 dev_dbg(&I801_dev->dev,
382 "Bad status (%02x) at end of transaction\n",
385 dev_dbg(&I801_dev->dev, "Block (post %d): CNT=%02x, CMD=%02x, "
386 "ADD=%02x, DAT0=%02x, BLKDAT=%02x\n", i,
387 inb_p(SMBHSTCNT), inb_p(SMBHSTCMD), inb_p(SMBHSTADD),
388 inb_p(SMBHSTDAT0), inb_p(SMBBLKDAT));
395 if(isich4 && command == I2C_SMBUS_BLOCK_DATA_PEC) {
396 /* wait for INTR bit as advised by Intel */
399 temp = inb_p(SMBHSTSTS);
401 } while ((!(temp & 0x02))
402 && (timeout++ < MAX_TIMEOUT));
404 if (timeout >= MAX_TIMEOUT) {
405 dev_dbg(&I801_dev->dev, "PEC Timeout!\n");
407 outb_p(temp, SMBHSTSTS);
412 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
413 /* restore saved configuration register value */
414 pci_write_config_byte(I801_dev, SMBHSTCFG, hostc);
419 /* Return -1 on error. */
420 static s32 i801_access(struct i2c_adapter * adap, u16 addr,
421 unsigned short flags, char read_write, u8 command,
422 int size, union i2c_smbus_data * data)
430 hwpec = (flags & I2C_CLIENT_PEC) != 0;
434 case I2C_SMBUS_QUICK:
435 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
440 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
442 if (read_write == I2C_SMBUS_WRITE)
443 outb_p(command, SMBHSTCMD);
446 case I2C_SMBUS_BYTE_DATA:
447 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
449 outb_p(command, SMBHSTCMD);
450 if (read_write == I2C_SMBUS_WRITE)
451 outb_p(data->byte, SMBHSTDAT0);
452 xact = I801_BYTE_DATA;
454 case I2C_SMBUS_WORD_DATA:
455 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
457 outb_p(command, SMBHSTCMD);
458 if (read_write == I2C_SMBUS_WRITE) {
459 outb_p(data->word & 0xff, SMBHSTDAT0);
460 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
462 xact = I801_WORD_DATA;
464 case I2C_SMBUS_BLOCK_DATA:
465 case I2C_SMBUS_I2C_BLOCK_DATA:
467 case I2C_SMBUS_BLOCK_DATA_PEC:
468 if(hwpec && size == I2C_SMBUS_BLOCK_DATA)
469 size = I2C_SMBUS_BLOCK_DATA_PEC;
471 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
473 outb_p(command, SMBHSTCMD);
476 case I2C_SMBUS_PROC_CALL:
478 dev_err(&I801_dev->dev, "Unsupported transaction %d\n", size);
483 if(isich4 && hwpec) {
484 if(size != I2C_SMBUS_QUICK &&
485 size != I2C_SMBUS_I2C_BLOCK_DATA)
486 outb_p(1, SMBAUXCTL); /* enable HW PEC */
490 ret = i801_block_transaction(data, read_write, size);
492 outb_p(xact | ENABLE_INT9, SMBHSTCNT);
493 ret = i801_transaction();
497 if(isich4 && hwpec) {
498 if(size != I2C_SMBUS_QUICK &&
499 size != I2C_SMBUS_I2C_BLOCK_DATA)
500 outb_p(0, SMBAUXCTL);
508 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
511 switch (xact & 0x7f) {
512 case I801_BYTE: /* Result put in SMBHSTDAT0 */
514 data->byte = inb_p(SMBHSTDAT0);
517 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
524 static u32 i801_func(struct i2c_adapter *adapter)
526 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
527 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
528 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK
530 | (isich4 ? I2C_FUNC_SMBUS_BLOCK_DATA_PEC |
531 I2C_FUNC_SMBUS_HWPEC_CALC
537 static struct i2c_algorithm smbus_algorithm = {
538 .smbus_xfer = i801_access,
539 .functionality = i801_func,
542 static struct i2c_adapter i801_adapter = {
543 .owner = THIS_MODULE,
544 .class = I2C_CLASS_HWMON,
545 .algo = &smbus_algorithm,
549 static struct pci_device_id i801_ids[] = {
550 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
551 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
552 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
553 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
554 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
555 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
556 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
557 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
558 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
559 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
563 MODULE_DEVICE_TABLE (pci, i801_ids);
565 static int __devinit i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
568 if (i801_setup(dev)) {
570 "I801 not detected, module not inserted.\n");
574 /* set up the driverfs linkage to our parent device */
575 i801_adapter.dev.parent = &dev->dev;
577 snprintf(i801_adapter.name, I2C_NAME_SIZE,
578 "SMBus I801 adapter at %04x", i801_smba);
579 return i2c_add_adapter(&i801_adapter);
582 static void __devexit i801_remove(struct pci_dev *dev)
584 i2c_del_adapter(&i801_adapter);
585 release_region(i801_smba, (isich4 ? 16 : 8));
588 static struct pci_driver i801_driver = {
589 .name = "i801_smbus",
590 .id_table = i801_ids,
592 .remove = __devexit_p(i801_remove),
595 static int __init i2c_i801_init(void)
597 return pci_register_driver(&i801_driver);
600 static void __exit i2c_i801_exit(void)
602 pci_unregister_driver(&i801_driver);
605 MODULE_AUTHOR ("Frodo Looijaard <frodol@dds.nl>, "
606 "Philip Edelbrock <phil@netroedge.com>, "
607 "and Mark D. Studebaker <mdsxyz123@yahoo.com>");
608 MODULE_DESCRIPTION("I801 SMBus driver");
609 MODULE_LICENSE("GPL");
611 module_init(i2c_i801_init);
612 module_exit(i2c_i801_exit);