grf.c revision 1.29 1 1.29 minoura /* $NetBSD: grf.c,v 1.29 2004/01/25 13:17:00 minoura Exp $ */
2 1.1 oki
3 1.1 oki /*
4 1.1 oki * Copyright (c) 1990, 1993
5 1.1 oki * The Regents of the University of California. All rights reserved.
6 1.1 oki *
7 1.1 oki * This code is derived from software contributed to Berkeley by
8 1.1 oki * the Systems Programming Group of the University of Utah Computer
9 1.1 oki * Science Department.
10 1.1 oki *
11 1.1 oki * Redistribution and use in source and binary forms, with or without
12 1.1 oki * modification, are permitted provided that the following conditions
13 1.1 oki * are met:
14 1.1 oki * 1. Redistributions of source code must retain the above copyright
15 1.1 oki * notice, this list of conditions and the following disclaimer.
16 1.1 oki * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 oki * notice, this list of conditions and the following disclaimer in the
18 1.1 oki * documentation and/or other materials provided with the distribution.
19 1.28 agc * 3. Neither the name of the University nor the names of its contributors
20 1.28 agc * may be used to endorse or promote products derived from this software
21 1.28 agc * without specific prior written permission.
22 1.28 agc *
23 1.28 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.28 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.28 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.28 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.28 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.28 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.28 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.28 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.28 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.28 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.28 agc * SUCH DAMAGE.
34 1.28 agc *
35 1.28 agc * from: Utah $Hdr: grf.c 1.36 93/08/13$
36 1.28 agc *
37 1.28 agc * @(#)grf.c 8.4 (Berkeley) 1/12/94
38 1.28 agc */
39 1.28 agc /*
40 1.28 agc * Copyright (c) 1988 University of Utah.
41 1.28 agc *
42 1.28 agc * This code is derived from software contributed to Berkeley by
43 1.28 agc * the Systems Programming Group of the University of Utah Computer
44 1.28 agc * Science Department.
45 1.28 agc *
46 1.28 agc * Redistribution and use in source and binary forms, with or without
47 1.28 agc * modification, are permitted provided that the following conditions
48 1.28 agc * are met:
49 1.28 agc * 1. Redistributions of source code must retain the above copyright
50 1.28 agc * notice, this list of conditions and the following disclaimer.
51 1.28 agc * 2. Redistributions in binary form must reproduce the above copyright
52 1.28 agc * notice, this list of conditions and the following disclaimer in the
53 1.28 agc * documentation and/or other materials provided with the distribution.
54 1.1 oki * 3. All advertising materials mentioning features or use of this software
55 1.1 oki * must display the following acknowledgement:
56 1.1 oki * This product includes software developed by the University of
57 1.1 oki * California, Berkeley and its contributors.
58 1.1 oki * 4. Neither the name of the University nor the names of its contributors
59 1.1 oki * may be used to endorse or promote products derived from this software
60 1.1 oki * without specific prior written permission.
61 1.1 oki *
62 1.1 oki * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
63 1.1 oki * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
64 1.1 oki * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
65 1.1 oki * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
66 1.1 oki * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
67 1.1 oki * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
68 1.1 oki * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
69 1.1 oki * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
70 1.1 oki * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
71 1.1 oki * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
72 1.1 oki * SUCH DAMAGE.
73 1.1 oki *
74 1.1 oki * from: Utah $Hdr: grf.c 1.36 93/08/13$
75 1.1 oki *
76 1.1 oki * @(#)grf.c 8.4 (Berkeley) 1/12/94
77 1.1 oki */
78 1.1 oki
79 1.1 oki /*
80 1.1 oki * Graphics display driver for the X68K machines.
81 1.1 oki * This is the hardware-independent portion of the driver.
82 1.1 oki * Hardware access is through the machine dependent grf switch routines.
83 1.1 oki */
84 1.27 lukem
85 1.27 lukem #include <sys/cdefs.h>
86 1.29 minoura __KERNEL_RCSID(0, "$NetBSD: grf.c,v 1.29 2004/01/25 13:17:00 minoura Exp $");
87 1.1 oki
88 1.1 oki #include <sys/param.h>
89 1.2 oki #include <sys/systm.h>
90 1.1 oki #include <sys/device.h>
91 1.1 oki #include <sys/proc.h>
92 1.16 minoura #include <sys/resourcevar.h>
93 1.1 oki #include <sys/ioctl.h>
94 1.1 oki #include <sys/file.h>
95 1.1 oki #include <sys/malloc.h>
96 1.1 oki #include <sys/vnode.h>
97 1.1 oki #include <sys/mman.h>
98 1.6 oki #include <sys/conf.h>
99 1.1 oki
100 1.10 minoura #include <machine/grfioctl.h>
101 1.10 minoura
102 1.1 oki #include <x68k/dev/grfvar.h>
103 1.1 oki #include <x68k/dev/itevar.h>
104 1.1 oki
105 1.1 oki #include <machine/cpu.h>
106 1.1 oki
107 1.13 mrg #include <uvm/uvm_extern.h>
108 1.14 minoura #include <uvm/uvm_map.h>
109 1.9 msaitoh
110 1.1 oki #include <miscfs/specfs/specdev.h>
111 1.1 oki
112 1.1 oki #include "ite.h"
113 1.1 oki #if NITE == 0
114 1.29 minoura #define iteon(u,f) 0
115 1.1 oki #define iteoff(u,f)
116 1.9 msaitoh #define ite_reinit(u)
117 1.1 oki #endif
118 1.1 oki
119 1.1 oki #ifdef DEBUG
120 1.1 oki int grfdebug = 0;
121 1.1 oki #define GDB_DEVNO 0x01
122 1.1 oki #define GDB_MMAP 0x02
123 1.1 oki #define GDB_IOMAP 0x04
124 1.1 oki #define GDB_LOCK 0x08
125 1.1 oki #endif
126 1.1 oki
127 1.29 minoura static int grfon(struct grf_softc *);
128 1.29 minoura static int grfoff(struct grf_softc *);
129 1.29 minoura static off_t grfaddr(struct grf_softc *, off_t);
130 1.29 minoura static int grfmap(dev_t, caddr_t *, struct proc *);
131 1.29 minoura static int grfunmap(dev_t, caddr_t, struct proc *);
132 1.7 thorpej
133 1.7 thorpej extern struct cfdriver grf_cd;
134 1.22 gehenna
135 1.22 gehenna dev_type_open(grfopen);
136 1.22 gehenna dev_type_close(grfclose);
137 1.22 gehenna dev_type_ioctl(grfioctl);
138 1.22 gehenna dev_type_mmap(grfmmap);
139 1.22 gehenna
140 1.22 gehenna const struct cdevsw grf_cdevsw = {
141 1.22 gehenna grfopen, grfclose, nullread, nullwrite, grfioctl,
142 1.24 jdolecek nostop, notty, nopoll, grfmmap, nokqfilter,
143 1.22 gehenna };
144 1.6 oki
145 1.1 oki /*ARGSUSED*/
146 1.2 oki int
147 1.6 oki grfopen(dev, flags, mode, p)
148 1.1 oki dev_t dev;
149 1.6 oki int flags, mode;
150 1.6 oki struct proc *p;
151 1.1 oki {
152 1.1 oki int unit = GRFUNIT(dev);
153 1.9 msaitoh register struct grf_softc *gp;
154 1.1 oki int error = 0;
155 1.1 oki
156 1.9 msaitoh if (unit >= grf_cd.cd_ndevs ||
157 1.9 msaitoh (gp = grf_cd.cd_devs[unit]) == NULL ||
158 1.9 msaitoh (gp->g_flags & GF_ALIVE) == 0)
159 1.29 minoura return ENXIO;
160 1.9 msaitoh
161 1.1 oki if ((gp->g_flags & (GF_OPEN|GF_EXCLUDE)) == (GF_OPEN|GF_EXCLUDE))
162 1.29 minoura return EBUSY;
163 1.29 minoura
164 1.1 oki /*
165 1.1 oki * First open.
166 1.1 oki * XXX: always put in graphics mode.
167 1.1 oki */
168 1.1 oki error = 0;
169 1.1 oki if ((gp->g_flags & GF_OPEN) == 0) {
170 1.1 oki gp->g_flags |= GF_OPEN;
171 1.29 minoura error = grfon(gp);
172 1.1 oki }
173 1.29 minoura return error;
174 1.1 oki }
175 1.1 oki
176 1.1 oki /*ARGSUSED*/
177 1.2 oki int
178 1.6 oki grfclose(dev, flags, mode, p)
179 1.1 oki dev_t dev;
180 1.6 oki int flags, mode;
181 1.6 oki struct proc *p;
182 1.1 oki {
183 1.1 oki register struct grf_softc *gp = grf_cd.cd_devs[GRFUNIT(dev)];
184 1.1 oki
185 1.9 msaitoh if ((gp->g_flags & GF_ALIVE) == 0)
186 1.29 minoura return ENXIO;
187 1.9 msaitoh
188 1.29 minoura (void) grfoff(gp);
189 1.1 oki gp->g_flags &= GF_ALIVE;
190 1.29 minoura
191 1.29 minoura return 0;
192 1.1 oki }
193 1.1 oki
194 1.1 oki /*ARGSUSED*/
195 1.2 oki int
196 1.1 oki grfioctl(dev, cmd, data, flag, p)
197 1.1 oki dev_t dev;
198 1.1 oki u_long cmd;
199 1.1 oki caddr_t data;
200 1.1 oki int flag;
201 1.1 oki struct proc *p;
202 1.1 oki {
203 1.1 oki int unit = GRFUNIT(dev);
204 1.1 oki register struct grf_softc *gp = grf_cd.cd_devs[unit];
205 1.1 oki int error;
206 1.1 oki
207 1.9 msaitoh if ((gp->g_flags & GF_ALIVE) == 0)
208 1.29 minoura return ENXIO;
209 1.9 msaitoh
210 1.1 oki error = 0;
211 1.1 oki switch (cmd) {
212 1.1 oki
213 1.1 oki case GRFIOCGINFO:
214 1.21 wiz memcpy(data, (caddr_t)&gp->g_display, sizeof(struct grfinfo));
215 1.1 oki break;
216 1.1 oki
217 1.1 oki case GRFIOCON:
218 1.29 minoura error = grfon(gp);
219 1.1 oki break;
220 1.1 oki
221 1.1 oki case GRFIOCOFF:
222 1.29 minoura error = grfoff(gp);
223 1.1 oki break;
224 1.1 oki
225 1.1 oki case GRFIOCMAP:
226 1.1 oki error = grfmap(dev, (caddr_t *)data, p);
227 1.1 oki break;
228 1.1 oki
229 1.1 oki case GRFIOCUNMAP:
230 1.1 oki error = grfunmap(dev, *(caddr_t *)data, p);
231 1.1 oki break;
232 1.1 oki
233 1.1 oki case GRFSETVMODE:
234 1.1 oki error = (*gp->g_sw->gd_mode)(gp, GM_GRFSETVMODE, data);
235 1.1 oki if (error == 0)
236 1.1 oki ite_reinit(unit);
237 1.1 oki break;
238 1.1 oki
239 1.1 oki default:
240 1.1 oki error = EINVAL;
241 1.1 oki break;
242 1.1 oki
243 1.1 oki }
244 1.29 minoura return error;
245 1.1 oki }
246 1.1 oki
247 1.1 oki /*ARGSUSED*/
248 1.17 simonb paddr_t
249 1.1 oki grfmmap(dev, off, prot)
250 1.1 oki dev_t dev;
251 1.17 simonb off_t off;
252 1.17 simonb int prot;
253 1.1 oki {
254 1.9 msaitoh
255 1.29 minoura return grfaddr(grf_cd.cd_devs[GRFUNIT(dev)], off);
256 1.1 oki }
257 1.1 oki
258 1.2 oki int
259 1.29 minoura grfon(gp)
260 1.29 minoura struct grf_softc *gp;
261 1.1 oki {
262 1.29 minoura int unit = gp->g_device.dv_unit;
263 1.1 oki
264 1.1 oki /*
265 1.1 oki * XXX: iteoff call relies on devices being in same order
266 1.1 oki * as ITEs and the fact that iteoff only uses the minor part
267 1.1 oki * of the dev arg.
268 1.1 oki */
269 1.1 oki iteoff(unit, 2);
270 1.29 minoura
271 1.29 minoura return (*gp->g_sw->gd_mode)(gp, GM_GRFON, (caddr_t) 0);
272 1.1 oki }
273 1.1 oki
274 1.2 oki int
275 1.29 minoura grfoff(gp)
276 1.29 minoura struct grf_softc *gp;
277 1.1 oki {
278 1.29 minoura int unit = gp->g_device.dv_unit;
279 1.1 oki int error;
280 1.1 oki
281 1.29 minoura #if 0 /* always fails in EINVAL... */
282 1.29 minoura (void) grfunmap(dev, (caddr_t) 0, curproc);
283 1.29 minoura #endif
284 1.29 minoura error = (*gp->g_sw->gd_mode)(gp, GM_GRFOFF, (caddr_t) 0);
285 1.1 oki /* XXX: see comment for iteoff above */
286 1.1 oki iteon(unit, 2);
287 1.29 minoura
288 1.29 minoura return error;
289 1.1 oki }
290 1.1 oki
291 1.17 simonb off_t
292 1.1 oki grfaddr(gp, off)
293 1.1 oki struct grf_softc *gp;
294 1.17 simonb off_t off;
295 1.1 oki {
296 1.1 oki register struct grfinfo *gi = &gp->g_display;
297 1.1 oki
298 1.1 oki /* control registers */
299 1.1 oki if (off >= 0 && off < gi->gd_regsize)
300 1.29 minoura return ((u_int)gi->gd_regaddr + off) >> PGSHIFT;
301 1.1 oki
302 1.1 oki /* frame buffer */
303 1.1 oki if (off >= gi->gd_regsize && off < gi->gd_regsize+gi->gd_fbsize) {
304 1.1 oki off -= gi->gd_regsize;
305 1.29 minoura return ((u_int)gi->gd_fbaddr + off) >> PGSHIFT;
306 1.1 oki }
307 1.1 oki /* bogus */
308 1.29 minoura return -1;
309 1.1 oki }
310 1.1 oki
311 1.2 oki int
312 1.1 oki grfmap(dev, addrp, p)
313 1.1 oki dev_t dev;
314 1.1 oki caddr_t *addrp;
315 1.1 oki struct proc *p;
316 1.1 oki {
317 1.1 oki struct grf_softc *gp = grf_cd.cd_devs[GRFUNIT(dev)];
318 1.1 oki int len, error;
319 1.1 oki struct vnode vn;
320 1.1 oki struct specinfo si;
321 1.1 oki int flags;
322 1.1 oki
323 1.1 oki #ifdef DEBUG
324 1.1 oki if (grfdebug & GDB_MMAP)
325 1.4 christos printf("grfmap(%d): addr %p\n", p->p_pid, *addrp);
326 1.1 oki #endif
327 1.29 minoura
328 1.1 oki len = gp->g_display.gd_regsize + gp->g_display.gd_fbsize;
329 1.1 oki flags = MAP_SHARED;
330 1.1 oki if (*addrp)
331 1.1 oki flags |= MAP_FIXED;
332 1.1 oki else
333 1.26 atatat *addrp =
334 1.26 atatat (caddr_t)VM_DEFAULT_ADDRESS(p->p_vmspace->vm_daddr, len);
335 1.1 oki vn.v_type = VCHR; /* XXX */
336 1.1 oki vn.v_specinfo = &si; /* XXX */
337 1.1 oki vn.v_rdev = dev; /* XXX */
338 1.11 minoura error = uvm_mmap(&p->p_vmspace->vm_map, (vaddr_t *)addrp,
339 1.11 minoura (vsize_t)len, VM_PROT_ALL, VM_PROT_ALL,
340 1.15 thorpej flags, (caddr_t)&vn, 0,
341 1.15 thorpej p->p_rlimit[RLIMIT_MEMLOCK].rlim_cur);
342 1.1 oki if (error == 0)
343 1.1 oki (void) (*gp->g_sw->gd_mode)(gp, GM_MAP, *addrp);
344 1.29 minoura
345 1.29 minoura return error;
346 1.1 oki }
347 1.1 oki
348 1.2 oki int
349 1.1 oki grfunmap(dev, addr, p)
350 1.1 oki dev_t dev;
351 1.1 oki caddr_t addr;
352 1.1 oki struct proc *p;
353 1.1 oki {
354 1.1 oki struct grf_softc *gp = grf_cd.cd_devs[GRFUNIT(dev)];
355 1.11 minoura vsize_t size;
356 1.1 oki
357 1.1 oki #ifdef DEBUG
358 1.1 oki if (grfdebug & GDB_MMAP)
359 1.4 christos printf("grfunmap(%d): dev %x addr %p\n", p->p_pid, dev, addr);
360 1.1 oki #endif
361 1.1 oki if (addr == 0)
362 1.29 minoura return EINVAL; /* XXX: how do we deal with this? */
363 1.1 oki (void) (*gp->g_sw->gd_mode)(gp, GM_UNMAP, 0);
364 1.1 oki size = round_page(gp->g_display.gd_regsize + gp->g_display.gd_fbsize);
365 1.20 chs uvm_unmap(&p->p_vmspace->vm_map, (vaddr_t)addr,
366 1.12 chuck (vaddr_t)addr + size);
367 1.29 minoura
368 1.20 chs return 0;
369 1.1 oki }
370