linux/drivers/i2c/busses/i2c-ali15x3.c
<<
>>
Prefs
   1/*
   2    Copyright (c) 1999  Frodo Looijaard <frodol@dds.nl> and
   3    Philip Edelbrock <phil@netroedge.com> and
   4    Mark D. Studebaker <mdsxyz123@yahoo.com>
   5
   6    This program is free software; you can redistribute it and/or modify
   7    it under the terms of the GNU General Public License as published by
   8    the Free Software Foundation; either version 2 of the License, or
   9    (at your option) any later version.
  10
  11    This program is distributed in the hope that it will be useful,
  12    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14    GNU General Public License for more details.
  15*/
  16
  17/*
  18    This is the driver for the SMB Host controller on
  19    Acer Labs Inc. (ALI) M1541 and M1543C South Bridges.
  20
  21    The M1543C is a South bridge for desktop systems.
  22    The M1533 is a South bridge for portable systems.
  23    They are part of the following ALI chipsets:
  24       "Aladdin Pro 2": Includes the M1621 Slot 1 North bridge
  25       with AGP and 100MHz CPU Front Side bus
  26       "Aladdin V": Includes the M1541 Socket 7 North bridge
  27       with AGP and 100MHz CPU Front Side bus
  28       "Aladdin IV": Includes the M1541 Socket 7 North bridge
  29       with host bus up to 83.3 MHz.
  30    For an overview of these chips see http://www.acerlabs.com
  31
  32    The M1533/M1543C devices appear as FOUR separate devices
  33    on the PCI bus. An output of lspci will show something similar
  34    to the following:
  35
  36        00:02.0 USB Controller: Acer Laboratories Inc. M5237
  37        00:03.0 Bridge: Acer Laboratories Inc. M7101
  38        00:07.0 ISA bridge: Acer Laboratories Inc. M1533
  39        00:0f.0 IDE interface: Acer Laboratories Inc. M5229
  40
  41    The SMB controller is part of the 7101 device, which is an
  42    ACPI-compliant Power Management Unit (PMU).
  43
  44    The whole 7101 device has to be enabled for the SMB to work.
  45    You can't just enable the SMB alone.
  46    The SMB and the ACPI have separate I/O spaces.
  47    We make sure that the SMB is enabled. We leave the ACPI alone.
  48
  49    This driver controls the SMB Host only.
  50    The SMB Slave controller on the M15X3 is not enabled.
  51
  52    This driver does not use interrupts.
  53*/
  54
  55/* Note: we assume there can only be one ALI15X3, with one SMBus interface */
  56
  57#include <linux/module.h>
  58#include <linux/pci.h>
  59#include <linux/kernel.h>
  60#include <linux/stddef.h>
  61#include <linux/ioport.h>
  62#include <linux/delay.h>
  63#include <linux/i2c.h>
  64#include <linux/init.h>
  65#include <linux/acpi.h>
  66#include <linux/io.h>
  67
  68/* ALI15X3 SMBus address offsets */
  69#define SMBHSTSTS       (0 + ali15x3_smba)
  70#define SMBHSTCNT       (1 + ali15x3_smba)
  71#define SMBHSTSTART     (2 + ali15x3_smba)
  72#define SMBHSTCMD       (7 + ali15x3_smba)
  73#define SMBHSTADD       (3 + ali15x3_smba)
  74#define SMBHSTDAT0      (4 + ali15x3_smba)
  75#define SMBHSTDAT1      (5 + ali15x3_smba)
  76#define SMBBLKDAT       (6 + ali15x3_smba)
  77
  78/* PCI Address Constants */
  79#define SMBCOM          0x004
  80#define SMBBA           0x014
  81#define SMBATPC         0x05B   /* used to unlock xxxBA registers */
  82#define SMBHSTCFG       0x0E0
  83#define SMBSLVC         0x0E1
  84#define SMBCLK          0x0E2
  85#define SMBREV          0x008
  86
  87/* Other settings */
  88#define MAX_TIMEOUT             200     /* times 1/100 sec */
  89#define ALI15X3_SMB_IOSIZE      32
  90
  91/* this is what the Award 1004 BIOS sets them to on a ASUS P5A MB.
  92   We don't use these here. If the bases aren't set to some value we
  93   tell user to upgrade BIOS and we fail.
  94*/
  95#define ALI15X3_SMB_DEFAULTBASE 0xE800
  96
  97/* ALI15X3 address lock bits */
  98#define ALI15X3_LOCK            0x06
  99
 100/* ALI15X3 command constants */
 101#define ALI15X3_ABORT           0x02
 102#define ALI15X3_T_OUT           0x04
 103#define ALI15X3_QUICK           0x00
 104#define ALI15X3_BYTE            0x10
 105#define ALI15X3_BYTE_DATA       0x20
 106#define ALI15X3_WORD_DATA       0x30
 107#define ALI15X3_BLOCK_DATA      0x40
 108#define ALI15X3_BLOCK_CLR       0x80
 109
 110/* ALI15X3 status register bits */
 111#define ALI15X3_STS_IDLE        0x04
 112#define ALI15X3_STS_BUSY        0x08
 113#define ALI15X3_STS_DONE        0x10
 114#define ALI15X3_STS_DEV         0x20    /* device error */
 115#define ALI15X3_STS_COLL        0x40    /* collision or no response */
 116#define ALI15X3_STS_TERM        0x80    /* terminated by abort */
 117#define ALI15X3_STS_ERR         0xE0    /* all the bad error bits */
 118
 119
 120/* If force_addr is set to anything different from 0, we forcibly enable
 121   the device at the given address. */
 122static u16 force_addr;
 123module_param(force_addr, ushort, 0);
 124MODULE_PARM_DESC(force_addr,
 125                 "Initialize the base address of the i2c controller");
 126
 127static struct pci_driver ali15x3_driver;
 128static unsigned short ali15x3_smba;
 129
 130static int ali15x3_setup(struct pci_dev *ALI15X3_dev)
 131{
 132        u16 a;
 133        unsigned char temp;
 134
 135        /* Check the following things:
 136                - SMB I/O address is initialized
 137                - Device is enabled
 138                - We can use the addresses
 139        */
 140
 141        /* Unlock the register.
 142           The data sheet says that the address registers are read-only
 143           if the lock bits are 1, but in fact the address registers
 144           are zero unless you clear the lock bits.
 145        */
 146        pci_read_config_byte(ALI15X3_dev, SMBATPC, &temp);
 147        if (temp & ALI15X3_LOCK) {
 148                temp &= ~ALI15X3_LOCK;
 149                pci_write_config_byte(ALI15X3_dev, SMBATPC, temp);
 150        }
 151
 152        /* Determine the address of the SMBus area */
 153        pci_read_config_word(ALI15X3_dev, SMBBA, &ali15x3_smba);
 154        ali15x3_smba &= (0xffff & ~(ALI15X3_SMB_IOSIZE - 1));
 155        if (ali15x3_smba == 0 && force_addr == 0) {
 156                dev_err(&ALI15X3_dev->dev, "ALI15X3_smb region uninitialized "
 157                        "- upgrade BIOS or use force_addr=0xaddr\n");
 158                return -ENODEV;
 159        }
 160
 161        if(force_addr)
 162                ali15x3_smba = force_addr & ~(ALI15X3_SMB_IOSIZE - 1);
 163
 164        if (acpi_check_region(ali15x3_smba, ALI15X3_SMB_IOSIZE,
 165                              ali15x3_driver.name))
 166                return -EBUSY;
 167
 168        if (!request_region(ali15x3_smba, ALI15X3_SMB_IOSIZE,
 169                            ali15x3_driver.name)) {
 170                dev_err(&ALI15X3_dev->dev,
 171                        "ALI15X3_smb region 0x%x already in use!\n",
 172                        ali15x3_smba);
 173                return -ENODEV;
 174        }
 175
 176        if(force_addr) {
 177                dev_info(&ALI15X3_dev->dev, "forcing ISA address 0x%04X\n",
 178                        ali15x3_smba);
 179                if (PCIBIOS_SUCCESSFUL != pci_write_config_word(ALI15X3_dev,
 180                                                                SMBBA,
 181                                                                ali15x3_smba))
 182                        goto error;
 183                if (PCIBIOS_SUCCESSFUL != pci_read_config_word(ALI15X3_dev,
 184                                                                SMBBA, &a))
 185                        goto error;
 186                if ((a & ~(ALI15X3_SMB_IOSIZE - 1)) != ali15x3_smba) {
 187                        /* make sure it works */
 188                        dev_err(&ALI15X3_dev->dev,
 189                                "force address failed - not supported?\n");
 190                        goto error;
 191                }
 192        }
 193        /* check if whole device is enabled */
 194        pci_read_config_byte(ALI15X3_dev, SMBCOM, &temp);
 195        if ((temp & 1) == 0) {
 196                dev_info(&ALI15X3_dev->dev, "enabling SMBus device\n");
 197                pci_write_config_byte(ALI15X3_dev, SMBCOM, temp | 0x01);
 198        }
 199
 200        /* Is SMB Host controller enabled? */
 201        pci_read_config_byte(ALI15X3_dev, SMBHSTCFG, &temp);
 202        if ((temp & 1) == 0) {
 203                dev_info(&ALI15X3_dev->dev, "enabling SMBus controller\n");
 204                pci_write_config_byte(ALI15X3_dev, SMBHSTCFG, temp | 0x01);
 205        }
 206
 207        /* set SMB clock to 74KHz as recommended in data sheet */
 208        pci_write_config_byte(ALI15X3_dev, SMBCLK, 0x20);
 209
 210        /*
 211          The interrupt routing for SMB is set up in register 0x77 in the
 212          1533 ISA Bridge device, NOT in the 7101 device.
 213          Don't bother with finding the 1533 device and reading the register.
 214        if ((....... & 0x0F) == 1)
 215                dev_dbg(&ALI15X3_dev->dev, "ALI15X3 using Interrupt 9 for SMBus.\n");
 216        */
 217        pci_read_config_byte(ALI15X3_dev, SMBREV, &temp);
 218        dev_dbg(&ALI15X3_dev->dev, "SMBREV = 0x%X\n", temp);
 219        dev_dbg(&ALI15X3_dev->dev, "iALI15X3_smba = 0x%X\n", ali15x3_smba);
 220
 221        return 0;
 222error:
 223        release_region(ali15x3_smba, ALI15X3_SMB_IOSIZE);
 224        return -ENODEV;
 225}
 226
 227/* Another internally used function */
 228static int ali15x3_transaction(struct i2c_adapter *adap)
 229{
 230        int temp;
 231        int result = 0;
 232        int timeout = 0;
 233
 234        dev_dbg(&adap->dev, "Transaction (pre): STS=%02x, CNT=%02x, CMD=%02x, "
 235                "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTSTS),
 236                inb_p(SMBHSTCNT), inb_p(SMBHSTCMD), inb_p(SMBHSTADD),
 237                inb_p(SMBHSTDAT0), inb_p(SMBHSTDAT1));
 238
 239        /* get status */
 240        temp = inb_p(SMBHSTSTS);
 241
 242        /* Make sure the SMBus host is ready to start transmitting */
 243        /* Check the busy bit first */
 244        if (temp & ALI15X3_STS_BUSY) {
 245        /*
 246           If the host controller is still busy, it may have timed out in the
 247           previous transaction, resulting in a "SMBus Timeout" Dev.
 248           I've tried the following to reset a stuck busy bit.
 249                1. Reset the controller with an ABORT command.
 250                   (this doesn't seem to clear the controller if an external
 251                   device is hung)
 252                2. Reset the controller and the other SMBus devices with a
 253                   T_OUT command.  (this clears the host busy bit if an
 254                   external device is hung, but it comes back upon a new access
 255                   to a device)
 256                3. Disable and reenable the controller in SMBHSTCFG
 257           Worst case, nothing seems to work except power reset.
 258        */
 259        /* Abort - reset the host controller */
 260        /*
 261           Try resetting entire SMB bus, including other devices -
 262           This may not work either - it clears the BUSY bit but
 263           then the BUSY bit may come back on when you try and use the chip again.
 264           If that's the case you are stuck.
 265        */
 266                dev_info(&adap->dev, "Resetting entire SMB Bus to "
 267                        "clear busy condition (%02x)\n", temp);
 268                outb_p(ALI15X3_T_OUT, SMBHSTCNT);
 269                temp = inb_p(SMBHSTSTS);
 270        }
 271
 272        /* now check the error bits and the busy bit */
 273        if (temp & (ALI15X3_STS_ERR | ALI15X3_STS_BUSY)) {
 274                /* do a clear-on-write */
 275                outb_p(0xFF, SMBHSTSTS);
 276                if ((temp = inb_p(SMBHSTSTS)) &
 277                    (ALI15X3_STS_ERR | ALI15X3_STS_BUSY)) {
 278                        /* this is probably going to be correctable only by a power reset
 279                           as one of the bits now appears to be stuck */
 280                        /* This may be a bus or device with electrical problems. */
 281                        dev_err(&adap->dev, "SMBus reset failed! (0x%02x) - "
 282                                "controller or device on bus is probably hung\n",
 283                                temp);
 284                        return -EBUSY;
 285                }
 286        } else {
 287                /* check and clear done bit */
 288                if (temp & ALI15X3_STS_DONE) {
 289                        outb_p(temp, SMBHSTSTS);
 290                }
 291        }
 292
 293        /* start the transaction by writing anything to the start register */
 294        outb_p(0xFF, SMBHSTSTART);
 295
 296        /* We will always wait for a fraction of a second! */
 297        timeout = 0;
 298        do {
 299                msleep(1);
 300                temp = inb_p(SMBHSTSTS);
 301        } while ((!(temp & (ALI15X3_STS_ERR | ALI15X3_STS_DONE)))
 302                 && (timeout++ < MAX_TIMEOUT));
 303
 304        /* If the SMBus is still busy, we give up */
 305        if (timeout > MAX_TIMEOUT) {
 306                result = -ETIMEDOUT;
 307                dev_err(&adap->dev, "SMBus Timeout!\n");
 308        }
 309
 310        if (temp & ALI15X3_STS_TERM) {
 311                result = -EIO;
 312                dev_dbg(&adap->dev, "Error: Failed bus transaction\n");
 313        }
 314
 315        /*
 316          Unfortunately the ALI SMB controller maps "no response" and "bus
 317          collision" into a single bit. No response is the usual case so don't
 318          do a printk.
 319          This means that bus collisions go unreported.
 320        */
 321        if (temp & ALI15X3_STS_COLL) {
 322                result = -ENXIO;
 323                dev_dbg(&adap->dev,
 324                        "Error: no response or bus collision ADD=%02x\n",
 325                        inb_p(SMBHSTADD));
 326        }
 327
 328        /* haven't ever seen this */
 329        if (temp & ALI15X3_STS_DEV) {
 330                result = -EIO;
 331                dev_err(&adap->dev, "Error: device error\n");
 332        }
 333        dev_dbg(&adap->dev, "Transaction (post): STS=%02x, CNT=%02x, CMD=%02x, "
 334                "ADD=%02x, DAT0=%02x, DAT1=%02x\n", inb_p(SMBHSTSTS),
 335                inb_p(SMBHSTCNT), inb_p(SMBHSTCMD), inb_p(SMBHSTADD),
 336                inb_p(SMBHSTDAT0), inb_p(SMBHSTDAT1));
 337        return result;
 338}
 339
 340/* Return negative errno on error. */
 341static s32 ali15x3_access(struct i2c_adapter * adap, u16 addr,
 342                   unsigned short flags, char read_write, u8 command,
 343                   int size, union i2c_smbus_data * data)
 344{
 345        int i, len;
 346        int temp;
 347        int timeout;
 348
 349        /* clear all the bits (clear-on-write) */
 350        outb_p(0xFF, SMBHSTSTS);
 351        /* make sure SMBus is idle */
 352        temp = inb_p(SMBHSTSTS);
 353        for (timeout = 0;
 354             (timeout < MAX_TIMEOUT) && !(temp & ALI15X3_STS_IDLE);
 355             timeout++) {
 356                msleep(1);
 357                temp = inb_p(SMBHSTSTS);
 358        }
 359        if (timeout >= MAX_TIMEOUT) {
 360                dev_err(&adap->dev, "Idle wait Timeout! STS=0x%02x\n", temp);
 361        }
 362
 363        switch (size) {
 364        case I2C_SMBUS_QUICK:
 365                outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
 366                       SMBHSTADD);
 367                size = ALI15X3_QUICK;
 368                break;
 369        case I2C_SMBUS_BYTE:
 370                outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
 371                       SMBHSTADD);
 372                if (read_write == I2C_SMBUS_WRITE)
 373                        outb_p(command, SMBHSTCMD);
 374                size = ALI15X3_BYTE;
 375                break;
 376        case I2C_SMBUS_BYTE_DATA:
 377                outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
 378                       SMBHSTADD);
 379                outb_p(command, SMBHSTCMD);
 380                if (read_write == I2C_SMBUS_WRITE)
 381                        outb_p(data->byte, SMBHSTDAT0);
 382                size = ALI15X3_BYTE_DATA;
 383                break;
 384        case I2C_SMBUS_WORD_DATA:
 385                outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
 386                       SMBHSTADD);
 387                outb_p(command, SMBHSTCMD);
 388                if (read_write == I2C_SMBUS_WRITE) {
 389                        outb_p(data->word & 0xff, SMBHSTDAT0);
 390                        outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
 391                }
 392                size = ALI15X3_WORD_DATA;
 393                break;
 394        case I2C_SMBUS_BLOCK_DATA:
 395                outb_p(((addr & 0x7f) << 1) | (read_write & 0x01),
 396                       SMBHSTADD);
 397                outb_p(command, SMBHSTCMD);
 398                if (read_write == I2C_SMBUS_WRITE) {
 399                        len = data->block[0];
 400                        if (len < 0) {
 401                                len = 0;
 402                                data->block[0] = len;
 403                        }
 404                        if (len > 32) {
 405                                len = 32;
 406                                data->block[0] = len;
 407                        }
 408                        outb_p(len, SMBHSTDAT0);
 409                        /* Reset SMBBLKDAT */
 410                        outb_p(inb_p(SMBHSTCNT) | ALI15X3_BLOCK_CLR, SMBHSTCNT);
 411                        for (i = 1; i <= len; i++)
 412                                outb_p(data->block[i], SMBBLKDAT);
 413                }
 414                size = ALI15X3_BLOCK_DATA;
 415                break;
 416        default:
 417                dev_warn(&adap->dev, "Unsupported transaction %d\n", size);
 418                return -EOPNOTSUPP;
 419        }
 420
 421        outb_p(size, SMBHSTCNT);        /* output command */
 422
 423        temp = ali15x3_transaction(adap);
 424        if (temp)
 425                return temp;
 426
 427        if ((read_write == I2C_SMBUS_WRITE) || (size == ALI15X3_QUICK))
 428                return 0;
 429
 430
 431        switch (size) {
 432        case ALI15X3_BYTE:      /* Result put in SMBHSTDAT0 */
 433                data->byte = inb_p(SMBHSTDAT0);
 434                break;
 435        case ALI15X3_BYTE_DATA:
 436                data->byte = inb_p(SMBHSTDAT0);
 437                break;
 438        case ALI15X3_WORD_DATA:
 439                data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
 440                break;
 441        case ALI15X3_BLOCK_DATA:
 442                len = inb_p(SMBHSTDAT0);
 443                if (len > 32)
 444                        len = 32;
 445                data->block[0] = len;
 446                /* Reset SMBBLKDAT */
 447                outb_p(inb_p(SMBHSTCNT) | ALI15X3_BLOCK_CLR, SMBHSTCNT);
 448                for (i = 1; i <= data->block[0]; i++) {
 449                        data->block[i] = inb_p(SMBBLKDAT);
 450                        dev_dbg(&adap->dev, "Blk: len=%d, i=%d, data=%02x\n",
 451                                len, i, data->block[i]);
 452                }
 453                break;
 454        }
 455        return 0;
 456}
 457
 458static u32 ali15x3_func(struct i2c_adapter *adapter)
 459{
 460        return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
 461            I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
 462            I2C_FUNC_SMBUS_BLOCK_DATA;
 463}
 464
 465static const struct i2c_algorithm smbus_algorithm = {
 466        .smbus_xfer     = ali15x3_access,
 467        .functionality  = ali15x3_func,
 468};
 469
 470static struct i2c_adapter ali15x3_adapter = {
 471        .owner          = THIS_MODULE,
 472        .class          = I2C_CLASS_HWMON | I2C_CLASS_SPD,
 473        .algo           = &smbus_algorithm,
 474};
 475
 476static const struct pci_device_id ali15x3_ids[] = {
 477        { PCI_DEVICE(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M7101) },
 478        { 0, }
 479};
 480
 481MODULE_DEVICE_TABLE (pci, ali15x3_ids);
 482
 483static int ali15x3_probe(struct pci_dev *dev, const struct pci_device_id *id)
 484{
 485        if (ali15x3_setup(dev)) {
 486                dev_err(&dev->dev,
 487                        "ALI15X3 not detected, module not inserted.\n");
 488                return -ENODEV;
 489        }
 490
 491        /* set up the sysfs linkage to our parent device */
 492        ali15x3_adapter.dev.parent = &dev->dev;
 493
 494        snprintf(ali15x3_adapter.name, sizeof(ali15x3_adapter.name),
 495                "SMBus ALI15X3 adapter at %04x", ali15x3_smba);
 496        return i2c_add_adapter(&ali15x3_adapter);
 497}
 498
 499static void ali15x3_remove(struct pci_dev *dev)
 500{
 501        i2c_del_adapter(&ali15x3_adapter);
 502        release_region(ali15x3_smba, ALI15X3_SMB_IOSIZE);
 503}
 504
 505static struct pci_driver ali15x3_driver = {
 506        .name           = "ali15x3_smbus",
 507        .id_table       = ali15x3_ids,
 508        .probe          = ali15x3_probe,
 509        .remove         = ali15x3_remove,
 510};
 511
 512module_pci_driver(ali15x3_driver);
 513
 514MODULE_AUTHOR ("Frodo Looijaard <frodol@dds.nl>, "
 515                "Philip Edelbrock <phil@netroedge.com>, "
 516                "and Mark D. Studebaker <mdsxyz123@yahoo.com>");
 517MODULE_DESCRIPTION("ALI15X3 SMBus driver");
 518MODULE_LICENSE("GPL");
 519