blob: 878299cd0ef83bc9b44ad8e10e6582103c39bfa9 [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 Delvarecf898dc2008-07-14 22:38:33 +02005 Copyright (C) 2007, 2008 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20*/
21
22/*
Jean Delvareae7b0492008-01-27 18:14:49 +010023 Supports the following Intel I/O Controller Hubs (ICH):
24
25 I/O Block I2C
26 region SMBus Block proc. block
27 Chip name PCI ID size PEC buffer call read
28 ----------------------------------------------------------------------
29 82801AA (ICH) 0x2413 16 no no no no
30 82801AB (ICH0) 0x2423 16 no no no no
31 82801BA (ICH2) 0x2443 16 no no no no
32 82801CA (ICH3) 0x2483 32 soft no no no
33 82801DB (ICH4) 0x24c3 32 hard yes no no
34 82801E (ICH5) 0x24d3 32 hard yes yes yes
35 6300ESB 0x25a4 32 hard yes yes yes
36 82801F (ICH6) 0x266a 32 hard yes yes yes
37 6310ESB/6320ESB 0x269b 32 hard yes yes yes
38 82801G (ICH7) 0x27da 32 hard yes yes yes
39 82801H (ICH8) 0x283e 32 hard yes yes yes
40 82801I (ICH9) 0x2930 32 hard yes yes yes
Gaston, Jason Dd28dc712008-02-24 20:03:42 +010041 Tolapai 0x5032 32 hard yes yes yes
42 ICH10 0x3a30 32 hard yes yes yes
43 ICH10 0x3a60 32 hard yes yes yes
Seth Heasley39376432010-03-02 12:23:39 +010044 3400/5 Series (PCH) 0x3b30 32 hard yes yes yes
45 Cougar Point (PCH) 0x1c22 32 hard yes yes yes
Jean Delvareae7b0492008-01-27 18:14:49 +010046
47 Features supported by this driver:
48 Software PEC no
49 Hardware PEC yes
50 Block buffer yes
51 Block process call transaction no
Jean Delvare63420642008-01-27 18:14:50 +010052 I2C block read transaction yes (doesn't use the block buffer)
Jean Delvareae7b0492008-01-27 18:14:49 +010053
54 See the file Documentation/i2c/busses/i2c-i801 for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070055*/
56
57/* Note: we assume there can only be one I801, with one SMBus interface */
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/module.h>
60#include <linux/pci.h>
61#include <linux/kernel.h>
62#include <linux/stddef.h>
63#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/ioport.h>
65#include <linux/init.h>
66#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020067#include <linux/acpi.h>
Jean Delvare1561bfe2009-01-07 14:29:17 +010068#include <linux/io.h>
Hans de Goedefa5bfab2009-03-30 21:46:44 +020069#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* I801 SMBus address offsets */
72#define SMBHSTSTS (0 + i801_smba)
73#define SMBHSTCNT (2 + i801_smba)
74#define SMBHSTCMD (3 + i801_smba)
75#define SMBHSTADD (4 + i801_smba)
76#define SMBHSTDAT0 (5 + i801_smba)
77#define SMBHSTDAT1 (6 + i801_smba)
78#define SMBBLKDAT (7 + i801_smba)
Jean Delvareae7b0492008-01-27 18:14:49 +010079#define SMBPEC (8 + i801_smba) /* ICH3 and later */
80#define SMBAUXSTS (12 + i801_smba) /* ICH4 and later */
81#define SMBAUXCTL (13 + i801_smba) /* ICH4 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/* PCI Address Constants */
Jean Delvare6dcc19d2006-06-12 21:53:02 +020084#define SMBBAR 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define SMBHSTCFG 0x040
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/* Host configuration bits for SMBHSTCFG */
88#define SMBHSTCFG_HST_EN 1
89#define SMBHSTCFG_SMB_SMI_EN 2
90#define SMBHSTCFG_I2C_EN 4
91
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +020092/* Auxillary control register bits, ICH4+ only */
93#define SMBAUXCTL_CRC 1
94#define SMBAUXCTL_E32B 2
95
96/* kill bit for SMBHSTCNT */
97#define SMBHSTCNT_KILL 2
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* Other settings */
100#define MAX_TIMEOUT 100
101#define ENABLE_INT9 0 /* set to 0x01 to enable - untested */
102
103/* I801 command constants */
104#define I801_QUICK 0x00
105#define I801_BYTE 0x04
106#define I801_BYTE_DATA 0x08
107#define I801_WORD_DATA 0x0C
Jean Delvareae7b0492008-01-27 18:14:49 +0100108#define I801_PROC_CALL 0x10 /* unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define I801_BLOCK_DATA 0x14
Jean Delvare63420642008-01-27 18:14:50 +0100110#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define I801_BLOCK_LAST 0x34
Jean Delvare63420642008-01-27 18:14:50 +0100112#define I801_I2C_BLOCK_LAST 0x38 /* ICH5 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define I801_START 0x40
Jean Delvareae7b0492008-01-27 18:14:49 +0100114#define I801_PEC_EN 0x80 /* ICH3 and later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200116/* I801 Hosts Status register bits */
117#define SMBHSTSTS_BYTE_DONE 0x80
118#define SMBHSTSTS_INUSE_STS 0x40
119#define SMBHSTSTS_SMBALERT_STS 0x20
120#define SMBHSTSTS_FAILED 0x10
121#define SMBHSTSTS_BUS_ERR 0x08
122#define SMBHSTSTS_DEV_ERR 0x04
123#define SMBHSTSTS_INTR 0x02
124#define SMBHSTSTS_HOST_BUSY 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Jean Delvarecf898dc2008-07-14 22:38:33 +0200126#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_FAILED | \
127 SMBHSTSTS_BUS_ERR | SMBHSTSTS_DEV_ERR | \
128 SMBHSTSTS_INTR)
129
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200130static unsigned long i801_smba;
Jean Delvarea5aaea32007-03-22 19:49:01 +0100131static unsigned char i801_original_hstcfg;
Jean Delvared6072f82005-09-25 16:37:04 +0200132static struct pci_driver i801_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static struct pci_dev *I801_dev;
Jean Delvare369f6f42008-01-27 18:14:50 +0100134
135#define FEATURE_SMBUS_PEC (1 << 0)
136#define FEATURE_BLOCK_BUFFER (1 << 1)
137#define FEATURE_BLOCK_PROC (1 << 2)
138#define FEATURE_I2C_BLOCK_READ (1 << 3)
139static unsigned int i801_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Jean Delvareadff6872010-05-21 18:40:54 +0200141static const char *i801_feature_names[] = {
142 "SMBus PEC",
143 "Block buffer",
144 "Block process call",
145 "I2C block read",
146};
147
148static unsigned int disable_features;
149module_param(disable_features, uint, S_IRUGO | S_IWUSR);
150MODULE_PARM_DESC(disable_features, "Disable selected driver features");
151
Jean Delvarecf898dc2008-07-14 22:38:33 +0200152/* Make sure the SMBus host is ready to start transmitting.
153 Return 0 if it is, -EBUSY if it is not. */
154static int i801_check_pre(void)
155{
156 int status;
157
158 status = inb_p(SMBHSTSTS);
159 if (status & SMBHSTSTS_HOST_BUSY) {
160 dev_err(&I801_dev->dev, "SMBus is busy, can't use it!\n");
161 return -EBUSY;
162 }
163
164 status &= STATUS_FLAGS;
165 if (status) {
166 dev_dbg(&I801_dev->dev, "Clearing status flags (%02x)\n",
167 status);
168 outb_p(status, SMBHSTSTS);
169 status = inb_p(SMBHSTSTS) & STATUS_FLAGS;
170 if (status) {
171 dev_err(&I801_dev->dev,
172 "Failed clearing status flags (%02x)\n",
173 status);
174 return -EBUSY;
175 }
176 }
177
178 return 0;
179}
180
181/* Convert the status register to an error code, and clear it. */
182static int i801_check_post(int status, int timeout)
183{
184 int result = 0;
185
186 /* If the SMBus is still busy, we give up */
187 if (timeout) {
188 dev_err(&I801_dev->dev, "Transaction timeout\n");
189 /* try to stop the current command */
190 dev_dbg(&I801_dev->dev, "Terminating the current operation\n");
191 outb_p(inb_p(SMBHSTCNT) | SMBHSTCNT_KILL, SMBHSTCNT);
192 msleep(1);
193 outb_p(inb_p(SMBHSTCNT) & (~SMBHSTCNT_KILL), SMBHSTCNT);
194
195 /* Check if it worked */
196 status = inb_p(SMBHSTSTS);
197 if ((status & SMBHSTSTS_HOST_BUSY) ||
198 !(status & SMBHSTSTS_FAILED))
199 dev_err(&I801_dev->dev,
200 "Failed terminating the transaction\n");
201 outb_p(STATUS_FLAGS, SMBHSTSTS);
202 return -ETIMEDOUT;
203 }
204
205 if (status & SMBHSTSTS_FAILED) {
206 result = -EIO;
207 dev_err(&I801_dev->dev, "Transaction failed\n");
208 }
209 if (status & SMBHSTSTS_DEV_ERR) {
210 result = -ENXIO;
211 dev_dbg(&I801_dev->dev, "No response\n");
212 }
213 if (status & SMBHSTSTS_BUS_ERR) {
214 result = -EAGAIN;
215 dev_dbg(&I801_dev->dev, "Lost arbitration\n");
216 }
217
218 if (result) {
219 /* Clear error flags */
220 outb_p(status & STATUS_FLAGS, SMBHSTSTS);
221 status = inb_p(SMBHSTSTS) & STATUS_FLAGS;
222 if (status) {
223 dev_warn(&I801_dev->dev, "Failed clearing status "
224 "flags at end of transaction (%02x)\n",
225 status);
226 }
227 }
228
229 return result;
230}
231
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200232static int i801_transaction(int xact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Jean Delvare2b738092008-07-14 22:38:32 +0200234 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200235 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 int timeout = 0;
237
Jean Delvarecf898dc2008-07-14 22:38:33 +0200238 result = i801_check_pre();
239 if (result < 0)
240 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200242 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
243 * INTREN, SMBSCMD are passed in xact */
244 outb_p(xact | I801_START, SMBHSTCNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* We will always wait for a fraction of a second! */
247 do {
248 msleep(1);
Jean Delvare2b738092008-07-14 22:38:32 +0200249 status = inb_p(SMBHSTSTS);
250 } while ((status & SMBHSTSTS_HOST_BUSY) && (timeout++ < MAX_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Roel Kluin4ccc28f2009-05-05 08:39:24 +0200252 result = i801_check_post(status, timeout > MAX_TIMEOUT);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200253 if (result < 0)
254 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Jean Delvarecf898dc2008-07-14 22:38:33 +0200256 outb_p(SMBHSTSTS_INTR, SMBHSTSTS);
257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200260/* wait for INTR bit as advised by Intel */
261static void i801_wait_hwpec(void)
262{
263 int timeout = 0;
Jean Delvare2b738092008-07-14 22:38:32 +0200264 int status;
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200265
266 do {
267 msleep(1);
Jean Delvare2b738092008-07-14 22:38:32 +0200268 status = inb_p(SMBHSTSTS);
269 } while ((!(status & SMBHSTSTS_INTR))
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200270 && (timeout++ < MAX_TIMEOUT));
271
Roel Kluin4ccc28f2009-05-05 08:39:24 +0200272 if (timeout > MAX_TIMEOUT)
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200273 dev_dbg(&I801_dev->dev, "PEC Timeout!\n");
Roel Kluin4ccc28f2009-05-05 08:39:24 +0200274
Jean Delvare2b738092008-07-14 22:38:32 +0200275 outb_p(status, SMBHSTSTS);
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200276}
277
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200278static int i801_block_transaction_by_block(union i2c_smbus_data *data,
279 char read_write, int hwpec)
280{
281 int i, len;
David Brownell97140342008-07-14 22:38:25 +0200282 int status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200283
284 inb_p(SMBHSTCNT); /* reset the data buffer index */
285
286 /* Use 32-byte buffer to process this transaction */
287 if (read_write == I2C_SMBUS_WRITE) {
288 len = data->block[0];
289 outb_p(len, SMBHSTDAT0);
290 for (i = 0; i < len; i++)
291 outb_p(data->block[i+1], SMBBLKDAT);
292 }
293
David Brownell97140342008-07-14 22:38:25 +0200294 status = i801_transaction(I801_BLOCK_DATA | ENABLE_INT9 |
295 I801_PEC_EN * hwpec);
296 if (status)
297 return status;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200298
299 if (read_write == I2C_SMBUS_READ) {
300 len = inb_p(SMBHSTDAT0);
301 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
David Brownell97140342008-07-14 22:38:25 +0200302 return -EPROTO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200303
304 data->block[0] = len;
305 for (i = 0; i < len; i++)
306 data->block[i + 1] = inb_p(SMBBLKDAT);
307 }
308 return 0;
309}
310
311static int i801_block_transaction_byte_by_byte(union i2c_smbus_data *data,
Jean Delvare63420642008-01-27 18:14:50 +0100312 char read_write, int command,
313 int hwpec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 int i, len;
316 int smbcmd;
Jean Delvare2b738092008-07-14 22:38:32 +0200317 int status;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200318 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 int timeout;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200320
321 result = i801_check_pre();
322 if (result < 0)
323 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200325 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 outb_p(len, SMBHSTDAT0);
329 outb_p(data->block[1], SMBBLKDAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
332 for (i = 1; i <= len; i++) {
Jean Delvare63420642008-01-27 18:14:50 +0100333 if (i == len && read_write == I2C_SMBUS_READ) {
334 if (command == I2C_SMBUS_I2C_BLOCK_DATA)
335 smbcmd = I801_I2C_BLOCK_LAST;
336 else
337 smbcmd = I801_BLOCK_LAST;
338 } else {
339 if (command == I2C_SMBUS_I2C_BLOCK_DATA
340 && read_write == I2C_SMBUS_READ)
341 smbcmd = I801_I2C_BLOCK_DATA;
342 else
343 smbcmd = I801_BLOCK_DATA;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 outb_p(smbcmd | ENABLE_INT9, SMBHSTCNT);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (i == 1)
348 outb_p(inb(SMBHSTCNT) | I801_START, SMBHSTCNT);
349
350 /* We will always wait for a fraction of a second! */
351 timeout = 0;
352 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 msleep(1);
Jean Delvare2b738092008-07-14 22:38:32 +0200354 status = inb_p(SMBHSTSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Jean Delvare2b738092008-07-14 22:38:32 +0200356 while ((!(status & SMBHSTSTS_BYTE_DONE))
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200357 && (timeout++ < MAX_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Roel Kluin4ccc28f2009-05-05 08:39:24 +0200359 result = i801_check_post(status, timeout > MAX_TIMEOUT);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200360 if (result < 0)
361 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jean Delvare63420642008-01-27 18:14:50 +0100363 if (i == 1 && read_write == I2C_SMBUS_READ
364 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 len = inb_p(SMBHSTDAT0);
Jean Delvarecf898dc2008-07-14 22:38:33 +0200366 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
367 dev_err(&I801_dev->dev,
368 "Illegal SMBus block read size %d\n",
369 len);
370 /* Recover */
371 while (inb_p(SMBHSTSTS) & SMBHSTSTS_HOST_BUSY)
372 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS);
373 outb_p(SMBHSTSTS_INTR, SMBHSTSTS);
David Brownell97140342008-07-14 22:38:25 +0200374 return -EPROTO;
Jean Delvarecf898dc2008-07-14 22:38:33 +0200375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 data->block[0] = len;
377 }
378
379 /* Retrieve/store value in SMBBLKDAT */
380 if (read_write == I2C_SMBUS_READ)
381 data->block[i] = inb_p(SMBBLKDAT);
382 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
383 outb_p(data->block[i+1], SMBBLKDAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jean Delvarecf898dc2008-07-14 22:38:33 +0200385 /* signals SMBBLKDAT ready */
386 outb_p(SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR, SMBHSTSTS);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200387 }
Jean Delvarecf898dc2008-07-14 22:38:33 +0200388
389 return 0;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200390}
391
392static int i801_set_block_buffer_mode(void)
393{
394 outb_p(inb_p(SMBAUXCTL) | SMBAUXCTL_E32B, SMBAUXCTL);
395 if ((inb_p(SMBAUXCTL) & SMBAUXCTL_E32B) == 0)
David Brownell97140342008-07-14 22:38:25 +0200396 return -EIO;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200397 return 0;
398}
399
400/* Block transaction function */
401static int i801_block_transaction(union i2c_smbus_data *data, char read_write,
402 int command, int hwpec)
403{
404 int result = 0;
405 unsigned char hostc;
406
407 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
408 if (read_write == I2C_SMBUS_WRITE) {
409 /* set I2C_EN bit in configuration register */
410 pci_read_config_byte(I801_dev, SMBHSTCFG, &hostc);
411 pci_write_config_byte(I801_dev, SMBHSTCFG,
412 hostc | SMBHSTCFG_I2C_EN);
Jean Delvare63420642008-01-27 18:14:50 +0100413 } else if (!(i801_features & FEATURE_I2C_BLOCK_READ)) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200414 dev_err(&I801_dev->dev,
Jean Delvare63420642008-01-27 18:14:50 +0100415 "I2C block read is unsupported!\n");
David Brownell97140342008-07-14 22:38:25 +0200416 return -EOPNOTSUPP;
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
Jean Delvare63420642008-01-27 18:14:50 +0100420 if (read_write == I2C_SMBUS_WRITE
421 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200422 if (data->block[0] < 1)
423 data->block[0] = 1;
424 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
425 data->block[0] = I2C_SMBUS_BLOCK_MAX;
426 } else {
Jean Delvare63420642008-01-27 18:14:50 +0100427 data->block[0] = 32; /* max for SMBus block reads */
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200428 }
429
Jean Delvarec074c392010-03-13 20:56:53 +0100430 /* Experience has shown that the block buffer can only be used for
431 SMBus (not I2C) block transactions, even though the datasheet
432 doesn't mention this limitation. */
Jean Delvare369f6f42008-01-27 18:14:50 +0100433 if ((i801_features & FEATURE_BLOCK_BUFFER)
Jean Delvarec074c392010-03-13 20:56:53 +0100434 && command != I2C_SMBUS_I2C_BLOCK_DATA
Jean Delvare369f6f42008-01-27 18:14:50 +0100435 && i801_set_block_buffer_mode() == 0)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200436 result = i801_block_transaction_by_block(data, read_write,
437 hwpec);
438 else
439 result = i801_block_transaction_byte_by_byte(data, read_write,
Jean Delvare63420642008-01-27 18:14:50 +0100440 command, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200441
442 if (result == 0 && hwpec)
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200443 i801_wait_hwpec();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Jean Delvare63420642008-01-27 18:14:50 +0100445 if (command == I2C_SMBUS_I2C_BLOCK_DATA
446 && read_write == I2C_SMBUS_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /* restore saved configuration register value */
448 pci_write_config_byte(I801_dev, SMBHSTCFG, hostc);
449 }
450 return result;
451}
452
David Brownell97140342008-07-14 22:38:25 +0200453/* Return negative errno on error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static s32 i801_access(struct i2c_adapter * adap, u16 addr,
455 unsigned short flags, char read_write, u8 command,
456 int size, union i2c_smbus_data * data)
457{
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200458 int hwpec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int block = 0;
460 int ret, xact = 0;
461
Jean Delvare369f6f42008-01-27 18:14:50 +0100462 hwpec = (i801_features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200463 && size != I2C_SMBUS_QUICK
464 && size != I2C_SMBUS_I2C_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 switch (size) {
467 case I2C_SMBUS_QUICK:
468 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
469 SMBHSTADD);
470 xact = I801_QUICK;
471 break;
472 case I2C_SMBUS_BYTE:
473 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
474 SMBHSTADD);
475 if (read_write == I2C_SMBUS_WRITE)
476 outb_p(command, SMBHSTCMD);
477 xact = I801_BYTE;
478 break;
479 case I2C_SMBUS_BYTE_DATA:
480 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
481 SMBHSTADD);
482 outb_p(command, SMBHSTCMD);
483 if (read_write == I2C_SMBUS_WRITE)
484 outb_p(data->byte, SMBHSTDAT0);
485 xact = I801_BYTE_DATA;
486 break;
487 case I2C_SMBUS_WORD_DATA:
488 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
489 SMBHSTADD);
490 outb_p(command, SMBHSTCMD);
491 if (read_write == I2C_SMBUS_WRITE) {
492 outb_p(data->word & 0xff, SMBHSTDAT0);
493 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
494 }
495 xact = I801_WORD_DATA;
496 break;
497 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
499 SMBHSTADD);
500 outb_p(command, SMBHSTCMD);
501 block = 1;
502 break;
Jean Delvare63420642008-01-27 18:14:50 +0100503 case I2C_SMBUS_I2C_BLOCK_DATA:
504 /* NB: page 240 of ICH5 datasheet shows that the R/#W
505 * bit should be cleared here, even when reading */
506 outb_p((addr & 0x7f) << 1, SMBHSTADD);
507 if (read_write == I2C_SMBUS_READ) {
508 /* NB: page 240 of ICH5 datasheet also shows
509 * that DATA1 is the cmd field when reading */
510 outb_p(command, SMBHSTDAT1);
511 } else
512 outb_p(command, SMBHSTCMD);
513 block = 1;
514 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 default:
516 dev_err(&I801_dev->dev, "Unsupported transaction %d\n", size);
David Brownell97140342008-07-14 22:38:25 +0200517 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
Oleg Ryjkovca8b9e32007-07-12 14:12:31 +0200520 if (hwpec) /* enable/disable hardware PEC */
521 outb_p(inb_p(SMBAUXCTL) | SMBAUXCTL_CRC, SMBAUXCTL);
522 else
523 outb_p(inb_p(SMBAUXCTL) & (~SMBAUXCTL_CRC), SMBAUXCTL);
Jean Delvaree8aac4a2005-10-26 21:34:42 +0200524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if(block)
Jean Delvare585b3162005-10-26 21:31:15 +0200526 ret = i801_block_transaction(data, read_write, size, hwpec);
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200527 else
528 ret = i801_transaction(xact | ENABLE_INT9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Jean Delvarec79cfba2006-04-20 02:43:18 -0700530 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200531 time, so we forcibly disable it after every transaction. Turn off
532 E32B for the same reason. */
Jean Delvarea0921b62008-01-27 18:14:50 +0100533 if (hwpec || block)
Oleg Ryjkov7edcb9a2007-07-12 14:12:31 +0200534 outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B),
535 SMBAUXCTL);
Jean Delvarec79cfba2006-04-20 02:43:18 -0700536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if(block)
538 return ret;
539 if(ret)
David Brownell97140342008-07-14 22:38:25 +0200540 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
542 return 0;
543
544 switch (xact & 0x7f) {
545 case I801_BYTE: /* Result put in SMBHSTDAT0 */
546 case I801_BYTE_DATA:
547 data->byte = inb_p(SMBHSTDAT0);
548 break;
549 case I801_WORD_DATA:
550 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
551 break;
552 }
553 return 0;
554}
555
556
557static u32 i801_func(struct i2c_adapter *adapter)
558{
559 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Jean Delvare369f6f42008-01-27 18:14:50 +0100560 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
561 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
Jean Delvare63420642008-01-27 18:14:50 +0100562 ((i801_features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
563 ((i801_features & FEATURE_I2C_BLOCK_READ) ?
564 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Jean Delvare8f9082c2006-09-03 22:39:46 +0200567static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 .smbus_xfer = i801_access,
569 .functionality = i801_func,
570};
571
572static struct i2c_adapter i801_adapter = {
573 .owner = THIS_MODULE,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200574 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 .algo = &smbus_algorithm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576};
577
Márton Németh4111ecd2010-03-02 12:23:37 +0100578static const struct pci_device_id i801_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
580 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
581 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
582 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
583 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
584 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
585 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
586 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
587 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
Jason Gastonb0a70b52005-04-16 15:24:45 -0700588 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
Jason Gaston8254fc42006-01-09 10:58:08 -0800589 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
Jason Gastonadbc2a12006-11-22 15:19:12 -0800590 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
Jason Gastone07bc672007-10-13 23:56:31 +0200591 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TOLAPAI_1) },
Gaston, Jason Dd28dc712008-02-24 20:03:42 +0100592 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
593 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
Seth Heasleyc429a242008-10-22 20:21:29 +0200594 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PCH_SMBUS) },
Seth Heasley39376432010-03-02 12:23:39 +0100595 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_CPT_SMBUS) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 { 0, }
597};
598
599MODULE_DEVICE_TABLE (pci, i801_ids);
600
Jean Delvare1561bfe2009-01-07 14:29:17 +0100601#if defined CONFIG_INPUT_APANEL || defined CONFIG_INPUT_APANEL_MODULE
602static unsigned char apanel_addr;
603
604/* Scan the system ROM for the signature "FJKEYINF" */
605static __init const void __iomem *bios_signature(const void __iomem *bios)
606{
607 ssize_t offset;
608 const unsigned char signature[] = "FJKEYINF";
609
610 for (offset = 0; offset < 0x10000; offset += 0x10) {
611 if (check_signature(bios + offset, signature,
612 sizeof(signature)-1))
613 return bios + offset;
614 }
615 return NULL;
616}
617
618static void __init input_apanel_init(void)
619{
620 void __iomem *bios;
621 const void __iomem *p;
622
623 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
624 p = bios_signature(bios);
625 if (p) {
626 /* just use the first address */
627 apanel_addr = readb(p + 8 + 3) >> 1;
628 }
629 iounmap(bios);
630}
631#else
632static void __init input_apanel_init(void) {}
633#endif
634
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200635#if defined CONFIG_SENSORS_FSCHMD || defined CONFIG_SENSORS_FSCHMD_MODULE
636struct dmi_onboard_device_info {
637 const char *name;
638 u8 type;
639 unsigned short i2c_addr;
640 const char *i2c_type;
641};
642
643static struct dmi_onboard_device_info __devinitdata dmi_devices[] = {
644 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
645 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
646 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
647};
648
649static void __devinit dmi_check_onboard_device(u8 type, const char *name,
650 struct i2c_adapter *adap)
651{
652 int i;
653 struct i2c_board_info info;
654
655 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
656 /* & ~0x80, ignore enabled/disabled bit */
657 if ((type & ~0x80) != dmi_devices[i].type)
658 continue;
659 if (strcmp(name, dmi_devices[i].name))
660 continue;
661
662 memset(&info, 0, sizeof(struct i2c_board_info));
663 info.addr = dmi_devices[i].i2c_addr;
664 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
665 i2c_new_device(adap, &info);
666 break;
667 }
668}
669
670/* We use our own function to check for onboard devices instead of
671 dmi_find_device() as some buggy BIOS's have the devices we are interested
672 in marked as disabled */
673static void __devinit dmi_check_onboard_devices(const struct dmi_header *dm,
674 void *adap)
675{
676 int i, count;
677
678 if (dm->type != 10)
679 return;
680
681 count = (dm->length - sizeof(struct dmi_header)) / 2;
682 for (i = 0; i < count; i++) {
683 const u8 *d = (char *)(dm + 1) + (i * 2);
684 const char *name = ((char *) dm) + dm->length;
685 u8 type = d[0];
686 u8 s = d[1];
687
688 if (!s)
689 continue;
690 s--;
691 while (s > 0 && name[0]) {
692 name += strlen(name) + 1;
693 s--;
694 }
695 if (name[0] == 0) /* Bogus string reference */
696 continue;
697
698 dmi_check_onboard_device(type, name, adap);
699 }
700}
701#endif
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703static int __devinit i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
704{
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200705 unsigned char temp;
Jean Delvareadff6872010-05-21 18:40:54 +0200706 int err, i;
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200707#if defined CONFIG_SENSORS_FSCHMD || defined CONFIG_SENSORS_FSCHMD_MODULE
708 const char *vendor;
709#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200711 I801_dev = dev;
Jean Delvare369f6f42008-01-27 18:14:50 +0100712 i801_features = 0;
Jean Delvare250d1bd2006-12-10 21:21:33 +0100713 switch (dev->device) {
Jean Delvaree0e8398c2010-05-21 18:40:55 +0200714 default:
Jean Delvare63420642008-01-27 18:14:50 +0100715 i801_features |= FEATURE_I2C_BLOCK_READ;
716 /* fall through */
717 case PCI_DEVICE_ID_INTEL_82801DB_3:
Jean Delvare369f6f42008-01-27 18:14:50 +0100718 i801_features |= FEATURE_SMBUS_PEC;
719 i801_features |= FEATURE_BLOCK_BUFFER;
Jean Delvaree0e8398c2010-05-21 18:40:55 +0200720 /* fall through */
721 case PCI_DEVICE_ID_INTEL_82801CA_3:
722 case PCI_DEVICE_ID_INTEL_82801BA_2:
723 case PCI_DEVICE_ID_INTEL_82801AB_3:
724 case PCI_DEVICE_ID_INTEL_82801AA_3:
Jean Delvare250d1bd2006-12-10 21:21:33 +0100725 break;
Jean Delvare250d1bd2006-12-10 21:21:33 +0100726 }
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200727
Jean Delvareadff6872010-05-21 18:40:54 +0200728 /* Disable features on user request */
729 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
730 if (i801_features & disable_features & (1 << i))
731 dev_notice(&dev->dev, "%s disabled by user\n",
732 i801_feature_names[i]);
733 }
734 i801_features &= ~disable_features;
735
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200736 err = pci_enable_device(dev);
737 if (err) {
738 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
739 err);
740 goto exit;
741 }
742
743 /* Determine the address of the SMBus area */
744 i801_smba = pci_resource_start(dev, SMBBAR);
745 if (!i801_smba) {
746 dev_err(&dev->dev, "SMBus base address uninitialized, "
747 "upgrade BIOS\n");
748 err = -ENODEV;
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200749 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200750 }
751
Jean Delvare54fb4a052008-07-14 22:38:33 +0200752 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
Jean Delvare18669ea2009-10-04 22:53:45 +0200753 if (err) {
754 err = -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +0200755 goto exit;
Jean Delvare18669ea2009-10-04 22:53:45 +0200756 }
Jean Delvare54fb4a052008-07-14 22:38:33 +0200757
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200758 err = pci_request_region(dev, SMBBAR, i801_driver.name);
759 if (err) {
760 dev_err(&dev->dev, "Failed to request SMBus region "
Andrew Morton598736c2006-06-30 01:56:20 -0700761 "0x%lx-0x%Lx\n", i801_smba,
762 (unsigned long long)pci_resource_end(dev, SMBBAR));
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200763 goto exit;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200764 }
765
766 pci_read_config_byte(I801_dev, SMBHSTCFG, &temp);
Jean Delvarea5aaea32007-03-22 19:49:01 +0100767 i801_original_hstcfg = temp;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200768 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
769 if (!(temp & SMBHSTCFG_HST_EN)) {
770 dev_info(&dev->dev, "Enabling SMBus device\n");
771 temp |= SMBHSTCFG_HST_EN;
772 }
773 pci_write_config_byte(I801_dev, SMBHSTCFG, temp);
774
775 if (temp & SMBHSTCFG_SMB_SMI_EN)
776 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
777 else
778 dev_dbg(&dev->dev, "SMBus using PCI Interrupt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Jean Delvarea0921b62008-01-27 18:14:50 +0100780 /* Clear special mode bits */
781 if (i801_features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
782 outb_p(inb_p(SMBAUXCTL) & ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B),
783 SMBAUXCTL);
784
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100785 /* set up the sysfs linkage to our parent device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 i801_adapter.dev.parent = &dev->dev;
787
Jean Delvare7e2193a2009-12-06 17:06:27 +0100788 /* Retry up to 3 times on lost arbitration */
789 i801_adapter.retries = 3;
790
David Brownell2096b952007-05-01 23:26:28 +0200791 snprintf(i801_adapter.name, sizeof(i801_adapter.name),
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200792 "SMBus I801 adapter at %04lx", i801_smba);
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200793 err = i2c_add_adapter(&i801_adapter);
794 if (err) {
795 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200796 goto exit_release;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200797 }
Jean Delvare1561bfe2009-01-07 14:29:17 +0100798
799 /* Register optional slaves */
800#if defined CONFIG_INPUT_APANEL || defined CONFIG_INPUT_APANEL_MODULE
801 if (apanel_addr) {
802 struct i2c_board_info info;
803
804 memset(&info, 0, sizeof(struct i2c_board_info));
805 info.addr = apanel_addr;
806 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
807 i2c_new_device(&i801_adapter, &info);
808 }
809#endif
Hans de Goedefa5bfab2009-03-30 21:46:44 +0200810#if defined CONFIG_SENSORS_FSCHMD || defined CONFIG_SENSORS_FSCHMD_MODULE
811 vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
812 if (vendor && !strcmp(vendor, "FUJITSU SIEMENS"))
813 dmi_walk(dmi_check_onboard_devices, &i801_adapter);
814#endif
Jean Delvare1561bfe2009-01-07 14:29:17 +0100815
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200816 return 0;
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200817
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200818exit_release:
819 pci_release_region(dev, SMBBAR);
Jean Delvare02dd7ae2006-06-12 21:53:41 +0200820exit:
821 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
824static void __devexit i801_remove(struct pci_dev *dev)
825{
826 i2c_del_adapter(&i801_adapter);
Jean Delvarea5aaea32007-03-22 19:49:01 +0100827 pci_write_config_byte(I801_dev, SMBHSTCFG, i801_original_hstcfg);
Jean Delvare6dcc19d2006-06-12 21:53:02 +0200828 pci_release_region(dev, SMBBAR);
Daniel Ritzd6fcb3b2006-06-27 18:40:54 +0200829 /*
830 * do not call pci_disable_device(dev) since it can cause hard hangs on
831 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
832 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Jean Delvarea5aaea32007-03-22 19:49:01 +0100835#ifdef CONFIG_PM
836static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
837{
838 pci_save_state(dev);
839 pci_write_config_byte(dev, SMBHSTCFG, i801_original_hstcfg);
840 pci_set_power_state(dev, pci_choose_state(dev, mesg));
841 return 0;
842}
843
844static int i801_resume(struct pci_dev *dev)
845{
846 pci_set_power_state(dev, PCI_D0);
847 pci_restore_state(dev);
848 return pci_enable_device(dev);
849}
850#else
851#define i801_suspend NULL
852#define i801_resume NULL
853#endif
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855static struct pci_driver i801_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 .name = "i801_smbus",
857 .id_table = i801_ids,
858 .probe = i801_probe,
859 .remove = __devexit_p(i801_remove),
Jean Delvarea5aaea32007-03-22 19:49:01 +0100860 .suspend = i801_suspend,
861 .resume = i801_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862};
863
864static int __init i2c_i801_init(void)
865{
Jean Delvare1561bfe2009-01-07 14:29:17 +0100866 input_apanel_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return pci_register_driver(&i801_driver);
868}
869
870static void __exit i2c_i801_exit(void)
871{
872 pci_unregister_driver(&i801_driver);
873}
874
Jean Delvare63420642008-01-27 18:14:50 +0100875MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
876 "Jean Delvare <khali@linux-fr.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877MODULE_DESCRIPTION("I801 SMBus driver");
878MODULE_LICENSE("GPL");
879
880module_init(i2c_i801_init);
881module_exit(i2c_i801_exit);