Home | History | Annotate | Line # | Download | only in pci
piixpm.c revision 1.55
      1  1.55   thorpej /* $NetBSD: piixpm.c,v 1.55 2019/12/22 23:23:32 thorpej Exp $ */
      2  1.54   msaitoh /*	$OpenBSD: piixpm.c,v 1.39 2013/10/01 20:06:02 sf Exp $	*/
      3   1.1  jmcneill 
      4   1.1  jmcneill /*
      5   1.1  jmcneill  * Copyright (c) 2005, 2006 Alexander Yurchenko <grange (at) openbsd.org>
      6   1.1  jmcneill  *
      7   1.1  jmcneill  * Permission to use, copy, modify, and distribute this software for any
      8   1.1  jmcneill  * purpose with or without fee is hereby granted, provided that the above
      9   1.1  jmcneill  * copyright notice and this permission notice appear in all copies.
     10   1.1  jmcneill  *
     11   1.1  jmcneill  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     12   1.1  jmcneill  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     13   1.1  jmcneill  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     14   1.1  jmcneill  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     15   1.1  jmcneill  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     16   1.1  jmcneill  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     17   1.1  jmcneill  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     18   1.1  jmcneill  */
     19   1.1  jmcneill 
     20   1.1  jmcneill /*
     21   1.1  jmcneill  * Intel PIIX and compatible Power Management controller driver.
     22   1.1  jmcneill  */
     23   1.1  jmcneill 
     24  1.19     lukem #include <sys/cdefs.h>
     25  1.55   thorpej __KERNEL_RCSID(0, "$NetBSD: piixpm.c,v 1.55 2019/12/22 23:23:32 thorpej Exp $");
     26  1.19     lukem 
     27   1.1  jmcneill #include <sys/param.h>
     28   1.1  jmcneill #include <sys/systm.h>
     29   1.1  jmcneill #include <sys/device.h>
     30   1.1  jmcneill #include <sys/kernel.h>
     31  1.40  pgoyette #include <sys/mutex.h>
     32   1.1  jmcneill #include <sys/proc.h>
     33   1.1  jmcneill 
     34  1.17        ad #include <sys/bus.h>
     35   1.1  jmcneill 
     36   1.1  jmcneill #include <dev/pci/pcidevs.h>
     37   1.1  jmcneill #include <dev/pci/pcireg.h>
     38   1.1  jmcneill #include <dev/pci/pcivar.h>
     39   1.1  jmcneill 
     40   1.1  jmcneill #include <dev/pci/piixpmreg.h>
     41   1.1  jmcneill 
     42   1.1  jmcneill #include <dev/i2c/i2cvar.h>
     43   1.1  jmcneill 
     44   1.5  drochner #include <dev/ic/acpipmtimer.h>
     45   1.4  jmcneill 
     46   1.1  jmcneill #ifdef PIIXPM_DEBUG
     47   1.1  jmcneill #define DPRINTF(x) printf x
     48   1.1  jmcneill #else
     49   1.1  jmcneill #define DPRINTF(x)
     50   1.1  jmcneill #endif
     51   1.1  jmcneill 
     52  1.54   msaitoh #define PIIXPM_IS_CSB5(sc)						      \
     53  1.54   msaitoh 	(PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_SERVERWORKS &&		      \
     54  1.54   msaitoh 	PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_SERVERWORKS_CSB5)
     55   1.1  jmcneill #define PIIXPM_DELAY	200
     56   1.1  jmcneill #define PIIXPM_TIMEOUT	1
     57   1.1  jmcneill 
     58  1.54   msaitoh #define PIIXPM_IS_SB800GRP(sc)						      \
     59  1.54   msaitoh 	((PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_ATI) &&			      \
     60  1.54   msaitoh 	    ((PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_ATI_SB600_SMB) &&	      \
     61  1.54   msaitoh 		((sc)->sc_rev >= 0x40)))
     62  1.54   msaitoh 
     63  1.54   msaitoh #define PIIXPM_IS_HUDSON(sc)						      \
     64  1.54   msaitoh 	((PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_AMD) &&			      \
     65  1.54   msaitoh 	    (PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_AMD_HUDSON_SMB))
     66  1.54   msaitoh 
     67  1.54   msaitoh #define PIIXPM_IS_KERNCZ(sc)						      \
     68  1.54   msaitoh 	((PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_AMD) &&			      \
     69  1.54   msaitoh 	    (PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_AMD_KERNCZ_SMB))
     70  1.54   msaitoh 
     71  1.54   msaitoh #define PIIXPM_IS_FCHGRP(sc)	(PIIXPM_IS_HUDSON(sc) || PIIXPM_IS_KERNCZ(sc))
     72  1.54   msaitoh 
     73  1.42     soren struct piixpm_smbus {
     74  1.42     soren 	int			sda;
     75  1.42     soren 	struct			piixpm_softc *softc;
     76  1.42     soren };
     77  1.36  jmcneill 
     78   1.1  jmcneill struct piixpm_softc {
     79  1.25     joerg 	device_t		sc_dev;
     80   1.1  jmcneill 
     81  1.42     soren 	bus_space_tag_t		sc_iot;
     82  1.42     soren #define	sc_pm_iot sc_iot
     83  1.42     soren #define sc_smb_iot sc_iot
     84  1.42     soren 	bus_space_handle_t	sc_pm_ioh;
     85  1.42     soren 	bus_space_handle_t	sc_sb800_ioh;
     86   1.4  jmcneill 	bus_space_handle_t	sc_smb_ioh;
     87   1.4  jmcneill 	void *			sc_smb_ih;
     88   1.1  jmcneill 	int			sc_poll;
     89   1.1  jmcneill 
     90   1.3  jmcneill 	pci_chipset_tag_t	sc_pc;
     91   1.3  jmcneill 	pcitag_t		sc_pcitag;
     92  1.35   hannken 	pcireg_t		sc_id;
     93  1.54   msaitoh 	pcireg_t		sc_rev;
     94   1.3  jmcneill 
     95  1.46  pgoyette 	int			sc_numbusses;
     96  1.46  pgoyette 	device_t		sc_i2c_device[4];
     97  1.42     soren 	struct piixpm_smbus	sc_busses[4];
     98  1.42     soren 	struct i2c_controller	sc_i2c_tags[4];
     99  1.42     soren 
    100   1.1  jmcneill 	struct {
    101  1.42     soren 		i2c_op_t	op;
    102  1.42     soren 		void *		buf;
    103  1.42     soren 		size_t		len;
    104  1.42     soren 		int		flags;
    105  1.42     soren 		volatile int	error;
    106   1.1  jmcneill 	}			sc_i2c_xfer;
    107   1.3  jmcneill 
    108   1.3  jmcneill 	pcireg_t		sc_devact[2];
    109   1.1  jmcneill };
    110   1.1  jmcneill 
    111  1.25     joerg static int	piixpm_match(device_t, cfdata_t, void *);
    112  1.25     joerg static void	piixpm_attach(device_t, device_t, void *);
    113  1.46  pgoyette static int	piixpm_rescan(device_t, const char *, const int *);
    114  1.46  pgoyette static void	piixpm_chdet(device_t, device_t);
    115   1.1  jmcneill 
    116  1.32    dyoung static bool	piixpm_suspend(device_t, const pmf_qual_t *);
    117  1.32    dyoung static bool	piixpm_resume(device_t, const pmf_qual_t *);
    118   1.3  jmcneill 
    119  1.42     soren static int	piixpm_sb800_init(struct piixpm_softc *);
    120  1.35   hannken static void	piixpm_csb5_reset(void *);
    121  1.25     joerg static int	piixpm_i2c_acquire_bus(void *, int);
    122  1.25     joerg static void	piixpm_i2c_release_bus(void *, int);
    123  1.25     joerg static int	piixpm_i2c_exec(void *, i2c_op_t, i2c_addr_t, const void *,
    124  1.25     joerg     size_t, void *, size_t, int);
    125   1.1  jmcneill 
    126  1.25     joerg static int	piixpm_intr(void *);
    127   1.1  jmcneill 
    128  1.46  pgoyette CFATTACH_DECL3_NEW(piixpm, sizeof(struct piixpm_softc),
    129  1.46  pgoyette     piixpm_match, piixpm_attach, NULL, NULL, piixpm_rescan, piixpm_chdet, 0);
    130   1.1  jmcneill 
    131  1.25     joerg static int
    132  1.25     joerg piixpm_match(device_t parent, cfdata_t match, void *aux)
    133   1.1  jmcneill {
    134   1.1  jmcneill 	struct pci_attach_args *pa;
    135   1.1  jmcneill 
    136   1.1  jmcneill 	pa = (struct pci_attach_args *)aux;
    137   1.1  jmcneill 	switch (PCI_VENDOR(pa->pa_id)) {
    138   1.1  jmcneill 	case PCI_VENDOR_INTEL:
    139   1.1  jmcneill 		switch (PCI_PRODUCT(pa->pa_id)) {
    140   1.1  jmcneill 		case PCI_PRODUCT_INTEL_82371AB_PMC:
    141   1.1  jmcneill 		case PCI_PRODUCT_INTEL_82440MX_PMC:
    142   1.1  jmcneill 			return 1;
    143   1.1  jmcneill 		}
    144   1.1  jmcneill 		break;
    145   1.1  jmcneill 	case PCI_VENDOR_ATI:
    146   1.1  jmcneill 		switch (PCI_PRODUCT(pa->pa_id)) {
    147   1.1  jmcneill 		case PCI_PRODUCT_ATI_SB200_SMB:
    148  1.10    toshii 		case PCI_PRODUCT_ATI_SB300_SMB:
    149  1.10    toshii 		case PCI_PRODUCT_ATI_SB400_SMB:
    150  1.23  jmcneill 		case PCI_PRODUCT_ATI_SB600_SMB:	/* matches SB600/SB700/SB800 */
    151   1.1  jmcneill 			return 1;
    152   1.1  jmcneill 		}
    153   1.1  jmcneill 		break;
    154  1.14    martin 	case PCI_VENDOR_SERVERWORKS:
    155  1.14    martin 		switch (PCI_PRODUCT(pa->pa_id)) {
    156  1.14    martin 		case PCI_PRODUCT_SERVERWORKS_OSB4:
    157  1.14    martin 		case PCI_PRODUCT_SERVERWORKS_CSB5:
    158  1.14    martin 		case PCI_PRODUCT_SERVERWORKS_CSB6:
    159  1.14    martin 		case PCI_PRODUCT_SERVERWORKS_HT1000SB:
    160  1.53   msaitoh 		case PCI_PRODUCT_SERVERWORKS_HT1100SB:
    161  1.14    martin 			return 1;
    162  1.14    martin 		}
    163  1.50  pgoyette 		break;
    164  1.48  pgoyette 	case PCI_VENDOR_AMD:
    165  1.48  pgoyette 		switch (PCI_PRODUCT(pa->pa_id)) {
    166  1.48  pgoyette 		case PCI_PRODUCT_AMD_HUDSON_SMB:
    167  1.54   msaitoh 		case PCI_PRODUCT_AMD_KERNCZ_SMB:
    168  1.48  pgoyette 			return 1;
    169  1.48  pgoyette 		}
    170  1.50  pgoyette 		break;
    171   1.1  jmcneill 	}
    172   1.1  jmcneill 
    173   1.1  jmcneill 	return 0;
    174   1.1  jmcneill }
    175   1.1  jmcneill 
    176  1.25     joerg static void
    177  1.25     joerg piixpm_attach(device_t parent, device_t self, void *aux)
    178   1.1  jmcneill {
    179  1.25     joerg 	struct piixpm_softc *sc = device_private(self);
    180   1.1  jmcneill 	struct pci_attach_args *pa = aux;
    181   1.1  jmcneill 	pcireg_t base, conf;
    182   1.5  drochner 	pcireg_t pmmisc;
    183   1.1  jmcneill 	pci_intr_handle_t ih;
    184  1.54   msaitoh 	bool usesmi = false;
    185   1.1  jmcneill 	const char *intrstr = NULL;
    186  1.46  pgoyette 	int i, flags;
    187  1.44  christos 	char intrbuf[PCI_INTRSTR_LEN];
    188   1.1  jmcneill 
    189  1.25     joerg 	sc->sc_dev = self;
    190  1.42     soren 	sc->sc_iot = pa->pa_iot;
    191  1.35   hannken 	sc->sc_id = pa->pa_id;
    192  1.54   msaitoh 	sc->sc_rev = PCI_REVISION(pa->pa_class);
    193   1.3  jmcneill 	sc->sc_pc = pa->pa_pc;
    194   1.3  jmcneill 	sc->sc_pcitag = pa->pa_tag;
    195  1.46  pgoyette 	sc->sc_numbusses = 1;
    196   1.3  jmcneill 
    197  1.39  drochner 	pci_aprint_devinfo(pa, NULL);
    198   1.3  jmcneill 
    199  1.18  jmcneill 	if (!pmf_device_register(self, piixpm_suspend, piixpm_resume))
    200  1.18  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    201   1.3  jmcneill 
    202   1.5  drochner 	if ((PCI_VENDOR(pa->pa_id) != PCI_VENDOR_INTEL) ||
    203   1.5  drochner 	    (PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_INTEL_82371AB_PMC))
    204   1.5  drochner 		goto nopowermanagement;
    205   1.5  drochner 
    206   1.5  drochner 	/* check whether I/O access to PM regs is enabled */
    207   1.5  drochner 	pmmisc = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_PMREGMISC);
    208   1.5  drochner 	if (!(pmmisc & 1))
    209   1.5  drochner 		goto nopowermanagement;
    210   1.5  drochner 
    211   1.4  jmcneill 	/* Map I/O space */
    212   1.5  drochner 	base = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_PM_BASE);
    213  1.53   msaitoh 	if (base == 0 || bus_space_map(sc->sc_pm_iot, PCI_MAPREG_IO_ADDR(base),
    214   1.4  jmcneill 	    PIIX_PM_SIZE, 0, &sc->sc_pm_ioh)) {
    215  1.49   msaitoh 		aprint_error_dev(self,
    216  1.49   msaitoh 		    "can't map power management I/O space\n");
    217   1.4  jmcneill 		goto nopowermanagement;
    218   1.4  jmcneill 	}
    219   1.4  jmcneill 
    220   1.5  drochner 	/*
    221   1.5  drochner 	 * Revision 0 and 1 are PIIX4, 2 is PIIX4E, 3 is PIIX4M.
    222   1.5  drochner 	 * PIIX4 and PIIX4E have a bug in the timer latch, see Errata #20
    223   1.5  drochner 	 * in the "Specification update" (document #297738).
    224   1.5  drochner 	 */
    225  1.54   msaitoh 	acpipmtimer_attach(self, sc->sc_pm_iot, sc->sc_pm_ioh, PIIX_PM_PMTMR,
    226  1.54   msaitoh 	    (PCI_REVISION(pa->pa_class) < 3) ? ACPIPMT_BADLATCH : 0);
    227   1.4  jmcneill 
    228   1.5  drochner nopowermanagement:
    229  1.36  jmcneill 
    230  1.54   msaitoh 	/* SB800 rev 0x40+, AMD HUDSON and newer need special initialization */
    231  1.54   msaitoh 	if (PIIXPM_IS_FCHGRP(sc) || PIIXPM_IS_SB800GRP(sc)) {
    232  1.42     soren 		if (piixpm_sb800_init(sc) == 0) {
    233  1.46  pgoyette 			sc->sc_numbusses = 4;
    234  1.54   msaitoh 
    235  1.54   msaitoh 			/* Read configuration */
    236  1.54   msaitoh 			conf = pci_conf_read(pa->pa_pc, pa->pa_tag,
    237  1.54   msaitoh 			    SB800_SMB_HOSTC);
    238  1.54   msaitoh 			DPRINTF(("%s: conf 0x%08x\n", device_xname(self),
    239  1.54   msaitoh 				conf));
    240  1.54   msaitoh 
    241  1.54   msaitoh 			usesmi = conf & SB800_SMB_HOSTC_SMI;
    242  1.54   msaitoh 			goto setintr;
    243  1.42     soren 		}
    244  1.48  pgoyette 		aprint_normal_dev(self, "SMBus initialization failed\n");
    245  1.36  jmcneill 		return;
    246  1.36  jmcneill 	}
    247  1.36  jmcneill 
    248  1.54   msaitoh 	/* Read configuration */
    249  1.54   msaitoh 	conf = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_SMB_HOSTC);
    250  1.54   msaitoh 	DPRINTF(("%s: conf 0x%08x\n", device_xname(self), conf));
    251  1.54   msaitoh 
    252   1.1  jmcneill 	if ((conf & PIIX_SMB_HOSTC_HSTEN) == 0) {
    253  1.25     joerg 		aprint_normal_dev(self, "SMBus disabled\n");
    254   1.1  jmcneill 		return;
    255   1.1  jmcneill 	}
    256  1.54   msaitoh 	usesmi = (conf & PIIX_SMB_HOSTC_INTMASK) == PIIX_SMB_HOSTC_SMI;
    257   1.1  jmcneill 
    258   1.1  jmcneill 	/* Map I/O space */
    259   1.1  jmcneill 	base = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_SMB_BASE) & 0xffff;
    260  1.54   msaitoh 	if (base == 0 ||
    261  1.54   msaitoh 	    bus_space_map(sc->sc_smb_iot, PCI_MAPREG_IO_ADDR(base),
    262   1.4  jmcneill 	    PIIX_SMB_SIZE, 0, &sc->sc_smb_ioh)) {
    263  1.25     joerg 		aprint_error_dev(self, "can't map smbus I/O space\n");
    264   1.1  jmcneill 		return;
    265   1.1  jmcneill 	}
    266   1.1  jmcneill 
    267  1.54   msaitoh setintr:
    268   1.1  jmcneill 	sc->sc_poll = 1;
    269  1.28  pgoyette 	aprint_normal_dev(self, "");
    270  1.54   msaitoh 	if (usesmi) {
    271   1.1  jmcneill 		/* No PCI IRQ */
    272  1.28  pgoyette 		aprint_normal("interrupting at SMI, ");
    273  1.53   msaitoh 	} else {
    274  1.53   msaitoh 		if ((conf & PIIX_SMB_HOSTC_INTMASK) == PIIX_SMB_HOSTC_IRQ) {
    275  1.53   msaitoh 			/* Install interrupt handler */
    276  1.53   msaitoh 			if (pci_intr_map(pa, &ih) == 0) {
    277  1.53   msaitoh 				intrstr = pci_intr_string(pa->pa_pc, ih,
    278  1.53   msaitoh 				    intrbuf, sizeof(intrbuf));
    279  1.53   msaitoh 				sc->sc_smb_ih = pci_intr_establish_xname(
    280  1.53   msaitoh 					pa->pa_pc, ih, IPL_BIO, piixpm_intr,
    281  1.53   msaitoh 					sc, device_xname(sc->sc_dev));
    282  1.53   msaitoh 				if (sc->sc_smb_ih != NULL) {
    283  1.53   msaitoh 					aprint_normal("interrupting at %s",
    284  1.53   msaitoh 					    intrstr);
    285  1.53   msaitoh 					sc->sc_poll = 0;
    286  1.53   msaitoh 				}
    287   1.1  jmcneill 			}
    288   1.1  jmcneill 		}
    289  1.53   msaitoh 		if (sc->sc_poll)
    290  1.53   msaitoh 			aprint_normal("polling");
    291   1.1  jmcneill 	}
    292   1.1  jmcneill 
    293   1.3  jmcneill 	aprint_normal("\n");
    294   1.1  jmcneill 
    295  1.46  pgoyette 	for (i = 0; i < sc->sc_numbusses; i++)
    296  1.46  pgoyette 		sc->sc_i2c_device[i] = NULL;
    297  1.46  pgoyette 
    298  1.46  pgoyette 	flags = 0;
    299  1.46  pgoyette 	piixpm_rescan(self, "i2cbus", &flags);
    300  1.46  pgoyette }
    301  1.46  pgoyette 
    302  1.46  pgoyette static int
    303  1.54   msaitoh piixpm_iicbus_print(void *aux, const char *pnp)
    304  1.54   msaitoh {
    305  1.54   msaitoh 	struct i2cbus_attach_args *iba = aux;
    306  1.54   msaitoh 	struct i2c_controller *tag = iba->iba_tag;
    307  1.54   msaitoh 	struct piixpm_smbus *bus = tag->ic_cookie;
    308  1.54   msaitoh 	struct piixpm_softc *sc = bus->softc;
    309  1.54   msaitoh 
    310  1.54   msaitoh 	iicbus_print(aux, pnp);
    311  1.54   msaitoh 	if (sc->sc_numbusses != 0)
    312  1.54   msaitoh 		aprint_normal(" port %d", bus->sda);
    313  1.54   msaitoh 
    314  1.54   msaitoh 	return UNCONF;
    315  1.54   msaitoh }
    316  1.54   msaitoh static int
    317  1.46  pgoyette piixpm_rescan(device_t self, const char *ifattr, const int *flags)
    318  1.46  pgoyette {
    319  1.46  pgoyette 	struct piixpm_softc *sc = device_private(self);
    320  1.46  pgoyette 	struct i2cbus_attach_args iba;
    321  1.46  pgoyette 	int i;
    322  1.46  pgoyette 
    323  1.46  pgoyette 	if (!ifattr_match(ifattr, "i2cbus"))
    324  1.46  pgoyette 		return 0;
    325  1.46  pgoyette 
    326   1.1  jmcneill 	/* Attach I2C bus */
    327   1.1  jmcneill 
    328  1.46  pgoyette 	for (i = 0; i < sc->sc_numbusses; i++) {
    329  1.46  pgoyette 		if (sc->sc_i2c_device[i])
    330  1.46  pgoyette 			continue;
    331  1.42     soren 		sc->sc_busses[i].sda = i;
    332  1.42     soren 		sc->sc_busses[i].softc = sc;
    333  1.55   thorpej 		iic_tag_init(&sc->sc_i2c_tags[i]);
    334  1.42     soren 		sc->sc_i2c_tags[i].ic_cookie = &sc->sc_busses[i];
    335  1.42     soren 		sc->sc_i2c_tags[i].ic_acquire_bus = piixpm_i2c_acquire_bus;
    336  1.42     soren 		sc->sc_i2c_tags[i].ic_release_bus = piixpm_i2c_release_bus;
    337  1.42     soren 		sc->sc_i2c_tags[i].ic_exec = piixpm_i2c_exec;
    338  1.42     soren 		memset(&iba, 0, sizeof(iba));
    339  1.42     soren 		iba.iba_tag = &sc->sc_i2c_tags[i];
    340  1.46  pgoyette 		sc->sc_i2c_device[i] = config_found_ia(self, ifattr, &iba,
    341  1.54   msaitoh 		    piixpm_iicbus_print);
    342  1.42     soren 	}
    343  1.46  pgoyette 
    344  1.46  pgoyette 	return 0;
    345   1.1  jmcneill }
    346   1.1  jmcneill 
    347  1.46  pgoyette static void
    348  1.46  pgoyette piixpm_chdet(device_t self, device_t child)
    349  1.46  pgoyette {
    350  1.46  pgoyette 	struct piixpm_softc *sc = device_private(self);
    351  1.46  pgoyette 	int i;
    352  1.46  pgoyette 
    353  1.46  pgoyette 	for (i = 0; i < sc->sc_numbusses; i++) {
    354  1.46  pgoyette 		if (sc->sc_i2c_device[i] == child) {
    355  1.46  pgoyette 			sc->sc_i2c_device[i] = NULL;
    356  1.46  pgoyette 			break;
    357  1.46  pgoyette 		}
    358  1.46  pgoyette 	}
    359  1.46  pgoyette }
    360  1.46  pgoyette 
    361  1.46  pgoyette 
    362  1.18  jmcneill static bool
    363  1.32    dyoung piixpm_suspend(device_t dv, const pmf_qual_t *qual)
    364  1.18  jmcneill {
    365  1.18  jmcneill 	struct piixpm_softc *sc = device_private(dv);
    366  1.18  jmcneill 
    367  1.18  jmcneill 	sc->sc_devact[0] = pci_conf_read(sc->sc_pc, sc->sc_pcitag,
    368  1.18  jmcneill 	    PIIX_DEVACTA);
    369  1.18  jmcneill 	sc->sc_devact[1] = pci_conf_read(sc->sc_pc, sc->sc_pcitag,
    370  1.18  jmcneill 	    PIIX_DEVACTB);
    371  1.18  jmcneill 
    372  1.18  jmcneill 	return true;
    373  1.18  jmcneill }
    374  1.18  jmcneill 
    375  1.18  jmcneill static bool
    376  1.32    dyoung piixpm_resume(device_t dv, const pmf_qual_t *qual)
    377   1.3  jmcneill {
    378  1.18  jmcneill 	struct piixpm_softc *sc = device_private(dv);
    379   1.3  jmcneill 
    380  1.18  jmcneill 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_DEVACTA,
    381  1.18  jmcneill 	    sc->sc_devact[0]);
    382  1.18  jmcneill 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_DEVACTB,
    383  1.18  jmcneill 	    sc->sc_devact[1]);
    384   1.3  jmcneill 
    385  1.18  jmcneill 	return true;
    386   1.3  jmcneill }
    387   1.3  jmcneill 
    388  1.36  jmcneill /*
    389  1.36  jmcneill  * Extract SMBus base address from SB800 Power Management (PM) registers.
    390  1.36  jmcneill  * The PM registers can be accessed either through indirect I/O (CD6/CD7) or
    391  1.36  jmcneill  * direct mapping if AcpiMMioDecodeEn is enabled. Since this function is only
    392  1.36  jmcneill  * called once it uses indirect I/O for simplicity.
    393  1.36  jmcneill  */
    394  1.36  jmcneill static int
    395  1.42     soren piixpm_sb800_init(struct piixpm_softc *sc)
    396  1.36  jmcneill {
    397  1.42     soren 	bus_space_tag_t iot = sc->sc_iot;
    398  1.36  jmcneill 	bus_space_handle_t ioh;	/* indirect I/O handle */
    399  1.36  jmcneill 	uint16_t val, base_addr;
    400  1.54   msaitoh 	bool enabled;
    401  1.36  jmcneill 
    402  1.36  jmcneill 	/* Fetch SMB base address */
    403  1.36  jmcneill 	if (bus_space_map(iot,
    404  1.54   msaitoh 	    SB800_INDIRECTIO_BASE, SB800_INDIRECTIO_SIZE, 0, &ioh)) {
    405  1.36  jmcneill 		device_printf(sc->sc_dev, "couldn't map indirect I/O space\n");
    406  1.36  jmcneill 		return EBUSY;
    407  1.36  jmcneill 	}
    408  1.54   msaitoh 	if (PIIXPM_IS_FCHGRP(sc)) {
    409  1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    410  1.54   msaitoh 		    AMDFCH41_PM_DECODE_EN0);
    411  1.54   msaitoh 		val = bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA);
    412  1.54   msaitoh 		enabled = val & AMDFCH41_SMBUS_EN;
    413  1.54   msaitoh 		if (!enabled)
    414  1.54   msaitoh 			return ENOENT;
    415  1.54   msaitoh 
    416  1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    417  1.54   msaitoh 		    AMDFCH41_PM_DECODE_EN1);
    418  1.54   msaitoh 		val = bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA) << 8;
    419  1.54   msaitoh 		base_addr = val;
    420  1.54   msaitoh 	} else {
    421  1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    422  1.54   msaitoh 		    SB800_PM_SMBUS0EN_LO);
    423  1.54   msaitoh 		val = bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA);
    424  1.54   msaitoh 		enabled = val & SB800_PM_SMBUS0EN_ENABLE;
    425  1.54   msaitoh 		if (!enabled)
    426  1.54   msaitoh 			return ENOENT;
    427  1.54   msaitoh 
    428  1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    429  1.54   msaitoh 		    SB800_PM_SMBUS0EN_HI);
    430  1.54   msaitoh 		val |= bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA) << 8;
    431  1.54   msaitoh 		base_addr = val & SB800_PM_SMBUS0EN_BADDR;
    432  1.54   msaitoh 
    433  1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    434  1.54   msaitoh 		    SB800_PM_SMBUS0SELEN);
    435  1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_DATA,
    436  1.54   msaitoh 		    SB800_PM_SMBUS0EN_ENABLE);
    437  1.54   msaitoh 	}
    438  1.54   msaitoh 
    439  1.42     soren 	sc->sc_sb800_ioh = ioh;
    440  1.36  jmcneill 	aprint_debug_dev(sc->sc_dev, "SMBus @ 0x%04x\n", base_addr);
    441  1.36  jmcneill 
    442  1.42     soren 	if (bus_space_map(iot, PCI_MAPREG_IO_ADDR(base_addr),
    443  1.36  jmcneill 	    PIIX_SMB_SIZE, 0, &sc->sc_smb_ioh)) {
    444  1.36  jmcneill 		aprint_error_dev(sc->sc_dev, "can't map smbus I/O space\n");
    445  1.36  jmcneill 		return EBUSY;
    446  1.36  jmcneill 	}
    447  1.36  jmcneill 
    448  1.36  jmcneill 	return 0;
    449  1.36  jmcneill }
    450  1.36  jmcneill 
    451  1.35   hannken static void
    452  1.35   hannken piixpm_csb5_reset(void *arg)
    453  1.35   hannken {
    454  1.35   hannken 	struct piixpm_softc *sc = arg;
    455  1.35   hannken 	pcireg_t base, hostc, pmbase;
    456  1.35   hannken 
    457  1.35   hannken 	base = pci_conf_read(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_BASE);
    458  1.35   hannken 	hostc = pci_conf_read(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_HOSTC);
    459  1.35   hannken 
    460  1.35   hannken 	pmbase = pci_conf_read(sc->sc_pc, sc->sc_pcitag, PIIX_PM_BASE);
    461  1.35   hannken 	pmbase |= PIIX_PM_BASE_CSB5_RESET;
    462  1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_PM_BASE, pmbase);
    463  1.35   hannken 	pmbase &= ~PIIX_PM_BASE_CSB5_RESET;
    464  1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_PM_BASE, pmbase);
    465  1.35   hannken 
    466  1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_BASE, base);
    467  1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_HOSTC, hostc);
    468  1.35   hannken 
    469  1.35   hannken 	(void) tsleep(&sc, PRIBIO, "csb5reset", hz/2);
    470  1.35   hannken }
    471  1.35   hannken 
    472  1.25     joerg static int
    473   1.1  jmcneill piixpm_i2c_acquire_bus(void *cookie, int flags)
    474   1.1  jmcneill {
    475  1.42     soren 	struct piixpm_smbus *smbus = cookie;
    476  1.42     soren 	struct piixpm_softc *sc = smbus->softc;
    477   1.1  jmcneill 
    478  1.54   msaitoh 	if (PIIXPM_IS_KERNCZ(sc)) {
    479  1.54   msaitoh 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    480  1.54   msaitoh 		    SB800_INDIRECTIO_INDEX, AMDFCH41_PM_PORT_INDEX);
    481  1.42     soren 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    482  1.54   msaitoh 		    SB800_INDIRECTIO_DATA, smbus->sda << 3);
    483  1.54   msaitoh 	} else if (PIIXPM_IS_SB800GRP(sc) || PIIXPM_IS_HUDSON(sc)) {
    484  1.42     soren 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    485  1.54   msaitoh 		    SB800_INDIRECTIO_INDEX, SB800_PM_SMBUS0SEL);
    486  1.54   msaitoh 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    487  1.54   msaitoh 		    SB800_INDIRECTIO_DATA, smbus->sda << 1);
    488  1.42     soren 	}
    489  1.42     soren 
    490  1.16   xtraeme 	return 0;
    491   1.1  jmcneill }
    492   1.1  jmcneill 
    493  1.25     joerg static void
    494   1.1  jmcneill piixpm_i2c_release_bus(void *cookie, int flags)
    495   1.1  jmcneill {
    496  1.42     soren 	struct piixpm_smbus *smbus = cookie;
    497  1.42     soren 	struct piixpm_softc *sc = smbus->softc;
    498  1.42     soren 
    499  1.54   msaitoh 	if (PIIXPM_IS_KERNCZ(sc)) {
    500  1.54   msaitoh 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    501  1.54   msaitoh 		    SB800_INDIRECTIO_INDEX, AMDFCH41_PM_PORT_INDEX);
    502  1.54   msaitoh 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    503  1.54   msaitoh 		    SB800_INDIRECTIO_DATA, 0);
    504  1.54   msaitoh 	} else if (PIIXPM_IS_SB800GRP(sc) || PIIXPM_IS_HUDSON(sc)) {
    505  1.42     soren 		/*
    506  1.42     soren 		 * HP Microserver hangs after reboot if not set to SDA0.
    507  1.42     soren 		 * Also add shutdown hook?
    508  1.42     soren 		 */
    509  1.42     soren 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    510  1.54   msaitoh 		    SB800_INDIRECTIO_INDEX, SB800_PM_SMBUS0SEL);
    511  1.42     soren 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    512  1.54   msaitoh 		    SB800_INDIRECTIO_DATA, 0);
    513  1.42     soren 	}
    514   1.1  jmcneill }
    515   1.1  jmcneill 
    516  1.25     joerg static int
    517   1.1  jmcneill piixpm_i2c_exec(void *cookie, i2c_op_t op, i2c_addr_t addr,
    518   1.1  jmcneill     const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
    519   1.1  jmcneill {
    520  1.42     soren 	struct piixpm_smbus *smbus = cookie;
    521  1.42     soren 	struct piixpm_softc *sc = smbus->softc;
    522  1.54   msaitoh 	const uint8_t *b;
    523  1.54   msaitoh 	uint8_t ctl = 0, st;
    524   1.1  jmcneill 	int retries;
    525   1.1  jmcneill 
    526  1.53   msaitoh 	DPRINTF(("%s: exec: op %d, addr 0x%02x, cmdlen %zu, len %zu, "
    527  1.53   msaitoh 		"flags 0x%x\n",
    528  1.53   msaitoh 		device_xname(sc->sc_dev), op, addr, cmdlen, len, flags));
    529   1.1  jmcneill 
    530  1.41     soren 	/* Clear status bits */
    531  1.49   msaitoh 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS,
    532  1.49   msaitoh 	    PIIX_SMB_HS_INTR | PIIX_SMB_HS_DEVERR |
    533  1.41     soren 	    PIIX_SMB_HS_BUSERR | PIIX_SMB_HS_FAILED);
    534  1.42     soren 	bus_space_barrier(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS, 1,
    535  1.41     soren 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
    536  1.41     soren 
    537   1.1  jmcneill 	/* Wait for bus to be idle */
    538   1.1  jmcneill 	for (retries = 100; retries > 0; retries--) {
    539   1.4  jmcneill 		st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    540   1.4  jmcneill 		    PIIX_SMB_HS);
    541   1.1  jmcneill 		if (!(st & PIIX_SMB_HS_BUSY))
    542   1.1  jmcneill 			break;
    543   1.1  jmcneill 		DELAY(PIIXPM_DELAY);
    544   1.1  jmcneill 	}
    545  1.52   msaitoh 	DPRINTF(("%s: exec: st %#x\n", device_xname(sc->sc_dev), st & 0xff));
    546   1.1  jmcneill 	if (st & PIIX_SMB_HS_BUSY)
    547   1.1  jmcneill 		return (1);
    548   1.1  jmcneill 
    549   1.1  jmcneill 	if (cold || sc->sc_poll)
    550   1.1  jmcneill 		flags |= I2C_F_POLL;
    551   1.1  jmcneill 
    552  1.34   hannken 	if (!I2C_OP_STOP_P(op) || cmdlen > 1 || len > 2 ||
    553  1.34   hannken 	    (cmdlen == 0 && len > 1))
    554   1.1  jmcneill 		return (1);
    555   1.1  jmcneill 
    556   1.1  jmcneill 	/* Setup transfer */
    557   1.1  jmcneill 	sc->sc_i2c_xfer.op = op;
    558   1.1  jmcneill 	sc->sc_i2c_xfer.buf = buf;
    559   1.1  jmcneill 	sc->sc_i2c_xfer.len = len;
    560   1.1  jmcneill 	sc->sc_i2c_xfer.flags = flags;
    561   1.1  jmcneill 	sc->sc_i2c_xfer.error = 0;
    562   1.1  jmcneill 
    563   1.1  jmcneill 	/* Set slave address and transfer direction */
    564   1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_TXSLVA,
    565   1.1  jmcneill 	    PIIX_SMB_TXSLVA_ADDR(addr) |
    566   1.1  jmcneill 	    (I2C_OP_READ_P(op) ? PIIX_SMB_TXSLVA_READ : 0));
    567   1.1  jmcneill 
    568   1.1  jmcneill 	b = cmdbuf;
    569   1.1  jmcneill 	if (cmdlen > 0)
    570   1.1  jmcneill 		/* Set command byte */
    571   1.4  jmcneill 		bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    572   1.4  jmcneill 		    PIIX_SMB_HCMD, b[0]);
    573   1.1  jmcneill 
    574   1.1  jmcneill 	if (I2C_OP_WRITE_P(op)) {
    575   1.1  jmcneill 		/* Write data */
    576   1.1  jmcneill 		b = buf;
    577  1.34   hannken 		if (cmdlen == 0 && len == 1)
    578  1.34   hannken 			bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    579  1.34   hannken 			    PIIX_SMB_HCMD, b[0]);
    580  1.34   hannken 		else if (len > 0)
    581   1.4  jmcneill 			bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    582   1.1  jmcneill 			    PIIX_SMB_HD0, b[0]);
    583   1.1  jmcneill 		if (len > 1)
    584   1.4  jmcneill 			bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    585   1.1  jmcneill 			    PIIX_SMB_HD1, b[1]);
    586   1.1  jmcneill 	}
    587   1.1  jmcneill 
    588   1.1  jmcneill 	/* Set SMBus command */
    589  1.34   hannken 	if (cmdlen == 0) {
    590  1.34   hannken 		if (len == 0)
    591  1.27  pgoyette 			ctl = PIIX_SMB_HC_CMD_QUICK;
    592  1.27  pgoyette 		else
    593  1.27  pgoyette 			ctl = PIIX_SMB_HC_CMD_BYTE;
    594  1.27  pgoyette 	} else if (len == 1)
    595   1.1  jmcneill 		ctl = PIIX_SMB_HC_CMD_BDATA;
    596   1.1  jmcneill 	else if (len == 2)
    597   1.1  jmcneill 		ctl = PIIX_SMB_HC_CMD_WDATA;
    598  1.54   msaitoh 	else
    599  1.54   msaitoh 		panic("%s: unexpected len %zu", __func__, len);
    600   1.1  jmcneill 
    601   1.1  jmcneill 	if ((flags & I2C_F_POLL) == 0)
    602   1.1  jmcneill 		ctl |= PIIX_SMB_HC_INTREN;
    603   1.1  jmcneill 
    604   1.1  jmcneill 	/* Start transaction */
    605   1.1  jmcneill 	ctl |= PIIX_SMB_HC_START;
    606   1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HC, ctl);
    607   1.1  jmcneill 
    608   1.1  jmcneill 	if (flags & I2C_F_POLL) {
    609   1.1  jmcneill 		/* Poll for completion */
    610  1.54   msaitoh 		if (PIIXPM_IS_CSB5(sc))
    611  1.35   hannken 			DELAY(2*PIIXPM_DELAY);
    612  1.35   hannken 		else
    613  1.35   hannken 			DELAY(PIIXPM_DELAY);
    614   1.1  jmcneill 		for (retries = 1000; retries > 0; retries--) {
    615   1.4  jmcneill 			st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    616   1.1  jmcneill 			    PIIX_SMB_HS);
    617   1.1  jmcneill 			if ((st & PIIX_SMB_HS_BUSY) == 0)
    618   1.1  jmcneill 				break;
    619   1.1  jmcneill 			DELAY(PIIXPM_DELAY);
    620   1.1  jmcneill 		}
    621   1.1  jmcneill 		if (st & PIIX_SMB_HS_BUSY)
    622   1.1  jmcneill 			goto timeout;
    623  1.45   hannken 		piixpm_intr(sc);
    624   1.1  jmcneill 	} else {
    625   1.1  jmcneill 		/* Wait for interrupt */
    626  1.53   msaitoh 		if (tsleep(sc, PRIBIO, "piixpm", PIIXPM_TIMEOUT * hz))
    627   1.1  jmcneill 			goto timeout;
    628   1.1  jmcneill 	}
    629   1.1  jmcneill 
    630   1.1  jmcneill 	if (sc->sc_i2c_xfer.error)
    631   1.1  jmcneill 		return (1);
    632   1.1  jmcneill 
    633   1.1  jmcneill 	return (0);
    634   1.1  jmcneill 
    635   1.1  jmcneill timeout:
    636   1.1  jmcneill 	/*
    637   1.1  jmcneill 	 * Transfer timeout. Kill the transaction and clear status bits.
    638   1.1  jmcneill 	 */
    639  1.25     joerg 	aprint_error_dev(sc->sc_dev, "timeout, status 0x%x\n", st);
    640   1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HC,
    641   1.1  jmcneill 	    PIIX_SMB_HC_KILL);
    642   1.1  jmcneill 	DELAY(PIIXPM_DELAY);
    643   1.4  jmcneill 	st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS);
    644   1.1  jmcneill 	if ((st & PIIX_SMB_HS_FAILED) == 0)
    645  1.49   msaitoh 		aprint_error_dev(sc->sc_dev,
    646  1.49   msaitoh 		    "transaction abort failed, status 0x%x\n", st);
    647   1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS, st);
    648  1.35   hannken 	/*
    649  1.35   hannken 	 * CSB5 needs hard reset to unlock the smbus after timeout.
    650  1.35   hannken 	 */
    651  1.54   msaitoh 	if (PIIXPM_IS_CSB5(sc))
    652  1.35   hannken 		piixpm_csb5_reset(sc);
    653   1.1  jmcneill 	return (1);
    654   1.1  jmcneill }
    655   1.1  jmcneill 
    656  1.25     joerg static int
    657   1.1  jmcneill piixpm_intr(void *arg)
    658   1.1  jmcneill {
    659  1.45   hannken 	struct piixpm_softc *sc = arg;
    660  1.54   msaitoh 	uint8_t st;
    661  1.54   msaitoh 	uint8_t *b;
    662   1.1  jmcneill 	size_t len;
    663   1.1  jmcneill 
    664   1.1  jmcneill 	/* Read status */
    665   1.4  jmcneill 	st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS);
    666   1.1  jmcneill 	if ((st & PIIX_SMB_HS_BUSY) != 0 || (st & (PIIX_SMB_HS_INTR |
    667   1.1  jmcneill 	    PIIX_SMB_HS_DEVERR | PIIX_SMB_HS_BUSERR |
    668   1.1  jmcneill 	    PIIX_SMB_HS_FAILED)) == 0)
    669   1.1  jmcneill 		/* Interrupt was not for us */
    670   1.1  jmcneill 		return (0);
    671   1.1  jmcneill 
    672  1.52   msaitoh 	DPRINTF(("%s: intr st %#x\n", device_xname(sc->sc_dev), st & 0xff));
    673   1.1  jmcneill 
    674   1.1  jmcneill 	/* Clear status bits */
    675   1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS, st);
    676   1.1  jmcneill 
    677   1.1  jmcneill 	/* Check for errors */
    678   1.1  jmcneill 	if (st & (PIIX_SMB_HS_DEVERR | PIIX_SMB_HS_BUSERR |
    679   1.1  jmcneill 	    PIIX_SMB_HS_FAILED)) {
    680   1.1  jmcneill 		sc->sc_i2c_xfer.error = 1;
    681   1.1  jmcneill 		goto done;
    682   1.1  jmcneill 	}
    683   1.1  jmcneill 
    684   1.1  jmcneill 	if (st & PIIX_SMB_HS_INTR) {
    685   1.1  jmcneill 		if (I2C_OP_WRITE_P(sc->sc_i2c_xfer.op))
    686   1.1  jmcneill 			goto done;
    687   1.1  jmcneill 
    688   1.1  jmcneill 		/* Read data */
    689   1.1  jmcneill 		b = sc->sc_i2c_xfer.buf;
    690   1.1  jmcneill 		len = sc->sc_i2c_xfer.len;
    691   1.1  jmcneill 		if (len > 0)
    692   1.4  jmcneill 			b[0] = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    693   1.1  jmcneill 			    PIIX_SMB_HD0);
    694   1.1  jmcneill 		if (len > 1)
    695   1.4  jmcneill 			b[1] = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    696   1.1  jmcneill 			    PIIX_SMB_HD1);
    697   1.1  jmcneill 	}
    698   1.1  jmcneill 
    699   1.1  jmcneill done:
    700   1.1  jmcneill 	if ((sc->sc_i2c_xfer.flags & I2C_F_POLL) == 0)
    701   1.1  jmcneill 		wakeup(sc);
    702   1.1  jmcneill 	return (1);
    703   1.1  jmcneill }
    704