#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pceb.c,v 1.9 2025/10/19 20:35:02 thorpej Exp $");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/bus.h>
#include <dev/isa/isavar.h>
#include <dev/eisa/eisavar.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>
#include "eisa.h"
#include "isa.h"
int pcebmatch(device_t, cfdata_t, void *);
void pcebattach(device_t, device_t, void *);
CFATTACH_DECL_NEW(pceb, 0,
pcebmatch, pcebattach, NULL, NULL);
void pceb_callback(device_t);
union pceb_attach_args {
const char *ea_name;
struct isabus_attach_args ea_iba;
struct eisabus_attach_args ea_eba;
};
int
pcebmatch(device_t parent, cfdata_t match, void *aux)
{
struct pci_attach_args *pa = aux;
if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_EISA)
return (1);
switch (PCI_VENDOR(pa->pa_id)) {
case PCI_VENDOR_INTEL:
switch (PCI_PRODUCT(pa->pa_id)) {
case PCI_PRODUCT_INTEL_PCEB:
return (1);
}
break;
}
return (0);
}
void
pcebattach(device_t parent, device_t self, void *aux)
{
struct pci_attach_args *pa = aux;
char devinfo[256];
int error;
aprint_normal("\n");
pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
aprint_normal_dev(self, "%s (rev. 0x%02x)\n", devinfo,
PCI_REVISION(pa->pa_class));
prep_eisa_io_space_tag.pbs_extent = prep_io_space_tag.pbs_extent;
error = bus_space_init(&prep_eisa_io_space_tag, "eisa-ioport", NULL, 0);
if (error)
panic("prep_bus_space_init: can't init eisa io tag");
prep_eisa_mem_space_tag.pbs_extent = prep_mem_space_tag.pbs_extent;
error = bus_space_init(&prep_eisa_mem_space_tag, "eisa-iomem", NULL, 0);
if (error)
panic("prep_bus_space_init: can't init eisa mem tag");
config_defer(self, pceb_callback);
}
void
pceb_callback(device_t self)
{
union pceb_attach_args ea;
memset(&ea, 0, sizeof(ea));
ea.ea_eba.eba_iot = &prep_eisa_io_space_tag;
ea.ea_eba.eba_memt = &prep_eisa_mem_space_tag;
#if NEISA > 0
ea.ea_eba.eba_dmat = &eisa_bus_dma_tag;
#endif
eisabus_attach(self, &ea.ea_eba);
memset(&ea, 0, sizeof(ea));
ea.ea_iba.iba_iot = &genppc_isa_io_space_tag;
ea.ea_iba.iba_memt = &genppc_isa_mem_space_tag;
#if NISA > 0
ea.ea_iba.iba_dmat = &isa_bus_dma_tag;
#endif
isabus_attach(self, &ea.ea_iba);
}