perf tests: Add framework for automated perf_event_attr tests
[linux-2.6.git] / drivers / i2c / busses / i2c-i801.c
blob37793156bd936202a10362e7910d88708c4a9248
1 /*
2 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>,
3 Philip Edelbrock <phil@netroedge.com>, and Mark D. Studebaker
4 <mdsxyz123@yahoo.com>
5 Copyright (C) 2007 - 2012 Jean Delvare <khali@linux-fr.org>
6 Copyright (C) 2010 Intel Corporation,
7 David Woodhouse <dwmw2@infradead.org>
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.
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.
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.
25 Supports the following Intel I/O Controller Hubs (ICH):
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
43 EP80579 (Tolapai) 0x5032 32 hard yes yes yes
44 ICH10 0x3a30 32 hard yes yes yes
45 ICH10 0x3a60 32 hard yes yes yes
46 5/3400 Series (PCH) 0x3b30 32 hard yes yes yes
47 6 Series (PCH) 0x1c22 32 hard yes yes yes
48 Patsburg (PCH) 0x1d22 32 hard yes yes yes
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
52 DH89xxCC (PCH) 0x2330 32 hard yes yes yes
53 Panther Point (PCH) 0x1e22 32 hard yes yes yes
54 Lynx Point (PCH) 0x8c22 32 hard yes yes yes
55 Lynx Point-LP (PCH) 0x9c22 32 hard yes yes yes
57 Features supported by this driver:
58 Software PEC no
59 Hardware PEC yes
60 Block buffer yes
61 Block process call transaction no
62 I2C block read transaction yes (doesn't use the block buffer)
63 Slave mode no
64 Interrupt processing yes
66 See the file Documentation/i2c/busses/i2c-i801 for details.
69 #include <linux/interrupt.h>
70 #include <linux/module.h>
71 #include <linux/pci.h>
72 #include <linux/kernel.h>
73 #include <linux/stddef.h>
74 #include <linux/delay.h>
75 #include <linux/ioport.h>
76 #include <linux/init.h>
77 #include <linux/i2c.h>
78 #include <linux/acpi.h>
79 #include <linux/io.h>
80 #include <linux/dmi.h>
81 #include <linux/slab.h>
82 #include <linux/wait.h>
83 #include <linux/err.h>
85 #if defined CONFIG_I2C_MUX || defined CONFIG_I2C_MUX_MODULE
86 #include <linux/gpio.h>
87 #include <linux/i2c-mux-gpio.h>
88 #include <linux/platform_device.h>
89 #endif
91 /* I801 SMBus address offsets */
92 #define SMBHSTSTS(p) (0 + (p)->smba)
93 #define SMBHSTCNT(p) (2 + (p)->smba)
94 #define SMBHSTCMD(p) (3 + (p)->smba)
95 #define SMBHSTADD(p) (4 + (p)->smba)
96 #define SMBHSTDAT0(p) (5 + (p)->smba)
97 #define SMBHSTDAT1(p) (6 + (p)->smba)
98 #define SMBBLKDAT(p) (7 + (p)->smba)
99 #define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */
100 #define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */
101 #define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */
103 /* PCI Address Constants */
104 #define SMBBAR 4
105 #define SMBPCISTS 0x006
106 #define SMBHSTCFG 0x040
108 /* Host status bits for SMBPCISTS */
109 #define SMBPCISTS_INTS 0x08
111 /* Host configuration bits for SMBHSTCFG */
112 #define SMBHSTCFG_HST_EN 1
113 #define SMBHSTCFG_SMB_SMI_EN 2
114 #define SMBHSTCFG_I2C_EN 4
116 /* Auxiliary control register bits, ICH4+ only */
117 #define SMBAUXCTL_CRC 1
118 #define SMBAUXCTL_E32B 2
120 /* Other settings */
121 #define MAX_RETRIES 400
123 /* I801 command constants */
124 #define I801_QUICK 0x00
125 #define I801_BYTE 0x04
126 #define I801_BYTE_DATA 0x08
127 #define I801_WORD_DATA 0x0C
128 #define I801_PROC_CALL 0x10 /* unimplemented */
129 #define I801_BLOCK_DATA 0x14
130 #define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */
132 /* I801 Host Control register bits */
133 #define SMBHSTCNT_INTREN 0x01
134 #define SMBHSTCNT_KILL 0x02
135 #define SMBHSTCNT_LAST_BYTE 0x20
136 #define SMBHSTCNT_START 0x40
137 #define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */
139 /* I801 Hosts Status register bits */
140 #define SMBHSTSTS_BYTE_DONE 0x80
141 #define SMBHSTSTS_INUSE_STS 0x40
142 #define SMBHSTSTS_SMBALERT_STS 0x20
143 #define SMBHSTSTS_FAILED 0x10
144 #define SMBHSTSTS_BUS_ERR 0x08
145 #define SMBHSTSTS_DEV_ERR 0x04
146 #define SMBHSTSTS_INTR 0x02
147 #define SMBHSTSTS_HOST_BUSY 0x01
149 #define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \
150 SMBHSTSTS_DEV_ERR)
152 #define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
153 STATUS_ERROR_FLAGS)
155 /* Older devices have their ID defined in <linux/pci_ids.h> */
156 #define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22
157 #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22
158 /* Patsburg also has three 'Integrated Device Function' SMBus controllers */
159 #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70
160 #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71
161 #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72
162 #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22
163 #define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
164 #define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
165 #define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
166 #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
168 struct i801_mux_config {
169 char *gpio_chip;
170 unsigned values[3];
171 int n_values;
172 unsigned classes[3];
173 unsigned gpios[2]; /* Relative to gpio_chip->base */
174 int n_gpios;
177 struct i801_priv {
178 struct i2c_adapter adapter;
179 unsigned long smba;
180 unsigned char original_hstcfg;
181 struct pci_dev *pci_dev;
182 unsigned int features;
184 /* isr processing */
185 wait_queue_head_t waitq;
186 u8 status;
188 /* Command state used by isr for byte-by-byte block transactions */
189 u8 cmd;
190 bool is_read;
191 int count;
192 int len;
193 u8 *data;
195 #if defined CONFIG_I2C_MUX || defined CONFIG_I2C_MUX_MODULE
196 const struct i801_mux_config *mux_drvdata;
197 struct platform_device *mux_pdev;
198 #endif
201 static struct pci_driver i801_driver;
203 #define FEATURE_SMBUS_PEC (1 << 0)
204 #define FEATURE_BLOCK_BUFFER (1 << 1)
205 #define FEATURE_BLOCK_PROC (1 << 2)
206 #define FEATURE_I2C_BLOCK_READ (1 << 3)
207 #define FEATURE_IRQ (1 << 4)
208 /* Not really a feature, but it's convenient to handle it as such */
209 #define FEATURE_IDF (1 << 15)
211 static const char *i801_feature_names[] = {
212 "SMBus PEC",
213 "Block buffer",
214 "Block process call",
215 "I2C block read",
216 "Interrupt",
219 static unsigned int disable_features;
220 module_param(disable_features, uint, S_IRUGO | S_IWUSR);
221 MODULE_PARM_DESC(disable_features, "Disable selected driver features");
223 /* Make sure the SMBus host is ready to start transmitting.
224 Return 0 if it is, -EBUSY if it is not. */
225 static int i801_check_pre(struct i801_priv *priv)
227 int status;
229 status = inb_p(SMBHSTSTS(priv));
230 if (status & SMBHSTSTS_HOST_BUSY) {
231 dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n");
232 return -EBUSY;
235 status &= STATUS_FLAGS;
236 if (status) {
237 dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n",
238 status);
239 outb_p(status, SMBHSTSTS(priv));
240 status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
241 if (status) {
242 dev_err(&priv->pci_dev->dev,
243 "Failed clearing status flags (%02x)\n",
244 status);
245 return -EBUSY;
249 return 0;
253 * Convert the status register to an error code, and clear it.
254 * Note that status only contains the bits we want to clear, not the
255 * actual register value.
257 static int i801_check_post(struct i801_priv *priv, int status)
259 int result = 0;
262 * If the SMBus is still busy, we give up
263 * Note: This timeout condition only happens when using polling
264 * transactions. For interrupt operation, NAK/timeout is indicated by
265 * DEV_ERR.
267 if (unlikely(status < 0)) {
268 dev_err(&priv->pci_dev->dev, "Transaction timeout\n");
269 /* try to stop the current command */
270 dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n");
271 outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL,
272 SMBHSTCNT(priv));
273 usleep_range(1000, 2000);
274 outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL),
275 SMBHSTCNT(priv));
277 /* Check if it worked */
278 status = inb_p(SMBHSTSTS(priv));
279 if ((status & SMBHSTSTS_HOST_BUSY) ||
280 !(status & SMBHSTSTS_FAILED))
281 dev_err(&priv->pci_dev->dev,
282 "Failed terminating the transaction\n");
283 outb_p(STATUS_FLAGS, SMBHSTSTS(priv));
284 return -ETIMEDOUT;
287 if (status & SMBHSTSTS_FAILED) {
288 result = -EIO;
289 dev_err(&priv->pci_dev->dev, "Transaction failed\n");
291 if (status & SMBHSTSTS_DEV_ERR) {
292 result = -ENXIO;
293 dev_dbg(&priv->pci_dev->dev, "No response\n");
295 if (status & SMBHSTSTS_BUS_ERR) {
296 result = -EAGAIN;
297 dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n");
300 /* Clear status flags except BYTE_DONE, to be cleared by caller */
301 outb_p(status, SMBHSTSTS(priv));
303 return result;
306 /* Wait for BUSY being cleared and either INTR or an error flag being set */
307 static int i801_wait_intr(struct i801_priv *priv)
309 int timeout = 0;
310 int status;
312 /* We will always wait for a fraction of a second! */
313 do {
314 usleep_range(250, 500);
315 status = inb_p(SMBHSTSTS(priv));
316 } while (((status & SMBHSTSTS_HOST_BUSY) ||
317 !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) &&
318 (timeout++ < MAX_RETRIES));
320 if (timeout > MAX_RETRIES) {
321 dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n");
322 return -ETIMEDOUT;
324 return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR);
327 /* Wait for either BYTE_DONE or an error flag being set */
328 static int i801_wait_byte_done(struct i801_priv *priv)
330 int timeout = 0;
331 int status;
333 /* We will always wait for a fraction of a second! */
334 do {
335 usleep_range(250, 500);
336 status = inb_p(SMBHSTSTS(priv));
337 } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) &&
338 (timeout++ < MAX_RETRIES));
340 if (timeout > MAX_RETRIES) {
341 dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n");
342 return -ETIMEDOUT;
344 return status & STATUS_ERROR_FLAGS;
347 static int i801_transaction(struct i801_priv *priv, int xact)
349 int status;
350 int result;
352 result = i801_check_pre(priv);
353 if (result < 0)
354 return result;
356 if (priv->features & FEATURE_IRQ) {
357 outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START,
358 SMBHSTCNT(priv));
359 wait_event(priv->waitq, (status = priv->status));
360 priv->status = 0;
361 return i801_check_post(priv, status);
364 /* the current contents of SMBHSTCNT can be overwritten, since PEC,
365 * SMBSCMD are passed in xact */
366 outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv));
368 status = i801_wait_intr(priv);
369 return i801_check_post(priv, status);
372 static int i801_block_transaction_by_block(struct i801_priv *priv,
373 union i2c_smbus_data *data,
374 char read_write, int hwpec)
376 int i, len;
377 int status;
379 inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */
381 /* Use 32-byte buffer to process this transaction */
382 if (read_write == I2C_SMBUS_WRITE) {
383 len = data->block[0];
384 outb_p(len, SMBHSTDAT0(priv));
385 for (i = 0; i < len; i++)
386 outb_p(data->block[i+1], SMBBLKDAT(priv));
389 status = i801_transaction(priv, I801_BLOCK_DATA |
390 (hwpec ? SMBHSTCNT_PEC_EN : 0));
391 if (status)
392 return status;
394 if (read_write == I2C_SMBUS_READ) {
395 len = inb_p(SMBHSTDAT0(priv));
396 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX)
397 return -EPROTO;
399 data->block[0] = len;
400 for (i = 0; i < len; i++)
401 data->block[i + 1] = inb_p(SMBBLKDAT(priv));
403 return 0;
406 static void i801_isr_byte_done(struct i801_priv *priv)
408 if (priv->is_read) {
409 /* For SMBus block reads, length is received with first byte */
410 if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) &&
411 (priv->count == 0)) {
412 priv->len = inb_p(SMBHSTDAT0(priv));
413 if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) {
414 dev_err(&priv->pci_dev->dev,
415 "Illegal SMBus block read size %d\n",
416 priv->len);
417 /* FIXME: Recover */
418 priv->len = I2C_SMBUS_BLOCK_MAX;
419 } else {
420 dev_dbg(&priv->pci_dev->dev,
421 "SMBus block read size is %d\n",
422 priv->len);
424 priv->data[-1] = priv->len;
427 /* Read next byte */
428 if (priv->count < priv->len)
429 priv->data[priv->count++] = inb(SMBBLKDAT(priv));
430 else
431 dev_dbg(&priv->pci_dev->dev,
432 "Discarding extra byte on block read\n");
434 /* Set LAST_BYTE for last byte of read transaction */
435 if (priv->count == priv->len - 1)
436 outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE,
437 SMBHSTCNT(priv));
438 } else if (priv->count < priv->len - 1) {
439 /* Write next byte, except for IRQ after last byte */
440 outb_p(priv->data[++priv->count], SMBBLKDAT(priv));
443 /* Clear BYTE_DONE to continue with next byte */
444 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
448 * There are two kinds of interrupts:
450 * 1) i801 signals transaction completion with one of these interrupts:
451 * INTR - Success
452 * DEV_ERR - Invalid command, NAK or communication timeout
453 * BUS_ERR - SMI# transaction collision
454 * FAILED - transaction was canceled due to a KILL request
455 * When any of these occur, update ->status and wake up the waitq.
456 * ->status must be cleared before kicking off the next transaction.
458 * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt
459 * occurs for each byte of a byte-by-byte to prepare the next byte.
461 static irqreturn_t i801_isr(int irq, void *dev_id)
463 struct i801_priv *priv = dev_id;
464 u16 pcists;
465 u8 status;
467 /* Confirm this is our interrupt */
468 pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists);
469 if (!(pcists & SMBPCISTS_INTS))
470 return IRQ_NONE;
472 status = inb_p(SMBHSTSTS(priv));
473 if (status != 0x42)
474 dev_dbg(&priv->pci_dev->dev, "irq: status = %02x\n", status);
476 if (status & SMBHSTSTS_BYTE_DONE)
477 i801_isr_byte_done(priv);
480 * Clear irq sources and report transaction result.
481 * ->status must be cleared before the next transaction is started.
483 status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
484 if (status) {
485 outb_p(status, SMBHSTSTS(priv));
486 priv->status |= status;
487 wake_up(&priv->waitq);
490 return IRQ_HANDLED;
494 * For "byte-by-byte" block transactions:
495 * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1
496 * I2C read uses cmd=I801_I2C_BLOCK_DATA
498 static int i801_block_transaction_byte_by_byte(struct i801_priv *priv,
499 union i2c_smbus_data *data,
500 char read_write, int command,
501 int hwpec)
503 int i, len;
504 int smbcmd;
505 int status;
506 int result;
508 result = i801_check_pre(priv);
509 if (result < 0)
510 return result;
512 len = data->block[0];
514 if (read_write == I2C_SMBUS_WRITE) {
515 outb_p(len, SMBHSTDAT0(priv));
516 outb_p(data->block[1], SMBBLKDAT(priv));
519 if (command == I2C_SMBUS_I2C_BLOCK_DATA &&
520 read_write == I2C_SMBUS_READ)
521 smbcmd = I801_I2C_BLOCK_DATA;
522 else
523 smbcmd = I801_BLOCK_DATA;
525 if (priv->features & FEATURE_IRQ) {
526 priv->is_read = (read_write == I2C_SMBUS_READ);
527 if (len == 1 && priv->is_read)
528 smbcmd |= SMBHSTCNT_LAST_BYTE;
529 priv->cmd = smbcmd | SMBHSTCNT_INTREN;
530 priv->len = len;
531 priv->count = 0;
532 priv->data = &data->block[1];
534 outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv));
535 wait_event(priv->waitq, (status = priv->status));
536 priv->status = 0;
537 return i801_check_post(priv, status);
540 for (i = 1; i <= len; i++) {
541 if (i == len && read_write == I2C_SMBUS_READ)
542 smbcmd |= SMBHSTCNT_LAST_BYTE;
543 outb_p(smbcmd, SMBHSTCNT(priv));
545 if (i == 1)
546 outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START,
547 SMBHSTCNT(priv));
549 status = i801_wait_byte_done(priv);
550 if (status)
551 goto exit;
553 if (i == 1 && read_write == I2C_SMBUS_READ
554 && command != I2C_SMBUS_I2C_BLOCK_DATA) {
555 len = inb_p(SMBHSTDAT0(priv));
556 if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) {
557 dev_err(&priv->pci_dev->dev,
558 "Illegal SMBus block read size %d\n",
559 len);
560 /* Recover */
561 while (inb_p(SMBHSTSTS(priv)) &
562 SMBHSTSTS_HOST_BUSY)
563 outb_p(SMBHSTSTS_BYTE_DONE,
564 SMBHSTSTS(priv));
565 outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv));
566 return -EPROTO;
568 data->block[0] = len;
571 /* Retrieve/store value in SMBBLKDAT */
572 if (read_write == I2C_SMBUS_READ)
573 data->block[i] = inb_p(SMBBLKDAT(priv));
574 if (read_write == I2C_SMBUS_WRITE && i+1 <= len)
575 outb_p(data->block[i+1], SMBBLKDAT(priv));
577 /* signals SMBBLKDAT ready */
578 outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv));
581 status = i801_wait_intr(priv);
582 exit:
583 return i801_check_post(priv, status);
586 static int i801_set_block_buffer_mode(struct i801_priv *priv)
588 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv));
589 if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0)
590 return -EIO;
591 return 0;
594 /* Block transaction function */
595 static int i801_block_transaction(struct i801_priv *priv,
596 union i2c_smbus_data *data, char read_write,
597 int command, int hwpec)
599 int result = 0;
600 unsigned char hostc;
602 if (command == I2C_SMBUS_I2C_BLOCK_DATA) {
603 if (read_write == I2C_SMBUS_WRITE) {
604 /* set I2C_EN bit in configuration register */
605 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc);
606 pci_write_config_byte(priv->pci_dev, SMBHSTCFG,
607 hostc | SMBHSTCFG_I2C_EN);
608 } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) {
609 dev_err(&priv->pci_dev->dev,
610 "I2C block read is unsupported!\n");
611 return -EOPNOTSUPP;
615 if (read_write == I2C_SMBUS_WRITE
616 || command == I2C_SMBUS_I2C_BLOCK_DATA) {
617 if (data->block[0] < 1)
618 data->block[0] = 1;
619 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
620 data->block[0] = I2C_SMBUS_BLOCK_MAX;
621 } else {
622 data->block[0] = 32; /* max for SMBus block reads */
625 /* Experience has shown that the block buffer can only be used for
626 SMBus (not I2C) block transactions, even though the datasheet
627 doesn't mention this limitation. */
628 if ((priv->features & FEATURE_BLOCK_BUFFER)
629 && command != I2C_SMBUS_I2C_BLOCK_DATA
630 && i801_set_block_buffer_mode(priv) == 0)
631 result = i801_block_transaction_by_block(priv, data,
632 read_write, hwpec);
633 else
634 result = i801_block_transaction_byte_by_byte(priv, data,
635 read_write,
636 command, hwpec);
638 if (command == I2C_SMBUS_I2C_BLOCK_DATA
639 && read_write == I2C_SMBUS_WRITE) {
640 /* restore saved configuration register value */
641 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc);
643 return result;
646 /* Return negative errno on error. */
647 static s32 i801_access(struct i2c_adapter *adap, u16 addr,
648 unsigned short flags, char read_write, u8 command,
649 int size, union i2c_smbus_data *data)
651 int hwpec;
652 int block = 0;
653 int ret, xact = 0;
654 struct i801_priv *priv = i2c_get_adapdata(adap);
656 hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC)
657 && size != I2C_SMBUS_QUICK
658 && size != I2C_SMBUS_I2C_BLOCK_DATA;
660 switch (size) {
661 case I2C_SMBUS_QUICK:
662 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
663 SMBHSTADD(priv));
664 xact = I801_QUICK;
665 break;
666 case I2C_SMBUS_BYTE:
667 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
668 SMBHSTADD(priv));
669 if (read_write == I2C_SMBUS_WRITE)
670 outb_p(command, SMBHSTCMD(priv));
671 xact = I801_BYTE;
672 break;
673 case I2C_SMBUS_BYTE_DATA:
674 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
675 SMBHSTADD(priv));
676 outb_p(command, SMBHSTCMD(priv));
677 if (read_write == I2C_SMBUS_WRITE)
678 outb_p(data->byte, SMBHSTDAT0(priv));
679 xact = I801_BYTE_DATA;
680 break;
681 case I2C_SMBUS_WORD_DATA:
682 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
683 SMBHSTADD(priv));
684 outb_p(command, SMBHSTCMD(priv));
685 if (read_write == I2C_SMBUS_WRITE) {
686 outb_p(data->word & 0xff, SMBHSTDAT0(priv));
687 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv));
689 xact = I801_WORD_DATA;
690 break;
691 case I2C_SMBUS_BLOCK_DATA:
692 outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
693 SMBHSTADD(priv));
694 outb_p(command, SMBHSTCMD(priv));
695 block = 1;
696 break;
697 case I2C_SMBUS_I2C_BLOCK_DATA:
698 /* NB: page 240 of ICH5 datasheet shows that the R/#W
699 * bit should be cleared here, even when reading */
700 outb_p((addr & 0x7f) << 1, SMBHSTADD(priv));
701 if (read_write == I2C_SMBUS_READ) {
702 /* NB: page 240 of ICH5 datasheet also shows
703 * that DATA1 is the cmd field when reading */
704 outb_p(command, SMBHSTDAT1(priv));
705 } else
706 outb_p(command, SMBHSTCMD(priv));
707 block = 1;
708 break;
709 default:
710 dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n",
711 size);
712 return -EOPNOTSUPP;
715 if (hwpec) /* enable/disable hardware PEC */
716 outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv));
717 else
718 outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC),
719 SMBAUXCTL(priv));
721 if (block)
722 ret = i801_block_transaction(priv, data, read_write, size,
723 hwpec);
724 else
725 ret = i801_transaction(priv, xact);
727 /* Some BIOSes don't like it when PEC is enabled at reboot or resume
728 time, so we forcibly disable it after every transaction. Turn off
729 E32B for the same reason. */
730 if (hwpec || block)
731 outb_p(inb_p(SMBAUXCTL(priv)) &
732 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
734 if (block)
735 return ret;
736 if (ret)
737 return ret;
738 if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK))
739 return 0;
741 switch (xact & 0x7f) {
742 case I801_BYTE: /* Result put in SMBHSTDAT0 */
743 case I801_BYTE_DATA:
744 data->byte = inb_p(SMBHSTDAT0(priv));
745 break;
746 case I801_WORD_DATA:
747 data->word = inb_p(SMBHSTDAT0(priv)) +
748 (inb_p(SMBHSTDAT1(priv)) << 8);
749 break;
751 return 0;
755 static u32 i801_func(struct i2c_adapter *adapter)
757 struct i801_priv *priv = i2c_get_adapdata(adapter);
759 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
760 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
761 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK |
762 ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) |
763 ((priv->features & FEATURE_I2C_BLOCK_READ) ?
764 I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0);
767 static const struct i2c_algorithm smbus_algorithm = {
768 .smbus_xfer = i801_access,
769 .functionality = i801_func,
772 static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
773 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
774 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
775 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
776 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) },
777 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) },
778 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) },
779 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) },
780 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) },
781 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) },
782 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) },
783 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) },
784 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) },
785 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) },
786 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) },
787 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) },
788 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) },
789 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) },
790 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) },
791 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) },
792 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) },
793 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) },
794 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
795 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
796 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
797 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
798 { 0, }
801 MODULE_DEVICE_TABLE(pci, i801_ids);
803 #if defined CONFIG_X86 && defined CONFIG_DMI
804 static unsigned char apanel_addr;
806 /* Scan the system ROM for the signature "FJKEYINF" */
807 static __init const void __iomem *bios_signature(const void __iomem *bios)
809 ssize_t offset;
810 const unsigned char signature[] = "FJKEYINF";
812 for (offset = 0; offset < 0x10000; offset += 0x10) {
813 if (check_signature(bios + offset, signature,
814 sizeof(signature)-1))
815 return bios + offset;
817 return NULL;
820 static void __init input_apanel_init(void)
822 void __iomem *bios;
823 const void __iomem *p;
825 bios = ioremap(0xF0000, 0x10000); /* Can't fail */
826 p = bios_signature(bios);
827 if (p) {
828 /* just use the first address */
829 apanel_addr = readb(p + 8 + 3) >> 1;
831 iounmap(bios);
834 struct dmi_onboard_device_info {
835 const char *name;
836 u8 type;
837 unsigned short i2c_addr;
838 const char *i2c_type;
841 static struct dmi_onboard_device_info __devinitdata dmi_devices[] = {
842 { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" },
843 { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" },
844 { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" },
847 static void __devinit dmi_check_onboard_device(u8 type, const char *name,
848 struct i2c_adapter *adap)
850 int i;
851 struct i2c_board_info info;
853 for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) {
854 /* & ~0x80, ignore enabled/disabled bit */
855 if ((type & ~0x80) != dmi_devices[i].type)
856 continue;
857 if (strcasecmp(name, dmi_devices[i].name))
858 continue;
860 memset(&info, 0, sizeof(struct i2c_board_info));
861 info.addr = dmi_devices[i].i2c_addr;
862 strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE);
863 i2c_new_device(adap, &info);
864 break;
868 /* We use our own function to check for onboard devices instead of
869 dmi_find_device() as some buggy BIOS's have the devices we are interested
870 in marked as disabled */
871 static void __devinit dmi_check_onboard_devices(const struct dmi_header *dm,
872 void *adap)
874 int i, count;
876 if (dm->type != 10)
877 return;
879 count = (dm->length - sizeof(struct dmi_header)) / 2;
880 for (i = 0; i < count; i++) {
881 const u8 *d = (char *)(dm + 1) + (i * 2);
882 const char *name = ((char *) dm) + dm->length;
883 u8 type = d[0];
884 u8 s = d[1];
886 if (!s)
887 continue;
888 s--;
889 while (s > 0 && name[0]) {
890 name += strlen(name) + 1;
891 s--;
893 if (name[0] == 0) /* Bogus string reference */
894 continue;
896 dmi_check_onboard_device(type, name, adap);
900 /* Register optional slaves */
901 static void __devinit i801_probe_optional_slaves(struct i801_priv *priv)
903 /* Only register slaves on main SMBus channel */
904 if (priv->features & FEATURE_IDF)
905 return;
907 if (apanel_addr) {
908 struct i2c_board_info info;
910 memset(&info, 0, sizeof(struct i2c_board_info));
911 info.addr = apanel_addr;
912 strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE);
913 i2c_new_device(&priv->adapter, &info);
916 if (dmi_name_in_vendors("FUJITSU"))
917 dmi_walk(dmi_check_onboard_devices, &priv->adapter);
919 #else
920 static void __init input_apanel_init(void) {}
921 static void __devinit i801_probe_optional_slaves(struct i801_priv *priv) {}
922 #endif /* CONFIG_X86 && CONFIG_DMI */
924 #if defined CONFIG_I2C_MUX || defined CONFIG_I2C_MUX_MODULE
925 static struct i801_mux_config i801_mux_config_asus_z8_d12 = {
926 .gpio_chip = "gpio_ich",
927 .values = { 0x02, 0x03 },
928 .n_values = 2,
929 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD },
930 .gpios = { 52, 53 },
931 .n_gpios = 2,
934 static struct i801_mux_config i801_mux_config_asus_z8_d18 = {
935 .gpio_chip = "gpio_ich",
936 .values = { 0x02, 0x03, 0x01 },
937 .n_values = 3,
938 .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD },
939 .gpios = { 52, 53 },
940 .n_gpios = 2,
943 static struct dmi_system_id __devinitdata mux_dmi_table[] = {
945 .matches = {
946 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
947 DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"),
949 .driver_data = &i801_mux_config_asus_z8_d12,
952 .matches = {
953 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
954 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"),
956 .driver_data = &i801_mux_config_asus_z8_d12,
959 .matches = {
960 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
961 DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"),
963 .driver_data = &i801_mux_config_asus_z8_d12,
966 .matches = {
967 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
968 DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"),
970 .driver_data = &i801_mux_config_asus_z8_d12,
973 .matches = {
974 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
975 DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"),
977 .driver_data = &i801_mux_config_asus_z8_d12,
980 .matches = {
981 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
982 DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"),
984 .driver_data = &i801_mux_config_asus_z8_d12,
987 .matches = {
988 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
989 DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"),
991 .driver_data = &i801_mux_config_asus_z8_d18,
994 .matches = {
995 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
996 DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"),
998 .driver_data = &i801_mux_config_asus_z8_d18,
1001 .matches = {
1002 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1003 DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"),
1005 .driver_data = &i801_mux_config_asus_z8_d12,
1010 /* Setup multiplexing if needed */
1011 static int __devinit i801_add_mux(struct i801_priv *priv)
1013 struct device *dev = &priv->adapter.dev;
1014 const struct i801_mux_config *mux_config;
1015 struct i2c_mux_gpio_platform_data gpio_data;
1016 int err;
1018 if (!priv->mux_drvdata)
1019 return 0;
1020 mux_config = priv->mux_drvdata;
1022 /* Prepare the platform data */
1023 memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data));
1024 gpio_data.parent = priv->adapter.nr;
1025 gpio_data.values = mux_config->values;
1026 gpio_data.n_values = mux_config->n_values;
1027 gpio_data.classes = mux_config->classes;
1028 gpio_data.gpio_chip = mux_config->gpio_chip;
1029 gpio_data.gpios = mux_config->gpios;
1030 gpio_data.n_gpios = mux_config->n_gpios;
1031 gpio_data.idle = I2C_MUX_GPIO_NO_IDLE;
1033 /* Register the mux device */
1034 priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
1035 PLATFORM_DEVID_AUTO, &gpio_data,
1036 sizeof(struct i2c_mux_gpio_platform_data));
1037 if (IS_ERR(priv->mux_pdev)) {
1038 err = PTR_ERR(priv->mux_pdev);
1039 priv->mux_pdev = NULL;
1040 dev_err(dev, "Failed to register i2c-mux-gpio device\n");
1041 return err;
1044 return 0;
1047 static void __devexit i801_del_mux(struct i801_priv *priv)
1049 if (priv->mux_pdev)
1050 platform_device_unregister(priv->mux_pdev);
1053 static unsigned int __devinit i801_get_adapter_class(struct i801_priv *priv)
1055 const struct dmi_system_id *id;
1056 const struct i801_mux_config *mux_config;
1057 unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
1058 int i;
1060 id = dmi_first_match(mux_dmi_table);
1061 if (id) {
1062 /* Remove from branch classes from trunk */
1063 mux_config = id->driver_data;
1064 for (i = 0; i < mux_config->n_values; i++)
1065 class &= ~mux_config->classes[i];
1067 /* Remember for later */
1068 priv->mux_drvdata = mux_config;
1071 return class;
1073 #else
1074 static inline int i801_add_mux(struct i801_priv *priv) { return 0; }
1075 static inline void i801_del_mux(struct i801_priv *priv) { }
1077 static inline unsigned int i801_get_adapter_class(struct i801_priv *priv)
1079 return I2C_CLASS_HWMON | I2C_CLASS_SPD;
1081 #endif
1083 static int __devinit i801_probe(struct pci_dev *dev,
1084 const struct pci_device_id *id)
1086 unsigned char temp;
1087 int err, i;
1088 struct i801_priv *priv;
1090 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1091 if (!priv)
1092 return -ENOMEM;
1094 i2c_set_adapdata(&priv->adapter, priv);
1095 priv->adapter.owner = THIS_MODULE;
1096 priv->adapter.class = i801_get_adapter_class(priv);
1097 priv->adapter.algo = &smbus_algorithm;
1099 priv->pci_dev = dev;
1100 switch (dev->device) {
1101 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0:
1102 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1:
1103 case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2:
1104 priv->features |= FEATURE_IDF;
1105 /* fall through */
1106 default:
1107 priv->features |= FEATURE_I2C_BLOCK_READ;
1108 /* fall through */
1109 case PCI_DEVICE_ID_INTEL_82801DB_3:
1110 priv->features |= FEATURE_SMBUS_PEC;
1111 priv->features |= FEATURE_BLOCK_BUFFER;
1112 /* fall through */
1113 case PCI_DEVICE_ID_INTEL_82801CA_3:
1114 case PCI_DEVICE_ID_INTEL_82801BA_2:
1115 case PCI_DEVICE_ID_INTEL_82801AB_3:
1116 case PCI_DEVICE_ID_INTEL_82801AA_3:
1117 break;
1120 /* IRQ processing tested on CougarPoint PCH, ICH5, ICH7-M and ICH10 */
1121 if (dev->device == PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS ||
1122 dev->device == PCI_DEVICE_ID_INTEL_82801EB_3 ||
1123 dev->device == PCI_DEVICE_ID_INTEL_ICH7_17 ||
1124 dev->device == PCI_DEVICE_ID_INTEL_ICH8_5 ||
1125 dev->device == PCI_DEVICE_ID_INTEL_ICH9_6 ||
1126 dev->device == PCI_DEVICE_ID_INTEL_ICH10_4 ||
1127 dev->device == PCI_DEVICE_ID_INTEL_ICH10_5)
1128 priv->features |= FEATURE_IRQ;
1130 /* Disable features on user request */
1131 for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) {
1132 if (priv->features & disable_features & (1 << i))
1133 dev_notice(&dev->dev, "%s disabled by user\n",
1134 i801_feature_names[i]);
1136 priv->features &= ~disable_features;
1138 err = pci_enable_device(dev);
1139 if (err) {
1140 dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n",
1141 err);
1142 goto exit;
1145 /* Determine the address of the SMBus area */
1146 priv->smba = pci_resource_start(dev, SMBBAR);
1147 if (!priv->smba) {
1148 dev_err(&dev->dev, "SMBus base address uninitialized, "
1149 "upgrade BIOS\n");
1150 err = -ENODEV;
1151 goto exit;
1154 err = acpi_check_resource_conflict(&dev->resource[SMBBAR]);
1155 if (err) {
1156 err = -ENODEV;
1157 goto exit;
1160 err = pci_request_region(dev, SMBBAR, i801_driver.name);
1161 if (err) {
1162 dev_err(&dev->dev, "Failed to request SMBus region "
1163 "0x%lx-0x%Lx\n", priv->smba,
1164 (unsigned long long)pci_resource_end(dev, SMBBAR));
1165 goto exit;
1168 pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp);
1169 priv->original_hstcfg = temp;
1170 temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */
1171 if (!(temp & SMBHSTCFG_HST_EN)) {
1172 dev_info(&dev->dev, "Enabling SMBus device\n");
1173 temp |= SMBHSTCFG_HST_EN;
1175 pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp);
1177 if (temp & SMBHSTCFG_SMB_SMI_EN) {
1178 dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n");
1179 /* Disable SMBus interrupt feature if SMBus using SMI# */
1180 priv->features &= ~FEATURE_IRQ;
1183 /* Clear special mode bits */
1184 if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER))
1185 outb_p(inb_p(SMBAUXCTL(priv)) &
1186 ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv));
1188 if (priv->features & FEATURE_IRQ) {
1189 init_waitqueue_head(&priv->waitq);
1191 err = request_irq(dev->irq, i801_isr, IRQF_SHARED,
1192 i801_driver.name, priv);
1193 if (err) {
1194 dev_err(&dev->dev, "Failed to allocate irq %d: %d\n",
1195 dev->irq, err);
1196 goto exit_release;
1198 dev_info(&dev->dev, "SMBus using PCI Interrupt\n");
1201 /* set up the sysfs linkage to our parent device */
1202 priv->adapter.dev.parent = &dev->dev;
1204 /* Retry up to 3 times on lost arbitration */
1205 priv->adapter.retries = 3;
1207 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
1208 "SMBus I801 adapter at %04lx", priv->smba);
1209 err = i2c_add_adapter(&priv->adapter);
1210 if (err) {
1211 dev_err(&dev->dev, "Failed to add SMBus adapter\n");
1212 goto exit_free_irq;
1215 i801_probe_optional_slaves(priv);
1216 /* We ignore errors - multiplexing is optional */
1217 i801_add_mux(priv);
1219 pci_set_drvdata(dev, priv);
1221 return 0;
1223 exit_free_irq:
1224 if (priv->features & FEATURE_IRQ)
1225 free_irq(dev->irq, priv);
1226 exit_release:
1227 pci_release_region(dev, SMBBAR);
1228 exit:
1229 kfree(priv);
1230 return err;
1233 static void __devexit i801_remove(struct pci_dev *dev)
1235 struct i801_priv *priv = pci_get_drvdata(dev);
1237 i801_del_mux(priv);
1238 i2c_del_adapter(&priv->adapter);
1239 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
1241 if (priv->features & FEATURE_IRQ)
1242 free_irq(dev->irq, priv);
1243 pci_release_region(dev, SMBBAR);
1245 pci_set_drvdata(dev, NULL);
1246 kfree(priv);
1248 * do not call pci_disable_device(dev) since it can cause hard hangs on
1249 * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010)
1253 #ifdef CONFIG_PM
1254 static int i801_suspend(struct pci_dev *dev, pm_message_t mesg)
1256 struct i801_priv *priv = pci_get_drvdata(dev);
1258 pci_save_state(dev);
1259 pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg);
1260 pci_set_power_state(dev, pci_choose_state(dev, mesg));
1261 return 0;
1264 static int i801_resume(struct pci_dev *dev)
1266 pci_set_power_state(dev, PCI_D0);
1267 pci_restore_state(dev);
1268 return pci_enable_device(dev);
1270 #else
1271 #define i801_suspend NULL
1272 #define i801_resume NULL
1273 #endif
1275 static struct pci_driver i801_driver = {
1276 .name = "i801_smbus",
1277 .id_table = i801_ids,
1278 .probe = i801_probe,
1279 .remove = __devexit_p(i801_remove),
1280 .suspend = i801_suspend,
1281 .resume = i801_resume,
1284 static int __init i2c_i801_init(void)
1286 if (dmi_name_in_vendors("FUJITSU"))
1287 input_apanel_init();
1288 return pci_register_driver(&i801_driver);
1291 static void __exit i2c_i801_exit(void)
1293 pci_unregister_driver(&i801_driver);
1296 MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, "
1297 "Jean Delvare <khali@linux-fr.org>");
1298 MODULE_DESCRIPTION("I801 SMBus driver");
1299 MODULE_LICENSE("GPL");
1301 module_init(i2c_i801_init);
1302 module_exit(i2c_i801_exit);