blob: 0ee2646f3b006bb7710cf9474ce2ccae366e4ef3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare5f49ef82005-09-22 21:50:47 +02002 Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>,
Jan Engelhardt96de0e22007-10-19 23:21:04 +02003 Philip Edelbrock <phil@netroedge.com>, Kyösti Mälkki <kmalkki@cc.hut.fi>,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 Mark D. Studebaker <mdsxyz123@yahoo.com>
Jean Delvare7c81c602014-01-29 20:40:08 +01005 Copyright (C) 2005 - 2008 Jean Delvare <jdelvare@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016*/
17
18/*
Jean Delvareaaf7f142005-09-22 22:09:07 +020019 Supports the following VIA south bridges:
20
21 Chip name PCI ID REV I2C block
22 VT82C596A 0x3050 no
23 VT82C596B 0x3051 no
24 VT82C686A 0x3057 0x30 no
25 VT82C686B 0x3057 0x40 yes
26 VT8231 0x8235 no?
27 VT8233 0x3074 yes
28 VT8233A 0x3147 yes?
29 VT8235 0x3177 yes
30 VT8237R 0x3227 yes
Rudolf Marekc2433532006-09-03 22:35:21 +020031 VT8237A 0x3337 yes
Jean Delvare0d227a72008-01-27 18:14:51 +010032 VT8237S 0x3372 yes
Rudolf Marekc2433532006-09-03 22:35:21 +020033 VT8251 0x3287 yes
Jean Delvareab6a6ed2007-02-13 22:09:02 +010034 CX700 0x8324 yes
Rudolf Marekb806a712008-10-14 17:30:03 +020035 VX800/VX820 0x8353 yes
Harald Weltea2315912009-06-15 18:01:49 +020036 VX855/VX875 0x8409 yes
Jean Delvareaaf7f142005-09-22 22:09:07 +020037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 Note: we assume there can only be one device, with one SMBus interface.
39*/
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
42#include <linux/delay.h>
43#include <linux/pci.h>
44#include <linux/kernel.h>
45#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/ioport.h>
47#include <linux/i2c.h>
48#include <linux/init.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020049#include <linux/acpi.h>
H Hartley Sweeten21782182010-05-21 18:41:01 +020050#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static struct pci_dev *vt596_pdev;
53
Jean Delvare5f49ef82005-09-22 21:50:47 +020054#define SMBBA1 0x90
55#define SMBBA2 0x80
56#define SMBBA3 0xD0
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* SMBus address offsets */
59static unsigned short vt596_smba;
60#define SMBHSTSTS (vt596_smba + 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define SMBHSTCNT (vt596_smba + 2)
62#define SMBHSTCMD (vt596_smba + 3)
63#define SMBHSTADD (vt596_smba + 4)
64#define SMBHSTDAT0 (vt596_smba + 5)
65#define SMBHSTDAT1 (vt596_smba + 6)
66#define SMBBLKDAT (vt596_smba + 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/* PCI Address Constants */
69
70/* SMBus data in configuration space can be found in two places,
Jean Delvare5f49ef82005-09-22 21:50:47 +020071 We try to select the better one */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Jean Delvarec2f559d2005-09-22 22:01:07 +020073static unsigned short SMBHSTCFG = 0xD2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/* Other settings */
76#define MAX_TIMEOUT 500
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* VT82C596 constants */
Jean Delvare5f49ef82005-09-22 21:50:47 +020079#define VT596_QUICK 0x00
80#define VT596_BYTE 0x04
81#define VT596_BYTE_DATA 0x08
82#define VT596_WORD_DATA 0x0C
Prakash Morthaa05f2c52008-10-14 17:30:06 +020083#define VT596_PROC_CALL 0x10
Jean Delvare5f49ef82005-09-22 21:50:47 +020084#define VT596_BLOCK_DATA 0x14
Jean Delvaref1183012005-09-22 21:58:41 +020085#define VT596_I2C_BLOCK_DATA 0x34
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87
88/* If force is set to anything different from 0, we forcibly enable the
89 VT596. DANGEROUS! */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103090static bool force;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091module_param(force, bool, 0);
92MODULE_PARM_DESC(force, "Forcibly enable the SMBus. DANGEROUS!");
93
94/* If force_addr is set to anything different from 0, we forcibly enable
95 the VT596 at the given address. VERY DANGEROUS! */
96static u16 force_addr;
97module_param(force_addr, ushort, 0);
98MODULE_PARM_DESC(force_addr,
99 "Forcibly enable the SMBus at the given address. "
100 "EXTREMELY DANGEROUS!");
101
102
Jean Delvarec2f559d2005-09-22 22:01:07 +0200103static struct pci_driver vt596_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static struct i2c_adapter vt596_adapter;
105
Jean Delvaref1183012005-09-22 21:58:41 +0200106#define FEATURE_I2CBLOCK (1<<0)
107static unsigned int vt596_features;
108
Jean Delvareed5453e2005-09-22 22:23:32 +0200109#ifdef DEBUG
110static void vt596_dump_regs(const char *msg, u8 size)
111{
112 dev_dbg(&vt596_adapter.dev, "%s: STS=%02x CNT=%02x CMD=%02x ADD=%02x "
113 "DAT=%02x,%02x\n", msg, inb_p(SMBHSTSTS), inb_p(SMBHSTCNT),
114 inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
115 inb_p(SMBHSTDAT1));
116
117 if (size == VT596_BLOCK_DATA
118 || size == VT596_I2C_BLOCK_DATA) {
119 int i;
120
121 dev_dbg(&vt596_adapter.dev, "BLK=");
122 for (i = 0; i < I2C_SMBUS_BLOCK_MAX / 2; i++)
123 printk("%02x,", inb_p(SMBBLKDAT));
124 printk("\n");
125 dev_dbg(&vt596_adapter.dev, " ");
126 for (; i < I2C_SMBUS_BLOCK_MAX - 1; i++)
127 printk("%02x,", inb_p(SMBBLKDAT));
128 printk("%02x\n", inb_p(SMBBLKDAT));
129 }
130}
Greg KHca68f112005-09-22 22:23:32 +0200131#else
132static inline void vt596_dump_regs(const char *msg, u8 size) { }
Jean Delvareed5453e2005-09-22 22:23:32 +0200133#endif
134
Jean Delvarec2f559d2005-09-22 22:01:07 +0200135/* Return -1 on error, 0 on success */
Jean Delvare50c1cc32005-09-22 22:15:53 +0200136static int vt596_transaction(u8 size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 int temp;
139 int result = 0;
140 int timeout = 0;
141
Jean Delvareed5453e2005-09-22 22:23:32 +0200142 vt596_dump_regs("Transaction (pre)", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* Make sure the SMBus host is ready to start transmitting */
145 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) {
146 dev_dbg(&vt596_adapter.dev, "SMBus busy (0x%02x). "
Jean Delvare87501972005-10-31 18:51:21 +0100147 "Resetting...\n", temp);
Jean Delvare5f49ef82005-09-22 21:50:47 +0200148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 outb_p(temp, SMBHSTSTS);
150 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) {
Jean Delvare87501972005-10-31 18:51:21 +0100151 dev_err(&vt596_adapter.dev, "SMBus reset failed! "
152 "(0x%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200153 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 }
156
Jean Delvarec2f559d2005-09-22 22:01:07 +0200157 /* Start the transaction by setting bit 6 */
Jean Delvare87501972005-10-31 18:51:21 +0100158 outb_p(0x40 | size, SMBHSTCNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Jean Delvarec2f559d2005-09-22 22:01:07 +0200160 /* We will always wait for a fraction of a second */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 do {
162 msleep(1);
163 temp = inb_p(SMBHSTSTS);
Roel Kluinb6a31952010-01-16 20:43:12 +0100164 } while ((temp & 0x01) && (++timeout < MAX_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /* If the SMBus is still busy, we give up */
Roel Kluinb6a31952010-01-16 20:43:12 +0100167 if (timeout == MAX_TIMEOUT) {
David Brownell97140342008-07-14 22:38:25 +0200168 result = -ETIMEDOUT;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200169 dev_err(&vt596_adapter.dev, "SMBus timeout!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171
172 if (temp & 0x10) {
David Brownell97140342008-07-14 22:38:25 +0200173 result = -EIO;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200174 dev_err(&vt596_adapter.dev, "Transaction failed (0x%02x)\n",
Jean Delvare87501972005-10-31 18:51:21 +0100175 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 if (temp & 0x08) {
David Brownell97140342008-07-14 22:38:25 +0200179 result = -EIO;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200180 dev_err(&vt596_adapter.dev, "SMBus collision!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
183 if (temp & 0x04) {
David Brownell97140342008-07-14 22:38:25 +0200184 result = -ENXIO;
Jean Delvarebf5d95c2010-10-24 18:16:59 +0200185 dev_dbg(&vt596_adapter.dev, "No response\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
Jean Delvarec2f559d2005-09-22 22:01:07 +0200188 /* Resetting status register */
189 if (temp & 0x1F)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 outb_p(temp, SMBHSTSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jean Delvareed5453e2005-09-22 22:23:32 +0200192 vt596_dump_regs("Transaction (post)", size);
Jean Delvare5f49ef82005-09-22 21:50:47 +0200193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return result;
195}
196
David Brownell97140342008-07-14 22:38:25 +0200197/* Return negative errno on error, 0 on success */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static s32 vt596_access(struct i2c_adapter *adap, u16 addr,
Jean Delvare5f49ef82005-09-22 21:50:47 +0200199 unsigned short flags, char read_write, u8 command,
200 int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Jean Delvarec2f559d2005-09-22 22:01:07 +0200202 int i;
David Brownell97140342008-07-14 22:38:25 +0200203 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 case I2C_SMBUS_QUICK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 size = VT596_QUICK;
208 break;
209 case I2C_SMBUS_BYTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (read_write == I2C_SMBUS_WRITE)
211 outb_p(command, SMBHSTCMD);
212 size = VT596_BYTE;
213 break;
214 case I2C_SMBUS_BYTE_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 outb_p(command, SMBHSTCMD);
216 if (read_write == I2C_SMBUS_WRITE)
217 outb_p(data->byte, SMBHSTDAT0);
218 size = VT596_BYTE_DATA;
219 break;
220 case I2C_SMBUS_WORD_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 outb_p(command, SMBHSTCMD);
222 if (read_write == I2C_SMBUS_WRITE) {
223 outb_p(data->word & 0xff, SMBHSTDAT0);
224 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
225 }
226 size = VT596_WORD_DATA;
227 break;
Prakash Morthaa05f2c52008-10-14 17:30:06 +0200228 case I2C_SMBUS_PROC_CALL:
229 outb_p(command, SMBHSTCMD);
230 outb_p(data->word & 0xff, SMBHSTDAT0);
231 outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
232 size = VT596_PROC_CALL;
233 break;
Jean Delvaref1183012005-09-22 21:58:41 +0200234 case I2C_SMBUS_I2C_BLOCK_DATA:
235 if (!(vt596_features & FEATURE_I2CBLOCK))
Jean Delvarec2f559d2005-09-22 22:01:07 +0200236 goto exit_unsupported;
Jean Delvaref1183012005-09-22 21:58:41 +0200237 if (read_write == I2C_SMBUS_READ)
Jean Delvare4b2643d2007-07-12 14:12:29 +0200238 outb_p(data->block[0], SMBHSTDAT0);
Jean Delvaref1183012005-09-22 21:58:41 +0200239 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 outb_p(command, SMBHSTCMD);
242 if (read_write == I2C_SMBUS_WRITE) {
Jean Delvarec2f559d2005-09-22 22:01:07 +0200243 u8 len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (len > I2C_SMBUS_BLOCK_MAX)
245 len = I2C_SMBUS_BLOCK_MAX;
246 outb_p(len, SMBHSTDAT0);
Jean Delvarec2f559d2005-09-22 22:01:07 +0200247 inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 for (i = 1; i <= len; i++)
249 outb_p(data->block[i], SMBBLKDAT);
250 }
Jean Delvaref1183012005-09-22 21:58:41 +0200251 size = (size == I2C_SMBUS_I2C_BLOCK_DATA) ?
252 VT596_I2C_BLOCK_DATA : VT596_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 break;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200254 default:
255 goto exit_unsupported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
Jean Delvarec2f559d2005-09-22 22:01:07 +0200258 outb_p(((addr & 0x7f) << 1) | read_write, SMBHSTADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
David Brownell97140342008-07-14 22:38:25 +0200260 status = vt596_transaction(size);
261 if (status)
262 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Prakash Morthaa05f2c52008-10-14 17:30:06 +0200264 if (size == VT596_PROC_CALL)
265 read_write = I2C_SMBUS_READ;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if ((read_write == I2C_SMBUS_WRITE) || (size == VT596_QUICK))
268 return 0;
269
270 switch (size) {
271 case VT596_BYTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 case VT596_BYTE_DATA:
273 data->byte = inb_p(SMBHSTDAT0);
274 break;
275 case VT596_WORD_DATA:
Prakash Morthaa05f2c52008-10-14 17:30:06 +0200276 case VT596_PROC_CALL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
278 break;
Jean Delvaref1183012005-09-22 21:58:41 +0200279 case VT596_I2C_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 case VT596_BLOCK_DATA:
281 data->block[0] = inb_p(SMBHSTDAT0);
282 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
283 data->block[0] = I2C_SMBUS_BLOCK_MAX;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200284 inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 for (i = 1; i <= data->block[0]; i++)
286 data->block[i] = inb_p(SMBBLKDAT);
287 break;
288 }
289 return 0;
Jean Delvarec2f559d2005-09-22 22:01:07 +0200290
291exit_unsupported:
Jean Delvareac7fc4f2008-07-14 22:38:25 +0200292 dev_warn(&vt596_adapter.dev, "Unsupported transaction %d\n",
Jean Delvarec2f559d2005-09-22 22:01:07 +0200293 size);
David Brownell97140342008-07-14 22:38:25 +0200294 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297static u32 vt596_func(struct i2c_adapter *adapter)
298{
Jean Delvaref1183012005-09-22 21:58:41 +0200299 u32 func = I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
Prakash Morthaa05f2c52008-10-14 17:30:06 +0200301 I2C_SMBUS_PROC_CALL | I2C_FUNC_SMBUS_BLOCK_DATA;
Jean Delvaref1183012005-09-22 21:58:41 +0200302
303 if (vt596_features & FEATURE_I2CBLOCK)
304 func |= I2C_FUNC_SMBUS_I2C_BLOCK;
305 return func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Jean Delvare8f9082c2006-09-03 22:39:46 +0200308static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 .smbus_xfer = vt596_access,
310 .functionality = vt596_func,
311};
312
313static struct i2c_adapter vt596_adapter = {
314 .owner = THIS_MODULE,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200315 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 .algo = &smbus_algorithm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
Bill Pemberton0b255e92012-11-27 15:59:38 -0500319static int vt596_probe(struct pci_dev *pdev,
320 const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 unsigned char temp;
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100323 int error;
Jean Delvare5f49ef82005-09-22 21:50:47 +0200324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* Determine the address of the SMBus areas */
326 if (force_addr) {
327 vt596_smba = force_addr & 0xfff0;
328 force = 0;
329 goto found;
330 }
331
332 if ((pci_read_config_word(pdev, id->driver_data, &vt596_smba)) ||
Jean Delvarec2f559d2005-09-22 22:01:07 +0200333 !(vt596_smba & 0x0001)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* try 2nd address and config reg. for 596 */
335 if (id->device == PCI_DEVICE_ID_VIA_82C596_3 &&
336 !pci_read_config_word(pdev, SMBBA2, &vt596_smba) &&
Jean Delvarec2f559d2005-09-22 22:01:07 +0200337 (vt596_smba & 0x0001)) {
338 SMBHSTCFG = 0x84;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 } else {
340 /* no matches at all */
341 dev_err(&pdev->dev, "Cannot configure "
342 "SMBus I/O Base address\n");
343 return -ENODEV;
344 }
345 }
346
347 vt596_smba &= 0xfff0;
348 if (vt596_smba == 0) {
349 dev_err(&pdev->dev, "SMBus base address "
350 "uninitialized - upgrade BIOS or use "
351 "force_addr=0xaddr\n");
352 return -ENODEV;
353 }
354
Jean Delvare5f49ef82005-09-22 21:50:47 +0200355found:
Jean Delvare54fb4a052008-07-14 22:38:33 +0200356 error = acpi_check_region(vt596_smba, 8, vt596_driver.name);
357 if (error)
Jean Delvare18669ea2009-10-04 22:53:45 +0200358 return -ENODEV;
Jean Delvare54fb4a052008-07-14 22:38:33 +0200359
Jean Delvarec2f559d2005-09-22 22:01:07 +0200360 if (!request_region(vt596_smba, 8, vt596_driver.name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 dev_err(&pdev->dev, "SMBus region 0x%x already in use!\n",
Jean Delvare5f49ef82005-09-22 21:50:47 +0200362 vt596_smba);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return -ENODEV;
364 }
365
366 pci_read_config_byte(pdev, SMBHSTCFG, &temp);
367 /* If force_addr is set, we program the new address here. Just to make
368 sure, we disable the VT596 first. */
369 if (force_addr) {
370 pci_write_config_byte(pdev, SMBHSTCFG, temp & 0xfe);
371 pci_write_config_word(pdev, id->driver_data, vt596_smba);
372 pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01);
373 dev_warn(&pdev->dev, "WARNING: SMBus interface set to new "
Jean Delvare5f49ef82005-09-22 21:50:47 +0200374 "address 0x%04x!\n", vt596_smba);
Jean Delvarec2f559d2005-09-22 22:01:07 +0200375 } else if (!(temp & 0x01)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (force) {
Jean Delvare5f49ef82005-09-22 21:50:47 +0200377 /* NOTE: This assumes I/O space and other allocations
378 * WERE done by the Bios! Don't complain if your
379 * hardware does weird things after enabling this.
380 * :') Check for Bios updates before resorting to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * this.
382 */
Jean Delvarec2f559d2005-09-22 22:01:07 +0200383 pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 dev_info(&pdev->dev, "Enabling SMBus device\n");
385 } else {
386 dev_err(&pdev->dev, "SMBUS: Error: Host SMBus "
387 "controller not enabled! - upgrade BIOS or "
388 "use force=1\n");
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100389 error = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 goto release_region;
391 }
392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 dev_dbg(&pdev->dev, "VT596_smba = 0x%X\n", vt596_smba);
395
Jean Delvaref1183012005-09-22 21:58:41 +0200396 switch (pdev->device) {
Jean Delvareab6a6ed2007-02-13 22:09:02 +0100397 case PCI_DEVICE_ID_VIA_CX700:
Rudolf Marekb806a712008-10-14 17:30:03 +0200398 case PCI_DEVICE_ID_VIA_VX800:
Harald Weltea2315912009-06-15 18:01:49 +0200399 case PCI_DEVICE_ID_VIA_VX855:
Jean Delvare01d56a62012-10-05 22:23:53 +0200400 case PCI_DEVICE_ID_VIA_VX900:
Rudolf Marekc2433532006-09-03 22:35:21 +0200401 case PCI_DEVICE_ID_VIA_8251:
Jean Delvaref1183012005-09-22 21:58:41 +0200402 case PCI_DEVICE_ID_VIA_8237:
Rudolf Marekc2433532006-09-03 22:35:21 +0200403 case PCI_DEVICE_ID_VIA_8237A:
Jean Delvare0d227a72008-01-27 18:14:51 +0100404 case PCI_DEVICE_ID_VIA_8237S:
Jean Delvaref1183012005-09-22 21:58:41 +0200405 case PCI_DEVICE_ID_VIA_8235:
406 case PCI_DEVICE_ID_VIA_8233A:
407 case PCI_DEVICE_ID_VIA_8233_0:
408 vt596_features |= FEATURE_I2CBLOCK;
409 break;
410 case PCI_DEVICE_ID_VIA_82C686_4:
411 /* The VT82C686B (rev 0x40) does support I2C block
412 transactions, but the VT82C686A (rev 0x30) doesn't */
Auke Kok44c10132007-06-08 15:46:36 -0700413 if (pdev->revision >= 0x40)
Jean Delvaref1183012005-09-22 21:58:41 +0200414 vt596_features |= FEATURE_I2CBLOCK;
415 break;
416 }
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 vt596_adapter.dev.parent = &pdev->dev;
David Brownell2096b952007-05-01 23:26:28 +0200419 snprintf(vt596_adapter.name, sizeof(vt596_adapter.name),
Jean Delvare5f49ef82005-09-22 21:50:47 +0200420 "SMBus Via Pro adapter at %04x", vt596_smba);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 vt596_pdev = pci_dev_get(pdev);
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100423 error = i2c_add_adapter(&vt596_adapter);
424 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 pci_dev_put(vt596_pdev);
426 vt596_pdev = NULL;
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100427 goto release_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
430 /* Always return failure here. This is to allow other drivers to bind
431 * to this pci device. We don't really want to have control over the
432 * pci device, we only wanted to read as few register values from it.
433 */
434 return -ENODEV;
435
Jean Delvare5f49ef82005-09-22 21:50:47 +0200436release_region:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 release_region(vt596_smba, 8);
438 return error;
439}
440
Jingoo Han392debf2013-12-03 08:11:20 +0900441static const struct pci_device_id vt596_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596_3),
443 .driver_data = SMBBA1 },
444 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596B_3),
445 .driver_data = SMBBA1 },
446 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_4),
447 .driver_data = SMBBA1 },
448 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233_0),
449 .driver_data = SMBBA3 },
450 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233A),
451 .driver_data = SMBBA3 },
452 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235),
453 .driver_data = SMBBA3 },
454 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237),
455 .driver_data = SMBBA3 },
Rudolf Marekc2433532006-09-03 22:35:21 +0200456 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237A),
457 .driver_data = SMBBA3 },
Jean Delvare0d227a72008-01-27 18:14:51 +0100458 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237S),
459 .driver_data = SMBBA3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8231_4),
461 .driver_data = SMBBA1 },
Rudolf Marekc2433532006-09-03 22:35:21 +0200462 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8251),
463 .driver_data = SMBBA3 },
Jean Delvareab6a6ed2007-02-13 22:09:02 +0100464 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_CX700),
465 .driver_data = SMBBA3 },
Rudolf Marekb806a712008-10-14 17:30:03 +0200466 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX800),
467 .driver_data = SMBBA3 },
Harald Weltea2315912009-06-15 18:01:49 +0200468 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855),
469 .driver_data = SMBBA3 },
Jean Delvare01d56a62012-10-05 22:23:53 +0200470 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX900),
471 .driver_data = SMBBA3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 { 0, }
473};
474
Jean Delvare5f49ef82005-09-22 21:50:47 +0200475MODULE_DEVICE_TABLE(pci, vt596_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477static struct pci_driver vt596_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 .name = "vt596_smbus",
479 .id_table = vt596_ids,
480 .probe = vt596_probe,
481};
482
483static int __init i2c_vt596_init(void)
484{
485 return pci_register_driver(&vt596_driver);
486}
487
488
489static void __exit i2c_vt596_exit(void)
490{
491 pci_unregister_driver(&vt596_driver);
492 if (vt596_pdev != NULL) {
493 i2c_del_adapter(&vt596_adapter);
494 release_region(vt596_smba, 8);
495 pci_dev_put(vt596_pdev);
496 vt596_pdev = NULL;
497 }
498}
499
Jean Delvare87501972005-10-31 18:51:21 +0100500MODULE_AUTHOR("Kyosti Malkki <kmalkki@cc.hut.fi>, "
501 "Mark D. Studebaker <mdsxyz123@yahoo.com> and "
Jean Delvare7c81c602014-01-29 20:40:08 +0100502 "Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503MODULE_DESCRIPTION("vt82c596 SMBus driver");
504MODULE_LICENSE("GPL");
505
506module_init(i2c_vt596_init);
507module_exit(i2c_vt596_exit);