1996-02-28 01:09:14 +03:00
|
|
|
/* $NetBSD: fb.c,v 1.15 1996/02/27 22:09:35 thorpej Exp $ */
|
1994-11-20 23:51:32 +03:00
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed by the Computer Systems Engineering group
|
|
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
|
|
* contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* 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, Lawrence Berkeley Laboratory.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)fb.c 8.1 (Berkeley) 6/11/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* /dev/fb (indirect frame buffer driver). This is gross; we should
|
|
|
|
* just build cdevsw[] dynamically.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
|
1995-10-08 04:39:13 +03:00
|
|
|
#include <machine/autoconf.h>
|
1993-10-11 05:36:38 +03:00
|
|
|
#include <machine/fbio.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
#include <machine/fbvar.h>
|
1995-10-08 04:39:13 +03:00
|
|
|
#if defined(SUN4)
|
|
|
|
#include <machine/eeprom.h>
|
1996-02-28 01:09:14 +03:00
|
|
|
#include <sparc/dev/pfourreg.h>
|
1995-10-08 04:39:13 +03:00
|
|
|
#endif
|
1993-10-02 13:22:00 +03:00
|
|
|
|
|
|
|
static struct fbdevice *devfb;
|
|
|
|
|
|
|
|
void
|
|
|
|
fb_unblank()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (devfb)
|
|
|
|
(*devfb->fb_driver->fbd_unblank)(devfb->fb_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-11-29 04:45:36 +03:00
|
|
|
fb_attach(fb, isconsole)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct fbdevice *fb;
|
1995-11-29 04:45:36 +03:00
|
|
|
int isconsole;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1995-11-29 04:45:36 +03:00
|
|
|
static int no_replace, seen_force;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We've already had a framebuffer forced into /dev/fb. Don't
|
|
|
|
* allow any more, even if this is the console.
|
|
|
|
*/
|
|
|
|
if (seen_force) {
|
|
|
|
if (devfb) { /* sanity */
|
|
|
|
printf("%s: /dev/fb already full\n",
|
|
|
|
fb->fb_device->dv_xname);
|
|
|
|
return;
|
|
|
|
} else
|
|
|
|
seen_force = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to see if we're being forced into /dev/fb.
|
|
|
|
*/
|
|
|
|
if (fb->fb_flags & FB_FORCE) {
|
|
|
|
if (devfb)
|
1996-02-28 01:09:14 +03:00
|
|
|
printf("%s: forcefully replacing %s\n",
|
1995-11-29 04:45:36 +03:00
|
|
|
fb->fb_device->dv_xname,
|
|
|
|
devfb->fb_device->dv_xname);
|
|
|
|
devfb = fb;
|
|
|
|
seen_force = no_replace = 1;
|
|
|
|
goto attached;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to see if we're the console. If we are, then replace
|
|
|
|
* any currently existing framebuffer.
|
|
|
|
*/
|
|
|
|
if (isconsole) {
|
|
|
|
if (devfb)
|
1996-02-28 01:09:14 +03:00
|
|
|
printf("%s: replacing %s\n", fb->fb_device->dv_xname,
|
1995-11-29 04:45:36 +03:00
|
|
|
devfb->fb_device->dv_xname);
|
|
|
|
devfb = fb;
|
|
|
|
no_replace = 1;
|
|
|
|
goto attached;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For the final case, we check to see if we can replace an
|
|
|
|
* existing framebuffer, if not, say so and return.
|
|
|
|
*/
|
|
|
|
if (no_replace) {
|
|
|
|
if (devfb) { /* sanity */
|
|
|
|
printf("%s: /dev/fb already full\n",
|
|
|
|
fb->fb_device->dv_xname);
|
|
|
|
return;
|
|
|
|
} else
|
|
|
|
no_replace = 0;
|
|
|
|
}
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1995-11-29 04:45:36 +03:00
|
|
|
if (devfb)
|
1996-02-28 01:09:14 +03:00
|
|
|
printf("%s: replacing %s\n", fb->fb_device->dv_xname,
|
1995-11-29 04:45:36 +03:00
|
|
|
devfb->fb_device->dv_xname);
|
1993-10-02 13:22:00 +03:00
|
|
|
devfb = fb;
|
1995-11-29 04:45:36 +03:00
|
|
|
|
|
|
|
attached:
|
|
|
|
printf("%s: attached to /dev/fb\n", devfb->fb_device->dv_xname);
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fbopen(dev, flags, mode, p)
|
|
|
|
dev_t dev;
|
|
|
|
int flags, mode;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (devfb == NULL)
|
|
|
|
return (ENXIO);
|
1995-09-18 00:43:39 +04:00
|
|
|
return (devfb->fb_driver->fbd_open)(dev, flags, mode, p);
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fbclose(dev, flags, mode, p)
|
|
|
|
dev_t dev;
|
|
|
|
int flags, mode;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
|
1995-09-18 00:43:39 +04:00
|
|
|
return (devfb->fb_driver->fbd_close)(dev, flags, mode, p);
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fbioctl(dev, cmd, data, flags, p)
|
|
|
|
dev_t dev;
|
1994-11-02 07:55:47 +03:00
|
|
|
u_long cmd;
|
1993-10-02 13:22:00 +03:00
|
|
|
caddr_t data;
|
|
|
|
int flags;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
|
1995-09-18 00:43:39 +04:00
|
|
|
return (devfb->fb_driver->fbd_ioctl)(dev, cmd, data, flags, p);
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-04-10 11:04:18 +04:00
|
|
|
fbmmap(dev, off, prot)
|
1993-10-02 13:22:00 +03:00
|
|
|
dev_t dev;
|
|
|
|
int off, prot;
|
|
|
|
{
|
1995-09-18 00:43:39 +04:00
|
|
|
int (*map)__P((dev_t, int, int)) = devfb->fb_driver->fbd_mmap;
|
1993-10-02 13:22:00 +03:00
|
|
|
|
|
|
|
if (map == NULL)
|
|
|
|
return (-1);
|
|
|
|
return (map(dev, off, prot));
|
|
|
|
}
|
1995-09-18 00:43:39 +04:00
|
|
|
|
1995-10-08 04:39:13 +03:00
|
|
|
void
|
|
|
|
fb_setsize(fb, depth, def_width, def_height, node, bustype)
|
|
|
|
struct fbdevice *fb;
|
|
|
|
int depth, def_width, def_height, node, bustype;
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The defaults below match my screen, but are not guaranteed
|
|
|
|
* to be correct as defaults go...
|
|
|
|
*/
|
|
|
|
switch (bustype) {
|
|
|
|
case BUS_VME16:
|
|
|
|
case BUS_VME32:
|
|
|
|
case BUS_OBIO:
|
1996-02-26 00:53:49 +03:00
|
|
|
if (CPU_ISSUN4M) { /* 4m has framebuffer on obio */
|
1995-12-11 01:55:32 +03:00
|
|
|
fb->fb_type.fb_width = getpropint(node, "width",
|
|
|
|
def_width);
|
|
|
|
fb->fb_type.fb_height = getpropint(node, "height",
|
|
|
|
def_height);
|
|
|
|
fb->fb_linebytes = getpropint(node, "linebytes",
|
|
|
|
(fb->fb_type.fb_width * depth) / 8);
|
|
|
|
break;
|
|
|
|
}
|
1995-10-08 04:39:13 +03:00
|
|
|
/* Set up some defaults. */
|
|
|
|
fb->fb_type.fb_width = def_width;
|
|
|
|
fb->fb_type.fb_height = def_height;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is not particularly useful on Sun 4 VME framebuffers.
|
|
|
|
* The EEPROM only contains info about the built-in.
|
|
|
|
*/
|
1996-02-26 00:53:49 +03:00
|
|
|
if (CPU_ISSUN4 && (bustype == BUS_VME16 ||
|
1995-10-08 04:39:13 +03:00
|
|
|
bustype == BUS_VME32))
|
|
|
|
goto donesize;
|
|
|
|
|
|
|
|
#if defined(SUN4)
|
1996-02-26 00:53:49 +03:00
|
|
|
if (CPU_ISSUN4) {
|
1995-10-08 04:39:13 +03:00
|
|
|
struct eeprom *eep = (struct eeprom *)eeprom_va;
|
1996-02-28 01:09:14 +03:00
|
|
|
|
|
|
|
if (fb->fb_flags & FB_PFOUR) {
|
|
|
|
volatile u_int32_t pfour;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some pfour framebuffers, e.g. the
|
|
|
|
* cgsix, don't encode resolution the
|
|
|
|
* same, so the driver handles that.
|
|
|
|
* The driver can let us know that it
|
|
|
|
* needs to do this by not mapping in
|
|
|
|
* the pfour register by the time this
|
|
|
|
* routine is called.
|
|
|
|
*/
|
|
|
|
if (fb->fb_pfour == NULL)
|
|
|
|
goto donesize;
|
|
|
|
|
|
|
|
pfour = *fb->fb_pfour;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the pfour register to determine
|
|
|
|
* the size. Note that the cgsix and
|
|
|
|
* cgeight don't use this size encoding.
|
|
|
|
* In this case, we have to settle
|
|
|
|
* for the defaults we were provided
|
|
|
|
* with.
|
|
|
|
*/
|
|
|
|
if ((PFOUR_ID(pfour) == PFOUR_ID_COLOR24) ||
|
|
|
|
(PFOUR_ID(pfour) == PFOUR_ID_FASTCOLOR))
|
|
|
|
goto donesize;
|
|
|
|
|
|
|
|
switch (PFOUR_SIZE(pfour)) {
|
|
|
|
case PFOUR_SIZE_1152X900:
|
|
|
|
fb->fb_type.fb_width = 1152;
|
|
|
|
fb->fb_type.fb_height = 900;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PFOUR_SIZE_1024X1024:
|
|
|
|
fb->fb_type.fb_width = 1024;
|
|
|
|
fb->fb_type.fb_height = 1024;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PFOUR_SIZE_1280X1024:
|
|
|
|
fb->fb_type.fb_width = 1280;
|
|
|
|
fb->fb_type.fb_height = 1024;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PFOUR_SIZE_1600X1280:
|
|
|
|
fb->fb_type.fb_width = 1600;
|
|
|
|
fb->fb_type.fb_height = 1280;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PFOUR_SIZE_1440X1440:
|
|
|
|
fb->fb_type.fb_width = 1440;
|
|
|
|
fb->fb_type.fb_height = 1440;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PFOUR_SIZE_640X480:
|
|
|
|
fb->fb_type.fb_width = 640;
|
|
|
|
fb->fb_type.fb_height = 480;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* XXX: Do nothing, I guess.
|
|
|
|
* Should we print a warning about
|
|
|
|
* an unknown value? --thorpej
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (eep != NULL) {
|
1995-10-08 04:39:13 +03:00
|
|
|
switch (eep->eeScreenSize) {
|
|
|
|
case EE_SCR_1152X900:
|
|
|
|
fb->fb_type.fb_width = 1152;
|
|
|
|
fb->fb_type.fb_height = 900;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EE_SCR_1024X1024:
|
|
|
|
fb->fb_type.fb_width = 1024;
|
|
|
|
fb->fb_type.fb_height = 1024;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EE_SCR_1600X1280:
|
|
|
|
fb->fb_type.fb_width = 1600;
|
|
|
|
fb->fb_type.fb_height = 1280;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EE_SCR_1440X1440:
|
|
|
|
fb->fb_type.fb_width = 1440;
|
|
|
|
fb->fb_type.fb_height = 1440;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* XXX: Do nothing, I guess.
|
|
|
|
* Should we print a warning about
|
|
|
|
* an unknown value? --thorpej
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* SUN4 */
|
|
|
|
#if defined(SUN4M)
|
1996-02-26 00:53:49 +03:00
|
|
|
if (CPU_ISSUN4M) {
|
1995-10-08 04:39:13 +03:00
|
|
|
/* XXX: need code to find 4/600 vme screen size */
|
|
|
|
}
|
|
|
|
#endif /* SUN4M */
|
|
|
|
|
|
|
|
donesize:
|
|
|
|
fb->fb_linebytes = (fb->fb_type.fb_width * depth) / 8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BUS_SBUS:
|
1995-12-11 01:55:32 +03:00
|
|
|
fb->fb_type.fb_width = getpropint(node, "width", def_width);
|
|
|
|
fb->fb_type.fb_height = getpropint(node, "height", def_height);
|
1995-10-08 04:39:13 +03:00
|
|
|
fb->fb_linebytes = getpropint(node, "linebytes",
|
|
|
|
(fb->fb_type.fb_width * depth) / 8);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("fb_setsize: inappropriate bustype");
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-10-05 03:02:54 +03:00
|
|
|
#ifdef RASTERCONSOLE
|
1995-09-18 00:43:39 +04:00
|
|
|
#include <machine/kbd.h>
|
|
|
|
|
|
|
|
extern int (*v_putc) __P((int));
|
|
|
|
|
|
|
|
static int
|
|
|
|
a2int(cp, deflt)
|
|
|
|
register char *cp;
|
|
|
|
register int deflt;
|
|
|
|
{
|
|
|
|
register int i = 0;
|
|
|
|
|
|
|
|
if (*cp == '\0')
|
|
|
|
return (deflt);
|
|
|
|
while (*cp != '\0')
|
|
|
|
i = i * 10 + *cp++ - '0';
|
|
|
|
return (i);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fb_bell(on)
|
|
|
|
int on;
|
|
|
|
{
|
|
|
|
(void)kbd_docmd(on?KBD_CMD_BELL:KBD_CMD_NOBELL, 0);
|
|
|
|
}
|
|
|
|
|
1995-10-05 03:02:54 +03:00
|
|
|
#include <sparc/dev/rcons_font.h>
|
|
|
|
|
1995-09-18 00:43:39 +04:00
|
|
|
void
|
|
|
|
fbrcons_init(fb)
|
|
|
|
struct fbdevice *fb;
|
|
|
|
{
|
1995-10-05 03:02:54 +03:00
|
|
|
struct rconsole *rc = &fb->fb_rcons;
|
1995-09-18 00:43:39 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Common glue for rconsole initialization
|
|
|
|
* XXX - mostly duplicates values with fbdevice.
|
|
|
|
*/
|
1995-10-05 03:02:54 +03:00
|
|
|
rc->rc_linebytes = fb->fb_linebytes;
|
|
|
|
rc->rc_pixels = fb->fb_pixels;
|
|
|
|
rc->rc_width = fb->fb_type.fb_width;
|
|
|
|
rc->rc_height = fb->fb_type.fb_height;
|
|
|
|
rc->rc_depth = fb->fb_type.fb_depth;
|
|
|
|
/* Setup the static font */
|
|
|
|
rc->rc_font = &console_font;
|
|
|
|
|
|
|
|
#if defined(RASTERCONS_FULLSCREEN) || defined(RASTERCONS_SMALLFONT)
|
1995-10-05 16:16:57 +03:00
|
|
|
rc->rc_maxcol = rc->rc_width / rc->rc_font->width;
|
1995-10-08 04:39:13 +03:00
|
|
|
rc->rc_maxrow = rc->rc_height / rc->rc_font->height;
|
1995-10-05 03:02:54 +03:00
|
|
|
#else
|
1995-10-08 04:39:13 +03:00
|
|
|
#if defined(SUN4)
|
1996-02-26 00:53:49 +03:00
|
|
|
if (CPU_ISSUN4) {
|
1995-10-08 04:39:13 +03:00
|
|
|
struct eeprom *eep = (struct eeprom *)eeprom_va;
|
|
|
|
|
|
|
|
if (eep == NULL) {
|
|
|
|
rc->rc_maxcol = 80;
|
|
|
|
rc->rc_maxrow = 34;
|
|
|
|
} else {
|
|
|
|
rc->rc_maxcol = eep->eeTtyCols;
|
|
|
|
rc->rc_maxrow = eep->eeTtyRows;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* SUN4 */
|
1996-02-26 00:53:49 +03:00
|
|
|
|
|
|
|
if (!CPU_ISSUN4) {
|
1995-10-05 03:02:54 +03:00
|
|
|
rc->rc_maxcol =
|
1995-10-03 00:48:21 +03:00
|
|
|
a2int(getpropstring(optionsnode, "screen-#columns"), 80);
|
1995-10-05 03:02:54 +03:00
|
|
|
rc->rc_maxrow =
|
1995-10-03 00:48:21 +03:00
|
|
|
a2int(getpropstring(optionsnode, "screen-#rows"), 34);
|
|
|
|
}
|
1995-10-08 04:39:13 +03:00
|
|
|
#endif /* RASTERCONS_FULLSCREEN || RASTERCONS_SMALLFONT */
|
1995-09-18 00:43:39 +04:00
|
|
|
|
1995-10-05 03:02:54 +03:00
|
|
|
#if !(defined(RASTERCONS_FULLSCREEN) || defined(RASTERCONS_SMALLFONT))
|
1995-09-18 00:43:39 +04:00
|
|
|
/* Determine addresses of prom emulator row and column */
|
1996-02-26 00:53:49 +03:00
|
|
|
if (CPU_ISSUN4 ||
|
1995-10-05 03:02:54 +03:00
|
|
|
romgetcursoraddr(&rc->rc_row, &rc->rc_col))
|
|
|
|
#endif
|
|
|
|
rc->rc_row = rc->rc_col = NULL;
|
1995-09-18 00:43:39 +04:00
|
|
|
|
1995-10-05 03:02:54 +03:00
|
|
|
rc->rc_bell = fb_bell;
|
|
|
|
rcons_init(rc);
|
1995-09-18 00:43:39 +04:00
|
|
|
/* Hook up virtual console */
|
|
|
|
v_putc = (int (*) __P((int)))rcons_cnputc;
|
|
|
|
}
|
|
|
|
#endif
|
1996-02-28 01:09:14 +03:00
|
|
|
|
|
|
|
#if defined(SUN4)
|
|
|
|
/*
|
|
|
|
* Support routines for pfour framebuffers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe for a pfour framebuffer. Return values:
|
|
|
|
*
|
|
|
|
* PFOUR_NOTPFOUR framebuffer is not a pfour
|
|
|
|
* framebuffer
|
|
|
|
*
|
|
|
|
* otherwise returns pfour ID
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fb_pfour_id(va)
|
|
|
|
void *va;
|
|
|
|
{
|
|
|
|
volatile u_int32_t val, save, *pfour = va;
|
|
|
|
|
|
|
|
/* Read the pfour register. */
|
|
|
|
save = *pfour;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to modify the type code. If it changes, put the
|
|
|
|
* original value back, and notify the caller that it's
|
|
|
|
* not a pfour framebuffer.
|
|
|
|
*/
|
|
|
|
val = save & ~PFOUR_REG_RESET;
|
|
|
|
*pfour = (val ^ PFOUR_FBTYPE_MASK);
|
|
|
|
if ((*pfour ^ val) & PFOUR_FBTYPE_MASK) {
|
|
|
|
*pfour = save;
|
|
|
|
return (PFOUR_NOTPFOUR);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (PFOUR_ID(val));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the status of the video enable.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
fb_pfour_get_video(fb)
|
|
|
|
struct fbdevice *fb;
|
|
|
|
{
|
|
|
|
|
|
|
|
return ((*fb->fb_pfour & PFOUR_REG_VIDEO) != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable or disable the framebuffer.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
fb_pfour_set_video(fb, enable)
|
|
|
|
struct fbdevice *fb;
|
|
|
|
int enable;
|
|
|
|
{
|
|
|
|
volatile u_int32_t pfour;
|
|
|
|
|
|
|
|
pfour = *fb->fb_pfour & ~(PFOUR_REG_INTCLR|PFOUR_REG_VIDEO);
|
|
|
|
*fb->fb_pfour = pfour | (enable ? PFOUR_REG_VIDEO : 0);
|
|
|
|
}
|
|
|
|
#endif /* SUN4 */
|