blob: 6abc00d59881c921e14ab460f8bb477995c4ea44 [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
Jean Delvareae7b0492008-01-27 18:14:49 +010056
57 Features supported by this driver:
58 Software PEC no
59 Hardware PEC yes
60 Block buffer yes
61 Block process call transaction no
Jean Delvare63420642008-01-27 18:14:50 +010062 I2C block read transaction yes (doesn't use the block buffer)
David Woodhouse55fee8d2010-10-31 21:07:00 +010063 Slave mode no
Daniel Kurtz636752b2012-07-24 14:13:58 +020064 Interrupt processing yes
Jean Delvareae7b0492008-01-27 18:14:49 +010065
66 See the file Documentation/i2c/busses/i2c-i801 for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067*/
68
Daniel Kurtz636752b2012-07-24 14:13:58 +020069#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <linux/module.h>
71#include <linux/pci.h>
72#include <linux/kernel.h>
73#include <linux/stddef.h>
74#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/ioport.h>
76#include <linux/init.h>
77#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020078#include <linux/acpi.h>
Jean Delvare1561bfe2009-01-07 14:29:17 +010079#include <linux/io.h>
Hans de Goedefa5bfab2009-03-30 21:46:44 +020080#include <linux/dmi.h>
Ben Hutchings665a96b2011-01-10 22:11:22 +010081#include <linux/slab.h>
Daniel Kurtz636752b2012-07-24 14:13:58 +020082#include <linux/wait.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020083#include <linux/err.h>
84
Jean Delvare79e3e5b2012-10-28 21:37:01 +010085#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
86 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +020087#include <linux/gpio.h>
88#include <linux/i2c-mux-gpio.h>
89#include <linux/platform_device.h>
90#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* I801 SMBus address offsets */
David Woodhouse0cd96eb2010-10-31 21:06:59 +010093#define SMBHSTSTS(p) (0 + (p)->smba)
94#define SMBHSTCNT(p) (2 + (p)->smba)
95#define SMBHSTCMD(p) (3 + (p)->smba)
96#define SMBHSTADD(p) (4 + (p)->smba)
97#define SMBHSTDAT0(p) (5 + (p)->smba)
98#define SMBHSTDAT1(p) (6 + (p)->smba)
99#define SMBBLKDAT(p) (7 + (p)->smba)
100#define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */
101#define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */
102#define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/* PCI Address Constants */
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200105#define SMBBAR 4
Daniel Kurtz636752b2012-07-24 14:13:58 +0200106#define SMBPCISTS 0x006
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define SMBHSTCFG 0x040
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Daniel Kurtz636752b2012-07-24 14:13:58 +0200109/* Host status bits for SMBPCISTS */
110#define SMBPCISTS_INTS 0x08
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* Host configuration bits for SMBHSTCFG */
113#define SMBHSTCFG_HST_EN 1
114#define SMBHSTCFG_SMB_SMI_EN 2
115#define SMBHSTCFG_I2C_EN 4
116
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300117/* Auxiliary control register bits, ICH4+ only */
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200118#define SMBAUXCTL_CRC 1
119#define SMBAUXCTL_E32B 2
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* Other settings */
Jean Delvare84c1af42012-03-26 21:47:19 +0200122#define MAX_RETRIES 400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/* I801 command constants */
125#define I801_QUICK 0x00
126#define I801_BYTE 0x04
127#define I801_BYTE_DATA 0x08
128#define I801_WORD_DATA 0x0C
Jean Delvareae7b0492008-01-27 18:14:49 +0100129#define I801_PROC_CALL 0x10 /* unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define I801_BLOCK_DATA 0x14
Jean Delvare63420642008-01-27 18:14:50 +0100131#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200132
133/* I801 Host Control register bits */
134#define SMBHSTCNT_INTREN 0x01
135#define SMBHSTCNT_KILL 0x02
136#define SMBHSTCNT_LAST_BYTE 0x20
137#define SMBHSTCNT_START 0x40
138#define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200140/* I801 Hosts Status register bits */
141#define SMBHSTSTS_BYTE_DONE 0x80
142#define SMBHSTSTS_INUSE_STS 0x40
143#define SMBHSTSTS_SMBALERT_STS 0x20
144#define SMBHSTSTS_FAILED 0x10
145#define SMBHSTSTS_BUS_ERR 0x08
146#define SMBHSTSTS_DEV_ERR 0x04
147#define SMBHSTSTS_INTR 0x02
148#define SMBHSTSTS_HOST_BUSY 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Daniel Kurtz70a1cc12012-07-24 14:13:58 +0200150#define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \
151 SMBHSTSTS_DEV_ERR)
152
153#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
154 STATUS_ERROR_FLAGS)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200155
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200156/* Older devices have their ID defined in <linux/pci_ids.h> */
157#define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
158#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100159/* Patsburg also has three 'Integrated Device Function' SMBus controllers */
160#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70
161#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71
162#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72
Seth Heasley6e2a8512011-05-24 20:58:49 +0200163#define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200164#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
165#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
Seth Heasley062737f2012-03-26 21:47:19 +0200166#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
James Ralston4a8f1dd2012-09-10 10:14:02 +0200167#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100168
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200169struct i801_mux_config {
170 char *gpio_chip;
171 unsigned values[3];
172 int n_values;
173 unsigned classes[3];
174 unsigned gpios[2]; /* Relative to gpio_chip->base */
175 int n_gpios;
176};
177
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100178struct i801_priv {
179 struct i2c_adapter adapter;
180 unsigned long smba;
181 unsigned char original_hstcfg;
182 struct pci_dev *pci_dev;
183 unsigned int features;
Daniel Kurtz636752b2012-07-24 14:13:58 +0200184
185 /* isr processing */
186 wait_queue_head_t waitq;
187 u8 status;
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200188
189 /* Command state used by isr for byte-by-byte block transactions */
190 u8 cmd;
191 bool is_read;
192 int count;
193 int len;
194 u8 *data;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200195
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100196#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
197 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200198 const struct i801_mux_config *mux_drvdata;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200199 struct platform_device *mux_pdev;
200#endif
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100201};
202
Jean Delvared6072f82005-09-25 16:37:04 +0200203static struct pci_driver i801_driver;
Jean Delvare369f6f42008-01-27 18:14:50 +0100204
205#define FEATURE_SMBUS_PEC (1 << 0)
206#define FEATURE_BLOCK_BUFFER (1 << 1)
207#define FEATURE_BLOCK_PROC (1 << 2)
208#define FEATURE_I2C_BLOCK_READ (1 << 3)
Daniel Kurtz636752b2012-07-24 14:13:58 +0200209#define FEATURE_IRQ (1 << 4)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200210/* Not really a feature, but it's convenient to handle it as such */
211#define FEATURE_IDF (1 << 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Jean Delvareadff6872010-05-21 18:40:54 +0200213static const char *i801_feature_names[] = {
214 "SMBus PEC",
215 "Block buffer",
216 "Block process call",
217 "I2C block read",
Daniel Kurtz636752b2012-07-24 14:13:58 +0200218 "Interrupt",
Jean Delvareadff6872010-05-21 18:40:54 +0200219};
220
221static unsigned int disable_features;
222module_param(disable_features, uint, S_IRUGO | S_IWUSR);
223MODULE_PARM_DESC(disable_features, "Disable selected driver features");
224
Jean Delvarecf898dc2008-07-14 22:38:33 +0200225/* Make sure the SMBus host is ready to start transmitting.
226 Return 0 if it is, -EBUSY if it is not. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100227static int i801_check_pre(struct i801_priv *priv)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200228{
229 int status;
230
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100231 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200232 if (status & SMBHSTSTS_HOST_BUSY) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100233 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200234 return -EBUSY;
235 }
236
237 status &= STATUS_FLAGS;
238 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100239 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
Jean Delvarecf898dc2008-07-14 22:38:33 +0200240 status);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100241 outb_p(status, SMBHSTSTS(priv));
242 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200243 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100244 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200245 "Failed clearing status flags (%02x)\n",
246 status);
247 return -EBUSY;
248 }
249 }
250
251 return 0;
252}
253
Jean Delvare6cad93c2012-07-24 14:13:58 +0200254/*
255 * Convert the status register to an error code, and clear it.
256 * Note that status only contains the bits we want to clear, not the
257 * actual register value.
258 */
259static int i801_check_post(struct i801_priv *priv, int status)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200260{
261 int result = 0;
262
Daniel Kurtz636752b2012-07-24 14:13:58 +0200263 /*
264 * If the SMBus is still busy, we give up
265 * Note: This timeout condition only happens when using polling
266 * transactions. For interrupt operation, NAK/timeout is indicated by
267 * DEV_ERR.
268 */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200269 if (unlikely(status < 0)) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100270 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200271 /* try to stop the current command */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100272 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
273 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
274 SMBHSTCNT(priv));
Jean Delvare84c1af42012-03-26 21:47:19 +0200275 usleep_range(1000, 2000);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100276 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
277 SMBHSTCNT(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200278
279 /* Check if it worked */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100280 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200281 if ((status & SMBHSTSTS_HOST_BUSY) ||
282 !(status & SMBHSTSTS_FAILED))
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100283 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200284 "Failed terminating the transaction\n");
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100285 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200286 return -ETIMEDOUT;
287 }
288
289 if (status & SMBHSTSTS_FAILED) {
290 result = -EIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100291 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200292 }
293 if (status & SMBHSTSTS_DEV_ERR) {
294 result = -ENXIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100295 dev_dbg(&priv->pci_dev->dev, "No response\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200296 }
297 if (status & SMBHSTSTS_BUS_ERR) {
298 result = -EAGAIN;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100299 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200300 }
301
Jean Delvare6cad93c2012-07-24 14:13:58 +0200302 /* Clear status flags except BYTE_DONE, to be cleared by caller */
303 outb_p(status, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200304
305 return result;
306}
307
Jean Delvare6cad93c2012-07-24 14:13:58 +0200308/* Wait for BUSY being cleared and either INTR or an error flag being set */
309static int i801_wait_intr(struct i801_priv *priv)
310{
311 int timeout = 0;
312 int status;
313
314 /* We will always wait for a fraction of a second! */
315 do {
316 usleep_range(250, 500);
317 status = inb_p(SMBHSTSTS(priv));
318 } while (((status & SMBHSTSTS_HOST_BUSY) ||
319 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
320 (timeout++ < MAX_RETRIES));
321
322 if (timeout > MAX_RETRIES) {
323 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
324 return -ETIMEDOUT;
325 }
326 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
327}
328
329/* Wait for either BYTE_DONE or an error flag being set */
330static int i801_wait_byte_done(struct i801_priv *priv)
331{
332 int timeout = 0;
333 int status;
334
335 /* We will always wait for a fraction of a second! */
336 do {
337 usleep_range(250, 500);
338 status = inb_p(SMBHSTSTS(priv));
339 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
340 (timeout++ < MAX_RETRIES));
341
342 if (timeout > MAX_RETRIES) {
343 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
344 return -ETIMEDOUT;
345 }
346 return status & STATUS_ERROR_FLAGS;
347}
348
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100349static int i801_transaction(struct i801_priv *priv, int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Jean Delvare2b738092008-07-14 22:38:32 +0200351 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200352 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100354 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200355 if (result < 0)
356 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Daniel Kurtz636752b2012-07-24 14:13:58 +0200358 if (priv->features & FEATURE_IRQ) {
359 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
360 SMBHSTCNT(priv));
361 wait_event(priv->waitq, (status = priv->status));
362 priv->status = 0;
363 return i801_check_post(priv, status);
364 }
365
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200366 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
Daniel Kurtz37af8712012-07-24 14:13:58 +0200367 * SMBSCMD are passed in xact */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200368 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Jean Delvare6cad93c2012-07-24 14:13:58 +0200370 status = i801_wait_intr(priv);
371 return i801_check_post(priv, status);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200372}
373
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100374static int i801_block_transaction_by_block(struct i801_priv *priv,
375 union i2c_smbus_data *data,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200376 char read_write, int hwpec)
377{
378 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200379 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200380
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100381 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200382
383 /* Use 32-byte buffer to process this transaction */
384 if (read_write == I2C_SMBUS_WRITE) {
385 len = data->block[0];
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100386 outb_p(len, SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200387 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100388 outb_p(data->block[i+1], SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200389 }
390
Daniel Kurtz37af8712012-07-24 14:13:58 +0200391 status = i801_transaction(priv, I801_BLOCK_DATA |
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200392 (hwpec ? SMBHSTCNT_PEC_EN : 0));
David Brownell97140342008-07-14 22:38:25 +0200393 if (status)
394 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200395
396 if (read_write == I2C_SMBUS_READ) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100397 len = inb_p(SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200398 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200399 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200400
401 data->block[0] = len;
402 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100403 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200404 }
405 return 0;
406}
407
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200408static void i801_isr_byte_done(struct i801_priv *priv)
409{
410 if (priv->is_read) {
411 /* For SMBus block reads, length is received with first byte */
412 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
413 (priv->count == 0)) {
414 priv->len = inb_p(SMBHSTDAT0(priv));
415 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
416 dev_err(&priv->pci_dev->dev,
417 "Illegal SMBus block read size %d\n",
418 priv->len);
419 /* FIXME: Recover */
420 priv->len = I2C_SMBUS_BLOCK_MAX;
421 } else {
422 dev_dbg(&priv->pci_dev->dev,
423 "SMBus block read size is %d\n",
424 priv->len);
425 }
426 priv->data[-1] = priv->len;
427 }
428
429 /* Read next byte */
430 if (priv->count < priv->len)
431 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
432 else
433 dev_dbg(&priv->pci_dev->dev,
434 "Discarding extra byte on block read\n");
435
436 /* Set LAST_BYTE for last byte of read transaction */
437 if (priv->count == priv->len - 1)
438 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
439 SMBHSTCNT(priv));
440 } else if (priv->count < priv->len - 1) {
441 /* Write next byte, except for IRQ after last byte */
442 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
443 }
444
445 /* Clear BYTE_DONE to continue with next byte */
446 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
447}
448
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200449/*
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200450 * There are two kinds of interrupts:
451 *
452 * 1) i801 signals transaction completion with one of these interrupts:
453 * INTR - Success
454 * DEV_ERR - Invalid command, NAK or communication timeout
455 * BUS_ERR - SMI# transaction collision
456 * FAILED - transaction was canceled due to a KILL request
457 * When any of these occur, update ->status and wake up the waitq.
458 * ->status must be cleared before kicking off the next transaction.
459 *
460 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
461 * occurs for each byte of a byte-by-byte to prepare the next byte.
Daniel Kurtz636752b2012-07-24 14:13:58 +0200462 */
463static irqreturn_t i801_isr(int irq, void *dev_id)
464{
465 struct i801_priv *priv = dev_id;
466 u16 pcists;
467 u8 status;
468
469 /* Confirm this is our interrupt */
470 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
471 if (!(pcists & SMBPCISTS_INTS))
472 return IRQ_NONE;
473
474 status = inb_p(SMBHSTSTS(priv));
475 if (status != 0x42)
476 dev_dbg(&priv->pci_dev->dev, "irq: status = %02x\n", status);
477
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200478 if (status & SMBHSTSTS_BYTE_DONE)
479 i801_isr_byte_done(priv);
480
Daniel Kurtz636752b2012-07-24 14:13:58 +0200481 /*
482 * Clear irq sources and report transaction result.
483 * ->status must be cleared before the next transaction is started.
484 */
485 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
486 if (status) {
487 outb_p(status, SMBHSTSTS(priv));
488 priv->status |= status;
489 wake_up(&priv->waitq);
490 }
491
492 return IRQ_HANDLED;
493}
494
495/*
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200496 * For "byte-by-byte" block transactions:
497 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
498 * I2C read uses cmd=I801_I2C_BLOCK_DATA
499 */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100500static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
501 union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100502 char read_write, int command,
503 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 int i, len;
506 int smbcmd;
Jean Delvare2b738092008-07-14 22:38:32 +0200507 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200508 int result;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200509
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100510 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200511 if (result < 0)
512 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200514 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100517 outb_p(len, SMBHSTDAT0(priv));
518 outb_p(data->block[1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200521 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
522 read_write == I2C_SMBUS_READ)
523 smbcmd = I801_I2C_BLOCK_DATA;
524 else
525 smbcmd = I801_BLOCK_DATA;
526
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200527 if (priv->features & FEATURE_IRQ) {
528 priv->is_read = (read_write == I2C_SMBUS_READ);
529 if (len == 1 && priv->is_read)
530 smbcmd |= SMBHSTCNT_LAST_BYTE;
531 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
532 priv->len = len;
533 priv->count = 0;
534 priv->data = &data->block[1];
535
536 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
537 wait_event(priv->waitq, (status = priv->status));
538 priv->status = 0;
539 return i801_check_post(priv, status);
540 }
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 for (i = 1; i <= len; i++) {
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200543 if (i == len && read_write == I2C_SMBUS_READ)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200544 smbcmd |= SMBHSTCNT_LAST_BYTE;
Daniel Kurtz37af8712012-07-24 14:13:58 +0200545 outb_p(smbcmd, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (i == 1)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200548 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100549 SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Jean Delvare6cad93c2012-07-24 14:13:58 +0200551 status = i801_wait_byte_done(priv);
552 if (status)
553 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Jean Delvare63420642008-01-27 18:14:50 +0100555 if (i == 1 && read_write == I2C_SMBUS_READ
556 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100557 len = inb_p(SMBHSTDAT0(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200558 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100559 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200560 "Illegal SMBus block read size %d\n",
561 len);
562 /* Recover */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100563 while (inb_p(SMBHSTSTS(priv)) &
564 SMBHSTSTS_HOST_BUSY)
565 outb_p(SMBHSTSTS_BYTE_DONE,
566 SMBHSTSTS(priv));
567 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
David Brownell97140342008-07-14 22:38:25 +0200568 return -EPROTO;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 data->block[0] = len;
571 }
572
573 /* Retrieve/store value in SMBBLKDAT */
574 if (read_write == I2C_SMBUS_READ)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100575 data->block[i] = inb_p(SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100577 outb_p(data->block[i+1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Jean Delvarecf898dc2008-07-14 22:38:33 +0200579 /* signals SMBBLKDAT ready */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200580 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200581 }
Jean Delvarecf898dc2008-07-14 22:38:33 +0200582
Jean Delvare6cad93c2012-07-24 14:13:58 +0200583 status = i801_wait_intr(priv);
584exit:
585 return i801_check_post(priv, status);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200586}
587
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100588static int i801_set_block_buffer_mode(struct i801_priv *priv)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200589{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100590 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
591 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200592 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200593 return 0;
594}
595
596/* Block transaction function */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100597static int i801_block_transaction(struct i801_priv *priv,
598 union i2c_smbus_data *data, char read_write,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200599 int command, int hwpec)
600{
601 int result = 0;
602 unsigned char hostc;
603
604 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
605 if (read_write == I2C_SMBUS_WRITE) {
606 /* set I2C_EN bit in configuration register */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100607 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
608 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200609 hostc | SMBHSTCFG_I2C_EN);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100610 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
611 dev_err(&priv->pci_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100612 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200613 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
Jean Delvare63420642008-01-27 18:14:50 +0100617 if (read_write == I2C_SMBUS_WRITE
618 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200619 if (data->block[0] < 1)
620 data->block[0] = 1;
621 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
622 data->block[0] = I2C_SMBUS_BLOCK_MAX;
623 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100624 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200625 }
626
Jean Delvarec074c392010-03-13 20:56:53 +0100627 /* Experience has shown that the block buffer can only be used for
628 SMBus (not I2C) block transactions, even though the datasheet
629 doesn't mention this limitation. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100630 if ((priv->features & FEATURE_BLOCK_BUFFER)
Jean Delvarec074c392010-03-13 20:56:53 +0100631 && command != I2C_SMBUS_I2C_BLOCK_DATA
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100632 && i801_set_block_buffer_mode(priv) == 0)
633 result = i801_block_transaction_by_block(priv, data,
634 read_write, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200635 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100636 result = i801_block_transaction_byte_by_byte(priv, data,
637 read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100638 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200639
Jean Delvare63420642008-01-27 18:14:50 +0100640 if (command == I2C_SMBUS_I2C_BLOCK_DATA
641 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* restore saved configuration register value */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100643 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645 return result;
646}
647
David Brownell97140342008-07-14 22:38:25 +0200648/* Return negative errno on error. */
Ivo Manca3fb21c62010-05-21 18:40:55 +0200649static s32 i801_access(struct i2c_adapter *adap, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 unsigned short flags, char read_write, u8 command,
Ivo Manca3fb21c62010-05-21 18:40:55 +0200651 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200653 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 int block = 0;
655 int ret, xact = 0;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100656 struct i801_priv *priv = i2c_get_adapdata(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100658 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200659 && size != I2C_SMBUS_QUICK
660 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 switch (size) {
663 case I2C_SMBUS_QUICK:
664 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100665 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 xact = I801_QUICK;
667 break;
668 case I2C_SMBUS_BYTE:
669 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100670 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100672 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 xact = I801_BYTE;
674 break;
675 case I2C_SMBUS_BYTE_DATA:
676 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100677 SMBHSTADD(priv));
678 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100680 outb_p(data->byte, SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 xact = I801_BYTE_DATA;
682 break;
683 case I2C_SMBUS_WORD_DATA:
684 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100685 SMBHSTADD(priv));
686 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100688 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
689 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691 xact = I801_WORD_DATA;
692 break;
693 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 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 block = 1;
698 break;
Jean Delvare63420642008-01-27 18:14:50 +0100699 case I2C_SMBUS_I2C_BLOCK_DATA:
700 /* NB: page 240 of ICH5 datasheet shows that the R/#W
701 * bit should be cleared here, even when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100702 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100703 if (read_write == I2C_SMBUS_READ) {
704 /* NB: page 240 of ICH5 datasheet also shows
705 * that DATA1 is the cmd field when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100706 outb_p(command, SMBHSTDAT1(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100707 } else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100708 outb_p(command, SMBHSTCMD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100709 block = 1;
710 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100712 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
713 size);
David Brownell97140342008-07-14 22:38:25 +0200714 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200717 if (hwpec) /* enable/disable hardware PEC */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100718 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200719 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100720 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
721 SMBAUXCTL(priv));
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200722
Ivo Manca3fb21c62010-05-21 18:40:55 +0200723 if (block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100724 ret = i801_block_transaction(priv, data, read_write, size,
725 hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200726 else
Daniel Kurtz37af8712012-07-24 14:13:58 +0200727 ret = i801_transaction(priv, xact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jean Delvarec79cfba2006-04-20 02:43:18 -0700729 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200730 time, so we forcibly disable it after every transaction. Turn off
731 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100732 if (hwpec || block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100733 outb_p(inb_p(SMBAUXCTL(priv)) &
734 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarec79cfba2006-04-20 02:43:18 -0700735
Ivo Manca3fb21c62010-05-21 18:40:55 +0200736 if (block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return ret;
Ivo Manca3fb21c62010-05-21 18:40:55 +0200738 if (ret)
David Brownell97140342008-07-14 22:38:25 +0200739 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
741 return 0;
742
743 switch (xact & 0x7f) {
744 case I801_BYTE: /* Result put in SMBHSTDAT0 */
745 case I801_BYTE_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100746 data->byte = inb_p(SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 break;
748 case I801_WORD_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100749 data->word = inb_p(SMBHSTDAT0(priv)) +
750 (inb_p(SMBHSTDAT1(priv)) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 break;
752 }
753 return 0;
754}
755
756
757static u32 i801_func(struct i2c_adapter *adapter)
758{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100759 struct i801_priv *priv = i2c_get_adapdata(adapter);
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100762 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
763 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100764 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
765 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
Jean Delvare63420642008-01-27 18:14:50 +0100766 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Jean Delvare8f9082c2006-09-03 22:39:46 +0200769static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 .smbus_xfer = i801_access,
771 .functionality = i801_func,
772};
773
Axel Lin3527bd52012-01-12 20:32:04 +0100774static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
776 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
777 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
778 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
779 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
780 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
781 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
782 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
783 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700784 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800785 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800786 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700787 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100788 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
789 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700790 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
791 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
Seth Heasleye30d9852010-10-31 21:06:59 +0100792 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
David Woodhouse55fee8d2010-10-31 21:07:00 +0100793 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
794 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
795 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
Seth Heasley662cda82011-03-20 14:50:53 +0100796 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
Seth Heasley6e2a8512011-05-24 20:58:49 +0200797 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
Seth Heasley062737f2012-03-26 21:47:19 +0200798 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
James Ralston4a8f1dd2012-09-10 10:14:02 +0200799 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 { 0, }
801};
802
Ivo Manca3fb21c62010-05-21 18:40:55 +0200803MODULE_DEVICE_TABLE(pci, i801_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Jean Delvare8eacfce2011-05-24 20:58:49 +0200805#if defined CONFIG_X86 && defined CONFIG_DMI
Jean Delvare1561bfe2009-01-07 14:29:17 +0100806static unsigned char apanel_addr;
807
808/* Scan the system ROM for the signature "FJKEYINF" */
809static __init const void __iomem *bios_signature(const void __iomem *bios)
810{
811 ssize_t offset;
812 const unsigned char signature[] = "FJKEYINF";
813
814 for (offset = 0; offset < 0x10000; offset += 0x10) {
815 if (check_signature(bios + offset, signature,
816 sizeof(signature)-1))
817 return bios + offset;
818 }
819 return NULL;
820}
821
822static void __init input_apanel_init(void)
823{
824 void __iomem *bios;
825 const void __iomem *p;
826
827 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
828 p = bios_signature(bios);
829 if (p) {
830 /* just use the first address */
831 apanel_addr = readb(p + 8 + 3) >> 1;
832 }
833 iounmap(bios);
834}
Jean Delvare1561bfe2009-01-07 14:29:17 +0100835
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200836struct dmi_onboard_device_info {
837 const char *name;
838 u8 type;
839 unsigned short i2c_addr;
840 const char *i2c_type;
841};
842
843static struct dmi_onboard_device_info __devinitdata dmi_devices[] = {
844 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
845 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
846 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
847};
848
849static void __devinit dmi_check_onboard_device(u8 type, const char *name,
850 struct i2c_adapter *adap)
851{
852 int i;
853 struct i2c_board_info info;
854
855 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
856 /* & ~0x80, ignore enabled/disabled bit */
857 if ((type & ~0x80) != dmi_devices[i].type)
858 continue;
Jean Delvarefaabd472010-07-09 16:22:51 +0200859 if (strcasecmp(name, dmi_devices[i].name))
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200860 continue;
861
862 memset(&info, 0, sizeof(struct i2c_board_info));
863 info.addr = dmi_devices[i].i2c_addr;
864 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
865 i2c_new_device(adap, &info);
866 break;
867 }
868}
869
870/* We use our own function to check for onboard devices instead of
871 dmi_find_device() as some buggy BIOS's have the devices we are interested
872 in marked as disabled */
873static void __devinit dmi_check_onboard_devices(const struct dmi_header *dm,
874 void *adap)
875{
876 int i, count;
877
878 if (dm->type != 10)
879 return;
880
881 count = (dm->length - sizeof(struct dmi_header)) / 2;
882 for (i = 0; i < count; i++) {
883 const u8 *d = (char *)(dm + 1) + (i * 2);
884 const char *name = ((char *) dm) + dm->length;
885 u8 type = d[0];
886 u8 s = d[1];
887
888 if (!s)
889 continue;
890 s--;
891 while (s > 0 && name[0]) {
892 name += strlen(name) + 1;
893 s--;
894 }
895 if (name[0] == 0) /* Bogus string reference */
896 continue;
897
898 dmi_check_onboard_device(type, name, adap);
899 }
900}
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200901
Jean Delvaree7198fb2011-05-24 20:58:49 +0200902/* Register optional slaves */
903static void __devinit i801_probe_optional_slaves(struct i801_priv *priv)
904{
905 /* Only register slaves on main SMBus channel */
906 if (priv->features & FEATURE_IDF)
907 return;
908
Jean Delvaree7198fb2011-05-24 20:58:49 +0200909 if (apanel_addr) {
910 struct i2c_board_info info;
911
912 memset(&info, 0, sizeof(struct i2c_board_info));
913 info.addr = apanel_addr;
914 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
915 i2c_new_device(&priv->adapter, &info);
916 }
Jean Delvare8eacfce2011-05-24 20:58:49 +0200917
Jean Delvaree7198fb2011-05-24 20:58:49 +0200918 if (dmi_name_in_vendors("FUJITSU"))
919 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
Jean Delvaree7198fb2011-05-24 20:58:49 +0200920}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200921#else
922static void __init input_apanel_init(void) {}
923static void __devinit i801_probe_optional_slaves(struct i801_priv *priv) {}
924#endif /* CONFIG_X86 && CONFIG_DMI */
Jean Delvaree7198fb2011-05-24 20:58:49 +0200925
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100926#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
927 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200928static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
929 .gpio_chip = "gpio_ich",
930 .values = { 0x02, 0x03 },
931 .n_values = 2,
932 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
933 .gpios = { 52, 53 },
934 .n_gpios = 2,
935};
936
937static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
938 .gpio_chip = "gpio_ich",
939 .values = { 0x02, 0x03, 0x01 },
940 .n_values = 3,
941 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
942 .gpios = { 52, 53 },
943 .n_gpios = 2,
944};
945
946static struct dmi_system_id __devinitdata mux_dmi_table[] = {
947 {
948 .matches = {
949 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
950 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
951 },
952 .driver_data = &i801_mux_config_asus_z8_d12,
953 },
954 {
955 .matches = {
956 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
957 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"),
958 },
959 .driver_data = &i801_mux_config_asus_z8_d12,
960 },
961 {
962 .matches = {
963 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
964 DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"),
965 },
966 .driver_data = &i801_mux_config_asus_z8_d12,
967 },
968 {
969 .matches = {
970 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
971 DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"),
972 },
973 .driver_data = &i801_mux_config_asus_z8_d12,
974 },
975 {
976 .matches = {
977 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
978 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
979 },
980 .driver_data = &i801_mux_config_asus_z8_d12,
981 },
982 {
983 .matches = {
984 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
985 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
986 },
987 .driver_data = &i801_mux_config_asus_z8_d12,
988 },
989 {
990 .matches = {
991 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
992 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
993 },
994 .driver_data = &i801_mux_config_asus_z8_d18,
995 },
996 {
997 .matches = {
998 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
999 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
1000 },
1001 .driver_data = &i801_mux_config_asus_z8_d18,
1002 },
1003 {
1004 .matches = {
1005 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1006 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1007 },
1008 .driver_data = &i801_mux_config_asus_z8_d12,
1009 },
1010 { }
1011};
1012
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001013/* Setup multiplexing if needed */
1014static int __devinit i801_add_mux(struct i801_priv *priv)
1015{
1016 struct device *dev = &priv->adapter.dev;
1017 const struct i801_mux_config *mux_config;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001018 struct i2c_mux_gpio_platform_data gpio_data;
Jean Delvaref82b8622012-10-05 22:23:54 +02001019 int err;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001020
1021 if (!priv->mux_drvdata)
1022 return 0;
1023 mux_config = priv->mux_drvdata;
1024
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001025 /* Prepare the platform data */
1026 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1027 gpio_data.parent = priv->adapter.nr;
1028 gpio_data.values = mux_config->values;
1029 gpio_data.n_values = mux_config->n_values;
1030 gpio_data.classes = mux_config->classes;
Jean Delvaref82b8622012-10-05 22:23:54 +02001031 gpio_data.gpio_chip = mux_config->gpio_chip;
1032 gpio_data.gpios = mux_config->gpios;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001033 gpio_data.n_gpios = mux_config->n_gpios;
1034 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1035
1036 /* Register the mux device */
1037 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
Jean Delvaref82b8622012-10-05 22:23:54 +02001038 PLATFORM_DEVID_AUTO, &gpio_data,
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001039 sizeof(struct i2c_mux_gpio_platform_data));
1040 if (IS_ERR(priv->mux_pdev)) {
1041 err = PTR_ERR(priv->mux_pdev);
1042 priv->mux_pdev = NULL;
1043 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1044 return err;
1045 }
1046
1047 return 0;
1048}
1049
1050static void __devexit i801_del_mux(struct i801_priv *priv)
1051{
1052 if (priv->mux_pdev)
1053 platform_device_unregister(priv->mux_pdev);
1054}
1055
1056static unsigned int __devinit i801_get_adapter_class(struct i801_priv *priv)
1057{
1058 const struct dmi_system_id *id;
1059 const struct i801_mux_config *mux_config;
1060 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1061 int i;
1062
1063 id = dmi_first_match(mux_dmi_table);
1064 if (id) {
Jean Delvare28901f52012-10-28 21:37:01 +01001065 /* Remove branch classes from trunk */
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001066 mux_config = id->driver_data;
1067 for (i = 0; i < mux_config->n_values; i++)
1068 class &= ~mux_config->classes[i];
1069
1070 /* Remember for later */
1071 priv->mux_drvdata = mux_config;
1072 }
1073
1074 return class;
1075}
1076#else
1077static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1078static inline void i801_del_mux(struct i801_priv *priv) { }
1079
1080static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1081{
1082 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1083}
1084#endif
1085
Ivo Manca3fb21c62010-05-21 18:40:55 +02001086static int __devinit i801_probe(struct pci_dev *dev,
1087 const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001089 unsigned char temp;
Jean Delvareadff6872010-05-21 18:40:54 +02001090 int err, i;
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001091 struct i801_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001093 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1094 if (!priv)
1095 return -ENOMEM;
1096
1097 i2c_set_adapdata(&priv->adapter, priv);
1098 priv->adapter.owner = THIS_MODULE;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001099 priv->adapter.class = i801_get_adapter_class(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001100 priv->adapter.algo = &smbus_algorithm;
1101
1102 priv->pci_dev = dev;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001103 switch (dev->device) {
Jean Delvaree7198fb2011-05-24 20:58:49 +02001104 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1105 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1106 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
1107 priv->features |= FEATURE_IDF;
1108 /* fall through */
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001109 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001110 priv->features |= FEATURE_I2C_BLOCK_READ;
Jean Delvare63420642008-01-27 18:14:50 +01001111 /* fall through */
1112 case PCI_DEVICE_ID_INTEL_82801DB_3:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001113 priv->features |= FEATURE_SMBUS_PEC;
1114 priv->features |= FEATURE_BLOCK_BUFFER;
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001115 /* fall through */
1116 case PCI_DEVICE_ID_INTEL_82801CA_3:
1117 case PCI_DEVICE_ID_INTEL_82801BA_2:
1118 case PCI_DEVICE_ID_INTEL_82801AB_3:
1119 case PCI_DEVICE_ID_INTEL_82801AA_3:
Jean Delvare250d1bd2006-12-10 21:21:33 +01001120 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001121 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001122
Jean Delvare29b60852012-07-24 14:13:59 +02001123 /* IRQ processing tested on CougarPoint PCH, ICH5, ICH7-M and ICH10 */
1124 if (dev->device == PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS ||
1125 dev->device == PCI_DEVICE_ID_INTEL_82801EB_3 ||
1126 dev->device == PCI_DEVICE_ID_INTEL_ICH7_17 ||
1127 dev->device == PCI_DEVICE_ID_INTEL_ICH8_5 ||
1128 dev->device == PCI_DEVICE_ID_INTEL_ICH9_6 ||
1129 dev->device == PCI_DEVICE_ID_INTEL_ICH10_4 ||
1130 dev->device == PCI_DEVICE_ID_INTEL_ICH10_5)
Daniel Kurtz636752b2012-07-24 14:13:58 +02001131 priv->features |= FEATURE_IRQ;
1132
Jean Delvareadff6872010-05-21 18:40:54 +02001133 /* Disable features on user request */
1134 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001135 if (priv->features & disable_features & (1 << i))
Jean Delvareadff6872010-05-21 18:40:54 +02001136 dev_notice(&dev->dev, "%s disabled by user\n",
1137 i801_feature_names[i]);
1138 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001139 priv->features &= ~disable_features;
Jean Delvareadff6872010-05-21 18:40:54 +02001140
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001141 err = pci_enable_device(dev);
1142 if (err) {
1143 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1144 err);
1145 goto exit;
1146 }
1147
1148 /* Determine the address of the SMBus area */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001149 priv->smba = pci_resource_start(dev, SMBBAR);
1150 if (!priv->smba) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001151 dev_err(&dev->dev, "SMBus base address uninitialized, "
1152 "upgrade BIOS\n");
1153 err = -ENODEV;
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001154 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001155 }
1156
Jean Delvare54fb4a052008-07-14 22:38:33 +02001157 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
Jean Delvare18669ea2009-10-04 22:53:45 +02001158 if (err) {
1159 err = -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +02001160 goto exit;
Jean Delvare18669ea2009-10-04 22:53:45 +02001161 }
Jean Delvare54fb4a052008-07-14 22:38:33 +02001162
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001163 err = pci_request_region(dev, SMBBAR, i801_driver.name);
1164 if (err) {
1165 dev_err(&dev->dev, "Failed to request SMBus region "
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001166 "0x%lx-0x%Lx\n", priv->smba,
Andrew Morton598736c2006-06-30 01:56:20 -07001167 (unsigned long long)pci_resource_end(dev, SMBBAR));
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001168 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001169 }
1170
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001171 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1172 priv->original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001173 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1174 if (!(temp & SMBHSTCFG_HST_EN)) {
1175 dev_info(&dev->dev, "Enabling SMBus device\n");
1176 temp |= SMBHSTCFG_HST_EN;
1177 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001178 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001179
Daniel Kurtz636752b2012-07-24 14:13:58 +02001180 if (temp & SMBHSTCFG_SMB_SMI_EN) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001181 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001182 /* Disable SMBus interrupt feature if SMBus using SMI# */
1183 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Jean Delvarea0921b62008-01-27 18:14:50 +01001186 /* Clear special mode bits */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001187 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1188 outb_p(inb_p(SMBAUXCTL(priv)) &
1189 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarea0921b62008-01-27 18:14:50 +01001190
Daniel Kurtz636752b2012-07-24 14:13:58 +02001191 if (priv->features & FEATURE_IRQ) {
1192 init_waitqueue_head(&priv->waitq);
1193
1194 err = request_irq(dev->irq, i801_isr, IRQF_SHARED,
1195 i801_driver.name, priv);
1196 if (err) {
1197 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1198 dev->irq, err);
1199 goto exit_release;
1200 }
Jean Delvare29b60852012-07-24 14:13:59 +02001201 dev_info(&dev->dev, "SMBus using PCI Interrupt\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001202 }
1203
Robert P. J. Day405ae7d2007-02-17 19:13:42 +01001204 /* set up the sysfs linkage to our parent device */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001205 priv->adapter.dev.parent = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Jean Delvare7e2193a2009-12-06 17:06:27 +01001207 /* Retry up to 3 times on lost arbitration */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001208 priv->adapter.retries = 3;
Jean Delvare7e2193a2009-12-06 17:06:27 +01001209
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001210 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1211 "SMBus I801 adapter at %04lx", priv->smba);
1212 err = i2c_add_adapter(&priv->adapter);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001213 if (err) {
1214 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001215 goto exit_free_irq;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001216 }
Jean Delvare1561bfe2009-01-07 14:29:17 +01001217
Jean Delvaree7198fb2011-05-24 20:58:49 +02001218 i801_probe_optional_slaves(priv);
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001219 /* We ignore errors - multiplexing is optional */
1220 i801_add_mux(priv);
Jean Delvare1561bfe2009-01-07 14:29:17 +01001221
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001222 pci_set_drvdata(dev, priv);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001223
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001224 return 0;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001225
Daniel Kurtz636752b2012-07-24 14:13:58 +02001226exit_free_irq:
1227 if (priv->features & FEATURE_IRQ)
1228 free_irq(dev->irq, priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001229exit_release:
1230 pci_release_region(dev, SMBBAR);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001231exit:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001232 kfree(priv);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001233 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236static void __devexit i801_remove(struct pci_dev *dev)
1237{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001238 struct i801_priv *priv = pci_get_drvdata(dev);
1239
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001240 i801_del_mux(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001241 i2c_del_adapter(&priv->adapter);
1242 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001243
1244 if (priv->features & FEATURE_IRQ)
1245 free_irq(dev->irq, priv);
Jean Delvare6dcc19d2006-06-12 21:53:02 +02001246 pci_release_region(dev, SMBBAR);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001247
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001248 pci_set_drvdata(dev, NULL);
1249 kfree(priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001250 /*
1251 * do not call pci_disable_device(dev) since it can cause hard hangs on
1252 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1253 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Jean Delvarea5aaea32007-03-22 19:49:01 +01001256#ifdef CONFIG_PM
1257static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
1258{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001259 struct i801_priv *priv = pci_get_drvdata(dev);
1260
Jean Delvarea5aaea32007-03-22 19:49:01 +01001261 pci_save_state(dev);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001262 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Jean Delvarea5aaea32007-03-22 19:49:01 +01001263 pci_set_power_state(dev, pci_choose_state(dev, mesg));
1264 return 0;
1265}
1266
1267static int i801_resume(struct pci_dev *dev)
1268{
1269 pci_set_power_state(dev, PCI_D0);
1270 pci_restore_state(dev);
1271 return pci_enable_device(dev);
1272}
1273#else
1274#define i801_suspend NULL
1275#define i801_resume NULL
1276#endif
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 .name = "i801_smbus",
1280 .id_table = i801_ids,
1281 .probe = i801_probe,
1282 .remove = __devexit_p(i801_remove),
Jean Delvarea5aaea32007-03-22 19:49:01 +01001283 .suspend = i801_suspend,
1284 .resume = i801_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285};
1286
1287static int __init i2c_i801_init(void)
1288{
Jean Delvare6aa14642011-05-24 20:58:49 +02001289 if (dmi_name_in_vendors("FUJITSU"))
1290 input_apanel_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return pci_register_driver(&i801_driver);
1292}
1293
1294static void __exit i2c_i801_exit(void)
1295{
1296 pci_unregister_driver(&i801_driver);
1297}
1298
Jean Delvare63420642008-01-27 18:14:50 +01001299MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
1300 "Jean Delvare <khali@linux-fr.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301MODULE_DESCRIPTION("I801 SMBus driver");
1302MODULE_LICENSE("GPL");
1303
1304module_init(i2c_i801_init);
1305module_exit(i2c_i801_exit);