1996-10-14 08:55:26 +04:00
|
|
|
/* $NetBSD: fb.c,v 1.18 1996/10/14 04:55:26 jonathan Exp $ */
|
1994-10-27 00:08:38 +03:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
/*-
|
1994-05-27 12:39:00 +04:00
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-10-12 06:22:19 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Ralph Campbell and Rick Macklem.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1994-10-27 00:08:38 +03:00
|
|
|
* @(#)fb.c 8.1 (Berkeley) 6/10/93
|
1993-10-12 06:22:19 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* devGraphics.c --
|
|
|
|
*
|
|
|
|
* This file contains machine-dependent routines for the graphics device.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1989 Digital Equipment Corporation.
|
|
|
|
* Permission to use, copy, modify, and distribute this software and
|
|
|
|
* its documentation for any purpose and without fee is hereby granted,
|
|
|
|
* provided that the above copyright notice appears in all copies.
|
|
|
|
* Digital Equipment Corporation makes no representations about the
|
|
|
|
* suitability of this software for any purpose. It is provided "as is"
|
|
|
|
* without express or implied warranty.
|
|
|
|
*
|
1994-05-27 12:39:00 +04:00
|
|
|
* from: Header: /sprite/src/kernel/dev/ds3100.md/RCS/devGraphics.c,
|
|
|
|
* v 9.2 90/02/13 22:16:24 shirriff Exp SPRITE (DECWRL)";
|
1993-10-12 06:22:19 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file has all the routines common to the various frame buffer drivers
|
|
|
|
* including a generic ioctl routine. The pmax_fb structure is passed into the
|
|
|
|
* routines and has device specifics stored in it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/ioctl.h>
|
1995-09-11 11:45:36 +04:00
|
|
|
#include <sys/device.h>
|
1996-10-12 20:00:21 +04:00
|
|
|
#include <sys/poll.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
#include <sys/tty.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/kernel.h>
|
1994-05-27 12:39:00 +04:00
|
|
|
#include <sys/ioctl.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
#include <sys/file.h>
|
1994-05-27 12:39:00 +04:00
|
|
|
#include <sys/vnode.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
1994-05-27 12:39:00 +04:00
|
|
|
#include <miscfs/specfs/specdev.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
#include <machine/autoconf.h>
|
1996-08-22 08:29:43 +04:00
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <machine/conf.h>
|
|
|
|
|
1996-10-13 17:13:50 +04:00
|
|
|
#include <mips/cpuregs.h> /* mips cached->uncached */
|
1993-10-12 06:22:19 +03:00
|
|
|
#include <machine/pmioctl.h>
|
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
#include <machine/fbio.h>
|
|
|
|
#include <machine/fbvar.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
#include <pmax/dev/fbreg.h>
|
1996-08-22 08:29:43 +04:00
|
|
|
#include <pmax/dev/qvssvar.h>
|
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
|
|
|
|
#include <pmax/stand/dec_prom.h>
|
|
|
|
|
|
|
|
#include <pmax/pmax/cons.h>
|
|
|
|
#include <pmax/pmax/pmaxtype.h>
|
|
|
|
|
1996-02-02 21:05:36 +03:00
|
|
|
#include "rasterconsole.h"
|
1995-09-11 11:45:36 +04:00
|
|
|
|
1996-02-02 21:05:36 +03:00
|
|
|
#include "dc.h"
|
|
|
|
#include "scc.h"
|
|
|
|
#include "dtop.h"
|
1993-10-12 06:22:19 +03:00
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
/*
|
|
|
|
* This framebuffer driver is a generic driver for all supported
|
|
|
|
* framebuffers on NetBSD/pmax. The match and attach functions call
|
|
|
|
* out to probe/init functions in subdrivers for each specific baseboard or
|
|
|
|
* expansion bus framebuffers. The driver softc are maintained here, as
|
|
|
|
* are the handlers for user-level requests (open/ioctl/close).
|
|
|
|
*
|
|
|
|
* Hardware dependencies are handled by calls through the "fbdriver"
|
|
|
|
* method table, which the subdriver
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* qvss/pm compatible and old 4.4bsd/pmax driver functions */
|
1996-09-21 07:25:15 +04:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
extern int pmax_boardtype;
|
1995-09-11 11:45:36 +04:00
|
|
|
|
|
|
|
extern void fbScreenInit __P (( struct fbinfo *fi));
|
|
|
|
|
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
#if NDC > 0
|
|
|
|
#include <machine/dc7085cons.h>
|
1996-08-22 08:29:43 +04:00
|
|
|
#include <pmax/dev/dcvar.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
#endif
|
1996-08-22 08:29:43 +04:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
#if NDTOP > 0
|
1996-08-22 08:29:43 +04:00
|
|
|
#include <pmax/dev/dtopvar.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
#endif
|
1996-08-22 08:29:43 +04:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
#if NSCC > 0
|
1996-08-22 08:29:43 +04:00
|
|
|
#include <pmax/tc/sccvar.h>
|
1993-10-12 06:22:19 +03:00
|
|
|
#endif
|
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
/*
|
|
|
|
* LK-201 and successor keycode mapping
|
|
|
|
*/
|
|
|
|
#include <pmax/dev/lk201var.h>
|
1995-09-11 11:45:36 +04:00
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
extern void rcons_connect __P((struct fbinfo *info)); /* XXX */
|
1995-09-11 11:45:36 +04:00
|
|
|
|
|
|
|
/*
|
1996-08-22 08:29:43 +04:00
|
|
|
* The "blessed" framebuffer; the fb that gets
|
1995-09-11 11:45:36 +04:00
|
|
|
* the qvss-style ring buffer of mouse/kbd events, and is used
|
|
|
|
* for glass-tty fb console output.
|
|
|
|
*/
|
|
|
|
struct fbinfo *firstfi = NULL;
|
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
/*
|
|
|
|
* The default cursor.
|
|
|
|
*/
|
|
|
|
u_short defCursor[32] = {
|
|
|
|
/* plane A */ 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF,
|
|
|
|
0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF,
|
|
|
|
/* plane B */ 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF,
|
|
|
|
0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF
|
|
|
|
|
|
|
|
};
|
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
/*
|
1995-09-11 11:45:36 +04:00
|
|
|
* Pro-tem framebuffer pseudo-device driver
|
1993-10-12 06:22:19 +03:00
|
|
|
*/
|
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
#include <sys/device.h>
|
1996-02-02 21:05:36 +03:00
|
|
|
#include "fb.h"
|
1993-10-12 06:22:19 +03:00
|
|
|
|
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
static struct {
|
|
|
|
struct fbinfo *cd_devs[NFB];
|
|
|
|
int cd_ndevs;
|
|
|
|
} fbcd = { {NULL}, 0} ;
|
1993-10-12 06:22:19 +03:00
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
void fbattach __P((int n));
|
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* attach routine: required for pseudo-device
|
|
|
|
*/
|
1993-10-12 06:22:19 +03:00
|
|
|
void
|
1995-09-11 11:45:36 +04:00
|
|
|
fbattach(n)
|
|
|
|
int n;
|
1993-10-12 06:22:19 +03:00
|
|
|
{
|
1996-08-22 08:29:43 +04:00
|
|
|
/* allocate space for n framebuffers... */
|
1993-10-12 06:22:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1995-09-11 11:45:36 +04:00
|
|
|
* Connect a framebuffer, described by a struct fbinfo, to the
|
|
|
|
* raster-console pseudo-device subsystem. )This would be done
|
|
|
|
* with BStreams, if only we had them.)
|
1993-10-12 06:22:19 +03:00
|
|
|
*/
|
|
|
|
void
|
1995-09-11 11:45:36 +04:00
|
|
|
fbconnect (name, info, silent)
|
|
|
|
char *name;
|
|
|
|
struct fbinfo *info;
|
|
|
|
int silent;
|
1993-10-12 06:22:19 +03:00
|
|
|
{
|
1995-09-11 11:45:36 +04:00
|
|
|
int fbix;
|
|
|
|
static int first = 1;
|
|
|
|
|
|
|
|
#ifndef FBDRIVER_DOES_ATTACH
|
1996-08-22 08:29:43 +04:00
|
|
|
/*
|
|
|
|
* See if we've already configured this frame buffer;
|
|
|
|
* if not, find an "fb" pseudo-device entry for it.
|
|
|
|
*/
|
1995-09-11 11:45:36 +04:00
|
|
|
for (fbix = 0; fbix < fbcd.cd_ndevs; fbix++)
|
|
|
|
if ((fbcd.cd_devs [fbix]->fi_type.fb_boardtype
|
|
|
|
== info -> fi_type.fb_boardtype)
|
|
|
|
&& fbcd.cd_devs [fbix]->fi_unit == info -> fi_unit)
|
|
|
|
goto got_it;
|
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
if (fbcd.cd_ndevs >= NFB) {
|
1996-10-13 07:39:27 +04:00
|
|
|
printf ("fb: more frame buffers probed than configured!\n");
|
1993-10-12 06:22:19 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
fbix = fbcd.cd_ndevs++;
|
|
|
|
fbcd.cd_devs [fbix] = info;
|
|
|
|
#endif /* FBDRIVER_DOES_ATTACH */
|
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
/*
|
|
|
|
* If this is the first frame buffer we've seen, pass it to rcons.
|
|
|
|
*/
|
1995-09-11 11:45:36 +04:00
|
|
|
if (first) {
|
|
|
|
extern dev_t cn_in_dev; /* XXX rcons hackery */
|
|
|
|
|
|
|
|
/* Only the first fb gets 4.4bsd/pmax style event ringbuffer */
|
|
|
|
firstfi = info;
|
1995-10-05 04:52:44 +03:00
|
|
|
#if NRASTERCONSOLE > 0
|
1995-09-11 11:45:36 +04:00
|
|
|
/*XXX*/ cn_in_dev = cn_tab->cn_dev; /*XXX*/ /* FIXME */
|
|
|
|
rcons_connect (info);
|
1996-08-22 08:29:43 +04:00
|
|
|
#endif /* NRASTERCONSOLE */
|
1995-09-11 11:45:36 +04:00
|
|
|
first = 0;
|
1993-10-12 06:22:19 +03:00
|
|
|
}
|
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
got_it:
|
|
|
|
if (!silent)
|
1996-10-13 07:39:27 +04:00
|
|
|
printf (" (%dx%dx%d)%s",
|
1995-09-11 11:45:36 +04:00
|
|
|
info -> fi_type.fb_width,
|
|
|
|
info -> fi_type.fb_height,
|
|
|
|
info -> fi_type.fb_depth,
|
|
|
|
(fbix ? ""
|
|
|
|
: ((cn_tab -> cn_pri == CN_REMOTE)
|
|
|
|
? "" : " (console)")));
|
|
|
|
return;
|
1993-10-12 06:22:19 +03:00
|
|
|
}
|
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
#include "fb_usrreq.c" /* old pm-compatblie driver that supports X11R5 */
|
1993-10-12 06:22:19 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1995-09-11 11:45:36 +04:00
|
|
|
* Configure the keyboard/mouse based on machine type for turbochannel
|
|
|
|
* display boards.
|
1993-10-12 06:22:19 +03:00
|
|
|
*/
|
1995-09-20 09:36:13 +04:00
|
|
|
int
|
1995-09-11 11:45:36 +04:00
|
|
|
tb_kbdmouseconfig(fi)
|
|
|
|
struct fbinfo *fi;
|
1993-10-12 06:22:19 +03:00
|
|
|
{
|
|
|
|
|
1995-09-11 11:45:36 +04:00
|
|
|
if (fi == NULL || fi->fi_glasstty == NULL) {
|
|
|
|
#if defined(DEBUG) || defined(DIAGNOSTIC)
|
1996-10-13 07:39:27 +04:00
|
|
|
printf("tb_kbdmouseconfig: given non-console framebuffer\n");
|
1995-09-11 11:45:36 +04:00
|
|
|
#endif
|
1995-09-20 09:36:13 +04:00
|
|
|
return 1;
|
1993-10-12 06:22:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (pmax_boardtype) {
|
1996-08-22 08:29:43 +04:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
#if NDC > 0
|
1995-09-11 11:45:36 +04:00
|
|
|
case DS_PMAX:
|
1993-10-12 06:22:19 +03:00
|
|
|
case DS_3MAX:
|
1995-09-11 11:45:36 +04:00
|
|
|
fi->fi_glasstty->KBDPutc = dcPutc;
|
|
|
|
fi->fi_glasstty->kbddev = makedev(DCDEV, DCKBD_PORT);
|
1993-10-12 06:22:19 +03:00
|
|
|
break;
|
1996-08-22 08:29:43 +04:00
|
|
|
#endif /* NDC */
|
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
#if NSCC > 0
|
|
|
|
case DS_3MIN:
|
|
|
|
case DS_3MAXPLUS:
|
1995-09-11 11:45:36 +04:00
|
|
|
fi->fi_glasstty->KBDPutc = sccPutc;
|
|
|
|
fi->fi_glasstty->kbddev = makedev(SCCDEV, SCCKBD_PORT);
|
1993-10-12 06:22:19 +03:00
|
|
|
break;
|
1996-08-22 08:29:43 +04:00
|
|
|
#endif /* NSCC */
|
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
#if NDTOP > 0
|
|
|
|
case DS_MAXINE:
|
1995-09-11 11:45:36 +04:00
|
|
|
fi->fi_glasstty->KBDPutc = dtopKBDPutc;
|
|
|
|
fi->fi_glasstty->kbddev = makedev(DTOPDEV, DTOPKBD_PORT);
|
1993-10-12 06:22:19 +03:00
|
|
|
break;
|
1996-08-22 08:29:43 +04:00
|
|
|
#endif /* NDTOP */
|
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
default:
|
1996-10-13 07:39:27 +04:00
|
|
|
printf("Can't configure keyboard/mouse\n");
|
1993-10-12 06:22:19 +03:00
|
|
|
return (1);
|
|
|
|
};
|
1996-08-22 08:29:43 +04:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
return (0);
|
|
|
|
}
|
1994-05-27 12:39:00 +04:00
|
|
|
|
1996-08-22 08:29:43 +04:00
|
|
|
/*
|
|
|
|
* pre-rcons glass-tty emulator (stub)
|
|
|
|
*/
|
1995-09-11 11:45:36 +04:00
|
|
|
void
|
|
|
|
fbScreenInit(fi)
|
|
|
|
struct fbinfo *fi;
|
|
|
|
{
|
|
|
|
/* how to do this on rcons ? */
|
1994-05-27 12:39:00 +04:00
|
|
|
}
|