blob: 7957ce51589156c4089b8f6a157216fdf1631d44 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 i2c-viapro.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
Jean Delvare5f49ef82005-09-22 21:50:47 +02004 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>,
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 Philip Edelbrock <phil@netroedge.com>, Kyösti Mälkki <kmalkki@cc.hut.fi>,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 Mark D. Studebaker <mdsxyz123@yahoo.com>
Jean Delvare0d227a72008-01-27 18:14:51 +01007 Copyright (C) 2005 - 2008 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24/*
Jean Delvareaaf7f142005-09-22 22:09:07 +020025 Supports the following VIA south bridges:
26
27 Chip name PCI ID REV I2C block
28 VT82C596A 0x3050 no
29 VT82C596B 0x3051 no
30 VT82C686A 0x3057 0x30 no
31 VT82C686B 0x3057 0x40 yes
32 VT8231 0x8235 no?
33 VT8233 0x3074 yes
34 VT8233A 0x3147 yes?
35 VT8235 0x3177 yes
36 VT8237R 0x3227 yes
Rudolf Marekc2433532006-09-03 22:35:21 +020037 VT8237A 0x3337 yes
Jean Delvare0d227a72008-01-27 18:14:51 +010038 VT8237S 0x3372 yes
Rudolf Marekc2433532006-09-03 22:35:21 +020039 VT8251 0x3287 yes
Jean Delvareab6a6ed2007-02-13 22:09:02 +010040 CX700 0x8324 yes
Jean Delvareaaf7f142005-09-22 22:09:07 +020041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 Note: we assume there can only be one device, with one SMBus interface.
43*/
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/module.h>
46#include <linux/delay.h>
47#include <linux/pci.h>
48#include <linux/kernel.h>
49#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/ioport.h>
51#include <linux/i2c.h>
52#include <linux/init.h>
53#include <asm/io.h>
54
55static struct pci_dev *vt596_pdev;
56
Jean Delvare5f49ef82005-09-22 21:50:47 +020057#define SMBBA1 0x90
58#define SMBBA2 0x80
59#define SMBBA3 0xD0
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* SMBus address offsets */
62static unsigned short vt596_smba;
63#define SMBHSTSTS (vt596_smba + 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define SMBHSTCNT (vt596_smba + 2)
65#define SMBHSTCMD (vt596_smba + 3)
66#define SMBHSTADD (vt596_smba + 4)
67#define SMBHSTDAT0 (vt596_smba + 5)
68#define SMBHSTDAT1 (vt596_smba + 6)
69#define SMBBLKDAT (vt596_smba + 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/* PCI Address Constants */
72
73/* SMBus data in configuration space can be found in two places,
Jean Delvare5f49ef82005-09-22 21:50:47 +020074 We try to select the better one */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Jean Delvarec2f559d2005-09-22 22:01:07 +020076static unsigned short SMBHSTCFG = 0xD2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* Other settings */
79#define MAX_TIMEOUT 500
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* VT82C596 constants */
Jean Delvare5f49ef82005-09-22 21:50:47 +020082#define VT596_QUICK 0x00
83#define VT596_BYTE 0x04
84#define VT596_BYTE_DATA 0x08
85#define VT596_WORD_DATA 0x0C
86#define VT596_BLOCK_DATA 0x14
Jean Delvaref1183012005-09-22 21:58:41 +020087#define VT596_I2C_BLOCK_DATA 0x34
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89
90/* If force is set to anything different from 0, we forcibly enable the
91 VT596. DANGEROUS! */
92static int force;
93module_param(force, bool, 0);
94MODULE_PARM_DESC(force, "Forcibly enable the SMBus. DANGEROUS!");
95
96/* If force_addr is set to anything different from 0, we forcibly enable
97 the VT596 at the given address. VERY DANGEROUS! */
98static u16 force_addr;
99module_param(force_addr, ushort, 0);
100MODULE_PARM_DESC(force_addr,
101 "Forcibly enable the SMBus at the given address. "
102 "EXTREMELY DANGEROUS!");
103
104
Jean Delvarec2f559d2005-09-22 22:01:07 +0200105static struct pci_driver vt596_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static struct i2c_adapter vt596_adapter;
107
Jean Delvaref1183012005-09-22 21:58:41 +0200108#define FEATURE_I2CBLOCK (1<<0)
109static unsigned int vt596_features;
110
Jean Delvareed5453e2005-09-22 22:23:32 +0200111#ifdef DEBUG
112static void vt596_dump_regs(const char *msg, u8 size)
113{
114 dev_dbg(&vt596_adapter.dev, "%s: STS=%02x CNT=%02x CMD=%02x ADD=%02x "
115 "DAT=%02x,%02x\n", msg, inb_p(SMBHSTSTS), inb_p(SMBHSTCNT),
116 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
117 inb_p(SMBHSTDAT1));
118
119 if (size == VT596_BLOCK_DATA
120 || size == VT596_I2C_BLOCK_DATA) {
121 int i;
122
123 dev_dbg(&vt596_adapter.dev, "BLK=");
124 for (i = 0; i < I2C_SMBUS_BLOCK_MAX / 2; i++)
125 printk("%02x,", inb_p(SMBBLKDAT));
126 printk("\n");
127 dev_dbg(&vt596_adapter.dev, " ");
128 for (; i < I2C_SMBUS_BLOCK_MAX - 1; i++)
129 printk("%02x,", inb_p(SMBBLKDAT));
130 printk("%02x\n", inb_p(SMBBLKDAT));
131 }
132}
Greg KHca68f112005-09-22 22:23:32 +0200133#else
134static inline void vt596_dump_regs(const char *msg, u8 size) { }
Jean Delvareed5453e2005-09-22 22:23:32 +0200135#endif
136
Jean Delvarec2f559d2005-09-22 22:01:07 +0200137/* Return -1 on error, 0 on success */
Jean Delvare50c1cc32005-09-22 22:15:53 +0200138static int vt596_transaction(u8 size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 int temp;
141 int result = 0;
142 int timeout = 0;
143
Jean Delvareed5453e2005-09-22 22:23:32 +0200144 vt596_dump_regs("Transaction (pre)", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* Make sure the SMBus host is ready to start transmitting */
147 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) {
148 dev_dbg(&vt596_adapter.dev, "SMBus busy (0x%02x). "
Jean Delvare87501972005-10-31 18:51:21 +0100149 "Resetting...\n", temp);
Jean Delvare5f49ef82005-09-22 21:50:47 +0200150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 outb_p(temp, SMBHSTSTS);
152 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) {
Jean Delvare87501972005-10-31 18:51:21 +0100153 dev_err(&vt596_adapter.dev, "SMBus reset failed! "
154 "(0x%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200155 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157 }
158
Jean Delvarec2f559d2005-09-22 22:01:07 +0200159 /* Start the transaction by setting bit 6 */
Jean Delvare87501972005-10-31 18:51:21 +0100160 outb_p(0x40 | size, SMBHSTCNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Jean Delvarec2f559d2005-09-22 22:01:07 +0200162 /* We will always wait for a fraction of a second */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 do {
164 msleep(1);
165 temp = inb_p(SMBHSTSTS);
166 } while ((temp & 0x01) && (timeout++ < MAX_TIMEOUT));
167
168 /* If the SMBus is still busy, we give up */
169 if (timeout >= MAX_TIMEOUT) {
David Brownell97140342008-07-14 22:38:25 +0200170 result = -ETIMEDOUT;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200171 dev_err(&vt596_adapter.dev, "SMBus timeout!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
174 if (temp & 0x10) {
David Brownell97140342008-07-14 22:38:25 +0200175 result = -EIO;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200176 dev_err(&vt596_adapter.dev, "Transaction failed (0x%02x)\n",
Jean Delvare87501972005-10-31 18:51:21 +0100177 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
180 if (temp & 0x08) {
David Brownell97140342008-07-14 22:38:25 +0200181 result = -EIO;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200182 dev_err(&vt596_adapter.dev, "SMBus collision!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
185 if (temp & 0x04) {
Jean Delvare87501972005-10-31 18:51:21 +0100186 int read = inb_p(SMBHSTADD) & 0x01;
David Brownell97140342008-07-14 22:38:25 +0200187 result = -ENXIO;
Jean Delvare87501972005-10-31 18:51:21 +0100188 /* The quick and receive byte commands are used to probe
189 for chips, so errors are expected, and we don't want
190 to frighten the user. */
191 if (!((size == VT596_QUICK && !read) ||
192 (size == VT596_BYTE && read)))
Jean Delvarec2f559d2005-09-22 22:01:07 +0200193 dev_err(&vt596_adapter.dev, "Transaction error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
Jean Delvarec2f559d2005-09-22 22:01:07 +0200196 /* Resetting status register */
197 if (temp & 0x1F)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 outb_p(temp, SMBHSTSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Jean Delvareed5453e2005-09-22 22:23:32 +0200200 vt596_dump_regs("Transaction (post)", size);
Jean Delvare5f49ef82005-09-22 21:50:47 +0200201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return result;
203}
204
David Brownell97140342008-07-14 22:38:25 +0200205/* Return negative errno on error, 0 on success */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static s32 vt596_access(struct i2c_adapter *adap, u16 addr,
Jean Delvare5f49ef82005-09-22 21:50:47 +0200207 unsigned short flags, char read_write, u8 command,
208 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Jean Delvarec2f559d2005-09-22 22:01:07 +0200210 int i;
David Brownell97140342008-07-14 22:38:25 +0200211 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 case I2C_SMBUS_QUICK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 size = VT596_QUICK;
216 break;
217 case I2C_SMBUS_BYTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (read_write == I2C_SMBUS_WRITE)
219 outb_p(command, SMBHSTCMD);
220 size = VT596_BYTE;
221 break;
222 case I2C_SMBUS_BYTE_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 outb_p(command, SMBHSTCMD);
224 if (read_write == I2C_SMBUS_WRITE)
225 outb_p(data->byte, SMBHSTDAT0);
226 size = VT596_BYTE_DATA;
227 break;
228 case I2C_SMBUS_WORD_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 outb_p(command, SMBHSTCMD);
230 if (read_write == I2C_SMBUS_WRITE) {
231 outb_p(data->word & 0xff, SMBHSTDAT0);
232 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
233 }
234 size = VT596_WORD_DATA;
235 break;
Jean Delvaref1183012005-09-22 21:58:41 +0200236 case I2C_SMBUS_I2C_BLOCK_DATA:
237 if (!(vt596_features & FEATURE_I2CBLOCK))
Jean Delvarec2f559d2005-09-22 22:01:07 +0200238 goto exit_unsupported;
Jean Delvaref1183012005-09-22 21:58:41 +0200239 if (read_write == I2C_SMBUS_READ)
Jean Delvare4b2643d2007-07-12 14:12:29 +0200240 outb_p(data->block[0], SMBHSTDAT0);
Jean Delvaref1183012005-09-22 21:58:41 +0200241 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 outb_p(command, SMBHSTCMD);
244 if (read_write == I2C_SMBUS_WRITE) {
Jean Delvarec2f559d2005-09-22 22:01:07 +0200245 u8 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (len > I2C_SMBUS_BLOCK_MAX)
247 len = I2C_SMBUS_BLOCK_MAX;
248 outb_p(len, SMBHSTDAT0);
Jean Delvarec2f559d2005-09-22 22:01:07 +0200249 inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 for (i = 1; i <= len; i++)
251 outb_p(data->block[i], SMBBLKDAT);
252 }
Jean Delvaref1183012005-09-22 21:58:41 +0200253 size = (size == I2C_SMBUS_I2C_BLOCK_DATA) ?
254 VT596_I2C_BLOCK_DATA : VT596_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200256 default:
257 goto exit_unsupported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259
Jean Delvarec2f559d2005-09-22 22:01:07 +0200260 outb_p(((addr & 0x7f) << 1) | read_write, SMBHSTADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
David Brownell97140342008-07-14 22:38:25 +0200262 status = vt596_transaction(size);
263 if (status)
264 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if ((read_write == I2C_SMBUS_WRITE) || (size == VT596_QUICK))
267 return 0;
268
269 switch (size) {
270 case VT596_BYTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 case VT596_BYTE_DATA:
272 data->byte = inb_p(SMBHSTDAT0);
273 break;
274 case VT596_WORD_DATA:
275 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
276 break;
Jean Delvaref1183012005-09-22 21:58:41 +0200277 case VT596_I2C_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 case VT596_BLOCK_DATA:
279 data->block[0] = inb_p(SMBHSTDAT0);
280 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
281 data->block[0] = I2C_SMBUS_BLOCK_MAX;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200282 inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 for (i = 1; i <= data->block[0]; i++)
284 data->block[i] = inb_p(SMBBLKDAT);
285 break;
286 }
287 return 0;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200288
289exit_unsupported:
Jean Delvareac7fc4f2008-07-14 22:38:25 +0200290 dev_warn(&vt596_adapter.dev, "Unsupported transaction %d\n",
Jean Delvarec2f559d2005-09-22 22:01:07 +0200291 size);
David Brownell97140342008-07-14 22:38:25 +0200292 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295static u32 vt596_func(struct i2c_adapter *adapter)
296{
Jean Delvaref1183012005-09-22 21:58:41 +0200297 u32 func = I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
299 I2C_FUNC_SMBUS_BLOCK_DATA;
Jean Delvaref1183012005-09-22 21:58:41 +0200300
301 if (vt596_features & FEATURE_I2CBLOCK)
302 func |= I2C_FUNC_SMBUS_I2C_BLOCK;
303 return func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Jean Delvare8f9082c2006-09-03 22:39:46 +0200306static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 .smbus_xfer = vt596_access,
308 .functionality = vt596_func,
309};
310
311static struct i2c_adapter vt596_adapter = {
312 .owner = THIS_MODULE,
Stephen Hemminger9ace5552007-02-13 22:09:01 +0100313 .id = I2C_HW_SMBUS_VIA2,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200314 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 .algo = &smbus_algorithm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
318static int __devinit vt596_probe(struct pci_dev *pdev,
319 const struct pci_device_id *id)
320{
321 unsigned char temp;
322 int error = -ENODEV;
Jean Delvare5f49ef82005-09-22 21:50:47 +0200323
Jean Delvare0f07a242008-01-27 18:14:51 +0100324 /* driver_data might come from user-space, so check it */
325 if (id->driver_data & 1 || id->driver_data > 0xff)
326 return -EINVAL;
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /* Determine the address of the SMBus areas */
329 if (force_addr) {
330 vt596_smba = force_addr & 0xfff0;
331 force = 0;
332 goto found;
333 }
334
335 if ((pci_read_config_word(pdev, id->driver_data, &vt596_smba)) ||
Jean Delvarec2f559d2005-09-22 22:01:07 +0200336 !(vt596_smba & 0x0001)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* try 2nd address and config reg. for 596 */
338 if (id->device == PCI_DEVICE_ID_VIA_82C596_3 &&
339 !pci_read_config_word(pdev, SMBBA2, &vt596_smba) &&
Jean Delvarec2f559d2005-09-22 22:01:07 +0200340 (vt596_smba & 0x0001)) {
341 SMBHSTCFG = 0x84;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 } else {
343 /* no matches at all */
344 dev_err(&pdev->dev, "Cannot configure "
345 "SMBus I/O Base address\n");
346 return -ENODEV;
347 }
348 }
349
350 vt596_smba &= 0xfff0;
351 if (vt596_smba == 0) {
352 dev_err(&pdev->dev, "SMBus base address "
353 "uninitialized - upgrade BIOS or use "
354 "force_addr=0xaddr\n");
355 return -ENODEV;
356 }
357
Jean Delvare5f49ef82005-09-22 21:50:47 +0200358found:
Jean Delvarec2f559d2005-09-22 22:01:07 +0200359 if (!request_region(vt596_smba, 8, vt596_driver.name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 dev_err(&pdev->dev, "SMBus region 0x%x already in use!\n",
Jean Delvare5f49ef82005-09-22 21:50:47 +0200361 vt596_smba);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return -ENODEV;
363 }
364
365 pci_read_config_byte(pdev, SMBHSTCFG, &temp);
366 /* If force_addr is set, we program the new address here. Just to make
367 sure, we disable the VT596 first. */
368 if (force_addr) {
369 pci_write_config_byte(pdev, SMBHSTCFG, temp & 0xfe);
370 pci_write_config_word(pdev, id->driver_data, vt596_smba);
371 pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01);
372 dev_warn(&pdev->dev, "WARNING: SMBus interface set to new "
Jean Delvare5f49ef82005-09-22 21:50:47 +0200373 "address 0x%04x!\n", vt596_smba);
Jean Delvarec2f559d2005-09-22 22:01:07 +0200374 } else if (!(temp & 0x01)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (force) {
Jean Delvare5f49ef82005-09-22 21:50:47 +0200376 /* NOTE: This assumes I/O space and other allocations
377 * WERE done by the Bios! Don't complain if your
378 * hardware does weird things after enabling this.
379 * :') Check for Bios updates before resorting to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * this.
381 */
Jean Delvarec2f559d2005-09-22 22:01:07 +0200382 pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 dev_info(&pdev->dev, "Enabling SMBus device\n");
384 } else {
385 dev_err(&pdev->dev, "SMBUS: Error: Host SMBus "
386 "controller not enabled! - upgrade BIOS or "
387 "use force=1\n");
388 goto release_region;
389 }
390 }
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 dev_dbg(&pdev->dev, "VT596_smba = 0x%X\n", vt596_smba);
393
Jean Delvaref1183012005-09-22 21:58:41 +0200394 switch (pdev->device) {
Jean Delvareab6a6ed2007-02-13 22:09:02 +0100395 case PCI_DEVICE_ID_VIA_CX700:
Rudolf Marekc2433532006-09-03 22:35:21 +0200396 case PCI_DEVICE_ID_VIA_8251:
Jean Delvaref1183012005-09-22 21:58:41 +0200397 case PCI_DEVICE_ID_VIA_8237:
Rudolf Marekc2433532006-09-03 22:35:21 +0200398 case PCI_DEVICE_ID_VIA_8237A:
Jean Delvare0d227a72008-01-27 18:14:51 +0100399 case PCI_DEVICE_ID_VIA_8237S:
Jean Delvaref1183012005-09-22 21:58:41 +0200400 case PCI_DEVICE_ID_VIA_8235:
401 case PCI_DEVICE_ID_VIA_8233A:
402 case PCI_DEVICE_ID_VIA_8233_0:
403 vt596_features |= FEATURE_I2CBLOCK;
404 break;
405 case PCI_DEVICE_ID_VIA_82C686_4:
406 /* The VT82C686B (rev 0x40) does support I2C block
407 transactions, but the VT82C686A (rev 0x30) doesn't */
Auke Kok44c10132007-06-08 15:46:36 -0700408 if (pdev->revision >= 0x40)
Jean Delvaref1183012005-09-22 21:58:41 +0200409 vt596_features |= FEATURE_I2CBLOCK;
410 break;
411 }
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 vt596_adapter.dev.parent = &pdev->dev;
David Brownell2096b952007-05-01 23:26:28 +0200414 snprintf(vt596_adapter.name, sizeof(vt596_adapter.name),
Jean Delvare5f49ef82005-09-22 21:50:47 +0200415 "SMBus Via Pro adapter at %04x", vt596_smba);
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 vt596_pdev = pci_dev_get(pdev);
418 if (i2c_add_adapter(&vt596_adapter)) {
419 pci_dev_put(vt596_pdev);
420 vt596_pdev = NULL;
421 }
422
423 /* Always return failure here. This is to allow other drivers to bind
424 * to this pci device. We don't really want to have control over the
425 * pci device, we only wanted to read as few register values from it.
426 */
427 return -ENODEV;
428
Jean Delvare5f49ef82005-09-22 21:50:47 +0200429release_region:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 release_region(vt596_smba, 8);
431 return error;
432}
433
434static struct pci_device_id vt596_ids[] = {
435 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596_3),
436 .driver_data = SMBBA1 },
437 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596B_3),
438 .driver_data = SMBBA1 },
439 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_4),
440 .driver_data = SMBBA1 },
441 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233_0),
442 .driver_data = SMBBA3 },
443 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233A),
444 .driver_data = SMBBA3 },
445 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235),
446 .driver_data = SMBBA3 },
447 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237),
448 .driver_data = SMBBA3 },
Rudolf Marekc2433532006-09-03 22:35:21 +0200449 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237A),
450 .driver_data = SMBBA3 },
Jean Delvare0d227a72008-01-27 18:14:51 +0100451 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237S),
452 .driver_data = SMBBA3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8231_4),
454 .driver_data = SMBBA1 },
Rudolf Marekc2433532006-09-03 22:35:21 +0200455 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8251),
456 .driver_data = SMBBA3 },
Jean Delvareab6a6ed2007-02-13 22:09:02 +0100457 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_CX700),
458 .driver_data = SMBBA3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 { 0, }
460};
461
Jean Delvare5f49ef82005-09-22 21:50:47 +0200462MODULE_DEVICE_TABLE(pci, vt596_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464static struct pci_driver vt596_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 .name = "vt596_smbus",
466 .id_table = vt596_ids,
467 .probe = vt596_probe,
Jean Delvare0f07a242008-01-27 18:14:51 +0100468 .dynids.use_driver_data = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469};
470
471static int __init i2c_vt596_init(void)
472{
473 return pci_register_driver(&vt596_driver);
474}
475
476
477static void __exit i2c_vt596_exit(void)
478{
479 pci_unregister_driver(&vt596_driver);
480 if (vt596_pdev != NULL) {
481 i2c_del_adapter(&vt596_adapter);
482 release_region(vt596_smba, 8);
483 pci_dev_put(vt596_pdev);
484 vt596_pdev = NULL;
485 }
486}
487
Jean Delvare87501972005-10-31 18:51:21 +0100488MODULE_AUTHOR("Kyosti Malkki <kmalkki@cc.hut.fi>, "
489 "Mark D. Studebaker <mdsxyz123@yahoo.com> and "
490 "Jean Delvare <khali@linux-fr.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491MODULE_DESCRIPTION("vt82c596 SMBus driver");
492MODULE_LICENSE("GPL");
493
494module_init(i2c_vt596_init);
495module_exit(i2c_vt596_exit);