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