blob: 8fafb254e42a5583b46906ff884369882b6cf83b [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 Delvareb3b8df92014-11-12 10:20:40 +01005 Copyright (C) 2007 - 2014 Jean Delvare <jdelvare@suse.de>
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018*/
19
20/*
Jean Delvarece316112014-07-17 15:03:24 +020021 * Supports the following Intel I/O Controller Hubs (ICH):
22 *
23 * I/O Block I2C
24 * region SMBus Block proc. block
25 * Chip name PCI ID size PEC buffer call read
26 * ---------------------------------------------------------------------------
27 * 82801AA (ICH) 0x2413 16 no no no no
28 * 82801AB (ICH0) 0x2423 16 no no no no
29 * 82801BA (ICH2) 0x2443 16 no no no no
30 * 82801CA (ICH3) 0x2483 32 soft no no no
31 * 82801DB (ICH4) 0x24c3 32 hard yes no no
32 * 82801E (ICH5) 0x24d3 32 hard yes yes yes
33 * 6300ESB 0x25a4 32 hard yes yes yes
34 * 82801F (ICH6) 0x266a 32 hard yes yes yes
35 * 6310ESB/6320ESB 0x269b 32 hard yes yes yes
36 * 82801G (ICH7) 0x27da 32 hard yes yes yes
37 * 82801H (ICH8) 0x283e 32 hard yes yes yes
38 * 82801I (ICH9) 0x2930 32 hard yes yes yes
39 * EP80579 (Tolapai) 0x5032 32 hard yes yes yes
40 * ICH10 0x3a30 32 hard yes yes yes
41 * ICH10 0x3a60 32 hard yes yes yes
42 * 5/3400 Series (PCH) 0x3b30 32 hard yes yes yes
43 * 6 Series (PCH) 0x1c22 32 hard yes yes yes
44 * Patsburg (PCH) 0x1d22 32 hard yes yes yes
45 * Patsburg (PCH) IDF 0x1d70 32 hard yes yes yes
46 * Patsburg (PCH) IDF 0x1d71 32 hard yes yes yes
47 * Patsburg (PCH) IDF 0x1d72 32 hard yes yes yes
48 * DH89xxCC (PCH) 0x2330 32 hard yes yes yes
49 * Panther Point (PCH) 0x1e22 32 hard yes yes yes
50 * Lynx Point (PCH) 0x8c22 32 hard yes yes yes
51 * Lynx Point-LP (PCH) 0x9c22 32 hard yes yes yes
52 * Avoton (SOC) 0x1f3c 32 hard yes yes yes
53 * Wellsburg (PCH) 0x8d22 32 hard yes yes yes
54 * Wellsburg (PCH) MS 0x8d7d 32 hard yes yes yes
55 * Wellsburg (PCH) MS 0x8d7e 32 hard yes yes yes
56 * Wellsburg (PCH) MS 0x8d7f 32 hard yes yes yes
57 * Coleto Creek (PCH) 0x23b0 32 hard yes yes yes
Jean Delvareb299de82014-07-17 15:04:41 +020058 * Wildcat Point (PCH) 0x8ca2 32 hard yes yes yes
Jean Delvarece316112014-07-17 15:03:24 +020059 * Wildcat Point-LP (PCH) 0x9ca2 32 hard yes yes yes
60 * BayTrail (SOC) 0x0f12 32 hard yes yes yes
james.d.ralston@intel.com3e27a842014-10-13 15:20:24 -070061 * Sunrise Point-H (PCH) 0xa123 32 hard yes yes yes
Devin Ryles3eee17992014-11-05 16:30:03 -050062 * Sunrise Point-LP (PCH) 0x9d23 32 hard yes yes yes
Jean Delvarece316112014-07-17 15:03:24 +020063 *
64 * Features supported by this driver:
65 * Software PEC no
66 * Hardware PEC yes
67 * Block buffer yes
68 * Block process call transaction no
69 * I2C block read transaction yes (doesn't use the block buffer)
70 * Slave mode no
71 * Interrupt processing yes
72 *
73 * See the file Documentation/i2c/busses/i2c-i801 for details.
74 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Daniel Kurtz636752b2012-07-24 14:13:58 +020076#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/module.h>
78#include <linux/pci.h>
79#include <linux/kernel.h>
80#include <linux/stddef.h>
81#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/ioport.h>
83#include <linux/init.h>
84#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020085#include <linux/acpi.h>
Jean Delvare1561bfe2009-01-07 14:29:17 +010086#include <linux/io.h>
Hans de Goedefa5bfab2009-03-30 21:46:44 +020087#include <linux/dmi.h>
Ben Hutchings665a96b2011-01-10 22:11:22 +010088#include <linux/slab.h>
Daniel Kurtz636752b2012-07-24 14:13:58 +020089#include <linux/wait.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020090#include <linux/err.h>
91
Jean Delvare79e3e5b2012-10-28 21:37:01 +010092#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
93 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +020094#include <linux/gpio.h>
95#include <linux/i2c-mux-gpio.h>
96#include <linux/platform_device.h>
97#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* I801 SMBus address offsets */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100100#define SMBHSTSTS(p) (0 + (p)->smba)
101#define SMBHSTCNT(p) (2 + (p)->smba)
102#define SMBHSTCMD(p) (3 + (p)->smba)
103#define SMBHSTADD(p) (4 + (p)->smba)
104#define SMBHSTDAT0(p) (5 + (p)->smba)
105#define SMBHSTDAT1(p) (6 + (p)->smba)
106#define SMBBLKDAT(p) (7 + (p)->smba)
107#define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */
108#define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */
109#define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/* PCI Address Constants */
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200112#define SMBBAR 4
Jean Delvareaeb8a3d2014-11-12 10:25:37 +0100113#define SMBPCICTL 0x004
Daniel Kurtz636752b2012-07-24 14:13:58 +0200114#define SMBPCISTS 0x006
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define SMBHSTCFG 0x040
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Daniel Kurtz636752b2012-07-24 14:13:58 +0200117/* Host status bits for SMBPCISTS */
118#define SMBPCISTS_INTS 0x08
119
Jean Delvareaeb8a3d2014-11-12 10:25:37 +0100120/* Control bits for SMBPCICTL */
121#define SMBPCICTL_INTDIS 0x0400
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/* Host configuration bits for SMBHSTCFG */
124#define SMBHSTCFG_HST_EN 1
125#define SMBHSTCFG_SMB_SMI_EN 2
126#define SMBHSTCFG_I2C_EN 4
127
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300128/* Auxiliary control register bits, ICH4+ only */
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200129#define SMBAUXCTL_CRC 1
130#define SMBAUXCTL_E32B 2
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* Other settings */
Jean Delvare84c1af42012-03-26 21:47:19 +0200133#define MAX_RETRIES 400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135/* I801 command constants */
136#define I801_QUICK 0x00
137#define I801_BYTE 0x04
138#define I801_BYTE_DATA 0x08
139#define I801_WORD_DATA 0x0C
Jean Delvareae7b0492008-01-27 18:14:49 +0100140#define I801_PROC_CALL 0x10 /* unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#define I801_BLOCK_DATA 0x14
Jean Delvare63420642008-01-27 18:14:50 +0100142#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200143
144/* I801 Host Control register bits */
145#define SMBHSTCNT_INTREN 0x01
146#define SMBHSTCNT_KILL 0x02
147#define SMBHSTCNT_LAST_BYTE 0x20
148#define SMBHSTCNT_START 0x40
149#define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200151/* I801 Hosts Status register bits */
152#define SMBHSTSTS_BYTE_DONE 0x80
153#define SMBHSTSTS_INUSE_STS 0x40
154#define SMBHSTSTS_SMBALERT_STS 0x20
155#define SMBHSTSTS_FAILED 0x10
156#define SMBHSTSTS_BUS_ERR 0x08
157#define SMBHSTSTS_DEV_ERR 0x04
158#define SMBHSTSTS_INTR 0x02
159#define SMBHSTSTS_HOST_BUSY 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Daniel Kurtz70a1cc12012-07-24 14:13:58 +0200161#define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \
162 SMBHSTSTS_DEV_ERR)
163
164#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
165 STATUS_ERROR_FLAGS)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200166
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200167/* Older devices have their ID defined in <linux/pci_ids.h> */
Jean Delvarece316112014-07-17 15:03:24 +0200168#define PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS 0x0f12
Alan Cox39e8e302014-08-19 17:37:28 +0300169#define PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS 0x2292
Jean Delvarece316112014-07-17 15:03:24 +0200170#define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
171#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100172/* Patsburg also has three 'Integrated Device Function' SMBus controllers */
Jean Delvarece316112014-07-17 15:03:24 +0200173#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70
174#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71
175#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72
176#define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22
177#define PCI_DEVICE_ID_INTEL_AVOTON_SMBUS 0x1f3c
178#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
179#define PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS 0x23b0
180#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
181#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
Jean Delvareb299de82014-07-17 15:04:41 +0200182#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_SMBUS 0x8ca2
Jean Delvarece316112014-07-17 15:03:24 +0200183#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS 0x8d22
184#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0 0x8d7d
185#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1 0x8d7e
186#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2 0x8d7f
187#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
James Ralstonafc65922013-11-04 09:29:48 -0800188#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS 0x9ca2
james.d.ralston@intel.com3e27a842014-10-13 15:20:24 -0700189#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS 0xa123
Devin Ryles3eee17992014-11-05 16:30:03 -0500190#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS 0x9d23
David Woodhouse55fee8d2010-10-31 21:07:00 +0100191
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200192struct i801_mux_config {
193 char *gpio_chip;
194 unsigned values[3];
195 int n_values;
196 unsigned classes[3];
197 unsigned gpios[2]; /* Relative to gpio_chip->base */
198 int n_gpios;
199};
200
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100201struct i801_priv {
202 struct i2c_adapter adapter;
203 unsigned long smba;
204 unsigned char original_hstcfg;
205 struct pci_dev *pci_dev;
206 unsigned int features;
Daniel Kurtz636752b2012-07-24 14:13:58 +0200207
208 /* isr processing */
209 wait_queue_head_t waitq;
210 u8 status;
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200211
212 /* Command state used by isr for byte-by-byte block transactions */
213 u8 cmd;
214 bool is_read;
215 int count;
216 int len;
217 u8 *data;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200218
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100219#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
220 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200221 const struct i801_mux_config *mux_drvdata;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200222 struct platform_device *mux_pdev;
223#endif
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100224};
225
Jean Delvared6072f82005-09-25 16:37:04 +0200226static struct pci_driver i801_driver;
Jean Delvare369f6f42008-01-27 18:14:50 +0100227
228#define FEATURE_SMBUS_PEC (1 << 0)
229#define FEATURE_BLOCK_BUFFER (1 << 1)
230#define FEATURE_BLOCK_PROC (1 << 2)
231#define FEATURE_I2C_BLOCK_READ (1 << 3)
Daniel Kurtz636752b2012-07-24 14:13:58 +0200232#define FEATURE_IRQ (1 << 4)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200233/* Not really a feature, but it's convenient to handle it as such */
234#define FEATURE_IDF (1 << 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Jean Delvareadff6872010-05-21 18:40:54 +0200236static const char *i801_feature_names[] = {
237 "SMBus PEC",
238 "Block buffer",
239 "Block process call",
240 "I2C block read",
Daniel Kurtz636752b2012-07-24 14:13:58 +0200241 "Interrupt",
Jean Delvareadff6872010-05-21 18:40:54 +0200242};
243
244static unsigned int disable_features;
245module_param(disable_features, uint, S_IRUGO | S_IWUSR);
Jean Delvare53229342013-05-15 02:44:10 +0000246MODULE_PARM_DESC(disable_features, "Disable selected driver features:\n"
247 "\t\t 0x01 disable SMBus PEC\n"
248 "\t\t 0x02 disable the block buffer\n"
249 "\t\t 0x08 disable the I2C block read functionality\n"
250 "\t\t 0x10 don't use interrupts ");
Jean Delvareadff6872010-05-21 18:40:54 +0200251
Jean Delvarecf898dc2008-07-14 22:38:33 +0200252/* Make sure the SMBus host is ready to start transmitting.
253 Return 0 if it is, -EBUSY if it is not. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100254static int i801_check_pre(struct i801_priv *priv)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200255{
256 int status;
257
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100258 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200259 if (status & SMBHSTSTS_HOST_BUSY) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100260 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200261 return -EBUSY;
262 }
263
264 status &= STATUS_FLAGS;
265 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100266 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
Jean Delvarecf898dc2008-07-14 22:38:33 +0200267 status);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100268 outb_p(status, SMBHSTSTS(priv));
269 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200270 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100271 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200272 "Failed clearing status flags (%02x)\n",
273 status);
274 return -EBUSY;
275 }
276 }
277
278 return 0;
279}
280
Jean Delvare6cad93c2012-07-24 14:13:58 +0200281/*
282 * Convert the status register to an error code, and clear it.
283 * Note that status only contains the bits we want to clear, not the
284 * actual register value.
285 */
286static int i801_check_post(struct i801_priv *priv, int status)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200287{
288 int result = 0;
289
Daniel Kurtz636752b2012-07-24 14:13:58 +0200290 /*
291 * If the SMBus is still busy, we give up
292 * Note: This timeout condition only happens when using polling
293 * transactions. For interrupt operation, NAK/timeout is indicated by
294 * DEV_ERR.
295 */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200296 if (unlikely(status < 0)) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100297 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200298 /* try to stop the current command */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100299 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
300 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
301 SMBHSTCNT(priv));
Jean Delvare84c1af42012-03-26 21:47:19 +0200302 usleep_range(1000, 2000);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100303 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
304 SMBHSTCNT(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200305
306 /* Check if it worked */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100307 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200308 if ((status & SMBHSTSTS_HOST_BUSY) ||
309 !(status & SMBHSTSTS_FAILED))
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100310 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200311 "Failed terminating the transaction\n");
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100312 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200313 return -ETIMEDOUT;
314 }
315
316 if (status & SMBHSTSTS_FAILED) {
317 result = -EIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100318 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200319 }
320 if (status & SMBHSTSTS_DEV_ERR) {
321 result = -ENXIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100322 dev_dbg(&priv->pci_dev->dev, "No response\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200323 }
324 if (status & SMBHSTSTS_BUS_ERR) {
325 result = -EAGAIN;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100326 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200327 }
328
Jean Delvare6cad93c2012-07-24 14:13:58 +0200329 /* Clear status flags except BYTE_DONE, to be cleared by caller */
330 outb_p(status, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200331
332 return result;
333}
334
Jean Delvare6cad93c2012-07-24 14:13:58 +0200335/* Wait for BUSY being cleared and either INTR or an error flag being set */
336static int i801_wait_intr(struct i801_priv *priv)
337{
338 int timeout = 0;
339 int status;
340
341 /* We will always wait for a fraction of a second! */
342 do {
343 usleep_range(250, 500);
344 status = inb_p(SMBHSTSTS(priv));
345 } while (((status & SMBHSTSTS_HOST_BUSY) ||
346 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
347 (timeout++ < MAX_RETRIES));
348
349 if (timeout > MAX_RETRIES) {
350 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
351 return -ETIMEDOUT;
352 }
353 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
354}
355
356/* Wait for either BYTE_DONE or an error flag being set */
357static int i801_wait_byte_done(struct i801_priv *priv)
358{
359 int timeout = 0;
360 int status;
361
362 /* We will always wait for a fraction of a second! */
363 do {
364 usleep_range(250, 500);
365 status = inb_p(SMBHSTSTS(priv));
366 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
367 (timeout++ < MAX_RETRIES));
368
369 if (timeout > MAX_RETRIES) {
370 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
371 return -ETIMEDOUT;
372 }
373 return status & STATUS_ERROR_FLAGS;
374}
375
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100376static int i801_transaction(struct i801_priv *priv, int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Jean Delvare2b738092008-07-14 22:38:32 +0200378 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200379 int result;
Jean Delvareb3b8df92014-11-12 10:20:40 +0100380 const struct i2c_adapter *adap = &priv->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100382 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200383 if (result < 0)
384 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Daniel Kurtz636752b2012-07-24 14:13:58 +0200386 if (priv->features & FEATURE_IRQ) {
387 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
388 SMBHSTCNT(priv));
Jean Delvareb3b8df92014-11-12 10:20:40 +0100389 result = wait_event_timeout(priv->waitq,
390 (status = priv->status),
391 adap->timeout);
392 if (!result) {
393 status = -ETIMEDOUT;
394 dev_warn(&priv->pci_dev->dev,
395 "Timeout waiting for interrupt!\n");
396 }
Daniel Kurtz636752b2012-07-24 14:13:58 +0200397 priv->status = 0;
398 return i801_check_post(priv, status);
399 }
400
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200401 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
Daniel Kurtz37af8712012-07-24 14:13:58 +0200402 * SMBSCMD are passed in xact */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200403 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Jean Delvare6cad93c2012-07-24 14:13:58 +0200405 status = i801_wait_intr(priv);
406 return i801_check_post(priv, status);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200407}
408
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100409static int i801_block_transaction_by_block(struct i801_priv *priv,
410 union i2c_smbus_data *data,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200411 char read_write, int hwpec)
412{
413 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200414 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200415
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100416 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200417
418 /* Use 32-byte buffer to process this transaction */
419 if (read_write == I2C_SMBUS_WRITE) {
420 len = data->block[0];
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100421 outb_p(len, SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200422 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100423 outb_p(data->block[i+1], SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200424 }
425
Daniel Kurtz37af8712012-07-24 14:13:58 +0200426 status = i801_transaction(priv, I801_BLOCK_DATA |
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200427 (hwpec ? SMBHSTCNT_PEC_EN : 0));
David Brownell97140342008-07-14 22:38:25 +0200428 if (status)
429 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200430
431 if (read_write == I2C_SMBUS_READ) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100432 len = inb_p(SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200433 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200434 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200435
436 data->block[0] = len;
437 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100438 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200439 }
440 return 0;
441}
442
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200443static void i801_isr_byte_done(struct i801_priv *priv)
444{
445 if (priv->is_read) {
446 /* For SMBus block reads, length is received with first byte */
447 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
448 (priv->count == 0)) {
449 priv->len = inb_p(SMBHSTDAT0(priv));
450 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
451 dev_err(&priv->pci_dev->dev,
452 "Illegal SMBus block read size %d\n",
453 priv->len);
454 /* FIXME: Recover */
455 priv->len = I2C_SMBUS_BLOCK_MAX;
456 } else {
457 dev_dbg(&priv->pci_dev->dev,
458 "SMBus block read size is %d\n",
459 priv->len);
460 }
461 priv->data[-1] = priv->len;
462 }
463
464 /* Read next byte */
465 if (priv->count < priv->len)
466 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
467 else
468 dev_dbg(&priv->pci_dev->dev,
469 "Discarding extra byte on block read\n");
470
471 /* Set LAST_BYTE for last byte of read transaction */
472 if (priv->count == priv->len - 1)
473 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
474 SMBHSTCNT(priv));
475 } else if (priv->count < priv->len - 1) {
476 /* Write next byte, except for IRQ after last byte */
477 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
478 }
479
480 /* Clear BYTE_DONE to continue with next byte */
481 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
482}
483
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200484/*
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200485 * There are two kinds of interrupts:
486 *
487 * 1) i801 signals transaction completion with one of these interrupts:
488 * INTR - Success
489 * DEV_ERR - Invalid command, NAK or communication timeout
490 * BUS_ERR - SMI# transaction collision
491 * FAILED - transaction was canceled due to a KILL request
492 * When any of these occur, update ->status and wake up the waitq.
493 * ->status must be cleared before kicking off the next transaction.
494 *
495 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
496 * occurs for each byte of a byte-by-byte to prepare the next byte.
Daniel Kurtz636752b2012-07-24 14:13:58 +0200497 */
498static irqreturn_t i801_isr(int irq, void *dev_id)
499{
500 struct i801_priv *priv = dev_id;
501 u16 pcists;
502 u8 status;
503
504 /* Confirm this is our interrupt */
505 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
506 if (!(pcists & SMBPCISTS_INTS))
507 return IRQ_NONE;
508
509 status = inb_p(SMBHSTSTS(priv));
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200510 if (status & SMBHSTSTS_BYTE_DONE)
511 i801_isr_byte_done(priv);
512
Daniel Kurtz636752b2012-07-24 14:13:58 +0200513 /*
514 * Clear irq sources and report transaction result.
515 * ->status must be cleared before the next transaction is started.
516 */
517 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
518 if (status) {
519 outb_p(status, SMBHSTSTS(priv));
520 priv->status |= status;
521 wake_up(&priv->waitq);
522 }
523
524 return IRQ_HANDLED;
525}
526
527/*
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200528 * For "byte-by-byte" block transactions:
529 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
530 * I2C read uses cmd=I801_I2C_BLOCK_DATA
531 */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100532static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
533 union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100534 char read_write, int command,
535 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 int i, len;
538 int smbcmd;
Jean Delvare2b738092008-07-14 22:38:32 +0200539 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200540 int result;
Jean Delvareb3b8df92014-11-12 10:20:40 +0100541 const struct i2c_adapter *adap = &priv->adapter;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200542
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100543 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200544 if (result < 0)
545 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200547 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100550 outb_p(len, SMBHSTDAT0(priv));
551 outb_p(data->block[1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200554 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
555 read_write == I2C_SMBUS_READ)
556 smbcmd = I801_I2C_BLOCK_DATA;
557 else
558 smbcmd = I801_BLOCK_DATA;
559
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200560 if (priv->features & FEATURE_IRQ) {
561 priv->is_read = (read_write == I2C_SMBUS_READ);
562 if (len == 1 && priv->is_read)
563 smbcmd |= SMBHSTCNT_LAST_BYTE;
564 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
565 priv->len = len;
566 priv->count = 0;
567 priv->data = &data->block[1];
568
569 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
Jean Delvareb3b8df92014-11-12 10:20:40 +0100570 result = wait_event_timeout(priv->waitq,
571 (status = priv->status),
572 adap->timeout);
573 if (!result) {
574 status = -ETIMEDOUT;
575 dev_warn(&priv->pci_dev->dev,
576 "Timeout waiting for interrupt!\n");
577 }
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200578 priv->status = 0;
579 return i801_check_post(priv, status);
580 }
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 for (i = 1; i <= len; i++) {
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200583 if (i == len && read_write == I2C_SMBUS_READ)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200584 smbcmd |= SMBHSTCNT_LAST_BYTE;
Daniel Kurtz37af8712012-07-24 14:13:58 +0200585 outb_p(smbcmd, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (i == 1)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200588 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100589 SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Jean Delvare6cad93c2012-07-24 14:13:58 +0200591 status = i801_wait_byte_done(priv);
592 if (status)
593 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Jean Delvare63420642008-01-27 18:14:50 +0100595 if (i == 1 && read_write == I2C_SMBUS_READ
596 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100597 len = inb_p(SMBHSTDAT0(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200598 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100599 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200600 "Illegal SMBus block read size %d\n",
601 len);
602 /* Recover */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100603 while (inb_p(SMBHSTSTS(priv)) &
604 SMBHSTSTS_HOST_BUSY)
605 outb_p(SMBHSTSTS_BYTE_DONE,
606 SMBHSTSTS(priv));
607 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
David Brownell97140342008-07-14 22:38:25 +0200608 return -EPROTO;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 data->block[0] = len;
611 }
612
613 /* Retrieve/store value in SMBBLKDAT */
614 if (read_write == I2C_SMBUS_READ)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100615 data->block[i] = inb_p(SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100617 outb_p(data->block[i+1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Jean Delvarecf898dc2008-07-14 22:38:33 +0200619 /* signals SMBBLKDAT ready */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200620 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200621 }
Jean Delvarecf898dc2008-07-14 22:38:33 +0200622
Jean Delvare6cad93c2012-07-24 14:13:58 +0200623 status = i801_wait_intr(priv);
624exit:
625 return i801_check_post(priv, status);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200626}
627
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100628static int i801_set_block_buffer_mode(struct i801_priv *priv)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200629{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100630 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
631 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200632 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200633 return 0;
634}
635
636/* Block transaction function */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100637static int i801_block_transaction(struct i801_priv *priv,
638 union i2c_smbus_data *data, char read_write,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200639 int command, int hwpec)
640{
641 int result = 0;
642 unsigned char hostc;
643
644 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
645 if (read_write == I2C_SMBUS_WRITE) {
646 /* set I2C_EN bit in configuration register */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100647 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
648 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200649 hostc | SMBHSTCFG_I2C_EN);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100650 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
651 dev_err(&priv->pci_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100652 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200653 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
Jean Delvare63420642008-01-27 18:14:50 +0100657 if (read_write == I2C_SMBUS_WRITE
658 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200659 if (data->block[0] < 1)
660 data->block[0] = 1;
661 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
662 data->block[0] = I2C_SMBUS_BLOCK_MAX;
663 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100664 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200665 }
666
Jean Delvarec074c392010-03-13 20:56:53 +0100667 /* Experience has shown that the block buffer can only be used for
668 SMBus (not I2C) block transactions, even though the datasheet
669 doesn't mention this limitation. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100670 if ((priv->features & FEATURE_BLOCK_BUFFER)
Jean Delvarec074c392010-03-13 20:56:53 +0100671 && command != I2C_SMBUS_I2C_BLOCK_DATA
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100672 && i801_set_block_buffer_mode(priv) == 0)
673 result = i801_block_transaction_by_block(priv, data,
674 read_write, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200675 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100676 result = i801_block_transaction_byte_by_byte(priv, data,
677 read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100678 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200679
Jean Delvare63420642008-01-27 18:14:50 +0100680 if (command == I2C_SMBUS_I2C_BLOCK_DATA
681 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* restore saved configuration register value */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100683 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 return result;
686}
687
David Brownell97140342008-07-14 22:38:25 +0200688/* Return negative errno on error. */
Ivo Manca3fb21c62010-05-21 18:40:55 +0200689static s32 i801_access(struct i2c_adapter *adap, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 unsigned short flags, char read_write, u8 command,
Ivo Manca3fb21c62010-05-21 18:40:55 +0200691 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200693 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int block = 0;
695 int ret, xact = 0;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100696 struct i801_priv *priv = i2c_get_adapdata(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100698 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200699 && size != I2C_SMBUS_QUICK
700 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 switch (size) {
703 case I2C_SMBUS_QUICK:
704 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100705 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 xact = I801_QUICK;
707 break;
708 case I2C_SMBUS_BYTE:
709 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100710 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100712 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 xact = I801_BYTE;
714 break;
715 case I2C_SMBUS_BYTE_DATA:
716 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100717 SMBHSTADD(priv));
718 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100720 outb_p(data->byte, SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 xact = I801_BYTE_DATA;
722 break;
723 case I2C_SMBUS_WORD_DATA:
724 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100725 SMBHSTADD(priv));
726 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100728 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
729 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731 xact = I801_WORD_DATA;
732 break;
733 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100735 SMBHSTADD(priv));
736 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 block = 1;
738 break;
Jean Delvare63420642008-01-27 18:14:50 +0100739 case I2C_SMBUS_I2C_BLOCK_DATA:
740 /* NB: page 240 of ICH5 datasheet shows that the R/#W
741 * bit should be cleared here, even when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100742 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100743 if (read_write == I2C_SMBUS_READ) {
744 /* NB: page 240 of ICH5 datasheet also shows
745 * that DATA1 is the cmd field when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100746 outb_p(command, SMBHSTDAT1(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100747 } else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100748 outb_p(command, SMBHSTCMD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100749 block = 1;
750 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100752 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
753 size);
David Brownell97140342008-07-14 22:38:25 +0200754 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200757 if (hwpec) /* enable/disable hardware PEC */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100758 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200759 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100760 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
761 SMBAUXCTL(priv));
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200762
Ivo Manca3fb21c62010-05-21 18:40:55 +0200763 if (block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100764 ret = i801_block_transaction(priv, data, read_write, size,
765 hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200766 else
Daniel Kurtz37af8712012-07-24 14:13:58 +0200767 ret = i801_transaction(priv, xact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Jean Delvarec79cfba2006-04-20 02:43:18 -0700769 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200770 time, so we forcibly disable it after every transaction. Turn off
771 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100772 if (hwpec || block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100773 outb_p(inb_p(SMBAUXCTL(priv)) &
774 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarec79cfba2006-04-20 02:43:18 -0700775
Ivo Manca3fb21c62010-05-21 18:40:55 +0200776 if (block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return ret;
Ivo Manca3fb21c62010-05-21 18:40:55 +0200778 if (ret)
David Brownell97140342008-07-14 22:38:25 +0200779 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
781 return 0;
782
783 switch (xact & 0x7f) {
784 case I801_BYTE: /* Result put in SMBHSTDAT0 */
785 case I801_BYTE_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100786 data->byte = inb_p(SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 break;
788 case I801_WORD_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100789 data->word = inb_p(SMBHSTDAT0(priv)) +
790 (inb_p(SMBHSTDAT1(priv)) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 break;
792 }
793 return 0;
794}
795
796
797static u32 i801_func(struct i2c_adapter *adapter)
798{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100799 struct i801_priv *priv = i2c_get_adapdata(adapter);
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100802 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
803 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100804 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
805 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
Jean Delvare63420642008-01-27 18:14:50 +0100806 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Jean Delvare8f9082c2006-09-03 22:39:46 +0200809static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 .smbus_xfer = i801_access,
811 .functionality = i801_func,
812};
813
Jingoo Han392debf2013-12-03 08:11:20 +0900814static const struct pci_device_id i801_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
816 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
817 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
818 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
819 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
820 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
821 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
822 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
823 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700824 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800825 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800826 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700827 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100828 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
829 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700830 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
831 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
Seth Heasleye30d9852010-10-31 21:06:59 +0100832 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
David Woodhouse55fee8d2010-10-31 21:07:00 +0100833 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
834 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
835 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
Seth Heasley662cda82011-03-20 14:50:53 +0100836 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
Seth Heasley6e2a8512011-05-24 20:58:49 +0200837 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
Seth Heasley062737f2012-03-26 21:47:19 +0200838 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
James Ralston4a8f1dd2012-09-10 10:14:02 +0200839 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
Seth Heasleyc2db409c2013-01-30 15:25:32 +0000840 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMBUS) },
James Ralstona3fc0ff2013-02-14 09:15:33 +0000841 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS) },
842 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0) },
843 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1) },
844 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2) },
Seth Heasleyf39901c2013-06-19 16:59:57 -0700845 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS) },
Jean Delvareb299de82014-07-17 15:04:41 +0200846 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_SMBUS) },
James Ralstonafc65922013-11-04 09:29:48 -0800847 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS) },
Chew, Kean ho1b31e9b2014-03-01 00:03:56 +0800848 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS) },
Alan Cox39e8e302014-08-19 17:37:28 +0300849 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS) },
james.d.ralston@intel.com3e27a842014-10-13 15:20:24 -0700850 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS) },
Devin Ryles3eee17992014-11-05 16:30:03 -0500851 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 { 0, }
853};
854
Ivo Manca3fb21c62010-05-21 18:40:55 +0200855MODULE_DEVICE_TABLE(pci, i801_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Jean Delvare8eacfce2011-05-24 20:58:49 +0200857#if defined CONFIG_X86 && defined CONFIG_DMI
Jean Delvare1561bfe2009-01-07 14:29:17 +0100858static unsigned char apanel_addr;
859
860/* Scan the system ROM for the signature "FJKEYINF" */
861static __init const void __iomem *bios_signature(const void __iomem *bios)
862{
863 ssize_t offset;
864 const unsigned char signature[] = "FJKEYINF";
865
866 for (offset = 0; offset < 0x10000; offset += 0x10) {
867 if (check_signature(bios + offset, signature,
868 sizeof(signature)-1))
869 return bios + offset;
870 }
871 return NULL;
872}
873
874static void __init input_apanel_init(void)
875{
876 void __iomem *bios;
877 const void __iomem *p;
878
879 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
880 p = bios_signature(bios);
881 if (p) {
882 /* just use the first address */
883 apanel_addr = readb(p + 8 + 3) >> 1;
884 }
885 iounmap(bios);
886}
Jean Delvare1561bfe2009-01-07 14:29:17 +0100887
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200888struct dmi_onboard_device_info {
889 const char *name;
890 u8 type;
891 unsigned short i2c_addr;
892 const char *i2c_type;
893};
894
Bill Pemberton0b255e92012-11-27 15:59:38 -0500895static const struct dmi_onboard_device_info dmi_devices[] = {
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200896 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
897 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
898 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
899};
900
Bill Pemberton0b255e92012-11-27 15:59:38 -0500901static void dmi_check_onboard_device(u8 type, const char *name,
902 struct i2c_adapter *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200903{
904 int i;
905 struct i2c_board_info info;
906
907 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
908 /* & ~0x80, ignore enabled/disabled bit */
909 if ((type & ~0x80) != dmi_devices[i].type)
910 continue;
Jean Delvarefaabd472010-07-09 16:22:51 +0200911 if (strcasecmp(name, dmi_devices[i].name))
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200912 continue;
913
914 memset(&info, 0, sizeof(struct i2c_board_info));
915 info.addr = dmi_devices[i].i2c_addr;
916 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
917 i2c_new_device(adap, &info);
918 break;
919 }
920}
921
922/* We use our own function to check for onboard devices instead of
923 dmi_find_device() as some buggy BIOS's have the devices we are interested
924 in marked as disabled */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500925static void dmi_check_onboard_devices(const struct dmi_header *dm, void *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200926{
927 int i, count;
928
929 if (dm->type != 10)
930 return;
931
932 count = (dm->length - sizeof(struct dmi_header)) / 2;
933 for (i = 0; i < count; i++) {
934 const u8 *d = (char *)(dm + 1) + (i * 2);
935 const char *name = ((char *) dm) + dm->length;
936 u8 type = d[0];
937 u8 s = d[1];
938
939 if (!s)
940 continue;
941 s--;
942 while (s > 0 && name[0]) {
943 name += strlen(name) + 1;
944 s--;
945 }
946 if (name[0] == 0) /* Bogus string reference */
947 continue;
948
949 dmi_check_onboard_device(type, name, adap);
950 }
951}
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200952
Jean Delvaree7198fb2011-05-24 20:58:49 +0200953/* Register optional slaves */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500954static void i801_probe_optional_slaves(struct i801_priv *priv)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200955{
956 /* Only register slaves on main SMBus channel */
957 if (priv->features & FEATURE_IDF)
958 return;
959
Jean Delvaree7198fb2011-05-24 20:58:49 +0200960 if (apanel_addr) {
961 struct i2c_board_info info;
962
963 memset(&info, 0, sizeof(struct i2c_board_info));
964 info.addr = apanel_addr;
965 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
966 i2c_new_device(&priv->adapter, &info);
967 }
Jean Delvare8eacfce2011-05-24 20:58:49 +0200968
Jean Delvaree7198fb2011-05-24 20:58:49 +0200969 if (dmi_name_in_vendors("FUJITSU"))
970 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
Jean Delvaree7198fb2011-05-24 20:58:49 +0200971}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200972#else
973static void __init input_apanel_init(void) {}
Bill Pemberton0b255e92012-11-27 15:59:38 -0500974static void i801_probe_optional_slaves(struct i801_priv *priv) {}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200975#endif /* CONFIG_X86 && CONFIG_DMI */
Jean Delvaree7198fb2011-05-24 20:58:49 +0200976
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100977#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
978 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200979static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
980 .gpio_chip = "gpio_ich",
981 .values = { 0x02, 0x03 },
982 .n_values = 2,
983 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
984 .gpios = { 52, 53 },
985 .n_gpios = 2,
986};
987
988static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
989 .gpio_chip = "gpio_ich",
990 .values = { 0x02, 0x03, 0x01 },
991 .n_values = 3,
992 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
993 .gpios = { 52, 53 },
994 .n_gpios = 2,
995};
996
Bill Pemberton0b255e92012-11-27 15:59:38 -0500997static const struct dmi_system_id mux_dmi_table[] = {
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200998 {
999 .matches = {
1000 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1001 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
1002 },
1003 .driver_data = &i801_mux_config_asus_z8_d12,
1004 },
1005 {
1006 .matches = {
1007 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1008 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"),
1009 },
1010 .driver_data = &i801_mux_config_asus_z8_d12,
1011 },
1012 {
1013 .matches = {
1014 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1015 DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"),
1016 },
1017 .driver_data = &i801_mux_config_asus_z8_d12,
1018 },
1019 {
1020 .matches = {
1021 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1022 DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"),
1023 },
1024 .driver_data = &i801_mux_config_asus_z8_d12,
1025 },
1026 {
1027 .matches = {
1028 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1029 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
1030 },
1031 .driver_data = &i801_mux_config_asus_z8_d12,
1032 },
1033 {
1034 .matches = {
1035 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1036 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
1037 },
1038 .driver_data = &i801_mux_config_asus_z8_d12,
1039 },
1040 {
1041 .matches = {
1042 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1043 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
1044 },
1045 .driver_data = &i801_mux_config_asus_z8_d18,
1046 },
1047 {
1048 .matches = {
1049 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1050 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
1051 },
1052 .driver_data = &i801_mux_config_asus_z8_d18,
1053 },
1054 {
1055 .matches = {
1056 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1057 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1058 },
1059 .driver_data = &i801_mux_config_asus_z8_d12,
1060 },
1061 { }
1062};
1063
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001064/* Setup multiplexing if needed */
Bill Pemberton0b255e92012-11-27 15:59:38 -05001065static int i801_add_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001066{
1067 struct device *dev = &priv->adapter.dev;
1068 const struct i801_mux_config *mux_config;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001069 struct i2c_mux_gpio_platform_data gpio_data;
Jean Delvaref82b8622012-10-05 22:23:54 +02001070 int err;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001071
1072 if (!priv->mux_drvdata)
1073 return 0;
1074 mux_config = priv->mux_drvdata;
1075
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001076 /* Prepare the platform data */
1077 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1078 gpio_data.parent = priv->adapter.nr;
1079 gpio_data.values = mux_config->values;
1080 gpio_data.n_values = mux_config->n_values;
1081 gpio_data.classes = mux_config->classes;
Jean Delvaref82b8622012-10-05 22:23:54 +02001082 gpio_data.gpio_chip = mux_config->gpio_chip;
1083 gpio_data.gpios = mux_config->gpios;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001084 gpio_data.n_gpios = mux_config->n_gpios;
1085 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1086
1087 /* Register the mux device */
1088 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
Jean Delvaref82b8622012-10-05 22:23:54 +02001089 PLATFORM_DEVID_AUTO, &gpio_data,
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001090 sizeof(struct i2c_mux_gpio_platform_data));
1091 if (IS_ERR(priv->mux_pdev)) {
1092 err = PTR_ERR(priv->mux_pdev);
1093 priv->mux_pdev = NULL;
1094 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1095 return err;
1096 }
1097
1098 return 0;
1099}
1100
Bill Pemberton0b255e92012-11-27 15:59:38 -05001101static void i801_del_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001102{
1103 if (priv->mux_pdev)
1104 platform_device_unregister(priv->mux_pdev);
1105}
1106
Bill Pemberton0b255e92012-11-27 15:59:38 -05001107static unsigned int i801_get_adapter_class(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001108{
1109 const struct dmi_system_id *id;
1110 const struct i801_mux_config *mux_config;
1111 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1112 int i;
1113
1114 id = dmi_first_match(mux_dmi_table);
1115 if (id) {
Jean Delvare28901f52012-10-28 21:37:01 +01001116 /* Remove branch classes from trunk */
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001117 mux_config = id->driver_data;
1118 for (i = 0; i < mux_config->n_values; i++)
1119 class &= ~mux_config->classes[i];
1120
1121 /* Remember for later */
1122 priv->mux_drvdata = mux_config;
1123 }
1124
1125 return class;
1126}
1127#else
1128static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1129static inline void i801_del_mux(struct i801_priv *priv) { }
1130
1131static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1132{
1133 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1134}
1135#endif
1136
Bill Pemberton0b255e92012-11-27 15:59:38 -05001137static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001139 unsigned char temp;
Jean Delvareadff6872010-05-21 18:40:54 +02001140 int err, i;
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001141 struct i801_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001143 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1144 if (!priv)
1145 return -ENOMEM;
1146
1147 i2c_set_adapdata(&priv->adapter, priv);
1148 priv->adapter.owner = THIS_MODULE;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001149 priv->adapter.class = i801_get_adapter_class(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001150 priv->adapter.algo = &smbus_algorithm;
1151
1152 priv->pci_dev = dev;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001153 switch (dev->device) {
Jean Delvaree7198fb2011-05-24 20:58:49 +02001154 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1155 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1156 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
James Ralstona3fc0ff2013-02-14 09:15:33 +00001157 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0:
1158 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1:
1159 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2:
Jean Delvaree7198fb2011-05-24 20:58:49 +02001160 priv->features |= FEATURE_IDF;
1161 /* fall through */
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001162 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001163 priv->features |= FEATURE_I2C_BLOCK_READ;
Jean Delvare6676a842012-12-16 21:11:55 +01001164 priv->features |= FEATURE_IRQ;
Jean Delvare63420642008-01-27 18:14:50 +01001165 /* fall through */
1166 case PCI_DEVICE_ID_INTEL_82801DB_3:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001167 priv->features |= FEATURE_SMBUS_PEC;
1168 priv->features |= FEATURE_BLOCK_BUFFER;
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001169 /* fall through */
1170 case PCI_DEVICE_ID_INTEL_82801CA_3:
1171 case PCI_DEVICE_ID_INTEL_82801BA_2:
1172 case PCI_DEVICE_ID_INTEL_82801AB_3:
1173 case PCI_DEVICE_ID_INTEL_82801AA_3:
Jean Delvare250d1bd2006-12-10 21:21:33 +01001174 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001175 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001176
Jean Delvareadff6872010-05-21 18:40:54 +02001177 /* Disable features on user request */
1178 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001179 if (priv->features & disable_features & (1 << i))
Jean Delvareadff6872010-05-21 18:40:54 +02001180 dev_notice(&dev->dev, "%s disabled by user\n",
1181 i801_feature_names[i]);
1182 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001183 priv->features &= ~disable_features;
Jean Delvareadff6872010-05-21 18:40:54 +02001184
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001185 err = pci_enable_device(dev);
1186 if (err) {
1187 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1188 err);
1189 goto exit;
1190 }
1191
1192 /* Determine the address of the SMBus area */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001193 priv->smba = pci_resource_start(dev, SMBBAR);
1194 if (!priv->smba) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001195 dev_err(&dev->dev, "SMBus base address uninitialized, "
1196 "upgrade BIOS\n");
1197 err = -ENODEV;
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001198 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001199 }
1200
Jean Delvare54fb4a052008-07-14 22:38:33 +02001201 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
Jean Delvare18669ea2009-10-04 22:53:45 +02001202 if (err) {
1203 err = -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +02001204 goto exit;
Jean Delvare18669ea2009-10-04 22:53:45 +02001205 }
Jean Delvare54fb4a052008-07-14 22:38:33 +02001206
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001207 err = pci_request_region(dev, SMBBAR, i801_driver.name);
1208 if (err) {
1209 dev_err(&dev->dev, "Failed to request SMBus region "
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001210 "0x%lx-0x%Lx\n", priv->smba,
Andrew Morton598736c2006-06-30 01:56:20 -07001211 (unsigned long long)pci_resource_end(dev, SMBBAR));
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001212 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001213 }
1214
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001215 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1216 priv->original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001217 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1218 if (!(temp & SMBHSTCFG_HST_EN)) {
1219 dev_info(&dev->dev, "Enabling SMBus device\n");
1220 temp |= SMBHSTCFG_HST_EN;
1221 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001222 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001223
Daniel Kurtz636752b2012-07-24 14:13:58 +02001224 if (temp & SMBHSTCFG_SMB_SMI_EN) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001225 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001226 /* Disable SMBus interrupt feature if SMBus using SMI# */
1227 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Jean Delvarea0921b62008-01-27 18:14:50 +01001230 /* Clear special mode bits */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001231 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1232 outb_p(inb_p(SMBAUXCTL(priv)) &
1233 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarea0921b62008-01-27 18:14:50 +01001234
Jean Delvareb3b8df92014-11-12 10:20:40 +01001235 /* Default timeout in interrupt mode: 200 ms */
1236 priv->adapter.timeout = HZ / 5;
1237
Daniel Kurtz636752b2012-07-24 14:13:58 +02001238 if (priv->features & FEATURE_IRQ) {
Jean Delvareaeb8a3d2014-11-12 10:25:37 +01001239 u16 pcictl, pcists;
1240
1241 /* Complain if an interrupt is already pending */
1242 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
1243 if (pcists & SMBPCISTS_INTS)
1244 dev_warn(&dev->dev, "An interrupt is pending!\n");
1245
1246 /* Check if interrupts have been disabled */
1247 pci_read_config_word(priv->pci_dev, SMBPCICTL, &pcictl);
1248 if (pcictl & SMBPCICTL_INTDIS) {
1249 dev_info(&dev->dev, "Interrupts are disabled\n");
1250 priv->features &= ~FEATURE_IRQ;
1251 }
1252 }
1253
1254 if (priv->features & FEATURE_IRQ) {
Daniel Kurtz636752b2012-07-24 14:13:58 +02001255 init_waitqueue_head(&priv->waitq);
1256
1257 err = request_irq(dev->irq, i801_isr, IRQF_SHARED,
1258 i801_driver.name, priv);
1259 if (err) {
1260 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1261 dev->irq, err);
Jean Delvareae944712014-11-12 10:24:07 +01001262 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001263 }
1264 }
Jean Delvareae944712014-11-12 10:24:07 +01001265 dev_info(&dev->dev, "SMBus using %s\n",
1266 priv->features & FEATURE_IRQ ? "PCI interrupt" : "polling");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001267
Robert P. J. Day405ae7d2007-02-17 19:13:42 +01001268 /* set up the sysfs linkage to our parent device */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001269 priv->adapter.dev.parent = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Jean Delvare7e2193a2009-12-06 17:06:27 +01001271 /* Retry up to 3 times on lost arbitration */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001272 priv->adapter.retries = 3;
Jean Delvare7e2193a2009-12-06 17:06:27 +01001273
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001274 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1275 "SMBus I801 adapter at %04lx", priv->smba);
1276 err = i2c_add_adapter(&priv->adapter);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001277 if (err) {
1278 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001279 goto exit_free_irq;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001280 }
Jean Delvare1561bfe2009-01-07 14:29:17 +01001281
Jean Delvaree7198fb2011-05-24 20:58:49 +02001282 i801_probe_optional_slaves(priv);
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001283 /* We ignore errors - multiplexing is optional */
1284 i801_add_mux(priv);
Jean Delvare1561bfe2009-01-07 14:29:17 +01001285
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001286 pci_set_drvdata(dev, priv);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001287
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001288 return 0;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001289
Daniel Kurtz636752b2012-07-24 14:13:58 +02001290exit_free_irq:
1291 if (priv->features & FEATURE_IRQ)
1292 free_irq(dev->irq, priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001293 pci_release_region(dev, SMBBAR);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001294exit:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001295 kfree(priv);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001296 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
Bill Pemberton0b255e92012-11-27 15:59:38 -05001299static void i801_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001301 struct i801_priv *priv = pci_get_drvdata(dev);
1302
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001303 i801_del_mux(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001304 i2c_del_adapter(&priv->adapter);
1305 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001306
1307 if (priv->features & FEATURE_IRQ)
1308 free_irq(dev->irq, priv);
Jean Delvare6dcc19d2006-06-12 21:53:02 +02001309 pci_release_region(dev, SMBBAR);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001310
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001311 kfree(priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001312 /*
1313 * do not call pci_disable_device(dev) since it can cause hard hangs on
1314 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
Jean Delvarea5aaea32007-03-22 19:49:01 +01001318#ifdef CONFIG_PM
1319static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
1320{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001321 struct i801_priv *priv = pci_get_drvdata(dev);
1322
Jean Delvarea5aaea32007-03-22 19:49:01 +01001323 pci_save_state(dev);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001324 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Jean Delvarea5aaea32007-03-22 19:49:01 +01001325 pci_set_power_state(dev, pci_choose_state(dev, mesg));
1326 return 0;
1327}
1328
1329static int i801_resume(struct pci_dev *dev)
1330{
1331 pci_set_power_state(dev, PCI_D0);
1332 pci_restore_state(dev);
1333 return pci_enable_device(dev);
1334}
1335#else
1336#define i801_suspend NULL
1337#define i801_resume NULL
1338#endif
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 .name = "i801_smbus",
1342 .id_table = i801_ids,
1343 .probe = i801_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -05001344 .remove = i801_remove,
Jean Delvarea5aaea32007-03-22 19:49:01 +01001345 .suspend = i801_suspend,
1346 .resume = i801_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347};
1348
1349static int __init i2c_i801_init(void)
1350{
Jean Delvare6aa14642011-05-24 20:58:49 +02001351 if (dmi_name_in_vendors("FUJITSU"))
1352 input_apanel_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return pci_register_driver(&i801_driver);
1354}
1355
1356static void __exit i2c_i801_exit(void)
1357{
1358 pci_unregister_driver(&i801_driver);
1359}
1360
Jean Delvare7c81c602014-01-29 20:40:08 +01001361MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362MODULE_DESCRIPTION("I801 SMBus driver");
1363MODULE_LICENSE("GPL");
1364
1365module_init(i2c_i801_init);
1366module_exit(i2c_i801_exit);