2 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl> and
3 Philip Edelbrock <phil@netroedge.com>
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.
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.
19 Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100
20 ATI IXP200, IXP300, IXP400, SB600, SB700/SP5100, SB800
24 Note: we assume there can only be one device, with one or more
26 The device can register multiple i2c_adapters (up to PIIX4_MAX_ADAPTERS).
27 For devices supporting multiple ports the i2c_adapter should provide
28 an i2c_algorithm to access them.
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/pci.h>
34 #include <linux/kernel.h>
35 #include <linux/delay.h>
36 #include <linux/stddef.h>
37 #include <linux/ioport.h>
38 #include <linux/i2c.h>
39 #include <linux/slab.h>
40 #include <linux/dmi.h>
41 #include <linux/acpi.h>
43 #include <linux/mutex.h>
46 /* PIIX4 SMBus address offsets */
47 #define SMBHSTSTS (0 + piix4_smba)
48 #define SMBHSLVSTS (1 + piix4_smba)
49 #define SMBHSTCNT (2 + piix4_smba)
50 #define SMBHSTCMD (3 + piix4_smba)
51 #define SMBHSTADD (4 + piix4_smba)
52 #define SMBHSTDAT0 (5 + piix4_smba)
53 #define SMBHSTDAT1 (6 + piix4_smba)
54 #define SMBBLKDAT (7 + piix4_smba)
55 #define SMBSLVCNT (8 + piix4_smba)
56 #define SMBSHDWCMD (9 + piix4_smba)
57 #define SMBSLVEVT (0xA + piix4_smba)
58 #define SMBSLVDAT (0xC + piix4_smba)
60 /* count for request_region */
63 /* PCI Address Constants */
65 #define SMBHSTCFG 0x0D2
67 #define SMBSHDW1 0x0D4
68 #define SMBSHDW2 0x0D5
72 #define MAX_TIMEOUT 500
76 #define PIIX4_QUICK 0x00
77 #define PIIX4_BYTE 0x04
78 #define PIIX4_BYTE_DATA 0x08
79 #define PIIX4_WORD_DATA 0x0C
80 #define PIIX4_BLOCK_DATA 0x14
82 /* Multi-port constants */
83 #define PIIX4_MAX_ADAPTERS 4
86 #define SB800_PIIX4_SMB_IDX 0xcd6
89 * SB800 port is selected by bits 2:1 of the smb_en register (0x2c)
90 * or the smb_sel register (0x2e), depending on bit 0 of register 0x2f.
91 * Hudson-2/Bolton port is always selected by bits 2:1 of register 0x2f.
93 #define SB800_PIIX4_PORT_IDX 0x2c
94 #define SB800_PIIX4_PORT_IDX_ALT 0x2e
95 #define SB800_PIIX4_PORT_IDX_SEL 0x2f
96 #define SB800_PIIX4_PORT_IDX_MASK 0x06
98 /* insmod parameters */
100 /* If force is set to anything different from 0, we forcibly enable the
103 module_param (force
, int, 0);
104 MODULE_PARM_DESC(force
, "Forcibly enable the PIIX4. DANGEROUS!");
106 /* If force_addr is set to anything different from 0, we forcibly enable
107 the PIIX4 at the given address. VERY DANGEROUS! */
108 static int force_addr
;
109 module_param (force_addr
, int, 0);
110 MODULE_PARM_DESC(force_addr
,
111 "Forcibly enable the PIIX4 at the given address. "
112 "EXTREMELY DANGEROUS!");
114 static int srvrworks_csb5_delay
;
115 static struct pci_driver piix4_driver
;
117 static const struct dmi_system_id piix4_dmi_blacklist
[] = {
119 .ident
= "Sapphire AM2RD790",
121 DMI_MATCH(DMI_BOARD_VENDOR
, "SAPPHIRE Inc."),
122 DMI_MATCH(DMI_BOARD_NAME
, "PC-AM2RD790"),
126 .ident
= "DFI Lanparty UT 790FX",
128 DMI_MATCH(DMI_BOARD_VENDOR
, "DFI Inc."),
129 DMI_MATCH(DMI_BOARD_NAME
, "LP UT 790FX"),
135 /* The IBM entry is in a separate table because we only check it
136 on Intel-based systems */
137 static const struct dmi_system_id piix4_dmi_ibm
[] = {
140 .matches
= { DMI_MATCH(DMI_SYS_VENDOR
, "IBM"), },
147 * piix4_mutex_sb800 protects piix4_port_sel_sb800 and the pair
148 * of I/O ports at SB800_PIIX4_SMB_IDX.
150 static DEFINE_MUTEX(piix4_mutex_sb800
);
151 static u8 piix4_port_sel_sb800
;
152 static const char *piix4_main_port_names_sb800
[PIIX4_MAX_ADAPTERS
] = {
153 " port 0", " port 2", " port 3", " port 4"
155 static const char *piix4_aux_port_name_sb800
= " port 1";
157 struct i2c_piix4_adapdata
{
162 u8 port
; /* Port number, shifted */
165 static int piix4_setup(struct pci_dev
*PIIX4_dev
,
166 const struct pci_device_id
*id
)
169 unsigned short piix4_smba
;
171 if ((PIIX4_dev
->vendor
== PCI_VENDOR_ID_SERVERWORKS
) &&
172 (PIIX4_dev
->device
== PCI_DEVICE_ID_SERVERWORKS_CSB5
))
173 srvrworks_csb5_delay
= 1;
175 /* On some motherboards, it was reported that accessing the SMBus
176 caused severe hardware problems */
177 if (dmi_check_system(piix4_dmi_blacklist
)) {
178 dev_err(&PIIX4_dev
->dev
,
179 "Accessing the SMBus on this system is unsafe!\n");
183 /* Don't access SMBus on IBM systems which get corrupted eeproms */
184 if (dmi_check_system(piix4_dmi_ibm
) &&
185 PIIX4_dev
->vendor
== PCI_VENDOR_ID_INTEL
) {
186 dev_err(&PIIX4_dev
->dev
, "IBM system detected; this module "
187 "may corrupt your serial eeprom! Refusing to load "
192 /* Determine the address of the SMBus areas */
194 piix4_smba
= force_addr
& 0xfff0;
197 pci_read_config_word(PIIX4_dev
, SMBBA
, &piix4_smba
);
198 piix4_smba
&= 0xfff0;
199 if(piix4_smba
== 0) {
200 dev_err(&PIIX4_dev
->dev
, "SMBus base address "
201 "uninitialized - upgrade BIOS or use "
202 "force_addr=0xaddr\n");
207 if (acpi_check_region(piix4_smba
, SMBIOSIZE
, piix4_driver
.name
))
210 if (!request_region(piix4_smba
, SMBIOSIZE
, piix4_driver
.name
)) {
211 dev_err(&PIIX4_dev
->dev
, "SMBus region 0x%x already in use!\n",
216 pci_read_config_byte(PIIX4_dev
, SMBHSTCFG
, &temp
);
218 /* If force_addr is set, we program the new address here. Just to make
219 sure, we disable the PIIX4 first. */
221 pci_write_config_byte(PIIX4_dev
, SMBHSTCFG
, temp
& 0xfe);
222 pci_write_config_word(PIIX4_dev
, SMBBA
, piix4_smba
);
223 pci_write_config_byte(PIIX4_dev
, SMBHSTCFG
, temp
| 0x01);
224 dev_info(&PIIX4_dev
->dev
, "WARNING: SMBus interface set to "
225 "new address %04x!\n", piix4_smba
);
226 } else if ((temp
& 1) == 0) {
228 /* This should never need to be done, but has been
229 * noted that many Dell machines have the SMBus
230 * interface on the PIIX4 disabled!? NOTE: This assumes
231 * I/O space and other allocations WERE done by the
232 * Bios! Don't complain if your hardware does weird
233 * things after enabling this. :') Check for Bios
234 * updates before resorting to this.
236 pci_write_config_byte(PIIX4_dev
, SMBHSTCFG
,
238 dev_notice(&PIIX4_dev
->dev
,
239 "WARNING: SMBus interface has been FORCEFULLY ENABLED!\n");
241 dev_err(&PIIX4_dev
->dev
,
242 "SMBus Host Controller not enabled!\n");
243 release_region(piix4_smba
, SMBIOSIZE
);
248 if (((temp
& 0x0E) == 8) || ((temp
& 0x0E) == 2))
249 dev_dbg(&PIIX4_dev
->dev
, "Using IRQ for SMBus\n");
250 else if ((temp
& 0x0E) == 0)
251 dev_dbg(&PIIX4_dev
->dev
, "Using SMI# for SMBus\n");
253 dev_err(&PIIX4_dev
->dev
, "Illegal Interrupt configuration "
254 "(or code out of date)!\n");
256 pci_read_config_byte(PIIX4_dev
, SMBREV
, &temp
);
257 dev_info(&PIIX4_dev
->dev
,
258 "SMBus Host Controller at 0x%x, revision %d\n",
264 static int piix4_setup_sb800(struct pci_dev
*PIIX4_dev
,
265 const struct pci_device_id
*id
, u8 aux
)
267 unsigned short piix4_smba
;
268 u8 smba_en_lo
, smba_en_hi
, smb_en
, smb_en_status
, port_sel
;
269 u8 i2ccfg
, i2ccfg_offset
= 0x10;
271 /* SB800 and later SMBus does not support forcing address */
272 if (force
|| force_addr
) {
273 dev_err(&PIIX4_dev
->dev
, "SMBus does not support "
274 "forcing address!\n");
278 /* Determine the address of the SMBus areas */
279 if ((PIIX4_dev
->vendor
== PCI_VENDOR_ID_AMD
&&
280 PIIX4_dev
->device
== PCI_DEVICE_ID_AMD_HUDSON2_SMBUS
&&
281 PIIX4_dev
->revision
>= 0x41) ||
282 (PIIX4_dev
->vendor
== PCI_VENDOR_ID_AMD
&&
283 PIIX4_dev
->device
== PCI_DEVICE_ID_AMD_KERNCZ_SMBUS
&&
284 PIIX4_dev
->revision
>= 0x49))
287 smb_en
= (aux
) ? 0x28 : 0x2c;
289 mutex_lock(&piix4_mutex_sb800
);
290 outb_p(smb_en
, SB800_PIIX4_SMB_IDX
);
291 smba_en_lo
= inb_p(SB800_PIIX4_SMB_IDX
+ 1);
292 outb_p(smb_en
+ 1, SB800_PIIX4_SMB_IDX
);
293 smba_en_hi
= inb_p(SB800_PIIX4_SMB_IDX
+ 1);
294 mutex_unlock(&piix4_mutex_sb800
);
297 smb_en_status
= smba_en_lo
& 0x10;
298 piix4_smba
= smba_en_hi
<< 8;
302 smb_en_status
= smba_en_lo
& 0x01;
303 piix4_smba
= ((smba_en_hi
<< 8) | smba_en_lo
) & 0xffe0;
306 if (!smb_en_status
) {
307 dev_err(&PIIX4_dev
->dev
,
308 "SMBus Host Controller not enabled!\n");
312 if (acpi_check_region(piix4_smba
, SMBIOSIZE
, piix4_driver
.name
))
315 if (!request_region(piix4_smba
, SMBIOSIZE
, piix4_driver
.name
)) {
316 dev_err(&PIIX4_dev
->dev
, "SMBus region 0x%x already in use!\n",
321 /* Aux SMBus does not support IRQ information */
323 dev_info(&PIIX4_dev
->dev
,
324 "Auxiliary SMBus Host Controller at 0x%x\n",
329 /* Request the SMBus I2C bus config region */
330 if (!request_region(piix4_smba
+ i2ccfg_offset
, 1, "i2ccfg")) {
331 dev_err(&PIIX4_dev
->dev
, "SMBus I2C bus config region "
332 "0x%x already in use!\n", piix4_smba
+ i2ccfg_offset
);
333 release_region(piix4_smba
, SMBIOSIZE
);
336 i2ccfg
= inb_p(piix4_smba
+ i2ccfg_offset
);
337 release_region(piix4_smba
+ i2ccfg_offset
, 1);
340 dev_dbg(&PIIX4_dev
->dev
, "Using IRQ for SMBus\n");
342 dev_dbg(&PIIX4_dev
->dev
, "Using SMI# for SMBus\n");
344 dev_info(&PIIX4_dev
->dev
,
345 "SMBus Host Controller at 0x%x, revision %d\n",
346 piix4_smba
, i2ccfg
>> 4);
348 /* Find which register is used for port selection */
349 if (PIIX4_dev
->vendor
== PCI_VENDOR_ID_AMD
) {
350 piix4_port_sel_sb800
= SB800_PIIX4_PORT_IDX_ALT
;
352 mutex_lock(&piix4_mutex_sb800
);
353 outb_p(SB800_PIIX4_PORT_IDX_SEL
, SB800_PIIX4_SMB_IDX
);
354 port_sel
= inb_p(SB800_PIIX4_SMB_IDX
+ 1);
355 piix4_port_sel_sb800
= (port_sel
& 0x01) ?
356 SB800_PIIX4_PORT_IDX_ALT
:
357 SB800_PIIX4_PORT_IDX
;
358 mutex_unlock(&piix4_mutex_sb800
);
361 dev_info(&PIIX4_dev
->dev
,
362 "Using register 0x%02x for SMBus port selection\n",
363 (unsigned int)piix4_port_sel_sb800
);
368 static int piix4_setup_aux(struct pci_dev
*PIIX4_dev
,
369 const struct pci_device_id
*id
,
370 unsigned short base_reg_addr
)
372 /* Set up auxiliary SMBus controllers found on some
373 * AMD chipsets e.g. SP5100 (SB700 derivative) */
375 unsigned short piix4_smba
;
377 /* Read address of auxiliary SMBus controller */
378 pci_read_config_word(PIIX4_dev
, base_reg_addr
, &piix4_smba
);
379 if ((piix4_smba
& 1) == 0) {
380 dev_dbg(&PIIX4_dev
->dev
,
381 "Auxiliary SMBus controller not enabled\n");
385 piix4_smba
&= 0xfff0;
386 if (piix4_smba
== 0) {
387 dev_dbg(&PIIX4_dev
->dev
,
388 "Auxiliary SMBus base address uninitialized\n");
392 if (acpi_check_region(piix4_smba
, SMBIOSIZE
, piix4_driver
.name
))
395 if (!request_region(piix4_smba
, SMBIOSIZE
, piix4_driver
.name
)) {
396 dev_err(&PIIX4_dev
->dev
, "Auxiliary SMBus region 0x%x "
397 "already in use!\n", piix4_smba
);
401 dev_info(&PIIX4_dev
->dev
,
402 "Auxiliary SMBus Host Controller at 0x%x\n",
408 static int piix4_transaction(struct i2c_adapter
*piix4_adapter
)
410 struct i2c_piix4_adapdata
*adapdata
= i2c_get_adapdata(piix4_adapter
);
411 unsigned short piix4_smba
= adapdata
->smba
;
416 dev_dbg(&piix4_adapter
->dev
, "Transaction (pre): CNT=%02x, CMD=%02x, "
417 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT
),
418 inb_p(SMBHSTCMD
), inb_p(SMBHSTADD
), inb_p(SMBHSTDAT0
),
421 /* Make sure the SMBus host is ready to start transmitting */
422 if ((temp
= inb_p(SMBHSTSTS
)) != 0x00) {
423 dev_dbg(&piix4_adapter
->dev
, "SMBus busy (%02x). "
424 "Resetting...\n", temp
);
425 outb_p(temp
, SMBHSTSTS
);
426 if ((temp
= inb_p(SMBHSTSTS
)) != 0x00) {
427 dev_err(&piix4_adapter
->dev
, "Failed! (%02x)\n", temp
);
430 dev_dbg(&piix4_adapter
->dev
, "Successful!\n");
434 /* start the transaction by setting bit 6 */
435 outb_p(inb(SMBHSTCNT
) | 0x040, SMBHSTCNT
);
437 /* We will always wait for a fraction of a second! (See PIIX4 docs errata) */
438 if (srvrworks_csb5_delay
) /* Extra delay for SERVERWORKS_CSB5 */
443 while ((++timeout
< MAX_TIMEOUT
) &&
444 ((temp
= inb_p(SMBHSTSTS
)) & 0x01))
447 /* If the SMBus is still busy, we give up */
448 if (timeout
== MAX_TIMEOUT
) {
449 dev_err(&piix4_adapter
->dev
, "SMBus Timeout!\n");
455 dev_err(&piix4_adapter
->dev
, "Error: Failed bus transaction\n");
460 dev_dbg(&piix4_adapter
->dev
, "Bus collision! SMBus may be "
461 "locked until next hard reset. (sorry!)\n");
462 /* Clock stops and slave is stuck in mid-transmission */
467 dev_dbg(&piix4_adapter
->dev
, "Error: no response!\n");
470 if (inb_p(SMBHSTSTS
) != 0x00)
471 outb_p(inb(SMBHSTSTS
), SMBHSTSTS
);
473 if ((temp
= inb_p(SMBHSTSTS
)) != 0x00) {
474 dev_err(&piix4_adapter
->dev
, "Failed reset at end of "
475 "transaction (%02x)\n", temp
);
477 dev_dbg(&piix4_adapter
->dev
, "Transaction (post): CNT=%02x, CMD=%02x, "
478 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT
),
479 inb_p(SMBHSTCMD
), inb_p(SMBHSTADD
), inb_p(SMBHSTDAT0
),
484 /* Return negative errno on error. */
485 static s32
piix4_access(struct i2c_adapter
* adap
, u16 addr
,
486 unsigned short flags
, char read_write
,
487 u8 command
, int size
, union i2c_smbus_data
* data
)
489 struct i2c_piix4_adapdata
*adapdata
= i2c_get_adapdata(adap
);
490 unsigned short piix4_smba
= adapdata
->smba
;
495 case I2C_SMBUS_QUICK
:
496 outb_p((addr
<< 1) | read_write
,
501 outb_p((addr
<< 1) | read_write
,
503 if (read_write
== I2C_SMBUS_WRITE
)
504 outb_p(command
, SMBHSTCMD
);
507 case I2C_SMBUS_BYTE_DATA
:
508 outb_p((addr
<< 1) | read_write
,
510 outb_p(command
, SMBHSTCMD
);
511 if (read_write
== I2C_SMBUS_WRITE
)
512 outb_p(data
->byte
, SMBHSTDAT0
);
513 size
= PIIX4_BYTE_DATA
;
515 case I2C_SMBUS_WORD_DATA
:
516 outb_p((addr
<< 1) | read_write
,
518 outb_p(command
, SMBHSTCMD
);
519 if (read_write
== I2C_SMBUS_WRITE
) {
520 outb_p(data
->word
& 0xff, SMBHSTDAT0
);
521 outb_p((data
->word
& 0xff00) >> 8, SMBHSTDAT1
);
523 size
= PIIX4_WORD_DATA
;
525 case I2C_SMBUS_BLOCK_DATA
:
526 outb_p((addr
<< 1) | read_write
,
528 outb_p(command
, SMBHSTCMD
);
529 if (read_write
== I2C_SMBUS_WRITE
) {
530 len
= data
->block
[0];
531 if (len
== 0 || len
> I2C_SMBUS_BLOCK_MAX
)
533 outb_p(len
, SMBHSTDAT0
);
534 inb_p(SMBHSTCNT
); /* Reset SMBBLKDAT */
535 for (i
= 1; i
<= len
; i
++)
536 outb_p(data
->block
[i
], SMBBLKDAT
);
538 size
= PIIX4_BLOCK_DATA
;
541 dev_warn(&adap
->dev
, "Unsupported transaction %d\n", size
);
545 outb_p((size
& 0x1C) + (ENABLE_INT9
& 1), SMBHSTCNT
);
547 status
= piix4_transaction(adap
);
551 if ((read_write
== I2C_SMBUS_WRITE
) || (size
== PIIX4_QUICK
))
557 case PIIX4_BYTE_DATA
:
558 data
->byte
= inb_p(SMBHSTDAT0
);
560 case PIIX4_WORD_DATA
:
561 data
->word
= inb_p(SMBHSTDAT0
) + (inb_p(SMBHSTDAT1
) << 8);
563 case PIIX4_BLOCK_DATA
:
564 data
->block
[0] = inb_p(SMBHSTDAT0
);
565 if (data
->block
[0] == 0 || data
->block
[0] > I2C_SMBUS_BLOCK_MAX
)
567 inb_p(SMBHSTCNT
); /* Reset SMBBLKDAT */
568 for (i
= 1; i
<= data
->block
[0]; i
++)
569 data
->block
[i
] = inb_p(SMBBLKDAT
);
576 * Handles access to multiple SMBus ports on the SB800.
577 * The port is selected by bits 2:1 of the smb_en register (0x2c).
578 * Returns negative errno on error.
580 * Note: The selected port must be returned to the initial selection to avoid
581 * problems on certain systems.
583 static s32
piix4_access_sb800(struct i2c_adapter
*adap
, u16 addr
,
584 unsigned short flags
, char read_write
,
585 u8 command
, int size
, union i2c_smbus_data
*data
)
587 struct i2c_piix4_adapdata
*adapdata
= i2c_get_adapdata(adap
);
592 mutex_lock(&piix4_mutex_sb800
);
594 outb_p(piix4_port_sel_sb800
, SB800_PIIX4_SMB_IDX
);
595 smba_en_lo
= inb_p(SB800_PIIX4_SMB_IDX
+ 1);
597 port
= adapdata
->port
;
598 if ((smba_en_lo
& SB800_PIIX4_PORT_IDX_MASK
) != port
)
599 outb_p((smba_en_lo
& ~SB800_PIIX4_PORT_IDX_MASK
) | port
,
600 SB800_PIIX4_SMB_IDX
+ 1);
602 retval
= piix4_access(adap
, addr
, flags
, read_write
,
603 command
, size
, data
);
605 outb_p(smba_en_lo
, SB800_PIIX4_SMB_IDX
+ 1);
607 mutex_unlock(&piix4_mutex_sb800
);
612 static u32
piix4_func(struct i2c_adapter
*adapter
)
614 return I2C_FUNC_SMBUS_QUICK
| I2C_FUNC_SMBUS_BYTE
|
615 I2C_FUNC_SMBUS_BYTE_DATA
| I2C_FUNC_SMBUS_WORD_DATA
|
616 I2C_FUNC_SMBUS_BLOCK_DATA
;
619 static const struct i2c_algorithm smbus_algorithm
= {
620 .smbus_xfer
= piix4_access
,
621 .functionality
= piix4_func
,
624 static const struct i2c_algorithm piix4_smbus_algorithm_sb800
= {
625 .smbus_xfer
= piix4_access_sb800
,
626 .functionality
= piix4_func
,
629 static const struct pci_device_id piix4_ids
[] = {
630 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_82371AB_3
) },
631 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_82443MX_3
) },
632 { PCI_DEVICE(PCI_VENDOR_ID_EFAR
, PCI_DEVICE_ID_EFAR_SLC90E66_3
) },
633 { PCI_DEVICE(PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_IXP200_SMBUS
) },
634 { PCI_DEVICE(PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_IXP300_SMBUS
) },
635 { PCI_DEVICE(PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_IXP400_SMBUS
) },
636 { PCI_DEVICE(PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_SBX00_SMBUS
) },
637 { PCI_DEVICE(PCI_VENDOR_ID_AMD
, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS
) },
638 { PCI_DEVICE(PCI_VENDOR_ID_AMD
, PCI_DEVICE_ID_AMD_KERNCZ_SMBUS
) },
639 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS
,
640 PCI_DEVICE_ID_SERVERWORKS_OSB4
) },
641 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS
,
642 PCI_DEVICE_ID_SERVERWORKS_CSB5
) },
643 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS
,
644 PCI_DEVICE_ID_SERVERWORKS_CSB6
) },
645 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS
,
646 PCI_DEVICE_ID_SERVERWORKS_HT1000SB
) },
647 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS
,
648 PCI_DEVICE_ID_SERVERWORKS_HT1100LD
) },
652 MODULE_DEVICE_TABLE (pci
, piix4_ids
);
654 static struct i2c_adapter
*piix4_main_adapters
[PIIX4_MAX_ADAPTERS
];
655 static struct i2c_adapter
*piix4_aux_adapter
;
657 static int piix4_add_adapter(struct pci_dev
*dev
, unsigned short smba
,
658 bool sb800_main
, u8 port
,
659 const char *name
, struct i2c_adapter
**padap
)
661 struct i2c_adapter
*adap
;
662 struct i2c_piix4_adapdata
*adapdata
;
665 adap
= kzalloc(sizeof(*adap
), GFP_KERNEL
);
667 release_region(smba
, SMBIOSIZE
);
671 adap
->owner
= THIS_MODULE
;
672 adap
->class = I2C_CLASS_HWMON
| I2C_CLASS_SPD
;
673 adap
->algo
= sb800_main
? &piix4_smbus_algorithm_sb800
676 adapdata
= kzalloc(sizeof(*adapdata
), GFP_KERNEL
);
677 if (adapdata
== NULL
) {
679 release_region(smba
, SMBIOSIZE
);
683 adapdata
->smba
= smba
;
684 adapdata
->sb800_main
= sb800_main
;
685 adapdata
->port
= port
<< 1;
687 /* set up the sysfs linkage to our parent device */
688 adap
->dev
.parent
= &dev
->dev
;
690 snprintf(adap
->name
, sizeof(adap
->name
),
691 "SMBus PIIX4 adapter%s at %04x", name
, smba
);
693 i2c_set_adapdata(adap
, adapdata
);
695 retval
= i2c_add_adapter(adap
);
697 dev_err(&dev
->dev
, "Couldn't register adapter!\n");
700 release_region(smba
, SMBIOSIZE
);
708 static int piix4_add_adapters_sb800(struct pci_dev
*dev
, unsigned short smba
)
710 struct i2c_piix4_adapdata
*adapdata
;
714 for (port
= 0; port
< PIIX4_MAX_ADAPTERS
; port
++) {
715 retval
= piix4_add_adapter(dev
, smba
, true, port
,
716 piix4_main_port_names_sb800
[port
],
717 &piix4_main_adapters
[port
]);
726 "Error setting up SB800 adapters. Unregistering!\n");
727 while (--port
>= 0) {
728 adapdata
= i2c_get_adapdata(piix4_main_adapters
[port
]);
729 if (adapdata
->smba
) {
730 i2c_del_adapter(piix4_main_adapters
[port
]);
732 kfree(piix4_main_adapters
[port
]);
733 piix4_main_adapters
[port
] = NULL
;
740 static int piix4_probe(struct pci_dev
*dev
, const struct pci_device_id
*id
)
743 bool is_sb800
= false;
745 if ((dev
->vendor
== PCI_VENDOR_ID_ATI
&&
746 dev
->device
== PCI_DEVICE_ID_ATI_SBX00_SMBUS
&&
747 dev
->revision
>= 0x40) ||
748 dev
->vendor
== PCI_VENDOR_ID_AMD
) {
751 if (!request_region(SB800_PIIX4_SMB_IDX
, 2, "smba_idx")) {
753 "SMBus base address index region 0x%x already in use!\n",
754 SB800_PIIX4_SMB_IDX
);
758 /* base address location etc changed in SB800 */
759 retval
= piix4_setup_sb800(dev
, id
, 0);
761 release_region(SB800_PIIX4_SMB_IDX
, 2);
766 * Try to register multiplexed main SMBus adapter,
767 * give up if we can't
769 retval
= piix4_add_adapters_sb800(dev
, retval
);
771 release_region(SB800_PIIX4_SMB_IDX
, 2);
775 retval
= piix4_setup(dev
, id
);
779 /* Try to register main SMBus adapter, give up if we can't */
780 retval
= piix4_add_adapter(dev
, retval
, false, 0, "",
781 &piix4_main_adapters
[0]);
786 /* Check for auxiliary SMBus on some AMD chipsets */
789 if (dev
->vendor
== PCI_VENDOR_ID_ATI
&&
790 dev
->device
== PCI_DEVICE_ID_ATI_SBX00_SMBUS
) {
791 if (dev
->revision
< 0x40) {
792 retval
= piix4_setup_aux(dev
, id
, 0x58);
794 /* SB800 added aux bus too */
795 retval
= piix4_setup_sb800(dev
, id
, 1);
799 if (dev
->vendor
== PCI_VENDOR_ID_AMD
&&
800 dev
->device
== PCI_DEVICE_ID_AMD_HUDSON2_SMBUS
) {
801 retval
= piix4_setup_sb800(dev
, id
, 1);
805 /* Try to add the aux adapter if it exists,
806 * piix4_add_adapter will clean up if this fails */
807 piix4_add_adapter(dev
, retval
, false, 0,
808 is_sb800
? piix4_aux_port_name_sb800
: "",
815 static void piix4_adap_remove(struct i2c_adapter
*adap
)
817 struct i2c_piix4_adapdata
*adapdata
= i2c_get_adapdata(adap
);
819 if (adapdata
->smba
) {
820 i2c_del_adapter(adap
);
821 if (adapdata
->port
== (0 << 1)) {
822 release_region(adapdata
->smba
, SMBIOSIZE
);
823 if (adapdata
->sb800_main
)
824 release_region(SB800_PIIX4_SMB_IDX
, 2);
831 static void piix4_remove(struct pci_dev
*dev
)
833 int port
= PIIX4_MAX_ADAPTERS
;
835 while (--port
>= 0) {
836 if (piix4_main_adapters
[port
]) {
837 piix4_adap_remove(piix4_main_adapters
[port
]);
838 piix4_main_adapters
[port
] = NULL
;
842 if (piix4_aux_adapter
) {
843 piix4_adap_remove(piix4_aux_adapter
);
844 piix4_aux_adapter
= NULL
;
848 static struct pci_driver piix4_driver
= {
849 .name
= "piix4_smbus",
850 .id_table
= piix4_ids
,
851 .probe
= piix4_probe
,
852 .remove
= piix4_remove
,
855 module_pci_driver(piix4_driver
);
857 MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
858 "Philip Edelbrock <phil@netroedge.com>");
859 MODULE_DESCRIPTION("PIIX4 SMBus driver");
860 MODULE_LICENSE("GPL");