Home | History | Annotate | Line # | Download | only in pci
ichsmb.c revision 1.15
      1  1.15     njoly /*	$NetBSD: ichsmb.c,v 1.15 2008/09/08 20:47:09 njoly Exp $	*/
      2   1.1  kiyohara /*	$OpenBSD: ichiic.c,v 1.18 2007/05/03 09:36:26 dlg Exp $	*/
      3   1.1  kiyohara 
      4   1.1  kiyohara /*
      5   1.1  kiyohara  * Copyright (c) 2005, 2006 Alexander Yurchenko <grange (at) openbsd.org>
      6   1.1  kiyohara  *
      7   1.1  kiyohara  * Permission to use, copy, modify, and distribute this software for any
      8   1.1  kiyohara  * purpose with or without fee is hereby granted, provided that the above
      9   1.1  kiyohara  * copyright notice and this permission notice appear in all copies.
     10   1.1  kiyohara  *
     11   1.1  kiyohara  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     12   1.1  kiyohara  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     13   1.1  kiyohara  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     14   1.1  kiyohara  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     15   1.1  kiyohara  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     16   1.1  kiyohara  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     17   1.1  kiyohara  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     18   1.1  kiyohara  */
     19   1.1  kiyohara 
     20   1.1  kiyohara /*
     21   1.1  kiyohara  * Intel ICH SMBus controller driver.
     22   1.1  kiyohara  */
     23   1.1  kiyohara 
     24   1.6   xtraeme #include <sys/cdefs.h>
     25  1.15     njoly __KERNEL_RCSID(0, "$NetBSD: ichsmb.c,v 1.15 2008/09/08 20:47:09 njoly Exp $");
     26   1.6   xtraeme 
     27   1.1  kiyohara #include <sys/param.h>
     28   1.1  kiyohara #include <sys/device.h>
     29   1.1  kiyohara #include <sys/errno.h>
     30   1.1  kiyohara #include <sys/kernel.h>
     31   1.8   xtraeme #include <sys/rwlock.h>
     32   1.1  kiyohara #include <sys/proc.h>
     33   1.1  kiyohara 
     34  1.10        ad #include <sys/bus.h>
     35   1.1  kiyohara 
     36   1.1  kiyohara #include <dev/pci/pcidevs.h>
     37   1.1  kiyohara #include <dev/pci/pcireg.h>
     38   1.1  kiyohara #include <dev/pci/pcivar.h>
     39   1.1  kiyohara 
     40   1.5   xtraeme #include <dev/ic/i82801lpcreg.h>
     41   1.1  kiyohara 
     42   1.1  kiyohara #include <dev/i2c/i2cvar.h>
     43   1.1  kiyohara 
     44   1.1  kiyohara #ifdef ICHIIC_DEBUG
     45   1.1  kiyohara #define DPRINTF(x) printf x
     46   1.1  kiyohara #else
     47   1.1  kiyohara #define DPRINTF(x)
     48   1.1  kiyohara #endif
     49   1.1  kiyohara 
     50   1.1  kiyohara #define ICHIIC_DELAY	100
     51   1.1  kiyohara #define ICHIIC_TIMEOUT	1
     52   1.1  kiyohara 
     53   1.1  kiyohara struct ichsmb_softc {
     54  1.12  kiyohara 	device_t		sc_dev;
     55   1.1  kiyohara 
     56   1.1  kiyohara 	bus_space_tag_t		sc_iot;
     57   1.1  kiyohara 	bus_space_handle_t	sc_ioh;
     58   1.1  kiyohara 	void *			sc_ih;
     59   1.1  kiyohara 	int			sc_poll;
     60   1.1  kiyohara 
     61   1.1  kiyohara 	struct i2c_controller	sc_i2c_tag;
     62   1.8   xtraeme 	krwlock_t 		sc_i2c_rwlock;
     63   1.1  kiyohara 	struct {
     64   1.1  kiyohara 		i2c_op_t     op;
     65   1.1  kiyohara 		void *       buf;
     66   1.1  kiyohara 		size_t       len;
     67   1.1  kiyohara 		int          flags;
     68   1.1  kiyohara 		volatile int error;
     69   1.1  kiyohara 	}			sc_i2c_xfer;
     70   1.1  kiyohara };
     71   1.1  kiyohara 
     72  1.12  kiyohara static int	ichsmb_match(device_t, struct cfdata *, void *);
     73  1.12  kiyohara static void	ichsmb_attach(device_t, device_t, void *);
     74   1.1  kiyohara 
     75   1.1  kiyohara static int	ichsmb_i2c_acquire_bus(void *, int);
     76   1.1  kiyohara static void	ichsmb_i2c_release_bus(void *, int);
     77   1.1  kiyohara static int	ichsmb_i2c_exec(void *, i2c_op_t, i2c_addr_t, const void *,
     78   1.1  kiyohara 		    size_t, void *, size_t, int);
     79   1.1  kiyohara 
     80   1.1  kiyohara static int	ichsmb_intr(void *);
     81   1.1  kiyohara 
     82   1.1  kiyohara 
     83  1.12  kiyohara CFATTACH_DECL_NEW(ichsmb, sizeof(struct ichsmb_softc),
     84   1.1  kiyohara     ichsmb_match, ichsmb_attach, NULL, NULL);
     85   1.1  kiyohara 
     86   1.1  kiyohara 
     87   1.1  kiyohara static int
     88  1.12  kiyohara ichsmb_match(device_t parent, struct cfdata *match, void *aux)
     89   1.1  kiyohara {
     90   1.1  kiyohara 	struct pci_attach_args *pa = aux;
     91   1.1  kiyohara 
     92   1.1  kiyohara 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL) {
     93   1.1  kiyohara 		switch (PCI_PRODUCT(pa->pa_id)) {
     94   1.1  kiyohara 		case PCI_PRODUCT_INTEL_6300ESB_SMB:
     95   1.1  kiyohara 		case PCI_PRODUCT_INTEL_63XXESB_SMB:
     96   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801AA_SMB:
     97   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801AB_SMB:
     98   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801BA_SMB:
     99   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801CA_SMB:
    100   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801DB_SMB:
    101   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801E_SMB:
    102   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801EB_SMB:
    103   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801FB_SMB:
    104   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801G_SMB:
    105   1.1  kiyohara 		case PCI_PRODUCT_INTEL_82801H_SMB:
    106   1.7   xtraeme 		case PCI_PRODUCT_INTEL_82801I_SMB:
    107   1.1  kiyohara 			return 1;
    108   1.1  kiyohara 		}
    109   1.1  kiyohara 	}
    110   1.1  kiyohara 	return 0;
    111   1.1  kiyohara }
    112   1.1  kiyohara 
    113   1.1  kiyohara static void
    114  1.12  kiyohara ichsmb_attach(device_t parent, device_t self, void *aux)
    115   1.1  kiyohara {
    116  1.12  kiyohara 	struct ichsmb_softc *sc = device_private(self);
    117   1.1  kiyohara 	struct pci_attach_args *pa = aux;
    118   1.1  kiyohara 	struct i2cbus_attach_args iba;
    119   1.1  kiyohara 	pcireg_t conf;
    120   1.1  kiyohara 	bus_size_t iosize;
    121   1.1  kiyohara 	pci_intr_handle_t ih;
    122   1.1  kiyohara 	const char *intrstr = NULL;
    123   1.1  kiyohara 	char devinfo[256];
    124   1.1  kiyohara 
    125  1.12  kiyohara 	sc->sc_dev = self;
    126  1.12  kiyohara 
    127   1.1  kiyohara 	aprint_naive("\n");
    128   1.1  kiyohara 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    129   1.1  kiyohara 	aprint_normal(": %s (rev. 0x%02x)\n", devinfo,
    130   1.1  kiyohara 	    PCI_REVISION(pa->pa_class));
    131   1.1  kiyohara 
    132   1.1  kiyohara 	/* Read configuration */
    133   1.5   xtraeme 	conf = pci_conf_read(pa->pa_pc, pa->pa_tag, LPCIB_SMB_HOSTC);
    134  1.14     njoly 	DPRINTF(("%s: conf 0x%08x", device_xname(sc->sc_dev), conf));
    135   1.1  kiyohara 
    136   1.5   xtraeme 	if ((conf & LPCIB_SMB_HOSTC_HSTEN) == 0) {
    137  1.12  kiyohara 		aprint_error_dev(self, "SMBus disabled\n");
    138   1.1  kiyohara 		return;
    139   1.1  kiyohara 	}
    140   1.1  kiyohara 
    141   1.1  kiyohara 	/* Map I/O space */
    142   1.5   xtraeme 	if (pci_mapreg_map(pa, LPCIB_SMB_BASE, PCI_MAPREG_TYPE_IO, 0,
    143   1.1  kiyohara 	    &sc->sc_iot, &sc->sc_ioh, NULL, &iosize)) {
    144  1.12  kiyohara 		aprint_error_dev(self, "can't map I/O space\n");
    145   1.1  kiyohara 		return;
    146   1.1  kiyohara 	}
    147   1.1  kiyohara 
    148   1.1  kiyohara 	sc->sc_poll = 1;
    149   1.5   xtraeme 	if (conf & LPCIB_SMB_HOSTC_SMIEN) {
    150   1.1  kiyohara 		/* No PCI IRQ */
    151  1.15     njoly 		aprint_normal_dev(self, "interrupting at SMI\n");
    152   1.1  kiyohara 	} else {
    153   1.1  kiyohara 		/* Install interrupt handler */
    154   1.1  kiyohara 		if (pci_intr_map(pa, &ih) == 0) {
    155   1.1  kiyohara 			intrstr = pci_intr_string(pa->pa_pc, ih);
    156   1.1  kiyohara 			sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO,
    157   1.1  kiyohara 			    ichsmb_intr, sc);
    158   1.1  kiyohara 			if (sc->sc_ih != NULL) {
    159  1.12  kiyohara 				aprint_normal_dev(self, "interrupting at %s\n",
    160  1.12  kiyohara 				    intrstr);
    161   1.1  kiyohara 				sc->sc_poll = 0;
    162   1.1  kiyohara 			}
    163   1.1  kiyohara 		}
    164   1.1  kiyohara 		if (sc->sc_poll)
    165  1.12  kiyohara 			aprint_normal_dev(self, "polling\n");
    166   1.1  kiyohara 	}
    167   1.1  kiyohara 
    168   1.1  kiyohara 	/* Attach I2C bus */
    169   1.8   xtraeme 	rw_init(&sc->sc_i2c_rwlock);
    170   1.1  kiyohara 	sc->sc_i2c_tag.ic_cookie = sc;
    171   1.1  kiyohara 	sc->sc_i2c_tag.ic_acquire_bus = ichsmb_i2c_acquire_bus;
    172   1.1  kiyohara 	sc->sc_i2c_tag.ic_release_bus = ichsmb_i2c_release_bus;
    173   1.1  kiyohara 	sc->sc_i2c_tag.ic_exec = ichsmb_i2c_exec;
    174   1.1  kiyohara 
    175   1.1  kiyohara 	bzero(&iba, sizeof(iba));
    176   1.9       riz 	iba.iba_type = I2C_TYPE_SMBUS;
    177   1.1  kiyohara 	iba.iba_tag = &sc->sc_i2c_tag;
    178   1.1  kiyohara 	config_found(self, &iba, iicbus_print);
    179   1.1  kiyohara 
    180  1.11  jmcneill 	if (!pmf_device_register(self, NULL, NULL))
    181  1.11  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    182   1.1  kiyohara }
    183   1.1  kiyohara 
    184   1.1  kiyohara static int
    185   1.1  kiyohara ichsmb_i2c_acquire_bus(void *cookie, int flags)
    186   1.1  kiyohara {
    187   1.1  kiyohara 	struct ichsmb_softc *sc = cookie;
    188   1.1  kiyohara 
    189   1.1  kiyohara 	if (cold || sc->sc_poll || (flags & I2C_F_POLL))
    190   1.8   xtraeme 		return 0;
    191   1.1  kiyohara 
    192   1.8   xtraeme 	rw_enter(&sc->sc_i2c_rwlock, RW_WRITER);
    193   1.8   xtraeme 	return 0;
    194   1.1  kiyohara }
    195   1.1  kiyohara 
    196   1.1  kiyohara static void
    197   1.1  kiyohara ichsmb_i2c_release_bus(void *cookie, int flags)
    198   1.1  kiyohara {
    199   1.1  kiyohara 	struct ichsmb_softc *sc = cookie;
    200   1.1  kiyohara 
    201   1.1  kiyohara 	if (cold || sc->sc_poll || (flags & I2C_F_POLL))
    202   1.1  kiyohara 		return;
    203   1.1  kiyohara 
    204   1.8   xtraeme 	rw_exit(&sc->sc_i2c_rwlock);
    205   1.1  kiyohara }
    206   1.1  kiyohara 
    207   1.1  kiyohara static int
    208   1.1  kiyohara ichsmb_i2c_exec(void *cookie, i2c_op_t op, i2c_addr_t addr,
    209   1.1  kiyohara     const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
    210   1.1  kiyohara {
    211   1.1  kiyohara 	struct ichsmb_softc *sc = cookie;
    212   1.1  kiyohara 	const uint8_t *b;
    213   1.1  kiyohara 	uint8_t ctl = 0, st;
    214   1.1  kiyohara 	int retries;
    215   1.4  kiyohara 	char fbuf[64];
    216   1.1  kiyohara 
    217  1.14     njoly 	DPRINTF(("%s: exec: op %d, addr 0x%02x, cmdlen %zu, len %zu, "
    218  1.14     njoly 	    "flags 0x%02x\n", device_xname(sc->sc_dev), op, addr, cmdlen,
    219   1.1  kiyohara 	    len, flags));
    220   1.1  kiyohara 
    221   1.1  kiyohara 	/* Wait for bus to be idle */
    222   1.1  kiyohara 	for (retries = 100; retries > 0; retries--) {
    223   1.5   xtraeme 		st = bus_space_read_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HS);
    224   1.5   xtraeme 		if (!(st & LPCIB_SMB_HS_BUSY))
    225   1.1  kiyohara 			break;
    226   1.1  kiyohara 		DELAY(ICHIIC_DELAY);
    227   1.1  kiyohara 	}
    228   1.4  kiyohara #ifdef ICHIIC_DEBUG
    229   1.5   xtraeme 	bitmask_snprintf(st, LPCIB_SMB_HS_BITS, fbuf, sizeof(fbuf));
    230  1.14     njoly 	printf("%s: exec: st 0x%s\n", device_xname(sc->sc_dev), fbuf);
    231   1.4  kiyohara #endif
    232   1.5   xtraeme 	if (st & LPCIB_SMB_HS_BUSY)
    233   1.1  kiyohara 		return (1);
    234   1.1  kiyohara 
    235   1.1  kiyohara 	if (cold || sc->sc_poll)
    236   1.1  kiyohara 		flags |= I2C_F_POLL;
    237   1.1  kiyohara 
    238   1.1  kiyohara 	if (!I2C_OP_STOP_P(op) || cmdlen > 1 || len > 2)
    239   1.1  kiyohara 		return (1);
    240   1.1  kiyohara 
    241   1.1  kiyohara 	/* Setup transfer */
    242   1.1  kiyohara 	sc->sc_i2c_xfer.op = op;
    243   1.1  kiyohara 	sc->sc_i2c_xfer.buf = buf;
    244   1.1  kiyohara 	sc->sc_i2c_xfer.len = len;
    245   1.1  kiyohara 	sc->sc_i2c_xfer.flags = flags;
    246   1.1  kiyohara 	sc->sc_i2c_xfer.error = 0;
    247   1.1  kiyohara 
    248   1.1  kiyohara 	/* Set slave address and transfer direction */
    249   1.5   xtraeme 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_TXSLVA,
    250   1.5   xtraeme 	    LPCIB_SMB_TXSLVA_ADDR(addr) |
    251   1.5   xtraeme 	    (I2C_OP_READ_P(op) ? LPCIB_SMB_TXSLVA_READ : 0));
    252   1.1  kiyohara 
    253   1.1  kiyohara 	b = (const uint8_t *)cmdbuf;
    254   1.1  kiyohara 	if (cmdlen > 0)
    255   1.1  kiyohara 		/* Set command byte */
    256   1.5   xtraeme 		bus_space_write_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HCMD, b[0]);
    257   1.1  kiyohara 
    258   1.1  kiyohara 	if (I2C_OP_WRITE_P(op)) {
    259   1.1  kiyohara 		/* Write data */
    260   1.1  kiyohara 		b = buf;
    261   1.1  kiyohara 		if (len > 0)
    262   1.1  kiyohara 			bus_space_write_1(sc->sc_iot, sc->sc_ioh,
    263   1.5   xtraeme 			    LPCIB_SMB_HD0, b[0]);
    264   1.1  kiyohara 		if (len > 1)
    265   1.1  kiyohara 			bus_space_write_1(sc->sc_iot, sc->sc_ioh,
    266   1.5   xtraeme 			    LPCIB_SMB_HD1, b[1]);
    267   1.1  kiyohara 	}
    268   1.1  kiyohara 
    269   1.1  kiyohara 	/* Set SMBus command */
    270   1.1  kiyohara 	if (len == 0)
    271   1.5   xtraeme 		ctl = LPCIB_SMB_HC_CMD_BYTE;
    272   1.1  kiyohara 	else if (len == 1)
    273   1.5   xtraeme 		ctl = LPCIB_SMB_HC_CMD_BDATA;
    274   1.1  kiyohara 	else if (len == 2)
    275   1.5   xtraeme 		ctl = LPCIB_SMB_HC_CMD_WDATA;
    276   1.1  kiyohara 
    277   1.1  kiyohara 	if ((flags & I2C_F_POLL) == 0)
    278   1.5   xtraeme 		ctl |= LPCIB_SMB_HC_INTREN;
    279   1.1  kiyohara 
    280   1.1  kiyohara 	/* Start transaction */
    281   1.5   xtraeme 	ctl |= LPCIB_SMB_HC_START;
    282   1.5   xtraeme 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HC, ctl);
    283   1.1  kiyohara 
    284   1.1  kiyohara 	if (flags & I2C_F_POLL) {
    285   1.1  kiyohara 		/* Poll for completion */
    286   1.1  kiyohara 		DELAY(ICHIIC_DELAY);
    287   1.1  kiyohara 		for (retries = 1000; retries > 0; retries--) {
    288   1.1  kiyohara 			st = bus_space_read_1(sc->sc_iot, sc->sc_ioh,
    289   1.5   xtraeme 			    LPCIB_SMB_HS);
    290   1.5   xtraeme 			if ((st & LPCIB_SMB_HS_BUSY) == 0)
    291   1.1  kiyohara 				break;
    292   1.1  kiyohara 			DELAY(ICHIIC_DELAY);
    293   1.1  kiyohara 		}
    294   1.5   xtraeme 		if (st & LPCIB_SMB_HS_BUSY)
    295   1.1  kiyohara 			goto timeout;
    296   1.1  kiyohara 		ichsmb_intr(sc);
    297   1.1  kiyohara 	} else {
    298   1.1  kiyohara 		/* Wait for interrupt */
    299   1.1  kiyohara 		if (tsleep(sc, PRIBIO, "iicexec", ICHIIC_TIMEOUT * hz))
    300   1.1  kiyohara 			goto timeout;
    301   1.1  kiyohara 	}
    302   1.1  kiyohara 
    303   1.1  kiyohara 	if (sc->sc_i2c_xfer.error)
    304   1.1  kiyohara 		return (1);
    305   1.1  kiyohara 
    306   1.1  kiyohara 	return (0);
    307   1.1  kiyohara 
    308   1.1  kiyohara timeout:
    309   1.1  kiyohara 	/*
    310   1.1  kiyohara 	 * Transfer timeout. Kill the transaction and clear status bits.
    311   1.1  kiyohara 	 */
    312   1.5   xtraeme 	bitmask_snprintf(st, LPCIB_SMB_HS_BITS, fbuf, sizeof(fbuf));
    313  1.12  kiyohara 	aprint_error_dev(sc->sc_dev,
    314  1.12  kiyohara 	    "exec: op %d, addr 0x%02x, cmdlen %zd, len %zd, "
    315   1.4  kiyohara 	    "flags 0x%02x: timeout, status 0x%s\n",
    316  1.12  kiyohara 	    op, addr, cmdlen, len, flags, fbuf);
    317   1.5   xtraeme 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HC,
    318   1.5   xtraeme 	    LPCIB_SMB_HC_KILL);
    319   1.1  kiyohara 	DELAY(ICHIIC_DELAY);
    320   1.5   xtraeme 	st = bus_space_read_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HS);
    321   1.5   xtraeme 	if ((st & LPCIB_SMB_HS_FAILED) == 0) {
    322   1.5   xtraeme 		bitmask_snprintf(st, LPCIB_SMB_HS_BITS, fbuf, sizeof(fbuf));
    323  1.12  kiyohara 		aprint_error_dev(sc->sc_dev, "abort failed, status 0x%s\n",
    324  1.12  kiyohara 		    fbuf);
    325   1.4  kiyohara 	}
    326   1.5   xtraeme 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HS, st);
    327   1.1  kiyohara 	return (1);
    328   1.1  kiyohara }
    329   1.1  kiyohara 
    330   1.1  kiyohara static int
    331   1.1  kiyohara ichsmb_intr(void *arg)
    332   1.1  kiyohara {
    333   1.1  kiyohara 	struct ichsmb_softc *sc = arg;
    334   1.1  kiyohara 	uint8_t st;
    335   1.1  kiyohara 	uint8_t *b;
    336   1.1  kiyohara 	size_t len;
    337   1.4  kiyohara #ifdef ICHIIC_DEBUG
    338   1.4  kiyohara 	char fbuf[64];
    339   1.4  kiyohara #endif
    340   1.1  kiyohara 
    341   1.1  kiyohara 	/* Read status */
    342   1.5   xtraeme 	st = bus_space_read_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HS);
    343   1.5   xtraeme 	if ((st & LPCIB_SMB_HS_BUSY) != 0 || (st & (LPCIB_SMB_HS_INTR |
    344   1.5   xtraeme 	    LPCIB_SMB_HS_DEVERR | LPCIB_SMB_HS_BUSERR | LPCIB_SMB_HS_FAILED |
    345   1.5   xtraeme 	    LPCIB_SMB_HS_SMBAL | LPCIB_SMB_HS_BDONE)) == 0)
    346   1.1  kiyohara 		/* Interrupt was not for us */
    347   1.1  kiyohara 		return (0);
    348   1.1  kiyohara 
    349   1.4  kiyohara #ifdef ICHIIC_DEBUG
    350   1.5   xtraeme 	bitmask_snprintf(st, LPCIB_SMB_HS_BITS, fbuf, sizeof(fbuf));
    351  1.12  kiyohara 	printf("%s: intr st 0x%s\n", device_xname(sc->sc_dev), fbuf);
    352   1.4  kiyohara #endif
    353   1.1  kiyohara 
    354   1.1  kiyohara 	/* Clear status bits */
    355   1.5   xtraeme 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, LPCIB_SMB_HS, st);
    356   1.1  kiyohara 
    357   1.1  kiyohara 	/* Check for errors */
    358   1.5   xtraeme 	if (st & (LPCIB_SMB_HS_DEVERR | LPCIB_SMB_HS_BUSERR | LPCIB_SMB_HS_FAILED)) {
    359   1.1  kiyohara 		sc->sc_i2c_xfer.error = 1;
    360   1.1  kiyohara 		goto done;
    361   1.1  kiyohara 	}
    362   1.1  kiyohara 
    363   1.5   xtraeme 	if (st & LPCIB_SMB_HS_INTR) {
    364   1.1  kiyohara 		if (I2C_OP_WRITE_P(sc->sc_i2c_xfer.op))
    365   1.1  kiyohara 			goto done;
    366   1.1  kiyohara 
    367   1.1  kiyohara 		/* Read data */
    368   1.1  kiyohara 		b = sc->sc_i2c_xfer.buf;
    369   1.1  kiyohara 		len = sc->sc_i2c_xfer.len;
    370   1.1  kiyohara 		if (len > 0)
    371   1.1  kiyohara 			b[0] = bus_space_read_1(sc->sc_iot, sc->sc_ioh,
    372   1.5   xtraeme 			    LPCIB_SMB_HD0);
    373   1.1  kiyohara 		if (len > 1)
    374   1.1  kiyohara 			b[1] = bus_space_read_1(sc->sc_iot, sc->sc_ioh,
    375   1.5   xtraeme 			    LPCIB_SMB_HD1);
    376   1.1  kiyohara 	}
    377   1.1  kiyohara 
    378   1.1  kiyohara done:
    379   1.1  kiyohara 	if ((sc->sc_i2c_xfer.flags & I2C_F_POLL) == 0)
    380   1.1  kiyohara 		wakeup(sc);
    381   1.1  kiyohara 	return (1);
    382   1.1  kiyohara }
    383