358 lines
8.7 KiB
C
358 lines
8.7 KiB
C
/* $NetBSD: piixpm.c,v 1.2 2006/05/07 01:54:39 jmcneill Exp $ */
|
|
/* $OpenBSD: piixpm.c,v 1.20 2006/02/27 08:25:02 grange Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
/*
|
|
* Intel PIIX and compatible Power Management controller driver.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: piixpm.c,v 1.2 2006/05/07 01:54:39 jmcneill Exp $");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/device.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/lock.h>
|
|
#include <sys/proc.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <dev/pci/pcidevs.h>
|
|
#include <dev/pci/pcireg.h>
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/piixpmreg.h>
|
|
|
|
#include <dev/i2c/i2cvar.h>
|
|
|
|
#ifdef PIIXPM_DEBUG
|
|
#define DPRINTF(x) printf x
|
|
#else
|
|
#define DPRINTF(x)
|
|
#endif
|
|
|
|
#define PIIXPM_DELAY 200
|
|
#define PIIXPM_TIMEOUT 1
|
|
|
|
struct piixpm_softc {
|
|
struct device sc_dev;
|
|
|
|
bus_space_tag_t sc_iot;
|
|
bus_space_handle_t sc_ioh;
|
|
void * sc_ih;
|
|
int sc_poll;
|
|
|
|
struct i2c_controller sc_i2c_tag;
|
|
struct lock sc_i2c_lock;
|
|
struct {
|
|
i2c_op_t op;
|
|
void * buf;
|
|
size_t len;
|
|
int flags;
|
|
volatile int error;
|
|
} sc_i2c_xfer;
|
|
};
|
|
|
|
int piixpm_match(struct device *, struct cfdata *, void *);
|
|
void piixpm_attach(struct device *, struct device *, void *);
|
|
|
|
int piixpm_i2c_acquire_bus(void *, int);
|
|
void piixpm_i2c_release_bus(void *, int);
|
|
int piixpm_i2c_exec(void *, i2c_op_t, i2c_addr_t, const void *, size_t,
|
|
void *, size_t, int);
|
|
|
|
int piixpm_intr(void *);
|
|
|
|
CFATTACH_DECL(piixpm, sizeof(struct piixpm_softc),
|
|
piixpm_match, piixpm_attach, NULL, NULL);
|
|
|
|
int
|
|
piixpm_match(struct device *parent, struct cfdata *match, void *aux)
|
|
{
|
|
struct pci_attach_args *pa;
|
|
|
|
pa = (struct pci_attach_args *)aux;
|
|
switch (PCI_VENDOR(pa->pa_id)) {
|
|
case PCI_VENDOR_INTEL:
|
|
switch (PCI_PRODUCT(pa->pa_id)) {
|
|
case PCI_PRODUCT_INTEL_82371AB_PMC:
|
|
case PCI_PRODUCT_INTEL_82440MX_PMC:
|
|
return 1;
|
|
}
|
|
break;
|
|
case PCI_VENDOR_ATI:
|
|
switch (PCI_PRODUCT(pa->pa_id)) {
|
|
case PCI_PRODUCT_ATI_SB200_SMB:
|
|
return 1;
|
|
}
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
piixpm_attach(struct device *parent, struct device *self, void *aux)
|
|
{
|
|
struct piixpm_softc *sc = (struct piixpm_softc *)self;
|
|
struct pci_attach_args *pa = aux;
|
|
struct i2cbus_attach_args iba;
|
|
pcireg_t base, conf;
|
|
pci_intr_handle_t ih;
|
|
const char *intrstr = NULL;
|
|
|
|
/* Read configuration */
|
|
conf = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_SMB_HOSTC);
|
|
DPRINTF((": conf 0x%x", conf));
|
|
|
|
if ((conf & PIIX_SMB_HOSTC_HSTEN) == 0) {
|
|
printf(": SMBus disabled\n");
|
|
return;
|
|
}
|
|
|
|
/* Map I/O space */
|
|
sc->sc_iot = pa->pa_iot;
|
|
base = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_SMB_BASE) & 0xffff;
|
|
if (bus_space_map(sc->sc_iot, PCI_MAPREG_IO_ADDR(base),
|
|
PIIX_SMB_SIZE, 0, &sc->sc_ioh)) {
|
|
printf(": can't map I/O space\n");
|
|
return;
|
|
}
|
|
|
|
sc->sc_poll = 1;
|
|
if ((conf & PIIX_SMB_HOSTC_INTMASK) == PIIX_SMB_HOSTC_SMI) {
|
|
/* No PCI IRQ */
|
|
printf(": SMI");
|
|
} else if ((conf & PIIX_SMB_HOSTC_INTMASK) == PIIX_SMB_HOSTC_IRQ) {
|
|
/* Install interrupt handler */
|
|
if (pci_intr_map(pa, &ih) == 0) {
|
|
intrstr = pci_intr_string(pa->pa_pc, ih);
|
|
sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO,
|
|
piixpm_intr, sc);
|
|
if (sc->sc_ih != NULL) {
|
|
printf(": %s", intrstr);
|
|
sc->sc_poll = 0;
|
|
}
|
|
}
|
|
if (sc->sc_poll)
|
|
printf(": polling");
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
/* Attach I2C bus */
|
|
lockinit(&sc->sc_i2c_lock, PRIBIO | PCATCH, "iiclk", 0, 0);
|
|
sc->sc_i2c_tag.ic_cookie = sc;
|
|
sc->sc_i2c_tag.ic_acquire_bus = piixpm_i2c_acquire_bus;
|
|
sc->sc_i2c_tag.ic_release_bus = piixpm_i2c_release_bus;
|
|
sc->sc_i2c_tag.ic_exec = piixpm_i2c_exec;
|
|
|
|
bzero(&iba, sizeof(iba));
|
|
iba.iba_name = "iic";
|
|
iba.iba_tag = &sc->sc_i2c_tag;
|
|
config_found(self, &iba, iicbus_print);
|
|
|
|
return;
|
|
}
|
|
|
|
int
|
|
piixpm_i2c_acquire_bus(void *cookie, int flags)
|
|
{
|
|
struct piixpm_softc *sc = cookie;
|
|
|
|
if (cold || sc->sc_poll || (flags & I2C_F_POLL))
|
|
return (0);
|
|
|
|
return (lockmgr(&sc->sc_i2c_lock, LK_EXCLUSIVE, NULL));
|
|
}
|
|
|
|
void
|
|
piixpm_i2c_release_bus(void *cookie, int flags)
|
|
{
|
|
struct piixpm_softc *sc = cookie;
|
|
|
|
if (cold || sc->sc_poll || (flags & I2C_F_POLL))
|
|
return;
|
|
|
|
lockmgr(&sc->sc_i2c_lock, LK_RELEASE, NULL);
|
|
}
|
|
|
|
int
|
|
piixpm_i2c_exec(void *cookie, i2c_op_t op, i2c_addr_t addr,
|
|
const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
|
|
{
|
|
struct piixpm_softc *sc = cookie;
|
|
const u_int8_t *b;
|
|
u_int8_t ctl = 0, st;
|
|
int retries;
|
|
|
|
DPRINTF(("%s: exec: op %d, addr 0x%x, cmdlen %d, len %d, flags 0x%x\n",
|
|
sc->sc_dev.dv_xname, op, addr, cmdlen, len, flags));
|
|
|
|
/* Wait for bus to be idle */
|
|
for (retries = 100; retries > 0; retries--) {
|
|
st = bus_space_read_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HS);
|
|
if (!(st & PIIX_SMB_HS_BUSY))
|
|
break;
|
|
DELAY(PIIXPM_DELAY);
|
|
}
|
|
DPRINTF(("%s: exec: st 0x%b\n", sc->sc_dev.dv_xname, st,
|
|
PIIX_SMB_HS_BITS));
|
|
if (st & PIIX_SMB_HS_BUSY)
|
|
return (1);
|
|
|
|
if (cold || sc->sc_poll)
|
|
flags |= I2C_F_POLL;
|
|
|
|
if (!I2C_OP_STOP_P(op) || cmdlen > 1 || len > 2)
|
|
return (1);
|
|
|
|
/* Setup transfer */
|
|
sc->sc_i2c_xfer.op = op;
|
|
sc->sc_i2c_xfer.buf = buf;
|
|
sc->sc_i2c_xfer.len = len;
|
|
sc->sc_i2c_xfer.flags = flags;
|
|
sc->sc_i2c_xfer.error = 0;
|
|
|
|
/* Set slave address and transfer direction */
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_TXSLVA,
|
|
PIIX_SMB_TXSLVA_ADDR(addr) |
|
|
(I2C_OP_READ_P(op) ? PIIX_SMB_TXSLVA_READ : 0));
|
|
|
|
b = cmdbuf;
|
|
if (cmdlen > 0)
|
|
/* Set command byte */
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HCMD, b[0]);
|
|
|
|
if (I2C_OP_WRITE_P(op)) {
|
|
/* Write data */
|
|
b = buf;
|
|
if (len > 0)
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh,
|
|
PIIX_SMB_HD0, b[0]);
|
|
if (len > 1)
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh,
|
|
PIIX_SMB_HD1, b[1]);
|
|
}
|
|
|
|
/* Set SMBus command */
|
|
if (len == 0)
|
|
ctl = PIIX_SMB_HC_CMD_BYTE;
|
|
else if (len == 1)
|
|
ctl = PIIX_SMB_HC_CMD_BDATA;
|
|
else if (len == 2)
|
|
ctl = PIIX_SMB_HC_CMD_WDATA;
|
|
|
|
if ((flags & I2C_F_POLL) == 0)
|
|
ctl |= PIIX_SMB_HC_INTREN;
|
|
|
|
/* Start transaction */
|
|
ctl |= PIIX_SMB_HC_START;
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HC, ctl);
|
|
|
|
if (flags & I2C_F_POLL) {
|
|
/* Poll for completion */
|
|
DELAY(PIIXPM_DELAY);
|
|
for (retries = 1000; retries > 0; retries--) {
|
|
st = bus_space_read_1(sc->sc_iot, sc->sc_ioh,
|
|
PIIX_SMB_HS);
|
|
if ((st & PIIX_SMB_HS_BUSY) == 0)
|
|
break;
|
|
DELAY(PIIXPM_DELAY);
|
|
}
|
|
if (st & PIIX_SMB_HS_BUSY)
|
|
goto timeout;
|
|
piixpm_intr(sc);
|
|
} else {
|
|
/* Wait for interrupt */
|
|
if (tsleep(sc, PRIBIO, "iicexec", PIIXPM_TIMEOUT * hz))
|
|
goto timeout;
|
|
}
|
|
|
|
if (sc->sc_i2c_xfer.error)
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
timeout:
|
|
/*
|
|
* Transfer timeout. Kill the transaction and clear status bits.
|
|
*/
|
|
printf("%s: timeout, status 0x%x\n", sc->sc_dev.dv_xname, st);
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HC,
|
|
PIIX_SMB_HC_KILL);
|
|
DELAY(PIIXPM_DELAY);
|
|
st = bus_space_read_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HS);
|
|
if ((st & PIIX_SMB_HS_FAILED) == 0)
|
|
printf("%s: transaction abort failed, status 0x%x\n",
|
|
sc->sc_dev.dv_xname, st);
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HS, st);
|
|
return (1);
|
|
}
|
|
|
|
int
|
|
piixpm_intr(void *arg)
|
|
{
|
|
struct piixpm_softc *sc = arg;
|
|
u_int8_t st;
|
|
u_int8_t *b;
|
|
size_t len;
|
|
|
|
/* Read status */
|
|
st = bus_space_read_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HS);
|
|
if ((st & PIIX_SMB_HS_BUSY) != 0 || (st & (PIIX_SMB_HS_INTR |
|
|
PIIX_SMB_HS_DEVERR | PIIX_SMB_HS_BUSERR |
|
|
PIIX_SMB_HS_FAILED)) == 0)
|
|
/* Interrupt was not for us */
|
|
return (0);
|
|
|
|
DPRINTF(("%s: intr st 0x%b\n", sc->sc_dev.dv_xname, st,
|
|
PIIX_SMB_HS_BITS));
|
|
|
|
/* Clear status bits */
|
|
bus_space_write_1(sc->sc_iot, sc->sc_ioh, PIIX_SMB_HS, st);
|
|
|
|
/* Check for errors */
|
|
if (st & (PIIX_SMB_HS_DEVERR | PIIX_SMB_HS_BUSERR |
|
|
PIIX_SMB_HS_FAILED)) {
|
|
sc->sc_i2c_xfer.error = 1;
|
|
goto done;
|
|
}
|
|
|
|
if (st & PIIX_SMB_HS_INTR) {
|
|
if (I2C_OP_WRITE_P(sc->sc_i2c_xfer.op))
|
|
goto done;
|
|
|
|
/* Read data */
|
|
b = sc->sc_i2c_xfer.buf;
|
|
len = sc->sc_i2c_xfer.len;
|
|
if (len > 0)
|
|
b[0] = bus_space_read_1(sc->sc_iot, sc->sc_ioh,
|
|
PIIX_SMB_HD0);
|
|
if (len > 1)
|
|
b[1] = bus_space_read_1(sc->sc_iot, sc->sc_ioh,
|
|
PIIX_SMB_HD1);
|
|
}
|
|
|
|
done:
|
|
if ((sc->sc_i2c_xfer.flags & I2C_F_POLL) == 0)
|
|
wakeup(sc);
|
|
return (1);
|
|
}
|