Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 2 | Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>, |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 3 | Philip Edelbrock <phil@netroedge.com>, Kyösti Mälkki <kmalkki@cc.hut.fi>, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | Mark D. Studebaker <mdsxyz123@yahoo.com> |
Jean Delvare | 0d227a7 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 5 | Copyright (C) 2005 - 2008 Jean Delvare <khali@linux-fr.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
| 7 | This program is free software; you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation; either version 2 of the License, or |
| 10 | (at your option) any later version. |
| 11 | |
| 12 | This program is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | GNU General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
| 18 | along with this program; if not, write to the Free Software |
| 19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | */ |
| 21 | |
| 22 | /* |
Jean Delvare | aaf7f14 | 2005-09-22 22:09:07 +0200 | [diff] [blame] | 23 | Supports the following VIA south bridges: |
| 24 | |
| 25 | Chip name PCI ID REV I2C block |
| 26 | VT82C596A 0x3050 no |
| 27 | VT82C596B 0x3051 no |
| 28 | VT82C686A 0x3057 0x30 no |
| 29 | VT82C686B 0x3057 0x40 yes |
| 30 | VT8231 0x8235 no? |
| 31 | VT8233 0x3074 yes |
| 32 | VT8233A 0x3147 yes? |
| 33 | VT8235 0x3177 yes |
| 34 | VT8237R 0x3227 yes |
Rudolf Marek | c243353 | 2006-09-03 22:35:21 +0200 | [diff] [blame] | 35 | VT8237A 0x3337 yes |
Jean Delvare | 0d227a7 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 36 | VT8237S 0x3372 yes |
Rudolf Marek | c243353 | 2006-09-03 22:35:21 +0200 | [diff] [blame] | 37 | VT8251 0x3287 yes |
Jean Delvare | ab6a6ed | 2007-02-13 22:09:02 +0100 | [diff] [blame] | 38 | CX700 0x8324 yes |
Rudolf Marek | b806a71 | 2008-10-14 17:30:03 +0200 | [diff] [blame] | 39 | VX800/VX820 0x8353 yes |
Jean Delvare | aaf7f14 | 2005-09-22 22:09:07 +0200 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | Note: we assume there can only be one device, with one SMBus interface. |
| 42 | */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/module.h> |
| 45 | #include <linux/delay.h> |
| 46 | #include <linux/pci.h> |
| 47 | #include <linux/kernel.h> |
| 48 | #include <linux/stddef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/ioport.h> |
| 50 | #include <linux/i2c.h> |
| 51 | #include <linux/init.h> |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 52 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <asm/io.h> |
| 54 | |
| 55 | static struct pci_dev *vt596_pdev; |
| 56 | |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 57 | #define SMBBA1 0x90 |
| 58 | #define SMBBA2 0x80 |
| 59 | #define SMBBA3 0xD0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | /* SMBus address offsets */ |
| 62 | static unsigned short vt596_smba; |
| 63 | #define SMBHSTSTS (vt596_smba + 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | /* PCI Address Constants */ |
| 72 | |
| 73 | /* SMBus data in configuration space can be found in two places, |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 74 | We try to select the better one */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 76 | static unsigned short SMBHSTCFG = 0xD2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | /* Other settings */ |
| 79 | #define MAX_TIMEOUT 500 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
| 81 | /* VT82C596 constants */ |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 82 | #define VT596_QUICK 0x00 |
| 83 | #define VT596_BYTE 0x04 |
| 84 | #define VT596_BYTE_DATA 0x08 |
| 85 | #define VT596_WORD_DATA 0x0C |
Prakash Mortha | a05f2c5 | 2008-10-14 17:30:06 +0200 | [diff] [blame] | 86 | #define VT596_PROC_CALL 0x10 |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 87 | #define VT596_BLOCK_DATA 0x14 |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 88 | #define VT596_I2C_BLOCK_DATA 0x34 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | |
| 91 | /* If force is set to anything different from 0, we forcibly enable the |
| 92 | VT596. DANGEROUS! */ |
| 93 | static int force; |
| 94 | module_param(force, bool, 0); |
| 95 | MODULE_PARM_DESC(force, "Forcibly enable the SMBus. DANGEROUS!"); |
| 96 | |
| 97 | /* If force_addr is set to anything different from 0, we forcibly enable |
| 98 | the VT596 at the given address. VERY DANGEROUS! */ |
| 99 | static u16 force_addr; |
| 100 | module_param(force_addr, ushort, 0); |
| 101 | MODULE_PARM_DESC(force_addr, |
| 102 | "Forcibly enable the SMBus at the given address. " |
| 103 | "EXTREMELY DANGEROUS!"); |
| 104 | |
| 105 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 106 | static struct pci_driver vt596_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | static struct i2c_adapter vt596_adapter; |
| 108 | |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 109 | #define FEATURE_I2CBLOCK (1<<0) |
| 110 | static unsigned int vt596_features; |
| 111 | |
Jean Delvare | ed5453e | 2005-09-22 22:23:32 +0200 | [diff] [blame] | 112 | #ifdef DEBUG |
| 113 | static void vt596_dump_regs(const char *msg, u8 size) |
| 114 | { |
| 115 | dev_dbg(&vt596_adapter.dev, "%s: STS=%02x CNT=%02x CMD=%02x ADD=%02x " |
| 116 | "DAT=%02x,%02x\n", msg, inb_p(SMBHSTSTS), inb_p(SMBHSTCNT), |
| 117 | inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0), |
| 118 | inb_p(SMBHSTDAT1)); |
| 119 | |
| 120 | if (size == VT596_BLOCK_DATA |
| 121 | || size == VT596_I2C_BLOCK_DATA) { |
| 122 | int i; |
| 123 | |
| 124 | dev_dbg(&vt596_adapter.dev, "BLK="); |
| 125 | for (i = 0; i < I2C_SMBUS_BLOCK_MAX / 2; i++) |
| 126 | printk("%02x,", inb_p(SMBBLKDAT)); |
| 127 | printk("\n"); |
| 128 | dev_dbg(&vt596_adapter.dev, " "); |
| 129 | for (; i < I2C_SMBUS_BLOCK_MAX - 1; i++) |
| 130 | printk("%02x,", inb_p(SMBBLKDAT)); |
| 131 | printk("%02x\n", inb_p(SMBBLKDAT)); |
| 132 | } |
| 133 | } |
Greg KH | ca68f11 | 2005-09-22 22:23:32 +0200 | [diff] [blame] | 134 | #else |
| 135 | static inline void vt596_dump_regs(const char *msg, u8 size) { } |
Jean Delvare | ed5453e | 2005-09-22 22:23:32 +0200 | [diff] [blame] | 136 | #endif |
| 137 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 138 | /* Return -1 on error, 0 on success */ |
Jean Delvare | 50c1cc3 | 2005-09-22 22:15:53 +0200 | [diff] [blame] | 139 | static int vt596_transaction(u8 size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
| 141 | int temp; |
| 142 | int result = 0; |
| 143 | int timeout = 0; |
| 144 | |
Jean Delvare | ed5453e | 2005-09-22 22:23:32 +0200 | [diff] [blame] | 145 | vt596_dump_regs("Transaction (pre)", size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | /* Make sure the SMBus host is ready to start transmitting */ |
| 148 | if ((temp = inb_p(SMBHSTSTS)) & 0x1F) { |
| 149 | dev_dbg(&vt596_adapter.dev, "SMBus busy (0x%02x). " |
Jean Delvare | 8750197 | 2005-10-31 18:51:21 +0100 | [diff] [blame] | 150 | "Resetting...\n", temp); |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | outb_p(temp, SMBHSTSTS); |
| 153 | if ((temp = inb_p(SMBHSTSTS)) & 0x1F) { |
Jean Delvare | 8750197 | 2005-10-31 18:51:21 +0100 | [diff] [blame] | 154 | dev_err(&vt596_adapter.dev, "SMBus reset failed! " |
| 155 | "(0x%02x)\n", temp); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 156 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 160 | /* Start the transaction by setting bit 6 */ |
Jean Delvare | 8750197 | 2005-10-31 18:51:21 +0100 | [diff] [blame] | 161 | outb_p(0x40 | size, SMBHSTCNT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 163 | /* We will always wait for a fraction of a second */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | do { |
| 165 | msleep(1); |
| 166 | temp = inb_p(SMBHSTSTS); |
| 167 | } while ((temp & 0x01) && (timeout++ < MAX_TIMEOUT)); |
| 168 | |
| 169 | /* If the SMBus is still busy, we give up */ |
| 170 | if (timeout >= MAX_TIMEOUT) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 171 | result = -ETIMEDOUT; |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 172 | dev_err(&vt596_adapter.dev, "SMBus timeout!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | if (temp & 0x10) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 176 | result = -EIO; |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 177 | dev_err(&vt596_adapter.dev, "Transaction failed (0x%02x)\n", |
Jean Delvare | 8750197 | 2005-10-31 18:51:21 +0100 | [diff] [blame] | 178 | size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | if (temp & 0x08) { |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 182 | result = -EIO; |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 183 | dev_err(&vt596_adapter.dev, "SMBus collision!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | if (temp & 0x04) { |
Jean Delvare | 8750197 | 2005-10-31 18:51:21 +0100 | [diff] [blame] | 187 | int read = inb_p(SMBHSTADD) & 0x01; |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 188 | result = -ENXIO; |
Jean Delvare | 8750197 | 2005-10-31 18:51:21 +0100 | [diff] [blame] | 189 | /* The quick and receive byte commands are used to probe |
| 190 | for chips, so errors are expected, and we don't want |
| 191 | to frighten the user. */ |
| 192 | if (!((size == VT596_QUICK && !read) || |
| 193 | (size == VT596_BYTE && read))) |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 194 | dev_err(&vt596_adapter.dev, "Transaction error!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 197 | /* Resetting status register */ |
| 198 | if (temp & 0x1F) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | outb_p(temp, SMBHSTSTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Jean Delvare | ed5453e | 2005-09-22 22:23:32 +0200 | [diff] [blame] | 201 | vt596_dump_regs("Transaction (post)", size); |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | return result; |
| 204 | } |
| 205 | |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 206 | /* Return negative errno on error, 0 on success */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | static s32 vt596_access(struct i2c_adapter *adap, u16 addr, |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 208 | unsigned short flags, char read_write, u8 command, |
| 209 | int size, union i2c_smbus_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 211 | int i; |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 212 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | switch (size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | case I2C_SMBUS_QUICK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | size = VT596_QUICK; |
| 217 | break; |
| 218 | case I2C_SMBUS_BYTE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | if (read_write == I2C_SMBUS_WRITE) |
| 220 | outb_p(command, SMBHSTCMD); |
| 221 | size = VT596_BYTE; |
| 222 | break; |
| 223 | case I2C_SMBUS_BYTE_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | outb_p(command, SMBHSTCMD); |
| 225 | if (read_write == I2C_SMBUS_WRITE) |
| 226 | outb_p(data->byte, SMBHSTDAT0); |
| 227 | size = VT596_BYTE_DATA; |
| 228 | break; |
| 229 | case I2C_SMBUS_WORD_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | outb_p(command, SMBHSTCMD); |
| 231 | if (read_write == I2C_SMBUS_WRITE) { |
| 232 | outb_p(data->word & 0xff, SMBHSTDAT0); |
| 233 | outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1); |
| 234 | } |
| 235 | size = VT596_WORD_DATA; |
| 236 | break; |
Prakash Mortha | a05f2c5 | 2008-10-14 17:30:06 +0200 | [diff] [blame] | 237 | case I2C_SMBUS_PROC_CALL: |
| 238 | outb_p(command, SMBHSTCMD); |
| 239 | outb_p(data->word & 0xff, SMBHSTDAT0); |
| 240 | outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1); |
| 241 | size = VT596_PROC_CALL; |
| 242 | break; |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 243 | case I2C_SMBUS_I2C_BLOCK_DATA: |
| 244 | if (!(vt596_features & FEATURE_I2CBLOCK)) |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 245 | goto exit_unsupported; |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 246 | if (read_write == I2C_SMBUS_READ) |
Jean Delvare | 4b2643d | 2007-07-12 14:12:29 +0200 | [diff] [blame] | 247 | outb_p(data->block[0], SMBHSTDAT0); |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 248 | /* Fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | case I2C_SMBUS_BLOCK_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | outb_p(command, SMBHSTCMD); |
| 251 | if (read_write == I2C_SMBUS_WRITE) { |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 252 | u8 len = data->block[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | if (len > I2C_SMBUS_BLOCK_MAX) |
| 254 | len = I2C_SMBUS_BLOCK_MAX; |
| 255 | outb_p(len, SMBHSTDAT0); |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 256 | inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | for (i = 1; i <= len; i++) |
| 258 | outb_p(data->block[i], SMBBLKDAT); |
| 259 | } |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 260 | size = (size == I2C_SMBUS_I2C_BLOCK_DATA) ? |
| 261 | VT596_I2C_BLOCK_DATA : VT596_BLOCK_DATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | break; |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 263 | default: |
| 264 | goto exit_unsupported; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 267 | outb_p(((addr & 0x7f) << 1) | read_write, SMBHSTADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 269 | status = vt596_transaction(size); |
| 270 | if (status) |
| 271 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Prakash Mortha | a05f2c5 | 2008-10-14 17:30:06 +0200 | [diff] [blame] | 273 | if (size == VT596_PROC_CALL) |
| 274 | read_write = I2C_SMBUS_READ; |
| 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | if ((read_write == I2C_SMBUS_WRITE) || (size == VT596_QUICK)) |
| 277 | return 0; |
| 278 | |
| 279 | switch (size) { |
| 280 | case VT596_BYTE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | case VT596_BYTE_DATA: |
| 282 | data->byte = inb_p(SMBHSTDAT0); |
| 283 | break; |
| 284 | case VT596_WORD_DATA: |
Prakash Mortha | a05f2c5 | 2008-10-14 17:30:06 +0200 | [diff] [blame] | 285 | case VT596_PROC_CALL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8); |
| 287 | break; |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 288 | case VT596_I2C_BLOCK_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | case VT596_BLOCK_DATA: |
| 290 | data->block[0] = inb_p(SMBHSTDAT0); |
| 291 | if (data->block[0] > I2C_SMBUS_BLOCK_MAX) |
| 292 | data->block[0] = I2C_SMBUS_BLOCK_MAX; |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 293 | inb_p(SMBHSTCNT); /* Reset SMBBLKDAT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | for (i = 1; i <= data->block[0]; i++) |
| 295 | data->block[i] = inb_p(SMBBLKDAT); |
| 296 | break; |
| 297 | } |
| 298 | return 0; |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 299 | |
| 300 | exit_unsupported: |
Jean Delvare | ac7fc4f | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 301 | dev_warn(&vt596_adapter.dev, "Unsupported transaction %d\n", |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 302 | size); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 303 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | static u32 vt596_func(struct i2c_adapter *adapter) |
| 307 | { |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 308 | u32 func = I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | |
Prakash Mortha | a05f2c5 | 2008-10-14 17:30:06 +0200 | [diff] [blame] | 310 | I2C_SMBUS_PROC_CALL | I2C_FUNC_SMBUS_BLOCK_DATA; |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 311 | |
| 312 | if (vt596_features & FEATURE_I2CBLOCK) |
| 313 | func |= I2C_FUNC_SMBUS_I2C_BLOCK; |
| 314 | return func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Jean Delvare | 8f9082c | 2006-09-03 22:39:46 +0200 | [diff] [blame] | 317 | static const struct i2c_algorithm smbus_algorithm = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | .smbus_xfer = vt596_access, |
| 319 | .functionality = vt596_func, |
| 320 | }; |
| 321 | |
| 322 | static struct i2c_adapter vt596_adapter = { |
| 323 | .owner = THIS_MODULE, |
Stephen Hemminger | 9ace555 | 2007-02-13 22:09:01 +0100 | [diff] [blame] | 324 | .id = I2C_HW_SMBUS_VIA2, |
Jean Delvare | 3401b2f | 2008-07-14 22:38:29 +0200 | [diff] [blame] | 325 | .class = I2C_CLASS_HWMON | I2C_CLASS_SPD, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | .algo = &smbus_algorithm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | }; |
| 328 | |
| 329 | static int __devinit vt596_probe(struct pci_dev *pdev, |
| 330 | const struct pci_device_id *id) |
| 331 | { |
| 332 | unsigned char temp; |
| 333 | int error = -ENODEV; |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | /* Determine the address of the SMBus areas */ |
| 336 | if (force_addr) { |
| 337 | vt596_smba = force_addr & 0xfff0; |
| 338 | force = 0; |
| 339 | goto found; |
| 340 | } |
| 341 | |
| 342 | if ((pci_read_config_word(pdev, id->driver_data, &vt596_smba)) || |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 343 | !(vt596_smba & 0x0001)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | /* try 2nd address and config reg. for 596 */ |
| 345 | if (id->device == PCI_DEVICE_ID_VIA_82C596_3 && |
| 346 | !pci_read_config_word(pdev, SMBBA2, &vt596_smba) && |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 347 | (vt596_smba & 0x0001)) { |
| 348 | SMBHSTCFG = 0x84; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } else { |
| 350 | /* no matches at all */ |
| 351 | dev_err(&pdev->dev, "Cannot configure " |
| 352 | "SMBus I/O Base address\n"); |
| 353 | return -ENODEV; |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | vt596_smba &= 0xfff0; |
| 358 | if (vt596_smba == 0) { |
| 359 | dev_err(&pdev->dev, "SMBus base address " |
| 360 | "uninitialized - upgrade BIOS or use " |
| 361 | "force_addr=0xaddr\n"); |
| 362 | return -ENODEV; |
| 363 | } |
| 364 | |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 365 | found: |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 366 | error = acpi_check_region(vt596_smba, 8, vt596_driver.name); |
| 367 | if (error) |
| 368 | return error; |
| 369 | |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 370 | if (!request_region(vt596_smba, 8, vt596_driver.name)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | dev_err(&pdev->dev, "SMBus region 0x%x already in use!\n", |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 372 | vt596_smba); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | return -ENODEV; |
| 374 | } |
| 375 | |
| 376 | pci_read_config_byte(pdev, SMBHSTCFG, &temp); |
| 377 | /* If force_addr is set, we program the new address here. Just to make |
| 378 | sure, we disable the VT596 first. */ |
| 379 | if (force_addr) { |
| 380 | pci_write_config_byte(pdev, SMBHSTCFG, temp & 0xfe); |
| 381 | pci_write_config_word(pdev, id->driver_data, vt596_smba); |
| 382 | pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01); |
| 383 | dev_warn(&pdev->dev, "WARNING: SMBus interface set to new " |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 384 | "address 0x%04x!\n", vt596_smba); |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 385 | } else if (!(temp & 0x01)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | if (force) { |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 387 | /* NOTE: This assumes I/O space and other allocations |
| 388 | * WERE done by the Bios! Don't complain if your |
| 389 | * hardware does weird things after enabling this. |
| 390 | * :') Check for Bios updates before resorting to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | * this. |
| 392 | */ |
Jean Delvare | c2f559d | 2005-09-22 22:01:07 +0200 | [diff] [blame] | 393 | pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | dev_info(&pdev->dev, "Enabling SMBus device\n"); |
| 395 | } else { |
| 396 | dev_err(&pdev->dev, "SMBUS: Error: Host SMBus " |
| 397 | "controller not enabled! - upgrade BIOS or " |
| 398 | "use force=1\n"); |
| 399 | goto release_region; |
| 400 | } |
| 401 | } |
| 402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | dev_dbg(&pdev->dev, "VT596_smba = 0x%X\n", vt596_smba); |
| 404 | |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 405 | switch (pdev->device) { |
Jean Delvare | ab6a6ed | 2007-02-13 22:09:02 +0100 | [diff] [blame] | 406 | case PCI_DEVICE_ID_VIA_CX700: |
Rudolf Marek | b806a71 | 2008-10-14 17:30:03 +0200 | [diff] [blame] | 407 | case PCI_DEVICE_ID_VIA_VX800: |
Rudolf Marek | c243353 | 2006-09-03 22:35:21 +0200 | [diff] [blame] | 408 | case PCI_DEVICE_ID_VIA_8251: |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 409 | case PCI_DEVICE_ID_VIA_8237: |
Rudolf Marek | c243353 | 2006-09-03 22:35:21 +0200 | [diff] [blame] | 410 | case PCI_DEVICE_ID_VIA_8237A: |
Jean Delvare | 0d227a7 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 411 | case PCI_DEVICE_ID_VIA_8237S: |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 412 | case PCI_DEVICE_ID_VIA_8235: |
| 413 | case PCI_DEVICE_ID_VIA_8233A: |
| 414 | case PCI_DEVICE_ID_VIA_8233_0: |
| 415 | vt596_features |= FEATURE_I2CBLOCK; |
| 416 | break; |
| 417 | case PCI_DEVICE_ID_VIA_82C686_4: |
| 418 | /* The VT82C686B (rev 0x40) does support I2C block |
| 419 | transactions, but the VT82C686A (rev 0x30) doesn't */ |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 420 | if (pdev->revision >= 0x40) |
Jean Delvare | f118301 | 2005-09-22 21:58:41 +0200 | [diff] [blame] | 421 | vt596_features |= FEATURE_I2CBLOCK; |
| 422 | break; |
| 423 | } |
| 424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | vt596_adapter.dev.parent = &pdev->dev; |
David Brownell | 2096b95 | 2007-05-01 23:26:28 +0200 | [diff] [blame] | 426 | snprintf(vt596_adapter.name, sizeof(vt596_adapter.name), |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 427 | "SMBus Via Pro adapter at %04x", vt596_smba); |
| 428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | vt596_pdev = pci_dev_get(pdev); |
| 430 | if (i2c_add_adapter(&vt596_adapter)) { |
| 431 | pci_dev_put(vt596_pdev); |
| 432 | vt596_pdev = NULL; |
| 433 | } |
| 434 | |
| 435 | /* Always return failure here. This is to allow other drivers to bind |
| 436 | * to this pci device. We don't really want to have control over the |
| 437 | * pci device, we only wanted to read as few register values from it. |
| 438 | */ |
| 439 | return -ENODEV; |
| 440 | |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 441 | release_region: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | release_region(vt596_smba, 8); |
| 443 | return error; |
| 444 | } |
| 445 | |
| 446 | static struct pci_device_id vt596_ids[] = { |
| 447 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596_3), |
| 448 | .driver_data = SMBBA1 }, |
| 449 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596B_3), |
| 450 | .driver_data = SMBBA1 }, |
| 451 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_4), |
| 452 | .driver_data = SMBBA1 }, |
| 453 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233_0), |
| 454 | .driver_data = SMBBA3 }, |
| 455 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233A), |
| 456 | .driver_data = SMBBA3 }, |
| 457 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235), |
| 458 | .driver_data = SMBBA3 }, |
| 459 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237), |
| 460 | .driver_data = SMBBA3 }, |
Rudolf Marek | c243353 | 2006-09-03 22:35:21 +0200 | [diff] [blame] | 461 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237A), |
| 462 | .driver_data = SMBBA3 }, |
Jean Delvare | 0d227a7 | 2008-01-27 18:14:51 +0100 | [diff] [blame] | 463 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237S), |
| 464 | .driver_data = SMBBA3 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8231_4), |
| 466 | .driver_data = SMBBA1 }, |
Rudolf Marek | c243353 | 2006-09-03 22:35:21 +0200 | [diff] [blame] | 467 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8251), |
| 468 | .driver_data = SMBBA3 }, |
Jean Delvare | ab6a6ed | 2007-02-13 22:09:02 +0100 | [diff] [blame] | 469 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_CX700), |
| 470 | .driver_data = SMBBA3 }, |
Rudolf Marek | b806a71 | 2008-10-14 17:30:03 +0200 | [diff] [blame] | 471 | { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX800), |
| 472 | .driver_data = SMBBA3 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | { 0, } |
| 474 | }; |
| 475 | |
Jean Delvare | 5f49ef8 | 2005-09-22 21:50:47 +0200 | [diff] [blame] | 476 | MODULE_DEVICE_TABLE(pci, vt596_ids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | static struct pci_driver vt596_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | .name = "vt596_smbus", |
| 480 | .id_table = vt596_ids, |
| 481 | .probe = vt596_probe, |
| 482 | }; |
| 483 | |
| 484 | static int __init i2c_vt596_init(void) |
| 485 | { |
| 486 | return pci_register_driver(&vt596_driver); |
| 487 | } |
| 488 | |
| 489 | |
| 490 | static void __exit i2c_vt596_exit(void) |
| 491 | { |
| 492 | pci_unregister_driver(&vt596_driver); |
| 493 | if (vt596_pdev != NULL) { |
| 494 | i2c_del_adapter(&vt596_adapter); |
| 495 | release_region(vt596_smba, 8); |
| 496 | pci_dev_put(vt596_pdev); |
| 497 | vt596_pdev = NULL; |
| 498 | } |
| 499 | } |
| 500 | |
Jean Delvare | 8750197 | 2005-10-31 18:51:21 +0100 | [diff] [blame] | 501 | MODULE_AUTHOR("Kyosti Malkki <kmalkki@cc.hut.fi>, " |
| 502 | "Mark D. Studebaker <mdsxyz123@yahoo.com> and " |
| 503 | "Jean Delvare <khali@linux-fr.org>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | MODULE_DESCRIPTION("vt82c596 SMBus driver"); |
| 505 | MODULE_LICENSE("GPL"); |
| 506 | |
| 507 | module_init(i2c_vt596_init); |
| 508 | module_exit(i2c_vt596_exit); |