blob: 78d4483d2d5c79d94e36d4aec53ccede4d92577d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl> and
3 Philip Edelbrock <phil@netroedge.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014*/
15
16/*
17 Supports:
18 Intel PIIX4, 440MX
Flavio Leitner506a8b62009-03-28 21:34:46 +010019 Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100
Andrew Armenia2a2f7402012-07-24 14:13:57 +020020 ATI IXP200, IXP300, IXP400, SB600, SB700/SP5100, SB800
Shane Huang032f7082014-01-22 14:05:46 -080021 AMD Hudson-2, ML, CZ
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 SMSC Victory66
23
Andrew Armenia2a2f7402012-07-24 14:13:57 +020024 Note: we assume there can only be one device, with one or more
25 SMBus interfaces.
Christian Fetzer2fee61d2015-11-19 20:13:48 +010026 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 Torvalds1da177e2005-04-16 15:20:36 -070029*/
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#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 Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/ioport.h>
38#include <linux/i2c.h>
Daniel J Bluemanc415b302012-10-05 22:23:55 +020039#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/dmi.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020041#include <linux/acpi.h>
H Hartley Sweeten21782182010-05-21 18:41:01 +020042#include <linux/io.h>
Christian Fetzer2fee61d2015-11-19 20:13:48 +010043#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/* 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 Fetzerca2061e2015-11-19 20:13:47 +010082/* Multi-port constants */
83#define PIIX4_MAX_ADAPTERS 4
84
Christian Fetzer2fee61d2015-11-19 20:13:48 +010085/* SB800 constants */
86#define SB800_PIIX4_SMB_IDX 0xcd6
87
Jean Delvare6befa3f2016-02-17 10:26:35 +010088/*
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.
92 */
Christian Fetzer2fee61d2015-11-19 20:13:48 +010093#define SB800_PIIX4_PORT_IDX 0x2c
Jean Delvare6befa3f2016-02-17 10:26:35 +010094#define SB800_PIIX4_PORT_IDX_ALT 0x2e
95#define SB800_PIIX4_PORT_IDX_SEL 0x2f
Christian Fetzer2fee61d2015-11-19 20:13:48 +010096#define SB800_PIIX4_PORT_IDX_MASK 0x06
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* insmod parameters */
99
100/* If force is set to anything different from 0, we forcibly enable the
101 PIIX4. DANGEROUS! */
Jean Delvare60507092005-09-25 16:23:07 +0200102static int force;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103module_param (force, int, 0);
104MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!");
105
106/* If force_addr is set to anything different from 0, we forcibly enable
107 the PIIX4 at the given address. VERY DANGEROUS! */
Jean Delvare60507092005-09-25 16:23:07 +0200108static int force_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109module_param (force_addr, int, 0);
110MODULE_PARM_DESC(force_addr,
111 "Forcibly enable the PIIX4 at the given address. "
112 "EXTREMELY DANGEROUS!");
113
David Milburnb1c17592008-05-11 20:37:05 +0200114static int srvrworks_csb5_delay;
Jean Delvared6072f82005-09-25 16:37:04 +0200115static struct pci_driver piix4_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Bill Pemberton0b255e92012-11-27 15:59:38 -0500117static const struct dmi_system_id piix4_dmi_blacklist[] = {
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200118 {
119 .ident = "Sapphire AM2RD790",
120 .matches = {
121 DMI_MATCH(DMI_BOARD_VENDOR, "SAPPHIRE Inc."),
122 DMI_MATCH(DMI_BOARD_NAME, "PC-AM2RD790"),
123 },
124 },
125 {
126 .ident = "DFI Lanparty UT 790FX",
127 .matches = {
128 DMI_MATCH(DMI_BOARD_VENDOR, "DFI Inc."),
129 DMI_MATCH(DMI_BOARD_NAME, "LP UT 790FX"),
130 },
131 },
132 { }
133};
134
135/* The IBM entry is in a separate table because we only check it
136 on Intel-based systems */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500137static const struct dmi_system_id piix4_dmi_ibm[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 {
139 .ident = "IBM",
140 .matches = { DMI_MATCH(DMI_SYS_VENDOR, "IBM"), },
141 },
142 { },
143};
144
Jean Delvare6befa3f2016-02-17 10:26:35 +0100145/*
146 * SB800 globals
147 * piix4_mutex_sb800 protects piix4_port_sel_sb800 and the pair
148 * of I/O ports at SB800_PIIX4_SMB_IDX.
149 */
Jean Delvarea28e3512016-01-22 14:12:02 +0100150static DEFINE_MUTEX(piix4_mutex_sb800);
Jean Delvare6befa3f2016-02-17 10:26:35 +0100151static u8 piix4_port_sel_sb800;
Christian Fetzer725d2e32015-11-19 20:13:49 +0100152static const char *piix4_main_port_names_sb800[PIIX4_MAX_ADAPTERS] = {
Jean Delvare52795f62016-01-27 14:40:33 +0100153 " port 0", " port 2", " port 3", " port 4"
Christian Fetzer725d2e32015-11-19 20:13:49 +0100154};
Jean Delvare52795f62016-01-27 14:40:33 +0100155static const char *piix4_aux_port_name_sb800 = " port 1";
Christian Fetzer725d2e32015-11-19 20:13:49 +0100156
Andrew Armenia14a80862012-07-24 14:13:56 +0200157struct i2c_piix4_adapdata {
158 unsigned short smba;
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100159
160 /* SB800 */
161 bool sb800_main;
162 unsigned short port;
Andrew Armenia14a80862012-07-24 14:13:56 +0200163};
164
Bill Pemberton0b255e92012-11-27 15:59:38 -0500165static int piix4_setup(struct pci_dev *PIIX4_dev,
166 const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 unsigned char temp;
Andrew Armenia14a80862012-07-24 14:13:56 +0200169 unsigned short piix4_smba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
David Milburnb1c17592008-05-11 20:37:05 +0200171 if ((PIIX4_dev->vendor == PCI_VENDOR_ID_SERVERWORKS) &&
172 (PIIX4_dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5))
173 srvrworks_csb5_delay = 1;
174
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200175 /* 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");
180 return -EPERM;
181 }
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 /* Don't access SMBus on IBM systems which get corrupted eeproms */
Jean Delvarec2fc54f2008-05-11 20:37:05 +0200184 if (dmi_check_system(piix4_dmi_ibm) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 PIIX4_dev->vendor == PCI_VENDOR_ID_INTEL) {
Jean Delvaref9ba6c02006-04-25 13:37:25 +0200186 dev_err(&PIIX4_dev->dev, "IBM system detected; this module "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 "may corrupt your serial eeprom! Refusing to load "
188 "module!\n");
189 return -EPERM;
190 }
191
192 /* Determine the address of the SMBus areas */
193 if (force_addr) {
194 piix4_smba = force_addr & 0xfff0;
195 force = 0;
196 } else {
197 pci_read_config_word(PIIX4_dev, SMBBA, &piix4_smba);
198 piix4_smba &= 0xfff0;
199 if(piix4_smba == 0) {
Jean Delvarefa63cd52008-07-14 22:38:25 +0200200 dev_err(&PIIX4_dev->dev, "SMBus base address "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 "uninitialized - upgrade BIOS or use "
202 "force_addr=0xaddr\n");
203 return -ENODEV;
204 }
205 }
206
Jean Delvare54fb4a052008-07-14 22:38:33 +0200207 if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name))
Jean Delvare18669ea2009-10-04 22:53:45 +0200208 return -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +0200209
Jean Delvared6072f82005-09-25 16:37:04 +0200210 if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) {
Jean Delvarefa63cd52008-07-14 22:38:25 +0200211 dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 piix4_smba);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200213 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
216 pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp);
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* If force_addr is set, we program the new address here. Just to make
219 sure, we disable the PIIX4 first. */
220 if (force_addr) {
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) {
227 if (force) {
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.
235 */
236 pci_write_config_byte(PIIX4_dev, SMBHSTCFG,
237 temp | 1);
Joe Perches8117e412012-12-16 21:11:55 +0100238 dev_notice(&PIIX4_dev->dev,
239 "WARNING: SMBus interface has been FORCEFULLY ENABLED!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 } else {
241 dev_err(&PIIX4_dev->dev,
Jean Delvare66f8a8f2014-01-23 16:59:38 +0100242 "SMBus Host Controller not enabled!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 release_region(piix4_smba, SMBIOSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return -ENODEV;
245 }
246 }
247
Rudolf Marek54aaa1c2006-04-25 13:06:41 +0200248 if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2))
Jean Delvare66f8a8f2014-01-23 16:59:38 +0100249 dev_dbg(&PIIX4_dev->dev, "Using IRQ for SMBus\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 else if ((temp & 0x0E) == 0)
Jean Delvare66f8a8f2014-01-23 16:59:38 +0100251 dev_dbg(&PIIX4_dev->dev, "Using SMI# for SMBus\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 else
253 dev_err(&PIIX4_dev->dev, "Illegal Interrupt configuration "
254 "(or code out of date)!\n");
255
256 pci_read_config_byte(PIIX4_dev, SMBREV, &temp);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200257 dev_info(&PIIX4_dev->dev,
258 "SMBus Host Controller at 0x%x, revision %d\n",
259 piix4_smba, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Andrew Armenia14a80862012-07-24 14:13:56 +0200261 return piix4_smba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Bill Pemberton0b255e92012-11-27 15:59:38 -0500264static int piix4_setup_sb800(struct pci_dev *PIIX4_dev,
Rudolf Mareka94dd002013-07-14 23:17:26 +0200265 const struct pci_device_id *id, u8 aux)
Shane Huang87e19602009-03-28 21:34:46 +0100266{
Andrew Armenia14a80862012-07-24 14:13:56 +0200267 unsigned short piix4_smba;
Jean Delvare6befa3f2016-02-17 10:26:35 +0100268 u8 smba_en_lo, smba_en_hi, smb_en, smb_en_status, port_sel;
Shane Huang032f7082014-01-22 14:05:46 -0800269 u8 i2ccfg, i2ccfg_offset = 0x10;
Shane Huang87e19602009-03-28 21:34:46 +0100270
Crane Cai3806e94b2009-11-07 13:10:46 +0100271 /* SB800 and later SMBus does not support forcing address */
Shane Huang87e19602009-03-28 21:34:46 +0100272 if (force || force_addr) {
Crane Cai3806e94b2009-11-07 13:10:46 +0100273 dev_err(&PIIX4_dev->dev, "SMBus does not support "
Shane Huang87e19602009-03-28 21:34:46 +0100274 "forcing address!\n");
275 return -EINVAL;
276 }
277
278 /* Determine the address of the SMBus areas */
Shane Huang032f7082014-01-22 14:05:46 -0800279 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 &&
Vincent Wanbcb29992015-06-11 20:11:46 +0800283 PIIX4_dev->device == PCI_DEVICE_ID_AMD_KERNCZ_SMBUS &&
Shane Huang032f7082014-01-22 14:05:46 -0800284 PIIX4_dev->revision >= 0x49))
285 smb_en = 0x00;
286 else
287 smb_en = (aux) ? 0x28 : 0x2c;
Rudolf Mareka94dd002013-07-14 23:17:26 +0200288
Jean Delvarea28e3512016-01-22 14:12:02 +0100289 mutex_lock(&piix4_mutex_sb800);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100290 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);
Jean Delvarea28e3512016-01-22 14:12:02 +0100294 mutex_unlock(&piix4_mutex_sb800);
Shane Huang87e19602009-03-28 21:34:46 +0100295
Shane Huang032f7082014-01-22 14:05:46 -0800296 if (!smb_en) {
297 smb_en_status = smba_en_lo & 0x10;
298 piix4_smba = smba_en_hi << 8;
299 if (aux)
300 piix4_smba |= 0x20;
301 } else {
302 smb_en_status = smba_en_lo & 0x01;
303 piix4_smba = ((smba_en_hi << 8) | smba_en_lo) & 0xffe0;
304 }
305
306 if (!smb_en_status) {
Shane Huang87e19602009-03-28 21:34:46 +0100307 dev_err(&PIIX4_dev->dev,
Jean Delvare66f8a8f2014-01-23 16:59:38 +0100308 "SMBus Host Controller not enabled!\n");
Shane Huang87e19602009-03-28 21:34:46 +0100309 return -ENODEV;
310 }
311
Shane Huang87e19602009-03-28 21:34:46 +0100312 if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name))
Jean Delvare18669ea2009-10-04 22:53:45 +0200313 return -ENODEV;
Shane Huang87e19602009-03-28 21:34:46 +0100314
315 if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) {
316 dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!\n",
317 piix4_smba);
318 return -EBUSY;
319 }
320
Rudolf Mareka94dd002013-07-14 23:17:26 +0200321 /* Aux SMBus does not support IRQ information */
322 if (aux) {
323 dev_info(&PIIX4_dev->dev,
Shane Huang85fd0fe2014-01-22 14:06:52 -0800324 "Auxiliary SMBus Host Controller at 0x%x\n",
325 piix4_smba);
Rudolf Mareka94dd002013-07-14 23:17:26 +0200326 return piix4_smba;
327 }
328
Shane Huang87e19602009-03-28 21:34:46 +0100329 /* 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);
Shane Huang87e19602009-03-28 21:34:46 +0100334 return -EBUSY;
335 }
336 i2ccfg = inb_p(piix4_smba + i2ccfg_offset);
337 release_region(piix4_smba + i2ccfg_offset, 1);
338
339 if (i2ccfg & 1)
Jean Delvare66f8a8f2014-01-23 16:59:38 +0100340 dev_dbg(&PIIX4_dev->dev, "Using IRQ for SMBus\n");
Shane Huang87e19602009-03-28 21:34:46 +0100341 else
Jean Delvare66f8a8f2014-01-23 16:59:38 +0100342 dev_dbg(&PIIX4_dev->dev, "Using SMI# for SMBus\n");
Shane Huang87e19602009-03-28 21:34:46 +0100343
344 dev_info(&PIIX4_dev->dev,
345 "SMBus Host Controller at 0x%x, revision %d\n",
346 piix4_smba, i2ccfg >> 4);
347
Jean Delvare6befa3f2016-02-17 10:26:35 +0100348 /* 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;
351 } else {
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);
359 }
360
361 dev_info(&PIIX4_dev->dev,
362 "Using register 0x%02x for SMBus port selection\n",
363 (unsigned int)piix4_port_sel_sb800);
364
Andrew Armenia14a80862012-07-24 14:13:56 +0200365 return piix4_smba;
Shane Huang87e19602009-03-28 21:34:46 +0100366}
367
Bill Pemberton0b255e92012-11-27 15:59:38 -0500368static int piix4_setup_aux(struct pci_dev *PIIX4_dev,
369 const struct pci_device_id *id,
370 unsigned short base_reg_addr)
Andrew Armenia2a2f7402012-07-24 14:13:57 +0200371{
372 /* Set up auxiliary SMBus controllers found on some
373 * AMD chipsets e.g. SP5100 (SB700 derivative) */
374
375 unsigned short piix4_smba;
376
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");
382 return -ENODEV;
383 }
384
385 piix4_smba &= 0xfff0;
386 if (piix4_smba == 0) {
387 dev_dbg(&PIIX4_dev->dev,
388 "Auxiliary SMBus base address uninitialized\n");
389 return -ENODEV;
390 }
391
392 if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name))
393 return -ENODEV;
394
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);
398 return -EBUSY;
399 }
400
401 dev_info(&PIIX4_dev->dev,
402 "Auxiliary SMBus Host Controller at 0x%x\n",
403 piix4_smba);
404
405 return piix4_smba;
406}
407
Andrew Armeniae154bf62012-07-24 14:13:56 +0200408static int piix4_transaction(struct i2c_adapter *piix4_adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Andrew Armeniae154bf62012-07-24 14:13:56 +0200410 struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(piix4_adapter);
411 unsigned short piix4_smba = adapdata->smba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 int temp;
413 int result = 0;
414 int timeout = 0;
415
Andrew Armeniae154bf62012-07-24 14:13:56 +0200416 dev_dbg(&piix4_adapter->dev, "Transaction (pre): CNT=%02x, CMD=%02x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
418 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
419 inb_p(SMBHSTDAT1));
420
421 /* Make sure the SMBus host is ready to start transmitting */
422 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
Andrew Armeniae154bf62012-07-24 14:13:56 +0200423 dev_dbg(&piix4_adapter->dev, "SMBus busy (%02x). "
Jean Delvare541e6a02005-06-23 22:18:08 +0200424 "Resetting...\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 outb_p(temp, SMBHSTSTS);
426 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
Andrew Armeniae154bf62012-07-24 14:13:56 +0200427 dev_err(&piix4_adapter->dev, "Failed! (%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200428 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 } else {
Andrew Armeniae154bf62012-07-24 14:13:56 +0200430 dev_dbg(&piix4_adapter->dev, "Successful!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432 }
433
434 /* start the transaction by setting bit 6 */
435 outb_p(inb(SMBHSTCNT) | 0x040, SMBHSTCNT);
436
437 /* We will always wait for a fraction of a second! (See PIIX4 docs errata) */
David Milburnb1c17592008-05-11 20:37:05 +0200438 if (srvrworks_csb5_delay) /* Extra delay for SERVERWORKS_CSB5 */
439 msleep(2);
440 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 msleep(1);
David Milburnb1c17592008-05-11 20:37:05 +0200442
Roel Kluinb6a31952010-01-16 20:43:12 +0100443 while ((++timeout < MAX_TIMEOUT) &&
David Milburnb1c17592008-05-11 20:37:05 +0200444 ((temp = inb_p(SMBHSTSTS)) & 0x01))
445 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /* If the SMBus is still busy, we give up */
Roel Kluinb6a31952010-01-16 20:43:12 +0100448 if (timeout == MAX_TIMEOUT) {
Andrew Armeniae154bf62012-07-24 14:13:56 +0200449 dev_err(&piix4_adapter->dev, "SMBus Timeout!\n");
David Brownell97140342008-07-14 22:38:25 +0200450 result = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
453 if (temp & 0x10) {
David Brownell97140342008-07-14 22:38:25 +0200454 result = -EIO;
Andrew Armeniae154bf62012-07-24 14:13:56 +0200455 dev_err(&piix4_adapter->dev, "Error: Failed bus transaction\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 if (temp & 0x08) {
David Brownell97140342008-07-14 22:38:25 +0200459 result = -EIO;
Andrew Armeniae154bf62012-07-24 14:13:56 +0200460 dev_dbg(&piix4_adapter->dev, "Bus collision! SMBus may be "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 "locked until next hard reset. (sorry!)\n");
462 /* Clock stops and slave is stuck in mid-transmission */
463 }
464
465 if (temp & 0x04) {
David Brownell97140342008-07-14 22:38:25 +0200466 result = -ENXIO;
Andrew Armeniae154bf62012-07-24 14:13:56 +0200467 dev_dbg(&piix4_adapter->dev, "Error: no response!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
470 if (inb_p(SMBHSTSTS) != 0x00)
471 outb_p(inb(SMBHSTSTS), SMBHSTSTS);
472
473 if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
Andrew Armeniae154bf62012-07-24 14:13:56 +0200474 dev_err(&piix4_adapter->dev, "Failed reset at end of "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 "transaction (%02x)\n", temp);
476 }
Andrew Armeniae154bf62012-07-24 14:13:56 +0200477 dev_dbg(&piix4_adapter->dev, "Transaction (post): CNT=%02x, CMD=%02x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTCNT),
479 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
480 inb_p(SMBHSTDAT1));
481 return result;
482}
483
David Brownell97140342008-07-14 22:38:25 +0200484/* Return negative errno on error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485static 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)
488{
Andrew Armenia14a80862012-07-24 14:13:56 +0200489 struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap);
490 unsigned short piix4_smba = adapdata->smba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200492 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 case I2C_SMBUS_QUICK:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200496 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 SMBHSTADD);
498 size = PIIX4_QUICK;
499 break;
500 case I2C_SMBUS_BYTE:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200501 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 SMBHSTADD);
503 if (read_write == I2C_SMBUS_WRITE)
504 outb_p(command, SMBHSTCMD);
505 size = PIIX4_BYTE;
506 break;
507 case I2C_SMBUS_BYTE_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200508 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 SMBHSTADD);
510 outb_p(command, SMBHSTCMD);
511 if (read_write == I2C_SMBUS_WRITE)
512 outb_p(data->byte, SMBHSTDAT0);
513 size = PIIX4_BYTE_DATA;
514 break;
515 case I2C_SMBUS_WORD_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200516 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 SMBHSTADD);
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);
522 }
523 size = PIIX4_WORD_DATA;
524 break;
525 case I2C_SMBUS_BLOCK_DATA:
Jean Delvarefa63cd52008-07-14 22:38:25 +0200526 outb_p((addr << 1) | read_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 SMBHSTADD);
528 outb_p(command, SMBHSTCMD);
529 if (read_write == I2C_SMBUS_WRITE) {
530 len = data->block[0];
Jean Delvarefa63cd52008-07-14 22:38:25 +0200531 if (len == 0 || len > I2C_SMBUS_BLOCK_MAX)
532 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 outb_p(len, SMBHSTDAT0);
Wolfram Sangd7a4c762015-11-30 14:43:09 +0100534 inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 for (i = 1; i <= len; i++)
536 outb_p(data->block[i], SMBBLKDAT);
537 }
538 size = PIIX4_BLOCK_DATA;
539 break;
Jean Delvareac7fc4f2008-07-14 22:38:25 +0200540 default:
541 dev_warn(&adap->dev, "Unsupported transaction %d\n", size);
542 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544
545 outb_p((size & 0x1C) + (ENABLE_INT9 & 1), SMBHSTCNT);
546
Andrew Armeniae154bf62012-07-24 14:13:56 +0200547 status = piix4_transaction(adap);
David Brownell97140342008-07-14 22:38:25 +0200548 if (status)
549 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if ((read_write == I2C_SMBUS_WRITE) || (size == PIIX4_QUICK))
552 return 0;
553
554
555 switch (size) {
Jean Delvare3578a072008-04-29 23:11:37 +0200556 case PIIX4_BYTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 case PIIX4_BYTE_DATA:
558 data->byte = inb_p(SMBHSTDAT0);
559 break;
560 case PIIX4_WORD_DATA:
561 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
562 break;
563 case PIIX4_BLOCK_DATA:
564 data->block[0] = inb_p(SMBHSTDAT0);
Jean Delvarefa63cd52008-07-14 22:38:25 +0200565 if (data->block[0] == 0 || data->block[0] > I2C_SMBUS_BLOCK_MAX)
566 return -EPROTO;
Wolfram Sangd7a4c762015-11-30 14:43:09 +0100567 inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 for (i = 1; i <= data->block[0]; i++)
569 data->block[i] = inb_p(SMBBLKDAT);
570 break;
571 }
572 return 0;
573}
574
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100575/*
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.
579 *
580 * Note: The selected port must be returned to the initial selection to avoid
581 * problems on certain systems.
582 */
583static 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)
586{
587 struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap);
588 u8 smba_en_lo;
589 u8 port;
590 int retval;
591
Jean Delvarea28e3512016-01-22 14:12:02 +0100592 mutex_lock(&piix4_mutex_sb800);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100593
Jean Delvare6befa3f2016-02-17 10:26:35 +0100594 outb_p(piix4_port_sel_sb800, SB800_PIIX4_SMB_IDX);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100595 smba_en_lo = inb_p(SB800_PIIX4_SMB_IDX + 1);
596
597 port = adapdata->port;
598 if ((smba_en_lo & SB800_PIIX4_PORT_IDX_MASK) != (port << 1))
599 outb_p((smba_en_lo & ~SB800_PIIX4_PORT_IDX_MASK) | (port << 1),
600 SB800_PIIX4_SMB_IDX + 1);
601
602 retval = piix4_access(adap, addr, flags, read_write,
603 command, size, data);
604
605 outb_p(smba_en_lo, SB800_PIIX4_SMB_IDX + 1);
606
Jean Delvarea28e3512016-01-22 14:12:02 +0100607 mutex_unlock(&piix4_mutex_sb800);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100608
609 return retval;
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612static u32 piix4_func(struct i2c_adapter *adapter)
613{
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;
617}
618
Jean Delvare8f9082c2006-09-03 22:39:46 +0200619static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 .smbus_xfer = piix4_access,
621 .functionality = piix4_func,
622};
623
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100624static const struct i2c_algorithm piix4_smbus_algorithm_sb800 = {
625 .smbus_xfer = piix4_access_sb800,
626 .functionality = piix4_func,
627};
628
Jingoo Han392debf2013-12-03 08:11:20 +0900629static const struct pci_device_id piix4_ids[] = {
Jean Delvare9b7389c2008-01-27 18:14:51 +0100630 { 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) },
Crane Cai3806e94b2009-11-07 13:10:46 +0100637 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS) },
Vincent Wanbcb29992015-06-11 20:11:46 +0800638 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_KERNCZ_SMBUS) },
Jean Delvare9b7389c2008-01-27 18:14:51 +0100639 { 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) },
Flavio Leitner506a8b62009-03-28 21:34:46 +0100647 { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
648 PCI_DEVICE_ID_SERVERWORKS_HT1100LD) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 { 0, }
650};
651
652MODULE_DEVICE_TABLE (pci, piix4_ids);
653
Christian Fetzerca2061e2015-11-19 20:13:47 +0100654static struct i2c_adapter *piix4_main_adapters[PIIX4_MAX_ADAPTERS];
Andrew Armenia2a2f7402012-07-24 14:13:57 +0200655static struct i2c_adapter *piix4_aux_adapter;
Andrew Armeniae154bf62012-07-24 14:13:56 +0200656
Bill Pemberton0b255e92012-11-27 15:59:38 -0500657static int piix4_add_adapter(struct pci_dev *dev, unsigned short smba,
Jean Delvare83c60152016-01-25 12:17:07 +0100658 bool sb800_main, unsigned short port,
Christian Fetzer725d2e32015-11-19 20:13:49 +0100659 const char *name, struct i2c_adapter **padap)
Andrew Armeniae154bf62012-07-24 14:13:56 +0200660{
661 struct i2c_adapter *adap;
662 struct i2c_piix4_adapdata *adapdata;
663 int retval;
664
665 adap = kzalloc(sizeof(*adap), GFP_KERNEL);
666 if (adap == NULL) {
667 release_region(smba, SMBIOSIZE);
668 return -ENOMEM;
669 }
670
671 adap->owner = THIS_MODULE;
672 adap->class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
Jean Delvare83c60152016-01-25 12:17:07 +0100673 adap->algo = sb800_main ? &piix4_smbus_algorithm_sb800
674 : &smbus_algorithm;
Andrew Armeniae154bf62012-07-24 14:13:56 +0200675
676 adapdata = kzalloc(sizeof(*adapdata), GFP_KERNEL);
677 if (adapdata == NULL) {
678 kfree(adap);
679 release_region(smba, SMBIOSIZE);
680 return -ENOMEM;
681 }
682
683 adapdata->smba = smba;
Jean Delvare83c60152016-01-25 12:17:07 +0100684 adapdata->sb800_main = sb800_main;
685 adapdata->port = port;
Andrew Armeniae154bf62012-07-24 14:13:56 +0200686
687 /* set up the sysfs linkage to our parent device */
688 adap->dev.parent = &dev->dev;
689
690 snprintf(adap->name, sizeof(adap->name),
Jean Delvare52795f62016-01-27 14:40:33 +0100691 "SMBus PIIX4 adapter%s at %04x", name, smba);
Andrew Armeniae154bf62012-07-24 14:13:56 +0200692
693 i2c_set_adapdata(adap, adapdata);
694
695 retval = i2c_add_adapter(adap);
696 if (retval) {
697 dev_err(&dev->dev, "Couldn't register adapter!\n");
698 kfree(adapdata);
699 kfree(adap);
700 release_region(smba, SMBIOSIZE);
701 return retval;
702 }
703
704 *padap = adap;
705 return 0;
706}
707
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100708static int piix4_add_adapters_sb800(struct pci_dev *dev, unsigned short smba)
709{
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100710 struct i2c_piix4_adapdata *adapdata;
711 int port;
712 int retval;
713
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100714 for (port = 0; port < PIIX4_MAX_ADAPTERS; port++) {
Jean Delvare83c60152016-01-25 12:17:07 +0100715 retval = piix4_add_adapter(dev, smba, true, port,
Christian Fetzer725d2e32015-11-19 20:13:49 +0100716 piix4_main_port_names_sb800[port],
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100717 &piix4_main_adapters[port]);
718 if (retval < 0)
719 goto error;
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100720 }
721
722 return retval;
723
724error:
725 dev_err(&dev->dev,
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]);
731 kfree(adapdata);
732 kfree(piix4_main_adapters[port]);
733 piix4_main_adapters[port] = NULL;
734 }
735 }
736
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100737 return retval;
738}
739
Bill Pemberton0b255e92012-11-27 15:59:38 -0500740static int piix4_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 int retval;
Jean Delvare52795f62016-01-27 14:40:33 +0100743 bool is_sb800 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Crane Cai76b3e282009-09-18 22:45:50 +0200745 if ((dev->vendor == PCI_VENDOR_ID_ATI &&
746 dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS &&
747 dev->revision >= 0x40) ||
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100748 dev->vendor == PCI_VENDOR_ID_AMD) {
Jean Delvare52795f62016-01-27 14:40:33 +0100749 is_sb800 = true;
750
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100751 if (!request_region(SB800_PIIX4_SMB_IDX, 2, "smba_idx")) {
752 dev_err(&dev->dev,
753 "SMBus base address index region 0x%x already in use!\n",
754 SB800_PIIX4_SMB_IDX);
755 return -EBUSY;
756 }
757
Shane Huang87e19602009-03-28 21:34:46 +0100758 /* base address location etc changed in SB800 */
Rudolf Mareka94dd002013-07-14 23:17:26 +0200759 retval = piix4_setup_sb800(dev, id, 0);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100760 if (retval < 0) {
761 release_region(SB800_PIIX4_SMB_IDX, 2);
762 return retval;
763 }
764
765 /*
766 * Try to register multiplexed main SMBus adapter,
767 * give up if we can't
768 */
769 retval = piix4_add_adapters_sb800(dev, retval);
770 if (retval < 0) {
771 release_region(SB800_PIIX4_SMB_IDX, 2);
772 return retval;
773 }
774 } else {
Shane Huang87e19602009-03-28 21:34:46 +0100775 retval = piix4_setup(dev, id);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100776 if (retval < 0)
777 return retval;
Shane Huang87e19602009-03-28 21:34:46 +0100778
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100779 /* Try to register main SMBus adapter, give up if we can't */
Jean Delvare52795f62016-01-27 14:40:33 +0100780 retval = piix4_add_adapter(dev, retval, false, 0, "",
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100781 &piix4_main_adapters[0]);
782 if (retval < 0)
783 return retval;
784 }
Andrew Armenia2a2f7402012-07-24 14:13:57 +0200785
786 /* Check for auxiliary SMBus on some AMD chipsets */
Rudolf Mareka94dd002013-07-14 23:17:26 +0200787 retval = -ENODEV;
788
Andrew Armenia2a2f7402012-07-24 14:13:57 +0200789 if (dev->vendor == PCI_VENDOR_ID_ATI &&
Rudolf Mareka94dd002013-07-14 23:17:26 +0200790 dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS) {
791 if (dev->revision < 0x40) {
792 retval = piix4_setup_aux(dev, id, 0x58);
793 } else {
794 /* SB800 added aux bus too */
795 retval = piix4_setup_sb800(dev, id, 1);
Andrew Armenia2a2f7402012-07-24 14:13:57 +0200796 }
797 }
798
Rudolf Mareka94dd002013-07-14 23:17:26 +0200799 if (dev->vendor == PCI_VENDOR_ID_AMD &&
800 dev->device == PCI_DEVICE_ID_AMD_HUDSON2_SMBUS) {
801 retval = piix4_setup_sb800(dev, id, 1);
802 }
803
804 if (retval > 0) {
805 /* Try to add the aux adapter if it exists,
806 * piix4_add_adapter will clean up if this fails */
Jean Delvare83c60152016-01-25 12:17:07 +0100807 piix4_add_adapter(dev, retval, false, 0,
Jean Delvare52795f62016-01-27 14:40:33 +0100808 is_sb800 ? piix4_aux_port_name_sb800 : "",
Christian Fetzer725d2e32015-11-19 20:13:49 +0100809 &piix4_aux_adapter);
Rudolf Mareka94dd002013-07-14 23:17:26 +0200810 }
811
Andrew Armenia2a2f7402012-07-24 14:13:57 +0200812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
Bill Pemberton0b255e92012-11-27 15:59:38 -0500815static void piix4_adap_remove(struct i2c_adapter *adap)
Andrew Armenia14a80862012-07-24 14:13:56 +0200816{
817 struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap);
818
819 if (adapdata->smba) {
820 i2c_del_adapter(adap);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100821 if (adapdata->port == 0) {
822 release_region(adapdata->smba, SMBIOSIZE);
Jean Delvarea28e3512016-01-22 14:12:02 +0100823 if (adapdata->sb800_main)
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100824 release_region(SB800_PIIX4_SMB_IDX, 2);
Christian Fetzer2fee61d2015-11-19 20:13:48 +0100825 }
Andrew Armeniae154bf62012-07-24 14:13:56 +0200826 kfree(adapdata);
827 kfree(adap);
Andrew Armenia14a80862012-07-24 14:13:56 +0200828 }
829}
830
Bill Pemberton0b255e92012-11-27 15:59:38 -0500831static void piix4_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Christian Fetzerca2061e2015-11-19 20:13:47 +0100833 int port = PIIX4_MAX_ADAPTERS;
834
835 while (--port >= 0) {
836 if (piix4_main_adapters[port]) {
837 piix4_adap_remove(piix4_main_adapters[port]);
838 piix4_main_adapters[port] = NULL;
839 }
Andrew Armeniae154bf62012-07-24 14:13:56 +0200840 }
Andrew Armenia2a2f7402012-07-24 14:13:57 +0200841
842 if (piix4_aux_adapter) {
843 piix4_adap_remove(piix4_aux_adapter);
844 piix4_aux_adapter = NULL;
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
848static struct pci_driver piix4_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 .name = "piix4_smbus",
850 .id_table = piix4_ids,
851 .probe = piix4_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -0500852 .remove = piix4_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853};
854
Axel Lin56f21782012-07-24 14:13:56 +0200855module_pci_driver(piix4_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
858 "Philip Edelbrock <phil@netroedge.com>");
859MODULE_DESCRIPTION("PIIX4 SMBus driver");
860MODULE_LICENSE("GPL");