]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/i2c/busses/i2c-viapro.c
i2c-viapro: Add VX800/VX820 support
[linux-2.6-omap-h63xx.git] / drivers / i2c / busses / i2c-viapro.c
1 /*
2     Copyright (c) 1998 - 2002  Frodo Looijaard <frodol@dds.nl>,
3     Philip Edelbrock <phil@netroedge.com>, Kyösti Mälkki <kmalkki@cc.hut.fi>,
4     Mark D. Studebaker <mdsxyz123@yahoo.com>
5     Copyright (C) 2005 - 2008  Jean Delvare <khali@linux-fr.org>
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 /*
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
35    VT8237A            0x3337             yes
36    VT8237S            0x3372             yes
37    VT8251             0x3287             yes
38    CX700              0x8324             yes
39    VX800/VX820        0x8353             yes
40
41    Note: we assume there can only be one device, with one SMBus interface.
42 */
43
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>
49 #include <linux/ioport.h>
50 #include <linux/i2c.h>
51 #include <linux/init.h>
52 #include <linux/acpi.h>
53 #include <asm/io.h>
54
55 static struct pci_dev *vt596_pdev;
56
57 #define SMBBA1          0x90
58 #define SMBBA2          0x80
59 #define SMBBA3          0xD0
60
61 /* SMBus address offsets */
62 static unsigned short vt596_smba;
63 #define SMBHSTSTS       (vt596_smba + 0)
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)
70
71 /* PCI Address Constants */
72
73 /* SMBus data in configuration space can be found in two places,
74    We try to select the better one */
75
76 static unsigned short SMBHSTCFG = 0xD2;
77
78 /* Other settings */
79 #define MAX_TIMEOUT     500
80
81 /* VT82C596 constants */
82 #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
87 #define VT596_I2C_BLOCK_DATA    0x34
88
89
90 /* If force is set to anything different from 0, we forcibly enable the
91    VT596. DANGEROUS! */
92 static int force;
93 module_param(force, bool, 0);
94 MODULE_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! */
98 static u16 force_addr;
99 module_param(force_addr, ushort, 0);
100 MODULE_PARM_DESC(force_addr,
101                  "Forcibly enable the SMBus at the given address. "
102                  "EXTREMELY DANGEROUS!");
103
104
105 static struct pci_driver vt596_driver;
106 static struct i2c_adapter vt596_adapter;
107
108 #define FEATURE_I2CBLOCK        (1<<0)
109 static unsigned int vt596_features;
110
111 #ifdef DEBUG
112 static 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 }
133 #else
134 static inline void vt596_dump_regs(const char *msg, u8 size) { }
135 #endif
136
137 /* Return -1 on error, 0 on success */
138 static int vt596_transaction(u8 size)
139 {
140         int temp;
141         int result = 0;
142         int timeout = 0;
143
144         vt596_dump_regs("Transaction (pre)", size);
145
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). "
149                         "Resetting...\n", temp);
150
151                 outb_p(temp, SMBHSTSTS);
152                 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) {
153                         dev_err(&vt596_adapter.dev, "SMBus reset failed! "
154                                 "(0x%02x)\n", temp);
155                         return -EBUSY;
156                 }
157         }
158
159         /* Start the transaction by setting bit 6 */
160         outb_p(0x40 | size, SMBHSTCNT);
161
162         /* We will always wait for a fraction of a second */
163         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) {
170                 result = -ETIMEDOUT;
171                 dev_err(&vt596_adapter.dev, "SMBus timeout!\n");
172         }
173
174         if (temp & 0x10) {
175                 result = -EIO;
176                 dev_err(&vt596_adapter.dev, "Transaction failed (0x%02x)\n",
177                         size);
178         }
179
180         if (temp & 0x08) {
181                 result = -EIO;
182                 dev_err(&vt596_adapter.dev, "SMBus collision!\n");
183         }
184
185         if (temp & 0x04) {
186                 int read = inb_p(SMBHSTADD) & 0x01;
187                 result = -ENXIO;
188                 /* 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)))
193                         dev_err(&vt596_adapter.dev, "Transaction error!\n");
194         }
195
196         /* Resetting status register */
197         if (temp & 0x1F)
198                 outb_p(temp, SMBHSTSTS);
199
200         vt596_dump_regs("Transaction (post)", size);
201
202         return result;
203 }
204
205 /* Return negative errno on error, 0 on success */
206 static s32 vt596_access(struct i2c_adapter *adap, u16 addr,
207                 unsigned short flags, char read_write, u8 command,
208                 int size, union i2c_smbus_data *data)
209 {
210         int i;
211         int status;
212
213         switch (size) {
214         case I2C_SMBUS_QUICK:
215                 size = VT596_QUICK;
216                 break;
217         case I2C_SMBUS_BYTE:
218                 if (read_write == I2C_SMBUS_WRITE)
219                         outb_p(command, SMBHSTCMD);
220                 size = VT596_BYTE;
221                 break;
222         case I2C_SMBUS_BYTE_DATA:
223                 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:
229                 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;
236         case I2C_SMBUS_I2C_BLOCK_DATA:
237                 if (!(vt596_features & FEATURE_I2CBLOCK))
238                         goto exit_unsupported;
239                 if (read_write == I2C_SMBUS_READ)
240                         outb_p(data->block[0], SMBHSTDAT0);
241                 /* Fall through */
242         case I2C_SMBUS_BLOCK_DATA:
243                 outb_p(command, SMBHSTCMD);
244                 if (read_write == I2C_SMBUS_WRITE) {
245                         u8 len = data->block[0];
246                         if (len > I2C_SMBUS_BLOCK_MAX)
247                                 len = I2C_SMBUS_BLOCK_MAX;
248                         outb_p(len, SMBHSTDAT0);
249                         inb_p(SMBHSTCNT);       /* Reset SMBBLKDAT */
250                         for (i = 1; i <= len; i++)
251                                 outb_p(data->block[i], SMBBLKDAT);
252                 }
253                 size = (size == I2C_SMBUS_I2C_BLOCK_DATA) ?
254                        VT596_I2C_BLOCK_DATA : VT596_BLOCK_DATA;
255                 break;
256         default:
257                 goto exit_unsupported;
258         }
259
260         outb_p(((addr & 0x7f) << 1) | read_write, SMBHSTADD);
261
262         status = vt596_transaction(size);
263         if (status)
264                 return status;
265
266         if ((read_write == I2C_SMBUS_WRITE) || (size == VT596_QUICK))
267                 return 0;
268
269         switch (size) {
270         case VT596_BYTE:
271         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;
277         case VT596_I2C_BLOCK_DATA:
278         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;
282                 inb_p(SMBHSTCNT);       /* Reset SMBBLKDAT */
283                 for (i = 1; i <= data->block[0]; i++)
284                         data->block[i] = inb_p(SMBBLKDAT);
285                 break;
286         }
287         return 0;
288
289 exit_unsupported:
290         dev_warn(&vt596_adapter.dev, "Unsupported transaction %d\n",
291                  size);
292         return -EOPNOTSUPP;
293 }
294
295 static u32 vt596_func(struct i2c_adapter *adapter)
296 {
297         u32 func = I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
298             I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
299             I2C_FUNC_SMBUS_BLOCK_DATA;
300
301         if (vt596_features & FEATURE_I2CBLOCK)
302                 func |= I2C_FUNC_SMBUS_I2C_BLOCK;
303         return func;
304 }
305
306 static const struct i2c_algorithm smbus_algorithm = {
307         .smbus_xfer     = vt596_access,
308         .functionality  = vt596_func,
309 };
310
311 static struct i2c_adapter vt596_adapter = {
312         .owner          = THIS_MODULE,
313         .id             = I2C_HW_SMBUS_VIA2,
314         .class          = I2C_CLASS_HWMON | I2C_CLASS_SPD,
315         .algo           = &smbus_algorithm,
316 };
317
318 static int __devinit vt596_probe(struct pci_dev *pdev,
319                                  const struct pci_device_id *id)
320 {
321         unsigned char temp;
322         int error = -ENODEV;
323
324         /* driver_data might come from user-space, so check it */
325         if (id->driver_data & 1 || id->driver_data > 0xff)
326                 return -EINVAL;
327
328         /* 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)) ||
336             !(vt596_smba & 0x0001)) {
337                 /* 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) &&
340                     (vt596_smba & 0x0001)) {
341                         SMBHSTCFG = 0x84;
342                 } 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
358 found:
359         error = acpi_check_region(vt596_smba, 8, vt596_driver.name);
360         if (error)
361                 return error;
362
363         if (!request_region(vt596_smba, 8, vt596_driver.name)) {
364                 dev_err(&pdev->dev, "SMBus region 0x%x already in use!\n",
365                         vt596_smba);
366                 return -ENODEV;
367         }
368
369         pci_read_config_byte(pdev, SMBHSTCFG, &temp);
370         /* If force_addr is set, we program the new address here. Just to make
371            sure, we disable the VT596 first. */
372         if (force_addr) {
373                 pci_write_config_byte(pdev, SMBHSTCFG, temp & 0xfe);
374                 pci_write_config_word(pdev, id->driver_data, vt596_smba);
375                 pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01);
376                 dev_warn(&pdev->dev, "WARNING: SMBus interface set to new "
377                          "address 0x%04x!\n", vt596_smba);
378         } else if (!(temp & 0x01)) {
379                 if (force) {
380                         /* NOTE: This assumes I/O space and other allocations
381                          * WERE done by the Bios!  Don't complain if your
382                          * hardware does weird things after enabling this.
383                          * :') Check for Bios updates before resorting to
384                          * this.
385                          */
386                         pci_write_config_byte(pdev, SMBHSTCFG, temp | 0x01);
387                         dev_info(&pdev->dev, "Enabling SMBus device\n");
388                 } else {
389                         dev_err(&pdev->dev, "SMBUS: Error: Host SMBus "
390                                 "controller not enabled! - upgrade BIOS or "
391                                 "use force=1\n");
392                         goto release_region;
393                 }
394         }
395
396         dev_dbg(&pdev->dev, "VT596_smba = 0x%X\n", vt596_smba);
397
398         switch (pdev->device) {
399         case PCI_DEVICE_ID_VIA_CX700:
400         case PCI_DEVICE_ID_VIA_VX800:
401         case PCI_DEVICE_ID_VIA_8251:
402         case PCI_DEVICE_ID_VIA_8237:
403         case PCI_DEVICE_ID_VIA_8237A:
404         case PCI_DEVICE_ID_VIA_8237S:
405         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 */
413                 if (pdev->revision >= 0x40)
414                         vt596_features |= FEATURE_I2CBLOCK;
415                 break;
416         }
417
418         vt596_adapter.dev.parent = &pdev->dev;
419         snprintf(vt596_adapter.name, sizeof(vt596_adapter.name),
420                  "SMBus Via Pro adapter at %04x", vt596_smba);
421
422         vt596_pdev = pci_dev_get(pdev);
423         if (i2c_add_adapter(&vt596_adapter)) {
424                 pci_dev_put(vt596_pdev);
425                 vt596_pdev = NULL;
426         }
427
428         /* Always return failure here.  This is to allow other drivers to bind
429          * to this pci device.  We don't really want to have control over the
430          * pci device, we only wanted to read as few register values from it.
431          */
432         return -ENODEV;
433
434 release_region:
435         release_region(vt596_smba, 8);
436         return error;
437 }
438
439 static struct pci_device_id vt596_ids[] = {
440         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596_3),
441           .driver_data = SMBBA1 },
442         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596B_3),
443           .driver_data = SMBBA1 },
444         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_4),
445           .driver_data = SMBBA1 },
446         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233_0),
447           .driver_data = SMBBA3 },
448         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233A),
449           .driver_data = SMBBA3 },
450         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235),
451           .driver_data = SMBBA3 },
452         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237),
453           .driver_data = SMBBA3 },
454         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237A),
455           .driver_data = SMBBA3 },
456         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237S),
457           .driver_data = SMBBA3 },
458         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8231_4),
459           .driver_data = SMBBA1 },
460         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8251),
461           .driver_data = SMBBA3 },
462         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_CX700),
463           .driver_data = SMBBA3 },
464         { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX800),
465           .driver_data = SMBBA3 },
466         { 0, }
467 };
468
469 MODULE_DEVICE_TABLE(pci, vt596_ids);
470
471 static struct pci_driver vt596_driver = {
472         .name           = "vt596_smbus",
473         .id_table       = vt596_ids,
474         .probe          = vt596_probe,
475         .dynids.use_driver_data = 1,
476 };
477
478 static int __init i2c_vt596_init(void)
479 {
480         return pci_register_driver(&vt596_driver);
481 }
482
483
484 static void __exit i2c_vt596_exit(void)
485 {
486         pci_unregister_driver(&vt596_driver);
487         if (vt596_pdev != NULL) {
488                 i2c_del_adapter(&vt596_adapter);
489                 release_region(vt596_smba, 8);
490                 pci_dev_put(vt596_pdev);
491                 vt596_pdev = NULL;
492         }
493 }
494
495 MODULE_AUTHOR("Kyosti Malkki <kmalkki@cc.hut.fi>, "
496               "Mark D. Studebaker <mdsxyz123@yahoo.com> and "
497               "Jean Delvare <khali@linux-fr.org>");
498 MODULE_DESCRIPTION("vt82c596 SMBus driver");
499 MODULE_LICENSE("GPL");
500
501 module_init(i2c_vt596_init);
502 module_exit(i2c_vt596_exit);