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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | /* |
| 17 | Supports: |
| 18 | Intel PIIX4, 440MX |
Flavio Leitner | 506a8b6 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 19 | Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100 |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 20 | ATI IXP200, IXP300, IXP400, SB600, SB700/SP5100, SB800 |
Shane Huang | 032f708 | 2014-01-22 14:05:46 -0800 | [diff] [blame] | 21 | AMD Hudson-2, ML, CZ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | SMSC Victory66 |
| 23 | |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 24 | Note: we assume there can only be one device, with one or more |
| 25 | SMBus interfaces. |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | */ |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/ioport.h> |
| 38 | #include <linux/i2c.h> |
Daniel J Blueman | c415b30 | 2012-10-05 22:23:55 +0200 | [diff] [blame] | 39 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/dmi.h> |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 41 | #include <linux/acpi.h> |
H Hartley Sweeten | 2178218 | 2010-05-21 18:41:01 +0200 | [diff] [blame] | 42 | #include <linux/io.h> |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 43 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) |
| 59 | |
| 60 | /* count for request_region */ |
| 61 | #define SMBIOSIZE 8 |
| 62 | |
| 63 | /* PCI Address Constants */ |
| 64 | #define SMBBA 0x090 |
| 65 | #define SMBHSTCFG 0x0D2 |
| 66 | #define SMBSLVC 0x0D3 |
| 67 | #define SMBSHDW1 0x0D4 |
| 68 | #define SMBSHDW2 0x0D5 |
| 69 | #define SMBREV 0x0D6 |
| 70 | |
| 71 | /* Other settings */ |
| 72 | #define MAX_TIMEOUT 500 |
| 73 | #define ENABLE_INT9 0 |
| 74 | |
| 75 | /* PIIX4 constants */ |
| 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 |
| 81 | |
Christian Fetzer | ca2061e | 2015-11-19 20:13:47 +0100 | [diff] [blame] | 82 | /* Multi-port constants */ |
| 83 | #define PIIX4_MAX_ADAPTERS 4 |
| 84 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 85 | /* SB800 constants */ |
| 86 | #define SB800_PIIX4_SMB_IDX 0xcd6 |
| 87 | |
| 88 | /* SB800 port is selected by bits 2:1 of the smb_en register (0x2c) */ |
| 89 | #define SB800_PIIX4_PORT_IDX 0x2c |
| 90 | #define SB800_PIIX4_PORT_IDX_MASK 0x06 |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* insmod parameters */ |
| 93 | |
| 94 | /* If force is set to anything different from 0, we forcibly enable the |
| 95 | PIIX4. DANGEROUS! */ |
Jean Delvare | 6050709 | 2005-09-25 16:23:07 +0200 | [diff] [blame] | 96 | static int force; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | module_param (force, int, 0); |
| 98 | MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!"); |
| 99 | |
| 100 | /* If force_addr is set to anything different from 0, we forcibly enable |
| 101 | the PIIX4 at the given address. VERY DANGEROUS! */ |
Jean Delvare | 6050709 | 2005-09-25 16:23:07 +0200 | [diff] [blame] | 102 | static int force_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | module_param (force_addr, int, 0); |
| 104 | MODULE_PARM_DESC(force_addr, |
| 105 | "Forcibly enable the PIIX4 at the given address. " |
| 106 | "EXTREMELY DANGEROUS!"); |
| 107 | |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 108 | static int srvrworks_csb5_delay; |
Jean Delvare | d6072f8 | 2005-09-25 16:37:04 +0200 | [diff] [blame] | 109 | static struct pci_driver piix4_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 111 | static const struct dmi_system_id piix4_dmi_blacklist[] = { |
Jean Delvare | c2fc54f | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 112 | { |
| 113 | .ident = "Sapphire AM2RD790", |
| 114 | .matches = { |
| 115 | DMI_MATCH(DMI_BOARD_VENDOR, "SAPPHIRE Inc."), |
| 116 | DMI_MATCH(DMI_BOARD_NAME, "PC-AM2RD790"), |
| 117 | }, |
| 118 | }, |
| 119 | { |
| 120 | .ident = "DFI Lanparty UT 790FX", |
| 121 | .matches = { |
| 122 | DMI_MATCH(DMI_BOARD_VENDOR, "DFI Inc."), |
| 123 | DMI_MATCH(DMI_BOARD_NAME, "LP UT 790FX"), |
| 124 | }, |
| 125 | }, |
| 126 | { } |
| 127 | }; |
| 128 | |
| 129 | /* The IBM entry is in a separate table because we only check it |
| 130 | on Intel-based systems */ |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 131 | static const struct dmi_system_id piix4_dmi_ibm[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
| 133 | .ident = "IBM", |
| 134 | .matches = { DMI_MATCH(DMI_SYS_VENDOR, "IBM"), }, |
| 135 | }, |
| 136 | { }, |
| 137 | }; |
| 138 | |
Christian Fetzer | 725d2e3 | 2015-11-19 20:13:49 +0100 | [diff] [blame] | 139 | /* SB800 globals */ |
Jean Delvare | a28e351 | 2016-01-22 14:12:02 +0100 | [diff] [blame] | 140 | static DEFINE_MUTEX(piix4_mutex_sb800); |
Christian Fetzer | 725d2e3 | 2015-11-19 20:13:49 +0100 | [diff] [blame] | 141 | static const char *piix4_main_port_names_sb800[PIIX4_MAX_ADAPTERS] = { |
Jean Delvare | 52795f6 | 2016-01-27 14:40:33 +0100 | [diff] [blame] | 142 | " port 0", " port 2", " port 3", " port 4" |
Christian Fetzer | 725d2e3 | 2015-11-19 20:13:49 +0100 | [diff] [blame] | 143 | }; |
Jean Delvare | 52795f6 | 2016-01-27 14:40:33 +0100 | [diff] [blame] | 144 | static const char *piix4_aux_port_name_sb800 = " port 1"; |
Christian Fetzer | 725d2e3 | 2015-11-19 20:13:49 +0100 | [diff] [blame] | 145 | |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 146 | struct i2c_piix4_adapdata { |
| 147 | unsigned short smba; |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 148 | |
| 149 | /* SB800 */ |
| 150 | bool sb800_main; |
| 151 | unsigned short port; |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 152 | }; |
| 153 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 154 | static int piix4_setup(struct pci_dev *PIIX4_dev, |
| 155 | const struct pci_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
| 157 | unsigned char temp; |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 158 | unsigned short piix4_smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 160 | if ((PIIX4_dev->vendor == PCI_VENDOR_ID_SERVERWORKS) && |
| 161 | (PIIX4_dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5)) |
| 162 | srvrworks_csb5_delay = 1; |
| 163 | |
Jean Delvare | c2fc54f | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 164 | /* On some motherboards, it was reported that accessing the SMBus |
| 165 | caused severe hardware problems */ |
| 166 | if (dmi_check_system(piix4_dmi_blacklist)) { |
| 167 | dev_err(&PIIX4_dev->dev, |
| 168 | "Accessing the SMBus on this system is unsafe!\n"); |
| 169 | return -EPERM; |
| 170 | } |
| 171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | /* Don't access SMBus on IBM systems which get corrupted eeproms */ |
Jean Delvare | c2fc54f | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 173 | if (dmi_check_system(piix4_dmi_ibm) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | PIIX4_dev->vendor == PCI_VENDOR_ID_INTEL) { |
Jean Delvare | f9ba6c0 | 2006-04-25 13:37:25 +0200 | [diff] [blame] | 175 | dev_err(&PIIX4_dev->dev, "IBM system detected; this module " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | "may corrupt your serial eeprom! Refusing to load " |
| 177 | "module!\n"); |
| 178 | return -EPERM; |
| 179 | } |
| 180 | |
| 181 | /* Determine the address of the SMBus areas */ |
| 182 | if (force_addr) { |
| 183 | piix4_smba = force_addr & 0xfff0; |
| 184 | force = 0; |
| 185 | } else { |
| 186 | pci_read_config_word(PIIX4_dev, SMBBA, &piix4_smba); |
| 187 | piix4_smba &= 0xfff0; |
| 188 | if(piix4_smba == 0) { |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 189 | dev_err(&PIIX4_dev->dev, "SMBus base address " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | "uninitialized - upgrade BIOS or use " |
| 191 | "force_addr=0xaddr\n"); |
| 192 | return -ENODEV; |
| 193 | } |
| 194 | } |
| 195 | |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 196 | if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) |
Jean Delvare | 18669ea | 2009-10-04 22:53:45 +0200 | [diff] [blame] | 197 | return -ENODEV; |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 198 | |
Jean Delvare | d6072f8 | 2005-09-25 16:37:04 +0200 | [diff] [blame] | 199 | if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) { |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 200 | 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] | 201 | piix4_smba); |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 202 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp); |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* If force_addr is set, we program the new address here. Just to make |
| 208 | sure, we disable the PIIX4 first. */ |
| 209 | if (force_addr) { |
| 210 | pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp & 0xfe); |
| 211 | pci_write_config_word(PIIX4_dev, SMBBA, piix4_smba); |
| 212 | pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp | 0x01); |
| 213 | dev_info(&PIIX4_dev->dev, "WARNING: SMBus interface set to " |
| 214 | "new address %04x!\n", piix4_smba); |
| 215 | } else if ((temp & 1) == 0) { |
| 216 | if (force) { |
| 217 | /* This should never need to be done, but has been |
| 218 | * noted that many Dell machines have the SMBus |
| 219 | * interface on the PIIX4 disabled!? NOTE: This assumes |
| 220 | * I/O space and other allocations WERE done by the |
| 221 | * Bios! Don't complain if your hardware does weird |
| 222 | * things after enabling this. :') Check for Bios |
| 223 | * updates before resorting to this. |
| 224 | */ |
| 225 | pci_write_config_byte(PIIX4_dev, SMBHSTCFG, |
| 226 | temp | 1); |
Joe Perches | 8117e41 | 2012-12-16 21:11:55 +0100 | [diff] [blame] | 227 | dev_notice(&PIIX4_dev->dev, |
| 228 | "WARNING: SMBus interface has been FORCEFULLY ENABLED!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } else { |
| 230 | dev_err(&PIIX4_dev->dev, |
Jean Delvare | 66f8a8f | 2014-01-23 16:59:38 +0100 | [diff] [blame] | 231 | "SMBus Host Controller not enabled!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | release_region(piix4_smba, SMBIOSIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | return -ENODEV; |
| 234 | } |
| 235 | } |
| 236 | |
Rudolf Marek | 54aaa1c | 2006-04-25 13:06:41 +0200 | [diff] [blame] | 237 | if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2)) |
Jean Delvare | 66f8a8f | 2014-01-23 16:59:38 +0100 | [diff] [blame] | 238 | dev_dbg(&PIIX4_dev->dev, "Using IRQ for SMBus\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | else if ((temp & 0x0E) == 0) |
Jean Delvare | 66f8a8f | 2014-01-23 16:59:38 +0100 | [diff] [blame] | 240 | dev_dbg(&PIIX4_dev->dev, "Using SMI# for SMBus\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | else |
| 242 | dev_err(&PIIX4_dev->dev, "Illegal Interrupt configuration " |
| 243 | "(or code out of date)!\n"); |
| 244 | |
| 245 | pci_read_config_byte(PIIX4_dev, SMBREV, &temp); |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 246 | dev_info(&PIIX4_dev->dev, |
| 247 | "SMBus Host Controller at 0x%x, revision %d\n", |
| 248 | piix4_smba, temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 250 | return piix4_smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 253 | static int piix4_setup_sb800(struct pci_dev *PIIX4_dev, |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 254 | const struct pci_device_id *id, u8 aux) |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 255 | { |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 256 | unsigned short piix4_smba; |
Shane Huang | 032f708 | 2014-01-22 14:05:46 -0800 | [diff] [blame] | 257 | u8 smba_en_lo, smba_en_hi, smb_en, smb_en_status; |
| 258 | u8 i2ccfg, i2ccfg_offset = 0x10; |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 259 | |
Crane Cai | 3806e94b | 2009-11-07 13:10:46 +0100 | [diff] [blame] | 260 | /* SB800 and later SMBus does not support forcing address */ |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 261 | if (force || force_addr) { |
Crane Cai | 3806e94b | 2009-11-07 13:10:46 +0100 | [diff] [blame] | 262 | dev_err(&PIIX4_dev->dev, "SMBus does not support " |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 263 | "forcing address!\n"); |
| 264 | return -EINVAL; |
| 265 | } |
| 266 | |
| 267 | /* Determine the address of the SMBus areas */ |
Shane Huang | 032f708 | 2014-01-22 14:05:46 -0800 | [diff] [blame] | 268 | if ((PIIX4_dev->vendor == PCI_VENDOR_ID_AMD && |
| 269 | PIIX4_dev->device == PCI_DEVICE_ID_AMD_HUDSON2_SMBUS && |
| 270 | PIIX4_dev->revision >= 0x41) || |
| 271 | (PIIX4_dev->vendor == PCI_VENDOR_ID_AMD && |
Vincent Wan | bcb2999 | 2015-06-11 20:11:46 +0800 | [diff] [blame] | 272 | PIIX4_dev->device == PCI_DEVICE_ID_AMD_KERNCZ_SMBUS && |
Shane Huang | 032f708 | 2014-01-22 14:05:46 -0800 | [diff] [blame] | 273 | PIIX4_dev->revision >= 0x49)) |
| 274 | smb_en = 0x00; |
| 275 | else |
| 276 | smb_en = (aux) ? 0x28 : 0x2c; |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 277 | |
Jean Delvare | a28e351 | 2016-01-22 14:12:02 +0100 | [diff] [blame] | 278 | mutex_lock(&piix4_mutex_sb800); |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 279 | outb_p(smb_en, SB800_PIIX4_SMB_IDX); |
| 280 | smba_en_lo = inb_p(SB800_PIIX4_SMB_IDX + 1); |
| 281 | outb_p(smb_en + 1, SB800_PIIX4_SMB_IDX); |
| 282 | smba_en_hi = inb_p(SB800_PIIX4_SMB_IDX + 1); |
Jean Delvare | a28e351 | 2016-01-22 14:12:02 +0100 | [diff] [blame] | 283 | mutex_unlock(&piix4_mutex_sb800); |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 284 | |
Shane Huang | 032f708 | 2014-01-22 14:05:46 -0800 | [diff] [blame] | 285 | if (!smb_en) { |
| 286 | smb_en_status = smba_en_lo & 0x10; |
| 287 | piix4_smba = smba_en_hi << 8; |
| 288 | if (aux) |
| 289 | piix4_smba |= 0x20; |
| 290 | } else { |
| 291 | smb_en_status = smba_en_lo & 0x01; |
| 292 | piix4_smba = ((smba_en_hi << 8) | smba_en_lo) & 0xffe0; |
| 293 | } |
| 294 | |
| 295 | if (!smb_en_status) { |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 296 | dev_err(&PIIX4_dev->dev, |
Jean Delvare | 66f8a8f | 2014-01-23 16:59:38 +0100 | [diff] [blame] | 297 | "SMBus Host Controller not enabled!\n"); |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 298 | return -ENODEV; |
| 299 | } |
| 300 | |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 301 | if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) |
Jean Delvare | 18669ea | 2009-10-04 22:53:45 +0200 | [diff] [blame] | 302 | return -ENODEV; |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 303 | |
| 304 | if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) { |
| 305 | dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!\n", |
| 306 | piix4_smba); |
| 307 | return -EBUSY; |
| 308 | } |
| 309 | |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 310 | /* Aux SMBus does not support IRQ information */ |
| 311 | if (aux) { |
| 312 | dev_info(&PIIX4_dev->dev, |
Shane Huang | 85fd0fe | 2014-01-22 14:06:52 -0800 | [diff] [blame] | 313 | "Auxiliary SMBus Host Controller at 0x%x\n", |
| 314 | piix4_smba); |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 315 | return piix4_smba; |
| 316 | } |
| 317 | |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 318 | /* Request the SMBus I2C bus config region */ |
| 319 | if (!request_region(piix4_smba + i2ccfg_offset, 1, "i2ccfg")) { |
| 320 | dev_err(&PIIX4_dev->dev, "SMBus I2C bus config region " |
| 321 | "0x%x already in use!\n", piix4_smba + i2ccfg_offset); |
| 322 | release_region(piix4_smba, SMBIOSIZE); |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 323 | return -EBUSY; |
| 324 | } |
| 325 | i2ccfg = inb_p(piix4_smba + i2ccfg_offset); |
| 326 | release_region(piix4_smba + i2ccfg_offset, 1); |
| 327 | |
| 328 | if (i2ccfg & 1) |
Jean Delvare | 66f8a8f | 2014-01-23 16:59:38 +0100 | [diff] [blame] | 329 | dev_dbg(&PIIX4_dev->dev, "Using IRQ for SMBus\n"); |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 330 | else |
Jean Delvare | 66f8a8f | 2014-01-23 16:59:38 +0100 | [diff] [blame] | 331 | dev_dbg(&PIIX4_dev->dev, "Using SMI# for SMBus\n"); |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 332 | |
| 333 | dev_info(&PIIX4_dev->dev, |
| 334 | "SMBus Host Controller at 0x%x, revision %d\n", |
| 335 | piix4_smba, i2ccfg >> 4); |
| 336 | |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 337 | return piix4_smba; |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 338 | } |
| 339 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 340 | static int piix4_setup_aux(struct pci_dev *PIIX4_dev, |
| 341 | const struct pci_device_id *id, |
| 342 | unsigned short base_reg_addr) |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 343 | { |
| 344 | /* Set up auxiliary SMBus controllers found on some |
| 345 | * AMD chipsets e.g. SP5100 (SB700 derivative) */ |
| 346 | |
| 347 | unsigned short piix4_smba; |
| 348 | |
| 349 | /* Read address of auxiliary SMBus controller */ |
| 350 | pci_read_config_word(PIIX4_dev, base_reg_addr, &piix4_smba); |
| 351 | if ((piix4_smba & 1) == 0) { |
| 352 | dev_dbg(&PIIX4_dev->dev, |
| 353 | "Auxiliary SMBus controller not enabled\n"); |
| 354 | return -ENODEV; |
| 355 | } |
| 356 | |
| 357 | piix4_smba &= 0xfff0; |
| 358 | if (piix4_smba == 0) { |
| 359 | dev_dbg(&PIIX4_dev->dev, |
| 360 | "Auxiliary SMBus base address uninitialized\n"); |
| 361 | return -ENODEV; |
| 362 | } |
| 363 | |
| 364 | if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) |
| 365 | return -ENODEV; |
| 366 | |
| 367 | if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) { |
| 368 | dev_err(&PIIX4_dev->dev, "Auxiliary SMBus region 0x%x " |
| 369 | "already in use!\n", piix4_smba); |
| 370 | return -EBUSY; |
| 371 | } |
| 372 | |
| 373 | dev_info(&PIIX4_dev->dev, |
| 374 | "Auxiliary SMBus Host Controller at 0x%x\n", |
| 375 | piix4_smba); |
| 376 | |
| 377 | return piix4_smba; |
| 378 | } |
| 379 | |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 380 | static int piix4_transaction(struct i2c_adapter *piix4_adapter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 382 | struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(piix4_adapter); |
| 383 | unsigned short piix4_smba = adapdata->smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | int temp; |
| 385 | int result = 0; |
| 386 | int timeout = 0; |
| 387 | |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 388 | dev_dbg(&piix4_adapter->dev, "Transaction (pre): CNT=%02x, CMD=%02x, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT), |
| 390 | inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0), |
| 391 | inb_p(SMBHSTDAT1)); |
| 392 | |
| 393 | /* Make sure the SMBus host is ready to start transmitting */ |
| 394 | if ((temp = inb_p(SMBHSTSTS)) != 0x00) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 395 | dev_dbg(&piix4_adapter->dev, "SMBus busy (%02x). " |
Jean Delvare | 541e6a0 | 2005-06-23 22:18:08 +0200 | [diff] [blame] | 396 | "Resetting...\n", temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | outb_p(temp, SMBHSTSTS); |
| 398 | if ((temp = inb_p(SMBHSTSTS)) != 0x00) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 399 | dev_err(&piix4_adapter->dev, "Failed! (%02x)\n", temp); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 400 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | } else { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 402 | dev_dbg(&piix4_adapter->dev, "Successful!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
| 404 | } |
| 405 | |
| 406 | /* start the transaction by setting bit 6 */ |
| 407 | outb_p(inb(SMBHSTCNT) | 0x040, SMBHSTCNT); |
| 408 | |
| 409 | /* 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] | 410 | if (srvrworks_csb5_delay) /* Extra delay for SERVERWORKS_CSB5 */ |
| 411 | msleep(2); |
| 412 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | msleep(1); |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 414 | |
Roel Kluin | b6a3195 | 2010-01-16 20:43:12 +0100 | [diff] [blame] | 415 | while ((++timeout < MAX_TIMEOUT) && |
David Milburn | b1c1759 | 2008-05-11 20:37:05 +0200 | [diff] [blame] | 416 | ((temp = inb_p(SMBHSTSTS)) & 0x01)) |
| 417 | msleep(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
| 419 | /* If the SMBus is still busy, we give up */ |
Roel Kluin | b6a3195 | 2010-01-16 20:43:12 +0100 | [diff] [blame] | 420 | if (timeout == MAX_TIMEOUT) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 421 | dev_err(&piix4_adapter->dev, "SMBus Timeout!\n"); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 422 | result = -ETIMEDOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | if (temp & 0x10) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 426 | result = -EIO; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 427 | dev_err(&piix4_adapter->dev, "Error: Failed bus transaction\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | if (temp & 0x08) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 431 | result = -EIO; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 432 | dev_dbg(&piix4_adapter->dev, "Bus collision! SMBus may be " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | "locked until next hard reset. (sorry!)\n"); |
| 434 | /* Clock stops and slave is stuck in mid-transmission */ |
| 435 | } |
| 436 | |
| 437 | if (temp & 0x04) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 438 | result = -ENXIO; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 439 | dev_dbg(&piix4_adapter->dev, "Error: no response!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | if (inb_p(SMBHSTSTS) != 0x00) |
| 443 | outb_p(inb(SMBHSTSTS), SMBHSTSTS); |
| 444 | |
| 445 | if ((temp = inb_p(SMBHSTSTS)) != 0x00) { |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 446 | dev_err(&piix4_adapter->dev, "Failed reset at end of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | "transaction (%02x)\n", temp); |
| 448 | } |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 449 | dev_dbg(&piix4_adapter->dev, "Transaction (post): CNT=%02x, CMD=%02x, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT), |
| 451 | inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0), |
| 452 | inb_p(SMBHSTDAT1)); |
| 453 | return result; |
| 454 | } |
| 455 | |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 456 | /* Return negative errno on error. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | static s32 piix4_access(struct i2c_adapter * adap, u16 addr, |
| 458 | unsigned short flags, char read_write, |
| 459 | u8 command, int size, union i2c_smbus_data * data) |
| 460 | { |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 461 | struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap); |
| 462 | unsigned short piix4_smba = adapdata->smba; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | int i, len; |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 464 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | |
| 466 | switch (size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | case I2C_SMBUS_QUICK: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 468 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | SMBHSTADD); |
| 470 | size = PIIX4_QUICK; |
| 471 | break; |
| 472 | case I2C_SMBUS_BYTE: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 473 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | SMBHSTADD); |
| 475 | if (read_write == I2C_SMBUS_WRITE) |
| 476 | outb_p(command, SMBHSTCMD); |
| 477 | size = PIIX4_BYTE; |
| 478 | break; |
| 479 | case I2C_SMBUS_BYTE_DATA: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 480 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | SMBHSTADD); |
| 482 | outb_p(command, SMBHSTCMD); |
| 483 | if (read_write == I2C_SMBUS_WRITE) |
| 484 | outb_p(data->byte, SMBHSTDAT0); |
| 485 | size = PIIX4_BYTE_DATA; |
| 486 | break; |
| 487 | case I2C_SMBUS_WORD_DATA: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 488 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | SMBHSTADD); |
| 490 | outb_p(command, SMBHSTCMD); |
| 491 | if (read_write == I2C_SMBUS_WRITE) { |
| 492 | outb_p(data->word & 0xff, SMBHSTDAT0); |
| 493 | outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1); |
| 494 | } |
| 495 | size = PIIX4_WORD_DATA; |
| 496 | break; |
| 497 | case I2C_SMBUS_BLOCK_DATA: |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 498 | outb_p((addr << 1) | read_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | SMBHSTADD); |
| 500 | outb_p(command, SMBHSTCMD); |
| 501 | if (read_write == I2C_SMBUS_WRITE) { |
| 502 | len = data->block[0]; |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 503 | if (len == 0 || len > I2C_SMBUS_BLOCK_MAX) |
| 504 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | outb_p(len, SMBHSTDAT0); |
Wolfram Sang | d7a4c76 | 2015-11-30 14:43:09 +0100 | [diff] [blame] | 506 | inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | for (i = 1; i <= len; i++) |
| 508 | outb_p(data->block[i], SMBBLKDAT); |
| 509 | } |
| 510 | size = PIIX4_BLOCK_DATA; |
| 511 | break; |
Jean Delvare | ac7fc4f | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 512 | default: |
| 513 | dev_warn(&adap->dev, "Unsupported transaction %d\n", size); |
| 514 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | outb_p((size & 0x1C) + (ENABLE_INT9 & 1), SMBHSTCNT); |
| 518 | |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 519 | status = piix4_transaction(adap); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 520 | if (status) |
| 521 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
| 523 | if ((read_write == I2C_SMBUS_WRITE) || (size == PIIX4_QUICK)) |
| 524 | return 0; |
| 525 | |
| 526 | |
| 527 | switch (size) { |
Jean Delvare | 3578a07 | 2008-04-29 23:11:37 +0200 | [diff] [blame] | 528 | case PIIX4_BYTE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | case PIIX4_BYTE_DATA: |
| 530 | data->byte = inb_p(SMBHSTDAT0); |
| 531 | break; |
| 532 | case PIIX4_WORD_DATA: |
| 533 | data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8); |
| 534 | break; |
| 535 | case PIIX4_BLOCK_DATA: |
| 536 | data->block[0] = inb_p(SMBHSTDAT0); |
Jean Delvare | fa63cd5 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 537 | if (data->block[0] == 0 || data->block[0] > I2C_SMBUS_BLOCK_MAX) |
| 538 | return -EPROTO; |
Wolfram Sang | d7a4c76 | 2015-11-30 14:43:09 +0100 | [diff] [blame] | 539 | inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | for (i = 1; i <= data->block[0]; i++) |
| 541 | data->block[i] = inb_p(SMBBLKDAT); |
| 542 | break; |
| 543 | } |
| 544 | return 0; |
| 545 | } |
| 546 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 547 | /* |
| 548 | * Handles access to multiple SMBus ports on the SB800. |
| 549 | * The port is selected by bits 2:1 of the smb_en register (0x2c). |
| 550 | * Returns negative errno on error. |
| 551 | * |
| 552 | * Note: The selected port must be returned to the initial selection to avoid |
| 553 | * problems on certain systems. |
| 554 | */ |
| 555 | static s32 piix4_access_sb800(struct i2c_adapter *adap, u16 addr, |
| 556 | unsigned short flags, char read_write, |
| 557 | u8 command, int size, union i2c_smbus_data *data) |
| 558 | { |
| 559 | struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap); |
| 560 | u8 smba_en_lo; |
| 561 | u8 port; |
| 562 | int retval; |
| 563 | |
Jean Delvare | a28e351 | 2016-01-22 14:12:02 +0100 | [diff] [blame] | 564 | mutex_lock(&piix4_mutex_sb800); |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 565 | |
| 566 | outb_p(SB800_PIIX4_PORT_IDX, SB800_PIIX4_SMB_IDX); |
| 567 | smba_en_lo = inb_p(SB800_PIIX4_SMB_IDX + 1); |
| 568 | |
| 569 | port = adapdata->port; |
| 570 | if ((smba_en_lo & SB800_PIIX4_PORT_IDX_MASK) != (port << 1)) |
| 571 | outb_p((smba_en_lo & ~SB800_PIIX4_PORT_IDX_MASK) | (port << 1), |
| 572 | SB800_PIIX4_SMB_IDX + 1); |
| 573 | |
| 574 | retval = piix4_access(adap, addr, flags, read_write, |
| 575 | command, size, data); |
| 576 | |
| 577 | outb_p(smba_en_lo, SB800_PIIX4_SMB_IDX + 1); |
| 578 | |
Jean Delvare | a28e351 | 2016-01-22 14:12:02 +0100 | [diff] [blame] | 579 | mutex_unlock(&piix4_mutex_sb800); |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 580 | |
| 581 | return retval; |
| 582 | } |
| 583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | static u32 piix4_func(struct i2c_adapter *adapter) |
| 585 | { |
| 586 | return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | |
| 587 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | |
| 588 | I2C_FUNC_SMBUS_BLOCK_DATA; |
| 589 | } |
| 590 | |
Jean Delvare | 8f9082c | 2006-09-03 22:39:46 +0200 | [diff] [blame] | 591 | static const struct i2c_algorithm smbus_algorithm = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | .smbus_xfer = piix4_access, |
| 593 | .functionality = piix4_func, |
| 594 | }; |
| 595 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 596 | static const struct i2c_algorithm piix4_smbus_algorithm_sb800 = { |
| 597 | .smbus_xfer = piix4_access_sb800, |
| 598 | .functionality = piix4_func, |
| 599 | }; |
| 600 | |
Jingoo Han | 392debf | 2013-12-03 08:11:20 +0900 | [diff] [blame] | 601 | static const struct pci_device_id piix4_ids[] = { |
Jean Delvare | 9b7389c | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 602 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3) }, |
| 603 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443MX_3) }, |
| 604 | { PCI_DEVICE(PCI_VENDOR_ID_EFAR, PCI_DEVICE_ID_EFAR_SLC90E66_3) }, |
| 605 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP200_SMBUS) }, |
| 606 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_SMBUS) }, |
| 607 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS) }, |
| 608 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS) }, |
Crane Cai | 3806e94b | 2009-11-07 13:10:46 +0100 | [diff] [blame] | 609 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS) }, |
Vincent Wan | bcb2999 | 2015-06-11 20:11:46 +0800 | [diff] [blame] | 610 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_KERNCZ_SMBUS) }, |
Jean Delvare | 9b7389c | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 611 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 612 | PCI_DEVICE_ID_SERVERWORKS_OSB4) }, |
| 613 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 614 | PCI_DEVICE_ID_SERVERWORKS_CSB5) }, |
| 615 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 616 | PCI_DEVICE_ID_SERVERWORKS_CSB6) }, |
| 617 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 618 | PCI_DEVICE_ID_SERVERWORKS_HT1000SB) }, |
Flavio Leitner | 506a8b6 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 619 | { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, |
| 620 | PCI_DEVICE_ID_SERVERWORKS_HT1100LD) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | { 0, } |
| 622 | }; |
| 623 | |
| 624 | MODULE_DEVICE_TABLE (pci, piix4_ids); |
| 625 | |
Christian Fetzer | ca2061e | 2015-11-19 20:13:47 +0100 | [diff] [blame] | 626 | static struct i2c_adapter *piix4_main_adapters[PIIX4_MAX_ADAPTERS]; |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 627 | static struct i2c_adapter *piix4_aux_adapter; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 628 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 629 | static int piix4_add_adapter(struct pci_dev *dev, unsigned short smba, |
Jean Delvare | 83c6015 | 2016-01-25 12:17:07 +0100 | [diff] [blame] | 630 | bool sb800_main, unsigned short port, |
Christian Fetzer | 725d2e3 | 2015-11-19 20:13:49 +0100 | [diff] [blame] | 631 | const char *name, struct i2c_adapter **padap) |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 632 | { |
| 633 | struct i2c_adapter *adap; |
| 634 | struct i2c_piix4_adapdata *adapdata; |
| 635 | int retval; |
| 636 | |
| 637 | adap = kzalloc(sizeof(*adap), GFP_KERNEL); |
| 638 | if (adap == NULL) { |
| 639 | release_region(smba, SMBIOSIZE); |
| 640 | return -ENOMEM; |
| 641 | } |
| 642 | |
| 643 | adap->owner = THIS_MODULE; |
| 644 | adap->class = I2C_CLASS_HWMON | I2C_CLASS_SPD; |
Jean Delvare | 83c6015 | 2016-01-25 12:17:07 +0100 | [diff] [blame] | 645 | adap->algo = sb800_main ? &piix4_smbus_algorithm_sb800 |
| 646 | : &smbus_algorithm; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 647 | |
| 648 | adapdata = kzalloc(sizeof(*adapdata), GFP_KERNEL); |
| 649 | if (adapdata == NULL) { |
| 650 | kfree(adap); |
| 651 | release_region(smba, SMBIOSIZE); |
| 652 | return -ENOMEM; |
| 653 | } |
| 654 | |
| 655 | adapdata->smba = smba; |
Jean Delvare | 83c6015 | 2016-01-25 12:17:07 +0100 | [diff] [blame] | 656 | adapdata->sb800_main = sb800_main; |
| 657 | adapdata->port = port; |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 658 | |
| 659 | /* set up the sysfs linkage to our parent device */ |
| 660 | adap->dev.parent = &dev->dev; |
| 661 | |
| 662 | snprintf(adap->name, sizeof(adap->name), |
Jean Delvare | 52795f6 | 2016-01-27 14:40:33 +0100 | [diff] [blame] | 663 | "SMBus PIIX4 adapter%s at %04x", name, smba); |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 664 | |
| 665 | i2c_set_adapdata(adap, adapdata); |
| 666 | |
| 667 | retval = i2c_add_adapter(adap); |
| 668 | if (retval) { |
| 669 | dev_err(&dev->dev, "Couldn't register adapter!\n"); |
| 670 | kfree(adapdata); |
| 671 | kfree(adap); |
| 672 | release_region(smba, SMBIOSIZE); |
| 673 | return retval; |
| 674 | } |
| 675 | |
| 676 | *padap = adap; |
| 677 | return 0; |
| 678 | } |
| 679 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 680 | static int piix4_add_adapters_sb800(struct pci_dev *dev, unsigned short smba) |
| 681 | { |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 682 | struct i2c_piix4_adapdata *adapdata; |
| 683 | int port; |
| 684 | int retval; |
| 685 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 686 | for (port = 0; port < PIIX4_MAX_ADAPTERS; port++) { |
Jean Delvare | 83c6015 | 2016-01-25 12:17:07 +0100 | [diff] [blame] | 687 | retval = piix4_add_adapter(dev, smba, true, port, |
Christian Fetzer | 725d2e3 | 2015-11-19 20:13:49 +0100 | [diff] [blame] | 688 | piix4_main_port_names_sb800[port], |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 689 | &piix4_main_adapters[port]); |
| 690 | if (retval < 0) |
| 691 | goto error; |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | return retval; |
| 695 | |
| 696 | error: |
| 697 | dev_err(&dev->dev, |
| 698 | "Error setting up SB800 adapters. Unregistering!\n"); |
| 699 | while (--port >= 0) { |
| 700 | adapdata = i2c_get_adapdata(piix4_main_adapters[port]); |
| 701 | if (adapdata->smba) { |
| 702 | i2c_del_adapter(piix4_main_adapters[port]); |
| 703 | kfree(adapdata); |
| 704 | kfree(piix4_main_adapters[port]); |
| 705 | piix4_main_adapters[port] = NULL; |
| 706 | } |
| 707 | } |
| 708 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 709 | return retval; |
| 710 | } |
| 711 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 712 | 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] | 713 | { |
| 714 | int retval; |
Jean Delvare | 52795f6 | 2016-01-27 14:40:33 +0100 | [diff] [blame] | 715 | bool is_sb800 = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Crane Cai | 76b3e28 | 2009-09-18 22:45:50 +0200 | [diff] [blame] | 717 | if ((dev->vendor == PCI_VENDOR_ID_ATI && |
| 718 | dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS && |
| 719 | dev->revision >= 0x40) || |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 720 | dev->vendor == PCI_VENDOR_ID_AMD) { |
Jean Delvare | 52795f6 | 2016-01-27 14:40:33 +0100 | [diff] [blame] | 721 | is_sb800 = true; |
| 722 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 723 | if (!request_region(SB800_PIIX4_SMB_IDX, 2, "smba_idx")) { |
| 724 | dev_err(&dev->dev, |
| 725 | "SMBus base address index region 0x%x already in use!\n", |
| 726 | SB800_PIIX4_SMB_IDX); |
| 727 | return -EBUSY; |
| 728 | } |
| 729 | |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 730 | /* base address location etc changed in SB800 */ |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 731 | retval = piix4_setup_sb800(dev, id, 0); |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 732 | if (retval < 0) { |
| 733 | release_region(SB800_PIIX4_SMB_IDX, 2); |
| 734 | return retval; |
| 735 | } |
| 736 | |
| 737 | /* |
| 738 | * Try to register multiplexed main SMBus adapter, |
| 739 | * give up if we can't |
| 740 | */ |
| 741 | retval = piix4_add_adapters_sb800(dev, retval); |
| 742 | if (retval < 0) { |
| 743 | release_region(SB800_PIIX4_SMB_IDX, 2); |
| 744 | return retval; |
| 745 | } |
| 746 | } else { |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 747 | retval = piix4_setup(dev, id); |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 748 | if (retval < 0) |
| 749 | return retval; |
Shane Huang | 87e1960 | 2009-03-28 21:34:46 +0100 | [diff] [blame] | 750 | |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 751 | /* Try to register main SMBus adapter, give up if we can't */ |
Jean Delvare | 52795f6 | 2016-01-27 14:40:33 +0100 | [diff] [blame] | 752 | retval = piix4_add_adapter(dev, retval, false, 0, "", |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 753 | &piix4_main_adapters[0]); |
| 754 | if (retval < 0) |
| 755 | return retval; |
| 756 | } |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 757 | |
| 758 | /* Check for auxiliary SMBus on some AMD chipsets */ |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 759 | retval = -ENODEV; |
| 760 | |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 761 | if (dev->vendor == PCI_VENDOR_ID_ATI && |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 762 | dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS) { |
| 763 | if (dev->revision < 0x40) { |
| 764 | retval = piix4_setup_aux(dev, id, 0x58); |
| 765 | } else { |
| 766 | /* SB800 added aux bus too */ |
| 767 | retval = piix4_setup_sb800(dev, id, 1); |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 768 | } |
| 769 | } |
| 770 | |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 771 | if (dev->vendor == PCI_VENDOR_ID_AMD && |
| 772 | dev->device == PCI_DEVICE_ID_AMD_HUDSON2_SMBUS) { |
| 773 | retval = piix4_setup_sb800(dev, id, 1); |
| 774 | } |
| 775 | |
| 776 | if (retval > 0) { |
| 777 | /* Try to add the aux adapter if it exists, |
| 778 | * piix4_add_adapter will clean up if this fails */ |
Jean Delvare | 83c6015 | 2016-01-25 12:17:07 +0100 | [diff] [blame] | 779 | piix4_add_adapter(dev, retval, false, 0, |
Jean Delvare | 52795f6 | 2016-01-27 14:40:33 +0100 | [diff] [blame] | 780 | is_sb800 ? piix4_aux_port_name_sb800 : "", |
Christian Fetzer | 725d2e3 | 2015-11-19 20:13:49 +0100 | [diff] [blame] | 781 | &piix4_aux_adapter); |
Rudolf Marek | a94dd00 | 2013-07-14 23:17:26 +0200 | [diff] [blame] | 782 | } |
| 783 | |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 784 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } |
| 786 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 787 | static void piix4_adap_remove(struct i2c_adapter *adap) |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 788 | { |
| 789 | struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap); |
| 790 | |
| 791 | if (adapdata->smba) { |
| 792 | i2c_del_adapter(adap); |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 793 | if (adapdata->port == 0) { |
| 794 | release_region(adapdata->smba, SMBIOSIZE); |
Jean Delvare | a28e351 | 2016-01-22 14:12:02 +0100 | [diff] [blame] | 795 | if (adapdata->sb800_main) |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 796 | release_region(SB800_PIIX4_SMB_IDX, 2); |
Christian Fetzer | 2fee61d | 2015-11-19 20:13:48 +0100 | [diff] [blame] | 797 | } |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 798 | kfree(adapdata); |
| 799 | kfree(adap); |
Andrew Armenia | 14a8086 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 800 | } |
| 801 | } |
| 802 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 803 | static void piix4_remove(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | { |
Christian Fetzer | ca2061e | 2015-11-19 20:13:47 +0100 | [diff] [blame] | 805 | int port = PIIX4_MAX_ADAPTERS; |
| 806 | |
| 807 | while (--port >= 0) { |
| 808 | if (piix4_main_adapters[port]) { |
| 809 | piix4_adap_remove(piix4_main_adapters[port]); |
| 810 | piix4_main_adapters[port] = NULL; |
| 811 | } |
Andrew Armenia | e154bf6 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 812 | } |
Andrew Armenia | 2a2f740 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 813 | |
| 814 | if (piix4_aux_adapter) { |
| 815 | piix4_adap_remove(piix4_aux_adapter); |
| 816 | piix4_aux_adapter = NULL; |
| 817 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | static struct pci_driver piix4_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | .name = "piix4_smbus", |
| 822 | .id_table = piix4_ids, |
| 823 | .probe = piix4_probe, |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 824 | .remove = piix4_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | }; |
| 826 | |
Axel Lin | 56f2178 | 2012-07-24 14:13:56 +0200 | [diff] [blame] | 827 | module_pci_driver(piix4_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | |
| 829 | MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and " |
| 830 | "Philip Edelbrock <phil@netroedge.com>"); |
| 831 | MODULE_DESCRIPTION("PIIX4 SMBus driver"); |
| 832 | MODULE_LICENSE("GPL"); |