blob: 64b1208bca5e15af2295e9b26b9581af67f474c4 [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
Mika Westerberg84d7f2e2015-10-13 15:41:39 +030063 * DNV (SOC) 0x19df 32 hard yes yes yes
Jarkko Nikuladd77f422015-10-22 17:16:58 +030064 * Broxton (SOC) 0x5ad4 32 hard yes yes yes
Alexandra Yatescdc5a312015-11-05 11:40:25 -080065 * Lewisburg (PCH) 0xa1a3 32 hard yes yes yes
66 * Lewisburg Supersku (PCH) 0xa223 32 hard yes yes yes
Jean Delvarece316112014-07-17 15:03:24 +020067 *
68 * Features supported by this driver:
69 * Software PEC no
70 * Hardware PEC yes
71 * Block buffer yes
72 * Block process call transaction no
73 * I2C block read transaction yes (doesn't use the block buffer)
74 * Slave mode no
75 * Interrupt processing yes
76 *
77 * See the file Documentation/i2c/busses/i2c-i801 for details.
78 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Daniel Kurtz636752b2012-07-24 14:13:58 +020080#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/module.h>
82#include <linux/pci.h>
83#include <linux/kernel.h>
84#include <linux/stddef.h>
85#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include <linux/ioport.h>
87#include <linux/init.h>
88#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020089#include <linux/acpi.h>
Jean Delvare1561bfe2009-01-07 14:29:17 +010090#include <linux/io.h>
Hans de Goedefa5bfab2009-03-30 21:46:44 +020091#include <linux/dmi.h>
Ben Hutchings665a96b2011-01-10 22:11:22 +010092#include <linux/slab.h>
Daniel Kurtz636752b2012-07-24 14:13:58 +020093#include <linux/wait.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020094#include <linux/err.h>
Mika Westerberg94246932015-08-06 13:46:25 +010095#include <linux/platform_device.h>
96#include <linux/platform_data/itco_wdt.h>
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +020097#include <linux/pm_runtime.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +020098
Jean Delvare79e3e5b2012-10-28 21:37:01 +010099#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
100 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200101#include <linux/gpio.h>
102#include <linux/i2c-mux-gpio.h>
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/* I801 SMBus address offsets */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100106#define SMBHSTSTS(p) (0 + (p)->smba)
107#define SMBHSTCNT(p) (2 + (p)->smba)
108#define SMBHSTCMD(p) (3 + (p)->smba)
109#define SMBHSTADD(p) (4 + (p)->smba)
110#define SMBHSTDAT0(p) (5 + (p)->smba)
111#define SMBHSTDAT1(p) (6 + (p)->smba)
112#define SMBBLKDAT(p) (7 + (p)->smba)
113#define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */
114#define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */
115#define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/* PCI Address Constants */
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200118#define SMBBAR 4
Jean Delvareaeb8a3d2014-11-12 10:25:37 +0100119#define SMBPCICTL 0x004
Daniel Kurtz636752b2012-07-24 14:13:58 +0200120#define SMBPCISTS 0x006
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#define SMBHSTCFG 0x040
Mika Westerberg94246932015-08-06 13:46:25 +0100122#define TCOBASE 0x050
123#define TCOCTL 0x054
124
125#define ACPIBASE 0x040
126#define ACPIBASE_SMI_OFF 0x030
127#define ACPICTRL 0x044
128#define ACPICTRL_EN 0x080
129
130#define SBREG_BAR 0x10
131#define SBREG_SMBCTRL 0xc6000c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Daniel Kurtz636752b2012-07-24 14:13:58 +0200133/* Host status bits for SMBPCISTS */
134#define SMBPCISTS_INTS 0x08
135
Jean Delvareaeb8a3d2014-11-12 10:25:37 +0100136/* Control bits for SMBPCICTL */
137#define SMBPCICTL_INTDIS 0x0400
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/* Host configuration bits for SMBHSTCFG */
140#define SMBHSTCFG_HST_EN 1
141#define SMBHSTCFG_SMB_SMI_EN 2
142#define SMBHSTCFG_I2C_EN 4
143
Mika Westerberg94246932015-08-06 13:46:25 +0100144/* TCO configuration bits for TCOCTL */
145#define TCOCTL_EN 0x0100
146
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300147/* Auxiliary control register bits, ICH4+ only */
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200148#define SMBAUXCTL_CRC 1
149#define SMBAUXCTL_E32B 2
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* Other settings */
Jean Delvare84c1af42012-03-26 21:47:19 +0200152#define MAX_RETRIES 400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154/* I801 command constants */
155#define I801_QUICK 0x00
156#define I801_BYTE 0x04
157#define I801_BYTE_DATA 0x08
158#define I801_WORD_DATA 0x0C
Jean Delvareae7b0492008-01-27 18:14:49 +0100159#define I801_PROC_CALL 0x10 /* unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define I801_BLOCK_DATA 0x14
Jean Delvare63420642008-01-27 18:14:50 +0100161#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200162
163/* I801 Host Control register bits */
164#define SMBHSTCNT_INTREN 0x01
165#define SMBHSTCNT_KILL 0x02
166#define SMBHSTCNT_LAST_BYTE 0x20
167#define SMBHSTCNT_START 0x40
168#define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200170/* I801 Hosts Status register bits */
171#define SMBHSTSTS_BYTE_DONE 0x80
172#define SMBHSTSTS_INUSE_STS 0x40
173#define SMBHSTSTS_SMBALERT_STS 0x20
174#define SMBHSTSTS_FAILED 0x10
175#define SMBHSTSTS_BUS_ERR 0x08
176#define SMBHSTSTS_DEV_ERR 0x04
177#define SMBHSTSTS_INTR 0x02
178#define SMBHSTSTS_HOST_BUSY 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Daniel Kurtz70a1cc12012-07-24 14:13:58 +0200180#define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \
181 SMBHSTSTS_DEV_ERR)
182
183#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
184 STATUS_ERROR_FLAGS)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200185
Jean Delvarea6e5e2b2011-05-01 18:18:49 +0200186/* Older devices have their ID defined in <linux/pci_ids.h> */
Jean Delvarece316112014-07-17 15:03:24 +0200187#define PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS 0x0f12
Andy Shevchenko34b57f42016-03-09 14:14:17 +0200188#define PCI_DEVICE_ID_INTEL_DNV_SMBUS 0x19df
Jean Delvarece316112014-07-17 15:03:24 +0200189#define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
190#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22
David Woodhouse55fee8d2010-10-31 21:07:00 +0100191/* Patsburg also has three 'Integrated Device Function' SMBus controllers */
Jean Delvarece316112014-07-17 15:03:24 +0200192#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70
193#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71
194#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72
195#define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22
196#define PCI_DEVICE_ID_INTEL_AVOTON_SMBUS 0x1f3c
Andy Shevchenko34b57f42016-03-09 14:14:17 +0200197#define PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS 0x2292
Jean Delvarece316112014-07-17 15:03:24 +0200198#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
199#define PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS 0x23b0
200#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
Andy Shevchenko34b57f42016-03-09 14:14:17 +0200201#define PCI_DEVICE_ID_INTEL_BROXTON_SMBUS 0x5ad4
Jean Delvarece316112014-07-17 15:03:24 +0200202#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
Jean Delvareb299de82014-07-17 15:04:41 +0200203#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_SMBUS 0x8ca2
Jean Delvarece316112014-07-17 15:03:24 +0200204#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS 0x8d22
205#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0 0x8d7d
206#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1 0x8d7e
207#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2 0x8d7f
208#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
James Ralstonafc65922013-11-04 09:29:48 -0800209#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS 0x9ca2
Devin Ryles3eee17992014-11-05 16:30:03 -0500210#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS 0x9d23
Andy Shevchenko34b57f42016-03-09 14:14:17 +0200211#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS 0xa123
Alexandra Yatescdc5a312015-11-05 11:40:25 -0800212#define PCI_DEVICE_ID_INTEL_LEWISBURG_SMBUS 0xa1a3
213#define PCI_DEVICE_ID_INTEL_LEWISBURG_SSKU_SMBUS 0xa223
David Woodhouse55fee8d2010-10-31 21:07:00 +0100214
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200215struct i801_mux_config {
216 char *gpio_chip;
217 unsigned values[3];
218 int n_values;
219 unsigned classes[3];
220 unsigned gpios[2]; /* Relative to gpio_chip->base */
221 int n_gpios;
222};
223
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100224struct i801_priv {
225 struct i2c_adapter adapter;
226 unsigned long smba;
227 unsigned char original_hstcfg;
228 struct pci_dev *pci_dev;
229 unsigned int features;
Daniel Kurtz636752b2012-07-24 14:13:58 +0200230
231 /* isr processing */
232 wait_queue_head_t waitq;
233 u8 status;
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200234
235 /* Command state used by isr for byte-by-byte block transactions */
236 u8 cmd;
237 bool is_read;
238 int count;
239 int len;
240 u8 *data;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200241
Jean Delvare79e3e5b2012-10-28 21:37:01 +0100242#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
243 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200244 const struct i801_mux_config *mux_drvdata;
Jean Delvare3ad7ea12012-10-05 22:23:53 +0200245 struct platform_device *mux_pdev;
246#endif
Mika Westerberg94246932015-08-06 13:46:25 +0100247 struct platform_device *tco_pdev;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100248};
249
Jean Delvare369f6f42008-01-27 18:14:50 +0100250#define FEATURE_SMBUS_PEC (1 << 0)
251#define FEATURE_BLOCK_BUFFER (1 << 1)
252#define FEATURE_BLOCK_PROC (1 << 2)
253#define FEATURE_I2C_BLOCK_READ (1 << 3)
Daniel Kurtz636752b2012-07-24 14:13:58 +0200254#define FEATURE_IRQ (1 << 4)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200255/* Not really a feature, but it's convenient to handle it as such */
256#define FEATURE_IDF (1 << 15)
Mika Westerberg94246932015-08-06 13:46:25 +0100257#define FEATURE_TCO (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Jean Delvareadff6872010-05-21 18:40:54 +0200259static const char *i801_feature_names[] = {
260 "SMBus PEC",
261 "Block buffer",
262 "Block process call",
263 "I2C block read",
Daniel Kurtz636752b2012-07-24 14:13:58 +0200264 "Interrupt",
Jean Delvareadff6872010-05-21 18:40:54 +0200265};
266
267static unsigned int disable_features;
268module_param(disable_features, uint, S_IRUGO | S_IWUSR);
Jean Delvare53229342013-05-15 02:44:10 +0000269MODULE_PARM_DESC(disable_features, "Disable selected driver features:\n"
270 "\t\t 0x01 disable SMBus PEC\n"
271 "\t\t 0x02 disable the block buffer\n"
272 "\t\t 0x08 disable the I2C block read functionality\n"
273 "\t\t 0x10 don't use interrupts ");
Jean Delvareadff6872010-05-21 18:40:54 +0200274
Jean Delvarecf898dc2008-07-14 22:38:33 +0200275/* Make sure the SMBus host is ready to start transmitting.
276 Return 0 if it is, -EBUSY if it is not. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100277static int i801_check_pre(struct i801_priv *priv)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200278{
279 int status;
280
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100281 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200282 if (status & SMBHSTSTS_HOST_BUSY) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100283 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200284 return -EBUSY;
285 }
286
287 status &= STATUS_FLAGS;
288 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100289 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
Jean Delvarecf898dc2008-07-14 22:38:33 +0200290 status);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100291 outb_p(status, SMBHSTSTS(priv));
292 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200293 if (status) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100294 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200295 "Failed clearing status flags (%02x)\n",
296 status);
297 return -EBUSY;
298 }
299 }
300
301 return 0;
302}
303
Jean Delvare6cad93c2012-07-24 14:13:58 +0200304/*
305 * Convert the status register to an error code, and clear it.
306 * Note that status only contains the bits we want to clear, not the
307 * actual register value.
308 */
309static int i801_check_post(struct i801_priv *priv, int status)
Jean Delvarecf898dc2008-07-14 22:38:33 +0200310{
311 int result = 0;
312
Daniel Kurtz636752b2012-07-24 14:13:58 +0200313 /*
314 * If the SMBus is still busy, we give up
315 * Note: This timeout condition only happens when using polling
316 * transactions. For interrupt operation, NAK/timeout is indicated by
317 * DEV_ERR.
318 */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200319 if (unlikely(status < 0)) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100320 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200321 /* try to stop the current command */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100322 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
323 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
324 SMBHSTCNT(priv));
Jean Delvare84c1af42012-03-26 21:47:19 +0200325 usleep_range(1000, 2000);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100326 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
327 SMBHSTCNT(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200328
329 /* Check if it worked */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100330 status = inb_p(SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200331 if ((status & SMBHSTSTS_HOST_BUSY) ||
332 !(status & SMBHSTSTS_FAILED))
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100333 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200334 "Failed terminating the transaction\n");
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100335 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200336 return -ETIMEDOUT;
337 }
338
339 if (status & SMBHSTSTS_FAILED) {
340 result = -EIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100341 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200342 }
343 if (status & SMBHSTSTS_DEV_ERR) {
344 result = -ENXIO;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100345 dev_dbg(&priv->pci_dev->dev, "No response\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200346 }
347 if (status & SMBHSTSTS_BUS_ERR) {
348 result = -EAGAIN;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100349 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
Jean Delvarecf898dc2008-07-14 22:38:33 +0200350 }
351
Jean Delvare6cad93c2012-07-24 14:13:58 +0200352 /* Clear status flags except BYTE_DONE, to be cleared by caller */
353 outb_p(status, SMBHSTSTS(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200354
355 return result;
356}
357
Jean Delvare6cad93c2012-07-24 14:13:58 +0200358/* Wait for BUSY being cleared and either INTR or an error flag being set */
359static int i801_wait_intr(struct i801_priv *priv)
360{
361 int timeout = 0;
362 int status;
363
364 /* We will always wait for a fraction of a second! */
365 do {
366 usleep_range(250, 500);
367 status = inb_p(SMBHSTSTS(priv));
368 } while (((status & SMBHSTSTS_HOST_BUSY) ||
369 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
370 (timeout++ < MAX_RETRIES));
371
372 if (timeout > MAX_RETRIES) {
373 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
374 return -ETIMEDOUT;
375 }
376 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
377}
378
379/* Wait for either BYTE_DONE or an error flag being set */
380static int i801_wait_byte_done(struct i801_priv *priv)
381{
382 int timeout = 0;
383 int status;
384
385 /* We will always wait for a fraction of a second! */
386 do {
387 usleep_range(250, 500);
388 status = inb_p(SMBHSTSTS(priv));
389 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
390 (timeout++ < MAX_RETRIES));
391
392 if (timeout > MAX_RETRIES) {
393 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
394 return -ETIMEDOUT;
395 }
396 return status & STATUS_ERROR_FLAGS;
397}
398
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100399static int i801_transaction(struct i801_priv *priv, int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Jean Delvare2b738092008-07-14 22:38:32 +0200401 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200402 int result;
Jean Delvareb3b8df92014-11-12 10:20:40 +0100403 const struct i2c_adapter *adap = &priv->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100405 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200406 if (result < 0)
407 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Daniel Kurtz636752b2012-07-24 14:13:58 +0200409 if (priv->features & FEATURE_IRQ) {
410 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
411 SMBHSTCNT(priv));
Jean Delvareb3b8df92014-11-12 10:20:40 +0100412 result = wait_event_timeout(priv->waitq,
413 (status = priv->status),
414 adap->timeout);
415 if (!result) {
416 status = -ETIMEDOUT;
417 dev_warn(&priv->pci_dev->dev,
418 "Timeout waiting for interrupt!\n");
419 }
Daniel Kurtz636752b2012-07-24 14:13:58 +0200420 priv->status = 0;
421 return i801_check_post(priv, status);
422 }
423
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200424 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
Daniel Kurtz37af8712012-07-24 14:13:58 +0200425 * SMBSCMD are passed in xact */
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200426 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Jean Delvare6cad93c2012-07-24 14:13:58 +0200428 status = i801_wait_intr(priv);
429 return i801_check_post(priv, status);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200430}
431
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100432static int i801_block_transaction_by_block(struct i801_priv *priv,
433 union i2c_smbus_data *data,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200434 char read_write, int hwpec)
435{
436 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200437 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200438
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100439 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200440
441 /* Use 32-byte buffer to process this transaction */
442 if (read_write == I2C_SMBUS_WRITE) {
443 len = data->block[0];
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100444 outb_p(len, SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200445 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100446 outb_p(data->block[i+1], SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200447 }
448
Daniel Kurtz37af8712012-07-24 14:13:58 +0200449 status = i801_transaction(priv, I801_BLOCK_DATA |
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200450 (hwpec ? SMBHSTCNT_PEC_EN : 0));
David Brownell97140342008-07-14 22:38:25 +0200451 if (status)
452 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200453
454 if (read_write == I2C_SMBUS_READ) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100455 len = inb_p(SMBHSTDAT0(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200456 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200457 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200458
459 data->block[0] = len;
460 for (i = 0; i < len; i++)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100461 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200462 }
463 return 0;
464}
465
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200466static void i801_isr_byte_done(struct i801_priv *priv)
467{
468 if (priv->is_read) {
469 /* For SMBus block reads, length is received with first byte */
470 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
471 (priv->count == 0)) {
472 priv->len = inb_p(SMBHSTDAT0(priv));
473 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
474 dev_err(&priv->pci_dev->dev,
475 "Illegal SMBus block read size %d\n",
476 priv->len);
477 /* FIXME: Recover */
478 priv->len = I2C_SMBUS_BLOCK_MAX;
479 } else {
480 dev_dbg(&priv->pci_dev->dev,
481 "SMBus block read size is %d\n",
482 priv->len);
483 }
484 priv->data[-1] = priv->len;
485 }
486
487 /* Read next byte */
488 if (priv->count < priv->len)
489 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
490 else
491 dev_dbg(&priv->pci_dev->dev,
492 "Discarding extra byte on block read\n");
493
494 /* Set LAST_BYTE for last byte of read transaction */
495 if (priv->count == priv->len - 1)
496 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
497 SMBHSTCNT(priv));
498 } else if (priv->count < priv->len - 1) {
499 /* Write next byte, except for IRQ after last byte */
500 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
501 }
502
503 /* Clear BYTE_DONE to continue with next byte */
504 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
505}
506
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200507/*
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200508 * There are two kinds of interrupts:
509 *
510 * 1) i801 signals transaction completion with one of these interrupts:
511 * INTR - Success
512 * DEV_ERR - Invalid command, NAK or communication timeout
513 * BUS_ERR - SMI# transaction collision
514 * FAILED - transaction was canceled due to a KILL request
515 * When any of these occur, update ->status and wake up the waitq.
516 * ->status must be cleared before kicking off the next transaction.
517 *
518 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
519 * occurs for each byte of a byte-by-byte to prepare the next byte.
Daniel Kurtz636752b2012-07-24 14:13:58 +0200520 */
521static irqreturn_t i801_isr(int irq, void *dev_id)
522{
523 struct i801_priv *priv = dev_id;
524 u16 pcists;
525 u8 status;
526
527 /* Confirm this is our interrupt */
528 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
529 if (!(pcists & SMBPCISTS_INTS))
530 return IRQ_NONE;
531
532 status = inb_p(SMBHSTSTS(priv));
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200533 if (status & SMBHSTSTS_BYTE_DONE)
534 i801_isr_byte_done(priv);
535
Daniel Kurtz636752b2012-07-24 14:13:58 +0200536 /*
537 * Clear irq sources and report transaction result.
538 * ->status must be cleared before the next transaction is started.
539 */
540 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
541 if (status) {
542 outb_p(status, SMBHSTSTS(priv));
543 priv->status |= status;
544 wake_up(&priv->waitq);
545 }
546
547 return IRQ_HANDLED;
548}
549
550/*
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200551 * For "byte-by-byte" block transactions:
552 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
553 * I2C read uses cmd=I801_I2C_BLOCK_DATA
554 */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100555static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
556 union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100557 char read_write, int command,
558 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 int i, len;
561 int smbcmd;
Jean Delvare2b738092008-07-14 22:38:32 +0200562 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200563 int result;
Jean Delvareb3b8df92014-11-12 10:20:40 +0100564 const struct i2c_adapter *adap = &priv->adapter;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200565
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100566 result = i801_check_pre(priv);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200567 if (result < 0)
568 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200570 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100573 outb_p(len, SMBHSTDAT0(priv));
574 outb_p(data->block[1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200577 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
578 read_write == I2C_SMBUS_READ)
579 smbcmd = I801_I2C_BLOCK_DATA;
580 else
581 smbcmd = I801_BLOCK_DATA;
582
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200583 if (priv->features & FEATURE_IRQ) {
584 priv->is_read = (read_write == I2C_SMBUS_READ);
585 if (len == 1 && priv->is_read)
586 smbcmd |= SMBHSTCNT_LAST_BYTE;
587 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
588 priv->len = len;
589 priv->count = 0;
590 priv->data = &data->block[1];
591
592 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
Jean Delvareb3b8df92014-11-12 10:20:40 +0100593 result = wait_event_timeout(priv->waitq,
594 (status = priv->status),
595 adap->timeout);
596 if (!result) {
597 status = -ETIMEDOUT;
598 dev_warn(&priv->pci_dev->dev,
599 "Timeout waiting for interrupt!\n");
600 }
Daniel Kurtzd3ff6ce2012-07-24 14:13:59 +0200601 priv->status = 0;
602 return i801_check_post(priv, status);
603 }
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 for (i = 1; i <= len; i++) {
Daniel Kurtzefa3cb12012-07-24 14:13:57 +0200606 if (i == len && read_write == I2C_SMBUS_READ)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200607 smbcmd |= SMBHSTCNT_LAST_BYTE;
Daniel Kurtz37af8712012-07-24 14:13:58 +0200608 outb_p(smbcmd, SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (i == 1)
Daniel Kurtzedbeea62012-07-24 14:13:58 +0200611 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100612 SMBHSTCNT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Jean Delvare6cad93c2012-07-24 14:13:58 +0200614 status = i801_wait_byte_done(priv);
615 if (status)
616 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Jean Delvare63420642008-01-27 18:14:50 +0100618 if (i == 1 && read_write == I2C_SMBUS_READ
619 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100620 len = inb_p(SMBHSTDAT0(priv));
Jean Delvarecf898dc2008-07-14 22:38:33 +0200621 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100622 dev_err(&priv->pci_dev->dev,
Jean Delvarecf898dc2008-07-14 22:38:33 +0200623 "Illegal SMBus block read size %d\n",
624 len);
625 /* Recover */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100626 while (inb_p(SMBHSTSTS(priv)) &
627 SMBHSTSTS_HOST_BUSY)
628 outb_p(SMBHSTSTS_BYTE_DONE,
629 SMBHSTSTS(priv));
630 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
David Brownell97140342008-07-14 22:38:25 +0200631 return -EPROTO;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 data->block[0] = len;
634 }
635
636 /* Retrieve/store value in SMBBLKDAT */
637 if (read_write == I2C_SMBUS_READ)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100638 data->block[i] = inb_p(SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100640 outb_p(data->block[i+1], SMBBLKDAT(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Jean Delvarecf898dc2008-07-14 22:38:33 +0200642 /* signals SMBBLKDAT ready */
Jean Delvare6cad93c2012-07-24 14:13:58 +0200643 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200644 }
Jean Delvarecf898dc2008-07-14 22:38:33 +0200645
Jean Delvare6cad93c2012-07-24 14:13:58 +0200646 status = i801_wait_intr(priv);
647exit:
648 return i801_check_post(priv, status);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200649}
650
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100651static int i801_set_block_buffer_mode(struct i801_priv *priv)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200652{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100653 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
654 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200655 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200656 return 0;
657}
658
659/* Block transaction function */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100660static int i801_block_transaction(struct i801_priv *priv,
661 union i2c_smbus_data *data, char read_write,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200662 int command, int hwpec)
663{
664 int result = 0;
665 unsigned char hostc;
666
667 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
668 if (read_write == I2C_SMBUS_WRITE) {
669 /* set I2C_EN bit in configuration register */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100670 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
671 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200672 hostc | SMBHSTCFG_I2C_EN);
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100673 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
674 dev_err(&priv->pci_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100675 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200676 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
Jean Delvare63420642008-01-27 18:14:50 +0100680 if (read_write == I2C_SMBUS_WRITE
681 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200682 if (data->block[0] < 1)
683 data->block[0] = 1;
684 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
685 data->block[0] = I2C_SMBUS_BLOCK_MAX;
686 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100687 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200688 }
689
Jean Delvarec074c392010-03-13 20:56:53 +0100690 /* Experience has shown that the block buffer can only be used for
691 SMBus (not I2C) block transactions, even though the datasheet
692 doesn't mention this limitation. */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100693 if ((priv->features & FEATURE_BLOCK_BUFFER)
Jean Delvarec074c392010-03-13 20:56:53 +0100694 && command != I2C_SMBUS_I2C_BLOCK_DATA
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100695 && i801_set_block_buffer_mode(priv) == 0)
696 result = i801_block_transaction_by_block(priv, data,
697 read_write, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200698 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100699 result = i801_block_transaction_byte_by_byte(priv, data,
700 read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100701 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200702
Jean Delvare63420642008-01-27 18:14:50 +0100703 if (command == I2C_SMBUS_I2C_BLOCK_DATA
704 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /* restore saved configuration register value */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100706 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708 return result;
709}
710
David Brownell97140342008-07-14 22:38:25 +0200711/* Return negative errno on error. */
Ivo Manca3fb21c62010-05-21 18:40:55 +0200712static s32 i801_access(struct i2c_adapter *adap, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 unsigned short flags, char read_write, u8 command,
Ivo Manca3fb21c62010-05-21 18:40:55 +0200714 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200716 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 int block = 0;
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +0200718 int ret = 0, xact = 0;
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100719 struct i801_priv *priv = i2c_get_adapdata(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +0200721 pm_runtime_get_sync(&priv->pci_dev->dev);
722
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100723 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200724 && size != I2C_SMBUS_QUICK
725 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 switch (size) {
728 case I2C_SMBUS_QUICK:
729 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100730 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 xact = I801_QUICK;
732 break;
733 case I2C_SMBUS_BYTE:
734 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100735 SMBHSTADD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100737 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 xact = I801_BYTE;
739 break;
740 case I2C_SMBUS_BYTE_DATA:
741 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100742 SMBHSTADD(priv));
743 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (read_write == I2C_SMBUS_WRITE)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100745 outb_p(data->byte, SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 xact = I801_BYTE_DATA;
747 break;
748 case I2C_SMBUS_WORD_DATA:
749 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100750 SMBHSTADD(priv));
751 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (read_write == I2C_SMBUS_WRITE) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100753 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
754 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756 xact = I801_WORD_DATA;
757 break;
758 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100760 SMBHSTADD(priv));
761 outb_p(command, SMBHSTCMD(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 block = 1;
763 break;
Jean Delvare63420642008-01-27 18:14:50 +0100764 case I2C_SMBUS_I2C_BLOCK_DATA:
765 /* NB: page 240 of ICH5 datasheet shows that the R/#W
766 * bit should be cleared here, even when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100767 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100768 if (read_write == I2C_SMBUS_READ) {
769 /* NB: page 240 of ICH5 datasheet also shows
770 * that DATA1 is the cmd field when reading */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100771 outb_p(command, SMBHSTDAT1(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100772 } else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100773 outb_p(command, SMBHSTCMD(priv));
Jean Delvare63420642008-01-27 18:14:50 +0100774 block = 1;
775 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100777 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
778 size);
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +0200779 ret = -EOPNOTSUPP;
780 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200783 if (hwpec) /* enable/disable hardware PEC */
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100784 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200785 else
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100786 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
787 SMBAUXCTL(priv));
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200788
Ivo Manca3fb21c62010-05-21 18:40:55 +0200789 if (block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100790 ret = i801_block_transaction(priv, data, read_write, size,
791 hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200792 else
Daniel Kurtz37af8712012-07-24 14:13:58 +0200793 ret = i801_transaction(priv, xact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Jean Delvarec79cfba2006-04-20 02:43:18 -0700795 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200796 time, so we forcibly disable it after every transaction. Turn off
797 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100798 if (hwpec || block)
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100799 outb_p(inb_p(SMBAUXCTL(priv)) &
800 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarec79cfba2006-04-20 02:43:18 -0700801
Ivo Manca3fb21c62010-05-21 18:40:55 +0200802 if (block)
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +0200803 goto out;
Ivo Manca3fb21c62010-05-21 18:40:55 +0200804 if (ret)
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +0200805 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +0200807 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 switch (xact & 0x7f) {
810 case I801_BYTE: /* Result put in SMBHSTDAT0 */
811 case I801_BYTE_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100812 data->byte = inb_p(SMBHSTDAT0(priv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 break;
814 case I801_WORD_DATA:
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100815 data->word = inb_p(SMBHSTDAT0(priv)) +
816 (inb_p(SMBHSTDAT1(priv)) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 break;
818 }
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +0200819
820out:
821 pm_runtime_mark_last_busy(&priv->pci_dev->dev);
822 pm_runtime_put_autosuspend(&priv->pci_dev->dev);
823 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826
827static u32 i801_func(struct i2c_adapter *adapter)
828{
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100829 struct i801_priv *priv = i2c_get_adapdata(adapter);
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100832 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
833 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
David Woodhouse0cd96eb2010-10-31 21:06:59 +0100834 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
835 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
Jean Delvare63420642008-01-27 18:14:50 +0100836 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Jean Delvare8f9082c2006-09-03 22:39:46 +0200839static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 .smbus_xfer = i801_access,
841 .functionality = i801_func,
842};
843
Jingoo Han392debf2013-12-03 08:11:20 +0900844static const struct pci_device_id i801_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
846 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
847 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
848 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
849 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
850 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
851 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
852 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
853 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700854 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800855 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800856 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700857 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100858 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
859 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Seth Heasleycb04e952010-10-04 13:27:14 -0700860 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
861 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
Seth Heasleye30d9852010-10-31 21:06:59 +0100862 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
David Woodhouse55fee8d2010-10-31 21:07:00 +0100863 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
864 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
865 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
Seth Heasley662cda82011-03-20 14:50:53 +0100866 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
Seth Heasley6e2a8512011-05-24 20:58:49 +0200867 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
Seth Heasley062737f2012-03-26 21:47:19 +0200868 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
James Ralston4a8f1dd2012-09-10 10:14:02 +0200869 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
Seth Heasleyc2db409c2013-01-30 15:25:32 +0000870 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMBUS) },
James Ralstona3fc0ff2013-02-14 09:15:33 +0000871 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS) },
872 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0) },
873 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1) },
874 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2) },
Seth Heasleyf39901c2013-06-19 16:59:57 -0700875 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS) },
Jean Delvareb299de82014-07-17 15:04:41 +0200876 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_SMBUS) },
James Ralstonafc65922013-11-04 09:29:48 -0800877 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS) },
Chew, Kean ho1b31e9b2014-03-01 00:03:56 +0800878 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS) },
Alan Cox39e8e302014-08-19 17:37:28 +0300879 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS) },
james.d.ralston@intel.com3e27a842014-10-13 15:20:24 -0700880 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS) },
Devin Ryles3eee17992014-11-05 16:30:03 -0500881 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS) },
Mika Westerberg84d7f2e2015-10-13 15:41:39 +0300882 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DNV_SMBUS) },
Jarkko Nikuladd77f422015-10-22 17:16:58 +0300883 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BROXTON_SMBUS) },
Alexandra Yatescdc5a312015-11-05 11:40:25 -0800884 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LEWISBURG_SMBUS) },
885 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LEWISBURG_SSKU_SMBUS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 { 0, }
887};
888
Ivo Manca3fb21c62010-05-21 18:40:55 +0200889MODULE_DEVICE_TABLE(pci, i801_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Jean Delvare8eacfce2011-05-24 20:58:49 +0200891#if defined CONFIG_X86 && defined CONFIG_DMI
Jean Delvare1561bfe2009-01-07 14:29:17 +0100892static unsigned char apanel_addr;
893
894/* Scan the system ROM for the signature "FJKEYINF" */
895static __init const void __iomem *bios_signature(const void __iomem *bios)
896{
897 ssize_t offset;
898 const unsigned char signature[] = "FJKEYINF";
899
900 for (offset = 0; offset < 0x10000; offset += 0x10) {
901 if (check_signature(bios + offset, signature,
902 sizeof(signature)-1))
903 return bios + offset;
904 }
905 return NULL;
906}
907
908static void __init input_apanel_init(void)
909{
910 void __iomem *bios;
911 const void __iomem *p;
912
913 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
914 p = bios_signature(bios);
915 if (p) {
916 /* just use the first address */
917 apanel_addr = readb(p + 8 + 3) >> 1;
918 }
919 iounmap(bios);
920}
Jean Delvare1561bfe2009-01-07 14:29:17 +0100921
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200922struct dmi_onboard_device_info {
923 const char *name;
924 u8 type;
925 unsigned short i2c_addr;
926 const char *i2c_type;
927};
928
Bill Pemberton0b255e92012-11-27 15:59:38 -0500929static const struct dmi_onboard_device_info dmi_devices[] = {
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200930 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
931 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
932 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
933};
934
Bill Pemberton0b255e92012-11-27 15:59:38 -0500935static void dmi_check_onboard_device(u8 type, const char *name,
936 struct i2c_adapter *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200937{
938 int i;
939 struct i2c_board_info info;
940
941 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
942 /* & ~0x80, ignore enabled/disabled bit */
943 if ((type & ~0x80) != dmi_devices[i].type)
944 continue;
Jean Delvarefaabd472010-07-09 16:22:51 +0200945 if (strcasecmp(name, dmi_devices[i].name))
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200946 continue;
947
948 memset(&info, 0, sizeof(struct i2c_board_info));
949 info.addr = dmi_devices[i].i2c_addr;
950 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
951 i2c_new_device(adap, &info);
952 break;
953 }
954}
955
956/* We use our own function to check for onboard devices instead of
957 dmi_find_device() as some buggy BIOS's have the devices we are interested
958 in marked as disabled */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500959static void dmi_check_onboard_devices(const struct dmi_header *dm, void *adap)
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200960{
961 int i, count;
962
963 if (dm->type != 10)
964 return;
965
966 count = (dm->length - sizeof(struct dmi_header)) / 2;
967 for (i = 0; i < count; i++) {
968 const u8 *d = (char *)(dm + 1) + (i * 2);
969 const char *name = ((char *) dm) + dm->length;
970 u8 type = d[0];
971 u8 s = d[1];
972
973 if (!s)
974 continue;
975 s--;
976 while (s > 0 && name[0]) {
977 name += strlen(name) + 1;
978 s--;
979 }
980 if (name[0] == 0) /* Bogus string reference */
981 continue;
982
983 dmi_check_onboard_device(type, name, adap);
984 }
985}
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200986
Jean Delvaree7198fb2011-05-24 20:58:49 +0200987/* Register optional slaves */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500988static void i801_probe_optional_slaves(struct i801_priv *priv)
Jean Delvaree7198fb2011-05-24 20:58:49 +0200989{
990 /* Only register slaves on main SMBus channel */
991 if (priv->features & FEATURE_IDF)
992 return;
993
Jean Delvaree7198fb2011-05-24 20:58:49 +0200994 if (apanel_addr) {
995 struct i2c_board_info info;
996
997 memset(&info, 0, sizeof(struct i2c_board_info));
998 info.addr = apanel_addr;
999 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
1000 i2c_new_device(&priv->adapter, &info);
1001 }
Jean Delvare8eacfce2011-05-24 20:58:49 +02001002
Jean Delvaree7198fb2011-05-24 20:58:49 +02001003 if (dmi_name_in_vendors("FUJITSU"))
1004 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
Jean Delvaree7198fb2011-05-24 20:58:49 +02001005}
Jean Delvare8eacfce2011-05-24 20:58:49 +02001006#else
1007static void __init input_apanel_init(void) {}
Bill Pemberton0b255e92012-11-27 15:59:38 -05001008static void i801_probe_optional_slaves(struct i801_priv *priv) {}
Jean Delvare8eacfce2011-05-24 20:58:49 +02001009#endif /* CONFIG_X86 && CONFIG_DMI */
Jean Delvaree7198fb2011-05-24 20:58:49 +02001010
Jean Delvare79e3e5b2012-10-28 21:37:01 +01001011#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
1012 defined CONFIG_DMI
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001013static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
1014 .gpio_chip = "gpio_ich",
1015 .values = { 0x02, 0x03 },
1016 .n_values = 2,
1017 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
1018 .gpios = { 52, 53 },
1019 .n_gpios = 2,
1020};
1021
1022static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
1023 .gpio_chip = "gpio_ich",
1024 .values = { 0x02, 0x03, 0x01 },
1025 .n_values = 3,
1026 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
1027 .gpios = { 52, 53 },
1028 .n_gpios = 2,
1029};
1030
Bill Pemberton0b255e92012-11-27 15:59:38 -05001031static const struct dmi_system_id mux_dmi_table[] = {
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001032 {
1033 .matches = {
1034 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1035 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
1036 },
1037 .driver_data = &i801_mux_config_asus_z8_d12,
1038 },
1039 {
1040 .matches = {
1041 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1042 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"),
1043 },
1044 .driver_data = &i801_mux_config_asus_z8_d12,
1045 },
1046 {
1047 .matches = {
1048 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1049 DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"),
1050 },
1051 .driver_data = &i801_mux_config_asus_z8_d12,
1052 },
1053 {
1054 .matches = {
1055 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1056 DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"),
1057 },
1058 .driver_data = &i801_mux_config_asus_z8_d12,
1059 },
1060 {
1061 .matches = {
1062 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1063 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
1064 },
1065 .driver_data = &i801_mux_config_asus_z8_d12,
1066 },
1067 {
1068 .matches = {
1069 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1070 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
1071 },
1072 .driver_data = &i801_mux_config_asus_z8_d12,
1073 },
1074 {
1075 .matches = {
1076 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1077 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
1078 },
1079 .driver_data = &i801_mux_config_asus_z8_d18,
1080 },
1081 {
1082 .matches = {
1083 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1084 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
1085 },
1086 .driver_data = &i801_mux_config_asus_z8_d18,
1087 },
1088 {
1089 .matches = {
1090 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1091 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1092 },
1093 .driver_data = &i801_mux_config_asus_z8_d12,
1094 },
1095 { }
1096};
1097
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001098/* Setup multiplexing if needed */
Bill Pemberton0b255e92012-11-27 15:59:38 -05001099static int i801_add_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001100{
1101 struct device *dev = &priv->adapter.dev;
1102 const struct i801_mux_config *mux_config;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001103 struct i2c_mux_gpio_platform_data gpio_data;
Jean Delvaref82b8622012-10-05 22:23:54 +02001104 int err;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001105
1106 if (!priv->mux_drvdata)
1107 return 0;
1108 mux_config = priv->mux_drvdata;
1109
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001110 /* Prepare the platform data */
1111 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1112 gpio_data.parent = priv->adapter.nr;
1113 gpio_data.values = mux_config->values;
1114 gpio_data.n_values = mux_config->n_values;
1115 gpio_data.classes = mux_config->classes;
Jean Delvaref82b8622012-10-05 22:23:54 +02001116 gpio_data.gpio_chip = mux_config->gpio_chip;
1117 gpio_data.gpios = mux_config->gpios;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001118 gpio_data.n_gpios = mux_config->n_gpios;
1119 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1120
1121 /* Register the mux device */
1122 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
Jean Delvaref82b8622012-10-05 22:23:54 +02001123 PLATFORM_DEVID_AUTO, &gpio_data,
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001124 sizeof(struct i2c_mux_gpio_platform_data));
1125 if (IS_ERR(priv->mux_pdev)) {
1126 err = PTR_ERR(priv->mux_pdev);
1127 priv->mux_pdev = NULL;
1128 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1129 return err;
1130 }
1131
1132 return 0;
1133}
1134
Bill Pemberton0b255e92012-11-27 15:59:38 -05001135static void i801_del_mux(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001136{
1137 if (priv->mux_pdev)
1138 platform_device_unregister(priv->mux_pdev);
1139}
1140
Bill Pemberton0b255e92012-11-27 15:59:38 -05001141static unsigned int i801_get_adapter_class(struct i801_priv *priv)
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001142{
1143 const struct dmi_system_id *id;
1144 const struct i801_mux_config *mux_config;
1145 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1146 int i;
1147
1148 id = dmi_first_match(mux_dmi_table);
1149 if (id) {
Jean Delvare28901f52012-10-28 21:37:01 +01001150 /* Remove branch classes from trunk */
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001151 mux_config = id->driver_data;
1152 for (i = 0; i < mux_config->n_values; i++)
1153 class &= ~mux_config->classes[i];
1154
1155 /* Remember for later */
1156 priv->mux_drvdata = mux_config;
1157 }
1158
1159 return class;
1160}
1161#else
1162static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1163static inline void i801_del_mux(struct i801_priv *priv) { }
1164
1165static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1166{
1167 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1168}
1169#endif
1170
Mika Westerberg94246932015-08-06 13:46:25 +01001171static const struct itco_wdt_platform_data tco_platform_data = {
1172 .name = "Intel PCH",
1173 .version = 4,
1174};
1175
1176static DEFINE_SPINLOCK(p2sb_spinlock);
1177
1178static void i801_add_tco(struct i801_priv *priv)
1179{
1180 struct pci_dev *pci_dev = priv->pci_dev;
1181 struct resource tco_res[3], *res;
1182 struct platform_device *pdev;
1183 unsigned int devfn;
1184 u32 tco_base, tco_ctl;
1185 u32 base_addr, ctrl_val;
1186 u64 base64_addr;
1187
1188 if (!(priv->features & FEATURE_TCO))
1189 return;
1190
1191 pci_read_config_dword(pci_dev, TCOBASE, &tco_base);
1192 pci_read_config_dword(pci_dev, TCOCTL, &tco_ctl);
1193 if (!(tco_ctl & TCOCTL_EN))
1194 return;
1195
1196 memset(tco_res, 0, sizeof(tco_res));
1197
1198 res = &tco_res[ICH_RES_IO_TCO];
1199 res->start = tco_base & ~1;
1200 res->end = res->start + 32 - 1;
1201 res->flags = IORESOURCE_IO;
1202
1203 /*
1204 * Power Management registers.
1205 */
1206 devfn = PCI_DEVFN(PCI_SLOT(pci_dev->devfn), 2);
1207 pci_bus_read_config_dword(pci_dev->bus, devfn, ACPIBASE, &base_addr);
1208
1209 res = &tco_res[ICH_RES_IO_SMI];
1210 res->start = (base_addr & ~1) + ACPIBASE_SMI_OFF;
1211 res->end = res->start + 3;
1212 res->flags = IORESOURCE_IO;
1213
1214 /*
1215 * Enable the ACPI I/O space.
1216 */
1217 pci_bus_read_config_dword(pci_dev->bus, devfn, ACPICTRL, &ctrl_val);
1218 ctrl_val |= ACPICTRL_EN;
1219 pci_bus_write_config_dword(pci_dev->bus, devfn, ACPICTRL, ctrl_val);
1220
1221 /*
1222 * We must access the NO_REBOOT bit over the Primary to Sideband
1223 * bridge (P2SB). The BIOS prevents the P2SB device from being
1224 * enumerated by the PCI subsystem, so we need to unhide/hide it
1225 * to lookup the P2SB BAR.
1226 */
1227 spin_lock(&p2sb_spinlock);
1228
1229 devfn = PCI_DEVFN(PCI_SLOT(pci_dev->devfn), 1);
1230
1231 /* Unhide the P2SB device */
1232 pci_bus_write_config_byte(pci_dev->bus, devfn, 0xe1, 0x0);
1233
1234 pci_bus_read_config_dword(pci_dev->bus, devfn, SBREG_BAR, &base_addr);
1235 base64_addr = base_addr & 0xfffffff0;
1236
1237 pci_bus_read_config_dword(pci_dev->bus, devfn, SBREG_BAR + 0x4, &base_addr);
1238 base64_addr |= (u64)base_addr << 32;
1239
1240 /* Hide the P2SB device */
1241 pci_bus_write_config_byte(pci_dev->bus, devfn, 0xe1, 0x1);
1242 spin_unlock(&p2sb_spinlock);
1243
1244 res = &tco_res[ICH_RES_MEM_OFF];
1245 res->start = (resource_size_t)base64_addr + SBREG_SMBCTRL;
1246 res->end = res->start + 3;
1247 res->flags = IORESOURCE_MEM;
1248
1249 pdev = platform_device_register_resndata(&pci_dev->dev, "iTCO_wdt", -1,
1250 tco_res, 3, &tco_platform_data,
1251 sizeof(tco_platform_data));
1252 if (IS_ERR(pdev)) {
1253 dev_warn(&pci_dev->dev, "failed to create iTCO device\n");
1254 return;
1255 }
1256
1257 priv->tco_pdev = pdev;
1258}
1259
Bill Pemberton0b255e92012-11-27 15:59:38 -05001260static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001262 unsigned char temp;
Jean Delvareadff6872010-05-21 18:40:54 +02001263 int err, i;
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001264 struct i801_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Jarkko Nikula1621c592015-02-13 15:52:23 +02001266 priv = devm_kzalloc(&dev->dev, sizeof(*priv), GFP_KERNEL);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001267 if (!priv)
1268 return -ENOMEM;
1269
1270 i2c_set_adapdata(&priv->adapter, priv);
1271 priv->adapter.owner = THIS_MODULE;
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001272 priv->adapter.class = i801_get_adapter_class(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001273 priv->adapter.algo = &smbus_algorithm;
Dustin Byford8eb5c872015-10-23 12:27:07 -07001274 priv->adapter.dev.parent = &dev->dev;
1275 ACPI_COMPANION_SET(&priv->adapter.dev, ACPI_COMPANION(&dev->dev));
1276 priv->adapter.retries = 3;
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001277
1278 priv->pci_dev = dev;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001279 switch (dev->device) {
Mika Westerberg94246932015-08-06 13:46:25 +01001280 case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS:
1281 case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS:
Alexandra Yates1a1503c2016-02-17 18:21:21 -08001282 case PCI_DEVICE_ID_INTEL_LEWISBURG_SMBUS:
1283 case PCI_DEVICE_ID_INTEL_LEWISBURG_SSKU_SMBUS:
Mika Westerberg84d7f2e2015-10-13 15:41:39 +03001284 case PCI_DEVICE_ID_INTEL_DNV_SMBUS:
Mika Westerberg94246932015-08-06 13:46:25 +01001285 priv->features |= FEATURE_I2C_BLOCK_READ;
1286 priv->features |= FEATURE_IRQ;
1287 priv->features |= FEATURE_SMBUS_PEC;
1288 priv->features |= FEATURE_BLOCK_BUFFER;
1289 priv->features |= FEATURE_TCO;
1290 break;
1291
Jean Delvaree7198fb2011-05-24 20:58:49 +02001292 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1293 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1294 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
James Ralstona3fc0ff2013-02-14 09:15:33 +00001295 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0:
1296 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1:
1297 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2:
Jean Delvaree7198fb2011-05-24 20:58:49 +02001298 priv->features |= FEATURE_IDF;
1299 /* fall through */
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001300 default:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001301 priv->features |= FEATURE_I2C_BLOCK_READ;
Jean Delvare6676a842012-12-16 21:11:55 +01001302 priv->features |= FEATURE_IRQ;
Jean Delvare63420642008-01-27 18:14:50 +01001303 /* fall through */
1304 case PCI_DEVICE_ID_INTEL_82801DB_3:
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001305 priv->features |= FEATURE_SMBUS_PEC;
1306 priv->features |= FEATURE_BLOCK_BUFFER;
Jean Delvaree0e8398c2010-05-21 18:40:55 +02001307 /* fall through */
1308 case PCI_DEVICE_ID_INTEL_82801CA_3:
1309 case PCI_DEVICE_ID_INTEL_82801BA_2:
1310 case PCI_DEVICE_ID_INTEL_82801AB_3:
1311 case PCI_DEVICE_ID_INTEL_82801AA_3:
Jean Delvare250d1bd2006-12-10 21:21:33 +01001312 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +01001313 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001314
Jean Delvareadff6872010-05-21 18:40:54 +02001315 /* Disable features on user request */
1316 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001317 if (priv->features & disable_features & (1 << i))
Jean Delvareadff6872010-05-21 18:40:54 +02001318 dev_notice(&dev->dev, "%s disabled by user\n",
1319 i801_feature_names[i]);
1320 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001321 priv->features &= ~disable_features;
Jean Delvareadff6872010-05-21 18:40:54 +02001322
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001323 err = pcim_enable_device(dev);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001324 if (err) {
1325 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1326 err);
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001327 return err;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001328 }
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001329 pcim_pin_device(dev);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001330
1331 /* Determine the address of the SMBus area */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001332 priv->smba = pci_resource_start(dev, SMBBAR);
1333 if (!priv->smba) {
Jarkko Nikula9cbbf3d2015-02-13 15:52:21 +02001334 dev_err(&dev->dev,
1335 "SMBus base address uninitialized, upgrade BIOS\n");
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001336 return -ENODEV;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001337 }
1338
Jean Delvare54fb4a052008-07-14 22:38:33 +02001339 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
Jean Delvare18669ea2009-10-04 22:53:45 +02001340 if (err) {
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001341 return -ENODEV;
Jean Delvare18669ea2009-10-04 22:53:45 +02001342 }
Jean Delvare54fb4a052008-07-14 22:38:33 +02001343
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001344 err = pcim_iomap_regions(dev, 1 << SMBBAR,
1345 dev_driver_string(&dev->dev));
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001346 if (err) {
Jarkko Nikula9cbbf3d2015-02-13 15:52:21 +02001347 dev_err(&dev->dev,
1348 "Failed to request SMBus region 0x%lx-0x%Lx\n",
1349 priv->smba,
Andrew Morton598736c2006-06-30 01:56:20 -07001350 (unsigned long long)pci_resource_end(dev, SMBBAR));
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001351 return err;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001352 }
1353
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001354 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1355 priv->original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001356 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1357 if (!(temp & SMBHSTCFG_HST_EN)) {
1358 dev_info(&dev->dev, "Enabling SMBus device\n");
1359 temp |= SMBHSTCFG_HST_EN;
1360 }
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001361 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001362
Daniel Kurtz636752b2012-07-24 14:13:58 +02001363 if (temp & SMBHSTCFG_SMB_SMI_EN) {
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001364 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001365 /* Disable SMBus interrupt feature if SMBus using SMI# */
1366 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Jean Delvarea0921b62008-01-27 18:14:50 +01001369 /* Clear special mode bits */
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001370 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1371 outb_p(inb_p(SMBAUXCTL(priv)) &
1372 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
Jean Delvarea0921b62008-01-27 18:14:50 +01001373
Jean Delvareb3b8df92014-11-12 10:20:40 +01001374 /* Default timeout in interrupt mode: 200 ms */
1375 priv->adapter.timeout = HZ / 5;
1376
Daniel Kurtz636752b2012-07-24 14:13:58 +02001377 if (priv->features & FEATURE_IRQ) {
Jean Delvareaeb8a3d2014-11-12 10:25:37 +01001378 u16 pcictl, pcists;
1379
1380 /* Complain if an interrupt is already pending */
1381 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
1382 if (pcists & SMBPCISTS_INTS)
1383 dev_warn(&dev->dev, "An interrupt is pending!\n");
1384
1385 /* Check if interrupts have been disabled */
1386 pci_read_config_word(priv->pci_dev, SMBPCICTL, &pcictl);
1387 if (pcictl & SMBPCICTL_INTDIS) {
1388 dev_info(&dev->dev, "Interrupts are disabled\n");
1389 priv->features &= ~FEATURE_IRQ;
1390 }
1391 }
1392
1393 if (priv->features & FEATURE_IRQ) {
Daniel Kurtz636752b2012-07-24 14:13:58 +02001394 init_waitqueue_head(&priv->waitq);
1395
Jarkko Nikula1621c592015-02-13 15:52:23 +02001396 err = devm_request_irq(&dev->dev, dev->irq, i801_isr,
1397 IRQF_SHARED,
1398 dev_driver_string(&dev->dev), priv);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001399 if (err) {
1400 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1401 dev->irq, err);
Jean Delvareae944712014-11-12 10:24:07 +01001402 priv->features &= ~FEATURE_IRQ;
Daniel Kurtz636752b2012-07-24 14:13:58 +02001403 }
1404 }
Jean Delvareae944712014-11-12 10:24:07 +01001405 dev_info(&dev->dev, "SMBus using %s\n",
1406 priv->features & FEATURE_IRQ ? "PCI interrupt" : "polling");
Daniel Kurtz636752b2012-07-24 14:13:58 +02001407
Mika Westerberg94246932015-08-06 13:46:25 +01001408 i801_add_tco(priv);
1409
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001410 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1411 "SMBus I801 adapter at %04lx", priv->smba);
1412 err = i2c_add_adapter(&priv->adapter);
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001413 if (err) {
1414 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Jarkko Nikulafef220d2015-02-13 15:52:25 +02001415 return err;
Jean Delvare02dd7ae2006-06-12 21:53:41 +02001416 }
Jean Delvare1561bfe2009-01-07 14:29:17 +01001417
Jean Delvaree7198fb2011-05-24 20:58:49 +02001418 i801_probe_optional_slaves(priv);
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001419 /* We ignore errors - multiplexing is optional */
1420 i801_add_mux(priv);
Jean Delvare1561bfe2009-01-07 14:29:17 +01001421
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001422 pci_set_drvdata(dev, priv);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001423
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +02001424 pm_runtime_set_autosuspend_delay(&dev->dev, 1000);
1425 pm_runtime_use_autosuspend(&dev->dev);
1426 pm_runtime_put_autosuspend(&dev->dev);
1427 pm_runtime_allow(&dev->dev);
1428
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
Bill Pemberton0b255e92012-11-27 15:59:38 -05001432static void i801_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001434 struct i801_priv *priv = pci_get_drvdata(dev);
1435
Jarkko Nikulaa7401ca2016-03-10 14:12:22 +02001436 pm_runtime_forbid(&dev->dev);
1437 pm_runtime_get_noresume(&dev->dev);
1438
Jean Delvare3ad7ea12012-10-05 22:23:53 +02001439 i801_del_mux(priv);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001440 i2c_del_adapter(&priv->adapter);
1441 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
Daniel Kurtz636752b2012-07-24 14:13:58 +02001442
Mika Westerberg94246932015-08-06 13:46:25 +01001443 platform_device_unregister(priv->tco_pdev);
1444
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +02001445 /*
1446 * do not call pci_disable_device(dev) since it can cause hard hangs on
1447 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1448 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
Jean Delvarea5aaea32007-03-22 19:49:01 +01001451#ifdef CONFIG_PM
Jarkko Nikula2ee73c42016-03-10 14:12:21 +02001452static int i801_suspend(struct device *dev)
Jean Delvarea5aaea32007-03-22 19:49:01 +01001453{
Jarkko Nikula2ee73c42016-03-10 14:12:21 +02001454 struct pci_dev *pci_dev = to_pci_dev(dev);
1455 struct i801_priv *priv = pci_get_drvdata(pci_dev);
David Woodhouse0cd96eb2010-10-31 21:06:59 +01001456
Jarkko Nikula2ee73c42016-03-10 14:12:21 +02001457 pci_write_config_byte(pci_dev, SMBHSTCFG, priv->original_hstcfg);
Jean Delvarea5aaea32007-03-22 19:49:01 +01001458 return 0;
1459}
1460
Jarkko Nikula2ee73c42016-03-10 14:12:21 +02001461static int i801_resume(struct device *dev)
Jean Delvarea5aaea32007-03-22 19:49:01 +01001462{
Jarkko Nikulaf85da3f2015-02-13 15:52:24 +02001463 return 0;
Jean Delvarea5aaea32007-03-22 19:49:01 +01001464}
Jean Delvarea5aaea32007-03-22 19:49:01 +01001465#endif
1466
Jarkko Nikula2ee73c42016-03-10 14:12:21 +02001467static UNIVERSAL_DEV_PM_OPS(i801_pm_ops, i801_suspend,
1468 i801_resume, NULL);
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 .name = "i801_smbus",
1472 .id_table = i801_ids,
1473 .probe = i801_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -05001474 .remove = i801_remove,
Jarkko Nikula2ee73c42016-03-10 14:12:21 +02001475 .driver = {
1476 .pm = &i801_pm_ops,
1477 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478};
1479
1480static int __init i2c_i801_init(void)
1481{
Jean Delvare6aa14642011-05-24 20:58:49 +02001482 if (dmi_name_in_vendors("FUJITSU"))
1483 input_apanel_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return pci_register_driver(&i801_driver);
1485}
1486
1487static void __exit i2c_i801_exit(void)
1488{
1489 pci_unregister_driver(&i801_driver);
1490}
1491
Jean Delvare7c81c602014-01-29 20:40:08 +01001492MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493MODULE_DESCRIPTION("I801 SMBus driver");
1494MODULE_LICENSE("GPL");
1495
1496module_init(i2c_i801_init);
1497module_exit(i2c_i801_exit);