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