xref: /freebsd/sys/isa/vga_isa.c (revision a1a4f1a0d87b594d3f17a97dc0127eec1417e6f6)
1 /*-
2  * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer as
10  *    the first lines of this file unmodified.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #include "vga.h"
30 #include "opt_vga.h"
31 #include "opt_fb.h"
32 #include "opt_syscons.h"	/* should be removed in the future, XXX */
33 
34 #if NVGA > 0
35 
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/kernel.h>
39 #include <sys/conf.h>
40 #include <sys/bus.h>
41 #include <sys/fbio.h>
42 
43 #include <machine/bus.h>
44 #include <machine/resource.h>
45 
46 #include <sys/rman.h>
47 
48 #include <vm/vm.h>
49 #include <vm/pmap.h>
50 
51 #include <machine/md_var.h>
52 #include <machine/pc/bios.h>
53 
54 #include <dev/fb/fbreg.h>
55 #include <dev/fb/vgareg.h>
56 
57 #include <isa/isareg.h>
58 #include <isa/isavar.h>
59 
60 #define VGA_SOFTC(unit)		\
61 	((vga_softc_t *)devclass_get_softc(isavga_devclass, unit))
62 
63 static devclass_t	isavga_devclass;
64 
65 static int		isavga_probe(device_t dev);
66 static int		isavga_attach(device_t dev);
67 
68 static device_method_t isavga_methods[] = {
69 	DEVMETHOD(device_probe,		isavga_probe),
70 	DEVMETHOD(device_attach,	isavga_attach),
71 
72 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
73 	{ 0, 0 }
74 };
75 
76 static driver_t isavga_driver = {
77 	VGA_DRIVER_NAME,
78 	isavga_methods,
79 	sizeof(vga_softc_t),
80 };
81 
82 DRIVER_MODULE(vga, isa, isavga_driver, isavga_devclass, 0, 0);
83 
84 #ifdef FB_INSTALL_CDEV
85 
86 static d_open_t		isavga_open;
87 static d_close_t	isavga_close;
88 static d_read_t		isavga_read;
89 static d_write_t	isavga_write;
90 static d_ioctl_t	isavga_ioctl;
91 static d_mmap_t		isavga_mmap;
92 
93 static struct cdevsw isavga_cdevsw = {
94 	/* open */	isavga_open,
95 	/* close */	isavga_close,
96 	/* read */	isavga_read,
97 	/* write */	isavga_write,
98 	/* ioctl */	isavga_ioctl,
99 	/* stop */	nostop,
100 	/* reset */	noreset,
101 	/* devtotty */	nodevtotty,
102 	/* poll */	nopoll,
103 	/* mmap */	isavga_mmap,
104 	/* strategy */	nostrategy,
105 	/* name */	VGA_DRIVER_NAME,
106 	/* parms */	noparms,
107 	/* maj */	-1,
108 	/* dump */	nodump,
109 	/* psize */	nopsize,
110 	/* flags */	0,
111 	/* maxio */	0,
112 	/* bmaj */	-1
113 };
114 
115 #endif /* FB_INSTALL_CDEV */
116 
117 static int
118 isavga_probe(device_t dev)
119 {
120 	video_adapter_t adp;
121 	device_t bus;
122 	int error;
123 
124 	/* No pnp support */
125 	if (isa_get_vendorid(dev))
126 		return (ENXIO);
127 
128 	device_set_desc(dev, "Generic ISA VGA");
129 	error = vga_probe_unit(device_get_unit(dev), &adp, isa_get_flags(dev));
130 	if (error == 0) {
131 		bus = device_get_parent(dev);
132 		ISA_SET_RESOURCE(bus, dev, SYS_RES_IOPORT, 0,
133 				 adp.va_io_base, adp.va_io_size);
134 		ISA_SET_RESOURCE(bus, dev, SYS_RES_MEMORY, 0,
135 				 adp.va_mem_base, adp.va_mem_size);
136 #if 0
137 		isa_set_port(dev, adp.va_io_base);
138 		isa_set_portsize(dev, adp.va_io_size);
139 		isa_set_maddr(dev, adp.va_mem_base);
140 		isa_set_msize(dev, adp.va_mem_size);
141 #endif
142 	}
143 	return error;
144 }
145 
146 static int
147 isavga_attach(device_t dev)
148 {
149 	vga_softc_t *sc;
150 	struct resource *port;
151 	struct resource *mem;
152 	int unit;
153 	int rid;
154 	int error;
155 
156 	unit = device_get_unit(dev);
157 	sc = device_get_softc(dev);
158 
159 	rid = 0;
160 	port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
161 				  0, ~0, 0, RF_ACTIVE | RF_SHAREABLE);
162 	rid = 0;
163 	mem = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
164 				 0, ~0, 0, RF_ACTIVE | RF_SHAREABLE);
165 
166 	error = vga_attach_unit(unit, sc, isa_get_flags(dev));
167 	if (error)
168 		return error;
169 
170 #ifdef FB_INSTALL_CDEV
171 	/* attach a virtual frame buffer device */
172 	error = fb_attach(makedev(0, VGA_MKMINOR(unit)), sc->adp, &isavga_cdevsw);
173 	if (error)
174 		return error;
175 #endif /* FB_INSTALL_CDEV */
176 
177 	if (bootverbose)
178 		(*vidsw[sc->adp->va_index]->diag)(sc->adp, bootverbose);
179 
180 #if experimental
181 	device_add_child(dev, "fb", -1, NULL);
182 	bus_generic_attach(dev);
183 #endif
184 
185 	return 0;
186 }
187 
188 #ifdef FB_INSTALL_CDEV
189 
190 static int
191 isavga_open(dev_t dev, int flag, int mode, struct proc *p)
192 {
193 	return vga_open(dev, VGA_SOFTC(VGA_UNIT(dev)), flag, mode, p);
194 }
195 
196 static int
197 isavga_close(dev_t dev, int flag, int mode, struct proc *p)
198 {
199 	return vga_close(dev, VGA_SOFTC(VGA_UNIT(dev)), flag, mode, p);
200 }
201 
202 static int
203 isavga_read(dev_t dev, struct uio *uio, int flag)
204 {
205 	return vga_read(dev, VGA_SOFTC(VGA_UNIT(dev)), uio, flag);
206 }
207 
208 static int
209 isavga_write(dev_t dev, struct uio *uio, int flag)
210 {
211 	return vga_write(dev, VGA_SOFTC(VGA_UNIT(dev)), uio, flag);
212 }
213 
214 static int
215 isavga_ioctl(dev_t dev, u_long cmd, caddr_t arg, int flag, struct proc *p)
216 {
217 	return vga_ioctl(dev, VGA_SOFTC(VGA_UNIT(dev)), cmd, arg, flag, p);
218 }
219 
220 static int
221 isavga_mmap(dev_t dev, vm_offset_t offset, int prot)
222 {
223 	return vga_mmap(dev, VGA_SOFTC(VGA_UNIT(dev)), offset, prot);
224 }
225 
226 #endif /* FB_INSTALL_CDEV */
227 
228 #endif /* NVGA > 0 */
229