#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <dev/isa/isavar.h>
#include <dev/ic/mc6845reg.h>
#include <dev/ic/pcdisplayvar.h>
#include <dev/ic/vgareg.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsdisplayvar.h>
#include <dev/ic/vgavar.h>
#include <dev/isa/vga_isavar.h>
struct vga_isa_softc {
struct device sc_dev;
#if 0
struct vga_config *sc_vc;
#endif
};
int vga_isa_match(struct device *, void *, void *);
void vga_isa_attach(struct device *, struct device *, void *);
const struct cfattach vga_isa_ca = {
sizeof(struct vga_isa_softc), vga_isa_match, vga_isa_attach,
};
int
vga_isa_match(struct device *parent, void *match, void *aux)
{
struct isa_attach_args *ia = aux;
if ((ia->ia_iobase != IOBASEUNK && ia->ia_iobase != 0x3b0) ||
(ia->ia_maddr != MADDRUNK && ia->ia_maddr != 0xa0000) ||
(ia->ia_msize != 0 && ia->ia_msize != 0x20000) ||
ia->ia_irq != IRQUNK || ia->ia_drq != DRQUNK)
return (0);
if (!vga_is_console(ia->ia_iot, WSDISPLAY_TYPE_ISAVGA) &&
!vga_common_probe(ia->ia_iot, ia->ia_memt))
return (0);
ia->ia_iobase = 0x3b0;
ia->ia_iosize = 0x30;
ia->ia_maddr = 0xa0000;
ia->ia_msize = 0x20000;
return (2);
}
void
vga_isa_attach(struct device *parent, struct device *self, void *aux)
{
struct isa_attach_args *ia = aux;
#if 0
struct vga_isa_softc *sc = (struct vga_isa_softc *)self;
#endif
printf("\n");
vga_common_attach(self, ia->ia_iot, ia->ia_memt,
WSDISPLAY_TYPE_ISAVGA);
}
int
vga_isa_cnattach(bus_space_tag_t iot, bus_space_tag_t memt)
{
return (vga_cnattach(iot, memt, WSDISPLAY_TYPE_ISAVGA, 1));
}