blob: 85d69f3e624f2a7faf8116a7e8121f55830d8648 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 piix4.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl> and
5 Philip Edelbrock <phil@netroedge.com>
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/*
23 Supports:
24 Intel PIIX4, 440MX
Martin Devera5f7ea3c2006-02-27 23:11:45 +010025 Serverworks OSB4, CSB5, CSB6, HT-1000
Shane Huang60693e52007-08-30 23:56:38 -070026 ATI IXP200, IXP300, IXP400, SB600, SB700, SB800
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 SMSC Victory66
28
29 Note: we assume there can only be one device, with one SMBus interface.
30*/
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/module.h>
33#include <linux/moduleparam.h>
34#include <linux/pci.h>
35#include <linux/kernel.h>
36#include <linux/delay.h>
37#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/ioport.h>
39#include <linux/i2c.h>
40#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/dmi.h>
42#include <asm/io.h>
43
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/* PIIX4 SMBus address offsets */
46#define SMBHSTSTS (0 + piix4_smba)
47#define SMBHSLVSTS (1 + piix4_smba)
48#define SMBHSTCNT (2 + piix4_smba)
49#define SMBHSTCMD (3 + piix4_smba)
50#define SMBHSTADD (4 + piix4_smba)
51#define SMBHSTDAT0 (5 + piix4_smba)
52#define SMBHSTDAT1 (6 + piix4_smba)
53#define SMBBLKDAT (7 + piix4_smba)
54#define SMBSLVCNT (8 + piix4_smba)
55#define SMBSHDWCMD (9 + piix4_smba)
56#define SMBSLVEVT (0xA + piix4_smba)
57#define SMBSLVDAT (0xC + piix4_smba)
58
59/* count for request_region */
60#define SMBIOSIZE 8
61
62/* PCI Address Constants */
63#define SMBBA 0x090
64#define SMBHSTCFG 0x0D2
65#define SMBSLVC 0x0D3
66#define SMBSHDW1 0x0D4
67#define SMBSHDW2 0x0D5
68#define SMBREV 0x0D6
69
70/* Other settings */
71#define MAX_TIMEOUT 500
72#define ENABLE_INT9 0
73
74/* PIIX4 constants */
75#define PIIX4_QUICK 0x00
76#define PIIX4_BYTE 0x04
77#define PIIX4_BYTE_DATA 0x08
78#define PIIX4_WORD_DATA 0x0C
79#define PIIX4_BLOCK_DATA 0x14
80
81/* insmod parameters */
82
83/* If force is set to anything different from 0, we forcibly enable the
84 PIIX4. DANGEROUS! */
Jean Delvare60507092005-09-25 16:23:07 +020085static int force;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086module_param (force, int, 0);
87MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!");
88
89/* If force_addr is set to anything different from 0, we forcibly enable
90 the PIIX4 at the given address. VERY DANGEROUS! */
Jean Delvare60507092005-09-25 16:23:07 +020091static int force_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092module_param (force_addr, int, 0);
93MODULE_PARM_DESC(force_addr,
94 "Forcibly enable the PIIX4 at the given address. "
95 "EXTREMELY DANGEROUS!");
96
Jean Delvare60507092005-09-25 16:23:07 +020097static unsigned short piix4_smba;
David Milburnb1c17592008-05-11 20:37:05 +020098static int srvrworks_csb5_delay;
Jean Delvared6072f82005-09-25 16:37:04 +020099static struct pci_driver piix4_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static struct i2c_adapter piix4_adapter;
101
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200102static struct dmi_system_id __devinitdata piix4_dmi_blacklist[] = {
103 {
104 .ident = "Sapphire AM2RD790",
105 .matches = {
106 DMI_MATCH(DMI_BOARD_VENDOR, "SAPPHIRE Inc."),
107 DMI_MATCH(DMI_BOARD_NAME, "PC-AM2RD790"),
108 },
109 },
110 {
111 .ident = "DFI Lanparty UT 790FX",
112 .matches = {
113 DMI_MATCH(DMI_BOARD_VENDOR, "DFI Inc."),
114 DMI_MATCH(DMI_BOARD_NAME, "LP UT 790FX"),
115 },
116 },
117 { }
118};
119
120/* The IBM entry is in a separate table because we only check it
121 on Intel-based systems */
122static struct dmi_system_id __devinitdata piix4_dmi_ibm[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 {
124 .ident = "IBM",
125 .matches = { DMI_MATCH(DMI_SYS_VENDOR, "IBM"), },
126 },
127 { },
128};
129
130static int __devinit piix4_setup(struct pci_dev *PIIX4_dev,
131 const struct pci_device_id *id)
132{
133 unsigned char temp;
134
David Milburnb1c17592008-05-11 20:37:05 +0200135 if ((PIIX4_dev->vendor == PCI_VENDOR_ID_SERVERWORKS) &&
136 (PIIX4_dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5))
137 srvrworks_csb5_delay = 1;
138
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200139 /* On some motherboards, it was reported that accessing the SMBus
140 caused severe hardware problems */
141 if (dmi_check_system(piix4_dmi_blacklist)) {
142 dev_err(&PIIX4_dev->dev,
143 "Accessing the SMBus on this system is unsafe!\n");
144 return -EPERM;
145 }
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* Don't access SMBus on IBM systems which get corrupted eeproms */
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200148 if (dmi_check_system(piix4_dmi_ibm) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 PIIX4_dev->vendor == PCI_VENDOR_ID_INTEL) {
Jean Delvaref9ba6c02006-04-25 13:37:25 +0200150 dev_err(&PIIX4_dev->dev, "IBM system detected; this module "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 "may corrupt your serial eeprom! Refusing to load "
152 "module!\n");
153 return -EPERM;
154 }
155
156 /* Determine the address of the SMBus areas */
157 if (force_addr) {
158 piix4_smba = force_addr & 0xfff0;
159 force = 0;
160 } else {
161 pci_read_config_word(PIIX4_dev, SMBBA, &piix4_smba);
162 piix4_smba &= 0xfff0;
163 if(piix4_smba == 0) {
Jean Delvarefa63cd52008-07-14 22:38:25 +0200164 dev_err(&PIIX4_dev->dev, "SMBus base address "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 "uninitialized - upgrade BIOS or use "
166 "force_addr=0xaddr\n");
167 return -ENODEV;
168 }
169 }
170
Jean Delvared6072f82005-09-25 16:37:04 +0200171 if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) {
Jean Delvarefa63cd52008-07-14 22:38:25 +0200172 dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 piix4_smba);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200174 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp);
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* If force_addr is set, we program the new address here. Just to make
180 sure, we disable the PIIX4 first. */
181 if (force_addr) {
182 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp & 0xfe);
183 pci_write_config_word(PIIX4_dev, SMBBA, piix4_smba);
184 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp | 0x01);
185 dev_info(&PIIX4_dev->dev, "WARNING: SMBus interface set to "
186 "new address %04x!\n", piix4_smba);
187 } else if ((temp & 1) == 0) {
188 if (force) {
189 /* This should never need to be done, but has been
190 * noted that many Dell machines have the SMBus
191 * interface on the PIIX4 disabled!? NOTE: This assumes
192 * I/O space and other allocations WERE done by the
193 * Bios! Don't complain if your hardware does weird
194 * things after enabling this. :') Check for Bios
195 * updates before resorting to this.
196 */
197 pci_write_config_byte(PIIX4_dev, SMBHSTCFG,
198 temp | 1);
199 dev_printk(KERN_NOTICE, &PIIX4_dev->dev,
200 "WARNING: SMBus interface has been "
201 "FORCEFULLY ENABLED!\n");
202 } else {
203 dev_err(&PIIX4_dev->dev,
204 "Host SMBus controller not enabled!\n");
205 release_region(piix4_smba, SMBIOSIZE);
206 piix4_smba = 0;
207 return -ENODEV;
208 }
209 }
210
Rudolf Marek54aaa1c2006-04-25 13:06:41 +0200211 if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 dev_dbg(&PIIX4_dev->dev, "Using Interrupt 9 for SMBus.\n");
213 else if ((temp & 0x0E) == 0)
214 dev_dbg(&PIIX4_dev->dev, "Using Interrupt SMI# for SMBus.\n");
215 else
216 dev_err(&PIIX4_dev->dev, "Illegal Interrupt configuration "
217 "(or code out of date)!\n");
218
219 pci_read_config_byte(PIIX4_dev, SMBREV, &temp);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200220 dev_info(&PIIX4_dev->dev,
221 "SMBus Host Controller at 0x%x, revision %d\n",
222 piix4_smba, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 return 0;
225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227static int piix4_transaction(void)
228{
229 int temp;
230 int result = 0;
231 int timeout = 0;
232
233 dev_dbg(&piix4_adapter.dev, "Transaction (pre): CNT=%02x, CMD=%02x, "
234 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
235 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
236 inb_p(SMBHSTDAT1));
237
238 /* Make sure the SMBus host is ready to start transmitting */
239 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
240 dev_dbg(&piix4_adapter.dev, "SMBus busy (%02x). "
Jean Delvare541e6a02005-06-23 22:18:08 +0200241 "Resetting...\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 outb_p(temp, SMBHSTSTS);
243 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
244 dev_err(&piix4_adapter.dev, "Failed! (%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200245 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 } else {
Jean Delvarec5d21b72008-04-29 23:11:37 +0200247 dev_dbg(&piix4_adapter.dev, "Successful!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249 }
250
251 /* start the transaction by setting bit 6 */
252 outb_p(inb(SMBHSTCNT) | 0x040, SMBHSTCNT);
253
254 /* We will always wait for a fraction of a second! (See PIIX4 docs errata) */
David Milburnb1c17592008-05-11 20:37:05 +0200255 if (srvrworks_csb5_delay) /* Extra delay for SERVERWORKS_CSB5 */
256 msleep(2);
257 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 msleep(1);
David Milburnb1c17592008-05-11 20:37:05 +0200259
260 while ((timeout++ < MAX_TIMEOUT) &&
261 ((temp = inb_p(SMBHSTSTS)) & 0x01))
262 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /* If the SMBus is still busy, we give up */
265 if (timeout >= MAX_TIMEOUT) {
266 dev_err(&piix4_adapter.dev, "SMBus Timeout!\n");
David Brownell97140342008-07-14 22:38:25 +0200267 result = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
270 if (temp & 0x10) {
David Brownell97140342008-07-14 22:38:25 +0200271 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 dev_err(&piix4_adapter.dev, "Error: Failed bus transaction\n");
273 }
274
275 if (temp & 0x08) {
David Brownell97140342008-07-14 22:38:25 +0200276 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dev_dbg(&piix4_adapter.dev, "Bus collision! SMBus may be "
278 "locked until next hard reset. (sorry!)\n");
279 /* Clock stops and slave is stuck in mid-transmission */
280 }
281
282 if (temp & 0x04) {
David Brownell97140342008-07-14 22:38:25 +0200283 result = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 dev_dbg(&piix4_adapter.dev, "Error: no response!\n");
285 }
286
287 if (inb_p(SMBHSTSTS) != 0x00)
288 outb_p(inb(SMBHSTSTS), SMBHSTSTS);
289
290 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
291 dev_err(&piix4_adapter.dev, "Failed reset at end of "
292 "transaction (%02x)\n", temp);
293 }
294 dev_dbg(&piix4_adapter.dev, "Transaction (post): CNT=%02x, CMD=%02x, "
295 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
296 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
297 inb_p(SMBHSTDAT1));
298 return result;
299}
300
David Brownell97140342008-07-14 22:38:25 +0200301/* Return negative errno on error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302static s32 piix4_access(struct i2c_adapter * adap, u16 addr,
303 unsigned short flags, char read_write,
304 u8 command, int size, union i2c_smbus_data * data)
305{
306 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200307 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 case I2C_SMBUS_QUICK:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200311 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 SMBHSTADD);
313 size = PIIX4_QUICK;
314 break;
315 case I2C_SMBUS_BYTE:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200316 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 SMBHSTADD);
318 if (read_write == I2C_SMBUS_WRITE)
319 outb_p(command, SMBHSTCMD);
320 size = PIIX4_BYTE;
321 break;
322 case I2C_SMBUS_BYTE_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200323 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 SMBHSTADD);
325 outb_p(command, SMBHSTCMD);
326 if (read_write == I2C_SMBUS_WRITE)
327 outb_p(data->byte, SMBHSTDAT0);
328 size = PIIX4_BYTE_DATA;
329 break;
330 case I2C_SMBUS_WORD_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200331 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 SMBHSTADD);
333 outb_p(command, SMBHSTCMD);
334 if (read_write == I2C_SMBUS_WRITE) {
335 outb_p(data->word & 0xff, SMBHSTDAT0);
336 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
337 }
338 size = PIIX4_WORD_DATA;
339 break;
340 case I2C_SMBUS_BLOCK_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200341 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 SMBHSTADD);
343 outb_p(command, SMBHSTCMD);
344 if (read_write == I2C_SMBUS_WRITE) {
345 len = data->block[0];
Jean Delvarefa63cd52008-07-14 22:38:25 +0200346 if (len == 0 || len > I2C_SMBUS_BLOCK_MAX)
347 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 outb_p(len, SMBHSTDAT0);
349 i = inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
350 for (i = 1; i <= len; i++)
351 outb_p(data->block[i], SMBBLKDAT);
352 }
353 size = PIIX4_BLOCK_DATA;
354 break;
Jean Delvareac7fc4f2008-07-14 22:38:25 +0200355 default:
356 dev_warn(&adap->dev, "Unsupported transaction %d\n", size);
357 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359
360 outb_p((size & 0x1C) + (ENABLE_INT9 & 1), SMBHSTCNT);
361
David Brownell97140342008-07-14 22:38:25 +0200362 status = piix4_transaction();
363 if (status)
364 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 if ((read_write == I2C_SMBUS_WRITE) || (size == PIIX4_QUICK))
367 return 0;
368
369
370 switch (size) {
Jean Delvare3578a072008-04-29 23:11:37 +0200371 case PIIX4_BYTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 case PIIX4_BYTE_DATA:
373 data->byte = inb_p(SMBHSTDAT0);
374 break;
375 case PIIX4_WORD_DATA:
376 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
377 break;
378 case PIIX4_BLOCK_DATA:
379 data->block[0] = inb_p(SMBHSTDAT0);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200380 if (data->block[0] == 0 || data->block[0] > I2C_SMBUS_BLOCK_MAX)
381 return -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 i = inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
383 for (i = 1; i <= data->block[0]; i++)
384 data->block[i] = inb_p(SMBBLKDAT);
385 break;
386 }
387 return 0;
388}
389
390static u32 piix4_func(struct i2c_adapter *adapter)
391{
392 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
393 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
394 I2C_FUNC_SMBUS_BLOCK_DATA;
395}
396
Jean Delvare8f9082c2006-09-03 22:39:46 +0200397static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 .smbus_xfer = piix4_access,
399 .functionality = piix4_func,
400};
401
402static struct i2c_adapter piix4_adapter = {
403 .owner = THIS_MODULE,
Stephen Hemminger9ace5552007-02-13 22:09:01 +0100404 .id = I2C_HW_SMBUS_PIIX4,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200405 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 .algo = &smbus_algorithm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407};
408
409static struct pci_device_id piix4_ids[] = {
Jean Delvare9b7389c2008-01-27 18:14:51 +0100410 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3) },
411 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443MX_3) },
412 { PCI_DEVICE(PCI_VENDOR_ID_EFAR, PCI_DEVICE_ID_EFAR_SLC90E66_3) },
413 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP200_SMBUS) },
414 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_SMBUS) },
415 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS) },
416 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS) },
417 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
418 PCI_DEVICE_ID_SERVERWORKS_OSB4) },
419 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
420 PCI_DEVICE_ID_SERVERWORKS_CSB5) },
421 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
422 PCI_DEVICE_ID_SERVERWORKS_CSB6) },
423 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
424 PCI_DEVICE_ID_SERVERWORKS_HT1000SB) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 { 0, }
426};
427
428MODULE_DEVICE_TABLE (pci, piix4_ids);
429
430static int __devinit piix4_probe(struct pci_dev *dev,
431 const struct pci_device_id *id)
432{
433 int retval;
434
435 retval = piix4_setup(dev, id);
436 if (retval)
437 return retval;
438
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100439 /* set up the sysfs linkage to our parent device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 piix4_adapter.dev.parent = &dev->dev;
441
David Brownell2096b952007-05-01 23:26:28 +0200442 snprintf(piix4_adapter.name, sizeof(piix4_adapter.name),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 "SMBus PIIX4 adapter at %04x", piix4_smba);
444
445 if ((retval = i2c_add_adapter(&piix4_adapter))) {
446 dev_err(&dev->dev, "Couldn't register adapter!\n");
447 release_region(piix4_smba, SMBIOSIZE);
448 piix4_smba = 0;
449 }
450
451 return retval;
452}
453
454static void __devexit piix4_remove(struct pci_dev *dev)
455{
456 if (piix4_smba) {
457 i2c_del_adapter(&piix4_adapter);
458 release_region(piix4_smba, SMBIOSIZE);
459 piix4_smba = 0;
460 }
461}
462
463static struct pci_driver piix4_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 .name = "piix4_smbus",
465 .id_table = piix4_ids,
466 .probe = piix4_probe,
467 .remove = __devexit_p(piix4_remove),
468};
469
470static int __init i2c_piix4_init(void)
471{
472 return pci_register_driver(&piix4_driver);
473}
474
475static void __exit i2c_piix4_exit(void)
476{
477 pci_unregister_driver(&piix4_driver);
478}
479
480MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
481 "Philip Edelbrock <phil@netroedge.com>");
482MODULE_DESCRIPTION("PIIX4 SMBus driver");
483MODULE_LICENSE("GPL");
484
485module_init(i2c_piix4_init);
486module_exit(i2c_piix4_exit);