Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | 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 |
Flavio Leitner | 506a8b6 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 23 | Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100 |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 24 | ATI IXP200, IXP300, IXP400, SB600, SB700/SP5100, SB800 |
Crane Cai | 3806e94b | 2009-11-07 13:10:46 +0100 | [diff] [blame] | 25 | AMD Hudson-2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | SMSC Victory66 |
| 27 | |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 28 | Note: we assume there can only be one device, with one or more |
| 29 | SMBus interfaces. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | */ |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/ioport.h> |
| 39 | #include <linux/i2c.h> |
Daniel J Blueman | c415b30 | 2012-10-05 22:23:55 +0200 | [diff] [blame] | 40 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/dmi.h> |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 43 | #include <linux/acpi.h> |
H Hartley Sweeten | 2178218 | 2010-05-21 18:41:01 +0200 | [diff] [blame] | 44 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /* PIIX4 SMBus address offsets */ |
| 48 | #define SMBHSTSTS (0 + piix4_smba) |
| 49 | #define SMBHSLVSTS (1 + piix4_smba) |
| 50 | #define SMBHSTCNT (2 + piix4_smba) |
| 51 | #define SMBHSTCMD (3 + piix4_smba) |
| 52 | #define SMBHSTADD (4 + piix4_smba) |
| 53 | #define SMBHSTDAT0 (5 + piix4_smba) |
| 54 | #define SMBHSTDAT1 (6 + piix4_smba) |
| 55 | #define SMBBLKDAT (7 + piix4_smba) |
| 56 | #define SMBSLVCNT (8 + piix4_smba) |
| 57 | #define SMBSHDWCMD (9 + piix4_smba) |
| 58 | #define SMBSLVEVT (0xA + piix4_smba) |
| 59 | #define SMBSLVDAT (0xC + piix4_smba) |
| 60 | |
| 61 | /* count for request_region */ |
| 62 | #define SMBIOSIZE 8 |
| 63 | |
| 64 | /* PCI Address Constants */ |
| 65 | #define SMBBA 0x090 |
| 66 | #define SMBHSTCFG 0x0D2 |
| 67 | #define SMBSLVC 0x0D3 |
| 68 | #define SMBSHDW1 0x0D4 |
| 69 | #define SMBSHDW2 0x0D5 |
| 70 | #define SMBREV 0x0D6 |
| 71 | |
| 72 | /* Other settings */ |
| 73 | #define MAX_TIMEOUT 500 |
| 74 | #define ENABLE_INT9 0 |
| 75 | |
| 76 | /* PIIX4 constants */ |
| 77 | #define PIIX4_QUICK 0x00 |
| 78 | #define PIIX4_BYTE 0x04 |
| 79 | #define PIIX4_BYTE_DATA 0x08 |
| 80 | #define PIIX4_WORD_DATA 0x0C |
| 81 | #define PIIX4_BLOCK_DATA 0x14 |
| 82 | |
| 83 | /* insmod parameters */ |
| 84 | |
| 85 | /* If force is set to anything different from 0, we forcibly enable the |
| 86 | PIIX4. DANGEROUS! */ |
Jean Delvare | 6050709 | 2005-09-25 16:23:07 +0200 | [diff] [blame] | 87 | static int force; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | module_param (force, int, 0); |
| 89 | MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!"); |
| 90 | |
| 91 | /* If force_addr is set to anything different from 0, we forcibly enable |
| 92 | the PIIX4 at the given address. VERY DANGEROUS! */ |
Jean Delvare | 6050709 | 2005-09-25 16:23:07 +0200 | [diff] [blame] | 93 | static int force_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | module_param (force_addr, int, 0); |
| 95 | MODULE_PARM_DESC(force_addr, |
| 96 | "Forcibly enable the PIIX4 at the given address. " |
| 97 | "EXTREMELY DANGEROUS!"); |
| 98 | |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 99 | static int srvrworks_csb5_delay; |
Jean Delvare | d6072f8 | 2005-09-25 16:37:04 +0200 | [diff] [blame] | 100 | static struct pci_driver piix4_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 102 | static const struct dmi_system_id piix4_dmi_blacklist[] = { |
Jean Delvare | c2fc54f | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 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 */ |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 122 | static const struct dmi_system_id piix4_dmi_ibm[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
| 124 | .ident = "IBM", |
| 125 | .matches = { DMI_MATCH(DMI_SYS_VENDOR, "IBM"), }, |
| 126 | }, |
| 127 | { }, |
| 128 | }; |
| 129 | |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 130 | struct i2c_piix4_adapdata { |
| 131 | unsigned short smba; |
| 132 | }; |
| 133 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 134 | static int piix4_setup(struct pci_dev *PIIX4_dev, |
| 135 | const struct pci_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
| 137 | unsigned char temp; |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 138 | unsigned short piix4_smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 140 | if ((PIIX4_dev->vendor == PCI_VENDOR_ID_SERVERWORKS) && |
| 141 | (PIIX4_dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5)) |
| 142 | srvrworks_csb5_delay = 1; |
| 143 | |
Jean Delvare | c2fc54f | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 144 | /* On some motherboards, it was reported that accessing the SMBus |
| 145 | caused severe hardware problems */ |
| 146 | if (dmi_check_system(piix4_dmi_blacklist)) { |
| 147 | dev_err(&PIIX4_dev->dev, |
| 148 | "Accessing the SMBus on this system is unsafe!\n"); |
| 149 | return -EPERM; |
| 150 | } |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* Don't access SMBus on IBM systems which get corrupted eeproms */ |
Jean Delvare | c2fc54f | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 153 | if (dmi_check_system(piix4_dmi_ibm) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | PIIX4_dev->vendor == PCI_VENDOR_ID_INTEL) { |
Jean Delvare | f9ba6c0 | 2006-04-25 13:37:25 +0200 | [diff] [blame] | 155 | dev_err(&PIIX4_dev->dev, "IBM system detected; this module " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | "may corrupt your serial eeprom! Refusing to load " |
| 157 | "module!\n"); |
| 158 | return -EPERM; |
| 159 | } |
| 160 | |
| 161 | /* Determine the address of the SMBus areas */ |
| 162 | if (force_addr) { |
| 163 | piix4_smba = force_addr & 0xfff0; |
| 164 | force = 0; |
| 165 | } else { |
| 166 | pci_read_config_word(PIIX4_dev, SMBBA, &piix4_smba); |
| 167 | piix4_smba &= 0xfff0; |
| 168 | if(piix4_smba == 0) { |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 169 | dev_err(&PIIX4_dev->dev, "SMBus base address " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | "uninitialized - upgrade BIOS or use " |
| 171 | "force_addr=0xaddr\n"); |
| 172 | return -ENODEV; |
| 173 | } |
| 174 | } |
| 175 | |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 176 | if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) |
Jean Delvare | 18669ea | 2009-10-04 22:53:45 +0200 | [diff] [blame] | 177 | return -ENODEV; |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 178 | |
Jean Delvare | d6072f8 | 2005-09-25 16:37:04 +0200 | [diff] [blame] | 179 | if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) { |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 180 | dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | piix4_smba); |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 182 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp); |
| 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | /* If force_addr is set, we program the new address here. Just to make |
| 188 | sure, we disable the PIIX4 first. */ |
| 189 | if (force_addr) { |
| 190 | pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp & 0xfe); |
| 191 | pci_write_config_word(PIIX4_dev, SMBBA, piix4_smba); |
| 192 | pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp | 0x01); |
| 193 | dev_info(&PIIX4_dev->dev, "WARNING: SMBus interface set to " |
| 194 | "new address %04x!\n", piix4_smba); |
| 195 | } else if ((temp & 1) == 0) { |
| 196 | if (force) { |
| 197 | /* This should never need to be done, but has been |
| 198 | * noted that many Dell machines have the SMBus |
| 199 | * interface on the PIIX4 disabled!? NOTE: This assumes |
| 200 | * I/O space and other allocations WERE done by the |
| 201 | * Bios! Don't complain if your hardware does weird |
| 202 | * things after enabling this. :') Check for Bios |
| 203 | * updates before resorting to this. |
| 204 | */ |
| 205 | pci_write_config_byte(PIIX4_dev, SMBHSTCFG, |
| 206 | temp | 1); |
Joe Perches | 8117e41 | 2012-12-16 21:11:55 +0100 | [diff] [blame] | 207 | dev_notice(&PIIX4_dev->dev, |
| 208 | "WARNING: SMBus interface has been FORCEFULLY ENABLED!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } else { |
| 210 | dev_err(&PIIX4_dev->dev, |
| 211 | "Host SMBus controller not enabled!\n"); |
| 212 | release_region(piix4_smba, SMBIOSIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | return -ENODEV; |
| 214 | } |
| 215 | } |
| 216 | |
Rudolf Marek | 54aaa1c | 2006-04-25 13:06:41 +0200 | [diff] [blame] | 217 | if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | dev_dbg(&PIIX4_dev->dev, "Using Interrupt 9 for SMBus.\n"); |
| 219 | else if ((temp & 0x0E) == 0) |
| 220 | dev_dbg(&PIIX4_dev->dev, "Using Interrupt SMI# for SMBus.\n"); |
| 221 | else |
| 222 | dev_err(&PIIX4_dev->dev, "Illegal Interrupt configuration " |
| 223 | "(or code out of date)!\n"); |
| 224 | |
| 225 | pci_read_config_byte(PIIX4_dev, SMBREV, &temp); |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 226 | dev_info(&PIIX4_dev->dev, |
| 227 | "SMBus Host Controller at 0x%x, revision %d\n", |
| 228 | piix4_smba, temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 230 | return piix4_smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 233 | static int piix4_setup_sb800(struct pci_dev *PIIX4_dev, |
| 234 | const struct pci_device_id *id) |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 235 | { |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 236 | unsigned short piix4_smba; |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 237 | unsigned short smba_idx = 0xcd6; |
| 238 | u8 smba_en_lo, smba_en_hi, i2ccfg, i2ccfg_offset = 0x10, smb_en = 0x2c; |
| 239 | |
Crane Cai | 3806e94b | 2009-11-07 13:10:46 +0100 | [diff] [blame] | 240 | /* SB800 and later SMBus does not support forcing address */ |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 241 | if (force || force_addr) { |
Crane Cai | 3806e94b | 2009-11-07 13:10:46 +0100 | [diff] [blame] | 242 | dev_err(&PIIX4_dev->dev, "SMBus does not support " |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 243 | "forcing address!\n"); |
| 244 | return -EINVAL; |
| 245 | } |
| 246 | |
| 247 | /* Determine the address of the SMBus areas */ |
| 248 | if (!request_region(smba_idx, 2, "smba_idx")) { |
| 249 | dev_err(&PIIX4_dev->dev, "SMBus base address index region " |
| 250 | "0x%x already in use!\n", smba_idx); |
| 251 | return -EBUSY; |
| 252 | } |
| 253 | outb_p(smb_en, smba_idx); |
| 254 | smba_en_lo = inb_p(smba_idx + 1); |
| 255 | outb_p(smb_en + 1, smba_idx); |
| 256 | smba_en_hi = inb_p(smba_idx + 1); |
| 257 | release_region(smba_idx, 2); |
| 258 | |
| 259 | if ((smba_en_lo & 1) == 0) { |
| 260 | dev_err(&PIIX4_dev->dev, |
| 261 | "Host SMBus controller not enabled!\n"); |
| 262 | return -ENODEV; |
| 263 | } |
| 264 | |
| 265 | piix4_smba = ((smba_en_hi << 8) | smba_en_lo) & 0xffe0; |
| 266 | if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) |
Jean Delvare | 18669ea | 2009-10-04 22:53:45 +0200 | [diff] [blame] | 267 | return -ENODEV; |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 268 | |
| 269 | if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) { |
| 270 | dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!\n", |
| 271 | piix4_smba); |
| 272 | return -EBUSY; |
| 273 | } |
| 274 | |
| 275 | /* Request the SMBus I2C bus config region */ |
| 276 | if (!request_region(piix4_smba + i2ccfg_offset, 1, "i2ccfg")) { |
| 277 | dev_err(&PIIX4_dev->dev, "SMBus I2C bus config region " |
| 278 | "0x%x already in use!\n", piix4_smba + i2ccfg_offset); |
| 279 | release_region(piix4_smba, SMBIOSIZE); |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 280 | return -EBUSY; |
| 281 | } |
| 282 | i2ccfg = inb_p(piix4_smba + i2ccfg_offset); |
| 283 | release_region(piix4_smba + i2ccfg_offset, 1); |
| 284 | |
| 285 | if (i2ccfg & 1) |
| 286 | dev_dbg(&PIIX4_dev->dev, "Using IRQ for SMBus.\n"); |
| 287 | else |
| 288 | dev_dbg(&PIIX4_dev->dev, "Using SMI# for SMBus.\n"); |
| 289 | |
| 290 | dev_info(&PIIX4_dev->dev, |
| 291 | "SMBus Host Controller at 0x%x, revision %d\n", |
| 292 | piix4_smba, i2ccfg >> 4); |
| 293 | |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 294 | return piix4_smba; |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 295 | } |
| 296 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 297 | static int piix4_setup_aux(struct pci_dev *PIIX4_dev, |
| 298 | const struct pci_device_id *id, |
| 299 | unsigned short base_reg_addr) |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 300 | { |
| 301 | /* Set up auxiliary SMBus controllers found on some |
| 302 | * AMD chipsets e.g. SP5100 (SB700 derivative) */ |
| 303 | |
| 304 | unsigned short piix4_smba; |
| 305 | |
| 306 | /* Read address of auxiliary SMBus controller */ |
| 307 | pci_read_config_word(PIIX4_dev, base_reg_addr, &piix4_smba); |
| 308 | if ((piix4_smba & 1) == 0) { |
| 309 | dev_dbg(&PIIX4_dev->dev, |
| 310 | "Auxiliary SMBus controller not enabled\n"); |
| 311 | return -ENODEV; |
| 312 | } |
| 313 | |
| 314 | piix4_smba &= 0xfff0; |
| 315 | if (piix4_smba == 0) { |
| 316 | dev_dbg(&PIIX4_dev->dev, |
| 317 | "Auxiliary SMBus base address uninitialized\n"); |
| 318 | return -ENODEV; |
| 319 | } |
| 320 | |
| 321 | if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) |
| 322 | return -ENODEV; |
| 323 | |
| 324 | if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) { |
| 325 | dev_err(&PIIX4_dev->dev, "Auxiliary SMBus region 0x%x " |
| 326 | "already in use!\n", piix4_smba); |
| 327 | return -EBUSY; |
| 328 | } |
| 329 | |
| 330 | dev_info(&PIIX4_dev->dev, |
| 331 | "Auxiliary SMBus Host Controller at 0x%x\n", |
| 332 | piix4_smba); |
| 333 | |
| 334 | return piix4_smba; |
| 335 | } |
| 336 | |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 337 | static int piix4_transaction(struct i2c_adapter *piix4_adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 339 | struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(piix4_adapter); |
| 340 | unsigned short piix4_smba = adapdata->smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | int temp; |
| 342 | int result = 0; |
| 343 | int timeout = 0; |
| 344 | |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 345 | dev_dbg(&piix4_adapter->dev, "Transaction (pre): CNT=%02x, CMD=%02x, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT), |
| 347 | inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0), |
| 348 | inb_p(SMBHSTDAT1)); |
| 349 | |
| 350 | /* Make sure the SMBus host is ready to start transmitting */ |
| 351 | if ((temp = inb_p(SMBHSTSTS)) != 0x00) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 352 | dev_dbg(&piix4_adapter->dev, "SMBus busy (%02x). " |
Jean Delvare | 541e6a0 | 2005-06-23 22:18:08 +0200 | [diff] [blame] | 353 | "Resetting...\n", temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | outb_p(temp, SMBHSTSTS); |
| 355 | if ((temp = inb_p(SMBHSTSTS)) != 0x00) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 356 | dev_err(&piix4_adapter->dev, "Failed! (%02x)\n", temp); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 357 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } else { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 359 | dev_dbg(&piix4_adapter->dev, "Successful!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } |
| 361 | } |
| 362 | |
| 363 | /* start the transaction by setting bit 6 */ |
| 364 | outb_p(inb(SMBHSTCNT) | 0x040, SMBHSTCNT); |
| 365 | |
| 366 | /* We will always wait for a fraction of a second! (See PIIX4 docs errata) */ |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 367 | if (srvrworks_csb5_delay) /* Extra delay for SERVERWORKS_CSB5 */ |
| 368 | msleep(2); |
| 369 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | msleep(1); |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 371 | |
Roel Kluin | b6a3195 | 2010-01-16 20:43:12 +0100 | [diff] [blame] | 372 | while ((++timeout < MAX_TIMEOUT) && |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 373 | ((temp = inb_p(SMBHSTSTS)) & 0x01)) |
| 374 | msleep(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
| 376 | /* If the SMBus is still busy, we give up */ |
Roel Kluin | b6a3195 | 2010-01-16 20:43:12 +0100 | [diff] [blame] | 377 | if (timeout == MAX_TIMEOUT) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 378 | dev_err(&piix4_adapter->dev, "SMBus Timeout!\n"); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 379 | result = -ETIMEDOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | if (temp & 0x10) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 383 | result = -EIO; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 384 | dev_err(&piix4_adapter->dev, "Error: Failed bus transaction\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | if (temp & 0x08) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 388 | result = -EIO; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 389 | dev_dbg(&piix4_adapter->dev, "Bus collision! SMBus may be " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | "locked until next hard reset. (sorry!)\n"); |
| 391 | /* Clock stops and slave is stuck in mid-transmission */ |
| 392 | } |
| 393 | |
| 394 | if (temp & 0x04) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 395 | result = -ENXIO; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 396 | dev_dbg(&piix4_adapter->dev, "Error: no response!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | if (inb_p(SMBHSTSTS) != 0x00) |
| 400 | outb_p(inb(SMBHSTSTS), SMBHSTSTS); |
| 401 | |
| 402 | if ((temp = inb_p(SMBHSTSTS)) != 0x00) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 403 | dev_err(&piix4_adapter->dev, "Failed reset at end of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | "transaction (%02x)\n", temp); |
| 405 | } |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 406 | dev_dbg(&piix4_adapter->dev, "Transaction (post): CNT=%02x, CMD=%02x, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT), |
| 408 | inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0), |
| 409 | inb_p(SMBHSTDAT1)); |
| 410 | return result; |
| 411 | } |
| 412 | |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 413 | /* Return negative errno on error. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | static s32 piix4_access(struct i2c_adapter * adap, u16 addr, |
| 415 | unsigned short flags, char read_write, |
| 416 | u8 command, int size, union i2c_smbus_data * data) |
| 417 | { |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 418 | struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap); |
| 419 | unsigned short piix4_smba = adapdata->smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | int i, len; |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 421 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
| 423 | switch (size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | case I2C_SMBUS_QUICK: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 425 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | SMBHSTADD); |
| 427 | size = PIIX4_QUICK; |
| 428 | break; |
| 429 | case I2C_SMBUS_BYTE: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 430 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | SMBHSTADD); |
| 432 | if (read_write == I2C_SMBUS_WRITE) |
| 433 | outb_p(command, SMBHSTCMD); |
| 434 | size = PIIX4_BYTE; |
| 435 | break; |
| 436 | case I2C_SMBUS_BYTE_DATA: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 437 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | SMBHSTADD); |
| 439 | outb_p(command, SMBHSTCMD); |
| 440 | if (read_write == I2C_SMBUS_WRITE) |
| 441 | outb_p(data->byte, SMBHSTDAT0); |
| 442 | size = PIIX4_BYTE_DATA; |
| 443 | break; |
| 444 | case I2C_SMBUS_WORD_DATA: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 445 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | SMBHSTADD); |
| 447 | outb_p(command, SMBHSTCMD); |
| 448 | if (read_write == I2C_SMBUS_WRITE) { |
| 449 | outb_p(data->word & 0xff, SMBHSTDAT0); |
| 450 | outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1); |
| 451 | } |
| 452 | size = PIIX4_WORD_DATA; |
| 453 | break; |
| 454 | case I2C_SMBUS_BLOCK_DATA: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 455 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | SMBHSTADD); |
| 457 | outb_p(command, SMBHSTCMD); |
| 458 | if (read_write == I2C_SMBUS_WRITE) { |
| 459 | len = data->block[0]; |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 460 | if (len == 0 || len > I2C_SMBUS_BLOCK_MAX) |
| 461 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | outb_p(len, SMBHSTDAT0); |
| 463 | i = inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */ |
| 464 | for (i = 1; i <= len; i++) |
| 465 | outb_p(data->block[i], SMBBLKDAT); |
| 466 | } |
| 467 | size = PIIX4_BLOCK_DATA; |
| 468 | break; |
Jean Delvare | ac7fc4f | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 469 | default: |
| 470 | dev_warn(&adap->dev, "Unsupported transaction %d\n", size); |
| 471 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | outb_p((size & 0x1C) + (ENABLE_INT9 & 1), SMBHSTCNT); |
| 475 | |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 476 | status = piix4_transaction(adap); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 477 | if (status) |
| 478 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
| 480 | if ((read_write == I2C_SMBUS_WRITE) || (size == PIIX4_QUICK)) |
| 481 | return 0; |
| 482 | |
| 483 | |
| 484 | switch (size) { |
Jean Delvare | 3578a07 | 2008-04-29 23:11:37 +0200 | [diff] [blame] | 485 | case PIIX4_BYTE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | case PIIX4_BYTE_DATA: |
| 487 | data->byte = inb_p(SMBHSTDAT0); |
| 488 | break; |
| 489 | case PIIX4_WORD_DATA: |
| 490 | data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8); |
| 491 | break; |
| 492 | case PIIX4_BLOCK_DATA: |
| 493 | data->block[0] = inb_p(SMBHSTDAT0); |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 494 | if (data->block[0] == 0 || data->block[0] > I2C_SMBUS_BLOCK_MAX) |
| 495 | return -EPROTO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | i = inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */ |
| 497 | for (i = 1; i <= data->block[0]; i++) |
| 498 | data->block[i] = inb_p(SMBBLKDAT); |
| 499 | break; |
| 500 | } |
| 501 | return 0; |
| 502 | } |
| 503 | |
| 504 | static u32 piix4_func(struct i2c_adapter *adapter) |
| 505 | { |
| 506 | return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | |
| 507 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | |
| 508 | I2C_FUNC_SMBUS_BLOCK_DATA; |
| 509 | } |
| 510 | |
Jean Delvare | 8f9082c | 2006-09-03 22:39:46 +0200 | [diff] [blame] | 511 | static const struct i2c_algorithm smbus_algorithm = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | .smbus_xfer = piix4_access, |
| 513 | .functionality = piix4_func, |
| 514 | }; |
| 515 | |
Axel Lin | 3527bd5 | 2012-01-12 20:32:04 +0100 | [diff] [blame] | 516 | static DEFINE_PCI_DEVICE_TABLE(piix4_ids) = { |
Jean Delvare | 9b7389c | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 517 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3) }, |
| 518 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443MX_3) }, |
| 519 | { PCI_DEVICE(PCI_VENDOR_ID_EFAR, PCI_DEVICE_ID_EFAR_SLC90E66_3) }, |
| 520 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP200_SMBUS) }, |
| 521 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_SMBUS) }, |
| 522 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS) }, |
| 523 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS) }, |
Crane Cai | 3806e94b | 2009-11-07 13:10:46 +0100 | [diff] [blame] | 524 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS) }, |
Jean Delvare | 9b7389c | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 525 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 526 | PCI_DEVICE_ID_SERVERWORKS_OSB4) }, |
| 527 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 528 | PCI_DEVICE_ID_SERVERWORKS_CSB5) }, |
| 529 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 530 | PCI_DEVICE_ID_SERVERWORKS_CSB6) }, |
| 531 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 532 | PCI_DEVICE_ID_SERVERWORKS_HT1000SB) }, |
Flavio Leitner | 506a8b6 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 533 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 534 | PCI_DEVICE_ID_SERVERWORKS_HT1100LD) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { 0, } |
| 536 | }; |
| 537 | |
| 538 | MODULE_DEVICE_TABLE (pci, piix4_ids); |
| 539 | |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 540 | static struct i2c_adapter *piix4_main_adapter; |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 541 | static struct i2c_adapter *piix4_aux_adapter; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 542 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 543 | static int piix4_add_adapter(struct pci_dev *dev, unsigned short smba, |
| 544 | struct i2c_adapter **padap) |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 545 | { |
| 546 | struct i2c_adapter *adap; |
| 547 | struct i2c_piix4_adapdata *adapdata; |
| 548 | int retval; |
| 549 | |
| 550 | adap = kzalloc(sizeof(*adap), GFP_KERNEL); |
| 551 | if (adap == NULL) { |
| 552 | release_region(smba, SMBIOSIZE); |
| 553 | return -ENOMEM; |
| 554 | } |
| 555 | |
| 556 | adap->owner = THIS_MODULE; |
| 557 | adap->class = I2C_CLASS_HWMON | I2C_CLASS_SPD; |
| 558 | adap->algo = &smbus_algorithm; |
| 559 | |
| 560 | adapdata = kzalloc(sizeof(*adapdata), GFP_KERNEL); |
| 561 | if (adapdata == NULL) { |
| 562 | kfree(adap); |
| 563 | release_region(smba, SMBIOSIZE); |
| 564 | return -ENOMEM; |
| 565 | } |
| 566 | |
| 567 | adapdata->smba = smba; |
| 568 | |
| 569 | /* set up the sysfs linkage to our parent device */ |
| 570 | adap->dev.parent = &dev->dev; |
| 571 | |
| 572 | snprintf(adap->name, sizeof(adap->name), |
| 573 | "SMBus PIIX4 adapter at %04x", smba); |
| 574 | |
| 575 | i2c_set_adapdata(adap, adapdata); |
| 576 | |
| 577 | retval = i2c_add_adapter(adap); |
| 578 | if (retval) { |
| 579 | dev_err(&dev->dev, "Couldn't register adapter!\n"); |
| 580 | kfree(adapdata); |
| 581 | kfree(adap); |
| 582 | release_region(smba, SMBIOSIZE); |
| 583 | return retval; |
| 584 | } |
| 585 | |
| 586 | *padap = adap; |
| 587 | return 0; |
| 588 | } |
| 589 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 590 | static int piix4_probe(struct pci_dev *dev, const struct pci_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | { |
| 592 | int retval; |
| 593 | |
Crane Cai | 76b3e28 | 2009-09-18 22:45:50 +0200 | [diff] [blame] | 594 | if ((dev->vendor == PCI_VENDOR_ID_ATI && |
| 595 | dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS && |
| 596 | dev->revision >= 0x40) || |
| 597 | dev->vendor == PCI_VENDOR_ID_AMD) |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 598 | /* base address location etc changed in SB800 */ |
| 599 | retval = piix4_setup_sb800(dev, id); |
| 600 | else |
| 601 | retval = piix4_setup(dev, id); |
| 602 | |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 603 | /* If no main SMBus found, give up */ |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 604 | if (retval < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | return retval; |
| 606 | |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 607 | /* Try to register main SMBus adapter, give up if we can't */ |
| 608 | retval = piix4_add_adapter(dev, retval, &piix4_main_adapter); |
| 609 | if (retval < 0) |
| 610 | return retval; |
| 611 | |
| 612 | /* Check for auxiliary SMBus on some AMD chipsets */ |
| 613 | if (dev->vendor == PCI_VENDOR_ID_ATI && |
| 614 | dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS && |
| 615 | dev->revision < 0x40) { |
| 616 | retval = piix4_setup_aux(dev, id, 0x58); |
| 617 | if (retval > 0) { |
| 618 | /* Try to add the aux adapter if it exists, |
| 619 | * piix4_add_adapter will clean up if this fails */ |
| 620 | piix4_add_adapter(dev, retval, &piix4_aux_adapter); |
| 621 | } |
| 622 | } |
| 623 | |
| 624 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 627 | static void piix4_adap_remove(struct i2c_adapter *adap) |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 628 | { |
| 629 | struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap); |
| 630 | |
| 631 | if (adapdata->smba) { |
| 632 | i2c_del_adapter(adap); |
| 633 | release_region(adapdata->smba, SMBIOSIZE); |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 634 | kfree(adapdata); |
| 635 | kfree(adap); |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 636 | } |
| 637 | } |
| 638 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 639 | static void piix4_remove(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 641 | if (piix4_main_adapter) { |
| 642 | piix4_adap_remove(piix4_main_adapter); |
| 643 | piix4_main_adapter = NULL; |
| 644 | } |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 645 | |
| 646 | if (piix4_aux_adapter) { |
| 647 | piix4_adap_remove(piix4_aux_adapter); |
| 648 | piix4_aux_adapter = NULL; |
| 649 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | static struct pci_driver piix4_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | .name = "piix4_smbus", |
| 654 | .id_table = piix4_ids, |
| 655 | .probe = piix4_probe, |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 656 | .remove = piix4_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | }; |
| 658 | |
Axel Lin | 56f2178 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 659 | module_pci_driver(piix4_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
| 661 | MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and " |
| 662 | "Philip Edelbrock <phil@netroedge.com>"); |
| 663 | MODULE_DESCRIPTION("PIIX4 SMBus driver"); |
| 664 | MODULE_LICENSE("GPL"); |