blob: 4296d1721272bd3fa077944a63e5708000b6a4dd [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
Jean Delvareae7b0492008-01-27 18:14:49 +010062
63 Features supported by this driver:
64 Software PEC no
65 Hardware PEC yes
66 Block buffer yes
67 Block process call transaction no
Jean Delvare63420642008-01-27 18:14:50 +010068 I2C block read transaction yes (doesn't use the block buffer)
David Woodhouse55fee8d2010-10-31 21:07:00 +010069 Slave mode no
Daniel Kurtz636752b2012-07-24 14:13:58 +020070 Interrupt processing yes
Jean Delvareae7b0492008-01-27 18:14:49 +010071
72 See the file Documentation/i2c/busses/i2c-i801 for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073*/
74
Daniel Kurtz636752b2012-07-24 14:13:58 +020075#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/module.h>
77#include <linux/pci.h>
78#include <linux/kernel.h>
79#include <linux/stddef.h>
80#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/ioport.h>
82#include <linux/init.h>
83#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020084#include <linux/acpi.h>
Jean Delvare1561bfe2009-01-07 14:29:17 +010085#include <linux/io.h>
Hans de Goedefa5bfab2009-03-30 21:46:44 +020086#include <linux/dmi.h>
Ben Hutchings665a96b2011-01-10 22:11:22 +010087#include <linux/slab.h>
Daniel Kurtz636752b2012-07-24 14:13:58 +020088#include <linux/wait.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020089#include <linux/err.h>
90
Jean Delvare79e3e5b2012-10-28 21:37:01 +010091#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
92 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +020093#include <linux/gpio.h>
94#include <linux/i2c-mux-gpio.h>
95#include <linux/platform_device.h>
96#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* I801 SMBus address offsets */
David Woodhouse0cd96eb2010-10-31 21:06:59 +010099#define SMBHSTSTS(p) (0 + (p)->smba)
100#define SMBHSTCNT(p) (2 + (p)->smba)
101#define SMBHSTCMD(p) (3 + (p)->smba)
102#define SMBHSTADD(p) (4 + (p)->smba)
103#define SMBHSTDAT0(p) (5 + (p)->smba)
104#define SMBHSTDAT1(p) (6 + (p)->smba)
105#define SMBBLKDAT(p) (7 + (p)->smba)
106#define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */
107#define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */
108#define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/* PCI Address Constants */
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200111#define SMBBAR 4
Daniel Kurtz636752b2012-07-24 14:13:58 +0200112#define SMBPCISTS 0x006
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define SMBHSTCFG 0x040
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Daniel Kurtz636752b2012-07-24 14:13:58 +0200115/* Host status bits for SMBPCISTS */
116#define SMBPCISTS_INTS 0x08
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* Host configuration bits for SMBHSTCFG */
119#define SMBHSTCFG_HST_EN 1
120#define SMBHSTCFG_SMB_SMI_EN 2
121#define SMBHSTCFG_I2C_EN 4
122
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300123/* Auxiliary control register bits, ICH4+ only */
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200124#define SMBAUXCTL_CRC 1
125#define SMBAUXCTL_E32B 2
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/* Other settings */
Jean Delvare84c1af42012-03-26 21:47:19 +0200128#define MAX_RETRIES 400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* I801 command constants */
131#define I801_QUICK 0x00
132#define I801_BYTE 0x04
133#define I801_BYTE_DATA 0x08
134#define I801_WORD_DATA 0x0C
Jean Delvareae7b0492008-01-27 18:14:49 +0100135#define I801_PROC_CALL 0x10 /* unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define I801_BLOCK_DATA 0x14
Jean Delvare63420642008-01-27 18:14:50 +0100137#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200138
139/* I801 Host Control register bits */
140#define SMBHSTCNT_INTREN 0x01
141#define SMBHSTCNT_KILL 0x02
142#define SMBHSTCNT_LAST_BYTE 0x20
143#define SMBHSTCNT_START 0x40
144#define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200146/* I801 Hosts Status register bits */
147#define SMBHSTSTS_BYTE_DONE 0x80
148#define SMBHSTSTS_INUSE_STS 0x40
149#define SMBHSTSTS_SMBALERT_STS 0x20
150#define SMBHSTSTS_FAILED 0x10
151#define SMBHSTSTS_BUS_ERR 0x08
152#define SMBHSTSTS_DEV_ERR 0x04
153#define SMBHSTSTS_INTR 0x02
154#define SMBHSTSTS_HOST_BUSY 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Daniel Kurtz70a1cc12012-07-24 14:13:58 +0200156#define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \
157 SMBHSTSTS_DEV_ERR)
158
159#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
160 STATUS_ERROR_FLAGS)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200161
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200162/* Older devices have their ID defined in <linux/pci_ids.h> */
163#define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
164#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100165/* Patsburg also has three 'Integrated Device Function' SMBus controllers */
166#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70
167#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71
168#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72
Seth Heasley6e2a8512011-05-24 20:58:49 +0200169#define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22
Seth Heasleyc2db409c2013-01-30 15:25:32 +0000170#define PCI_DEVICE_ID_INTEL_AVOTON_SMBUS 0x1f3c
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200171#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
Seth Heasleyf39901c2013-06-19 16:59:57 -0700172#define PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS 0x23b0
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200173#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
Seth Heasley062737f2012-03-26 21:47:19 +0200174#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
James Ralstona3fc0ff2013-02-14 09:15:33 +0000175#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS 0x8d22
176#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0 0x8d7d
177#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1 0x8d7e
178#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2 0x8d7f
James Ralston4a8f1dd2012-09-10 10:14:02 +0200179#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100180
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200181struct i801_mux_config {
182 char *gpio_chip;
183 unsigned values[3];
184 int n_values;
185 unsigned classes[3];
186 unsigned gpios[2]; /* Relative to gpio_chip->base */
187 int n_gpios;
188};
189
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100190struct i801_priv {
191 struct i2c_adapter adapter;
192 unsigned long smba;
193 unsigned char original_hstcfg;
194 struct pci_dev *pci_dev;
195 unsigned int features;
Daniel Kurtz636752b2012-07-24 14:13:58 +0200196
197 /* isr processing */
198 wait_queue_head_t waitq;
199 u8 status;
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200200
201 /* Command state used by isr for byte-by-byte block transactions */
202 u8 cmd;
203 bool is_read;
204 int count;
205 int len;
206 u8 *data;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200207
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100208#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
209 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200210 const struct i801_mux_config *mux_drvdata;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200211 struct platform_device *mux_pdev;
212#endif
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100213};
214
Jean Delvared6072f82005-09-25 16:37:04 +0200215static struct pci_driver i801_driver;
Jean Delvare369f6f42008-01-27 18:14:50 +0100216
217#define FEATURE_SMBUS_PEC (1 << 0)
218#define FEATURE_BLOCK_BUFFER (1 << 1)
219#define FEATURE_BLOCK_PROC (1 << 2)
220#define FEATURE_I2C_BLOCK_READ (1 << 3)
Daniel Kurtz636752b2012-07-24 14:13:58 +0200221#define FEATURE_IRQ (1 << 4)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200222/* Not really a feature, but it's convenient to handle it as such */
223#define FEATURE_IDF (1 << 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Jean Delvareadff6872010-05-21 18:40:54 +0200225static const char *i801_feature_names[] = {
226 "SMBus PEC",
227 "Block buffer",
228 "Block process call",
229 "I2C block read",
Daniel Kurtz636752b2012-07-24 14:13:58 +0200230 "Interrupt",
Jean Delvareadff6872010-05-21 18:40:54 +0200231};
232
233static unsigned int disable_features;
234module_param(disable_features, uint, S_IRUGO | S_IWUSR);
Jean Delvare53229342013-05-15 02:44:10 +0000235MODULE_PARM_DESC(disable_features, "Disable selected driver features:\n"
236 "\t\t 0x01 disable SMBus PEC\n"
237 "\t\t 0x02 disable the block buffer\n"
238 "\t\t 0x08 disable the I2C block read functionality\n"
239 "\t\t 0x10 don't use interrupts ");
Jean Delvareadff6872010-05-21 18:40:54 +0200240
Jean Delvarecf898dc2008-07-14 22:38:33 +0200241/* Make sure the SMBus host is ready to start transmitting.
242 Return 0 if it is, -EBUSY if it is not. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100243static int i801_check_pre(struct i801_priv *priv)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200244{
245 int status;
246
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100247 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200248 if (status & SMBHSTSTS_HOST_BUSY) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100249 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200250 return -EBUSY;
251 }
252
253 status &= STATUS_FLAGS;
254 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100255 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
Jean Delvarecf898dc2008-07-14 22:38:33 +0200256 status);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100257 outb_p(status, SMBHSTSTS(priv));
258 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200259 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100260 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200261 "Failed clearing status flags (%02x)\n",
262 status);
263 return -EBUSY;
264 }
265 }
266
267 return 0;
268}
269
Jean Delvare6cad93c2012-07-24 14:13:58 +0200270/*
271 * Convert the status register to an error code, and clear it.
272 * Note that status only contains the bits we want to clear, not the
273 * actual register value.
274 */
275static int i801_check_post(struct i801_priv *priv, int status)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200276{
277 int result = 0;
278
Daniel Kurtz636752b2012-07-24 14:13:58 +0200279 /*
280 * If the SMBus is still busy, we give up
281 * Note: This timeout condition only happens when using polling
282 * transactions. For interrupt operation, NAK/timeout is indicated by
283 * DEV_ERR.
284 */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200285 if (unlikely(status < 0)) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100286 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200287 /* try to stop the current command */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100288 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
289 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
290 SMBHSTCNT(priv));
Jean Delvare84c1af42012-03-26 21:47:19 +0200291 usleep_range(1000, 2000);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100292 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
293 SMBHSTCNT(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200294
295 /* Check if it worked */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100296 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200297 if ((status & SMBHSTSTS_HOST_BUSY) ||
298 !(status & SMBHSTSTS_FAILED))
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100299 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200300 "Failed terminating the transaction\n");
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100301 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200302 return -ETIMEDOUT;
303 }
304
305 if (status & SMBHSTSTS_FAILED) {
306 result = -EIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100307 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200308 }
309 if (status & SMBHSTSTS_DEV_ERR) {
310 result = -ENXIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100311 dev_dbg(&priv->pci_dev->dev, "No response\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200312 }
313 if (status & SMBHSTSTS_BUS_ERR) {
314 result = -EAGAIN;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100315 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200316 }
317
Jean Delvare6cad93c2012-07-24 14:13:58 +0200318 /* Clear status flags except BYTE_DONE, to be cleared by caller */
319 outb_p(status, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200320
321 return result;
322}
323
Jean Delvare6cad93c2012-07-24 14:13:58 +0200324/* Wait for BUSY being cleared and either INTR or an error flag being set */
325static int i801_wait_intr(struct i801_priv *priv)
326{
327 int timeout = 0;
328 int status;
329
330 /* We will always wait for a fraction of a second! */
331 do {
332 usleep_range(250, 500);
333 status = inb_p(SMBHSTSTS(priv));
334 } while (((status & SMBHSTSTS_HOST_BUSY) ||
335 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
336 (timeout++ < MAX_RETRIES));
337
338 if (timeout > MAX_RETRIES) {
339 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
340 return -ETIMEDOUT;
341 }
342 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
343}
344
345/* Wait for either BYTE_DONE or an error flag being set */
346static int i801_wait_byte_done(struct i801_priv *priv)
347{
348 int timeout = 0;
349 int status;
350
351 /* We will always wait for a fraction of a second! */
352 do {
353 usleep_range(250, 500);
354 status = inb_p(SMBHSTSTS(priv));
355 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
356 (timeout++ < MAX_RETRIES));
357
358 if (timeout > MAX_RETRIES) {
359 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
360 return -ETIMEDOUT;
361 }
362 return status & STATUS_ERROR_FLAGS;
363}
364
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100365static int i801_transaction(struct i801_priv *priv, int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Jean Delvare2b738092008-07-14 22:38:32 +0200367 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200368 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100370 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200371 if (result < 0)
372 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Daniel Kurtz636752b2012-07-24 14:13:58 +0200374 if (priv->features & FEATURE_IRQ) {
375 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
376 SMBHSTCNT(priv));
377 wait_event(priv->waitq, (status = priv->status));
378 priv->status = 0;
379 return i801_check_post(priv, status);
380 }
381
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200382 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
Daniel Kurtz37af8712012-07-24 14:13:58 +0200383 * SMBSCMD are passed in xact */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200384 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvare6cad93c2012-07-24 14:13:58 +0200386 status = i801_wait_intr(priv);
387 return i801_check_post(priv, status);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200388}
389
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100390static int i801_block_transaction_by_block(struct i801_priv *priv,
391 union i2c_smbus_data *data,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200392 char read_write, int hwpec)
393{
394 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200395 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200396
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100397 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200398
399 /* Use 32-byte buffer to process this transaction */
400 if (read_write == I2C_SMBUS_WRITE) {
401 len = data->block[0];
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100402 outb_p(len, SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200403 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100404 outb_p(data->block[i+1], SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200405 }
406
Daniel Kurtz37af8712012-07-24 14:13:58 +0200407 status = i801_transaction(priv, I801_BLOCK_DATA |
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200408 (hwpec ? SMBHSTCNT_PEC_EN : 0));
David Brownell97140342008-07-14 22:38:25 +0200409 if (status)
410 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200411
412 if (read_write == I2C_SMBUS_READ) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100413 len = inb_p(SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200414 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200415 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200416
417 data->block[0] = len;
418 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100419 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200420 }
421 return 0;
422}
423
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200424static void i801_isr_byte_done(struct i801_priv *priv)
425{
426 if (priv->is_read) {
427 /* For SMBus block reads, length is received with first byte */
428 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
429 (priv->count == 0)) {
430 priv->len = inb_p(SMBHSTDAT0(priv));
431 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
432 dev_err(&priv->pci_dev->dev,
433 "Illegal SMBus block read size %d\n",
434 priv->len);
435 /* FIXME: Recover */
436 priv->len = I2C_SMBUS_BLOCK_MAX;
437 } else {
438 dev_dbg(&priv->pci_dev->dev,
439 "SMBus block read size is %d\n",
440 priv->len);
441 }
442 priv->data[-1] = priv->len;
443 }
444
445 /* Read next byte */
446 if (priv->count < priv->len)
447 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
448 else
449 dev_dbg(&priv->pci_dev->dev,
450 "Discarding extra byte on block read\n");
451
452 /* Set LAST_BYTE for last byte of read transaction */
453 if (priv->count == priv->len - 1)
454 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
455 SMBHSTCNT(priv));
456 } else if (priv->count < priv->len - 1) {
457 /* Write next byte, except for IRQ after last byte */
458 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
459 }
460
461 /* Clear BYTE_DONE to continue with next byte */
462 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
463}
464
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200465/*
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200466 * There are two kinds of interrupts:
467 *
468 * 1) i801 signals transaction completion with one of these interrupts:
469 * INTR - Success
470 * DEV_ERR - Invalid command, NAK or communication timeout
471 * BUS_ERR - SMI# transaction collision
472 * FAILED - transaction was canceled due to a KILL request
473 * When any of these occur, update ->status and wake up the waitq.
474 * ->status must be cleared before kicking off the next transaction.
475 *
476 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
477 * occurs for each byte of a byte-by-byte to prepare the next byte.
Daniel Kurtz636752b2012-07-24 14:13:58 +0200478 */
479static irqreturn_t i801_isr(int irq, void *dev_id)
480{
481 struct i801_priv *priv = dev_id;
482 u16 pcists;
483 u8 status;
484
485 /* Confirm this is our interrupt */
486 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
487 if (!(pcists & SMBPCISTS_INTS))
488 return IRQ_NONE;
489
490 status = inb_p(SMBHSTSTS(priv));
491 if (status != 0x42)
492 dev_dbg(&priv->pci_dev->dev, "irq: status = %02x\n", status);
493
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200494 if (status & SMBHSTSTS_BYTE_DONE)
495 i801_isr_byte_done(priv);
496
Daniel Kurtz636752b2012-07-24 14:13:58 +0200497 /*
498 * Clear irq sources and report transaction result.
499 * ->status must be cleared before the next transaction is started.
500 */
501 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
502 if (status) {
503 outb_p(status, SMBHSTSTS(priv));
504 priv->status |= status;
505 wake_up(&priv->waitq);
506 }
507
508 return IRQ_HANDLED;
509}
510
511/*
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200512 * For "byte-by-byte" block transactions:
513 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
514 * I2C read uses cmd=I801_I2C_BLOCK_DATA
515 */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100516static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
517 union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100518 char read_write, int command,
519 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 int i, len;
522 int smbcmd;
Jean Delvare2b738092008-07-14 22:38:32 +0200523 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200524 int result;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200525
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100526 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200527 if (result < 0)
528 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200530 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100533 outb_p(len, SMBHSTDAT0(priv));
534 outb_p(data->block[1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200537 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
538 read_write == I2C_SMBUS_READ)
539 smbcmd = I801_I2C_BLOCK_DATA;
540 else
541 smbcmd = I801_BLOCK_DATA;
542
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200543 if (priv->features & FEATURE_IRQ) {
544 priv->is_read = (read_write == I2C_SMBUS_READ);
545 if (len == 1 && priv->is_read)
546 smbcmd |= SMBHSTCNT_LAST_BYTE;
547 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
548 priv->len = len;
549 priv->count = 0;
550 priv->data = &data->block[1];
551
552 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
553 wait_event(priv->waitq, (status = priv->status));
554 priv->status = 0;
555 return i801_check_post(priv, status);
556 }
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 for (i = 1; i <= len; i++) {
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200559 if (i == len && read_write == I2C_SMBUS_READ)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200560 smbcmd |= SMBHSTCNT_LAST_BYTE;
Daniel Kurtz37af8712012-07-24 14:13:58 +0200561 outb_p(smbcmd, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (i == 1)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200564 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100565 SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Jean Delvare6cad93c2012-07-24 14:13:58 +0200567 status = i801_wait_byte_done(priv);
568 if (status)
569 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Jean Delvare63420642008-01-27 18:14:50 +0100571 if (i == 1 && read_write == I2C_SMBUS_READ
572 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100573 len = inb_p(SMBHSTDAT0(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200574 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100575 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200576 "Illegal SMBus block read size %d\n",
577 len);
578 /* Recover */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100579 while (inb_p(SMBHSTSTS(priv)) &
580 SMBHSTSTS_HOST_BUSY)
581 outb_p(SMBHSTSTS_BYTE_DONE,
582 SMBHSTSTS(priv));
583 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
David Brownell97140342008-07-14 22:38:25 +0200584 return -EPROTO;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 data->block[0] = len;
587 }
588
589 /* Retrieve/store value in SMBBLKDAT */
590 if (read_write == I2C_SMBUS_READ)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100591 data->block[i] = inb_p(SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100593 outb_p(data->block[i+1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Jean Delvarecf898dc2008-07-14 22:38:33 +0200595 /* signals SMBBLKDAT ready */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200596 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200597 }
Jean Delvarecf898dc2008-07-14 22:38:33 +0200598
Jean Delvare6cad93c2012-07-24 14:13:58 +0200599 status = i801_wait_intr(priv);
600exit:
601 return i801_check_post(priv, status);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200602}
603
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100604static int i801_set_block_buffer_mode(struct i801_priv *priv)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200605{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100606 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
607 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200608 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200609 return 0;
610}
611
612/* Block transaction function */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100613static int i801_block_transaction(struct i801_priv *priv,
614 union i2c_smbus_data *data, char read_write,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200615 int command, int hwpec)
616{
617 int result = 0;
618 unsigned char hostc;
619
620 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
621 if (read_write == I2C_SMBUS_WRITE) {
622 /* set I2C_EN bit in configuration register */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100623 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
624 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200625 hostc | SMBHSTCFG_I2C_EN);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100626 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
627 dev_err(&priv->pci_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100628 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200629 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
Jean Delvare63420642008-01-27 18:14:50 +0100633 if (read_write == I2C_SMBUS_WRITE
634 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200635 if (data->block[0] < 1)
636 data->block[0] = 1;
637 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
638 data->block[0] = I2C_SMBUS_BLOCK_MAX;
639 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100640 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200641 }
642
Jean Delvarec074c392010-03-13 20:56:53 +0100643 /* Experience has shown that the block buffer can only be used for
644 SMBus (not I2C) block transactions, even though the datasheet
645 doesn't mention this limitation. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100646 if ((priv->features & FEATURE_BLOCK_BUFFER)
Jean Delvarec074c392010-03-13 20:56:53 +0100647 && command != I2C_SMBUS_I2C_BLOCK_DATA
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100648 && i801_set_block_buffer_mode(priv) == 0)
649 result = i801_block_transaction_by_block(priv, data,
650 read_write, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200651 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100652 result = i801_block_transaction_byte_by_byte(priv, data,
653 read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100654 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200655
Jean Delvare63420642008-01-27 18:14:50 +0100656 if (command == I2C_SMBUS_I2C_BLOCK_DATA
657 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* restore saved configuration register value */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100659 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661 return result;
662}
663
David Brownell97140342008-07-14 22:38:25 +0200664/* Return negative errno on error. */
Ivo Manca3fb21c62010-05-21 18:40:55 +0200665static s32 i801_access(struct i2c_adapter *adap, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 unsigned short flags, char read_write, u8 command,
Ivo Manca3fb21c62010-05-21 18:40:55 +0200667 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200669 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int block = 0;
671 int ret, xact = 0;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100672 struct i801_priv *priv = i2c_get_adapdata(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100674 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200675 && size != I2C_SMBUS_QUICK
676 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 switch (size) {
679 case I2C_SMBUS_QUICK:
680 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100681 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 xact = I801_QUICK;
683 break;
684 case I2C_SMBUS_BYTE:
685 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100686 SMBHSTADD(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(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 xact = I801_BYTE;
690 break;
691 case I2C_SMBUS_BYTE_DATA:
692 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100693 SMBHSTADD(priv));
694 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100696 outb_p(data->byte, SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 xact = I801_BYTE_DATA;
698 break;
699 case I2C_SMBUS_WORD_DATA:
700 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100701 SMBHSTADD(priv));
702 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100704 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
705 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707 xact = I801_WORD_DATA;
708 break;
709 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100711 SMBHSTADD(priv));
712 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 block = 1;
714 break;
Jean Delvare63420642008-01-27 18:14:50 +0100715 case I2C_SMBUS_I2C_BLOCK_DATA:
716 /* NB: page 240 of ICH5 datasheet shows that the R/#W
717 * bit should be cleared here, even when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100718 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100719 if (read_write == I2C_SMBUS_READ) {
720 /* NB: page 240 of ICH5 datasheet also shows
721 * that DATA1 is the cmd field when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100722 outb_p(command, SMBHSTDAT1(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100723 } else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100724 outb_p(command, SMBHSTCMD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100725 block = 1;
726 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100728 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
729 size);
David Brownell97140342008-07-14 22:38:25 +0200730 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200733 if (hwpec) /* enable/disable hardware PEC */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100734 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200735 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100736 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
737 SMBAUXCTL(priv));
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200738
Ivo Manca3fb21c62010-05-21 18:40:55 +0200739 if (block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100740 ret = i801_block_transaction(priv, data, read_write, size,
741 hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200742 else
Daniel Kurtz37af8712012-07-24 14:13:58 +0200743 ret = i801_transaction(priv, xact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Jean Delvarec79cfba2006-04-20 02:43:18 -0700745 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200746 time, so we forcibly disable it after every transaction. Turn off
747 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100748 if (hwpec || block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100749 outb_p(inb_p(SMBAUXCTL(priv)) &
750 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarec79cfba2006-04-20 02:43:18 -0700751
Ivo Manca3fb21c62010-05-21 18:40:55 +0200752 if (block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return ret;
Ivo Manca3fb21c62010-05-21 18:40:55 +0200754 if (ret)
David Brownell97140342008-07-14 22:38:25 +0200755 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
757 return 0;
758
759 switch (xact & 0x7f) {
760 case I801_BYTE: /* Result put in SMBHSTDAT0 */
761 case I801_BYTE_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100762 data->byte = inb_p(SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 break;
764 case I801_WORD_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100765 data->word = inb_p(SMBHSTDAT0(priv)) +
766 (inb_p(SMBHSTDAT1(priv)) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 break;
768 }
769 return 0;
770}
771
772
773static u32 i801_func(struct i2c_adapter *adapter)
774{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100775 struct i801_priv *priv = i2c_get_adapdata(adapter);
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100778 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
779 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100780 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
781 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
Jean Delvare63420642008-01-27 18:14:50 +0100782 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Jean Delvare8f9082c2006-09-03 22:39:46 +0200785static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .smbus_xfer = i801_access,
787 .functionality = i801_func,
788};
789
Axel Lin3527bd52012-01-12 20:32:04 +0100790static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
792 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
793 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
794 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
795 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
796 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
797 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
798 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
799 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700800 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800801 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800802 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700803 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100804 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
805 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700806 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
807 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
Seth Heasleye30d9852010-10-31 21:06:59 +0100808 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
David Woodhouse55fee8d2010-10-31 21:07:00 +0100809 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
810 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
811 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
Seth Heasley662cda82011-03-20 14:50:53 +0100812 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
Seth Heasley6e2a8512011-05-24 20:58:49 +0200813 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
Seth Heasley062737f2012-03-26 21:47:19 +0200814 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
James Ralston4a8f1dd2012-09-10 10:14:02 +0200815 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
Seth Heasleyc2db409c2013-01-30 15:25:32 +0000816 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMBUS) },
James Ralstona3fc0ff2013-02-14 09:15:33 +0000817 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS) },
818 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0) },
819 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1) },
820 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2) },
Seth Heasleyf39901c2013-06-19 16:59:57 -0700821 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 { 0, }
823};
824
Ivo Manca3fb21c62010-05-21 18:40:55 +0200825MODULE_DEVICE_TABLE(pci, i801_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Jean Delvare8eacfce2011-05-24 20:58:49 +0200827#if defined CONFIG_X86 && defined CONFIG_DMI
Jean Delvare1561bfe2009-01-07 14:29:17 +0100828static unsigned char apanel_addr;
829
830/* Scan the system ROM for the signature "FJKEYINF" */
831static __init const void __iomem *bios_signature(const void __iomem *bios)
832{
833 ssize_t offset;
834 const unsigned char signature[] = "FJKEYINF";
835
836 for (offset = 0; offset < 0x10000; offset += 0x10) {
837 if (check_signature(bios + offset, signature,
838 sizeof(signature)-1))
839 return bios + offset;
840 }
841 return NULL;
842}
843
844static void __init input_apanel_init(void)
845{
846 void __iomem *bios;
847 const void __iomem *p;
848
849 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
850 p = bios_signature(bios);
851 if (p) {
852 /* just use the first address */
853 apanel_addr = readb(p + 8 + 3) >> 1;
854 }
855 iounmap(bios);
856}
Jean Delvare1561bfe2009-01-07 14:29:17 +0100857
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200858struct dmi_onboard_device_info {
859 const char *name;
860 u8 type;
861 unsigned short i2c_addr;
862 const char *i2c_type;
863};
864
Bill Pemberton0b255e92012-11-27 15:59:38 -0500865static const struct dmi_onboard_device_info dmi_devices[] = {
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200866 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
867 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
868 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
869};
870
Bill Pemberton0b255e92012-11-27 15:59:38 -0500871static void dmi_check_onboard_device(u8 type, const char *name,
872 struct i2c_adapter *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200873{
874 int i;
875 struct i2c_board_info info;
876
877 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
878 /* & ~0x80, ignore enabled/disabled bit */
879 if ((type & ~0x80) != dmi_devices[i].type)
880 continue;
Jean Delvarefaabd472010-07-09 16:22:51 +0200881 if (strcasecmp(name, dmi_devices[i].name))
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200882 continue;
883
884 memset(&info, 0, sizeof(struct i2c_board_info));
885 info.addr = dmi_devices[i].i2c_addr;
886 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
887 i2c_new_device(adap, &info);
888 break;
889 }
890}
891
892/* We use our own function to check for onboard devices instead of
893 dmi_find_device() as some buggy BIOS's have the devices we are interested
894 in marked as disabled */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500895static void dmi_check_onboard_devices(const struct dmi_header *dm, void *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200896{
897 int i, count;
898
899 if (dm->type != 10)
900 return;
901
902 count = (dm->length - sizeof(struct dmi_header)) / 2;
903 for (i = 0; i < count; i++) {
904 const u8 *d = (char *)(dm + 1) + (i * 2);
905 const char *name = ((char *) dm) + dm->length;
906 u8 type = d[0];
907 u8 s = d[1];
908
909 if (!s)
910 continue;
911 s--;
912 while (s > 0 && name[0]) {
913 name += strlen(name) + 1;
914 s--;
915 }
916 if (name[0] == 0) /* Bogus string reference */
917 continue;
918
919 dmi_check_onboard_device(type, name, adap);
920 }
921}
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200922
Jean Delvaree7198fb2011-05-24 20:58:49 +0200923/* Register optional slaves */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500924static void i801_probe_optional_slaves(struct i801_priv *priv)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200925{
926 /* Only register slaves on main SMBus channel */
927 if (priv->features & FEATURE_IDF)
928 return;
929
Jean Delvaree7198fb2011-05-24 20:58:49 +0200930 if (apanel_addr) {
931 struct i2c_board_info info;
932
933 memset(&info, 0, sizeof(struct i2c_board_info));
934 info.addr = apanel_addr;
935 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
936 i2c_new_device(&priv->adapter, &info);
937 }
Jean Delvare8eacfce2011-05-24 20:58:49 +0200938
Jean Delvaree7198fb2011-05-24 20:58:49 +0200939 if (dmi_name_in_vendors("FUJITSU"))
940 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
Jean Delvaree7198fb2011-05-24 20:58:49 +0200941}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200942#else
943static void __init input_apanel_init(void) {}
Bill Pemberton0b255e92012-11-27 15:59:38 -0500944static void i801_probe_optional_slaves(struct i801_priv *priv) {}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200945#endif /* CONFIG_X86 && CONFIG_DMI */
Jean Delvaree7198fb2011-05-24 20:58:49 +0200946
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100947#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
948 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200949static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
950 .gpio_chip = "gpio_ich",
951 .values = { 0x02, 0x03 },
952 .n_values = 2,
953 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
954 .gpios = { 52, 53 },
955 .n_gpios = 2,
956};
957
958static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
959 .gpio_chip = "gpio_ich",
960 .values = { 0x02, 0x03, 0x01 },
961 .n_values = 3,
962 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
963 .gpios = { 52, 53 },
964 .n_gpios = 2,
965};
966
Bill Pemberton0b255e92012-11-27 15:59:38 -0500967static const struct dmi_system_id mux_dmi_table[] = {
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200968 {
969 .matches = {
970 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
971 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
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, "Z8P(N)E-D12(X)"),
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, "Z8NH-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, "Z8PH-D12/IFB"),
993 },
994 .driver_data = &i801_mux_config_asus_z8_d12,
995 },
996 {
997 .matches = {
998 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
999 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
1000 },
1001 .driver_data = &i801_mux_config_asus_z8_d12,
1002 },
1003 {
1004 .matches = {
1005 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1006 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
1007 },
1008 .driver_data = &i801_mux_config_asus_z8_d12,
1009 },
1010 {
1011 .matches = {
1012 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1013 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
1014 },
1015 .driver_data = &i801_mux_config_asus_z8_d18,
1016 },
1017 {
1018 .matches = {
1019 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1020 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
1021 },
1022 .driver_data = &i801_mux_config_asus_z8_d18,
1023 },
1024 {
1025 .matches = {
1026 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1027 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1028 },
1029 .driver_data = &i801_mux_config_asus_z8_d12,
1030 },
1031 { }
1032};
1033
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001034/* Setup multiplexing if needed */
Bill Pemberton0b255e92012-11-27 15:59:38 -05001035static int i801_add_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001036{
1037 struct device *dev = &priv->adapter.dev;
1038 const struct i801_mux_config *mux_config;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001039 struct i2c_mux_gpio_platform_data gpio_data;
Jean Delvaref82b8622012-10-05 22:23:54 +02001040 int err;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001041
1042 if (!priv->mux_drvdata)
1043 return 0;
1044 mux_config = priv->mux_drvdata;
1045
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001046 /* Prepare the platform data */
1047 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1048 gpio_data.parent = priv->adapter.nr;
1049 gpio_data.values = mux_config->values;
1050 gpio_data.n_values = mux_config->n_values;
1051 gpio_data.classes = mux_config->classes;
Jean Delvaref82b8622012-10-05 22:23:54 +02001052 gpio_data.gpio_chip = mux_config->gpio_chip;
1053 gpio_data.gpios = mux_config->gpios;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001054 gpio_data.n_gpios = mux_config->n_gpios;
1055 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1056
1057 /* Register the mux device */
1058 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
Jean Delvaref82b8622012-10-05 22:23:54 +02001059 PLATFORM_DEVID_AUTO, &gpio_data,
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001060 sizeof(struct i2c_mux_gpio_platform_data));
1061 if (IS_ERR(priv->mux_pdev)) {
1062 err = PTR_ERR(priv->mux_pdev);
1063 priv->mux_pdev = NULL;
1064 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1065 return err;
1066 }
1067
1068 return 0;
1069}
1070
Bill Pemberton0b255e92012-11-27 15:59:38 -05001071static void i801_del_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001072{
1073 if (priv->mux_pdev)
1074 platform_device_unregister(priv->mux_pdev);
1075}
1076
Bill Pemberton0b255e92012-11-27 15:59:38 -05001077static unsigned int i801_get_adapter_class(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001078{
1079 const struct dmi_system_id *id;
1080 const struct i801_mux_config *mux_config;
1081 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1082 int i;
1083
1084 id = dmi_first_match(mux_dmi_table);
1085 if (id) {
Jean Delvare28901f52012-10-28 21:37:01 +01001086 /* Remove branch classes from trunk */
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001087 mux_config = id->driver_data;
1088 for (i = 0; i < mux_config->n_values; i++)
1089 class &= ~mux_config->classes[i];
1090
1091 /* Remember for later */
1092 priv->mux_drvdata = mux_config;
1093 }
1094
1095 return class;
1096}
1097#else
1098static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1099static inline void i801_del_mux(struct i801_priv *priv) { }
1100
1101static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1102{
1103 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1104}
1105#endif
1106
Bill Pemberton0b255e92012-11-27 15:59:38 -05001107static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001109 unsigned char temp;
Jean Delvareadff6872010-05-21 18:40:54 +02001110 int err, i;
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001111 struct i801_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001113 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1114 if (!priv)
1115 return -ENOMEM;
1116
1117 i2c_set_adapdata(&priv->adapter, priv);
1118 priv->adapter.owner = THIS_MODULE;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001119 priv->adapter.class = i801_get_adapter_class(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001120 priv->adapter.algo = &smbus_algorithm;
1121
1122 priv->pci_dev = dev;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001123 switch (dev->device) {
Jean Delvaree7198fb2011-05-24 20:58:49 +02001124 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1125 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1126 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
James Ralstona3fc0ff2013-02-14 09:15:33 +00001127 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0:
1128 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1:
1129 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2:
Jean Delvaree7198fb2011-05-24 20:58:49 +02001130 priv->features |= FEATURE_IDF;
1131 /* fall through */
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001132 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001133 priv->features |= FEATURE_I2C_BLOCK_READ;
Jean Delvare6676a842012-12-16 21:11:55 +01001134 priv->features |= FEATURE_IRQ;
Jean Delvare63420642008-01-27 18:14:50 +01001135 /* fall through */
1136 case PCI_DEVICE_ID_INTEL_82801DB_3:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001137 priv->features |= FEATURE_SMBUS_PEC;
1138 priv->features |= FEATURE_BLOCK_BUFFER;
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001139 /* fall through */
1140 case PCI_DEVICE_ID_INTEL_82801CA_3:
1141 case PCI_DEVICE_ID_INTEL_82801BA_2:
1142 case PCI_DEVICE_ID_INTEL_82801AB_3:
1143 case PCI_DEVICE_ID_INTEL_82801AA_3:
Jean Delvare250d1bd2006-12-10 21:21:33 +01001144 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001145 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001146
Jean Delvareadff6872010-05-21 18:40:54 +02001147 /* Disable features on user request */
1148 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001149 if (priv->features & disable_features & (1 << i))
Jean Delvareadff6872010-05-21 18:40:54 +02001150 dev_notice(&dev->dev, "%s disabled by user\n",
1151 i801_feature_names[i]);
1152 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001153 priv->features &= ~disable_features;
Jean Delvareadff6872010-05-21 18:40:54 +02001154
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001155 err = pci_enable_device(dev);
1156 if (err) {
1157 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1158 err);
1159 goto exit;
1160 }
1161
1162 /* Determine the address of the SMBus area */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001163 priv->smba = pci_resource_start(dev, SMBBAR);
1164 if (!priv->smba) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001165 dev_err(&dev->dev, "SMBus base address uninitialized, "
1166 "upgrade BIOS\n");
1167 err = -ENODEV;
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001168 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001169 }
1170
Jean Delvare54fb4a052008-07-14 22:38:33 +02001171 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
Jean Delvare18669ea2009-10-04 22:53:45 +02001172 if (err) {
1173 err = -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +02001174 goto exit;
Jean Delvare18669ea2009-10-04 22:53:45 +02001175 }
Jean Delvare54fb4a052008-07-14 22:38:33 +02001176
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001177 err = pci_request_region(dev, SMBBAR, i801_driver.name);
1178 if (err) {
1179 dev_err(&dev->dev, "Failed to request SMBus region "
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001180 "0x%lx-0x%Lx\n", priv->smba,
Andrew Morton598736c2006-06-30 01:56:20 -07001181 (unsigned long long)pci_resource_end(dev, SMBBAR));
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001182 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001183 }
1184
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001185 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1186 priv->original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001187 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1188 if (!(temp & SMBHSTCFG_HST_EN)) {
1189 dev_info(&dev->dev, "Enabling SMBus device\n");
1190 temp |= SMBHSTCFG_HST_EN;
1191 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001192 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001193
Daniel Kurtz636752b2012-07-24 14:13:58 +02001194 if (temp & SMBHSTCFG_SMB_SMI_EN) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001195 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001196 /* Disable SMBus interrupt feature if SMBus using SMI# */
1197 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Jean Delvarea0921b62008-01-27 18:14:50 +01001200 /* Clear special mode bits */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001201 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1202 outb_p(inb_p(SMBAUXCTL(priv)) &
1203 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarea0921b62008-01-27 18:14:50 +01001204
Daniel Kurtz636752b2012-07-24 14:13:58 +02001205 if (priv->features & FEATURE_IRQ) {
1206 init_waitqueue_head(&priv->waitq);
1207
1208 err = request_irq(dev->irq, i801_isr, IRQF_SHARED,
1209 i801_driver.name, priv);
1210 if (err) {
1211 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1212 dev->irq, err);
1213 goto exit_release;
1214 }
Jean Delvare29b60852012-07-24 14:13:59 +02001215 dev_info(&dev->dev, "SMBus using PCI Interrupt\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001216 }
1217
Robert P. J. Day405ae7d2007-02-17 19:13:42 +01001218 /* set up the sysfs linkage to our parent device */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001219 priv->adapter.dev.parent = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Jean Delvare7e2193a2009-12-06 17:06:27 +01001221 /* Retry up to 3 times on lost arbitration */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001222 priv->adapter.retries = 3;
Jean Delvare7e2193a2009-12-06 17:06:27 +01001223
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001224 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1225 "SMBus I801 adapter at %04lx", priv->smba);
1226 err = i2c_add_adapter(&priv->adapter);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001227 if (err) {
1228 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001229 goto exit_free_irq;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001230 }
Jean Delvare1561bfe2009-01-07 14:29:17 +01001231
Jean Delvaree7198fb2011-05-24 20:58:49 +02001232 i801_probe_optional_slaves(priv);
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001233 /* We ignore errors - multiplexing is optional */
1234 i801_add_mux(priv);
Jean Delvare1561bfe2009-01-07 14:29:17 +01001235
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001236 pci_set_drvdata(dev, priv);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001237
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001238 return 0;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001239
Daniel Kurtz636752b2012-07-24 14:13:58 +02001240exit_free_irq:
1241 if (priv->features & FEATURE_IRQ)
1242 free_irq(dev->irq, priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001243exit_release:
1244 pci_release_region(dev, SMBBAR);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001245exit:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001246 kfree(priv);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001247 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Bill Pemberton0b255e92012-11-27 15:59:38 -05001250static void i801_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001252 struct i801_priv *priv = pci_get_drvdata(dev);
1253
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001254 i801_del_mux(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001255 i2c_del_adapter(&priv->adapter);
1256 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001257
1258 if (priv->features & FEATURE_IRQ)
1259 free_irq(dev->irq, priv);
Jean Delvare6dcc19d2006-06-12 21:53:02 +02001260 pci_release_region(dev, SMBBAR);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001261
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001262 kfree(priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001263 /*
1264 * do not call pci_disable_device(dev) since it can cause hard hangs on
1265 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1266 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Jean Delvarea5aaea32007-03-22 19:49:01 +01001269#ifdef CONFIG_PM
1270static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
1271{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001272 struct i801_priv *priv = pci_get_drvdata(dev);
1273
Jean Delvarea5aaea32007-03-22 19:49:01 +01001274 pci_save_state(dev);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001275 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Jean Delvarea5aaea32007-03-22 19:49:01 +01001276 pci_set_power_state(dev, pci_choose_state(dev, mesg));
1277 return 0;
1278}
1279
1280static int i801_resume(struct pci_dev *dev)
1281{
1282 pci_set_power_state(dev, PCI_D0);
1283 pci_restore_state(dev);
1284 return pci_enable_device(dev);
1285}
1286#else
1287#define i801_suspend NULL
1288#define i801_resume NULL
1289#endif
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 .name = "i801_smbus",
1293 .id_table = i801_ids,
1294 .probe = i801_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -05001295 .remove = i801_remove,
Jean Delvarea5aaea32007-03-22 19:49:01 +01001296 .suspend = i801_suspend,
1297 .resume = i801_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298};
1299
1300static int __init i2c_i801_init(void)
1301{
Jean Delvare6aa14642011-05-24 20:58:49 +02001302 if (dmi_name_in_vendors("FUJITSU"))
1303 input_apanel_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return pci_register_driver(&i801_driver);
1305}
1306
1307static void __exit i2c_i801_exit(void)
1308{
1309 pci_unregister_driver(&i801_driver);
1310}
1311
Jean Delvare63420642008-01-27 18:14:50 +01001312MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
1313 "Jean Delvare <khali@linux-fr.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314MODULE_DESCRIPTION("I801 SMBus driver");
1315MODULE_LICENSE("GPL");
1316
1317module_init(i2c_i801_init);
1318module_exit(i2c_i801_exit);