view.c revision 1.17.8.3 1 1.17.8.1 nathanw /* $NetBSD: view.c,v 1.17.8.3 2002/08/13 02:17:44 nathanw Exp $ */
2 1.10 cgd
3 1.1 mw /*
4 1.2 chopps * Copyright (c) 1994 Christian E. Hopps
5 1.1 mw * All rights reserved.
6 1.1 mw *
7 1.1 mw * Redistribution and use in source and binary forms, with or without
8 1.1 mw * modification, are permitted provided that the following conditions
9 1.1 mw * are met:
10 1.1 mw * 1. Redistributions of source code must retain the above copyright
11 1.1 mw * notice, this list of conditions and the following disclaimer.
12 1.1 mw * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mw * notice, this list of conditions and the following disclaimer in the
14 1.1 mw * documentation and/or other materials provided with the distribution.
15 1.1 mw * 3. All advertising materials mentioning features or use of this software
16 1.1 mw * must display the following acknowledgement:
17 1.2 chopps * This product includes software developed by Christian E. Hopps.
18 1.2 chopps * 4. The name of the author may not be used to endorse or promote products
19 1.2 chopps * derived from this software without specific prior written permission
20 1.1 mw *
21 1.2 chopps * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.2 chopps * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.2 chopps * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.2 chopps * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.2 chopps * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.2 chopps * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.2 chopps * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.2 chopps * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.2 chopps * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.2 chopps * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 mw */
32 1.1 mw
33 1.1 mw /* The view major device is a placeholder device. It serves
34 1.17.8.1 nathanw * simply to map the semantics of a graphics dipslay to
35 1.1 mw * the semantics of a character block device. In other
36 1.1 mw * words the graphics system as currently built does not like to be
37 1.1 mw * refered to by open/close/ioctl. This device serves as
38 1.1 mw * a interface to graphics. */
39 1.1 mw
40 1.17.8.1 nathanw #include <sys/cdefs.h>
41 1.17.8.1 nathanw __KERNEL_RCSID(0, "$NetBSD: view.c,v 1.17.8.3 2002/08/13 02:17:44 nathanw Exp $");
42 1.17.8.1 nathanw
43 1.4 chopps #include <sys/param.h>
44 1.13 veego #include <sys/systm.h>
45 1.4 chopps #include <sys/proc.h>
46 1.4 chopps #include <sys/ioctl.h>
47 1.4 chopps #include <sys/file.h>
48 1.8 chopps #include <sys/device.h>
49 1.4 chopps #include <sys/malloc.h>
50 1.6 chopps #include <sys/queue.h>
51 1.15 mhitch #include <sys/poll.h>
52 1.4 chopps #include <machine/cpu.h>
53 1.4 chopps #include <amiga/dev/grfabs_reg.h>
54 1.4 chopps #include <amiga/dev/viewioctl.h>
55 1.4 chopps #include <amiga/dev/viewvar.h>
56 1.13 veego
57 1.13 veego #include <sys/conf.h>
58 1.13 veego #include <machine/conf.h>
59 1.13 veego
60 1.1 mw #include "view.h"
61 1.1 mw
62 1.17.8.1 nathanw static void view_display(struct view_softc *);
63 1.17.8.1 nathanw static void view_remove(struct view_softc *);
64 1.17.8.1 nathanw static int view_setsize(struct view_softc *, struct view_size *);
65 1.7 chopps
66 1.17.8.1 nathanw int view_get_colormap(struct view_softc *, colormap_t *);
67 1.17.8.1 nathanw int view_set_colormap(struct view_softc *, colormap_t *);
68 1.7 chopps
69 1.17.8.1 nathanw void viewattach(int);
70 1.1 mw
71 1.1 mw struct view_softc views[NVIEW];
72 1.5 chopps int view_inited; /* also checked in ite_cc.c */
73 1.1 mw
74 1.1 mw int view_default_x;
75 1.1 mw int view_default_y;
76 1.1 mw int view_default_width = 640;
77 1.1 mw int view_default_height = 400;
78 1.1 mw int view_default_depth = 2;
79 1.1 mw
80 1.17.8.1 nathanw /*
81 1.1 mw * functions for probeing.
82 1.1 mw */
83 1.1 mw
84 1.13 veego void
85 1.17.8.1 nathanw viewattach(int cnt)
86 1.1 mw {
87 1.8 chopps viewprobe();
88 1.16 christos printf("%d view%s configured\n", NVIEW, NVIEW > 1 ? "s" : "");
89 1.1 mw }
90 1.1 mw
91 1.8 chopps /* this function is called early to set up a display. */
92 1.13 veego void
93 1.17.8.1 nathanw viewprobe(void)
94 1.1 mw {
95 1.1 mw int i;
96 1.17.8.1 nathanw
97 1.7 chopps if (view_inited)
98 1.13 veego return;
99 1.1 mw
100 1.5 chopps view_inited = 1;
101 1.7 chopps
102 1.1 mw for (i=0; i<NVIEW; i++) {
103 1.7 chopps views[i].view = NULL;
104 1.7 chopps views[i].flags = 0;
105 1.1 mw }
106 1.13 veego return;
107 1.1 mw }
108 1.1 mw
109 1.1 mw
110 1.1 mw /*
111 1.1 mw * Internal functions.
112 1.1 mw */
113 1.1 mw
114 1.1 mw static void
115 1.17.8.1 nathanw view_display(struct view_softc *vu)
116 1.1 mw {
117 1.7 chopps int s, i;
118 1.7 chopps
119 1.7 chopps if (vu == NULL)
120 1.7 chopps return;
121 1.17.8.1 nathanw
122 1.7 chopps s = spltty ();
123 1.1 mw
124 1.7 chopps /*
125 1.17.8.1 nathanw * mark views that share this monitor as not displaying
126 1.7 chopps */
127 1.7 chopps for (i=0; i<NVIEW; i++) {
128 1.17.8.1 nathanw if ((views[i].flags & VUF_DISPLAY) &&
129 1.7 chopps views[i].monitor == vu->monitor)
130 1.7 chopps views[i].flags &= ~VUF_DISPLAY;
131 1.7 chopps }
132 1.1 mw
133 1.7 chopps vu->flags |= VUF_ADDED;
134 1.7 chopps if (vu->view) {
135 1.7 chopps vu->view->display.x = vu->size.x;
136 1.7 chopps vu->view->display.y = vu->size.y;
137 1.7 chopps
138 1.7 chopps grf_display_view(vu->view);
139 1.7 chopps
140 1.7 chopps vu->size.x = vu->view->display.x;
141 1.7 chopps vu->size.y = vu->view->display.y;
142 1.7 chopps vu->flags |= VUF_DISPLAY;
143 1.7 chopps }
144 1.7 chopps splx(s);
145 1.1 mw }
146 1.1 mw
147 1.17.8.1 nathanw /*
148 1.7 chopps * remove a view from our added list if it is marked as displaying
149 1.7 chopps * switch to a new display.
150 1.7 chopps */
151 1.1 mw static void
152 1.17.8.1 nathanw view_remove(struct view_softc *vu)
153 1.1 mw {
154 1.7 chopps int i;
155 1.1 mw
156 1.7 chopps if ((vu->flags & VUF_ADDED) == 0)
157 1.7 chopps return;
158 1.1 mw
159 1.7 chopps vu->flags &= ~VUF_ADDED;
160 1.7 chopps if (vu->flags & VUF_DISPLAY) {
161 1.7 chopps for (i = 0; i < NVIEW; i++) {
162 1.17.8.1 nathanw if ((views[i].flags & VUF_ADDED) && &views[i] != vu &&
163 1.7 chopps views[i].monitor == vu->monitor) {
164 1.7 chopps view_display(&views[i]);
165 1.7 chopps break;
166 1.7 chopps }
167 1.7 chopps }
168 1.7 chopps }
169 1.7 chopps vu->flags &= ~VUF_DISPLAY;
170 1.7 chopps grf_remove_view(vu->view);
171 1.1 mw }
172 1.1 mw
173 1.1 mw static int
174 1.17.8.1 nathanw view_setsize(struct view_softc *vu, struct view_size *vs)
175 1.7 chopps {
176 1.7 chopps view_t *new, *old;
177 1.7 chopps dimen_t ns;
178 1.7 chopps int co, cs;
179 1.17.8.1 nathanw
180 1.7 chopps co = 0;
181 1.7 chopps cs = 0;
182 1.7 chopps if (vs->x != vu->size.x || vs->y != vu->size.y)
183 1.7 chopps co = 1;
184 1.7 chopps
185 1.7 chopps if (vs->width != vu->size.width || vs->height != vu->size.height ||
186 1.7 chopps vs->depth != vu->size.depth)
187 1.7 chopps cs = 1;
188 1.7 chopps
189 1.7 chopps if (cs == 0 && co == 0)
190 1.7 chopps return(0);
191 1.17.8.1 nathanw
192 1.7 chopps ns.width = vs->width;
193 1.7 chopps ns.height = vs->height;
194 1.1 mw
195 1.7 chopps new = grf_alloc_view(NULL, &ns, vs->depth);
196 1.7 chopps if (new == NULL)
197 1.7 chopps return(ENOMEM);
198 1.17.8.1 nathanw
199 1.7 chopps old = vu->view;
200 1.7 chopps vu->view = new;
201 1.7 chopps vu->size.x = new->display.x;
202 1.7 chopps vu->size.y = new->display.y;
203 1.7 chopps vu->size.width = new->display.width;
204 1.7 chopps vu->size.height = new->display.height;
205 1.7 chopps vu->size.depth = new->bitmap->depth;
206 1.7 chopps vu->mode = grf_get_display_mode(vu->view);
207 1.7 chopps vu->monitor = grf_get_monitor(vu->mode);
208 1.7 chopps vu->size.x = vs->x;
209 1.7 chopps vu->size.y = vs->y;
210 1.7 chopps
211 1.17.8.1 nathanw /*
212 1.17.8.1 nathanw * we need a custom remove here to avoid letting
213 1.17.8.1 nathanw * another view display mark as not added or displayed
214 1.7 chopps */
215 1.7 chopps if (vu->flags & VUF_DISPLAY) {
216 1.7 chopps vu->flags &= ~(VUF_ADDED|VUF_DISPLAY);
217 1.7 chopps view_display(vu);
218 1.7 chopps }
219 1.7 chopps grf_free_view(old);
220 1.7 chopps return(0);
221 1.1 mw }
222 1.1 mw
223 1.1 mw /*
224 1.1 mw * functions made available by conf.c
225 1.1 mw */
226 1.1 mw
227 1.1 mw /*ARGSUSED*/
228 1.7 chopps int
229 1.17.8.1 nathanw viewopen(dev_t dev, int flags, int mode, struct proc *p)
230 1.7 chopps {
231 1.7 chopps dimen_t size;
232 1.7 chopps struct view_softc *vu;
233 1.7 chopps
234 1.7 chopps vu = &views[minor(dev)];
235 1.7 chopps
236 1.7 chopps if (minor(dev) >= NVIEW)
237 1.7 chopps return(EXDEV);
238 1.7 chopps
239 1.7 chopps if (vu->flags & VUF_OPEN)
240 1.7 chopps return(EBUSY);
241 1.7 chopps
242 1.7 chopps vu->size.x = view_default_x;
243 1.7 chopps vu->size.y = view_default_y;
244 1.7 chopps size.width = vu->size.width = view_default_width;
245 1.7 chopps size.height = vu->size.height = view_default_height;
246 1.7 chopps vu->size.depth = view_default_depth;
247 1.7 chopps
248 1.7 chopps vu->view = grf_alloc_view(NULL, &size, vu->size.depth);
249 1.7 chopps if (vu->view == NULL)
250 1.7 chopps return(ENOMEM);
251 1.1 mw
252 1.1 mw vu->size.x = vu->view->display.x;
253 1.1 mw vu->size.y = vu->view->display.y;
254 1.1 mw vu->size.width = vu->view->display.width;
255 1.1 mw vu->size.height = vu->view->display.height;
256 1.1 mw vu->size.depth = vu->view->bitmap->depth;
257 1.1 mw vu->flags |= VUF_OPEN;
258 1.7 chopps vu->mode = grf_get_display_mode(vu->view);
259 1.7 chopps vu->monitor = grf_get_monitor(vu->mode);
260 1.7 chopps return(0);
261 1.1 mw }
262 1.1 mw
263 1.1 mw /*ARGSUSED*/
264 1.13 veego int
265 1.17.8.1 nathanw viewclose(dev_t dev, int flags, int mode, struct proc *p)
266 1.1 mw {
267 1.7 chopps struct view_softc *vu;
268 1.7 chopps
269 1.7 chopps vu = &views[minor(dev)];
270 1.1 mw
271 1.7 chopps if ((vu->flags & VUF_OPEN) == 0)
272 1.13 veego return(0);
273 1.1 mw view_remove (vu);
274 1.1 mw grf_free_view (vu->view);
275 1.1 mw vu->flags = 0;
276 1.1 mw vu->view = NULL;
277 1.1 mw vu->mode = NULL;
278 1.17.8.1 nathanw vu->monitor = NULL;
279 1.13 veego return(0);
280 1.1 mw }
281 1.1 mw
282 1.1 mw
283 1.1 mw /*ARGSUSED*/
284 1.7 chopps int
285 1.17.8.1 nathanw viewioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
286 1.7 chopps {
287 1.7 chopps struct view_softc *vu;
288 1.7 chopps bmap_t *bm;
289 1.7 chopps int error;
290 1.7 chopps
291 1.7 chopps vu = &views[minor(dev)];
292 1.7 chopps error = 0;
293 1.7 chopps
294 1.7 chopps switch (cmd) {
295 1.7 chopps case VIOCDISPLAY:
296 1.7 chopps view_display(vu);
297 1.7 chopps break;
298 1.7 chopps case VIOCREMOVE:
299 1.7 chopps view_remove(vu);
300 1.7 chopps break;
301 1.7 chopps case VIOCGSIZE:
302 1.17.8.1 nathanw bcopy(&vu->size, data, sizeof (struct view_size));
303 1.7 chopps break;
304 1.7 chopps case VIOCSSIZE:
305 1.7 chopps error = view_setsize(vu, (struct view_size *)data);
306 1.7 chopps break;
307 1.7 chopps case VIOCGBMAP:
308 1.7 chopps bm = (bmap_t *)data;
309 1.7 chopps bcopy(vu->view->bitmap, bm, sizeof(bmap_t));
310 1.13 veego if (flag != -1) {
311 1.7 chopps bm->plane = 0;
312 1.7 chopps bm->blit_temp = 0;
313 1.7 chopps bm->hardware_address = 0;
314 1.7 chopps }
315 1.7 chopps break;
316 1.7 chopps case VIOCGCMAP:
317 1.7 chopps error = view_get_colormap(vu, (colormap_t *)data);
318 1.7 chopps break;
319 1.7 chopps case VIOCSCMAP:
320 1.7 chopps error = view_set_colormap(vu, (colormap_t *)data);
321 1.7 chopps break;
322 1.7 chopps default:
323 1.17.8.2 nathanw error = EPASSTHROUGH;
324 1.7 chopps break;
325 1.1 mw }
326 1.7 chopps return(error);
327 1.1 mw }
328 1.1 mw
329 1.7 chopps int
330 1.17.8.1 nathanw view_get_colormap(struct view_softc *vu, colormap_t *ucm)
331 1.1 mw {
332 1.7 chopps int error;
333 1.7 chopps u_long *cme;
334 1.7 chopps u_long *uep;
335 1.7 chopps
336 1.7 chopps /* add one incase of zero, ick. */
337 1.17.8.3 nathanw if (ucm->size + 1 > SIZE_T_MAX / sizeof(u_long))
338 1.17.8.3 nathanw return EINVAL;
339 1.7 chopps cme = malloc(sizeof (u_long)*(ucm->size + 1), M_IOCTLOPS, M_WAITOK);
340 1.7 chopps if (cme == NULL)
341 1.7 chopps return(ENOMEM);
342 1.7 chopps
343 1.7 chopps uep = ucm->entry;
344 1.17.8.1 nathanw error = 0;
345 1.7 chopps ucm->entry = cme; /* set entry to out alloc. */
346 1.7 chopps if (vu->view == NULL || grf_get_colormap(vu->view, ucm))
347 1.7 chopps error = EINVAL;
348 1.17.8.1 nathanw else
349 1.7 chopps error = copyout(cme, uep, sizeof(u_long) * ucm->size);
350 1.7 chopps ucm->entry = uep; /* set entry back to users. */
351 1.7 chopps free(cme, M_IOCTLOPS);
352 1.7 chopps return(error);
353 1.7 chopps }
354 1.7 chopps
355 1.7 chopps int
356 1.17.8.1 nathanw view_set_colormap(struct view_softc *vu, colormap_t *ucm)
357 1.7 chopps {
358 1.7 chopps colormap_t *cm;
359 1.7 chopps int error;
360 1.7 chopps
361 1.7 chopps error = 0;
362 1.7 chopps cm = malloc(sizeof(u_long) * ucm->size + sizeof (*cm), M_IOCTLOPS,
363 1.7 chopps M_WAITOK);
364 1.7 chopps if (cm == NULL)
365 1.7 chopps return(ENOMEM);
366 1.7 chopps
367 1.7 chopps bcopy (ucm, cm, sizeof(colormap_t));
368 1.7 chopps cm->entry = (u_long *)&cm[1]; /* table directly after. */
369 1.17.8.1 nathanw if (((error =
370 1.7 chopps copyin(ucm->entry, cm->entry, sizeof (u_long) * ucm->size)) == 0)
371 1.7 chopps && (vu->view == NULL || grf_use_colormap(vu->view, cm)))
372 1.7 chopps error = EINVAL;
373 1.7 chopps free(cm, M_IOCTLOPS);
374 1.7 chopps return(error);
375 1.1 mw }
376 1.1 mw
377 1.1 mw /*ARGSUSED*/
378 1.17 simonb paddr_t
379 1.17.8.1 nathanw viewmmap(dev_t dev, off_t off, int prot)
380 1.1 mw {
381 1.7 chopps struct view_softc *vu;
382 1.7 chopps bmap_t *bm;
383 1.7 chopps u_char *bmd_start;
384 1.17.8.1 nathanw u_long bmd_size;
385 1.7 chopps
386 1.7 chopps vu = &views[minor(dev)];
387 1.7 chopps bm = vu->view->bitmap;
388 1.17.8.1 nathanw bmd_start = bm->hardware_address;
389 1.7 chopps bmd_size = bm->bytes_per_row*bm->rows*bm->depth;
390 1.7 chopps
391 1.7 chopps if (off >= 0 && off < bmd_size)
392 1.17 simonb return(((paddr_t)bmd_start + off) >> PGSHIFT);
393 1.7 chopps
394 1.7 chopps return(-1);
395 1.1 mw }
396 1.1 mw
397 1.1 mw /*ARGSUSED*/
398 1.7 chopps int
399 1.17.8.1 nathanw viewpoll(dev_t dev, int events, struct proc *p)
400 1.1 mw {
401 1.15 mhitch return(events & (POLLOUT | POLLWRNORM));
402 1.1 mw }
403