Home | History | Annotate | Line # | Download | only in pci
pwdog.c revision 1.4
      1 /*	$$NetBSD: pwdog.c,v 1.4 2011/08/26 13:29:56 mbalmer Exp $ */
      2 /*	$OpenBSD: pwdog.c,v 1.7 2010/04/08 00:23:53 tedu Exp $ */
      3 
      4 /*
      5  * Copyright (c) 2006, 2011 Marc Balmer <mbalmer (at) NetBSD.org>
      6  *
      7  * Permission to use, copy, modify, and distribute this software for any
      8  * purpose with or without fee is hereby granted, provided that the above
      9  * copyright notice and this permission notice appear in all copies.
     10  *
     11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     18  */
     19 
     20 #include <sys/types.h>
     21 #include <sys/param.h>
     22 #include <sys/device.h>
     23 #include <sys/kernel.h>
     24 #ifdef _MODULE
     25 #include <sys/module.h>
     26 #endif
     27 #include <sys/systm.h>
     28 
     29 #include <dev/pci/pcivar.h>
     30 #include <dev/pci/pcireg.h>
     31 #include <dev/pci/pcidevs.h>
     32 
     33 #include <dev/sysmon/sysmonvar.h>
     34 
     35 struct pwdog_softc {
     36 	device_t		sc_dev;
     37 
     38 	bus_space_tag_t		sc_iot;
     39 	bus_space_handle_t	sc_ioh;
     40 	bus_size_t		sc_iosize;
     41 
     42 	struct sysmon_wdog	sc_smw;
     43 	bool			sc_smw_valid;
     44 };
     45 
     46 /* registers */
     47 #define PWDOG_ACTIVATE	0
     48 #define PWDOG_DISABLE	1
     49 
     50 /* maximum timeout period in seconds */
     51 #define PWDOG_MAX_PERIOD	(12*60)	/* 12 minutes */
     52 
     53 static int pwdog_match(device_t, cfdata_t, void *);
     54 static void pwdog_attach(device_t, device_t, void *);
     55 static int pwdog_detach(device_t, int);
     56 static bool pwdog_suspend(device_t, const pmf_qual_t *);
     57 static bool pwdog_resume(device_t, const pmf_qual_t *);
     58 static int pwdog_setmode(struct sysmon_wdog *);
     59 static int pwdog_tickle(struct sysmon_wdog *);
     60 
     61 CFATTACH_DECL_NEW(
     62     pwdog,
     63     sizeof(struct pwdog_softc),
     64     pwdog_match,
     65     pwdog_attach,
     66     pwdog_detach,
     67     NULL
     68 );
     69 
     70 static int
     71 pwdog_match(device_t parent, cfdata_t match, void *aux)
     72 {
     73 	struct pci_attach_args *pa = (struct pci_attach_args *)aux;
     74 
     75 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_QUANCOM &&
     76 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_QUANCOM_PWDOG1)
     77 		return 1;
     78 	return 0;
     79 }
     80 
     81 void
     82 pwdog_attach(device_t parent, device_t self, void *aux)
     83 {
     84 	struct pwdog_softc *sc = device_private(self);
     85 	struct pci_attach_args *const pa = (struct pci_attach_args *)aux;
     86 	pcireg_t memtype;
     87 
     88 	memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, PCI_MAPREG_START);
     89 	if (pci_mapreg_map(pa, PCI_MAPREG_START, memtype, 0, &sc->sc_iot,
     90 	    &sc->sc_ioh, NULL, &sc->sc_iosize)) {
     91 		aprint_error("\n");
     92 		aprint_error_dev(self, "PCI %s region not found\n",
     93 		    memtype == PCI_MAPREG_TYPE_IO ? "I/O" : "memory");
     94 		return;
     95 	}
     96 	printf("\n");
     97 
     98 	sc->sc_dev = self;
     99 
    100 	pmf_device_register(self, pwdog_suspend, pwdog_resume);
    101 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, PWDOG_DISABLE, 0);
    102 
    103 	sc->sc_smw.smw_name = device_xname(self);
    104 	sc->sc_smw.smw_cookie = sc;
    105 	sc->sc_smw.smw_setmode = pwdog_setmode;
    106 	sc->sc_smw.smw_tickle = pwdog_tickle;
    107 	sc->sc_smw.smw_period = PWDOG_MAX_PERIOD;
    108 
    109 	if (sysmon_wdog_register(&sc->sc_smw))
    110 		aprint_error_dev(self, "couldn't register with sysmon\n");
    111 	else
    112 		sc->sc_smw_valid = true;
    113 }
    114 
    115 static int
    116 pwdog_detach(device_t self, int flags)
    117 {
    118 	struct pwdog_softc *sc = device_private(self);
    119 
    120 	/* XXX check flags & DETACH_FORCE (or DETACH_SHUTDOWN)? */
    121 	if (sc->sc_smw_valid) {
    122 		if ((sc->sc_smw.smw_mode & WDOG_MODE_MASK)
    123 		    != WDOG_MODE_DISARMED)
    124 			return EBUSY;
    125 
    126 		sysmon_wdog_unregister(&sc->sc_smw);
    127 		sc->sc_smw_valid = false;
    128 	}
    129 
    130 	pmf_device_deregister(self);
    131 
    132 	if (sc->sc_iosize)
    133 		bus_space_unmap(sc->sc_iot, sc->sc_ioh, sc->sc_iosize);
    134 	return 0;
    135 }
    136 
    137 static bool
    138 pwdog_resume(device_t self, const pmf_qual_t *qual)
    139 {
    140 	struct pwdog_softc *sc = device_private(self);
    141 
    142 	if (sc->sc_smw_valid == false)
    143 		return true;
    144 
    145 	/*
    146 	 * suspend is inhibited when the watchdog timer was armed,
    147 	 * so when we end up here, the watchdog is disabled; program the
    148 	 * hardware accordingly.
    149 	 */
    150 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, PWDOG_DISABLE, 0);
    151 	return true;
    152 }
    153 
    154 static bool
    155 pwdog_suspend(device_t self, const pmf_qual_t *qual)
    156 {
    157 	struct pwdog_softc *sc = device_private(self);
    158 
    159 	if (sc->sc_smw_valid == false)
    160 		return true;
    161 
    162 	if ((sc->sc_smw.smw_mode & WDOG_MODE_MASK) != WDOG_MODE_DISARMED)
    163 		return false;
    164 
    165 	return true;
    166 }
    167 
    168 static int
    169 pwdog_setmode(struct sysmon_wdog *smw)
    170 {
    171 	struct pwdog_softc *sc = smw->smw_cookie;
    172 
    173 	switch (smw->smw_mode & WDOG_MODE_MASK) {
    174 	case WDOG_MODE_DISARMED:
    175 		bus_space_write_1(sc->sc_iot, sc->sc_ioh, PWDOG_DISABLE, 0);
    176 		break;
    177 	default:
    178 		/*
    179 		 * NB: the timer period set by the user is ignored
    180 		 * since the period can only be set in hardware.
    181 		 */
    182 		bus_space_write_1(sc->sc_iot, sc->sc_ioh, PWDOG_ACTIVATE, 0);
    183 	}
    184 	return 0;
    185 }
    186 
    187 static int
    188 pwdog_tickle(struct sysmon_wdog *smw)
    189 {
    190 	struct pwdog_softc *sc = smw->smw_cookie;
    191 
    192 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, PWDOG_ACTIVATE, 0);
    193 	return 0;
    194 }
    195 
    196 #ifdef _MODULE
    197 MODULE(MODULE_CLASS_DRIVER, pwdog, NULL);
    198 
    199 #include "ioconf.c"
    200 
    201 static int
    202 pwdog_modcmd(modcmd_t cmd, void *opaque)
    203 {
    204 	int error;
    205 
    206 	switch (cmd) {
    207 	case MODULE_CMD_INIT:
    208 		error = config_init_component(cfdriver_ioconf_pwdog,
    209 		    cfattach_ioconf_pwdog, cfdata_ioconf_pwdog);
    210 		if (error) {
    211 			aprint_error("%s: unable to init component\n",
    212 			    pwdog_cd.cd_name);
    213 			return error;
    214 		}
    215 		return 0;
    216 	case MODULE_CMD_FINI:
    217 		config_fini_component(cfdriver_ioconf_pwdog,
    218 		    cfattach_ioconf_pwdog, cfdata_ioconf_pwdog);
    219 		return 0;
    220 	default:
    221 		return ENOTTY;
    222 	}
    223 }
    224 
    225 #endif /* _MODULE */
    226