blob: eaa9b387543e8730fec9c1e3d247ae52f6d4640a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl> and
3 Philip Edelbrock <phil@netroedge.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20/*
21 Supports:
22 Intel PIIX4, 440MX
Martin Devera5f7ea3c2006-02-27 23:11:45 +010023 Serverworks OSB4, CSB5, CSB6, HT-1000
Shane Huang60693e52007-08-30 23:56:38 -070024 ATI IXP200, IXP300, IXP400, SB600, SB700, SB800
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 SMSC Victory66
26
27 Note: we assume there can only be one device, with one SMBus interface.
28*/
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/moduleparam.h>
32#include <linux/pci.h>
33#include <linux/kernel.h>
34#include <linux/delay.h>
35#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/ioport.h>
37#include <linux/i2c.h>
38#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/dmi.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020040#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
42
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* PIIX4 SMBus address offsets */
45#define SMBHSTSTS (0 + piix4_smba)
46#define SMBHSLVSTS (1 + piix4_smba)
47#define SMBHSTCNT (2 + piix4_smba)
48#define SMBHSTCMD (3 + piix4_smba)
49#define SMBHSTADD (4 + piix4_smba)
50#define SMBHSTDAT0 (5 + piix4_smba)
51#define SMBHSTDAT1 (6 + piix4_smba)
52#define SMBBLKDAT (7 + piix4_smba)
53#define SMBSLVCNT (8 + piix4_smba)
54#define SMBSHDWCMD (9 + piix4_smba)
55#define SMBSLVEVT (0xA + piix4_smba)
56#define SMBSLVDAT (0xC + piix4_smba)
57
58/* count for request_region */
59#define SMBIOSIZE 8
60
61/* PCI Address Constants */
62#define SMBBA 0x090
63#define SMBHSTCFG 0x0D2
64#define SMBSLVC 0x0D3
65#define SMBSHDW1 0x0D4
66#define SMBSHDW2 0x0D5
67#define SMBREV 0x0D6
68
69/* Other settings */
70#define MAX_TIMEOUT 500
71#define ENABLE_INT9 0
72
73/* PIIX4 constants */
74#define PIIX4_QUICK 0x00
75#define PIIX4_BYTE 0x04
76#define PIIX4_BYTE_DATA 0x08
77#define PIIX4_WORD_DATA 0x0C
78#define PIIX4_BLOCK_DATA 0x14
79
80/* insmod parameters */
81
82/* If force is set to anything different from 0, we forcibly enable the
83 PIIX4. DANGEROUS! */
Jean Delvare60507092005-09-25 16:23:07 +020084static int force;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085module_param (force, int, 0);
86MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!");
87
88/* If force_addr is set to anything different from 0, we forcibly enable
89 the PIIX4 at the given address. VERY DANGEROUS! */
Jean Delvare60507092005-09-25 16:23:07 +020090static int force_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091module_param (force_addr, int, 0);
92MODULE_PARM_DESC(force_addr,
93 "Forcibly enable the PIIX4 at the given address. "
94 "EXTREMELY DANGEROUS!");
95
Jean Delvare60507092005-09-25 16:23:07 +020096static unsigned short piix4_smba;
David Milburnb1c17592008-05-11 20:37:05 +020097static int srvrworks_csb5_delay;
Jean Delvared6072f82005-09-25 16:37:04 +020098static struct pci_driver piix4_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static struct i2c_adapter piix4_adapter;
100
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200101static struct dmi_system_id __devinitdata piix4_dmi_blacklist[] = {
102 {
103 .ident = "Sapphire AM2RD790",
104 .matches = {
105 DMI_MATCH(DMI_BOARD_VENDOR, "SAPPHIRE Inc."),
106 DMI_MATCH(DMI_BOARD_NAME, "PC-AM2RD790"),
107 },
108 },
109 {
110 .ident = "DFI Lanparty UT 790FX",
111 .matches = {
112 DMI_MATCH(DMI_BOARD_VENDOR, "DFI Inc."),
113 DMI_MATCH(DMI_BOARD_NAME, "LP UT 790FX"),
114 },
115 },
116 { }
117};
118
119/* The IBM entry is in a separate table because we only check it
120 on Intel-based systems */
121static struct dmi_system_id __devinitdata piix4_dmi_ibm[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 {
123 .ident = "IBM",
124 .matches = { DMI_MATCH(DMI_SYS_VENDOR, "IBM"), },
125 },
126 { },
127};
128
129static int __devinit piix4_setup(struct pci_dev *PIIX4_dev,
130 const struct pci_device_id *id)
131{
132 unsigned char temp;
133
David Milburnb1c17592008-05-11 20:37:05 +0200134 if ((PIIX4_dev->vendor == PCI_VENDOR_ID_SERVERWORKS) &&
135 (PIIX4_dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5))
136 srvrworks_csb5_delay = 1;
137
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200138 /* On some motherboards, it was reported that accessing the SMBus
139 caused severe hardware problems */
140 if (dmi_check_system(piix4_dmi_blacklist)) {
141 dev_err(&PIIX4_dev->dev,
142 "Accessing the SMBus on this system is unsafe!\n");
143 return -EPERM;
144 }
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 /* Don't access SMBus on IBM systems which get corrupted eeproms */
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200147 if (dmi_check_system(piix4_dmi_ibm) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 PIIX4_dev->vendor == PCI_VENDOR_ID_INTEL) {
Jean Delvaref9ba6c02006-04-25 13:37:25 +0200149 dev_err(&PIIX4_dev->dev, "IBM system detected; this module "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 "may corrupt your serial eeprom! Refusing to load "
151 "module!\n");
152 return -EPERM;
153 }
154
155 /* Determine the address of the SMBus areas */
156 if (force_addr) {
157 piix4_smba = force_addr & 0xfff0;
158 force = 0;
159 } else {
160 pci_read_config_word(PIIX4_dev, SMBBA, &piix4_smba);
161 piix4_smba &= 0xfff0;
162 if(piix4_smba == 0) {
Jean Delvarefa63cd52008-07-14 22:38:25 +0200163 dev_err(&PIIX4_dev->dev, "SMBus base address "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 "uninitialized - upgrade BIOS or use "
165 "force_addr=0xaddr\n");
166 return -ENODEV;
167 }
168 }
169
Jean Delvare54fb4a052008-07-14 22:38:33 +0200170 if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name))
171 return -EBUSY;
172
Jean Delvared6072f82005-09-25 16:37:04 +0200173 if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) {
Jean Delvarefa63cd52008-07-14 22:38:25 +0200174 dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 piix4_smba);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200176 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
179 pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp);
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* If force_addr is set, we program the new address here. Just to make
182 sure, we disable the PIIX4 first. */
183 if (force_addr) {
184 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp & 0xfe);
185 pci_write_config_word(PIIX4_dev, SMBBA, piix4_smba);
186 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp | 0x01);
187 dev_info(&PIIX4_dev->dev, "WARNING: SMBus interface set to "
188 "new address %04x!\n", piix4_smba);
189 } else if ((temp & 1) == 0) {
190 if (force) {
191 /* This should never need to be done, but has been
192 * noted that many Dell machines have the SMBus
193 * interface on the PIIX4 disabled!? NOTE: This assumes
194 * I/O space and other allocations WERE done by the
195 * Bios! Don't complain if your hardware does weird
196 * things after enabling this. :') Check for Bios
197 * updates before resorting to this.
198 */
199 pci_write_config_byte(PIIX4_dev, SMBHSTCFG,
200 temp | 1);
201 dev_printk(KERN_NOTICE, &PIIX4_dev->dev,
202 "WARNING: SMBus interface has been "
203 "FORCEFULLY ENABLED!\n");
204 } else {
205 dev_err(&PIIX4_dev->dev,
206 "Host SMBus controller not enabled!\n");
207 release_region(piix4_smba, SMBIOSIZE);
208 piix4_smba = 0;
209 return -ENODEV;
210 }
211 }
212
Rudolf Marek54aaa1c2006-04-25 13:06:41 +0200213 if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 dev_dbg(&PIIX4_dev->dev, "Using Interrupt 9 for SMBus.\n");
215 else if ((temp & 0x0E) == 0)
216 dev_dbg(&PIIX4_dev->dev, "Using Interrupt SMI# for SMBus.\n");
217 else
218 dev_err(&PIIX4_dev->dev, "Illegal Interrupt configuration "
219 "(or code out of date)!\n");
220
221 pci_read_config_byte(PIIX4_dev, SMBREV, &temp);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200222 dev_info(&PIIX4_dev->dev,
223 "SMBus Host Controller at 0x%x, revision %d\n",
224 piix4_smba, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 return 0;
227}
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229static int piix4_transaction(void)
230{
231 int temp;
232 int result = 0;
233 int timeout = 0;
234
235 dev_dbg(&piix4_adapter.dev, "Transaction (pre): CNT=%02x, CMD=%02x, "
236 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
237 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
238 inb_p(SMBHSTDAT1));
239
240 /* Make sure the SMBus host is ready to start transmitting */
241 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
242 dev_dbg(&piix4_adapter.dev, "SMBus busy (%02x). "
Jean Delvare541e6a02005-06-23 22:18:08 +0200243 "Resetting...\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 outb_p(temp, SMBHSTSTS);
245 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
246 dev_err(&piix4_adapter.dev, "Failed! (%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200247 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 } else {
Jean Delvarec5d21b72008-04-29 23:11:37 +0200249 dev_dbg(&piix4_adapter.dev, "Successful!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251 }
252
253 /* start the transaction by setting bit 6 */
254 outb_p(inb(SMBHSTCNT) | 0x040, SMBHSTCNT);
255
256 /* We will always wait for a fraction of a second! (See PIIX4 docs errata) */
David Milburnb1c17592008-05-11 20:37:05 +0200257 if (srvrworks_csb5_delay) /* Extra delay for SERVERWORKS_CSB5 */
258 msleep(2);
259 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 msleep(1);
David Milburnb1c17592008-05-11 20:37:05 +0200261
262 while ((timeout++ < MAX_TIMEOUT) &&
263 ((temp = inb_p(SMBHSTSTS)) & 0x01))
264 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /* If the SMBus is still busy, we give up */
267 if (timeout >= MAX_TIMEOUT) {
268 dev_err(&piix4_adapter.dev, "SMBus Timeout!\n");
David Brownell97140342008-07-14 22:38:25 +0200269 result = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271
272 if (temp & 0x10) {
David Brownell97140342008-07-14 22:38:25 +0200273 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 dev_err(&piix4_adapter.dev, "Error: Failed bus transaction\n");
275 }
276
277 if (temp & 0x08) {
David Brownell97140342008-07-14 22:38:25 +0200278 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 dev_dbg(&piix4_adapter.dev, "Bus collision! SMBus may be "
280 "locked until next hard reset. (sorry!)\n");
281 /* Clock stops and slave is stuck in mid-transmission */
282 }
283
284 if (temp & 0x04) {
David Brownell97140342008-07-14 22:38:25 +0200285 result = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 dev_dbg(&piix4_adapter.dev, "Error: no response!\n");
287 }
288
289 if (inb_p(SMBHSTSTS) != 0x00)
290 outb_p(inb(SMBHSTSTS), SMBHSTSTS);
291
292 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
293 dev_err(&piix4_adapter.dev, "Failed reset at end of "
294 "transaction (%02x)\n", temp);
295 }
296 dev_dbg(&piix4_adapter.dev, "Transaction (post): CNT=%02x, CMD=%02x, "
297 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
298 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
299 inb_p(SMBHSTDAT1));
300 return result;
301}
302
David Brownell97140342008-07-14 22:38:25 +0200303/* Return negative errno on error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static s32 piix4_access(struct i2c_adapter * adap, u16 addr,
305 unsigned short flags, char read_write,
306 u8 command, int size, union i2c_smbus_data * data)
307{
308 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200309 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 case I2C_SMBUS_QUICK:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200313 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 SMBHSTADD);
315 size = PIIX4_QUICK;
316 break;
317 case I2C_SMBUS_BYTE:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200318 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 SMBHSTADD);
320 if (read_write == I2C_SMBUS_WRITE)
321 outb_p(command, SMBHSTCMD);
322 size = PIIX4_BYTE;
323 break;
324 case I2C_SMBUS_BYTE_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200325 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 SMBHSTADD);
327 outb_p(command, SMBHSTCMD);
328 if (read_write == I2C_SMBUS_WRITE)
329 outb_p(data->byte, SMBHSTDAT0);
330 size = PIIX4_BYTE_DATA;
331 break;
332 case I2C_SMBUS_WORD_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200333 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 SMBHSTADD);
335 outb_p(command, SMBHSTCMD);
336 if (read_write == I2C_SMBUS_WRITE) {
337 outb_p(data->word & 0xff, SMBHSTDAT0);
338 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
339 }
340 size = PIIX4_WORD_DATA;
341 break;
342 case I2C_SMBUS_BLOCK_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200343 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 SMBHSTADD);
345 outb_p(command, SMBHSTCMD);
346 if (read_write == I2C_SMBUS_WRITE) {
347 len = data->block[0];
Jean Delvarefa63cd52008-07-14 22:38:25 +0200348 if (len == 0 || len > I2C_SMBUS_BLOCK_MAX)
349 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 outb_p(len, SMBHSTDAT0);
351 i = inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
352 for (i = 1; i <= len; i++)
353 outb_p(data->block[i], SMBBLKDAT);
354 }
355 size = PIIX4_BLOCK_DATA;
356 break;
Jean Delvareac7fc4f2008-07-14 22:38:25 +0200357 default:
358 dev_warn(&adap->dev, "Unsupported transaction %d\n", size);
359 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
362 outb_p((size & 0x1C) + (ENABLE_INT9 & 1), SMBHSTCNT);
363
David Brownell97140342008-07-14 22:38:25 +0200364 status = piix4_transaction();
365 if (status)
366 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if ((read_write == I2C_SMBUS_WRITE) || (size == PIIX4_QUICK))
369 return 0;
370
371
372 switch (size) {
Jean Delvare3578a072008-04-29 23:11:37 +0200373 case PIIX4_BYTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 case PIIX4_BYTE_DATA:
375 data->byte = inb_p(SMBHSTDAT0);
376 break;
377 case PIIX4_WORD_DATA:
378 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
379 break;
380 case PIIX4_BLOCK_DATA:
381 data->block[0] = inb_p(SMBHSTDAT0);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200382 if (data->block[0] == 0 || data->block[0] > I2C_SMBUS_BLOCK_MAX)
383 return -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 i = inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
385 for (i = 1; i <= data->block[0]; i++)
386 data->block[i] = inb_p(SMBBLKDAT);
387 break;
388 }
389 return 0;
390}
391
392static u32 piix4_func(struct i2c_adapter *adapter)
393{
394 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
395 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
396 I2C_FUNC_SMBUS_BLOCK_DATA;
397}
398
Jean Delvare8f9082c2006-09-03 22:39:46 +0200399static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 .smbus_xfer = piix4_access,
401 .functionality = piix4_func,
402};
403
404static struct i2c_adapter piix4_adapter = {
405 .owner = THIS_MODULE,
Stephen Hemminger9ace5552007-02-13 22:09:01 +0100406 .id = I2C_HW_SMBUS_PIIX4,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200407 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 .algo = &smbus_algorithm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409};
410
411static struct pci_device_id piix4_ids[] = {
Jean Delvare9b7389c2008-01-27 18:14:51 +0100412 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3) },
413 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443MX_3) },
414 { PCI_DEVICE(PCI_VENDOR_ID_EFAR, PCI_DEVICE_ID_EFAR_SLC90E66_3) },
415 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP200_SMBUS) },
416 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_SMBUS) },
417 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS) },
418 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS) },
419 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
420 PCI_DEVICE_ID_SERVERWORKS_OSB4) },
421 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
422 PCI_DEVICE_ID_SERVERWORKS_CSB5) },
423 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
424 PCI_DEVICE_ID_SERVERWORKS_CSB6) },
425 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
426 PCI_DEVICE_ID_SERVERWORKS_HT1000SB) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 { 0, }
428};
429
430MODULE_DEVICE_TABLE (pci, piix4_ids);
431
432static int __devinit piix4_probe(struct pci_dev *dev,
433 const struct pci_device_id *id)
434{
435 int retval;
436
437 retval = piix4_setup(dev, id);
438 if (retval)
439 return retval;
440
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100441 /* set up the sysfs linkage to our parent device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 piix4_adapter.dev.parent = &dev->dev;
443
David Brownell2096b952007-05-01 23:26:28 +0200444 snprintf(piix4_adapter.name, sizeof(piix4_adapter.name),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 "SMBus PIIX4 adapter at %04x", piix4_smba);
446
447 if ((retval = i2c_add_adapter(&piix4_adapter))) {
448 dev_err(&dev->dev, "Couldn't register adapter!\n");
449 release_region(piix4_smba, SMBIOSIZE);
450 piix4_smba = 0;
451 }
452
453 return retval;
454}
455
456static void __devexit piix4_remove(struct pci_dev *dev)
457{
458 if (piix4_smba) {
459 i2c_del_adapter(&piix4_adapter);
460 release_region(piix4_smba, SMBIOSIZE);
461 piix4_smba = 0;
462 }
463}
464
465static struct pci_driver piix4_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 .name = "piix4_smbus",
467 .id_table = piix4_ids,
468 .probe = piix4_probe,
469 .remove = __devexit_p(piix4_remove),
470};
471
472static int __init i2c_piix4_init(void)
473{
474 return pci_register_driver(&piix4_driver);
475}
476
477static void __exit i2c_piix4_exit(void)
478{
479 pci_unregister_driver(&piix4_driver);
480}
481
482MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
483 "Philip Edelbrock <phil@netroedge.com>");
484MODULE_DESCRIPTION("PIIX4 SMBus driver");
485MODULE_LICENSE("GPL");
486
487module_init(i2c_piix4_init);
488module_exit(i2c_piix4_exit);