#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bus.h>
#include <sys/conf.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <machine/bus.h>
#include <sys/rman.h>
#include <machine/resource.h>
#include <isa/isavar.h>
#include <isa/pnpvar.h>
#include <dev/proto/proto.h>
static int proto_isa_probe(device_t dev);
static int proto_isa_attach(device_t dev);
static device_method_t proto_isa_methods[] = {
DEVMETHOD(device_probe, proto_isa_probe),
DEVMETHOD(device_attach, proto_isa_attach),
DEVMETHOD(device_detach, proto_detach),
DEVMETHOD_END
};
static driver_t proto_isa_driver = {
proto_driver_name,
proto_isa_methods,
sizeof(struct proto_softc),
};
static char proto_isa_prefix[] = "isa";
static char **proto_isa_devnames;
static int
proto_isa_probe(device_t dev)
{
struct resource *res;
int rid, type;
rid = 0;
type = SYS_RES_IOPORT;
res = bus_alloc_resource_any(dev, type, &rid, RF_ACTIVE);
if (res == NULL) {
type = SYS_RES_MEMORY;
res = bus_alloc_resource_any(dev, type, &rid, RF_ACTIVE);
}
if (res == NULL)
return (ENODEV);
device_set_descf(dev, "%s:%#jx", proto_isa_prefix, rman_get_start(res));
bus_release_resource(dev, type, rid, res);
return (proto_probe(dev, proto_isa_prefix, &proto_isa_devnames));
}
static int
proto_isa_alloc(device_t dev, int type, int nrids)
{
struct resource *res;
struct proto_softc *sc;
int count, rid;
sc = device_get_softc(dev);
count = 0;
for (rid = 0; rid < nrids; rid++) {
res = bus_alloc_resource_any(dev, type, &rid, RF_ACTIVE);
if (res == NULL)
break;
proto_add_resource(sc, type, rid, res);
count++;
}
if (type == SYS_RES_DRQ && count > 0)
proto_add_resource(sc, PROTO_RES_BUSDMA, 0, NULL);
return (count);
}
static int
proto_isa_attach(device_t dev)
{
proto_isa_alloc(dev, SYS_RES_IRQ, ISA_NIRQ);
proto_isa_alloc(dev, SYS_RES_DRQ, ISA_NDRQ);
proto_isa_alloc(dev, SYS_RES_IOPORT, ISA_NPORT);
proto_isa_alloc(dev, SYS_RES_MEMORY, ISA_NMEM);
return (proto_attach(dev));
}
DRIVER_MODULE(proto, acpi, proto_isa_driver, NULL, NULL);
DRIVER_MODULE(proto, isa, proto_isa_driver, NULL, NULL);