#include <sys/param.h>
#include <sys/device.h>
#include <sys/systm.h>
#include <machine/bus.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>
struct pwdog_softc {
struct device pwdog_dev;
bus_space_tag_t iot;
bus_space_handle_t ioh;
};
#define PWDOG_ACTIVATE 0
#define PWDOG_DISABLE 1
int pwdog_probe(struct device *, void *, void *);
void pwdog_attach(struct device *, struct device *, void *);
int pwdog_activate(struct device *, int);
int pwdog_set_timeout(void *, int);
const struct cfattach pwdog_ca = {
sizeof(struct pwdog_softc), pwdog_probe, pwdog_attach,
NULL, pwdog_activate
};
struct cfdriver pwdog_cd = {
NULL, "pwdog", DV_DULL
};
const struct pci_matchid pwdog_devices[] = {
{ PCI_VENDOR_QUANCOM, PCI_PRODUCT_QUANCOM_PWDOG1 }
};
int
pwdog_probe(struct device *parent, void *match, void *aux)
{
return pci_matchbyid((struct pci_attach_args *)aux, pwdog_devices,
sizeof(pwdog_devices) / sizeof(pwdog_devices[0]));
}
void
pwdog_attach(struct device *parent, struct device *self, void *aux)
{
struct pwdog_softc *pwdog = (struct pwdog_softc *)self;
struct pci_attach_args *pa = (struct pci_attach_args *)aux;
pcireg_t memtype;
bus_size_t iosize;
memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, PCI_MAPREG_START);
if (pci_mapreg_map(pa, PCI_MAPREG_START, memtype, 0, &pwdog->iot,
&pwdog->ioh, NULL, &iosize, 0)) {
printf("\n%s: PCI %s region not found\n",
pwdog->pwdog_dev.dv_xname,
memtype == PCI_MAPREG_TYPE_IO ? "I/O" : "memory");
return;
}
printf("\n");
bus_space_write_1(pwdog->iot, pwdog->ioh, PWDOG_DISABLE, 0);
wdog_register(pwdog_set_timeout, pwdog);
}
int
pwdog_activate(struct device *self, int act)
{
switch (act) {
case DVACT_POWERDOWN:
wdog_shutdown(self);
break;
}
return (0);
}
int
pwdog_set_timeout(void *self, int seconds)
{
struct pwdog_softc *pwdog = (struct pwdog_softc *)self;
int s;
s = splclock();
if (seconds)
bus_space_write_1(pwdog->iot, pwdog->ioh, PWDOG_ACTIVATE, 0);
else
bus_space_write_1(pwdog->iot, pwdog->ioh, PWDOG_DISABLE, 0);
splx(s);
return seconds;
}