blob: 737e298668878f6b0c7d7421374248b596839668 [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>,
3 Philip Edelbrock <phil@netroedge.com>, and Mark D. Studebaker
4 <mdsxyz123@yahoo.com>
Jean Delvare84c1af42012-03-26 21:47:19 +02005 Copyright (C) 2007 - 2012 Jean Delvare <khali@linux-fr.org>
David Woodhouse0cd96eb2010-10-31 21:06:59 +01006 Copyright (C) 2010 Intel Corporation,
7 David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24/*
Jean Delvareae7b0492008-01-27 18:14:49 +010025 Supports the following Intel I/O Controller Hubs (ICH):
26
27 I/O Block I2C
28 region SMBus Block proc. block
29 Chip name PCI ID size PEC buffer call read
30 ----------------------------------------------------------------------
31 82801AA (ICH) 0x2413 16 no no no no
32 82801AB (ICH0) 0x2423 16 no no no no
33 82801BA (ICH2) 0x2443 16 no no no no
34 82801CA (ICH3) 0x2483 32 soft no no no
35 82801DB (ICH4) 0x24c3 32 hard yes no no
36 82801E (ICH5) 0x24d3 32 hard yes yes yes
37 6300ESB 0x25a4 32 hard yes yes yes
38 82801F (ICH6) 0x266a 32 hard yes yes yes
39 6310ESB/6320ESB 0x269b 32 hard yes yes yes
40 82801G (ICH7) 0x27da 32 hard yes yes yes
41 82801H (ICH8) 0x283e 32 hard yes yes yes
42 82801I (ICH9) 0x2930 32 hard yes yes yes
Seth Heasleycb04e952010-10-04 13:27:14 -070043 EP80579 (Tolapai) 0x5032 32 hard yes yes yes
Gaston, Jason Dd28dc712008-02-24 20:03:42 +010044 ICH10 0x3a30 32 hard yes yes yes
45 ICH10 0x3a60 32 hard yes yes yes
Seth Heasleycb04e952010-10-04 13:27:14 -070046 5/3400 Series (PCH) 0x3b30 32 hard yes yes yes
Seth Heasley662cda82011-03-20 14:50:53 +010047 6 Series (PCH) 0x1c22 32 hard yes yes yes
Seth Heasleye30d9852010-10-31 21:06:59 +010048 Patsburg (PCH) 0x1d22 32 hard yes yes yes
David Woodhouse55fee8d2010-10-31 21:07:00 +010049 Patsburg (PCH) IDF 0x1d70 32 hard yes yes yes
50 Patsburg (PCH) IDF 0x1d71 32 hard yes yes yes
51 Patsburg (PCH) IDF 0x1d72 32 hard yes yes yes
Seth Heasley662cda82011-03-20 14:50:53 +010052 DH89xxCC (PCH) 0x2330 32 hard yes yes yes
Seth Heasley6e2a8512011-05-24 20:58:49 +020053 Panther Point (PCH) 0x1e22 32 hard yes yes yes
Seth Heasley062737f2012-03-26 21:47:19 +020054 Lynx Point (PCH) 0x8c22 32 hard yes yes yes
James Ralston4a8f1dd2012-09-10 10:14:02 +020055 Lynx Point-LP (PCH) 0x9c22 32 hard yes yes yes
Seth Heasleyc2db409c2013-01-30 15:25:32 +000056 Avoton (SOC) 0x1f3c 32 hard yes yes yes
James Ralstona3fc0ff2013-02-14 09:15:33 +000057 Wellsburg (PCH) 0x8d22 32 hard yes yes yes
58 Wellsburg (PCH) MS 0x8d7d 32 hard yes yes yes
59 Wellsburg (PCH) MS 0x8d7e 32 hard yes yes yes
60 Wellsburg (PCH) MS 0x8d7f 32 hard yes yes yes
Seth Heasleyf39901c2013-06-19 16:59:57 -070061 Coleto Creek (PCH) 0x23b0 32 hard yes yes yes
James Ralstonafc65922013-11-04 09:29:48 -080062 Wildcat Point-LP (PCH) 0x9ca2 32 hard yes yes yes
Jean Delvareae7b0492008-01-27 18:14:49 +010063
64 Features supported by this driver:
65 Software PEC no
66 Hardware PEC yes
67 Block buffer yes
68 Block process call transaction no
Jean Delvare63420642008-01-27 18:14:50 +010069 I2C block read transaction yes (doesn't use the block buffer)
David Woodhouse55fee8d2010-10-31 21:07:00 +010070 Slave mode no
Daniel Kurtz636752b2012-07-24 14:13:58 +020071 Interrupt processing yes
Jean Delvareae7b0492008-01-27 18:14:49 +010072
73 See the file Documentation/i2c/busses/i2c-i801 for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074*/
75
Daniel Kurtz636752b2012-07-24 14:13:58 +020076#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/module.h>
78#include <linux/pci.h>
79#include <linux/kernel.h>
80#include <linux/stddef.h>
81#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/ioport.h>
83#include <linux/init.h>
84#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020085#include <linux/acpi.h>
Jean Delvare1561bfe2009-01-07 14:29:17 +010086#include <linux/io.h>
Hans de Goedefa5bfab2009-03-30 21:46:44 +020087#include <linux/dmi.h>
Ben Hutchings665a96b2011-01-10 22:11:22 +010088#include <linux/slab.h>
Daniel Kurtz636752b2012-07-24 14:13:58 +020089#include <linux/wait.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020090#include <linux/err.h>
91
Jean Delvare79e3e5b2012-10-28 21:37:01 +010092#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
93 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +020094#include <linux/gpio.h>
95#include <linux/i2c-mux-gpio.h>
96#include <linux/platform_device.h>
97#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* I801 SMBus address offsets */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100100#define SMBHSTSTS(p) (0 + (p)->smba)
101#define SMBHSTCNT(p) (2 + (p)->smba)
102#define SMBHSTCMD(p) (3 + (p)->smba)
103#define SMBHSTADD(p) (4 + (p)->smba)
104#define SMBHSTDAT0(p) (5 + (p)->smba)
105#define SMBHSTDAT1(p) (6 + (p)->smba)
106#define SMBBLKDAT(p) (7 + (p)->smba)
107#define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */
108#define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */
109#define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/* PCI Address Constants */
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200112#define SMBBAR 4
Daniel Kurtz636752b2012-07-24 14:13:58 +0200113#define SMBPCISTS 0x006
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define SMBHSTCFG 0x040
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Daniel Kurtz636752b2012-07-24 14:13:58 +0200116/* Host status bits for SMBPCISTS */
117#define SMBPCISTS_INTS 0x08
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* Host configuration bits for SMBHSTCFG */
120#define SMBHSTCFG_HST_EN 1
121#define SMBHSTCFG_SMB_SMI_EN 2
122#define SMBHSTCFG_I2C_EN 4
123
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300124/* Auxiliary control register bits, ICH4+ only */
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200125#define SMBAUXCTL_CRC 1
126#define SMBAUXCTL_E32B 2
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/* Other settings */
Jean Delvare84c1af42012-03-26 21:47:19 +0200129#define MAX_RETRIES 400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/* I801 command constants */
132#define I801_QUICK 0x00
133#define I801_BYTE 0x04
134#define I801_BYTE_DATA 0x08
135#define I801_WORD_DATA 0x0C
Jean Delvareae7b0492008-01-27 18:14:49 +0100136#define I801_PROC_CALL 0x10 /* unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define I801_BLOCK_DATA 0x14
Jean Delvare63420642008-01-27 18:14:50 +0100138#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200139
140/* I801 Host Control register bits */
141#define SMBHSTCNT_INTREN 0x01
142#define SMBHSTCNT_KILL 0x02
143#define SMBHSTCNT_LAST_BYTE 0x20
144#define SMBHSTCNT_START 0x40
145#define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200147/* I801 Hosts Status register bits */
148#define SMBHSTSTS_BYTE_DONE 0x80
149#define SMBHSTSTS_INUSE_STS 0x40
150#define SMBHSTSTS_SMBALERT_STS 0x20
151#define SMBHSTSTS_FAILED 0x10
152#define SMBHSTSTS_BUS_ERR 0x08
153#define SMBHSTSTS_DEV_ERR 0x04
154#define SMBHSTSTS_INTR 0x02
155#define SMBHSTSTS_HOST_BUSY 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Daniel Kurtz70a1cc12012-07-24 14:13:58 +0200157#define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \
158 SMBHSTSTS_DEV_ERR)
159
160#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
161 STATUS_ERROR_FLAGS)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200162
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200163/* Older devices have their ID defined in <linux/pci_ids.h> */
164#define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
165#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100166/* Patsburg also has three 'Integrated Device Function' SMBus controllers */
167#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70
168#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71
169#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72
Seth Heasley6e2a8512011-05-24 20:58:49 +0200170#define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22
Seth Heasleyc2db409c2013-01-30 15:25:32 +0000171#define PCI_DEVICE_ID_INTEL_AVOTON_SMBUS 0x1f3c
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200172#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
Seth Heasleyf39901c2013-06-19 16:59:57 -0700173#define PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS 0x23b0
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200174#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
Seth Heasley062737f2012-03-26 21:47:19 +0200175#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
James Ralstona3fc0ff2013-02-14 09:15:33 +0000176#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS 0x8d22
177#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0 0x8d7d
178#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1 0x8d7e
179#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2 0x8d7f
James Ralston4a8f1dd2012-09-10 10:14:02 +0200180#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
James Ralstonafc65922013-11-04 09:29:48 -0800181#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS 0x9ca2
David Woodhouse55fee8d2010-10-31 21:07:00 +0100182
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200183struct i801_mux_config {
184 char *gpio_chip;
185 unsigned values[3];
186 int n_values;
187 unsigned classes[3];
188 unsigned gpios[2]; /* Relative to gpio_chip->base */
189 int n_gpios;
190};
191
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100192struct i801_priv {
193 struct i2c_adapter adapter;
194 unsigned long smba;
195 unsigned char original_hstcfg;
196 struct pci_dev *pci_dev;
197 unsigned int features;
Daniel Kurtz636752b2012-07-24 14:13:58 +0200198
199 /* isr processing */
200 wait_queue_head_t waitq;
201 u8 status;
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200202
203 /* Command state used by isr for byte-by-byte block transactions */
204 u8 cmd;
205 bool is_read;
206 int count;
207 int len;
208 u8 *data;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200209
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100210#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
211 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200212 const struct i801_mux_config *mux_drvdata;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200213 struct platform_device *mux_pdev;
214#endif
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100215};
216
Jean Delvared6072f82005-09-25 16:37:04 +0200217static struct pci_driver i801_driver;
Jean Delvare369f6f42008-01-27 18:14:50 +0100218
219#define FEATURE_SMBUS_PEC (1 << 0)
220#define FEATURE_BLOCK_BUFFER (1 << 1)
221#define FEATURE_BLOCK_PROC (1 << 2)
222#define FEATURE_I2C_BLOCK_READ (1 << 3)
Daniel Kurtz636752b2012-07-24 14:13:58 +0200223#define FEATURE_IRQ (1 << 4)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200224/* Not really a feature, but it's convenient to handle it as such */
225#define FEATURE_IDF (1 << 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Jean Delvareadff6872010-05-21 18:40:54 +0200227static const char *i801_feature_names[] = {
228 "SMBus PEC",
229 "Block buffer",
230 "Block process call",
231 "I2C block read",
Daniel Kurtz636752b2012-07-24 14:13:58 +0200232 "Interrupt",
Jean Delvareadff6872010-05-21 18:40:54 +0200233};
234
235static unsigned int disable_features;
236module_param(disable_features, uint, S_IRUGO | S_IWUSR);
Jean Delvare53229342013-05-15 02:44:10 +0000237MODULE_PARM_DESC(disable_features, "Disable selected driver features:\n"
238 "\t\t 0x01 disable SMBus PEC\n"
239 "\t\t 0x02 disable the block buffer\n"
240 "\t\t 0x08 disable the I2C block read functionality\n"
241 "\t\t 0x10 don't use interrupts ");
Jean Delvareadff6872010-05-21 18:40:54 +0200242
Jean Delvarecf898dc2008-07-14 22:38:33 +0200243/* Make sure the SMBus host is ready to start transmitting.
244 Return 0 if it is, -EBUSY if it is not. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100245static int i801_check_pre(struct i801_priv *priv)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200246{
247 int status;
248
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100249 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200250 if (status & SMBHSTSTS_HOST_BUSY) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100251 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200252 return -EBUSY;
253 }
254
255 status &= STATUS_FLAGS;
256 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100257 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
Jean Delvarecf898dc2008-07-14 22:38:33 +0200258 status);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100259 outb_p(status, SMBHSTSTS(priv));
260 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200261 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100262 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200263 "Failed clearing status flags (%02x)\n",
264 status);
265 return -EBUSY;
266 }
267 }
268
269 return 0;
270}
271
Jean Delvare6cad93c2012-07-24 14:13:58 +0200272/*
273 * Convert the status register to an error code, and clear it.
274 * Note that status only contains the bits we want to clear, not the
275 * actual register value.
276 */
277static int i801_check_post(struct i801_priv *priv, int status)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200278{
279 int result = 0;
280
Daniel Kurtz636752b2012-07-24 14:13:58 +0200281 /*
282 * If the SMBus is still busy, we give up
283 * Note: This timeout condition only happens when using polling
284 * transactions. For interrupt operation, NAK/timeout is indicated by
285 * DEV_ERR.
286 */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200287 if (unlikely(status < 0)) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100288 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200289 /* try to stop the current command */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100290 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
291 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
292 SMBHSTCNT(priv));
Jean Delvare84c1af42012-03-26 21:47:19 +0200293 usleep_range(1000, 2000);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100294 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
295 SMBHSTCNT(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200296
297 /* Check if it worked */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100298 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200299 if ((status & SMBHSTSTS_HOST_BUSY) ||
300 !(status & SMBHSTSTS_FAILED))
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100301 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200302 "Failed terminating the transaction\n");
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100303 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200304 return -ETIMEDOUT;
305 }
306
307 if (status & SMBHSTSTS_FAILED) {
308 result = -EIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100309 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200310 }
311 if (status & SMBHSTSTS_DEV_ERR) {
312 result = -ENXIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100313 dev_dbg(&priv->pci_dev->dev, "No response\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200314 }
315 if (status & SMBHSTSTS_BUS_ERR) {
316 result = -EAGAIN;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100317 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200318 }
319
Jean Delvare6cad93c2012-07-24 14:13:58 +0200320 /* Clear status flags except BYTE_DONE, to be cleared by caller */
321 outb_p(status, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200322
323 return result;
324}
325
Jean Delvare6cad93c2012-07-24 14:13:58 +0200326/* Wait for BUSY being cleared and either INTR or an error flag being set */
327static int i801_wait_intr(struct i801_priv *priv)
328{
329 int timeout = 0;
330 int status;
331
332 /* We will always wait for a fraction of a second! */
333 do {
334 usleep_range(250, 500);
335 status = inb_p(SMBHSTSTS(priv));
336 } while (((status & SMBHSTSTS_HOST_BUSY) ||
337 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
338 (timeout++ < MAX_RETRIES));
339
340 if (timeout > MAX_RETRIES) {
341 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
342 return -ETIMEDOUT;
343 }
344 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
345}
346
347/* Wait for either BYTE_DONE or an error flag being set */
348static int i801_wait_byte_done(struct i801_priv *priv)
349{
350 int timeout = 0;
351 int status;
352
353 /* We will always wait for a fraction of a second! */
354 do {
355 usleep_range(250, 500);
356 status = inb_p(SMBHSTSTS(priv));
357 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
358 (timeout++ < MAX_RETRIES));
359
360 if (timeout > MAX_RETRIES) {
361 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
362 return -ETIMEDOUT;
363 }
364 return status & STATUS_ERROR_FLAGS;
365}
366
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100367static int i801_transaction(struct i801_priv *priv, int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Jean Delvare2b738092008-07-14 22:38:32 +0200369 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200370 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100372 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200373 if (result < 0)
374 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Daniel Kurtz636752b2012-07-24 14:13:58 +0200376 if (priv->features & FEATURE_IRQ) {
377 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
378 SMBHSTCNT(priv));
379 wait_event(priv->waitq, (status = priv->status));
380 priv->status = 0;
381 return i801_check_post(priv, status);
382 }
383
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200384 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
Daniel Kurtz37af8712012-07-24 14:13:58 +0200385 * SMBSCMD are passed in xact */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200386 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jean Delvare6cad93c2012-07-24 14:13:58 +0200388 status = i801_wait_intr(priv);
389 return i801_check_post(priv, status);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200390}
391
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100392static int i801_block_transaction_by_block(struct i801_priv *priv,
393 union i2c_smbus_data *data,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200394 char read_write, int hwpec)
395{
396 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200397 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200398
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100399 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200400
401 /* Use 32-byte buffer to process this transaction */
402 if (read_write == I2C_SMBUS_WRITE) {
403 len = data->block[0];
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100404 outb_p(len, SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200405 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100406 outb_p(data->block[i+1], SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200407 }
408
Daniel Kurtz37af8712012-07-24 14:13:58 +0200409 status = i801_transaction(priv, I801_BLOCK_DATA |
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200410 (hwpec ? SMBHSTCNT_PEC_EN : 0));
David Brownell97140342008-07-14 22:38:25 +0200411 if (status)
412 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200413
414 if (read_write == I2C_SMBUS_READ) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100415 len = inb_p(SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200416 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200417 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200418
419 data->block[0] = len;
420 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100421 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200422 }
423 return 0;
424}
425
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200426static void i801_isr_byte_done(struct i801_priv *priv)
427{
428 if (priv->is_read) {
429 /* For SMBus block reads, length is received with first byte */
430 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
431 (priv->count == 0)) {
432 priv->len = inb_p(SMBHSTDAT0(priv));
433 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
434 dev_err(&priv->pci_dev->dev,
435 "Illegal SMBus block read size %d\n",
436 priv->len);
437 /* FIXME: Recover */
438 priv->len = I2C_SMBUS_BLOCK_MAX;
439 } else {
440 dev_dbg(&priv->pci_dev->dev,
441 "SMBus block read size is %d\n",
442 priv->len);
443 }
444 priv->data[-1] = priv->len;
445 }
446
447 /* Read next byte */
448 if (priv->count < priv->len)
449 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
450 else
451 dev_dbg(&priv->pci_dev->dev,
452 "Discarding extra byte on block read\n");
453
454 /* Set LAST_BYTE for last byte of read transaction */
455 if (priv->count == priv->len - 1)
456 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
457 SMBHSTCNT(priv));
458 } else if (priv->count < priv->len - 1) {
459 /* Write next byte, except for IRQ after last byte */
460 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
461 }
462
463 /* Clear BYTE_DONE to continue with next byte */
464 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
465}
466
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200467/*
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200468 * There are two kinds of interrupts:
469 *
470 * 1) i801 signals transaction completion with one of these interrupts:
471 * INTR - Success
472 * DEV_ERR - Invalid command, NAK or communication timeout
473 * BUS_ERR - SMI# transaction collision
474 * FAILED - transaction was canceled due to a KILL request
475 * When any of these occur, update ->status and wake up the waitq.
476 * ->status must be cleared before kicking off the next transaction.
477 *
478 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
479 * occurs for each byte of a byte-by-byte to prepare the next byte.
Daniel Kurtz636752b2012-07-24 14:13:58 +0200480 */
481static irqreturn_t i801_isr(int irq, void *dev_id)
482{
483 struct i801_priv *priv = dev_id;
484 u16 pcists;
485 u8 status;
486
487 /* Confirm this is our interrupt */
488 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
489 if (!(pcists & SMBPCISTS_INTS))
490 return IRQ_NONE;
491
492 status = inb_p(SMBHSTSTS(priv));
493 if (status != 0x42)
494 dev_dbg(&priv->pci_dev->dev, "irq: status = %02x\n", status);
495
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200496 if (status & SMBHSTSTS_BYTE_DONE)
497 i801_isr_byte_done(priv);
498
Daniel Kurtz636752b2012-07-24 14:13:58 +0200499 /*
500 * Clear irq sources and report transaction result.
501 * ->status must be cleared before the next transaction is started.
502 */
503 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
504 if (status) {
505 outb_p(status, SMBHSTSTS(priv));
506 priv->status |= status;
507 wake_up(&priv->waitq);
508 }
509
510 return IRQ_HANDLED;
511}
512
513/*
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200514 * For "byte-by-byte" block transactions:
515 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
516 * I2C read uses cmd=I801_I2C_BLOCK_DATA
517 */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100518static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
519 union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100520 char read_write, int command,
521 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 int i, len;
524 int smbcmd;
Jean Delvare2b738092008-07-14 22:38:32 +0200525 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200526 int result;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200527
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100528 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200529 if (result < 0)
530 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200532 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100535 outb_p(len, SMBHSTDAT0(priv));
536 outb_p(data->block[1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200539 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
540 read_write == I2C_SMBUS_READ)
541 smbcmd = I801_I2C_BLOCK_DATA;
542 else
543 smbcmd = I801_BLOCK_DATA;
544
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200545 if (priv->features & FEATURE_IRQ) {
546 priv->is_read = (read_write == I2C_SMBUS_READ);
547 if (len == 1 && priv->is_read)
548 smbcmd |= SMBHSTCNT_LAST_BYTE;
549 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
550 priv->len = len;
551 priv->count = 0;
552 priv->data = &data->block[1];
553
554 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
555 wait_event(priv->waitq, (status = priv->status));
556 priv->status = 0;
557 return i801_check_post(priv, status);
558 }
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 for (i = 1; i <= len; i++) {
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200561 if (i == len && read_write == I2C_SMBUS_READ)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200562 smbcmd |= SMBHSTCNT_LAST_BYTE;
Daniel Kurtz37af8712012-07-24 14:13:58 +0200563 outb_p(smbcmd, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (i == 1)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200566 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100567 SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Jean Delvare6cad93c2012-07-24 14:13:58 +0200569 status = i801_wait_byte_done(priv);
570 if (status)
571 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Jean Delvare63420642008-01-27 18:14:50 +0100573 if (i == 1 && read_write == I2C_SMBUS_READ
574 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100575 len = inb_p(SMBHSTDAT0(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200576 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100577 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200578 "Illegal SMBus block read size %d\n",
579 len);
580 /* Recover */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100581 while (inb_p(SMBHSTSTS(priv)) &
582 SMBHSTSTS_HOST_BUSY)
583 outb_p(SMBHSTSTS_BYTE_DONE,
584 SMBHSTSTS(priv));
585 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
David Brownell97140342008-07-14 22:38:25 +0200586 return -EPROTO;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 data->block[0] = len;
589 }
590
591 /* Retrieve/store value in SMBBLKDAT */
592 if (read_write == I2C_SMBUS_READ)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100593 data->block[i] = inb_p(SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100595 outb_p(data->block[i+1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Jean Delvarecf898dc2008-07-14 22:38:33 +0200597 /* signals SMBBLKDAT ready */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200598 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200599 }
Jean Delvarecf898dc2008-07-14 22:38:33 +0200600
Jean Delvare6cad93c2012-07-24 14:13:58 +0200601 status = i801_wait_intr(priv);
602exit:
603 return i801_check_post(priv, status);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200604}
605
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100606static int i801_set_block_buffer_mode(struct i801_priv *priv)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200607{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100608 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
609 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200610 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200611 return 0;
612}
613
614/* Block transaction function */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100615static int i801_block_transaction(struct i801_priv *priv,
616 union i2c_smbus_data *data, char read_write,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200617 int command, int hwpec)
618{
619 int result = 0;
620 unsigned char hostc;
621
622 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
623 if (read_write == I2C_SMBUS_WRITE) {
624 /* set I2C_EN bit in configuration register */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100625 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
626 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200627 hostc | SMBHSTCFG_I2C_EN);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100628 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
629 dev_err(&priv->pci_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100630 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200631 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Jean Delvare63420642008-01-27 18:14:50 +0100635 if (read_write == I2C_SMBUS_WRITE
636 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200637 if (data->block[0] < 1)
638 data->block[0] = 1;
639 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
640 data->block[0] = I2C_SMBUS_BLOCK_MAX;
641 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100642 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200643 }
644
Jean Delvarec074c392010-03-13 20:56:53 +0100645 /* Experience has shown that the block buffer can only be used for
646 SMBus (not I2C) block transactions, even though the datasheet
647 doesn't mention this limitation. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100648 if ((priv->features & FEATURE_BLOCK_BUFFER)
Jean Delvarec074c392010-03-13 20:56:53 +0100649 && command != I2C_SMBUS_I2C_BLOCK_DATA
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100650 && i801_set_block_buffer_mode(priv) == 0)
651 result = i801_block_transaction_by_block(priv, data,
652 read_write, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200653 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100654 result = i801_block_transaction_byte_by_byte(priv, data,
655 read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100656 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200657
Jean Delvare63420642008-01-27 18:14:50 +0100658 if (command == I2C_SMBUS_I2C_BLOCK_DATA
659 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /* restore saved configuration register value */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100661 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663 return result;
664}
665
David Brownell97140342008-07-14 22:38:25 +0200666/* Return negative errno on error. */
Ivo Manca3fb21c62010-05-21 18:40:55 +0200667static s32 i801_access(struct i2c_adapter *adap, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 unsigned short flags, char read_write, u8 command,
Ivo Manca3fb21c62010-05-21 18:40:55 +0200669 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200671 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int block = 0;
673 int ret, xact = 0;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100674 struct i801_priv *priv = i2c_get_adapdata(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100676 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200677 && size != I2C_SMBUS_QUICK
678 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 switch (size) {
681 case I2C_SMBUS_QUICK:
682 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100683 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 xact = I801_QUICK;
685 break;
686 case I2C_SMBUS_BYTE:
687 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100688 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100690 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 xact = I801_BYTE;
692 break;
693 case I2C_SMBUS_BYTE_DATA:
694 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100695 SMBHSTADD(priv));
696 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100698 outb_p(data->byte, SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 xact = I801_BYTE_DATA;
700 break;
701 case I2C_SMBUS_WORD_DATA:
702 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100703 SMBHSTADD(priv));
704 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100706 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
707 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 xact = I801_WORD_DATA;
710 break;
711 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100713 SMBHSTADD(priv));
714 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 block = 1;
716 break;
Jean Delvare63420642008-01-27 18:14:50 +0100717 case I2C_SMBUS_I2C_BLOCK_DATA:
718 /* NB: page 240 of ICH5 datasheet shows that the R/#W
719 * bit should be cleared here, even when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100720 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100721 if (read_write == I2C_SMBUS_READ) {
722 /* NB: page 240 of ICH5 datasheet also shows
723 * that DATA1 is the cmd field when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100724 outb_p(command, SMBHSTDAT1(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100725 } else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100726 outb_p(command, SMBHSTCMD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100727 block = 1;
728 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100730 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
731 size);
David Brownell97140342008-07-14 22:38:25 +0200732 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200735 if (hwpec) /* enable/disable hardware PEC */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100736 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200737 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100738 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
739 SMBAUXCTL(priv));
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200740
Ivo Manca3fb21c62010-05-21 18:40:55 +0200741 if (block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100742 ret = i801_block_transaction(priv, data, read_write, size,
743 hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200744 else
Daniel Kurtz37af8712012-07-24 14:13:58 +0200745 ret = i801_transaction(priv, xact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Jean Delvarec79cfba2006-04-20 02:43:18 -0700747 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200748 time, so we forcibly disable it after every transaction. Turn off
749 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100750 if (hwpec || block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100751 outb_p(inb_p(SMBAUXCTL(priv)) &
752 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarec79cfba2006-04-20 02:43:18 -0700753
Ivo Manca3fb21c62010-05-21 18:40:55 +0200754 if (block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return ret;
Ivo Manca3fb21c62010-05-21 18:40:55 +0200756 if (ret)
David Brownell97140342008-07-14 22:38:25 +0200757 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
759 return 0;
760
761 switch (xact & 0x7f) {
762 case I801_BYTE: /* Result put in SMBHSTDAT0 */
763 case I801_BYTE_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100764 data->byte = inb_p(SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 break;
766 case I801_WORD_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100767 data->word = inb_p(SMBHSTDAT0(priv)) +
768 (inb_p(SMBHSTDAT1(priv)) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 break;
770 }
771 return 0;
772}
773
774
775static u32 i801_func(struct i2c_adapter *adapter)
776{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100777 struct i801_priv *priv = i2c_get_adapdata(adapter);
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100780 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
781 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100782 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
783 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
Jean Delvare63420642008-01-27 18:14:50 +0100784 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Jean Delvare8f9082c2006-09-03 22:39:46 +0200787static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 .smbus_xfer = i801_access,
789 .functionality = i801_func,
790};
791
Axel Lin3527bd52012-01-12 20:32:04 +0100792static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
794 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
795 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
796 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
797 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
798 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
799 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
800 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
801 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700802 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800803 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800804 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700805 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100806 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
807 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700808 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
809 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
Seth Heasleye30d9852010-10-31 21:06:59 +0100810 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
David Woodhouse55fee8d2010-10-31 21:07:00 +0100811 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
812 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
813 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
Seth Heasley662cda82011-03-20 14:50:53 +0100814 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
Seth Heasley6e2a8512011-05-24 20:58:49 +0200815 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
Seth Heasley062737f2012-03-26 21:47:19 +0200816 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
James Ralston4a8f1dd2012-09-10 10:14:02 +0200817 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
Seth Heasleyc2db409c2013-01-30 15:25:32 +0000818 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMBUS) },
James Ralstona3fc0ff2013-02-14 09:15:33 +0000819 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS) },
820 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0) },
821 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1) },
822 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2) },
Seth Heasleyf39901c2013-06-19 16:59:57 -0700823 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS) },
James Ralstonafc65922013-11-04 09:29:48 -0800824 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 { 0, }
826};
827
Ivo Manca3fb21c62010-05-21 18:40:55 +0200828MODULE_DEVICE_TABLE(pci, i801_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Jean Delvare8eacfce2011-05-24 20:58:49 +0200830#if defined CONFIG_X86 && defined CONFIG_DMI
Jean Delvare1561bfe2009-01-07 14:29:17 +0100831static unsigned char apanel_addr;
832
833/* Scan the system ROM for the signature "FJKEYINF" */
834static __init const void __iomem *bios_signature(const void __iomem *bios)
835{
836 ssize_t offset;
837 const unsigned char signature[] = "FJKEYINF";
838
839 for (offset = 0; offset < 0x10000; offset += 0x10) {
840 if (check_signature(bios + offset, signature,
841 sizeof(signature)-1))
842 return bios + offset;
843 }
844 return NULL;
845}
846
847static void __init input_apanel_init(void)
848{
849 void __iomem *bios;
850 const void __iomem *p;
851
852 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
853 p = bios_signature(bios);
854 if (p) {
855 /* just use the first address */
856 apanel_addr = readb(p + 8 + 3) >> 1;
857 }
858 iounmap(bios);
859}
Jean Delvare1561bfe2009-01-07 14:29:17 +0100860
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200861struct dmi_onboard_device_info {
862 const char *name;
863 u8 type;
864 unsigned short i2c_addr;
865 const char *i2c_type;
866};
867
Bill Pemberton0b255e92012-11-27 15:59:38 -0500868static const struct dmi_onboard_device_info dmi_devices[] = {
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200869 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
870 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
871 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
872};
873
Bill Pemberton0b255e92012-11-27 15:59:38 -0500874static void dmi_check_onboard_device(u8 type, const char *name,
875 struct i2c_adapter *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200876{
877 int i;
878 struct i2c_board_info info;
879
880 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
881 /* & ~0x80, ignore enabled/disabled bit */
882 if ((type & ~0x80) != dmi_devices[i].type)
883 continue;
Jean Delvarefaabd472010-07-09 16:22:51 +0200884 if (strcasecmp(name, dmi_devices[i].name))
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200885 continue;
886
887 memset(&info, 0, sizeof(struct i2c_board_info));
888 info.addr = dmi_devices[i].i2c_addr;
889 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
890 i2c_new_device(adap, &info);
891 break;
892 }
893}
894
895/* We use our own function to check for onboard devices instead of
896 dmi_find_device() as some buggy BIOS's have the devices we are interested
897 in marked as disabled */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500898static void dmi_check_onboard_devices(const struct dmi_header *dm, void *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200899{
900 int i, count;
901
902 if (dm->type != 10)
903 return;
904
905 count = (dm->length - sizeof(struct dmi_header)) / 2;
906 for (i = 0; i < count; i++) {
907 const u8 *d = (char *)(dm + 1) + (i * 2);
908 const char *name = ((char *) dm) + dm->length;
909 u8 type = d[0];
910 u8 s = d[1];
911
912 if (!s)
913 continue;
914 s--;
915 while (s > 0 && name[0]) {
916 name += strlen(name) + 1;
917 s--;
918 }
919 if (name[0] == 0) /* Bogus string reference */
920 continue;
921
922 dmi_check_onboard_device(type, name, adap);
923 }
924}
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200925
Jean Delvaree7198fb2011-05-24 20:58:49 +0200926/* Register optional slaves */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500927static void i801_probe_optional_slaves(struct i801_priv *priv)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200928{
929 /* Only register slaves on main SMBus channel */
930 if (priv->features & FEATURE_IDF)
931 return;
932
Jean Delvaree7198fb2011-05-24 20:58:49 +0200933 if (apanel_addr) {
934 struct i2c_board_info info;
935
936 memset(&info, 0, sizeof(struct i2c_board_info));
937 info.addr = apanel_addr;
938 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
939 i2c_new_device(&priv->adapter, &info);
940 }
Jean Delvare8eacfce2011-05-24 20:58:49 +0200941
Jean Delvaree7198fb2011-05-24 20:58:49 +0200942 if (dmi_name_in_vendors("FUJITSU"))
943 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
Jean Delvaree7198fb2011-05-24 20:58:49 +0200944}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200945#else
946static void __init input_apanel_init(void) {}
Bill Pemberton0b255e92012-11-27 15:59:38 -0500947static void i801_probe_optional_slaves(struct i801_priv *priv) {}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200948#endif /* CONFIG_X86 && CONFIG_DMI */
Jean Delvaree7198fb2011-05-24 20:58:49 +0200949
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100950#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
951 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200952static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
953 .gpio_chip = "gpio_ich",
954 .values = { 0x02, 0x03 },
955 .n_values = 2,
956 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
957 .gpios = { 52, 53 },
958 .n_gpios = 2,
959};
960
961static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
962 .gpio_chip = "gpio_ich",
963 .values = { 0x02, 0x03, 0x01 },
964 .n_values = 3,
965 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
966 .gpios = { 52, 53 },
967 .n_gpios = 2,
968};
969
Bill Pemberton0b255e92012-11-27 15:59:38 -0500970static const struct dmi_system_id mux_dmi_table[] = {
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200971 {
972 .matches = {
973 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
974 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
975 },
976 .driver_data = &i801_mux_config_asus_z8_d12,
977 },
978 {
979 .matches = {
980 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
981 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"),
982 },
983 .driver_data = &i801_mux_config_asus_z8_d12,
984 },
985 {
986 .matches = {
987 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
988 DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"),
989 },
990 .driver_data = &i801_mux_config_asus_z8_d12,
991 },
992 {
993 .matches = {
994 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
995 DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"),
996 },
997 .driver_data = &i801_mux_config_asus_z8_d12,
998 },
999 {
1000 .matches = {
1001 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1002 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
1003 },
1004 .driver_data = &i801_mux_config_asus_z8_d12,
1005 },
1006 {
1007 .matches = {
1008 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1009 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
1010 },
1011 .driver_data = &i801_mux_config_asus_z8_d12,
1012 },
1013 {
1014 .matches = {
1015 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1016 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
1017 },
1018 .driver_data = &i801_mux_config_asus_z8_d18,
1019 },
1020 {
1021 .matches = {
1022 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1023 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
1024 },
1025 .driver_data = &i801_mux_config_asus_z8_d18,
1026 },
1027 {
1028 .matches = {
1029 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1030 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1031 },
1032 .driver_data = &i801_mux_config_asus_z8_d12,
1033 },
1034 { }
1035};
1036
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001037/* Setup multiplexing if needed */
Bill Pemberton0b255e92012-11-27 15:59:38 -05001038static int i801_add_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001039{
1040 struct device *dev = &priv->adapter.dev;
1041 const struct i801_mux_config *mux_config;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001042 struct i2c_mux_gpio_platform_data gpio_data;
Jean Delvaref82b8622012-10-05 22:23:54 +02001043 int err;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001044
1045 if (!priv->mux_drvdata)
1046 return 0;
1047 mux_config = priv->mux_drvdata;
1048
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001049 /* Prepare the platform data */
1050 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1051 gpio_data.parent = priv->adapter.nr;
1052 gpio_data.values = mux_config->values;
1053 gpio_data.n_values = mux_config->n_values;
1054 gpio_data.classes = mux_config->classes;
Jean Delvaref82b8622012-10-05 22:23:54 +02001055 gpio_data.gpio_chip = mux_config->gpio_chip;
1056 gpio_data.gpios = mux_config->gpios;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001057 gpio_data.n_gpios = mux_config->n_gpios;
1058 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1059
1060 /* Register the mux device */
1061 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
Jean Delvaref82b8622012-10-05 22:23:54 +02001062 PLATFORM_DEVID_AUTO, &gpio_data,
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001063 sizeof(struct i2c_mux_gpio_platform_data));
1064 if (IS_ERR(priv->mux_pdev)) {
1065 err = PTR_ERR(priv->mux_pdev);
1066 priv->mux_pdev = NULL;
1067 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1068 return err;
1069 }
1070
1071 return 0;
1072}
1073
Bill Pemberton0b255e92012-11-27 15:59:38 -05001074static void i801_del_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001075{
1076 if (priv->mux_pdev)
1077 platform_device_unregister(priv->mux_pdev);
1078}
1079
Bill Pemberton0b255e92012-11-27 15:59:38 -05001080static unsigned int i801_get_adapter_class(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001081{
1082 const struct dmi_system_id *id;
1083 const struct i801_mux_config *mux_config;
1084 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1085 int i;
1086
1087 id = dmi_first_match(mux_dmi_table);
1088 if (id) {
Jean Delvare28901f52012-10-28 21:37:01 +01001089 /* Remove branch classes from trunk */
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001090 mux_config = id->driver_data;
1091 for (i = 0; i < mux_config->n_values; i++)
1092 class &= ~mux_config->classes[i];
1093
1094 /* Remember for later */
1095 priv->mux_drvdata = mux_config;
1096 }
1097
1098 return class;
1099}
1100#else
1101static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1102static inline void i801_del_mux(struct i801_priv *priv) { }
1103
1104static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1105{
1106 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1107}
1108#endif
1109
Bill Pemberton0b255e92012-11-27 15:59:38 -05001110static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001112 unsigned char temp;
Jean Delvareadff6872010-05-21 18:40:54 +02001113 int err, i;
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001114 struct i801_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001116 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1117 if (!priv)
1118 return -ENOMEM;
1119
1120 i2c_set_adapdata(&priv->adapter, priv);
1121 priv->adapter.owner = THIS_MODULE;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001122 priv->adapter.class = i801_get_adapter_class(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001123 priv->adapter.algo = &smbus_algorithm;
1124
1125 priv->pci_dev = dev;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001126 switch (dev->device) {
Jean Delvaree7198fb2011-05-24 20:58:49 +02001127 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1128 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1129 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
James Ralstona3fc0ff2013-02-14 09:15:33 +00001130 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0:
1131 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1:
1132 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2:
Jean Delvaree7198fb2011-05-24 20:58:49 +02001133 priv->features |= FEATURE_IDF;
1134 /* fall through */
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001135 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001136 priv->features |= FEATURE_I2C_BLOCK_READ;
Jean Delvare6676a842012-12-16 21:11:55 +01001137 priv->features |= FEATURE_IRQ;
Jean Delvare63420642008-01-27 18:14:50 +01001138 /* fall through */
1139 case PCI_DEVICE_ID_INTEL_82801DB_3:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001140 priv->features |= FEATURE_SMBUS_PEC;
1141 priv->features |= FEATURE_BLOCK_BUFFER;
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001142 /* fall through */
1143 case PCI_DEVICE_ID_INTEL_82801CA_3:
1144 case PCI_DEVICE_ID_INTEL_82801BA_2:
1145 case PCI_DEVICE_ID_INTEL_82801AB_3:
1146 case PCI_DEVICE_ID_INTEL_82801AA_3:
Jean Delvare250d1bd2006-12-10 21:21:33 +01001147 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001148 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001149
Jean Delvareadff6872010-05-21 18:40:54 +02001150 /* Disable features on user request */
1151 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001152 if (priv->features & disable_features & (1 << i))
Jean Delvareadff6872010-05-21 18:40:54 +02001153 dev_notice(&dev->dev, "%s disabled by user\n",
1154 i801_feature_names[i]);
1155 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001156 priv->features &= ~disable_features;
Jean Delvareadff6872010-05-21 18:40:54 +02001157
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001158 err = pci_enable_device(dev);
1159 if (err) {
1160 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1161 err);
1162 goto exit;
1163 }
1164
1165 /* Determine the address of the SMBus area */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001166 priv->smba = pci_resource_start(dev, SMBBAR);
1167 if (!priv->smba) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001168 dev_err(&dev->dev, "SMBus base address uninitialized, "
1169 "upgrade BIOS\n");
1170 err = -ENODEV;
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001171 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001172 }
1173
Jean Delvare54fb4a052008-07-14 22:38:33 +02001174 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
Jean Delvare18669ea2009-10-04 22:53:45 +02001175 if (err) {
1176 err = -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +02001177 goto exit;
Jean Delvare18669ea2009-10-04 22:53:45 +02001178 }
Jean Delvare54fb4a052008-07-14 22:38:33 +02001179
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001180 err = pci_request_region(dev, SMBBAR, i801_driver.name);
1181 if (err) {
1182 dev_err(&dev->dev, "Failed to request SMBus region "
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001183 "0x%lx-0x%Lx\n", priv->smba,
Andrew Morton598736c2006-06-30 01:56:20 -07001184 (unsigned long long)pci_resource_end(dev, SMBBAR));
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001185 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001186 }
1187
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001188 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1189 priv->original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001190 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1191 if (!(temp & SMBHSTCFG_HST_EN)) {
1192 dev_info(&dev->dev, "Enabling SMBus device\n");
1193 temp |= SMBHSTCFG_HST_EN;
1194 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001195 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001196
Daniel Kurtz636752b2012-07-24 14:13:58 +02001197 if (temp & SMBHSTCFG_SMB_SMI_EN) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001198 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001199 /* Disable SMBus interrupt feature if SMBus using SMI# */
1200 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jean Delvarea0921b62008-01-27 18:14:50 +01001203 /* Clear special mode bits */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001204 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1205 outb_p(inb_p(SMBAUXCTL(priv)) &
1206 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarea0921b62008-01-27 18:14:50 +01001207
Daniel Kurtz636752b2012-07-24 14:13:58 +02001208 if (priv->features & FEATURE_IRQ) {
1209 init_waitqueue_head(&priv->waitq);
1210
1211 err = request_irq(dev->irq, i801_isr, IRQF_SHARED,
1212 i801_driver.name, priv);
1213 if (err) {
1214 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1215 dev->irq, err);
1216 goto exit_release;
1217 }
Jean Delvare29b60852012-07-24 14:13:59 +02001218 dev_info(&dev->dev, "SMBus using PCI Interrupt\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001219 }
1220
Robert P. J. Day405ae7d2007-02-17 19:13:42 +01001221 /* set up the sysfs linkage to our parent device */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001222 priv->adapter.dev.parent = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Jean Delvare7e2193a2009-12-06 17:06:27 +01001224 /* Retry up to 3 times on lost arbitration */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001225 priv->adapter.retries = 3;
Jean Delvare7e2193a2009-12-06 17:06:27 +01001226
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001227 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1228 "SMBus I801 adapter at %04lx", priv->smba);
1229 err = i2c_add_adapter(&priv->adapter);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001230 if (err) {
1231 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001232 goto exit_free_irq;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001233 }
Jean Delvare1561bfe2009-01-07 14:29:17 +01001234
Jean Delvaree7198fb2011-05-24 20:58:49 +02001235 i801_probe_optional_slaves(priv);
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001236 /* We ignore errors - multiplexing is optional */
1237 i801_add_mux(priv);
Jean Delvare1561bfe2009-01-07 14:29:17 +01001238
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001239 pci_set_drvdata(dev, priv);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001240
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001241 return 0;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001242
Daniel Kurtz636752b2012-07-24 14:13:58 +02001243exit_free_irq:
1244 if (priv->features & FEATURE_IRQ)
1245 free_irq(dev->irq, priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001246exit_release:
1247 pci_release_region(dev, SMBBAR);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001248exit:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001249 kfree(priv);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001250 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
Bill Pemberton0b255e92012-11-27 15:59:38 -05001253static void i801_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001255 struct i801_priv *priv = pci_get_drvdata(dev);
1256
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001257 i801_del_mux(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001258 i2c_del_adapter(&priv->adapter);
1259 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001260
1261 if (priv->features & FEATURE_IRQ)
1262 free_irq(dev->irq, priv);
Jean Delvare6dcc19d2006-06-12 21:53:02 +02001263 pci_release_region(dev, SMBBAR);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001264
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001265 kfree(priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001266 /*
1267 * do not call pci_disable_device(dev) since it can cause hard hangs on
1268 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Jean Delvarea5aaea32007-03-22 19:49:01 +01001272#ifdef CONFIG_PM
1273static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
1274{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001275 struct i801_priv *priv = pci_get_drvdata(dev);
1276
Jean Delvarea5aaea32007-03-22 19:49:01 +01001277 pci_save_state(dev);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001278 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Jean Delvarea5aaea32007-03-22 19:49:01 +01001279 pci_set_power_state(dev, pci_choose_state(dev, mesg));
1280 return 0;
1281}
1282
1283static int i801_resume(struct pci_dev *dev)
1284{
1285 pci_set_power_state(dev, PCI_D0);
1286 pci_restore_state(dev);
1287 return pci_enable_device(dev);
1288}
1289#else
1290#define i801_suspend NULL
1291#define i801_resume NULL
1292#endif
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 .name = "i801_smbus",
1296 .id_table = i801_ids,
1297 .probe = i801_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -05001298 .remove = i801_remove,
Jean Delvarea5aaea32007-03-22 19:49:01 +01001299 .suspend = i801_suspend,
1300 .resume = i801_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301};
1302
1303static int __init i2c_i801_init(void)
1304{
Jean Delvare6aa14642011-05-24 20:58:49 +02001305 if (dmi_name_in_vendors("FUJITSU"))
1306 input_apanel_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return pci_register_driver(&i801_driver);
1308}
1309
1310static void __exit i2c_i801_exit(void)
1311{
1312 pci_unregister_driver(&i801_driver);
1313}
1314
Jean Delvare63420642008-01-27 18:14:50 +01001315MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
1316 "Jean Delvare <khali@linux-fr.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317MODULE_DESCRIPTION("I801 SMBus driver");
1318MODULE_LICENSE("GPL");
1319
1320module_init(i2c_i801_init);
1321module_exit(i2c_i801_exit);