Home | History | Annotate | Line # | Download | only in pci
piixpm.c revision 1.64.8.1
      1  1.64.8.1   thorpej /* $NetBSD: piixpm.c,v 1.64.8.1 2021/08/04 21:27:00 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.64.8.1   thorpej __KERNEL_RCSID(0, "$NetBSD: piixpm.c,v 1.64.8.1 2021/08/04 21:27:00 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.60   thorpej #include <sys/condvar.h>
     33       1.1  jmcneill #include <sys/proc.h>
     34       1.1  jmcneill 
     35      1.17        ad #include <sys/bus.h>
     36       1.1  jmcneill 
     37       1.1  jmcneill #include <dev/pci/pcidevs.h>
     38       1.1  jmcneill #include <dev/pci/pcireg.h>
     39       1.1  jmcneill #include <dev/pci/pcivar.h>
     40       1.1  jmcneill 
     41       1.1  jmcneill #include <dev/pci/piixpmreg.h>
     42       1.1  jmcneill 
     43       1.1  jmcneill #include <dev/i2c/i2cvar.h>
     44       1.1  jmcneill 
     45       1.5  drochner #include <dev/ic/acpipmtimer.h>
     46       1.4  jmcneill 
     47       1.1  jmcneill #ifdef PIIXPM_DEBUG
     48       1.1  jmcneill #define DPRINTF(x) printf x
     49       1.1  jmcneill #else
     50       1.1  jmcneill #define DPRINTF(x)
     51       1.1  jmcneill #endif
     52       1.1  jmcneill 
     53      1.54   msaitoh #define PIIXPM_IS_CSB5(sc)						      \
     54      1.54   msaitoh 	(PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_SERVERWORKS &&		      \
     55      1.54   msaitoh 	PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_SERVERWORKS_CSB5)
     56       1.1  jmcneill #define PIIXPM_DELAY	200
     57       1.1  jmcneill #define PIIXPM_TIMEOUT	1
     58       1.1  jmcneill 
     59      1.54   msaitoh #define PIIXPM_IS_SB800GRP(sc)						      \
     60      1.54   msaitoh 	((PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_ATI) &&			      \
     61      1.54   msaitoh 	    ((PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_ATI_SB600_SMB) &&	      \
     62      1.54   msaitoh 		((sc)->sc_rev >= 0x40)))
     63      1.54   msaitoh 
     64      1.54   msaitoh #define PIIXPM_IS_HUDSON(sc)						      \
     65      1.54   msaitoh 	((PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_AMD) &&			      \
     66      1.54   msaitoh 	    (PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_AMD_HUDSON_SMB))
     67      1.54   msaitoh 
     68      1.54   msaitoh #define PIIXPM_IS_KERNCZ(sc)						      \
     69      1.54   msaitoh 	((PCI_VENDOR((sc)->sc_id) == PCI_VENDOR_AMD) &&			      \
     70      1.54   msaitoh 	    (PCI_PRODUCT((sc)->sc_id) == PCI_PRODUCT_AMD_KERNCZ_SMB))
     71      1.54   msaitoh 
     72      1.54   msaitoh #define PIIXPM_IS_FCHGRP(sc)	(PIIXPM_IS_HUDSON(sc) || PIIXPM_IS_KERNCZ(sc))
     73      1.54   msaitoh 
     74      1.61   msaitoh #define PIIX_SB800_TIMEOUT 500
     75      1.61   msaitoh 
     76      1.42     soren struct piixpm_smbus {
     77      1.42     soren 	int			sda;
     78      1.63   msaitoh 	int			sda_save;
     79      1.42     soren 	struct			piixpm_softc *softc;
     80      1.42     soren };
     81      1.36  jmcneill 
     82       1.1  jmcneill struct piixpm_softc {
     83      1.25     joerg 	device_t		sc_dev;
     84       1.1  jmcneill 
     85      1.42     soren 	bus_space_tag_t		sc_iot;
     86      1.42     soren #define	sc_pm_iot sc_iot
     87      1.42     soren #define sc_smb_iot sc_iot
     88      1.42     soren 	bus_space_handle_t	sc_pm_ioh;
     89      1.42     soren 	bus_space_handle_t	sc_sb800_ioh;
     90       1.4  jmcneill 	bus_space_handle_t	sc_smb_ioh;
     91       1.4  jmcneill 	void *			sc_smb_ih;
     92       1.1  jmcneill 	int			sc_poll;
     93      1.59   msaitoh 	bool			sc_sb800_selen; /* Use SMBUS0SEL */
     94       1.1  jmcneill 
     95       1.3  jmcneill 	pci_chipset_tag_t	sc_pc;
     96       1.3  jmcneill 	pcitag_t		sc_pcitag;
     97      1.35   hannken 	pcireg_t		sc_id;
     98      1.54   msaitoh 	pcireg_t		sc_rev;
     99       1.3  jmcneill 
    100      1.46  pgoyette 	int			sc_numbusses;
    101      1.46  pgoyette 	device_t		sc_i2c_device[4];
    102      1.42     soren 	struct piixpm_smbus	sc_busses[4];
    103      1.42     soren 	struct i2c_controller	sc_i2c_tags[4];
    104      1.42     soren 
    105      1.60   thorpej 	kmutex_t		sc_exec_lock;
    106      1.60   thorpej 	kcondvar_t		sc_exec_wait;
    107      1.60   thorpej 
    108       1.1  jmcneill 	struct {
    109      1.42     soren 		i2c_op_t	op;
    110      1.42     soren 		void *		buf;
    111      1.42     soren 		size_t		len;
    112      1.42     soren 		int		flags;
    113      1.60   thorpej 		int             error;
    114      1.60   thorpej 		bool            done;
    115       1.1  jmcneill 	}			sc_i2c_xfer;
    116       1.3  jmcneill 
    117       1.3  jmcneill 	pcireg_t		sc_devact[2];
    118       1.1  jmcneill };
    119       1.1  jmcneill 
    120      1.25     joerg static int	piixpm_match(device_t, cfdata_t, void *);
    121      1.25     joerg static void	piixpm_attach(device_t, device_t, void *);
    122      1.46  pgoyette static int	piixpm_rescan(device_t, const char *, const int *);
    123      1.46  pgoyette static void	piixpm_chdet(device_t, device_t);
    124       1.1  jmcneill 
    125      1.32    dyoung static bool	piixpm_suspend(device_t, const pmf_qual_t *);
    126      1.32    dyoung static bool	piixpm_resume(device_t, const pmf_qual_t *);
    127       1.3  jmcneill 
    128      1.42     soren static int	piixpm_sb800_init(struct piixpm_softc *);
    129      1.35   hannken static void	piixpm_csb5_reset(void *);
    130      1.61   msaitoh static int	piixpm_i2c_sb800_acquire_bus(void *, int);
    131      1.61   msaitoh static void	piixpm_i2c_sb800_release_bus(void *, int);
    132      1.25     joerg static int	piixpm_i2c_exec(void *, i2c_op_t, i2c_addr_t, const void *,
    133      1.25     joerg     size_t, void *, size_t, int);
    134       1.1  jmcneill 
    135      1.25     joerg static int	piixpm_intr(void *);
    136       1.1  jmcneill 
    137      1.46  pgoyette CFATTACH_DECL3_NEW(piixpm, sizeof(struct piixpm_softc),
    138      1.46  pgoyette     piixpm_match, piixpm_attach, NULL, NULL, piixpm_rescan, piixpm_chdet, 0);
    139       1.1  jmcneill 
    140      1.25     joerg static int
    141      1.25     joerg piixpm_match(device_t parent, cfdata_t match, void *aux)
    142       1.1  jmcneill {
    143       1.1  jmcneill 	struct pci_attach_args *pa;
    144       1.1  jmcneill 
    145       1.1  jmcneill 	pa = (struct pci_attach_args *)aux;
    146       1.1  jmcneill 	switch (PCI_VENDOR(pa->pa_id)) {
    147       1.1  jmcneill 	case PCI_VENDOR_INTEL:
    148       1.1  jmcneill 		switch (PCI_PRODUCT(pa->pa_id)) {
    149       1.1  jmcneill 		case PCI_PRODUCT_INTEL_82371AB_PMC:
    150       1.1  jmcneill 		case PCI_PRODUCT_INTEL_82440MX_PMC:
    151       1.1  jmcneill 			return 1;
    152       1.1  jmcneill 		}
    153       1.1  jmcneill 		break;
    154       1.1  jmcneill 	case PCI_VENDOR_ATI:
    155       1.1  jmcneill 		switch (PCI_PRODUCT(pa->pa_id)) {
    156       1.1  jmcneill 		case PCI_PRODUCT_ATI_SB200_SMB:
    157      1.10    toshii 		case PCI_PRODUCT_ATI_SB300_SMB:
    158      1.10    toshii 		case PCI_PRODUCT_ATI_SB400_SMB:
    159      1.23  jmcneill 		case PCI_PRODUCT_ATI_SB600_SMB:	/* matches SB600/SB700/SB800 */
    160       1.1  jmcneill 			return 1;
    161       1.1  jmcneill 		}
    162       1.1  jmcneill 		break;
    163      1.14    martin 	case PCI_VENDOR_SERVERWORKS:
    164      1.14    martin 		switch (PCI_PRODUCT(pa->pa_id)) {
    165      1.14    martin 		case PCI_PRODUCT_SERVERWORKS_OSB4:
    166      1.14    martin 		case PCI_PRODUCT_SERVERWORKS_CSB5:
    167      1.14    martin 		case PCI_PRODUCT_SERVERWORKS_CSB6:
    168      1.14    martin 		case PCI_PRODUCT_SERVERWORKS_HT1000SB:
    169      1.53   msaitoh 		case PCI_PRODUCT_SERVERWORKS_HT1100SB:
    170      1.14    martin 			return 1;
    171      1.14    martin 		}
    172      1.50  pgoyette 		break;
    173      1.48  pgoyette 	case PCI_VENDOR_AMD:
    174      1.48  pgoyette 		switch (PCI_PRODUCT(pa->pa_id)) {
    175      1.48  pgoyette 		case PCI_PRODUCT_AMD_HUDSON_SMB:
    176      1.54   msaitoh 		case PCI_PRODUCT_AMD_KERNCZ_SMB:
    177      1.48  pgoyette 			return 1;
    178      1.48  pgoyette 		}
    179      1.50  pgoyette 		break;
    180       1.1  jmcneill 	}
    181       1.1  jmcneill 
    182       1.1  jmcneill 	return 0;
    183       1.1  jmcneill }
    184       1.1  jmcneill 
    185      1.25     joerg static void
    186      1.25     joerg piixpm_attach(device_t parent, device_t self, void *aux)
    187       1.1  jmcneill {
    188      1.25     joerg 	struct piixpm_softc *sc = device_private(self);
    189       1.1  jmcneill 	struct pci_attach_args *pa = aux;
    190       1.1  jmcneill 	pcireg_t base, conf;
    191       1.5  drochner 	pcireg_t pmmisc;
    192       1.1  jmcneill 	pci_intr_handle_t ih;
    193      1.54   msaitoh 	bool usesmi = false;
    194       1.1  jmcneill 	const char *intrstr = NULL;
    195      1.64   thorpej 	int i;
    196      1.44  christos 	char intrbuf[PCI_INTRSTR_LEN];
    197       1.1  jmcneill 
    198      1.25     joerg 	sc->sc_dev = self;
    199      1.42     soren 	sc->sc_iot = pa->pa_iot;
    200      1.35   hannken 	sc->sc_id = pa->pa_id;
    201      1.54   msaitoh 	sc->sc_rev = PCI_REVISION(pa->pa_class);
    202       1.3  jmcneill 	sc->sc_pc = pa->pa_pc;
    203       1.3  jmcneill 	sc->sc_pcitag = pa->pa_tag;
    204      1.46  pgoyette 	sc->sc_numbusses = 1;
    205       1.3  jmcneill 
    206      1.39  drochner 	pci_aprint_devinfo(pa, NULL);
    207       1.3  jmcneill 
    208      1.60   thorpej 	mutex_init(&sc->sc_exec_lock, MUTEX_DEFAULT, IPL_BIO);
    209      1.60   thorpej 	cv_init(&sc->sc_exec_wait, device_xname(self));
    210      1.60   thorpej 
    211      1.18  jmcneill 	if (!pmf_device_register(self, piixpm_suspend, piixpm_resume))
    212      1.18  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    213       1.3  jmcneill 
    214       1.5  drochner 	if ((PCI_VENDOR(pa->pa_id) != PCI_VENDOR_INTEL) ||
    215       1.5  drochner 	    (PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_INTEL_82371AB_PMC))
    216       1.5  drochner 		goto nopowermanagement;
    217       1.5  drochner 
    218       1.5  drochner 	/* check whether I/O access to PM regs is enabled */
    219       1.5  drochner 	pmmisc = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_PMREGMISC);
    220       1.5  drochner 	if (!(pmmisc & 1))
    221       1.5  drochner 		goto nopowermanagement;
    222       1.5  drochner 
    223       1.4  jmcneill 	/* Map I/O space */
    224       1.5  drochner 	base = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_PM_BASE);
    225      1.53   msaitoh 	if (base == 0 || bus_space_map(sc->sc_pm_iot, PCI_MAPREG_IO_ADDR(base),
    226       1.4  jmcneill 	    PIIX_PM_SIZE, 0, &sc->sc_pm_ioh)) {
    227      1.49   msaitoh 		aprint_error_dev(self,
    228      1.49   msaitoh 		    "can't map power management I/O space\n");
    229       1.4  jmcneill 		goto nopowermanagement;
    230       1.4  jmcneill 	}
    231       1.4  jmcneill 
    232       1.5  drochner 	/*
    233       1.5  drochner 	 * Revision 0 and 1 are PIIX4, 2 is PIIX4E, 3 is PIIX4M.
    234       1.5  drochner 	 * PIIX4 and PIIX4E have a bug in the timer latch, see Errata #20
    235       1.5  drochner 	 * in the "Specification update" (document #297738).
    236       1.5  drochner 	 */
    237      1.54   msaitoh 	acpipmtimer_attach(self, sc->sc_pm_iot, sc->sc_pm_ioh, PIIX_PM_PMTMR,
    238      1.54   msaitoh 	    (PCI_REVISION(pa->pa_class) < 3) ? ACPIPMT_BADLATCH : 0);
    239       1.4  jmcneill 
    240       1.5  drochner nopowermanagement:
    241      1.36  jmcneill 
    242      1.54   msaitoh 	/* SB800 rev 0x40+, AMD HUDSON and newer need special initialization */
    243      1.54   msaitoh 	if (PIIXPM_IS_FCHGRP(sc) || PIIXPM_IS_SB800GRP(sc)) {
    244      1.42     soren 		if (piixpm_sb800_init(sc) == 0) {
    245      1.54   msaitoh 			/* Read configuration */
    246      1.58   msaitoh 			conf = bus_space_read_1(sc->sc_iot,
    247      1.58   msaitoh 			    sc->sc_smb_ioh, SB800_SMB_HOSTC);
    248      1.58   msaitoh 			usesmi = ((conf & SB800_SMB_HOSTC_IRQ) == 0);
    249      1.54   msaitoh 			goto setintr;
    250      1.42     soren 		}
    251      1.48  pgoyette 		aprint_normal_dev(self, "SMBus initialization failed\n");
    252      1.36  jmcneill 		return;
    253      1.36  jmcneill 	}
    254      1.36  jmcneill 
    255      1.54   msaitoh 	/* Read configuration */
    256      1.54   msaitoh 	conf = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_SMB_HOSTC);
    257      1.54   msaitoh 	DPRINTF(("%s: conf 0x%08x\n", device_xname(self), conf));
    258      1.54   msaitoh 
    259       1.1  jmcneill 	if ((conf & PIIX_SMB_HOSTC_HSTEN) == 0) {
    260      1.25     joerg 		aprint_normal_dev(self, "SMBus disabled\n");
    261       1.1  jmcneill 		return;
    262       1.1  jmcneill 	}
    263      1.54   msaitoh 	usesmi = (conf & PIIX_SMB_HOSTC_INTMASK) == PIIX_SMB_HOSTC_SMI;
    264       1.1  jmcneill 
    265       1.1  jmcneill 	/* Map I/O space */
    266       1.1  jmcneill 	base = pci_conf_read(pa->pa_pc, pa->pa_tag, PIIX_SMB_BASE) & 0xffff;
    267      1.54   msaitoh 	if (base == 0 ||
    268      1.54   msaitoh 	    bus_space_map(sc->sc_smb_iot, PCI_MAPREG_IO_ADDR(base),
    269       1.4  jmcneill 	    PIIX_SMB_SIZE, 0, &sc->sc_smb_ioh)) {
    270      1.25     joerg 		aprint_error_dev(self, "can't map smbus I/O space\n");
    271       1.1  jmcneill 		return;
    272       1.1  jmcneill 	}
    273       1.1  jmcneill 
    274      1.54   msaitoh setintr:
    275       1.1  jmcneill 	sc->sc_poll = 1;
    276      1.28  pgoyette 	aprint_normal_dev(self, "");
    277      1.54   msaitoh 	if (usesmi) {
    278       1.1  jmcneill 		/* No PCI IRQ */
    279      1.28  pgoyette 		aprint_normal("interrupting at SMI, ");
    280      1.53   msaitoh 	} else {
    281      1.53   msaitoh 		if ((conf & PIIX_SMB_HOSTC_INTMASK) == PIIX_SMB_HOSTC_IRQ) {
    282      1.53   msaitoh 			/* Install interrupt handler */
    283      1.53   msaitoh 			if (pci_intr_map(pa, &ih) == 0) {
    284      1.53   msaitoh 				intrstr = pci_intr_string(pa->pa_pc, ih,
    285      1.53   msaitoh 				    intrbuf, sizeof(intrbuf));
    286      1.60   thorpej 				pci_intr_setattr(pa->pa_pc, &ih,
    287      1.60   thorpej 				    PCI_INTR_MPSAFE, true);
    288      1.53   msaitoh 				sc->sc_smb_ih = pci_intr_establish_xname(
    289      1.53   msaitoh 					pa->pa_pc, ih, IPL_BIO, piixpm_intr,
    290      1.53   msaitoh 					sc, device_xname(sc->sc_dev));
    291      1.53   msaitoh 				if (sc->sc_smb_ih != NULL) {
    292      1.53   msaitoh 					aprint_normal("interrupting at %s",
    293      1.53   msaitoh 					    intrstr);
    294      1.53   msaitoh 					sc->sc_poll = 0;
    295      1.53   msaitoh 				}
    296       1.1  jmcneill 			}
    297       1.1  jmcneill 		}
    298      1.53   msaitoh 		if (sc->sc_poll)
    299      1.53   msaitoh 			aprint_normal("polling");
    300       1.1  jmcneill 	}
    301       1.1  jmcneill 
    302       1.3  jmcneill 	aprint_normal("\n");
    303       1.1  jmcneill 
    304      1.46  pgoyette 	for (i = 0; i < sc->sc_numbusses; i++)
    305      1.46  pgoyette 		sc->sc_i2c_device[i] = NULL;
    306      1.46  pgoyette 
    307      1.64   thorpej 	piixpm_rescan(self, NULL, NULL);
    308      1.46  pgoyette }
    309      1.46  pgoyette 
    310      1.46  pgoyette static int
    311      1.54   msaitoh piixpm_iicbus_print(void *aux, const char *pnp)
    312      1.54   msaitoh {
    313      1.54   msaitoh 	struct i2cbus_attach_args *iba = aux;
    314      1.54   msaitoh 	struct i2c_controller *tag = iba->iba_tag;
    315      1.54   msaitoh 	struct piixpm_smbus *bus = tag->ic_cookie;
    316      1.54   msaitoh 	struct piixpm_softc *sc = bus->softc;
    317      1.54   msaitoh 
    318      1.54   msaitoh 	iicbus_print(aux, pnp);
    319      1.54   msaitoh 	if (sc->sc_numbusses != 0)
    320      1.54   msaitoh 		aprint_normal(" port %d", bus->sda);
    321      1.54   msaitoh 
    322      1.54   msaitoh 	return UNCONF;
    323      1.54   msaitoh }
    324      1.64   thorpej 
    325      1.54   msaitoh static int
    326      1.64   thorpej piixpm_rescan(device_t self, const char *ifattr, const int *locators)
    327      1.46  pgoyette {
    328      1.46  pgoyette 	struct piixpm_softc *sc = device_private(self);
    329      1.46  pgoyette 	struct i2cbus_attach_args iba;
    330      1.46  pgoyette 	int i;
    331      1.46  pgoyette 
    332       1.1  jmcneill 	/* Attach I2C bus */
    333       1.1  jmcneill 
    334      1.46  pgoyette 	for (i = 0; i < sc->sc_numbusses; i++) {
    335      1.61   msaitoh 		struct i2c_controller *tag = &sc->sc_i2c_tags[i];
    336      1.61   msaitoh 
    337      1.64   thorpej 		if (sc->sc_i2c_device[i] != NULL)
    338      1.46  pgoyette 			continue;
    339      1.42     soren 		sc->sc_busses[i].sda = i;
    340      1.42     soren 		sc->sc_busses[i].softc = sc;
    341      1.61   msaitoh 		iic_tag_init(tag);
    342      1.61   msaitoh 		tag->ic_cookie = &sc->sc_busses[i];
    343      1.61   msaitoh 		if (PIIXPM_IS_SB800GRP(sc) || PIIXPM_IS_FCHGRP(sc)) {
    344      1.61   msaitoh 			tag->ic_acquire_bus = piixpm_i2c_sb800_acquire_bus;
    345      1.61   msaitoh 			tag->ic_release_bus = piixpm_i2c_sb800_release_bus;
    346      1.61   msaitoh 		} else {
    347      1.61   msaitoh 			tag->ic_acquire_bus = NULL;
    348      1.61   msaitoh 			tag->ic_release_bus = NULL;
    349      1.61   msaitoh 		}
    350      1.61   msaitoh 		tag->ic_exec = piixpm_i2c_exec;
    351      1.42     soren 		memset(&iba, 0, sizeof(iba));
    352      1.61   msaitoh 		iba.iba_tag = tag;
    353      1.64   thorpej 		sc->sc_i2c_device[i] =
    354  1.64.8.1   thorpej 		    config_found(self, &iba, piixpm_iicbus_print, CFARGS_NONE);
    355      1.42     soren 	}
    356      1.46  pgoyette 
    357      1.46  pgoyette 	return 0;
    358       1.1  jmcneill }
    359       1.1  jmcneill 
    360      1.46  pgoyette static void
    361      1.46  pgoyette piixpm_chdet(device_t self, device_t child)
    362      1.46  pgoyette {
    363      1.46  pgoyette 	struct piixpm_softc *sc = device_private(self);
    364      1.46  pgoyette 	int i;
    365      1.46  pgoyette 
    366      1.46  pgoyette 	for (i = 0; i < sc->sc_numbusses; i++) {
    367      1.46  pgoyette 		if (sc->sc_i2c_device[i] == child) {
    368      1.46  pgoyette 			sc->sc_i2c_device[i] = NULL;
    369      1.46  pgoyette 			break;
    370      1.46  pgoyette 		}
    371      1.46  pgoyette 	}
    372      1.46  pgoyette }
    373      1.46  pgoyette 
    374      1.46  pgoyette 
    375      1.18  jmcneill static bool
    376      1.32    dyoung piixpm_suspend(device_t dv, const pmf_qual_t *qual)
    377      1.18  jmcneill {
    378      1.18  jmcneill 	struct piixpm_softc *sc = device_private(dv);
    379      1.18  jmcneill 
    380      1.18  jmcneill 	sc->sc_devact[0] = pci_conf_read(sc->sc_pc, sc->sc_pcitag,
    381      1.18  jmcneill 	    PIIX_DEVACTA);
    382      1.18  jmcneill 	sc->sc_devact[1] = pci_conf_read(sc->sc_pc, sc->sc_pcitag,
    383      1.18  jmcneill 	    PIIX_DEVACTB);
    384      1.18  jmcneill 
    385      1.18  jmcneill 	return true;
    386      1.18  jmcneill }
    387      1.18  jmcneill 
    388      1.18  jmcneill static bool
    389      1.32    dyoung piixpm_resume(device_t dv, const pmf_qual_t *qual)
    390       1.3  jmcneill {
    391      1.18  jmcneill 	struct piixpm_softc *sc = device_private(dv);
    392       1.3  jmcneill 
    393      1.18  jmcneill 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_DEVACTA,
    394      1.18  jmcneill 	    sc->sc_devact[0]);
    395      1.18  jmcneill 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_DEVACTB,
    396      1.18  jmcneill 	    sc->sc_devact[1]);
    397       1.3  jmcneill 
    398      1.18  jmcneill 	return true;
    399       1.3  jmcneill }
    400       1.3  jmcneill 
    401      1.36  jmcneill /*
    402      1.36  jmcneill  * Extract SMBus base address from SB800 Power Management (PM) registers.
    403      1.36  jmcneill  * The PM registers can be accessed either through indirect I/O (CD6/CD7) or
    404      1.36  jmcneill  * direct mapping if AcpiMMioDecodeEn is enabled. Since this function is only
    405      1.36  jmcneill  * called once it uses indirect I/O for simplicity.
    406      1.36  jmcneill  */
    407      1.36  jmcneill static int
    408      1.42     soren piixpm_sb800_init(struct piixpm_softc *sc)
    409      1.36  jmcneill {
    410      1.42     soren 	bus_space_tag_t iot = sc->sc_iot;
    411      1.36  jmcneill 	bus_space_handle_t ioh;	/* indirect I/O handle */
    412      1.36  jmcneill 	uint16_t val, base_addr;
    413      1.54   msaitoh 	bool enabled;
    414      1.36  jmcneill 
    415      1.57   msaitoh 	if (PIIXPM_IS_KERNCZ(sc) ||
    416      1.57   msaitoh 	    (PIIXPM_IS_HUDSON(sc) && (sc->sc_rev >= 0x1f)))
    417      1.57   msaitoh 		sc->sc_numbusses = 2;
    418      1.57   msaitoh 	else
    419      1.57   msaitoh 		sc->sc_numbusses = 4;
    420      1.57   msaitoh 
    421      1.36  jmcneill 	/* Fetch SMB base address */
    422      1.36  jmcneill 	if (bus_space_map(iot,
    423      1.54   msaitoh 	    SB800_INDIRECTIO_BASE, SB800_INDIRECTIO_SIZE, 0, &ioh)) {
    424      1.36  jmcneill 		device_printf(sc->sc_dev, "couldn't map indirect I/O space\n");
    425      1.36  jmcneill 		return EBUSY;
    426      1.36  jmcneill 	}
    427      1.54   msaitoh 	if (PIIXPM_IS_FCHGRP(sc)) {
    428      1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    429      1.54   msaitoh 		    AMDFCH41_PM_DECODE_EN0);
    430      1.54   msaitoh 		val = bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA);
    431      1.54   msaitoh 		enabled = val & AMDFCH41_SMBUS_EN;
    432      1.54   msaitoh 		if (!enabled)
    433      1.54   msaitoh 			return ENOENT;
    434      1.54   msaitoh 
    435      1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    436      1.54   msaitoh 		    AMDFCH41_PM_DECODE_EN1);
    437      1.54   msaitoh 		val = bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA) << 8;
    438      1.54   msaitoh 		base_addr = val;
    439      1.54   msaitoh 	} else {
    440      1.59   msaitoh 		uint8_t data;
    441      1.59   msaitoh 
    442      1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    443      1.54   msaitoh 		    SB800_PM_SMBUS0EN_LO);
    444      1.54   msaitoh 		val = bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA);
    445      1.54   msaitoh 		enabled = val & SB800_PM_SMBUS0EN_ENABLE;
    446      1.54   msaitoh 		if (!enabled)
    447      1.54   msaitoh 			return ENOENT;
    448      1.54   msaitoh 
    449      1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    450      1.54   msaitoh 		    SB800_PM_SMBUS0EN_HI);
    451      1.54   msaitoh 		val |= bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA) << 8;
    452      1.54   msaitoh 		base_addr = val & SB800_PM_SMBUS0EN_BADDR;
    453      1.54   msaitoh 
    454      1.54   msaitoh 		bus_space_write_1(iot, ioh, SB800_INDIRECTIO_INDEX,
    455      1.54   msaitoh 		    SB800_PM_SMBUS0SELEN);
    456      1.59   msaitoh 		data = bus_space_read_1(iot, ioh, SB800_INDIRECTIO_DATA);
    457      1.59   msaitoh 		if ((data & SB800_PM_USE_SMBUS0SEL) != 0)
    458      1.59   msaitoh 			sc->sc_sb800_selen = true;
    459      1.54   msaitoh 	}
    460      1.54   msaitoh 
    461      1.42     soren 	sc->sc_sb800_ioh = ioh;
    462      1.36  jmcneill 	aprint_debug_dev(sc->sc_dev, "SMBus @ 0x%04x\n", base_addr);
    463      1.36  jmcneill 
    464      1.42     soren 	if (bus_space_map(iot, PCI_MAPREG_IO_ADDR(base_addr),
    465      1.58   msaitoh 	    SB800_SMB_SIZE, 0, &sc->sc_smb_ioh)) {
    466      1.36  jmcneill 		aprint_error_dev(sc->sc_dev, "can't map smbus I/O space\n");
    467      1.36  jmcneill 		return EBUSY;
    468      1.36  jmcneill 	}
    469      1.36  jmcneill 
    470      1.36  jmcneill 	return 0;
    471      1.36  jmcneill }
    472      1.36  jmcneill 
    473      1.35   hannken static void
    474      1.35   hannken piixpm_csb5_reset(void *arg)
    475      1.35   hannken {
    476      1.35   hannken 	struct piixpm_softc *sc = arg;
    477      1.35   hannken 	pcireg_t base, hostc, pmbase;
    478      1.35   hannken 
    479      1.35   hannken 	base = pci_conf_read(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_BASE);
    480      1.35   hannken 	hostc = pci_conf_read(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_HOSTC);
    481      1.35   hannken 
    482      1.35   hannken 	pmbase = pci_conf_read(sc->sc_pc, sc->sc_pcitag, PIIX_PM_BASE);
    483      1.35   hannken 	pmbase |= PIIX_PM_BASE_CSB5_RESET;
    484      1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_PM_BASE, pmbase);
    485      1.35   hannken 	pmbase &= ~PIIX_PM_BASE_CSB5_RESET;
    486      1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_PM_BASE, pmbase);
    487      1.35   hannken 
    488      1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_BASE, base);
    489      1.35   hannken 	pci_conf_write(sc->sc_pc, sc->sc_pcitag, PIIX_SMB_HOSTC, hostc);
    490      1.35   hannken 
    491      1.35   hannken 	(void) tsleep(&sc, PRIBIO, "csb5reset", hz/2);
    492      1.35   hannken }
    493      1.35   hannken 
    494      1.25     joerg static int
    495      1.61   msaitoh piixpm_i2c_sb800_acquire_bus(void *cookie, int flags)
    496       1.1  jmcneill {
    497      1.42     soren 	struct piixpm_smbus *smbus = cookie;
    498      1.42     soren 	struct piixpm_softc *sc = smbus->softc;
    499      1.63   msaitoh 	uint8_t sctl, old_sda, index, mask, reg;
    500      1.61   msaitoh 	int i;
    501      1.61   msaitoh 
    502      1.61   msaitoh 	sctl = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_SC);
    503      1.61   msaitoh 	for (i = 0; i < PIIX_SB800_TIMEOUT; i++) {
    504      1.61   msaitoh 		/* Try to acquire the host semaphore */
    505      1.61   msaitoh 		sctl &= ~PIIX_SMB_SC_SEMMASK;
    506      1.61   msaitoh 		bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_SC,
    507      1.61   msaitoh 		    sctl | PIIX_SMB_SC_HOSTSEM);
    508      1.61   msaitoh 
    509      1.61   msaitoh 		sctl = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    510      1.61   msaitoh 		    PIIX_SMB_SC);
    511      1.61   msaitoh 		if ((sctl & PIIX_SMB_SC_HOSTSEM) != 0)
    512      1.61   msaitoh 			break;
    513      1.61   msaitoh 
    514      1.61   msaitoh 		delay(1000);
    515      1.61   msaitoh 	}
    516      1.61   msaitoh 	if (i >= PIIX_SB800_TIMEOUT) {
    517      1.61   msaitoh 		device_printf(sc->sc_dev,
    518      1.61   msaitoh 		    "Failed to acquire the host semaphore\n");
    519      1.61   msaitoh 		return -1;
    520      1.61   msaitoh 	}
    521       1.1  jmcneill 
    522      1.63   msaitoh 	if (PIIXPM_IS_KERNCZ(sc) ||
    523      1.63   msaitoh 	    (PIIXPM_IS_HUDSON(sc) && (sc->sc_rev >= 0x1f))) {
    524      1.63   msaitoh 		index = AMDFCH41_PM_PORT_INDEX;
    525      1.63   msaitoh 		mask = AMDFCH41_SMBUS_PORTMASK;
    526      1.62   msaitoh 	} else if (sc->sc_sb800_selen) {
    527      1.63   msaitoh 		index = SB800_PM_SMBUS0SEL;
    528      1.63   msaitoh 		mask = SB800_PM_SMBUS0_MASK_E;
    529      1.61   msaitoh 	} else {
    530      1.63   msaitoh 		index = SB800_PM_SMBUS0EN_LO;
    531      1.63   msaitoh 		mask = SB800_PM_SMBUS0_MASK_C;
    532      1.63   msaitoh 	}
    533      1.63   msaitoh 
    534      1.63   msaitoh 	bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    535      1.63   msaitoh 	    SB800_INDIRECTIO_INDEX, index);
    536      1.63   msaitoh 	reg = bus_space_read_1(sc->sc_iot, sc->sc_sb800_ioh,
    537      1.63   msaitoh 	    SB800_INDIRECTIO_DATA);
    538      1.59   msaitoh 
    539      1.63   msaitoh 	old_sda = __SHIFTOUT(reg, mask);
    540      1.63   msaitoh 	if (smbus->sda != old_sda) {
    541      1.63   msaitoh 		reg &= ~mask;
    542      1.63   msaitoh 		reg |= __SHIFTIN(smbus->sda, mask);
    543      1.62   msaitoh 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    544      1.63   msaitoh 		    SB800_INDIRECTIO_DATA, reg);
    545      1.42     soren 	}
    546      1.42     soren 
    547      1.63   msaitoh 	/* Save the old port number */
    548      1.63   msaitoh 	smbus->sda_save = old_sda;
    549      1.63   msaitoh 
    550      1.16   xtraeme 	return 0;
    551       1.1  jmcneill }
    552       1.1  jmcneill 
    553      1.25     joerg static void
    554      1.61   msaitoh piixpm_i2c_sb800_release_bus(void *cookie, int flags)
    555       1.1  jmcneill {
    556      1.42     soren 	struct piixpm_smbus *smbus = cookie;
    557      1.42     soren 	struct piixpm_softc *sc = smbus->softc;
    558      1.63   msaitoh 	uint8_t sctl, index, mask, reg;
    559      1.42     soren 
    560      1.63   msaitoh 	if (PIIXPM_IS_KERNCZ(sc) ||
    561      1.63   msaitoh 	    (PIIXPM_IS_HUDSON(sc) && (sc->sc_rev >= 0x1f))) {
    562      1.63   msaitoh 		index = AMDFCH41_PM_PORT_INDEX;
    563      1.63   msaitoh 		mask = AMDFCH41_SMBUS_PORTMASK;
    564      1.62   msaitoh 	} else if (sc->sc_sb800_selen) {
    565      1.63   msaitoh 		index = SB800_PM_SMBUS0SEL;
    566      1.63   msaitoh 		mask = SB800_PM_SMBUS0_MASK_E;
    567      1.61   msaitoh 	} else {
    568      1.63   msaitoh 		index = SB800_PM_SMBUS0EN_LO;
    569      1.63   msaitoh 		mask = SB800_PM_SMBUS0_MASK_C;
    570      1.63   msaitoh 	}
    571      1.59   msaitoh 
    572      1.63   msaitoh 	bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    573      1.63   msaitoh 	    SB800_INDIRECTIO_INDEX, index);
    574      1.63   msaitoh 	if (smbus->sda != smbus->sda_save) {
    575      1.63   msaitoh 		/* Restore the port number */
    576      1.63   msaitoh 		reg = bus_space_read_1(sc->sc_iot, sc->sc_sb800_ioh,
    577      1.63   msaitoh 		    SB800_INDIRECTIO_DATA);
    578      1.63   msaitoh 		reg &= ~mask;
    579      1.63   msaitoh 		reg |= __SHIFTIN(smbus->sda_save, mask);
    580      1.62   msaitoh 		bus_space_write_1(sc->sc_iot, sc->sc_sb800_ioh,
    581      1.63   msaitoh 		    SB800_INDIRECTIO_DATA, reg);
    582      1.42     soren 	}
    583      1.61   msaitoh 
    584      1.61   msaitoh 	/* Relase the host semaphore */
    585      1.61   msaitoh 	sctl = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_SC);
    586      1.61   msaitoh 	sctl &= ~PIIX_SMB_SC_SEMMASK;
    587      1.61   msaitoh 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_SC,
    588      1.61   msaitoh 	    sctl | PIIX_SMB_SC_CLRHOSTSEM);
    589       1.1  jmcneill }
    590       1.1  jmcneill 
    591      1.25     joerg static int
    592       1.1  jmcneill piixpm_i2c_exec(void *cookie, i2c_op_t op, i2c_addr_t addr,
    593       1.1  jmcneill     const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
    594       1.1  jmcneill {
    595      1.42     soren 	struct piixpm_smbus *smbus = cookie;
    596      1.42     soren 	struct piixpm_softc *sc = smbus->softc;
    597      1.54   msaitoh 	const uint8_t *b;
    598      1.54   msaitoh 	uint8_t ctl = 0, st;
    599       1.1  jmcneill 	int retries;
    600       1.1  jmcneill 
    601      1.53   msaitoh 	DPRINTF(("%s: exec: op %d, addr 0x%02x, cmdlen %zu, len %zu, "
    602      1.53   msaitoh 		"flags 0x%x\n",
    603      1.53   msaitoh 		device_xname(sc->sc_dev), op, addr, cmdlen, len, flags));
    604       1.1  jmcneill 
    605      1.60   thorpej 	mutex_enter(&sc->sc_exec_lock);
    606      1.60   thorpej 
    607      1.41     soren 	/* Clear status bits */
    608      1.49   msaitoh 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS,
    609      1.49   msaitoh 	    PIIX_SMB_HS_INTR | PIIX_SMB_HS_DEVERR |
    610      1.41     soren 	    PIIX_SMB_HS_BUSERR | PIIX_SMB_HS_FAILED);
    611      1.42     soren 	bus_space_barrier(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS, 1,
    612      1.41     soren 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
    613      1.41     soren 
    614       1.1  jmcneill 	/* Wait for bus to be idle */
    615       1.1  jmcneill 	for (retries = 100; retries > 0; retries--) {
    616       1.4  jmcneill 		st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    617       1.4  jmcneill 		    PIIX_SMB_HS);
    618       1.1  jmcneill 		if (!(st & PIIX_SMB_HS_BUSY))
    619       1.1  jmcneill 			break;
    620       1.1  jmcneill 		DELAY(PIIXPM_DELAY);
    621       1.1  jmcneill 	}
    622      1.52   msaitoh 	DPRINTF(("%s: exec: st %#x\n", device_xname(sc->sc_dev), st & 0xff));
    623      1.60   thorpej 	if (st & PIIX_SMB_HS_BUSY) {
    624      1.60   thorpej 		mutex_exit(&sc->sc_exec_lock);
    625      1.60   thorpej 		return (EBUSY);
    626      1.60   thorpej 	}
    627       1.1  jmcneill 
    628      1.56   thorpej 	if (sc->sc_poll)
    629       1.1  jmcneill 		flags |= I2C_F_POLL;
    630       1.1  jmcneill 
    631      1.34   hannken 	if (!I2C_OP_STOP_P(op) || cmdlen > 1 || len > 2 ||
    632      1.60   thorpej 	    (cmdlen == 0 && len > 1)) {
    633      1.60   thorpej 		mutex_exit(&sc->sc_exec_lock);
    634      1.60   thorpej 		return (EINVAL);
    635      1.60   thorpej 	}
    636       1.1  jmcneill 
    637       1.1  jmcneill 	/* Setup transfer */
    638       1.1  jmcneill 	sc->sc_i2c_xfer.op = op;
    639       1.1  jmcneill 	sc->sc_i2c_xfer.buf = buf;
    640       1.1  jmcneill 	sc->sc_i2c_xfer.len = len;
    641       1.1  jmcneill 	sc->sc_i2c_xfer.flags = flags;
    642       1.1  jmcneill 	sc->sc_i2c_xfer.error = 0;
    643      1.60   thorpej 	sc->sc_i2c_xfer.done = false;
    644       1.1  jmcneill 
    645       1.1  jmcneill 	/* Set slave address and transfer direction */
    646       1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_TXSLVA,
    647       1.1  jmcneill 	    PIIX_SMB_TXSLVA_ADDR(addr) |
    648       1.1  jmcneill 	    (I2C_OP_READ_P(op) ? PIIX_SMB_TXSLVA_READ : 0));
    649       1.1  jmcneill 
    650       1.1  jmcneill 	b = cmdbuf;
    651       1.1  jmcneill 	if (cmdlen > 0)
    652       1.1  jmcneill 		/* Set command byte */
    653       1.4  jmcneill 		bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    654       1.4  jmcneill 		    PIIX_SMB_HCMD, b[0]);
    655       1.1  jmcneill 
    656       1.1  jmcneill 	if (I2C_OP_WRITE_P(op)) {
    657       1.1  jmcneill 		/* Write data */
    658       1.1  jmcneill 		b = buf;
    659      1.34   hannken 		if (cmdlen == 0 && len == 1)
    660      1.34   hannken 			bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    661      1.34   hannken 			    PIIX_SMB_HCMD, b[0]);
    662      1.34   hannken 		else if (len > 0)
    663       1.4  jmcneill 			bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    664       1.1  jmcneill 			    PIIX_SMB_HD0, b[0]);
    665       1.1  jmcneill 		if (len > 1)
    666       1.4  jmcneill 			bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    667       1.1  jmcneill 			    PIIX_SMB_HD1, b[1]);
    668       1.1  jmcneill 	}
    669       1.1  jmcneill 
    670       1.1  jmcneill 	/* Set SMBus command */
    671      1.34   hannken 	if (cmdlen == 0) {
    672      1.34   hannken 		if (len == 0)
    673      1.27  pgoyette 			ctl = PIIX_SMB_HC_CMD_QUICK;
    674      1.27  pgoyette 		else
    675      1.27  pgoyette 			ctl = PIIX_SMB_HC_CMD_BYTE;
    676      1.27  pgoyette 	} else if (len == 1)
    677       1.1  jmcneill 		ctl = PIIX_SMB_HC_CMD_BDATA;
    678       1.1  jmcneill 	else if (len == 2)
    679       1.1  jmcneill 		ctl = PIIX_SMB_HC_CMD_WDATA;
    680      1.54   msaitoh 	else
    681      1.54   msaitoh 		panic("%s: unexpected len %zu", __func__, len);
    682       1.1  jmcneill 
    683       1.1  jmcneill 	if ((flags & I2C_F_POLL) == 0)
    684       1.1  jmcneill 		ctl |= PIIX_SMB_HC_INTREN;
    685       1.1  jmcneill 
    686       1.1  jmcneill 	/* Start transaction */
    687       1.1  jmcneill 	ctl |= PIIX_SMB_HC_START;
    688       1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HC, ctl);
    689       1.1  jmcneill 
    690       1.1  jmcneill 	if (flags & I2C_F_POLL) {
    691       1.1  jmcneill 		/* Poll for completion */
    692      1.54   msaitoh 		if (PIIXPM_IS_CSB5(sc))
    693      1.35   hannken 			DELAY(2*PIIXPM_DELAY);
    694      1.35   hannken 		else
    695      1.35   hannken 			DELAY(PIIXPM_DELAY);
    696       1.1  jmcneill 		for (retries = 1000; retries > 0; retries--) {
    697       1.4  jmcneill 			st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    698       1.1  jmcneill 			    PIIX_SMB_HS);
    699       1.1  jmcneill 			if ((st & PIIX_SMB_HS_BUSY) == 0)
    700       1.1  jmcneill 				break;
    701       1.1  jmcneill 			DELAY(PIIXPM_DELAY);
    702       1.1  jmcneill 		}
    703       1.1  jmcneill 		if (st & PIIX_SMB_HS_BUSY)
    704       1.1  jmcneill 			goto timeout;
    705      1.45   hannken 		piixpm_intr(sc);
    706       1.1  jmcneill 	} else {
    707       1.1  jmcneill 		/* Wait for interrupt */
    708      1.60   thorpej 		while (! sc->sc_i2c_xfer.done) {
    709      1.60   thorpej 			if (cv_timedwait(&sc->sc_exec_wait, &sc->sc_exec_lock,
    710      1.60   thorpej 					 PIIXPM_TIMEOUT * hz))
    711      1.60   thorpej 				goto timeout;
    712      1.60   thorpej 		}
    713       1.1  jmcneill 	}
    714       1.1  jmcneill 
    715      1.60   thorpej 	int error = sc->sc_i2c_xfer.error;
    716      1.60   thorpej 	mutex_exit(&sc->sc_exec_lock);
    717       1.1  jmcneill 
    718      1.60   thorpej 	return (error);
    719       1.1  jmcneill 
    720       1.1  jmcneill timeout:
    721       1.1  jmcneill 	/*
    722       1.1  jmcneill 	 * Transfer timeout. Kill the transaction and clear status bits.
    723       1.1  jmcneill 	 */
    724      1.25     joerg 	aprint_error_dev(sc->sc_dev, "timeout, status 0x%x\n", st);
    725       1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HC,
    726       1.1  jmcneill 	    PIIX_SMB_HC_KILL);
    727       1.1  jmcneill 	DELAY(PIIXPM_DELAY);
    728       1.4  jmcneill 	st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS);
    729       1.1  jmcneill 	if ((st & PIIX_SMB_HS_FAILED) == 0)
    730      1.49   msaitoh 		aprint_error_dev(sc->sc_dev,
    731      1.49   msaitoh 		    "transaction abort failed, status 0x%x\n", st);
    732       1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS, st);
    733      1.35   hannken 	/*
    734      1.35   hannken 	 * CSB5 needs hard reset to unlock the smbus after timeout.
    735      1.35   hannken 	 */
    736      1.54   msaitoh 	if (PIIXPM_IS_CSB5(sc))
    737      1.35   hannken 		piixpm_csb5_reset(sc);
    738      1.60   thorpej 	mutex_exit(&sc->sc_exec_lock);
    739      1.60   thorpej 	return (ETIMEDOUT);
    740       1.1  jmcneill }
    741       1.1  jmcneill 
    742      1.25     joerg static int
    743       1.1  jmcneill piixpm_intr(void *arg)
    744       1.1  jmcneill {
    745      1.45   hannken 	struct piixpm_softc *sc = arg;
    746      1.54   msaitoh 	uint8_t st;
    747      1.54   msaitoh 	uint8_t *b;
    748       1.1  jmcneill 	size_t len;
    749       1.1  jmcneill 
    750       1.1  jmcneill 	/* Read status */
    751       1.4  jmcneill 	st = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS);
    752       1.1  jmcneill 	if ((st & PIIX_SMB_HS_BUSY) != 0 || (st & (PIIX_SMB_HS_INTR |
    753       1.1  jmcneill 	    PIIX_SMB_HS_DEVERR | PIIX_SMB_HS_BUSERR |
    754       1.1  jmcneill 	    PIIX_SMB_HS_FAILED)) == 0)
    755       1.1  jmcneill 		/* Interrupt was not for us */
    756       1.1  jmcneill 		return (0);
    757       1.1  jmcneill 
    758      1.52   msaitoh 	DPRINTF(("%s: intr st %#x\n", device_xname(sc->sc_dev), st & 0xff));
    759       1.1  jmcneill 
    760      1.60   thorpej 	if ((sc->sc_i2c_xfer.flags & I2C_F_POLL) == 0)
    761      1.60   thorpej 		mutex_enter(&sc->sc_exec_lock);
    762      1.60   thorpej 
    763       1.1  jmcneill 	/* Clear status bits */
    764       1.4  jmcneill 	bus_space_write_1(sc->sc_smb_iot, sc->sc_smb_ioh, PIIX_SMB_HS, st);
    765       1.1  jmcneill 
    766       1.1  jmcneill 	/* Check for errors */
    767       1.1  jmcneill 	if (st & (PIIX_SMB_HS_DEVERR | PIIX_SMB_HS_BUSERR |
    768       1.1  jmcneill 	    PIIX_SMB_HS_FAILED)) {
    769      1.60   thorpej 		sc->sc_i2c_xfer.error = EIO;
    770       1.1  jmcneill 		goto done;
    771       1.1  jmcneill 	}
    772       1.1  jmcneill 
    773       1.1  jmcneill 	if (st & PIIX_SMB_HS_INTR) {
    774       1.1  jmcneill 		if (I2C_OP_WRITE_P(sc->sc_i2c_xfer.op))
    775       1.1  jmcneill 			goto done;
    776       1.1  jmcneill 
    777       1.1  jmcneill 		/* Read data */
    778       1.1  jmcneill 		b = sc->sc_i2c_xfer.buf;
    779       1.1  jmcneill 		len = sc->sc_i2c_xfer.len;
    780       1.1  jmcneill 		if (len > 0)
    781       1.4  jmcneill 			b[0] = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    782       1.1  jmcneill 			    PIIX_SMB_HD0);
    783       1.1  jmcneill 		if (len > 1)
    784       1.4  jmcneill 			b[1] = bus_space_read_1(sc->sc_smb_iot, sc->sc_smb_ioh,
    785       1.1  jmcneill 			    PIIX_SMB_HD1);
    786       1.1  jmcneill 	}
    787       1.1  jmcneill 
    788       1.1  jmcneill done:
    789      1.60   thorpej 	sc->sc_i2c_xfer.done = true;
    790      1.60   thorpej 	if ((sc->sc_i2c_xfer.flags & I2C_F_POLL) == 0) {
    791      1.60   thorpej 		cv_signal(&sc->sc_exec_wait);
    792      1.60   thorpej 		mutex_exit(&sc->sc_exec_lock);
    793      1.60   thorpej 	}
    794       1.1  jmcneill 	return (1);
    795       1.1  jmcneill }
    796