vga_isa.c revision 1.2 1 1.2 drochner /* $NetBSD: vga_isa.c,v 1.2 1998/05/28 16:48:41 drochner Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1995, 1996 Carnegie-Mellon University.
5 1.1 drochner * All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Author: Chris G. Demetriou
8 1.1 drochner *
9 1.1 drochner * Permission to use, copy, modify and distribute this software and
10 1.1 drochner * its documentation is hereby granted, provided that both the copyright
11 1.1 drochner * notice and this permission notice appear in all copies of the
12 1.1 drochner * software, derivative works or modified versions, and any portions
13 1.1 drochner * thereof, and that both notices appear in supporting documentation.
14 1.1 drochner *
15 1.1 drochner * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 1.1 drochner * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17 1.1 drochner * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18 1.1 drochner *
19 1.1 drochner * Carnegie Mellon requests users of this software to return to
20 1.1 drochner *
21 1.1 drochner * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
22 1.1 drochner * School of Computer Science
23 1.1 drochner * Carnegie Mellon University
24 1.1 drochner * Pittsburgh PA 15213-3890
25 1.1 drochner *
26 1.1 drochner * any improvements or extensions that they make and grant Carnegie the
27 1.1 drochner * rights to redistribute these changes.
28 1.1 drochner */
29 1.1 drochner
30 1.1 drochner #include <sys/param.h>
31 1.1 drochner #include <sys/systm.h>
32 1.1 drochner #include <sys/kernel.h>
33 1.1 drochner #include <sys/device.h>
34 1.1 drochner #include <sys/malloc.h>
35 1.1 drochner
36 1.1 drochner #include <dev/isa/isavar.h>
37 1.1 drochner
38 1.2 drochner #include <dev/ic/mc6845reg.h>
39 1.2 drochner #include <dev/ic/pcdisplayvar.h>
40 1.1 drochner #include <dev/ic/vgareg.h>
41 1.1 drochner #include <dev/ic/vgavar.h>
42 1.1 drochner #include <dev/isa/vga_isavar.h>
43 1.1 drochner
44 1.1 drochner #include <dev/wscons/wsconsio.h>
45 1.1 drochner #include <dev/wscons/wsdisplayvar.h>
46 1.1 drochner
47 1.1 drochner struct vga_isa_softc {
48 1.1 drochner struct device sc_dev;
49 1.1 drochner #if 0
50 1.1 drochner struct vga_config *sc_vc; /* VGA configuration */
51 1.1 drochner #endif
52 1.1 drochner };
53 1.1 drochner
54 1.1 drochner int vga_isa_match __P((struct device *, struct cfdata *, void *));
55 1.1 drochner void vga_isa_attach __P((struct device *, struct device *, void *));
56 1.1 drochner
57 1.1 drochner struct cfattach vga_isa_ca = {
58 1.1 drochner sizeof(struct vga_isa_softc), vga_isa_match, vga_isa_attach,
59 1.1 drochner };
60 1.1 drochner
61 1.1 drochner int
62 1.1 drochner vga_isa_match(parent, match, aux)
63 1.1 drochner struct device *parent;
64 1.1 drochner struct cfdata *match;
65 1.1 drochner void *aux;
66 1.1 drochner {
67 1.1 drochner struct isa_attach_args *ia = aux;
68 1.1 drochner int rv;
69 1.1 drochner
70 1.1 drochner /* If values are hardwired to something that they can't be, punt. */
71 1.1 drochner if (ia->ia_iobase != IOBASEUNK || /* ia->ia_iosize != 0 || XXX isa.c */
72 1.1 drochner (ia->ia_maddr != MADDRUNK && ia->ia_maddr != 0xb8000) ||
73 1.1 drochner (ia->ia_msize != 0 && ia->ia_msize != 0x8000) ||
74 1.1 drochner ia->ia_irq != IRQUNK || ia->ia_drq != DRQUNK)
75 1.1 drochner return (0);
76 1.1 drochner
77 1.1 drochner if (vga_is_console(ia->ia_iot, WSDISPLAY_TYPE_ISAVGA))
78 1.2 drochner rv = 2; /* more than generic pcdisplay */
79 1.1 drochner else
80 1.1 drochner rv = vga_common_probe(ia->ia_iot, ia->ia_memt);
81 1.1 drochner
82 1.1 drochner if (rv) {
83 1.1 drochner ia->ia_iobase = 0x3b0;
84 1.1 drochner ia->ia_iosize = 0x30;
85 1.1 drochner ia->ia_maddr = 0xb8000;
86 1.1 drochner ia->ia_msize = 0x8000;
87 1.1 drochner }
88 1.1 drochner return (rv);
89 1.1 drochner }
90 1.1 drochner
91 1.1 drochner void
92 1.1 drochner vga_isa_attach(parent, self, aux)
93 1.1 drochner struct device *parent, *self;
94 1.1 drochner void *aux;
95 1.1 drochner {
96 1.1 drochner struct isa_attach_args *ia = aux;
97 1.1 drochner #if 0
98 1.1 drochner struct vga_isa_softc *sc = (struct vga_isa_softc *)self;
99 1.1 drochner #endif
100 1.1 drochner
101 1.1 drochner printf("\n");
102 1.1 drochner
103 1.1 drochner vga_common_attach(self, ia->ia_iot, ia->ia_memt,
104 1.1 drochner WSDISPLAY_TYPE_ISAVGA);
105 1.1 drochner }
106 1.1 drochner
107 1.1 drochner int
108 1.1 drochner vga_isa_cnattach(iot, memt)
109 1.1 drochner bus_space_tag_t iot, memt;
110 1.1 drochner {
111 1.1 drochner return (vga_cnattach(iot, memt, WSDISPLAY_TYPE_ISAVGA, 1));
112 1.1 drochner }
113