blob: e1cf2e0e1f23de900e92c1839d8c6e856658ea37 [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
Jean Delvareae7b0492008-01-27 18:14:49 +010061
62 Features supported by this driver:
63 Software PEC no
64 Hardware PEC yes
65 Block buffer yes
66 Block process call transaction no
Jean Delvare63420642008-01-27 18:14:50 +010067 I2C block read transaction yes (doesn't use the block buffer)
David Woodhouse55fee8d2010-10-31 21:07:00 +010068 Slave mode no
Daniel Kurtz636752b2012-07-24 14:13:58 +020069 Interrupt processing yes
Jean Delvareae7b0492008-01-27 18:14:49 +010070
71 See the file Documentation/i2c/busses/i2c-i801 for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072*/
73
Daniel Kurtz636752b2012-07-24 14:13:58 +020074#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/module.h>
76#include <linux/pci.h>
77#include <linux/kernel.h>
78#include <linux/stddef.h>
79#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/ioport.h>
81#include <linux/init.h>
82#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020083#include <linux/acpi.h>
Jean Delvare1561bfe2009-01-07 14:29:17 +010084#include <linux/io.h>
Hans de Goedefa5bfab2009-03-30 21:46:44 +020085#include <linux/dmi.h>
Ben Hutchings665a96b2011-01-10 22:11:22 +010086#include <linux/slab.h>
Daniel Kurtz636752b2012-07-24 14:13:58 +020087#include <linux/wait.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020088#include <linux/err.h>
Thierry Redingf6afc8b2012-12-16 21:11:54 +010089#include <linux/of_i2c.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020090
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
172#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
Seth Heasley062737f2012-03-26 21:47:19 +0200173#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
James Ralstona3fc0ff2013-02-14 09:15:33 +0000174#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS 0x8d22
175#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0 0x8d7d
176#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1 0x8d7e
177#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2 0x8d7f
James Ralston4a8f1dd2012-09-10 10:14:02 +0200178#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100179
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200180struct i801_mux_config {
181 char *gpio_chip;
182 unsigned values[3];
183 int n_values;
184 unsigned classes[3];
185 unsigned gpios[2]; /* Relative to gpio_chip->base */
186 int n_gpios;
187};
188
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100189struct i801_priv {
190 struct i2c_adapter adapter;
191 unsigned long smba;
192 unsigned char original_hstcfg;
193 struct pci_dev *pci_dev;
194 unsigned int features;
Daniel Kurtz636752b2012-07-24 14:13:58 +0200195
196 /* isr processing */
197 wait_queue_head_t waitq;
198 u8 status;
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200199
200 /* Command state used by isr for byte-by-byte block transactions */
201 u8 cmd;
202 bool is_read;
203 int count;
204 int len;
205 u8 *data;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200206
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100207#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
208 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200209 const struct i801_mux_config *mux_drvdata;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200210 struct platform_device *mux_pdev;
211#endif
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100212};
213
Jean Delvared6072f82005-09-25 16:37:04 +0200214static struct pci_driver i801_driver;
Jean Delvare369f6f42008-01-27 18:14:50 +0100215
216#define FEATURE_SMBUS_PEC (1 << 0)
217#define FEATURE_BLOCK_BUFFER (1 << 1)
218#define FEATURE_BLOCK_PROC (1 << 2)
219#define FEATURE_I2C_BLOCK_READ (1 << 3)
Daniel Kurtz636752b2012-07-24 14:13:58 +0200220#define FEATURE_IRQ (1 << 4)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200221/* Not really a feature, but it's convenient to handle it as such */
222#define FEATURE_IDF (1 << 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Jean Delvareadff6872010-05-21 18:40:54 +0200224static const char *i801_feature_names[] = {
225 "SMBus PEC",
226 "Block buffer",
227 "Block process call",
228 "I2C block read",
Daniel Kurtz636752b2012-07-24 14:13:58 +0200229 "Interrupt",
Jean Delvareadff6872010-05-21 18:40:54 +0200230};
231
232static unsigned int disable_features;
233module_param(disable_features, uint, S_IRUGO | S_IWUSR);
234MODULE_PARM_DESC(disable_features, "Disable selected driver features");
235
Jean Delvarecf898dc2008-07-14 22:38:33 +0200236/* Make sure the SMBus host is ready to start transmitting.
237 Return 0 if it is, -EBUSY if it is not. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100238static int i801_check_pre(struct i801_priv *priv)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200239{
240 int status;
241
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100242 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200243 if (status & SMBHSTSTS_HOST_BUSY) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100244 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200245 return -EBUSY;
246 }
247
248 status &= STATUS_FLAGS;
249 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100250 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
Jean Delvarecf898dc2008-07-14 22:38:33 +0200251 status);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100252 outb_p(status, SMBHSTSTS(priv));
253 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200254 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100255 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200256 "Failed clearing status flags (%02x)\n",
257 status);
258 return -EBUSY;
259 }
260 }
261
262 return 0;
263}
264
Jean Delvare6cad93c2012-07-24 14:13:58 +0200265/*
266 * Convert the status register to an error code, and clear it.
267 * Note that status only contains the bits we want to clear, not the
268 * actual register value.
269 */
270static int i801_check_post(struct i801_priv *priv, int status)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200271{
272 int result = 0;
273
Daniel Kurtz636752b2012-07-24 14:13:58 +0200274 /*
275 * If the SMBus is still busy, we give up
276 * Note: This timeout condition only happens when using polling
277 * transactions. For interrupt operation, NAK/timeout is indicated by
278 * DEV_ERR.
279 */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200280 if (unlikely(status < 0)) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100281 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200282 /* try to stop the current command */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100283 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
284 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
285 SMBHSTCNT(priv));
Jean Delvare84c1af42012-03-26 21:47:19 +0200286 usleep_range(1000, 2000);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100287 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
288 SMBHSTCNT(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200289
290 /* Check if it worked */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100291 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200292 if ((status & SMBHSTSTS_HOST_BUSY) ||
293 !(status & SMBHSTSTS_FAILED))
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100294 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200295 "Failed terminating the transaction\n");
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100296 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200297 return -ETIMEDOUT;
298 }
299
300 if (status & SMBHSTSTS_FAILED) {
301 result = -EIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100302 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200303 }
304 if (status & SMBHSTSTS_DEV_ERR) {
305 result = -ENXIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100306 dev_dbg(&priv->pci_dev->dev, "No response\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200307 }
308 if (status & SMBHSTSTS_BUS_ERR) {
309 result = -EAGAIN;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100310 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200311 }
312
Jean Delvare6cad93c2012-07-24 14:13:58 +0200313 /* Clear status flags except BYTE_DONE, to be cleared by caller */
314 outb_p(status, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200315
316 return result;
317}
318
Jean Delvare6cad93c2012-07-24 14:13:58 +0200319/* Wait for BUSY being cleared and either INTR or an error flag being set */
320static int i801_wait_intr(struct i801_priv *priv)
321{
322 int timeout = 0;
323 int status;
324
325 /* We will always wait for a fraction of a second! */
326 do {
327 usleep_range(250, 500);
328 status = inb_p(SMBHSTSTS(priv));
329 } while (((status & SMBHSTSTS_HOST_BUSY) ||
330 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
331 (timeout++ < MAX_RETRIES));
332
333 if (timeout > MAX_RETRIES) {
334 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
335 return -ETIMEDOUT;
336 }
337 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
338}
339
340/* Wait for either BYTE_DONE or an error flag being set */
341static int i801_wait_byte_done(struct i801_priv *priv)
342{
343 int timeout = 0;
344 int status;
345
346 /* We will always wait for a fraction of a second! */
347 do {
348 usleep_range(250, 500);
349 status = inb_p(SMBHSTSTS(priv));
350 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
351 (timeout++ < MAX_RETRIES));
352
353 if (timeout > MAX_RETRIES) {
354 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
355 return -ETIMEDOUT;
356 }
357 return status & STATUS_ERROR_FLAGS;
358}
359
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100360static int i801_transaction(struct i801_priv *priv, int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Jean Delvare2b738092008-07-14 22:38:32 +0200362 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200363 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100365 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200366 if (result < 0)
367 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Daniel Kurtz636752b2012-07-24 14:13:58 +0200369 if (priv->features & FEATURE_IRQ) {
370 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
371 SMBHSTCNT(priv));
372 wait_event(priv->waitq, (status = priv->status));
373 priv->status = 0;
374 return i801_check_post(priv, status);
375 }
376
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200377 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
Daniel Kurtz37af8712012-07-24 14:13:58 +0200378 * SMBSCMD are passed in xact */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200379 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Jean Delvare6cad93c2012-07-24 14:13:58 +0200381 status = i801_wait_intr(priv);
382 return i801_check_post(priv, status);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200383}
384
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100385static int i801_block_transaction_by_block(struct i801_priv *priv,
386 union i2c_smbus_data *data,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200387 char read_write, int hwpec)
388{
389 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200390 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200391
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100392 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200393
394 /* Use 32-byte buffer to process this transaction */
395 if (read_write == I2C_SMBUS_WRITE) {
396 len = data->block[0];
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100397 outb_p(len, SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200398 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100399 outb_p(data->block[i+1], SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200400 }
401
Daniel Kurtz37af8712012-07-24 14:13:58 +0200402 status = i801_transaction(priv, I801_BLOCK_DATA |
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200403 (hwpec ? SMBHSTCNT_PEC_EN : 0));
David Brownell97140342008-07-14 22:38:25 +0200404 if (status)
405 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200406
407 if (read_write == I2C_SMBUS_READ) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100408 len = inb_p(SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200409 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200410 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200411
412 data->block[0] = len;
413 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100414 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200415 }
416 return 0;
417}
418
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200419static void i801_isr_byte_done(struct i801_priv *priv)
420{
421 if (priv->is_read) {
422 /* For SMBus block reads, length is received with first byte */
423 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
424 (priv->count == 0)) {
425 priv->len = inb_p(SMBHSTDAT0(priv));
426 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
427 dev_err(&priv->pci_dev->dev,
428 "Illegal SMBus block read size %d\n",
429 priv->len);
430 /* FIXME: Recover */
431 priv->len = I2C_SMBUS_BLOCK_MAX;
432 } else {
433 dev_dbg(&priv->pci_dev->dev,
434 "SMBus block read size is %d\n",
435 priv->len);
436 }
437 priv->data[-1] = priv->len;
438 }
439
440 /* Read next byte */
441 if (priv->count < priv->len)
442 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
443 else
444 dev_dbg(&priv->pci_dev->dev,
445 "Discarding extra byte on block read\n");
446
447 /* Set LAST_BYTE for last byte of read transaction */
448 if (priv->count == priv->len - 1)
449 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
450 SMBHSTCNT(priv));
451 } else if (priv->count < priv->len - 1) {
452 /* Write next byte, except for IRQ after last byte */
453 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
454 }
455
456 /* Clear BYTE_DONE to continue with next byte */
457 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
458}
459
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200460/*
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200461 * There are two kinds of interrupts:
462 *
463 * 1) i801 signals transaction completion with one of these interrupts:
464 * INTR - Success
465 * DEV_ERR - Invalid command, NAK or communication timeout
466 * BUS_ERR - SMI# transaction collision
467 * FAILED - transaction was canceled due to a KILL request
468 * When any of these occur, update ->status and wake up the waitq.
469 * ->status must be cleared before kicking off the next transaction.
470 *
471 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
472 * occurs for each byte of a byte-by-byte to prepare the next byte.
Daniel Kurtz636752b2012-07-24 14:13:58 +0200473 */
474static irqreturn_t i801_isr(int irq, void *dev_id)
475{
476 struct i801_priv *priv = dev_id;
477 u16 pcists;
478 u8 status;
479
480 /* Confirm this is our interrupt */
481 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
482 if (!(pcists & SMBPCISTS_INTS))
483 return IRQ_NONE;
484
485 status = inb_p(SMBHSTSTS(priv));
486 if (status != 0x42)
487 dev_dbg(&priv->pci_dev->dev, "irq: status = %02x\n", status);
488
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200489 if (status & SMBHSTSTS_BYTE_DONE)
490 i801_isr_byte_done(priv);
491
Daniel Kurtz636752b2012-07-24 14:13:58 +0200492 /*
493 * Clear irq sources and report transaction result.
494 * ->status must be cleared before the next transaction is started.
495 */
496 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
497 if (status) {
498 outb_p(status, SMBHSTSTS(priv));
499 priv->status |= status;
500 wake_up(&priv->waitq);
501 }
502
503 return IRQ_HANDLED;
504}
505
506/*
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200507 * For "byte-by-byte" block transactions:
508 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
509 * I2C read uses cmd=I801_I2C_BLOCK_DATA
510 */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100511static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
512 union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100513 char read_write, int command,
514 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 int i, len;
517 int smbcmd;
Jean Delvare2b738092008-07-14 22:38:32 +0200518 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200519 int result;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200520
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100521 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200522 if (result < 0)
523 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200525 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100528 outb_p(len, SMBHSTDAT0(priv));
529 outb_p(data->block[1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200532 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
533 read_write == I2C_SMBUS_READ)
534 smbcmd = I801_I2C_BLOCK_DATA;
535 else
536 smbcmd = I801_BLOCK_DATA;
537
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200538 if (priv->features & FEATURE_IRQ) {
539 priv->is_read = (read_write == I2C_SMBUS_READ);
540 if (len == 1 && priv->is_read)
541 smbcmd |= SMBHSTCNT_LAST_BYTE;
542 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
543 priv->len = len;
544 priv->count = 0;
545 priv->data = &data->block[1];
546
547 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
548 wait_event(priv->waitq, (status = priv->status));
549 priv->status = 0;
550 return i801_check_post(priv, status);
551 }
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 for (i = 1; i <= len; i++) {
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200554 if (i == len && read_write == I2C_SMBUS_READ)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200555 smbcmd |= SMBHSTCNT_LAST_BYTE;
Daniel Kurtz37af8712012-07-24 14:13:58 +0200556 outb_p(smbcmd, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (i == 1)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200559 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100560 SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Jean Delvare6cad93c2012-07-24 14:13:58 +0200562 status = i801_wait_byte_done(priv);
563 if (status)
564 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Jean Delvare63420642008-01-27 18:14:50 +0100566 if (i == 1 && read_write == I2C_SMBUS_READ
567 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100568 len = inb_p(SMBHSTDAT0(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200569 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100570 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200571 "Illegal SMBus block read size %d\n",
572 len);
573 /* Recover */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100574 while (inb_p(SMBHSTSTS(priv)) &
575 SMBHSTSTS_HOST_BUSY)
576 outb_p(SMBHSTSTS_BYTE_DONE,
577 SMBHSTSTS(priv));
578 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
David Brownell97140342008-07-14 22:38:25 +0200579 return -EPROTO;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 data->block[0] = len;
582 }
583
584 /* Retrieve/store value in SMBBLKDAT */
585 if (read_write == I2C_SMBUS_READ)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100586 data->block[i] = inb_p(SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100588 outb_p(data->block[i+1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Jean Delvarecf898dc2008-07-14 22:38:33 +0200590 /* signals SMBBLKDAT ready */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200591 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200592 }
Jean Delvarecf898dc2008-07-14 22:38:33 +0200593
Jean Delvare6cad93c2012-07-24 14:13:58 +0200594 status = i801_wait_intr(priv);
595exit:
596 return i801_check_post(priv, status);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200597}
598
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100599static int i801_set_block_buffer_mode(struct i801_priv *priv)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200600{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100601 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
602 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200603 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200604 return 0;
605}
606
607/* Block transaction function */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100608static int i801_block_transaction(struct i801_priv *priv,
609 union i2c_smbus_data *data, char read_write,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200610 int command, int hwpec)
611{
612 int result = 0;
613 unsigned char hostc;
614
615 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
616 if (read_write == I2C_SMBUS_WRITE) {
617 /* set I2C_EN bit in configuration register */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100618 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
619 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200620 hostc | SMBHSTCFG_I2C_EN);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100621 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
622 dev_err(&priv->pci_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100623 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200624 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627
Jean Delvare63420642008-01-27 18:14:50 +0100628 if (read_write == I2C_SMBUS_WRITE
629 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200630 if (data->block[0] < 1)
631 data->block[0] = 1;
632 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
633 data->block[0] = I2C_SMBUS_BLOCK_MAX;
634 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100635 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200636 }
637
Jean Delvarec074c392010-03-13 20:56:53 +0100638 /* Experience has shown that the block buffer can only be used for
639 SMBus (not I2C) block transactions, even though the datasheet
640 doesn't mention this limitation. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100641 if ((priv->features & FEATURE_BLOCK_BUFFER)
Jean Delvarec074c392010-03-13 20:56:53 +0100642 && command != I2C_SMBUS_I2C_BLOCK_DATA
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100643 && i801_set_block_buffer_mode(priv) == 0)
644 result = i801_block_transaction_by_block(priv, data,
645 read_write, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200646 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100647 result = i801_block_transaction_byte_by_byte(priv, data,
648 read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100649 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200650
Jean Delvare63420642008-01-27 18:14:50 +0100651 if (command == I2C_SMBUS_I2C_BLOCK_DATA
652 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* restore saved configuration register value */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100654 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656 return result;
657}
658
David Brownell97140342008-07-14 22:38:25 +0200659/* Return negative errno on error. */
Ivo Manca3fb21c62010-05-21 18:40:55 +0200660static s32 i801_access(struct i2c_adapter *adap, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 unsigned short flags, char read_write, u8 command,
Ivo Manca3fb21c62010-05-21 18:40:55 +0200662 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200664 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int block = 0;
666 int ret, xact = 0;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100667 struct i801_priv *priv = i2c_get_adapdata(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100669 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200670 && size != I2C_SMBUS_QUICK
671 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 switch (size) {
674 case I2C_SMBUS_QUICK:
675 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100676 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 xact = I801_QUICK;
678 break;
679 case I2C_SMBUS_BYTE:
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 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100683 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 xact = I801_BYTE;
685 break;
686 case I2C_SMBUS_BYTE_DATA:
687 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100688 SMBHSTADD(priv));
689 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100691 outb_p(data->byte, SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 xact = I801_BYTE_DATA;
693 break;
694 case I2C_SMBUS_WORD_DATA:
695 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100696 SMBHSTADD(priv));
697 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100699 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
700 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702 xact = I801_WORD_DATA;
703 break;
704 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100706 SMBHSTADD(priv));
707 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 block = 1;
709 break;
Jean Delvare63420642008-01-27 18:14:50 +0100710 case I2C_SMBUS_I2C_BLOCK_DATA:
711 /* NB: page 240 of ICH5 datasheet shows that the R/#W
712 * bit should be cleared here, even when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100713 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100714 if (read_write == I2C_SMBUS_READ) {
715 /* NB: page 240 of ICH5 datasheet also shows
716 * that DATA1 is the cmd field when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100717 outb_p(command, SMBHSTDAT1(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100718 } else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100719 outb_p(command, SMBHSTCMD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100720 block = 1;
721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100723 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
724 size);
David Brownell97140342008-07-14 22:38:25 +0200725 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200728 if (hwpec) /* enable/disable hardware PEC */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100729 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200730 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100731 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
732 SMBAUXCTL(priv));
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200733
Ivo Manca3fb21c62010-05-21 18:40:55 +0200734 if (block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100735 ret = i801_block_transaction(priv, data, read_write, size,
736 hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200737 else
Daniel Kurtz37af8712012-07-24 14:13:58 +0200738 ret = i801_transaction(priv, xact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Jean Delvarec79cfba2006-04-20 02:43:18 -0700740 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200741 time, so we forcibly disable it after every transaction. Turn off
742 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100743 if (hwpec || block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100744 outb_p(inb_p(SMBAUXCTL(priv)) &
745 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarec79cfba2006-04-20 02:43:18 -0700746
Ivo Manca3fb21c62010-05-21 18:40:55 +0200747 if (block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return ret;
Ivo Manca3fb21c62010-05-21 18:40:55 +0200749 if (ret)
David Brownell97140342008-07-14 22:38:25 +0200750 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
752 return 0;
753
754 switch (xact & 0x7f) {
755 case I801_BYTE: /* Result put in SMBHSTDAT0 */
756 case I801_BYTE_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100757 data->byte = inb_p(SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 break;
759 case I801_WORD_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100760 data->word = inb_p(SMBHSTDAT0(priv)) +
761 (inb_p(SMBHSTDAT1(priv)) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 break;
763 }
764 return 0;
765}
766
767
768static u32 i801_func(struct i2c_adapter *adapter)
769{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100770 struct i801_priv *priv = i2c_get_adapdata(adapter);
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100773 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
774 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100775 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
776 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
Jean Delvare63420642008-01-27 18:14:50 +0100777 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Jean Delvare8f9082c2006-09-03 22:39:46 +0200780static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 .smbus_xfer = i801_access,
782 .functionality = i801_func,
783};
784
Axel Lin3527bd52012-01-12 20:32:04 +0100785static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
787 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
788 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
789 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
790 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
791 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
792 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
793 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
794 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700795 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800796 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800797 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700798 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100799 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
800 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700801 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
802 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
Seth Heasleye30d9852010-10-31 21:06:59 +0100803 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
David Woodhouse55fee8d2010-10-31 21:07:00 +0100804 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
805 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
806 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
Seth Heasley662cda82011-03-20 14:50:53 +0100807 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
Seth Heasley6e2a8512011-05-24 20:58:49 +0200808 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
Seth Heasley062737f2012-03-26 21:47:19 +0200809 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
James Ralston4a8f1dd2012-09-10 10:14:02 +0200810 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
Seth Heasleyc2db409c2013-01-30 15:25:32 +0000811 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMBUS) },
James Ralstona3fc0ff2013-02-14 09:15:33 +0000812 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS) },
813 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0) },
814 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1) },
815 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 { 0, }
817};
818
Ivo Manca3fb21c62010-05-21 18:40:55 +0200819MODULE_DEVICE_TABLE(pci, i801_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Jean Delvare8eacfce2011-05-24 20:58:49 +0200821#if defined CONFIG_X86 && defined CONFIG_DMI
Jean Delvare1561bfe2009-01-07 14:29:17 +0100822static unsigned char apanel_addr;
823
824/* Scan the system ROM for the signature "FJKEYINF" */
825static __init const void __iomem *bios_signature(const void __iomem *bios)
826{
827 ssize_t offset;
828 const unsigned char signature[] = "FJKEYINF";
829
830 for (offset = 0; offset < 0x10000; offset += 0x10) {
831 if (check_signature(bios + offset, signature,
832 sizeof(signature)-1))
833 return bios + offset;
834 }
835 return NULL;
836}
837
838static void __init input_apanel_init(void)
839{
840 void __iomem *bios;
841 const void __iomem *p;
842
843 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
844 p = bios_signature(bios);
845 if (p) {
846 /* just use the first address */
847 apanel_addr = readb(p + 8 + 3) >> 1;
848 }
849 iounmap(bios);
850}
Jean Delvare1561bfe2009-01-07 14:29:17 +0100851
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200852struct dmi_onboard_device_info {
853 const char *name;
854 u8 type;
855 unsigned short i2c_addr;
856 const char *i2c_type;
857};
858
Bill Pemberton0b255e92012-11-27 15:59:38 -0500859static const struct dmi_onboard_device_info dmi_devices[] = {
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200860 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
861 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
862 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
863};
864
Bill Pemberton0b255e92012-11-27 15:59:38 -0500865static void dmi_check_onboard_device(u8 type, const char *name,
866 struct i2c_adapter *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200867{
868 int i;
869 struct i2c_board_info info;
870
871 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
872 /* & ~0x80, ignore enabled/disabled bit */
873 if ((type & ~0x80) != dmi_devices[i].type)
874 continue;
Jean Delvarefaabd472010-07-09 16:22:51 +0200875 if (strcasecmp(name, dmi_devices[i].name))
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200876 continue;
877
878 memset(&info, 0, sizeof(struct i2c_board_info));
879 info.addr = dmi_devices[i].i2c_addr;
880 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
881 i2c_new_device(adap, &info);
882 break;
883 }
884}
885
886/* We use our own function to check for onboard devices instead of
887 dmi_find_device() as some buggy BIOS's have the devices we are interested
888 in marked as disabled */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500889static void dmi_check_onboard_devices(const struct dmi_header *dm, void *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200890{
891 int i, count;
892
893 if (dm->type != 10)
894 return;
895
896 count = (dm->length - sizeof(struct dmi_header)) / 2;
897 for (i = 0; i < count; i++) {
898 const u8 *d = (char *)(dm + 1) + (i * 2);
899 const char *name = ((char *) dm) + dm->length;
900 u8 type = d[0];
901 u8 s = d[1];
902
903 if (!s)
904 continue;
905 s--;
906 while (s > 0 && name[0]) {
907 name += strlen(name) + 1;
908 s--;
909 }
910 if (name[0] == 0) /* Bogus string reference */
911 continue;
912
913 dmi_check_onboard_device(type, name, adap);
914 }
915}
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200916
Jean Delvaree7198fb2011-05-24 20:58:49 +0200917/* Register optional slaves */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500918static void i801_probe_optional_slaves(struct i801_priv *priv)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200919{
920 /* Only register slaves on main SMBus channel */
921 if (priv->features & FEATURE_IDF)
922 return;
923
Jean Delvaree7198fb2011-05-24 20:58:49 +0200924 if (apanel_addr) {
925 struct i2c_board_info info;
926
927 memset(&info, 0, sizeof(struct i2c_board_info));
928 info.addr = apanel_addr;
929 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
930 i2c_new_device(&priv->adapter, &info);
931 }
Jean Delvare8eacfce2011-05-24 20:58:49 +0200932
Jean Delvaree7198fb2011-05-24 20:58:49 +0200933 if (dmi_name_in_vendors("FUJITSU"))
934 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
Jean Delvaree7198fb2011-05-24 20:58:49 +0200935}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200936#else
937static void __init input_apanel_init(void) {}
Bill Pemberton0b255e92012-11-27 15:59:38 -0500938static void i801_probe_optional_slaves(struct i801_priv *priv) {}
Jean Delvare8eacfce2011-05-24 20:58:49 +0200939#endif /* CONFIG_X86 && CONFIG_DMI */
Jean Delvaree7198fb2011-05-24 20:58:49 +0200940
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100941#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
942 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200943static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
944 .gpio_chip = "gpio_ich",
945 .values = { 0x02, 0x03 },
946 .n_values = 2,
947 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
948 .gpios = { 52, 53 },
949 .n_gpios = 2,
950};
951
952static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
953 .gpio_chip = "gpio_ich",
954 .values = { 0x02, 0x03, 0x01 },
955 .n_values = 3,
956 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
957 .gpios = { 52, 53 },
958 .n_gpios = 2,
959};
960
Bill Pemberton0b255e92012-11-27 15:59:38 -0500961static const struct dmi_system_id mux_dmi_table[] = {
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200962 {
963 .matches = {
964 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
965 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
966 },
967 .driver_data = &i801_mux_config_asus_z8_d12,
968 },
969 {
970 .matches = {
971 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
972 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"),
973 },
974 .driver_data = &i801_mux_config_asus_z8_d12,
975 },
976 {
977 .matches = {
978 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
979 DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"),
980 },
981 .driver_data = &i801_mux_config_asus_z8_d12,
982 },
983 {
984 .matches = {
985 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
986 DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"),
987 },
988 .driver_data = &i801_mux_config_asus_z8_d12,
989 },
990 {
991 .matches = {
992 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
993 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
994 },
995 .driver_data = &i801_mux_config_asus_z8_d12,
996 },
997 {
998 .matches = {
999 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1000 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
1001 },
1002 .driver_data = &i801_mux_config_asus_z8_d12,
1003 },
1004 {
1005 .matches = {
1006 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1007 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
1008 },
1009 .driver_data = &i801_mux_config_asus_z8_d18,
1010 },
1011 {
1012 .matches = {
1013 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1014 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
1015 },
1016 .driver_data = &i801_mux_config_asus_z8_d18,
1017 },
1018 {
1019 .matches = {
1020 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1021 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1022 },
1023 .driver_data = &i801_mux_config_asus_z8_d12,
1024 },
1025 { }
1026};
1027
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001028/* Setup multiplexing if needed */
Bill Pemberton0b255e92012-11-27 15:59:38 -05001029static int i801_add_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001030{
1031 struct device *dev = &priv->adapter.dev;
1032 const struct i801_mux_config *mux_config;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001033 struct i2c_mux_gpio_platform_data gpio_data;
Jean Delvaref82b8622012-10-05 22:23:54 +02001034 int err;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001035
1036 if (!priv->mux_drvdata)
1037 return 0;
1038 mux_config = priv->mux_drvdata;
1039
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001040 /* Prepare the platform data */
1041 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1042 gpio_data.parent = priv->adapter.nr;
1043 gpio_data.values = mux_config->values;
1044 gpio_data.n_values = mux_config->n_values;
1045 gpio_data.classes = mux_config->classes;
Jean Delvaref82b8622012-10-05 22:23:54 +02001046 gpio_data.gpio_chip = mux_config->gpio_chip;
1047 gpio_data.gpios = mux_config->gpios;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001048 gpio_data.n_gpios = mux_config->n_gpios;
1049 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1050
1051 /* Register the mux device */
1052 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
Jean Delvaref82b8622012-10-05 22:23:54 +02001053 PLATFORM_DEVID_AUTO, &gpio_data,
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001054 sizeof(struct i2c_mux_gpio_platform_data));
1055 if (IS_ERR(priv->mux_pdev)) {
1056 err = PTR_ERR(priv->mux_pdev);
1057 priv->mux_pdev = NULL;
1058 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1059 return err;
1060 }
1061
1062 return 0;
1063}
1064
Bill Pemberton0b255e92012-11-27 15:59:38 -05001065static void i801_del_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001066{
1067 if (priv->mux_pdev)
1068 platform_device_unregister(priv->mux_pdev);
1069}
1070
Bill Pemberton0b255e92012-11-27 15:59:38 -05001071static unsigned int i801_get_adapter_class(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001072{
1073 const struct dmi_system_id *id;
1074 const struct i801_mux_config *mux_config;
1075 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1076 int i;
1077
1078 id = dmi_first_match(mux_dmi_table);
1079 if (id) {
Jean Delvare28901f52012-10-28 21:37:01 +01001080 /* Remove branch classes from trunk */
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001081 mux_config = id->driver_data;
1082 for (i = 0; i < mux_config->n_values; i++)
1083 class &= ~mux_config->classes[i];
1084
1085 /* Remember for later */
1086 priv->mux_drvdata = mux_config;
1087 }
1088
1089 return class;
1090}
1091#else
1092static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1093static inline void i801_del_mux(struct i801_priv *priv) { }
1094
1095static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1096{
1097 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1098}
1099#endif
1100
Bill Pemberton0b255e92012-11-27 15:59:38 -05001101static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001103 unsigned char temp;
Jean Delvareadff6872010-05-21 18:40:54 +02001104 int err, i;
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001105 struct i801_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001107 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1108 if (!priv)
1109 return -ENOMEM;
1110
1111 i2c_set_adapdata(&priv->adapter, priv);
1112 priv->adapter.owner = THIS_MODULE;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001113 priv->adapter.class = i801_get_adapter_class(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001114 priv->adapter.algo = &smbus_algorithm;
1115
1116 priv->pci_dev = dev;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001117 switch (dev->device) {
Jean Delvaree7198fb2011-05-24 20:58:49 +02001118 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1119 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1120 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
James Ralstona3fc0ff2013-02-14 09:15:33 +00001121 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0:
1122 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1:
1123 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2:
Jean Delvaree7198fb2011-05-24 20:58:49 +02001124 priv->features |= FEATURE_IDF;
1125 /* fall through */
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001126 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001127 priv->features |= FEATURE_I2C_BLOCK_READ;
Jean Delvare6676a842012-12-16 21:11:55 +01001128 priv->features |= FEATURE_IRQ;
Jean Delvare63420642008-01-27 18:14:50 +01001129 /* fall through */
1130 case PCI_DEVICE_ID_INTEL_82801DB_3:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001131 priv->features |= FEATURE_SMBUS_PEC;
1132 priv->features |= FEATURE_BLOCK_BUFFER;
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001133 /* fall through */
1134 case PCI_DEVICE_ID_INTEL_82801CA_3:
1135 case PCI_DEVICE_ID_INTEL_82801BA_2:
1136 case PCI_DEVICE_ID_INTEL_82801AB_3:
1137 case PCI_DEVICE_ID_INTEL_82801AA_3:
Jean Delvare250d1bd2006-12-10 21:21:33 +01001138 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001139 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001140
Jean Delvareadff6872010-05-21 18:40:54 +02001141 /* Disable features on user request */
1142 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001143 if (priv->features & disable_features & (1 << i))
Jean Delvareadff6872010-05-21 18:40:54 +02001144 dev_notice(&dev->dev, "%s disabled by user\n",
1145 i801_feature_names[i]);
1146 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001147 priv->features &= ~disable_features;
Jean Delvareadff6872010-05-21 18:40:54 +02001148
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001149 err = pci_enable_device(dev);
1150 if (err) {
1151 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1152 err);
1153 goto exit;
1154 }
1155
1156 /* Determine the address of the SMBus area */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001157 priv->smba = pci_resource_start(dev, SMBBAR);
1158 if (!priv->smba) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001159 dev_err(&dev->dev, "SMBus base address uninitialized, "
1160 "upgrade BIOS\n");
1161 err = -ENODEV;
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001162 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001163 }
1164
Jean Delvare54fb4a052008-07-14 22:38:33 +02001165 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
Jean Delvare18669ea2009-10-04 22:53:45 +02001166 if (err) {
1167 err = -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +02001168 goto exit;
Jean Delvare18669ea2009-10-04 22:53:45 +02001169 }
Jean Delvare54fb4a052008-07-14 22:38:33 +02001170
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001171 err = pci_request_region(dev, SMBBAR, i801_driver.name);
1172 if (err) {
1173 dev_err(&dev->dev, "Failed to request SMBus region "
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001174 "0x%lx-0x%Lx\n", priv->smba,
Andrew Morton598736c2006-06-30 01:56:20 -07001175 (unsigned long long)pci_resource_end(dev, SMBBAR));
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001176 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001177 }
1178
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001179 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1180 priv->original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001181 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1182 if (!(temp & SMBHSTCFG_HST_EN)) {
1183 dev_info(&dev->dev, "Enabling SMBus device\n");
1184 temp |= SMBHSTCFG_HST_EN;
1185 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001186 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001187
Daniel Kurtz636752b2012-07-24 14:13:58 +02001188 if (temp & SMBHSTCFG_SMB_SMI_EN) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001189 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001190 /* Disable SMBus interrupt feature if SMBus using SMI# */
1191 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Jean Delvarea0921b62008-01-27 18:14:50 +01001194 /* Clear special mode bits */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001195 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1196 outb_p(inb_p(SMBAUXCTL(priv)) &
1197 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarea0921b62008-01-27 18:14:50 +01001198
Daniel Kurtz636752b2012-07-24 14:13:58 +02001199 if (priv->features & FEATURE_IRQ) {
1200 init_waitqueue_head(&priv->waitq);
1201
1202 err = request_irq(dev->irq, i801_isr, IRQF_SHARED,
1203 i801_driver.name, priv);
1204 if (err) {
1205 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1206 dev->irq, err);
1207 goto exit_release;
1208 }
Jean Delvare29b60852012-07-24 14:13:59 +02001209 dev_info(&dev->dev, "SMBus using PCI Interrupt\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001210 }
1211
Robert P. J. Day405ae7d2007-02-17 19:13:42 +01001212 /* set up the sysfs linkage to our parent device */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001213 priv->adapter.dev.parent = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Jean Delvare7e2193a2009-12-06 17:06:27 +01001215 /* Retry up to 3 times on lost arbitration */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001216 priv->adapter.retries = 3;
Jean Delvare7e2193a2009-12-06 17:06:27 +01001217
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001218 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1219 "SMBus I801 adapter at %04lx", priv->smba);
1220 err = i2c_add_adapter(&priv->adapter);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001221 if (err) {
1222 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001223 goto exit_free_irq;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001224 }
Jean Delvare1561bfe2009-01-07 14:29:17 +01001225
Thierry Redingf6afc8b2012-12-16 21:11:54 +01001226 of_i2c_register_devices(&priv->adapter);
Jean Delvaree7198fb2011-05-24 20:58:49 +02001227 i801_probe_optional_slaves(priv);
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001228 /* We ignore errors - multiplexing is optional */
1229 i801_add_mux(priv);
Jean Delvare1561bfe2009-01-07 14:29:17 +01001230
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001231 pci_set_drvdata(dev, priv);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001232
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001233 return 0;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001234
Daniel Kurtz636752b2012-07-24 14:13:58 +02001235exit_free_irq:
1236 if (priv->features & FEATURE_IRQ)
1237 free_irq(dev->irq, priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001238exit_release:
1239 pci_release_region(dev, SMBBAR);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001240exit:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001241 kfree(priv);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001242 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Bill Pemberton0b255e92012-11-27 15:59:38 -05001245static void i801_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001247 struct i801_priv *priv = pci_get_drvdata(dev);
1248
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001249 i801_del_mux(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001250 i2c_del_adapter(&priv->adapter);
1251 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001252
1253 if (priv->features & FEATURE_IRQ)
1254 free_irq(dev->irq, priv);
Jean Delvare6dcc19d2006-06-12 21:53:02 +02001255 pci_release_region(dev, SMBBAR);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001256
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001257 kfree(priv);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001258 /*
1259 * do not call pci_disable_device(dev) since it can cause hard hangs on
1260 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1261 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Jean Delvarea5aaea32007-03-22 19:49:01 +01001264#ifdef CONFIG_PM
1265static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
1266{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001267 struct i801_priv *priv = pci_get_drvdata(dev);
1268
Jean Delvarea5aaea32007-03-22 19:49:01 +01001269 pci_save_state(dev);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001270 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Jean Delvarea5aaea32007-03-22 19:49:01 +01001271 pci_set_power_state(dev, pci_choose_state(dev, mesg));
1272 return 0;
1273}
1274
1275static int i801_resume(struct pci_dev *dev)
1276{
1277 pci_set_power_state(dev, PCI_D0);
1278 pci_restore_state(dev);
1279 return pci_enable_device(dev);
1280}
1281#else
1282#define i801_suspend NULL
1283#define i801_resume NULL
1284#endif
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 .name = "i801_smbus",
1288 .id_table = i801_ids,
1289 .probe = i801_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -05001290 .remove = i801_remove,
Jean Delvarea5aaea32007-03-22 19:49:01 +01001291 .suspend = i801_suspend,
1292 .resume = i801_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293};
1294
1295static int __init i2c_i801_init(void)
1296{
Jean Delvare6aa14642011-05-24 20:58:49 +02001297 if (dmi_name_in_vendors("FUJITSU"))
1298 input_apanel_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return pci_register_driver(&i801_driver);
1300}
1301
1302static void __exit i2c_i801_exit(void)
1303{
1304 pci_unregister_driver(&i801_driver);
1305}
1306
Jean Delvare63420642008-01-27 18:14:50 +01001307MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
1308 "Jean Delvare <khali@linux-fr.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309MODULE_DESCRIPTION("I801 SMBus driver");
1310MODULE_LICENSE("GPL");
1311
1312module_init(i2c_i801_init);
1313module_exit(i2c_i801_exit);