Update Jean Delvare's e-mail address
[linux-block.git] / drivers / i2c / busses / i2c-i801.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>,
3 Philip Edelbrock <phil@netroedge.com>, and Mark D. Studebaker
4 <mdsxyz123@yahoo.com>
7c81c60f 5 Copyright (C) 2007 - 2012 Jean Delvare <jdelvare@suse.de>
0cd96eb0
DW
6 Copyright (C) 2010 Intel Corporation,
7 David Woodhouse <dwmw2@infradead.org>
1da177e4
LT
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24/*
ae7b0497
JD
25 Supports the following Intel I/O Controller Hubs (ICH):
26
27 I/O Block I2C
28 region SMBus Block proc. block
29 Chip name PCI ID size PEC buffer call read
30 ----------------------------------------------------------------------
31 82801AA (ICH) 0x2413 16 no no no no
32 82801AB (ICH0) 0x2423 16 no no no no
33 82801BA (ICH2) 0x2443 16 no no no no
34 82801CA (ICH3) 0x2483 32 soft no no no
35 82801DB (ICH4) 0x24c3 32 hard yes no no
36 82801E (ICH5) 0x24d3 32 hard yes yes yes
37 6300ESB 0x25a4 32 hard yes yes yes
38 82801F (ICH6) 0x266a 32 hard yes yes yes
39 6310ESB/6320ESB 0x269b 32 hard yes yes yes
40 82801G (ICH7) 0x27da 32 hard yes yes yes
41 82801H (ICH8) 0x283e 32 hard yes yes yes
42 82801I (ICH9) 0x2930 32 hard yes yes yes
cb04e95b 43 EP80579 (Tolapai) 0x5032 32 hard yes yes yes
d28dc711
GJ
44 ICH10 0x3a30 32 hard yes yes yes
45 ICH10 0x3a60 32 hard yes yes yes
cb04e95b 46 5/3400 Series (PCH) 0x3b30 32 hard yes yes yes
662cda8a 47 6 Series (PCH) 0x1c22 32 hard yes yes yes
e30d9859 48 Patsburg (PCH) 0x1d22 32 hard yes yes yes
55fee8d7
DW
49 Patsburg (PCH) IDF 0x1d70 32 hard yes yes yes
50 Patsburg (PCH) IDF 0x1d71 32 hard yes yes yes
51 Patsburg (PCH) IDF 0x1d72 32 hard yes yes yes
662cda8a 52 DH89xxCC (PCH) 0x2330 32 hard yes yes yes
6e2a851e 53 Panther Point (PCH) 0x1e22 32 hard yes yes yes
062737fb 54 Lynx Point (PCH) 0x8c22 32 hard yes yes yes
4a8f1ddd 55 Lynx Point-LP (PCH) 0x9c22 32 hard yes yes yes
c2db409c 56 Avoton (SOC) 0x1f3c 32 hard yes yes yes
a3fc0ff0
JR
57 Wellsburg (PCH) 0x8d22 32 hard yes yes yes
58 Wellsburg (PCH) MS 0x8d7d 32 hard yes yes yes
59 Wellsburg (PCH) MS 0x8d7e 32 hard yes yes yes
60 Wellsburg (PCH) MS 0x8d7f 32 hard yes yes yes
f39901c1 61 Coleto Creek (PCH) 0x23b0 32 hard yes yes yes
afc65924 62 Wildcat Point-LP (PCH) 0x9ca2 32 hard yes yes yes
ae7b0497
JD
63
64 Features supported by this driver:
65 Software PEC no
66 Hardware PEC yes
67 Block buffer yes
68 Block process call transaction no
6342064c 69 I2C block read transaction yes (doesn't use the block buffer)
55fee8d7 70 Slave mode no
636752bc 71 Interrupt processing yes
ae7b0497
JD
72
73 See the file Documentation/i2c/busses/i2c-i801 for details.
1da177e4
LT
74*/
75
636752bc 76#include <linux/interrupt.h>
1da177e4
LT
77#include <linux/module.h>
78#include <linux/pci.h>
79#include <linux/kernel.h>
80#include <linux/stddef.h>
81#include <linux/delay.h>
1da177e4
LT
82#include <linux/ioport.h>
83#include <linux/init.h>
84#include <linux/i2c.h>
54fb4a05 85#include <linux/acpi.h>
1561bfe5 86#include <linux/io.h>
fa5bfab7 87#include <linux/dmi.h>
665a96b7 88#include <linux/slab.h>
636752bc 89#include <linux/wait.h>
3ad7ea18
JD
90#include <linux/err.h>
91
79e3e5b8
JD
92#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
93 defined CONFIG_DMI
3ad7ea18
JD
94#include <linux/gpio.h>
95#include <linux/i2c-mux-gpio.h>
96#include <linux/platform_device.h>
97#endif
1da177e4 98
1da177e4 99/* I801 SMBus address offsets */
0cd96eb0
DW
100#define SMBHSTSTS(p) (0 + (p)->smba)
101#define SMBHSTCNT(p) (2 + (p)->smba)
102#define SMBHSTCMD(p) (3 + (p)->smba)
103#define SMBHSTADD(p) (4 + (p)->smba)
104#define SMBHSTDAT0(p) (5 + (p)->smba)
105#define SMBHSTDAT1(p) (6 + (p)->smba)
106#define SMBBLKDAT(p) (7 + (p)->smba)
107#define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */
108#define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */
109#define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */
1da177e4
LT
110
111/* PCI Address Constants */
6dcc19df 112#define SMBBAR 4
636752bc 113#define SMBPCISTS 0x006
1da177e4 114#define SMBHSTCFG 0x040
1da177e4 115
636752bc
DK
116/* Host status bits for SMBPCISTS */
117#define SMBPCISTS_INTS 0x08
118
1da177e4
LT
119/* Host configuration bits for SMBHSTCFG */
120#define SMBHSTCFG_HST_EN 1
121#define SMBHSTCFG_SMB_SMI_EN 2
122#define SMBHSTCFG_I2C_EN 4
123
25985edc 124/* Auxiliary control register bits, ICH4+ only */
ca8b9e32
OR
125#define SMBAUXCTL_CRC 1
126#define SMBAUXCTL_E32B 2
127
1da177e4 128/* Other settings */
84c1af4c 129#define MAX_RETRIES 400
1da177e4
LT
130
131/* I801 command constants */
132#define I801_QUICK 0x00
133#define I801_BYTE 0x04
134#define I801_BYTE_DATA 0x08
135#define I801_WORD_DATA 0x0C
ae7b0497 136#define I801_PROC_CALL 0x10 /* unimplemented */
1da177e4 137#define I801_BLOCK_DATA 0x14
6342064c 138#define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
edbeea63
DK
139
140/* I801 Host Control register bits */
141#define SMBHSTCNT_INTREN 0x01
142#define SMBHSTCNT_KILL 0x02
143#define SMBHSTCNT_LAST_BYTE 0x20
144#define SMBHSTCNT_START 0x40
145#define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
1da177e4 146
ca8b9e32
OR
147/* I801 Hosts Status register bits */
148#define SMBHSTSTS_BYTE_DONE 0x80
149#define SMBHSTSTS_INUSE_STS 0x40
150#define SMBHSTSTS_SMBALERT_STS 0x20
151#define SMBHSTSTS_FAILED 0x10
152#define SMBHSTSTS_BUS_ERR 0x08
153#define SMBHSTSTS_DEV_ERR 0x04
154#define SMBHSTSTS_INTR 0x02
155#define SMBHSTSTS_HOST_BUSY 0x01
1da177e4 156
70a1cc19
DK
157#define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \
158 SMBHSTSTS_DEV_ERR)
159
160#define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
161 STATUS_ERROR_FLAGS)
cf898dc5 162
a6e5e2be
JD
163/* Older devices have their ID defined in <linux/pci_ids.h> */
164#define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
165#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22
55fee8d7
DW
166/* Patsburg also has three 'Integrated Device Function' SMBus controllers */
167#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70
168#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71
169#define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72
6e2a851e 170#define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22
c2db409c 171#define PCI_DEVICE_ID_INTEL_AVOTON_SMBUS 0x1f3c
a6e5e2be 172#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
f39901c1 173#define PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS 0x23b0
a6e5e2be 174#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
062737fb 175#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
a3fc0ff0
JR
176#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS 0x8d22
177#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0 0x8d7d
178#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1 0x8d7e
179#define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2 0x8d7f
4a8f1ddd 180#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
afc65924 181#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS 0x9ca2
55fee8d7 182
3ad7ea18
JD
183struct i801_mux_config {
184 char *gpio_chip;
185 unsigned values[3];
186 int n_values;
187 unsigned classes[3];
188 unsigned gpios[2]; /* Relative to gpio_chip->base */
189 int n_gpios;
190};
191
0cd96eb0
DW
192struct i801_priv {
193 struct i2c_adapter adapter;
194 unsigned long smba;
195 unsigned char original_hstcfg;
196 struct pci_dev *pci_dev;
197 unsigned int features;
636752bc
DK
198
199 /* isr processing */
200 wait_queue_head_t waitq;
201 u8 status;
d3ff6ce4
DK
202
203 /* Command state used by isr for byte-by-byte block transactions */
204 u8 cmd;
205 bool is_read;
206 int count;
207 int len;
208 u8 *data;
3ad7ea18 209
79e3e5b8
JD
210#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
211 defined CONFIG_DMI
3ad7ea18 212 const struct i801_mux_config *mux_drvdata;
3ad7ea18
JD
213 struct platform_device *mux_pdev;
214#endif
0cd96eb0
DW
215};
216
d6072f84 217static struct pci_driver i801_driver;
369f6f4a
JD
218
219#define FEATURE_SMBUS_PEC (1 << 0)
220#define FEATURE_BLOCK_BUFFER (1 << 1)
221#define FEATURE_BLOCK_PROC (1 << 2)
222#define FEATURE_I2C_BLOCK_READ (1 << 3)
636752bc 223#define FEATURE_IRQ (1 << 4)
e7198fbf
JD
224/* Not really a feature, but it's convenient to handle it as such */
225#define FEATURE_IDF (1 << 15)
1da177e4 226
adff687d
JD
227static const char *i801_feature_names[] = {
228 "SMBus PEC",
229 "Block buffer",
230 "Block process call",
231 "I2C block read",
636752bc 232 "Interrupt",
adff687d
JD
233};
234
235static unsigned int disable_features;
236module_param(disable_features, uint, S_IRUGO | S_IWUSR);
53229345
JD
237MODULE_PARM_DESC(disable_features, "Disable selected driver features:\n"
238 "\t\t 0x01 disable SMBus PEC\n"
239 "\t\t 0x02 disable the block buffer\n"
240 "\t\t 0x08 disable the I2C block read functionality\n"
241 "\t\t 0x10 don't use interrupts ");
adff687d 242
cf898dc5
JD
243/* Make sure the SMBus host is ready to start transmitting.
244 Return 0 if it is, -EBUSY if it is not. */
0cd96eb0 245static int i801_check_pre(struct i801_priv *priv)
1da177e4 246{
2b73809d 247 int status;
1da177e4 248
0cd96eb0 249 status = inb_p(SMBHSTSTS(priv));
cf898dc5 250 if (status & SMBHSTSTS_HOST_BUSY) {
0cd96eb0 251 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
cf898dc5
JD
252 return -EBUSY;
253 }
254
255 status &= STATUS_FLAGS;
256 if (status) {
0cd96eb0 257 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
2b73809d 258 status);
0cd96eb0
DW
259 outb_p(status, SMBHSTSTS(priv));
260 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
cf898dc5 261 if (status) {
0cd96eb0 262 dev_err(&priv->pci_dev->dev,
cf898dc5
JD
263 "Failed clearing status flags (%02x)\n",
264 status);
97140342 265 return -EBUSY;
1da177e4
LT
266 }
267 }
268
cf898dc5
JD
269 return 0;
270}
1da177e4 271
6cad93c4
JD
272/*
273 * Convert the status register to an error code, and clear it.
274 * Note that status only contains the bits we want to clear, not the
275 * actual register value.
276 */
277static int i801_check_post(struct i801_priv *priv, int status)
cf898dc5
JD
278{
279 int result = 0;
1da177e4 280
636752bc
DK
281 /*
282 * If the SMBus is still busy, we give up
283 * Note: This timeout condition only happens when using polling
284 * transactions. For interrupt operation, NAK/timeout is indicated by
285 * DEV_ERR.
286 */
6cad93c4 287 if (unlikely(status < 0)) {
0cd96eb0 288 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
ca8b9e32 289 /* try to stop the current command */
0cd96eb0
DW
290 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
291 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
292 SMBHSTCNT(priv));
84c1af4c 293 usleep_range(1000, 2000);
0cd96eb0
DW
294 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
295 SMBHSTCNT(priv));
cf898dc5
JD
296
297 /* Check if it worked */
0cd96eb0 298 status = inb_p(SMBHSTSTS(priv));
cf898dc5
JD
299 if ((status & SMBHSTSTS_HOST_BUSY) ||
300 !(status & SMBHSTSTS_FAILED))
0cd96eb0 301 dev_err(&priv->pci_dev->dev,
cf898dc5 302 "Failed terminating the transaction\n");
0cd96eb0 303 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
cf898dc5 304 return -ETIMEDOUT;
1da177e4
LT
305 }
306
2b73809d 307 if (status & SMBHSTSTS_FAILED) {
97140342 308 result = -EIO;
0cd96eb0 309 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
cf898dc5
JD
310 }
311 if (status & SMBHSTSTS_DEV_ERR) {
312 result = -ENXIO;
0cd96eb0 313 dev_dbg(&priv->pci_dev->dev, "No response\n");
1da177e4 314 }
2b73809d 315 if (status & SMBHSTSTS_BUS_ERR) {
dcb5c923 316 result = -EAGAIN;
0cd96eb0 317 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
1da177e4
LT
318 }
319
6cad93c4
JD
320 /* Clear status flags except BYTE_DONE, to be cleared by caller */
321 outb_p(status, SMBHSTSTS(priv));
1da177e4 322
1da177e4
LT
323 return result;
324}
325
6cad93c4
JD
326/* Wait for BUSY being cleared and either INTR or an error flag being set */
327static int i801_wait_intr(struct i801_priv *priv)
cf898dc5 328{
cf898dc5 329 int timeout = 0;
6cad93c4 330 int status;
cf898dc5
JD
331
332 /* We will always wait for a fraction of a second! */
333 do {
84c1af4c 334 usleep_range(250, 500);
0cd96eb0 335 status = inb_p(SMBHSTSTS(priv));
6cad93c4
JD
336 } while (((status & SMBHSTSTS_HOST_BUSY) ||
337 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
338 (timeout++ < MAX_RETRIES));
cf898dc5 339
6cad93c4
JD
340 if (timeout > MAX_RETRIES) {
341 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
342 return -ETIMEDOUT;
343 }
344 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
cf898dc5
JD
345}
346
6cad93c4
JD
347/* Wait for either BYTE_DONE or an error flag being set */
348static int i801_wait_byte_done(struct i801_priv *priv)
ca8b9e32
OR
349{
350 int timeout = 0;
2b73809d 351 int status;
ca8b9e32 352
6cad93c4 353 /* We will always wait for a fraction of a second! */
ca8b9e32 354 do {
84c1af4c 355 usleep_range(250, 500);
0cd96eb0 356 status = inb_p(SMBHSTSTS(priv));
6cad93c4
JD
357 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
358 (timeout++ < MAX_RETRIES));
359
360 if (timeout > MAX_RETRIES) {
361 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
362 return -ETIMEDOUT;
363 }
364 return status & STATUS_ERROR_FLAGS;
365}
366
367static int i801_transaction(struct i801_priv *priv, int xact)
368{
369 int status;
370 int result;
ca8b9e32 371
6cad93c4
JD
372 result = i801_check_pre(priv);
373 if (result < 0)
374 return result;
4ccc28f7 375
636752bc
DK
376 if (priv->features & FEATURE_IRQ) {
377 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
378 SMBHSTCNT(priv));
379 wait_event(priv->waitq, (status = priv->status));
380 priv->status = 0;
381 return i801_check_post(priv, status);
382 }
383
6cad93c4
JD
384 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
385 * SMBSCMD are passed in xact */
386 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
387
388 status = i801_wait_intr(priv);
389 return i801_check_post(priv, status);
ca8b9e32
OR
390}
391
0cd96eb0
DW
392static int i801_block_transaction_by_block(struct i801_priv *priv,
393 union i2c_smbus_data *data,
7edcb9ab
OR
394 char read_write, int hwpec)
395{
396 int i, len;
97140342 397 int status;
7edcb9ab 398
0cd96eb0 399 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
7edcb9ab
OR
400
401 /* Use 32-byte buffer to process this transaction */
402 if (read_write == I2C_SMBUS_WRITE) {
403 len = data->block[0];
0cd96eb0 404 outb_p(len, SMBHSTDAT0(priv));
7edcb9ab 405 for (i = 0; i < len; i++)
0cd96eb0 406 outb_p(data->block[i+1], SMBBLKDAT(priv));
7edcb9ab
OR
407 }
408
37af8711 409 status = i801_transaction(priv, I801_BLOCK_DATA |
edbeea63 410 (hwpec ? SMBHSTCNT_PEC_EN : 0));
97140342
DB
411 if (status)
412 return status;
7edcb9ab
OR
413
414 if (read_write == I2C_SMBUS_READ) {
0cd96eb0 415 len = inb_p(SMBHSTDAT0(priv));
7edcb9ab 416 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
97140342 417 return -EPROTO;
7edcb9ab
OR
418
419 data->block[0] = len;
420 for (i = 0; i < len; i++)
0cd96eb0 421 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
7edcb9ab
OR
422 }
423 return 0;
424}
425
d3ff6ce4
DK
426static void i801_isr_byte_done(struct i801_priv *priv)
427{
428 if (priv->is_read) {
429 /* For SMBus block reads, length is received with first byte */
430 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
431 (priv->count == 0)) {
432 priv->len = inb_p(SMBHSTDAT0(priv));
433 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
434 dev_err(&priv->pci_dev->dev,
435 "Illegal SMBus block read size %d\n",
436 priv->len);
437 /* FIXME: Recover */
438 priv->len = I2C_SMBUS_BLOCK_MAX;
439 } else {
440 dev_dbg(&priv->pci_dev->dev,
441 "SMBus block read size is %d\n",
442 priv->len);
443 }
444 priv->data[-1] = priv->len;
445 }
446
447 /* Read next byte */
448 if (priv->count < priv->len)
449 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
450 else
451 dev_dbg(&priv->pci_dev->dev,
452 "Discarding extra byte on block read\n");
453
454 /* Set LAST_BYTE for last byte of read transaction */
455 if (priv->count == priv->len - 1)
456 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
457 SMBHSTCNT(priv));
458 } else if (priv->count < priv->len - 1) {
459 /* Write next byte, except for IRQ after last byte */
460 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
461 }
462
463 /* Clear BYTE_DONE to continue with next byte */
464 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
465}
466
636752bc 467/*
d3ff6ce4
DK
468 * There are two kinds of interrupts:
469 *
470 * 1) i801 signals transaction completion with one of these interrupts:
471 * INTR - Success
472 * DEV_ERR - Invalid command, NAK or communication timeout
473 * BUS_ERR - SMI# transaction collision
474 * FAILED - transaction was canceled due to a KILL request
475 * When any of these occur, update ->status and wake up the waitq.
476 * ->status must be cleared before kicking off the next transaction.
477 *
478 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
479 * occurs for each byte of a byte-by-byte to prepare the next byte.
636752bc
DK
480 */
481static irqreturn_t i801_isr(int irq, void *dev_id)
482{
483 struct i801_priv *priv = dev_id;
484 u16 pcists;
485 u8 status;
486
487 /* Confirm this is our interrupt */
488 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
489 if (!(pcists & SMBPCISTS_INTS))
490 return IRQ_NONE;
491
492 status = inb_p(SMBHSTSTS(priv));
493 if (status != 0x42)
494 dev_dbg(&priv->pci_dev->dev, "irq: status = %02x\n", status);
495
d3ff6ce4
DK
496 if (status & SMBHSTSTS_BYTE_DONE)
497 i801_isr_byte_done(priv);
498
636752bc
DK
499 /*
500 * Clear irq sources and report transaction result.
501 * ->status must be cleared before the next transaction is started.
502 */
503 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
504 if (status) {
505 outb_p(status, SMBHSTSTS(priv));
506 priv->status |= status;
507 wake_up(&priv->waitq);
508 }
509
510 return IRQ_HANDLED;
511}
512
efa3cb15
DK
513/*
514 * For "byte-by-byte" block transactions:
515 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
516 * I2C read uses cmd=I801_I2C_BLOCK_DATA
517 */
0cd96eb0
DW
518static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
519 union i2c_smbus_data *data,
6342064c
JD
520 char read_write, int command,
521 int hwpec)
1da177e4
LT
522{
523 int i, len;
524 int smbcmd;
2b73809d 525 int status;
cf898dc5 526 int result;
cf898dc5 527
0cd96eb0 528 result = i801_check_pre(priv);
cf898dc5
JD
529 if (result < 0)
530 return result;
1da177e4 531
7edcb9ab 532 len = data->block[0];
1da177e4
LT
533
534 if (read_write == I2C_SMBUS_WRITE) {
0cd96eb0
DW
535 outb_p(len, SMBHSTDAT0(priv));
536 outb_p(data->block[1], SMBBLKDAT(priv));
1da177e4
LT
537 }
538
efa3cb15
DK
539 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
540 read_write == I2C_SMBUS_READ)
541 smbcmd = I801_I2C_BLOCK_DATA;
542 else
543 smbcmd = I801_BLOCK_DATA;
544
d3ff6ce4
DK
545 if (priv->features & FEATURE_IRQ) {
546 priv->is_read = (read_write == I2C_SMBUS_READ);
547 if (len == 1 && priv->is_read)
548 smbcmd |= SMBHSTCNT_LAST_BYTE;
549 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
550 priv->len = len;
551 priv->count = 0;
552 priv->data = &data->block[1];
553
554 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
555 wait_event(priv->waitq, (status = priv->status));
556 priv->status = 0;
557 return i801_check_post(priv, status);
558 }
559
1da177e4 560 for (i = 1; i <= len; i++) {
efa3cb15 561 if (i == len && read_write == I2C_SMBUS_READ)
edbeea63 562 smbcmd |= SMBHSTCNT_LAST_BYTE;
37af8711 563 outb_p(smbcmd, SMBHSTCNT(priv));
1da177e4 564
1da177e4 565 if (i == 1)
edbeea63 566 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
0cd96eb0 567 SMBHSTCNT(priv));
1da177e4 568
6cad93c4
JD
569 status = i801_wait_byte_done(priv);
570 if (status)
571 goto exit;
1da177e4 572
6342064c
JD
573 if (i == 1 && read_write == I2C_SMBUS_READ
574 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
0cd96eb0 575 len = inb_p(SMBHSTDAT0(priv));
cf898dc5 576 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
0cd96eb0 577 dev_err(&priv->pci_dev->dev,
cf898dc5
JD
578 "Illegal SMBus block read size %d\n",
579 len);
580 /* Recover */
0cd96eb0
DW
581 while (inb_p(SMBHSTSTS(priv)) &
582 SMBHSTSTS_HOST_BUSY)
583 outb_p(SMBHSTSTS_BYTE_DONE,
584 SMBHSTSTS(priv));
585 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
97140342 586 return -EPROTO;
cf898dc5 587 }
1da177e4
LT
588 data->block[0] = len;
589 }
590
591 /* Retrieve/store value in SMBBLKDAT */
592 if (read_write == I2C_SMBUS_READ)
0cd96eb0 593 data->block[i] = inb_p(SMBBLKDAT(priv));
1da177e4 594 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
0cd96eb0 595 outb_p(data->block[i+1], SMBBLKDAT(priv));
1da177e4 596
cf898dc5 597 /* signals SMBBLKDAT ready */
6cad93c4 598 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
1da177e4 599 }
cf898dc5 600
6cad93c4
JD
601 status = i801_wait_intr(priv);
602exit:
603 return i801_check_post(priv, status);
7edcb9ab 604}
1da177e4 605
0cd96eb0 606static int i801_set_block_buffer_mode(struct i801_priv *priv)
7edcb9ab 607{
0cd96eb0
DW
608 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
609 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
97140342 610 return -EIO;
7edcb9ab
OR
611 return 0;
612}
613
614/* Block transaction function */
0cd96eb0
DW
615static int i801_block_transaction(struct i801_priv *priv,
616 union i2c_smbus_data *data, char read_write,
7edcb9ab
OR
617 int command, int hwpec)
618{
619 int result = 0;
620 unsigned char hostc;
621
622 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
623 if (read_write == I2C_SMBUS_WRITE) {
624 /* set I2C_EN bit in configuration register */
0cd96eb0
DW
625 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
626 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
7edcb9ab 627 hostc | SMBHSTCFG_I2C_EN);
0cd96eb0
DW
628 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
629 dev_err(&priv->pci_dev->dev,
6342064c 630 "I2C block read is unsupported!\n");
97140342 631 return -EOPNOTSUPP;
7edcb9ab
OR
632 }
633 }
634
6342064c
JD
635 if (read_write == I2C_SMBUS_WRITE
636 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
7edcb9ab
OR
637 if (data->block[0] < 1)
638 data->block[0] = 1;
639 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
640 data->block[0] = I2C_SMBUS_BLOCK_MAX;
641 } else {
6342064c 642 data->block[0] = 32; /* max for SMBus block reads */
7edcb9ab
OR
643 }
644
c074c39d
JD
645 /* Experience has shown that the block buffer can only be used for
646 SMBus (not I2C) block transactions, even though the datasheet
647 doesn't mention this limitation. */
0cd96eb0 648 if ((priv->features & FEATURE_BLOCK_BUFFER)
c074c39d 649 && command != I2C_SMBUS_I2C_BLOCK_DATA
0cd96eb0
DW
650 && i801_set_block_buffer_mode(priv) == 0)
651 result = i801_block_transaction_by_block(priv, data,
652 read_write, hwpec);
7edcb9ab 653 else
0cd96eb0
DW
654 result = i801_block_transaction_byte_by_byte(priv, data,
655 read_write,
6342064c 656 command, hwpec);
7edcb9ab 657
6342064c
JD
658 if (command == I2C_SMBUS_I2C_BLOCK_DATA
659 && read_write == I2C_SMBUS_WRITE) {
1da177e4 660 /* restore saved configuration register value */
0cd96eb0 661 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
1da177e4
LT
662 }
663 return result;
664}
665
97140342 666/* Return negative errno on error. */
3fb21c64 667static s32 i801_access(struct i2c_adapter *adap, u16 addr,
1da177e4 668 unsigned short flags, char read_write, u8 command,
3fb21c64 669 int size, union i2c_smbus_data *data)
1da177e4 670{
e8aac4a9 671 int hwpec;
1da177e4
LT
672 int block = 0;
673 int ret, xact = 0;
0cd96eb0 674 struct i801_priv *priv = i2c_get_adapdata(adap);
1da177e4 675
0cd96eb0 676 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
e8aac4a9
JD
677 && size != I2C_SMBUS_QUICK
678 && size != I2C_SMBUS_I2C_BLOCK_DATA;
1da177e4
LT
679
680 switch (size) {
681 case I2C_SMBUS_QUICK:
682 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
0cd96eb0 683 SMBHSTADD(priv));
1da177e4
LT
684 xact = I801_QUICK;
685 break;
686 case I2C_SMBUS_BYTE:
687 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
0cd96eb0 688 SMBHSTADD(priv));
1da177e4 689 if (read_write == I2C_SMBUS_WRITE)
0cd96eb0 690 outb_p(command, SMBHSTCMD(priv));
1da177e4
LT
691 xact = I801_BYTE;
692 break;
693 case I2C_SMBUS_BYTE_DATA:
694 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
0cd96eb0
DW
695 SMBHSTADD(priv));
696 outb_p(command, SMBHSTCMD(priv));
1da177e4 697 if (read_write == I2C_SMBUS_WRITE)
0cd96eb0 698 outb_p(data->byte, SMBHSTDAT0(priv));
1da177e4
LT
699 xact = I801_BYTE_DATA;
700 break;
701 case I2C_SMBUS_WORD_DATA:
702 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
0cd96eb0
DW
703 SMBHSTADD(priv));
704 outb_p(command, SMBHSTCMD(priv));
1da177e4 705 if (read_write == I2C_SMBUS_WRITE) {
0cd96eb0
DW
706 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
707 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
1da177e4
LT
708 }
709 xact = I801_WORD_DATA;
710 break;
711 case I2C_SMBUS_BLOCK_DATA:
1da177e4 712 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
0cd96eb0
DW
713 SMBHSTADD(priv));
714 outb_p(command, SMBHSTCMD(priv));
1da177e4
LT
715 block = 1;
716 break;
6342064c
JD
717 case I2C_SMBUS_I2C_BLOCK_DATA:
718 /* NB: page 240 of ICH5 datasheet shows that the R/#W
719 * bit should be cleared here, even when reading */
0cd96eb0 720 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
6342064c
JD
721 if (read_write == I2C_SMBUS_READ) {
722 /* NB: page 240 of ICH5 datasheet also shows
723 * that DATA1 is the cmd field when reading */
0cd96eb0 724 outb_p(command, SMBHSTDAT1(priv));
6342064c 725 } else
0cd96eb0 726 outb_p(command, SMBHSTCMD(priv));
6342064c
JD
727 block = 1;
728 break;
1da177e4 729 default:
0cd96eb0
DW
730 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
731 size);
97140342 732 return -EOPNOTSUPP;
1da177e4
LT
733 }
734
ca8b9e32 735 if (hwpec) /* enable/disable hardware PEC */
0cd96eb0 736 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
ca8b9e32 737 else
0cd96eb0
DW
738 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
739 SMBAUXCTL(priv));
e8aac4a9 740
3fb21c64 741 if (block)
0cd96eb0
DW
742 ret = i801_block_transaction(priv, data, read_write, size,
743 hwpec);
7edcb9ab 744 else
37af8711 745 ret = i801_transaction(priv, xact);
1da177e4 746
c79cfbac 747 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
7edcb9ab
OR
748 time, so we forcibly disable it after every transaction. Turn off
749 E32B for the same reason. */
a0921b6c 750 if (hwpec || block)
0cd96eb0
DW
751 outb_p(inb_p(SMBAUXCTL(priv)) &
752 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
c79cfbac 753
3fb21c64 754 if (block)
1da177e4 755 return ret;
3fb21c64 756 if (ret)
97140342 757 return ret;
1da177e4
LT
758 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
759 return 0;
760
761 switch (xact & 0x7f) {
762 case I801_BYTE: /* Result put in SMBHSTDAT0 */
763 case I801_BYTE_DATA:
0cd96eb0 764 data->byte = inb_p(SMBHSTDAT0(priv));
1da177e4
LT
765 break;
766 case I801_WORD_DATA:
0cd96eb0
DW
767 data->word = inb_p(SMBHSTDAT0(priv)) +
768 (inb_p(SMBHSTDAT1(priv)) << 8);
1da177e4
LT
769 break;
770 }
771 return 0;
772}
773
774
775static u32 i801_func(struct i2c_adapter *adapter)
776{
0cd96eb0
DW
777 struct i801_priv *priv = i2c_get_adapdata(adapter);
778
1da177e4 779 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
369f6f4a
JD
780 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
781 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
0cd96eb0
DW
782 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
783 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
6342064c 784 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
1da177e4
LT
785}
786
8f9082c5 787static const struct i2c_algorithm smbus_algorithm = {
1da177e4
LT
788 .smbus_xfer = i801_access,
789 .functionality = i801_func,
790};
791
3527bd50 792static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
1da177e4
LT
793 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
794 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
795 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
796 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
797 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
798 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
799 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
800 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
801 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
b0a70b57 802 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
8254fc4a 803 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
adbc2a10 804 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
cb04e95b 805 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
d28dc711
GJ
806 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
807 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
cb04e95b
SH
808 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
809 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
e30d9859 810 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
55fee8d7
DW
811 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
812 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
813 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
662cda8a 814 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
6e2a851e 815 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
062737fb 816 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
4a8f1ddd 817 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
c2db409c 818 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMBUS) },
a3fc0ff0
JR
819 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS) },
820 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0) },
821 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1) },
822 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2) },
f39901c1 823 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS) },
afc65924 824 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS) },
1da177e4
LT
825 { 0, }
826};
827
3fb21c64 828MODULE_DEVICE_TABLE(pci, i801_ids);
1da177e4 829
8eacfceb 830#if defined CONFIG_X86 && defined CONFIG_DMI
1561bfe5
JD
831static unsigned char apanel_addr;
832
833/* Scan the system ROM for the signature "FJKEYINF" */
834static __init const void __iomem *bios_signature(const void __iomem *bios)
835{
836 ssize_t offset;
837 const unsigned char signature[] = "FJKEYINF";
838
839 for (offset = 0; offset < 0x10000; offset += 0x10) {
840 if (check_signature(bios + offset, signature,
841 sizeof(signature)-1))
842 return bios + offset;
843 }
844 return NULL;
845}
846
847static void __init input_apanel_init(void)
848{
849 void __iomem *bios;
850 const void __iomem *p;
851
852 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
853 p = bios_signature(bios);
854 if (p) {
855 /* just use the first address */
856 apanel_addr = readb(p + 8 + 3) >> 1;
857 }
858 iounmap(bios);
859}
1561bfe5 860
fa5bfab7
HG
861struct dmi_onboard_device_info {
862 const char *name;
863 u8 type;
864 unsigned short i2c_addr;
865 const char *i2c_type;
866};
867
0b255e92 868static const struct dmi_onboard_device_info dmi_devices[] = {
fa5bfab7
HG
869 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
870 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
871 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
872};
873
0b255e92
BP
874static void dmi_check_onboard_device(u8 type, const char *name,
875 struct i2c_adapter *adap)
fa5bfab7
HG
876{
877 int i;
878 struct i2c_board_info info;
879
880 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
881 /* & ~0x80, ignore enabled/disabled bit */
882 if ((type & ~0x80) != dmi_devices[i].type)
883 continue;
faabd47f 884 if (strcasecmp(name, dmi_devices[i].name))
fa5bfab7
HG
885 continue;
886
887 memset(&info, 0, sizeof(struct i2c_board_info));
888 info.addr = dmi_devices[i].i2c_addr;
889 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
890 i2c_new_device(adap, &info);
891 break;
892 }
893}
894
895/* We use our own function to check for onboard devices instead of
896 dmi_find_device() as some buggy BIOS's have the devices we are interested
897 in marked as disabled */
0b255e92 898static void dmi_check_onboard_devices(const struct dmi_header *dm, void *adap)
fa5bfab7
HG
899{
900 int i, count;
901
902 if (dm->type != 10)
903 return;
904
905 count = (dm->length - sizeof(struct dmi_header)) / 2;
906 for (i = 0; i < count; i++) {
907 const u8 *d = (char *)(dm + 1) + (i * 2);
908 const char *name = ((char *) dm) + dm->length;
909 u8 type = d[0];
910 u8 s = d[1];
911
912 if (!s)
913 continue;
914 s--;
915 while (s > 0 && name[0]) {
916 name += strlen(name) + 1;
917 s--;
918 }
919 if (name[0] == 0) /* Bogus string reference */
920 continue;
921
922 dmi_check_onboard_device(type, name, adap);
923 }
924}
fa5bfab7 925
e7198fbf 926/* Register optional slaves */
0b255e92 927static void i801_probe_optional_slaves(struct i801_priv *priv)
e7198fbf
JD
928{
929 /* Only register slaves on main SMBus channel */
930 if (priv->features & FEATURE_IDF)
931 return;
932
e7198fbf
JD
933 if (apanel_addr) {
934 struct i2c_board_info info;
935
936 memset(&info, 0, sizeof(struct i2c_board_info));
937 info.addr = apanel_addr;
938 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
939 i2c_new_device(&priv->adapter, &info);
940 }
8eacfceb 941
e7198fbf
JD
942 if (dmi_name_in_vendors("FUJITSU"))
943 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
e7198fbf 944}
8eacfceb
JD
945#else
946static void __init input_apanel_init(void) {}
0b255e92 947static void i801_probe_optional_slaves(struct i801_priv *priv) {}
8eacfceb 948#endif /* CONFIG_X86 && CONFIG_DMI */
e7198fbf 949
79e3e5b8
JD
950#if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \
951 defined CONFIG_DMI
3ad7ea18
JD
952static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
953 .gpio_chip = "gpio_ich",
954 .values = { 0x02, 0x03 },
955 .n_values = 2,
956 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
957 .gpios = { 52, 53 },
958 .n_gpios = 2,
959};
960
961static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
962 .gpio_chip = "gpio_ich",
963 .values = { 0x02, 0x03, 0x01 },
964 .n_values = 3,
965 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
966 .gpios = { 52, 53 },
967 .n_gpios = 2,
968};
969
0b255e92 970static const struct dmi_system_id mux_dmi_table[] = {
3ad7ea18
JD
971 {
972 .matches = {
973 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
974 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
975 },
976 .driver_data = &i801_mux_config_asus_z8_d12,
977 },
978 {
979 .matches = {
980 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
981 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"),
982 },
983 .driver_data = &i801_mux_config_asus_z8_d12,
984 },
985 {
986 .matches = {
987 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
988 DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"),
989 },
990 .driver_data = &i801_mux_config_asus_z8_d12,
991 },
992 {
993 .matches = {
994 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
995 DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"),
996 },
997 .driver_data = &i801_mux_config_asus_z8_d12,
998 },
999 {
1000 .matches = {
1001 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1002 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
1003 },
1004 .driver_data = &i801_mux_config_asus_z8_d12,
1005 },
1006 {
1007 .matches = {
1008 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1009 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
1010 },
1011 .driver_data = &i801_mux_config_asus_z8_d12,
1012 },
1013 {
1014 .matches = {
1015 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1016 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
1017 },
1018 .driver_data = &i801_mux_config_asus_z8_d18,
1019 },
1020 {
1021 .matches = {
1022 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1023 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
1024 },
1025 .driver_data = &i801_mux_config_asus_z8_d18,
1026 },
1027 {
1028 .matches = {
1029 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1030 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1031 },
1032 .driver_data = &i801_mux_config_asus_z8_d12,
1033 },
1034 { }
1035};
1036
3ad7ea18 1037/* Setup multiplexing if needed */
0b255e92 1038static int i801_add_mux(struct i801_priv *priv)
3ad7ea18
JD
1039{
1040 struct device *dev = &priv->adapter.dev;
1041 const struct i801_mux_config *mux_config;
3ad7ea18 1042 struct i2c_mux_gpio_platform_data gpio_data;
f82b8626 1043 int err;
3ad7ea18
JD
1044
1045 if (!priv->mux_drvdata)
1046 return 0;
1047 mux_config = priv->mux_drvdata;
1048
3ad7ea18
JD
1049 /* Prepare the platform data */
1050 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1051 gpio_data.parent = priv->adapter.nr;
1052 gpio_data.values = mux_config->values;
1053 gpio_data.n_values = mux_config->n_values;
1054 gpio_data.classes = mux_config->classes;
f82b8626
JD
1055 gpio_data.gpio_chip = mux_config->gpio_chip;
1056 gpio_data.gpios = mux_config->gpios;
3ad7ea18
JD
1057 gpio_data.n_gpios = mux_config->n_gpios;
1058 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1059
1060 /* Register the mux device */
1061 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
f82b8626 1062 PLATFORM_DEVID_AUTO, &gpio_data,
3ad7ea18
JD
1063 sizeof(struct i2c_mux_gpio_platform_data));
1064 if (IS_ERR(priv->mux_pdev)) {
1065 err = PTR_ERR(priv->mux_pdev);
1066 priv->mux_pdev = NULL;
1067 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1068 return err;
1069 }
1070
1071 return 0;
1072}
1073
0b255e92 1074static void i801_del_mux(struct i801_priv *priv)
3ad7ea18
JD
1075{
1076 if (priv->mux_pdev)
1077 platform_device_unregister(priv->mux_pdev);
1078}
1079
0b255e92 1080static unsigned int i801_get_adapter_class(struct i801_priv *priv)
3ad7ea18
JD
1081{
1082 const struct dmi_system_id *id;
1083 const struct i801_mux_config *mux_config;
1084 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1085 int i;
1086
1087 id = dmi_first_match(mux_dmi_table);
1088 if (id) {
28901f57 1089 /* Remove branch classes from trunk */
3ad7ea18
JD
1090 mux_config = id->driver_data;
1091 for (i = 0; i < mux_config->n_values; i++)
1092 class &= ~mux_config->classes[i];
1093
1094 /* Remember for later */
1095 priv->mux_drvdata = mux_config;
1096 }
1097
1098 return class;
1099}
1100#else
1101static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1102static inline void i801_del_mux(struct i801_priv *priv) { }
1103
1104static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1105{
1106 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1107}
1108#endif
1109
0b255e92 1110static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
1da177e4 1111{
02dd7ae2 1112 unsigned char temp;
adff687d 1113 int err, i;
0cd96eb0
DW
1114 struct i801_priv *priv;
1115
1116 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1117 if (!priv)
1118 return -ENOMEM;
1119
1120 i2c_set_adapdata(&priv->adapter, priv);
1121 priv->adapter.owner = THIS_MODULE;
3ad7ea18 1122 priv->adapter.class = i801_get_adapter_class(priv);
0cd96eb0 1123 priv->adapter.algo = &smbus_algorithm;
1da177e4 1124
0cd96eb0 1125 priv->pci_dev = dev;
250d1bd3 1126 switch (dev->device) {
e7198fbf
JD
1127 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1128 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1129 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
a3fc0ff0
JR
1130 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0:
1131 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1:
1132 case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2:
e7198fbf
JD
1133 priv->features |= FEATURE_IDF;
1134 /* fall through */
e0e8398c 1135 default:
0cd96eb0 1136 priv->features |= FEATURE_I2C_BLOCK_READ;
6676a847 1137 priv->features |= FEATURE_IRQ;
6342064c
JD
1138 /* fall through */
1139 case PCI_DEVICE_ID_INTEL_82801DB_3:
0cd96eb0
DW
1140 priv->features |= FEATURE_SMBUS_PEC;
1141 priv->features |= FEATURE_BLOCK_BUFFER;
e0e8398c
JD
1142 /* fall through */
1143 case PCI_DEVICE_ID_INTEL_82801CA_3:
1144 case PCI_DEVICE_ID_INTEL_82801BA_2:
1145 case PCI_DEVICE_ID_INTEL_82801AB_3:
1146 case PCI_DEVICE_ID_INTEL_82801AA_3:
250d1bd3 1147 break;
250d1bd3 1148 }
02dd7ae2 1149
adff687d
JD
1150 /* Disable features on user request */
1151 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
0cd96eb0 1152 if (priv->features & disable_features & (1 << i))
adff687d
JD
1153 dev_notice(&dev->dev, "%s disabled by user\n",
1154 i801_feature_names[i]);
1155 }
0cd96eb0 1156 priv->features &= ~disable_features;
adff687d 1157
02dd7ae2
JD
1158 err = pci_enable_device(dev);
1159 if (err) {
1160 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1161 err);
1162 goto exit;
1163 }
1164
1165 /* Determine the address of the SMBus area */
0cd96eb0
DW
1166 priv->smba = pci_resource_start(dev, SMBBAR);
1167 if (!priv->smba) {
02dd7ae2
JD
1168 dev_err(&dev->dev, "SMBus base address uninitialized, "
1169 "upgrade BIOS\n");
1170 err = -ENODEV;
d6fcb3b9 1171 goto exit;
02dd7ae2
JD
1172 }
1173
54fb4a05 1174 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
18669eab
JD
1175 if (err) {
1176 err = -ENODEV;
54fb4a05 1177 goto exit;
18669eab 1178 }
54fb4a05 1179
02dd7ae2
JD
1180 err = pci_request_region(dev, SMBBAR, i801_driver.name);
1181 if (err) {
1182 dev_err(&dev->dev, "Failed to request SMBus region "
0cd96eb0 1183 "0x%lx-0x%Lx\n", priv->smba,
598736c5 1184 (unsigned long long)pci_resource_end(dev, SMBBAR));
d6fcb3b9 1185 goto exit;
02dd7ae2
JD
1186 }
1187
0cd96eb0
DW
1188 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1189 priv->original_hstcfg = temp;
02dd7ae2
JD
1190 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1191 if (!(temp & SMBHSTCFG_HST_EN)) {
1192 dev_info(&dev->dev, "Enabling SMBus device\n");
1193 temp |= SMBHSTCFG_HST_EN;
1194 }
0cd96eb0 1195 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
02dd7ae2 1196
636752bc 1197 if (temp & SMBHSTCFG_SMB_SMI_EN) {
02dd7ae2 1198 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
636752bc
DK
1199 /* Disable SMBus interrupt feature if SMBus using SMI# */
1200 priv->features &= ~FEATURE_IRQ;
636752bc 1201 }
1da177e4 1202
a0921b6c 1203 /* Clear special mode bits */
0cd96eb0
DW
1204 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1205 outb_p(inb_p(SMBAUXCTL(priv)) &
1206 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
a0921b6c 1207
636752bc
DK
1208 if (priv->features & FEATURE_IRQ) {
1209 init_waitqueue_head(&priv->waitq);
1210
1211 err = request_irq(dev->irq, i801_isr, IRQF_SHARED,
1212 i801_driver.name, priv);
1213 if (err) {
1214 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1215 dev->irq, err);
1216 goto exit_release;
1217 }
29b60854 1218 dev_info(&dev->dev, "SMBus using PCI Interrupt\n");
636752bc
DK
1219 }
1220
405ae7d3 1221 /* set up the sysfs linkage to our parent device */
0cd96eb0 1222 priv->adapter.dev.parent = &dev->dev;
1da177e4 1223
7e2193a8 1224 /* Retry up to 3 times on lost arbitration */
0cd96eb0 1225 priv->adapter.retries = 3;
7e2193a8 1226
0cd96eb0
DW
1227 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1228 "SMBus I801 adapter at %04lx", priv->smba);
1229 err = i2c_add_adapter(&priv->adapter);
02dd7ae2
JD
1230 if (err) {
1231 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
636752bc 1232 goto exit_free_irq;
02dd7ae2 1233 }
1561bfe5 1234
e7198fbf 1235 i801_probe_optional_slaves(priv);
3ad7ea18
JD
1236 /* We ignore errors - multiplexing is optional */
1237 i801_add_mux(priv);
1561bfe5 1238
0cd96eb0 1239 pci_set_drvdata(dev, priv);
636752bc 1240
d6fcb3b9 1241 return 0;
02dd7ae2 1242
636752bc
DK
1243exit_free_irq:
1244 if (priv->features & FEATURE_IRQ)
1245 free_irq(dev->irq, priv);
d6fcb3b9
DR
1246exit_release:
1247 pci_release_region(dev, SMBBAR);
02dd7ae2 1248exit:
0cd96eb0 1249 kfree(priv);
02dd7ae2 1250 return err;
1da177e4
LT
1251}
1252
0b255e92 1253static void i801_remove(struct pci_dev *dev)
1da177e4 1254{
0cd96eb0
DW
1255 struct i801_priv *priv = pci_get_drvdata(dev);
1256
3ad7ea18 1257 i801_del_mux(priv);
0cd96eb0
DW
1258 i2c_del_adapter(&priv->adapter);
1259 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
636752bc
DK
1260
1261 if (priv->features & FEATURE_IRQ)
1262 free_irq(dev->irq, priv);
6dcc19df 1263 pci_release_region(dev, SMBBAR);
636752bc 1264
0cd96eb0 1265 kfree(priv);
d6fcb3b9
DR
1266 /*
1267 * do not call pci_disable_device(dev) since it can cause hard hangs on
1268 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1269 */
1da177e4
LT
1270}
1271
a5aaea37
JD
1272#ifdef CONFIG_PM
1273static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
1274{
0cd96eb0
DW
1275 struct i801_priv *priv = pci_get_drvdata(dev);
1276
a5aaea37 1277 pci_save_state(dev);
0cd96eb0 1278 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
a5aaea37
JD
1279 pci_set_power_state(dev, pci_choose_state(dev, mesg));
1280 return 0;
1281}
1282
1283static int i801_resume(struct pci_dev *dev)
1284{
1285 pci_set_power_state(dev, PCI_D0);
1286 pci_restore_state(dev);
1287 return pci_enable_device(dev);
1288}
1289#else
1290#define i801_suspend NULL
1291#define i801_resume NULL
1292#endif
1293
1da177e4
LT
1294static struct pci_driver i801_driver = {
1295 .name = "i801_smbus",
1296 .id_table = i801_ids,
1297 .probe = i801_probe,
0b255e92 1298 .remove = i801_remove,
a5aaea37
JD
1299 .suspend = i801_suspend,
1300 .resume = i801_resume,
1da177e4
LT
1301};
1302
1303static int __init i2c_i801_init(void)
1304{
6aa1464d
JD
1305 if (dmi_name_in_vendors("FUJITSU"))
1306 input_apanel_init();
1da177e4
LT
1307 return pci_register_driver(&i801_driver);
1308}
1309
1310static void __exit i2c_i801_exit(void)
1311{
1312 pci_unregister_driver(&i801_driver);
1313}
1314
7c81c60f 1315MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, Jean Delvare <jdelvare@suse.de>");
1da177e4
LT
1316MODULE_DESCRIPTION("I801 SMBus driver");
1317MODULE_LICENSE("GPL");
1318
1319module_init(i2c_i801_init);
1320module_exit(i2c_i801_exit);