2020-11-21 03:27:52 +03:00
|
|
|
/* $NetBSD: cg4.c,v 1.42 2020/11/21 00:27:52 thorpej Exp $ */
|
1995-03-10 04:50:28 +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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-03-10 04:50:28 +03:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* from: @(#)cgthree.c 8.2 (Berkeley) 10/30/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* color display (cg4) driver.
|
|
|
|
*
|
1996-10-29 22:54:19 +03:00
|
|
|
* Credits, history:
|
|
|
|
* Gordon Ross created this driver based on the cg3 driver from
|
|
|
|
* the sparc port as distributed in BSD 4.4 Lite, but included
|
|
|
|
* support for only the "type B" adapter (Brooktree DACs).
|
|
|
|
* Ezra Story added support for the "type A" (AMD DACs).
|
1995-03-10 04:50:28 +03:00
|
|
|
*
|
1996-10-29 22:54:19 +03:00
|
|
|
* Todo:
|
|
|
|
* Make this driver handle video interrupts.
|
|
|
|
* Defer colormap updates to vertical retrace interrupts.
|
1995-03-10 04:50:28 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-15 06:54:31 +04:00
|
|
|
#include <sys/cdefs.h>
|
2020-11-21 03:27:52 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: cg4.c,v 1.42 2020/11/21 00:27:52 thorpej Exp $");
|
2003-07-15 06:54:31 +04:00
|
|
|
|
1995-03-10 04:50:28 +03:00
|
|
|
#include <sys/param.h>
|
1996-10-29 22:54:19 +03:00
|
|
|
#include <sys/systm.h>
|
1996-12-18 00:10:35 +03:00
|
|
|
#include <sys/conf.h>
|
1995-03-10 04:50:28 +03:00
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/ioctl.h>
|
2020-11-21 03:27:52 +03:00
|
|
|
#include <sys/kmem.h>
|
1995-03-10 04:50:28 +03:00
|
|
|
#include <sys/mman.h>
|
1996-12-18 00:10:35 +03:00
|
|
|
#include <sys/proc.h>
|
1995-03-10 04:50:28 +03:00
|
|
|
#include <sys/tty.h>
|
|
|
|
|
2000-06-29 11:18:57 +04:00
|
|
|
#include <uvm/uvm_extern.h>
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1996-12-18 00:10:35 +03:00
|
|
|
#include <machine/autoconf.h>
|
1995-04-07 06:43:25 +04:00
|
|
|
#include <machine/cpu.h>
|
2001-09-19 22:10:32 +04:00
|
|
|
#include <dev/sun/fbio.h>
|
1996-12-18 00:10:35 +03:00
|
|
|
#include <machine/idprom.h>
|
1995-03-10 04:50:28 +03:00
|
|
|
#include <machine/pmap.h>
|
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
#include <sun3/dev/fbvar.h>
|
|
|
|
#include <sun3/dev/btreg.h>
|
|
|
|
#include <sun3/dev/cg4reg.h>
|
|
|
|
#include <sun3/dev/p4reg.h>
|
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
#include "ioconf.h"
|
|
|
|
|
1998-06-09 18:38:59 +04:00
|
|
|
union bt_cmap_u {
|
2008-06-28 16:13:38 +04:00
|
|
|
uint8_t btcm_char[256 * 3]; /* raw data */
|
|
|
|
uint8_t btcm_rgb[256][3]; /* 256 R/G/B entries */
|
1998-06-09 18:38:59 +04:00
|
|
|
u_int btcm_int[256 * 3 / 4]; /* the way the chip gets loaded */
|
|
|
|
};
|
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
#define CG4_TYPE_A 0 /* AMD DACs */
|
|
|
|
#define CG4_TYPE_B 1 /* Brooktree DACs */
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1996-10-29 22:54:19 +03:00
|
|
|
#define CG4_MMAP_SIZE (CG4_OVERLAY_SIZE + CG4_ENABLE_SIZE + CG4_PIXMAP_SIZE)
|
|
|
|
|
|
|
|
#define CMAP_SIZE 256
|
|
|
|
struct soft_cmap {
|
2008-06-28 16:13:38 +04:00
|
|
|
uint8_t r[CMAP_SIZE];
|
|
|
|
uint8_t g[CMAP_SIZE];
|
|
|
|
uint8_t b[CMAP_SIZE];
|
1996-10-29 22:54:19 +03:00
|
|
|
};
|
|
|
|
|
1995-03-10 04:50:28 +03:00
|
|
|
/* per-display variables */
|
|
|
|
struct cg4_softc {
|
2008-06-28 16:13:38 +04:00
|
|
|
device_t sc_dev; /* base device */
|
1995-03-10 04:50:28 +03:00
|
|
|
struct fbdevice sc_fb; /* frame buffer device */
|
1996-10-29 22:54:19 +03:00
|
|
|
int sc_cg4type; /* A or B */
|
|
|
|
int sc_pa_overlay; /* phys. addr. of overlay plane */
|
|
|
|
int sc_pa_enable; /* phys. addr. of enable plane */
|
|
|
|
int sc_pa_pixmap; /* phys. addr. of color plane */
|
1998-01-26 23:53:17 +03:00
|
|
|
int sc_video_on; /* zero if blanked */
|
|
|
|
void *sc_va_cmap; /* Colormap h/w (mapped KVA) */
|
|
|
|
void *sc_btcm; /* Soft cmap, Brooktree format */
|
2005-01-22 18:36:09 +03:00
|
|
|
void (*sc_ldcmap)(struct cg4_softc *);
|
1998-06-09 18:38:59 +04:00
|
|
|
struct soft_cmap sc_cmap; /* Soft cmap, user format */
|
1995-03-10 04:50:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/* autoconfiguration driver */
|
2008-06-28 16:13:38 +04:00
|
|
|
static int cg4match(device_t, cfdata_t, void *);
|
|
|
|
static void cg4attach(device_t, device_t, void *);
|
1995-03-10 04:50:28 +03:00
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
CFATTACH_DECL_NEW(cgfour, sizeof(struct cg4_softc),
|
2002-10-02 20:02:08 +04:00
|
|
|
cg4match, cg4attach, NULL, NULL);
|
1996-03-17 05:00:30 +03:00
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
dev_type_open(cg4open);
|
|
|
|
dev_type_ioctl(cg4ioctl);
|
|
|
|
dev_type_mmap(cg4mmap);
|
|
|
|
|
|
|
|
const struct cdevsw cgfour_cdevsw = {
|
2014-03-16 09:20:22 +04:00
|
|
|
.d_open = cg4open,
|
|
|
|
.d_close = nullclose,
|
|
|
|
.d_read = noread,
|
|
|
|
.d_write = nowrite,
|
|
|
|
.d_ioctl = cg4ioctl,
|
|
|
|
.d_stop = nostop,
|
|
|
|
.d_tty = notty,
|
|
|
|
.d_poll = nopoll,
|
|
|
|
.d_mmap = cg4mmap,
|
|
|
|
.d_kqfilter = nokqfilter,
|
2014-07-25 12:10:31 +04:00
|
|
|
.d_discard = nodiscard,
|
2014-03-16 09:20:22 +04:00
|
|
|
.d_flag = 0
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static int cg4gattr (struct fbdevice *, void *);
|
|
|
|
static int cg4gvideo (struct fbdevice *, void *);
|
|
|
|
static int cg4svideo (struct fbdevice *, void *);
|
|
|
|
static int cg4getcmap(struct fbdevice *, void *);
|
|
|
|
static int cg4putcmap(struct fbdevice *, void *);
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-06-09 18:38:59 +04:00
|
|
|
#ifdef _SUN3_
|
2005-01-22 18:36:09 +03:00
|
|
|
static void cg4a_init (struct cg4_softc *);
|
|
|
|
static void cg4a_ldcmap(struct cg4_softc *);
|
1998-06-09 18:38:59 +04:00
|
|
|
#endif /* SUN3 */
|
1996-10-29 22:54:19 +03:00
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static void cg4b_init (struct cg4_softc *);
|
|
|
|
static void cg4b_ldcmap(struct cg4_softc *);
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
static struct fbdriver cg4_fbdriver = {
|
2002-10-23 13:10:23 +04:00
|
|
|
cg4open, nullclose, cg4mmap, nokqfilter, cg4gattr,
|
1995-03-10 04:50:28 +03:00
|
|
|
cg4gvideo, cg4svideo,
|
|
|
|
cg4getcmap, cg4putcmap };
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Match a cg4.
|
|
|
|
*/
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
2008-06-28 16:13:38 +04:00
|
|
|
cg4match(device_t parent, cfdata_t cf, void *args)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
|
|
|
struct confargs *ca = args;
|
1998-03-22 00:38:24 +03:00
|
|
|
int mid, p4id, peekval, tmp;
|
1998-02-08 08:22:08 +03:00
|
|
|
void *p4reg;
|
|
|
|
|
|
|
|
/* No default address support. */
|
|
|
|
if (ca->ca_paddr == -1)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-02-08 08:22:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Slight hack here: The low four bits of the
|
|
|
|
* config flags, if set, restrict the match to
|
|
|
|
* that machine "implementation" only.
|
|
|
|
*/
|
|
|
|
mid = cf->cf_flags & IDM_IMPL_MASK;
|
|
|
|
if (mid && (mid != (cpu_machine_id & IDM_IMPL_MASK)))
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-02-08 08:22:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The config flag 0x10 if set means we are
|
1998-03-22 00:38:24 +03:00
|
|
|
* looking for a Type A board (3/110).
|
1998-02-08 08:22:08 +03:00
|
|
|
*/
|
|
|
|
if (cf->cf_flags & 0x10) {
|
1998-03-22 00:38:24 +03:00
|
|
|
#ifdef _SUN3_
|
|
|
|
/* Type A: Check for AMD RAMDACs in control space. */
|
1996-10-29 22:54:19 +03:00
|
|
|
if (bus_peek(BUS_OBIO, CG4A_OBIO_CMAP, 1) == -1)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-03-22 00:38:24 +03:00
|
|
|
/* Check for the overlay plane. */
|
|
|
|
tmp = ca->ca_paddr + CG4A_OFF_OVERLAY;
|
|
|
|
if (bus_peek(ca->ca_bustype, tmp, 1) == -1)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-03-22 00:38:24 +03:00
|
|
|
/* OK, it looks like a Type A. */
|
2008-06-28 16:13:38 +04:00
|
|
|
return 1;
|
1998-03-22 00:38:24 +03:00
|
|
|
#else /* SUN3 */
|
|
|
|
/* Only the Sun3/110 ever has a type A. */
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-02-08 08:22:08 +03:00
|
|
|
#endif /* SUN3 */
|
1998-03-22 00:38:24 +03:00
|
|
|
}
|
1995-04-07 09:19:24 +04:00
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
/*
|
1998-03-22 00:38:24 +03:00
|
|
|
* From here on, it is a type B or nothing.
|
|
|
|
* The config flag 0x20 if set means there
|
|
|
|
* is no P4 register. (bus error)
|
1998-02-08 08:22:08 +03:00
|
|
|
*/
|
1998-03-22 00:38:24 +03:00
|
|
|
if ((cf->cf_flags & 0x20) == 0) {
|
|
|
|
p4reg = bus_tmapin(ca->ca_bustype, ca->ca_paddr);
|
|
|
|
peekval = peek_long(p4reg);
|
|
|
|
p4id = (peekval == -1) ?
|
|
|
|
P4_NOTFOUND : fb_pfour_id(p4reg);
|
|
|
|
bus_tmapout(p4reg);
|
|
|
|
if (peekval == -1)
|
|
|
|
return (0);
|
|
|
|
if (p4id != P4_ID_COLOR8P1) {
|
1998-02-08 08:22:08 +03:00
|
|
|
#ifdef DEBUG
|
2008-06-28 16:13:38 +04:00
|
|
|
aprint_debug("cgfour at 0x%lx match p4id=0x%x fails\n",
|
|
|
|
ca->ca_paddr, p4id & 0xFF);
|
1998-02-08 08:22:08 +03:00
|
|
|
#endif
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-03-22 00:38:24 +03:00
|
|
|
}
|
1996-10-29 22:54:19 +03:00
|
|
|
}
|
1995-04-07 09:19:24 +04:00
|
|
|
|
1998-03-22 00:38:24 +03:00
|
|
|
/*
|
|
|
|
* Check for CMAP hardware and overlay plane.
|
|
|
|
*/
|
|
|
|
tmp = ca->ca_paddr + CG4B_OFF_CMAP;
|
|
|
|
if (bus_peek(ca->ca_bustype, tmp, 4) == -1)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-03-22 00:38:24 +03:00
|
|
|
tmp = ca->ca_paddr + CG4B_OFF_OVERLAY;
|
|
|
|
if (bus_peek(ca->ca_bustype, tmp, 1) == -1)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-03-22 00:38:24 +03:00
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
return 1;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach a display. We need to notice if it is the console, too.
|
|
|
|
*/
|
2005-01-22 18:36:09 +03:00
|
|
|
static void
|
2008-06-28 16:13:38 +04:00
|
|
|
cg4attach(device_t parent, device_t self, void *args)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
2008-06-08 21:30:08 +04:00
|
|
|
struct cg4_softc *sc = device_private(self);
|
1995-03-10 04:50:28 +03:00
|
|
|
struct fbdevice *fb = &sc->sc_fb;
|
|
|
|
struct confargs *ca = args;
|
|
|
|
struct fbtype *fbt;
|
1998-03-22 00:38:24 +03:00
|
|
|
int tmp;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
sc->sc_dev = self;
|
|
|
|
|
1995-03-10 04:50:28 +03:00
|
|
|
fbt = &fb->fb_fbtype;
|
|
|
|
fbt->fb_type = FBTYPE_SUN4COLOR;
|
1998-02-08 08:22:08 +03:00
|
|
|
fbt->fb_width = 1152; /* default - see below */
|
|
|
|
fbt->fb_height = 900; /* default - see below */
|
1995-03-10 04:50:28 +03:00
|
|
|
fbt->fb_depth = 8;
|
|
|
|
fbt->fb_cmsize = 256;
|
1995-04-07 06:43:25 +04:00
|
|
|
fbt->fb_size = CG4_MMAP_SIZE;
|
1998-02-08 08:22:08 +03:00
|
|
|
fb->fb_driver = &cg4_fbdriver;
|
|
|
|
fb->fb_private = sc;
|
2008-06-28 16:13:38 +04:00
|
|
|
fb->fb_name = device_xname(self);
|
|
|
|
fb->fb_flags = device_cfdata(self)->cf_flags;
|
1998-02-08 08:22:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The config flag 0x10 if set means we are
|
|
|
|
* attaching a Type A (3/110) which has the
|
|
|
|
* AMD RAMDACs in control space, and no P4.
|
|
|
|
*/
|
|
|
|
if (fb->fb_flags & 0x10) {
|
|
|
|
#ifdef _SUN3_
|
|
|
|
sc->sc_cg4type = CG4_TYPE_A;
|
|
|
|
sc->sc_ldcmap = cg4a_ldcmap;
|
1996-10-29 22:54:19 +03:00
|
|
|
sc->sc_pa_overlay = ca->ca_paddr + CG4A_OFF_OVERLAY;
|
|
|
|
sc->sc_pa_enable = ca->ca_paddr + CG4A_OFF_ENABLE;
|
|
|
|
sc->sc_pa_pixmap = ca->ca_paddr + CG4A_OFF_PIXMAP;
|
1998-03-08 21:53:17 +03:00
|
|
|
sc->sc_va_cmap = bus_mapin(BUS_OBIO, CG4A_OBIO_CMAP,
|
|
|
|
sizeof(struct amd_regs));
|
1996-10-29 22:54:19 +03:00
|
|
|
cg4a_init(sc);
|
1998-02-08 08:22:08 +03:00
|
|
|
#else /* SUN3 */
|
|
|
|
panic("cgfour flags 0x10");
|
|
|
|
#endif /* SUN3 */
|
|
|
|
} else {
|
|
|
|
sc->sc_cg4type = CG4_TYPE_B;
|
|
|
|
sc->sc_ldcmap = cg4b_ldcmap;
|
1996-10-29 22:54:19 +03:00
|
|
|
sc->sc_pa_overlay = ca->ca_paddr + CG4B_OFF_OVERLAY;
|
|
|
|
sc->sc_pa_enable = ca->ca_paddr + CG4B_OFF_ENABLE;
|
|
|
|
sc->sc_pa_pixmap = ca->ca_paddr + CG4B_OFF_PIXMAP;
|
1998-03-22 00:38:24 +03:00
|
|
|
tmp = ca->ca_paddr + CG4B_OFF_CMAP;
|
1998-03-08 21:53:17 +03:00
|
|
|
sc->sc_va_cmap = bus_mapin(ca->ca_bustype, tmp,
|
|
|
|
sizeof(struct bt_regs));
|
1996-10-29 22:54:19 +03:00
|
|
|
cg4b_init(sc);
|
1998-03-22 00:38:24 +03:00
|
|
|
}
|
1998-02-08 08:22:08 +03:00
|
|
|
|
1998-03-22 00:38:24 +03:00
|
|
|
if ((fb->fb_flags & 0x20) == 0) {
|
|
|
|
/* It is supposed to have a P4 register. */
|
|
|
|
fb->fb_pfour = bus_mapin(ca->ca_bustype, ca->ca_paddr, 4);
|
1996-10-29 22:54:19 +03:00
|
|
|
}
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
/*
|
|
|
|
* Determine width and height as follows:
|
|
|
|
* If it has a P4 register, use that;
|
|
|
|
* else if unit==0, use the EEPROM size,
|
|
|
|
* else make our best guess.
|
|
|
|
*/
|
|
|
|
if (fb->fb_pfour)
|
|
|
|
fb_pfour_setsize(fb);
|
2006-03-28 21:38:24 +04:00
|
|
|
/* XXX device_unit() abuse */
|
2008-06-28 16:13:38 +04:00
|
|
|
else if (device_unit(self) == 0)
|
1998-02-08 08:22:08 +03:00
|
|
|
fb_eeprom_setsize(fb);
|
|
|
|
else {
|
|
|
|
/* Guess based on machine ID. */
|
|
|
|
switch (cpu_machine_id) {
|
|
|
|
default:
|
|
|
|
/* Leave the defaults set above. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-06-28 16:13:38 +04:00
|
|
|
aprint_normal(" (%dx%d)\n", fbt->fb_width, fbt->fb_height);
|
1998-02-08 08:22:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure video is on. This driver uses a
|
|
|
|
* black colormap to blank the screen, so if
|
|
|
|
* there is any global enable, set it here.
|
|
|
|
*/
|
|
|
|
tmp = 1;
|
|
|
|
cg4svideo(fb, &tmp);
|
|
|
|
if (fb->fb_pfour)
|
|
|
|
fb_pfour_set_video(fb, 1);
|
|
|
|
else
|
|
|
|
enable_video(1);
|
|
|
|
|
|
|
|
/* Let /dev/fb know we are here. */
|
1995-04-07 06:43:25 +04:00
|
|
|
fb_attach(fb, 4);
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
int
|
2005-12-11 15:16:03 +03:00
|
|
|
cg4open(dev_t dev, int flags, int mode, struct lwp *l)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
2008-06-08 21:30:08 +04:00
|
|
|
struct cg4_softc *sc;
|
1995-03-10 04:50:28 +03:00
|
|
|
int unit = minor(dev);
|
|
|
|
|
2008-06-08 21:30:08 +04:00
|
|
|
sc = device_lookup_private(&cgfour_cd, unit);
|
|
|
|
if (sc == NULL)
|
2008-06-28 16:13:38 +04:00
|
|
|
return ENXIO;
|
|
|
|
return 0;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
int
|
2007-03-04 08:59:00 +03:00
|
|
|
cg4ioctl(dev_t dev, u_long cmd, void *data, int flags, struct lwp *l)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
2008-06-08 21:30:08 +04:00
|
|
|
struct cg4_softc *sc = device_lookup_private(&cgfour_cd, minor(dev));
|
1995-03-10 04:50:28 +03:00
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
return fbioctlfb(&sc->sc_fb, cmd, data);
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the address that would map the given device at the given
|
|
|
|
* offset, allowing for the given protection, or return -1 for error.
|
|
|
|
*
|
|
|
|
* X11 expects its mmap'd region to look like this:
|
1996-10-29 22:54:19 +03:00
|
|
|
* 128k overlay data memory
|
|
|
|
* 128k overlay enable bitmap
|
1995-03-10 04:50:28 +03:00
|
|
|
* 1024k color memory
|
1998-02-08 08:22:08 +03:00
|
|
|
*
|
|
|
|
* The hardware looks completely different.
|
1995-03-10 04:50:28 +03:00
|
|
|
*/
|
2005-01-22 18:36:09 +03:00
|
|
|
paddr_t
|
|
|
|
cg4mmap(dev_t dev, off_t off, int prot)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
2008-06-08 21:30:08 +04:00
|
|
|
struct cg4_softc *sc = device_lookup_private(&cgfour_cd, minor(dev));
|
2001-09-05 17:27:53 +04:00
|
|
|
int physbase;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
|
|
|
if (off & PGOFSET)
|
2008-06-28 16:13:38 +04:00
|
|
|
panic("%s: bad offset", __func__);
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-01-26 23:53:17 +03:00
|
|
|
if ((off < 0) || (off >= CG4_MMAP_SIZE))
|
2008-06-28 16:13:38 +04:00
|
|
|
return -1;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1995-04-07 06:43:25 +04:00
|
|
|
if (off < 0x40000) {
|
|
|
|
if (off < 0x20000) {
|
1996-10-29 22:54:19 +03:00
|
|
|
physbase = sc->sc_pa_overlay;
|
1995-04-07 06:43:25 +04:00
|
|
|
} else {
|
|
|
|
/* enable plane */
|
|
|
|
off -= 0x20000;
|
1996-10-29 22:54:19 +03:00
|
|
|
physbase = sc->sc_pa_enable;
|
1995-04-07 06:43:25 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* pixel map */
|
|
|
|
off -= 0x40000;
|
1996-10-29 22:54:19 +03:00
|
|
|
physbase = sc->sc_pa_pixmap;
|
1995-04-07 06:43:25 +04:00
|
|
|
}
|
|
|
|
|
1995-03-10 04:50:28 +03:00
|
|
|
/*
|
|
|
|
* I turned on PMAP_NC here to disable the cache as I was
|
1998-02-08 08:22:08 +03:00
|
|
|
* getting horribly broken behaviour without it.
|
1995-03-10 04:50:28 +03:00
|
|
|
*/
|
2008-06-28 16:13:38 +04:00
|
|
|
return (physbase + off) | PMAP_NC;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal ioctl functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* FBIOGATTR: */
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
|
|
|
cg4gattr(struct fbdevice *fb, void *data)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
1996-12-18 00:10:35 +03:00
|
|
|
struct fbgattr *fba = data;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
|
|
|
fba->real_type = fb->fb_fbtype.fb_type;
|
|
|
|
fba->owner = 0; /* XXX - TIOCCONS stuff? */
|
|
|
|
fba->fbtype = fb->fb_fbtype;
|
|
|
|
fba->sattr.flags = 0;
|
|
|
|
fba->sattr.emu_type = fb->fb_fbtype.fb_type;
|
|
|
|
fba->sattr.dev_specific[0] = -1;
|
|
|
|
fba->emu_types[0] = fb->fb_fbtype.fb_type;
|
|
|
|
fba->emu_types[1] = -1;
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* FBIOGVIDEO: */
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
|
|
|
cg4gvideo(struct fbdevice *fb, void *data)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
|
|
|
struct cg4_softc *sc = fb->fb_private;
|
1998-01-26 23:53:17 +03:00
|
|
|
int *on = data;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-01-26 23:53:17 +03:00
|
|
|
*on = sc->sc_video_on;
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* FBIOSVIDEO: */
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
|
|
|
cg4svideo(struct fbdevice *fb, void *data)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
|
|
|
struct cg4_softc *sc = fb->fb_private;
|
1998-01-26 23:53:17 +03:00
|
|
|
int *on = data;
|
|
|
|
|
|
|
|
if (sc->sc_video_on == *on)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-01-26 23:53:17 +03:00
|
|
|
sc->sc_video_on = *on;
|
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
(*sc->sc_ldcmap)(sc);
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1996-10-29 22:54:19 +03:00
|
|
|
}
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1996-10-29 22:54:19 +03:00
|
|
|
/*
|
|
|
|
* FBIOGETCMAP:
|
|
|
|
* Copy current colormap out to user space.
|
|
|
|
*/
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
|
|
|
cg4getcmap(struct fbdevice *fb, void *data)
|
1996-10-29 22:54:19 +03:00
|
|
|
{
|
|
|
|
struct cg4_softc *sc = fb->fb_private;
|
|
|
|
struct soft_cmap *cm = &sc->sc_cmap;
|
1998-01-26 23:53:17 +03:00
|
|
|
struct fbcmap *fbcm = data;
|
2002-08-03 04:12:48 +04:00
|
|
|
u_int start, count;
|
|
|
|
int error;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1996-10-29 22:54:19 +03:00
|
|
|
start = fbcm->index;
|
|
|
|
count = fbcm->count;
|
2002-08-03 04:12:48 +04:00
|
|
|
if (start >= CMAP_SIZE || count > CMAP_SIZE - start)
|
2008-06-28 16:13:38 +04:00
|
|
|
return EINVAL;
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
if ((error = copyout(&cm->r[start], fbcm->red, count)) != 0)
|
2008-06-28 16:13:38 +04:00
|
|
|
return error;
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
if ((error = copyout(&cm->g[start], fbcm->green, count)) != 0)
|
2008-06-28 16:13:38 +04:00
|
|
|
return error;
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
if ((error = copyout(&cm->b[start], fbcm->blue, count)) != 0)
|
2008-06-28 16:13:38 +04:00
|
|
|
return error;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
1996-10-29 22:54:19 +03:00
|
|
|
/*
|
|
|
|
* FBIOPUTCMAP:
|
|
|
|
* Copy new colormap from user space and load.
|
|
|
|
*/
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
|
|
|
cg4putcmap(struct fbdevice *fb, void *data)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
|
|
|
struct cg4_softc *sc = fb->fb_private;
|
1996-10-29 22:54:19 +03:00
|
|
|
struct soft_cmap *cm = &sc->sc_cmap;
|
1998-01-26 23:53:17 +03:00
|
|
|
struct fbcmap *fbcm = data;
|
2002-08-03 04:12:48 +04:00
|
|
|
u_int start, count;
|
|
|
|
int error;
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
start = fbcm->index;
|
|
|
|
count = fbcm->count;
|
2002-08-03 04:12:48 +04:00
|
|
|
if (start >= CMAP_SIZE || count > CMAP_SIZE - start)
|
2008-06-28 16:13:38 +04:00
|
|
|
return EINVAL;
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
if ((error = copyin(fbcm->red, &cm->r[start], count)) != 0)
|
2008-06-28 16:13:38 +04:00
|
|
|
return error;
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
if ((error = copyin(fbcm->green, &cm->g[start], count)) != 0)
|
2008-06-28 16:13:38 +04:00
|
|
|
return error;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1996-10-29 22:54:19 +03:00
|
|
|
if ((error = copyin(fbcm->blue, &cm->b[start], count)) != 0)
|
2008-06-28 16:13:38 +04:00
|
|
|
return error;
|
1996-10-29 22:54:19 +03:00
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
(*sc->sc_ldcmap)(sc);
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
1996-10-29 22:54:19 +03:00
|
|
|
/****************************************************************
|
|
|
|
* Routines for the "Type A" hardware
|
|
|
|
****************************************************************/
|
1998-02-08 08:22:08 +03:00
|
|
|
#ifdef _SUN3_
|
1996-10-29 22:54:19 +03:00
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static void
|
|
|
|
cg4a_init(struct cg4_softc *sc)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
1996-10-29 22:54:19 +03:00
|
|
|
volatile struct amd_regs *ar = sc->sc_va_cmap;
|
|
|
|
struct soft_cmap *cm = &sc->sc_cmap;
|
|
|
|
int i;
|
|
|
|
|
1998-01-26 23:53:17 +03:00
|
|
|
/* Grab initial (current) color map. */
|
1996-10-29 22:54:19 +03:00
|
|
|
for(i = 0; i < 256; i++) {
|
|
|
|
cm->r[i] = ar->r[i];
|
|
|
|
cm->g[i] = ar->g[i];
|
|
|
|
cm->b[i] = ar->b[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static void
|
|
|
|
cg4a_ldcmap(struct cg4_softc *sc)
|
1996-10-29 22:54:19 +03:00
|
|
|
{
|
|
|
|
volatile struct amd_regs *ar = sc->sc_va_cmap;
|
|
|
|
struct soft_cmap *cm = &sc->sc_cmap;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now blast them into the chip!
|
|
|
|
* XXX Should use retrace interrupt!
|
|
|
|
* Just set a "need load" bit and let the
|
|
|
|
* retrace interrupt handler do the work.
|
|
|
|
*/
|
1998-01-26 23:53:17 +03:00
|
|
|
if (sc->sc_video_on) {
|
|
|
|
/* Update H/W colormap. */
|
|
|
|
for (i = 0; i < 256; i++) {
|
|
|
|
ar->r[i] = cm->r[i];
|
|
|
|
ar->g[i] = cm->g[i];
|
|
|
|
ar->b[i] = cm->b[i];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Clear H/W colormap. */
|
1996-10-29 22:54:19 +03:00
|
|
|
for (i = 0; i < 256; i++) {
|
|
|
|
ar->r[i] = 0;
|
|
|
|
ar->g[i] = 0;
|
|
|
|
ar->b[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
1998-02-08 08:22:08 +03:00
|
|
|
#endif /* SUN3 */
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
* Routines for the "Type B" hardware
|
|
|
|
****************************************************************/
|
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static void
|
|
|
|
cg4b_init(struct cg4_softc *sc)
|
1996-10-29 22:54:19 +03:00
|
|
|
{
|
|
|
|
volatile struct bt_regs *bt = sc->sc_va_cmap;
|
|
|
|
struct soft_cmap *cm = &sc->sc_cmap;
|
1998-06-09 18:38:59 +04:00
|
|
|
union bt_cmap_u *btcm;
|
1996-10-29 22:54:19 +03:00
|
|
|
int i;
|
|
|
|
|
1998-01-26 23:53:17 +03:00
|
|
|
/* Need a buffer for colormap format translation. */
|
2020-11-21 03:27:52 +03:00
|
|
|
btcm = kmem_alloc(sizeof(*btcm), KM_SLEEP);
|
1998-01-26 23:53:17 +03:00
|
|
|
sc->sc_btcm = btcm;
|
|
|
|
|
1996-10-29 22:54:19 +03:00
|
|
|
/*
|
|
|
|
* BT458 chip initialization as described in Brooktree's
|
|
|
|
* 1993 Graphics and Imaging Product Databook (DB004-1/93).
|
1998-06-09 18:38:59 +04:00
|
|
|
*
|
|
|
|
* It appears that the 3/60 uses the low byte, and the 3/80
|
|
|
|
* uses the high byte, while both ignore the other bytes.
|
|
|
|
* Writing same value to all bytes works on both.
|
1996-10-29 22:54:19 +03:00
|
|
|
*/
|
1998-06-09 18:38:59 +04:00
|
|
|
bt->bt_addr = 0x04040404; /* select read mask register */
|
|
|
|
bt->bt_ctrl = ~0; /* all planes on */
|
|
|
|
bt->bt_addr = 0x05050505; /* select blink mask register */
|
|
|
|
bt->bt_ctrl = 0; /* all planes non-blinking */
|
|
|
|
bt->bt_addr = 0x06060606; /* select command register */
|
2008-06-28 16:13:38 +04:00
|
|
|
bt->bt_ctrl = 0x43434343; /* palette enabled, overlay planes enabled */
|
1998-06-09 18:38:59 +04:00
|
|
|
bt->bt_addr = 0x07070707; /* select test register */
|
|
|
|
bt->bt_ctrl = 0; /* not test mode */
|
1996-10-29 22:54:19 +03:00
|
|
|
|
|
|
|
/* grab initial (current) color map */
|
|
|
|
bt->bt_addr = 0;
|
1998-06-09 18:38:59 +04:00
|
|
|
#ifdef _SUN3_
|
|
|
|
/* Sun3/60 wants 32-bit access, packed. */
|
|
|
|
for (i = 0; i < (256 * 3 / 4); i++)
|
|
|
|
btcm->btcm_int[i] = bt->bt_cmap;
|
|
|
|
#else /* SUN3 */
|
|
|
|
/* Sun3/80 wants 8-bits in the high byte. */
|
|
|
|
for (i = 0; i < (256 * 3); i++)
|
|
|
|
btcm->btcm_char[i] = bt->bt_cmap >> 24;
|
|
|
|
#endif /* SUN3 */
|
1996-10-29 22:54:19 +03:00
|
|
|
|
1998-01-26 23:53:17 +03:00
|
|
|
/* Transpose into H/W cmap into S/W form. */
|
1996-10-29 22:54:19 +03:00
|
|
|
for (i = 0; i < 256; i++) {
|
1998-06-09 18:38:59 +04:00
|
|
|
cm->r[i] = btcm->btcm_rgb[i][0];
|
|
|
|
cm->g[i] = btcm->btcm_rgb[i][1];
|
|
|
|
cm->b[i] = btcm->btcm_rgb[i][2];
|
1996-10-29 22:54:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static void
|
|
|
|
cg4b_ldcmap(struct cg4_softc *sc)
|
1996-10-29 22:54:19 +03:00
|
|
|
{
|
|
|
|
volatile struct bt_regs *bt = sc->sc_va_cmap;
|
|
|
|
struct soft_cmap *cm = &sc->sc_cmap;
|
1998-06-09 18:38:59 +04:00
|
|
|
union bt_cmap_u *btcm = sc->sc_btcm;
|
1996-10-29 22:54:19 +03:00
|
|
|
int i;
|
|
|
|
|
1998-01-26 23:53:17 +03:00
|
|
|
/* Transpose S/W cmap into H/W form. */
|
1996-10-29 22:54:19 +03:00
|
|
|
for (i = 0; i < 256; i++) {
|
1998-06-09 18:38:59 +04:00
|
|
|
btcm->btcm_rgb[i][0] = cm->r[i];
|
|
|
|
btcm->btcm_rgb[i][1] = cm->g[i];
|
|
|
|
btcm->btcm_rgb[i][2] = cm->b[i];
|
1996-10-29 22:54:19 +03:00
|
|
|
}
|
|
|
|
|
1998-01-26 23:53:17 +03:00
|
|
|
/*
|
|
|
|
* Now blast them into the chip!
|
|
|
|
* XXX Should use retrace interrupt!
|
|
|
|
* Just set a "need load" bit and let the
|
|
|
|
* retrace interrupt handler do the work.
|
|
|
|
*/
|
1996-10-29 22:54:19 +03:00
|
|
|
bt->bt_addr = 0;
|
1998-06-09 20:10:25 +04:00
|
|
|
|
|
|
|
#ifdef _SUN3_
|
|
|
|
/* Sun3/60 wants 32-bit access, packed. */
|
1998-01-26 23:53:17 +03:00
|
|
|
if (sc->sc_video_on) {
|
|
|
|
/* Update H/W colormap. */
|
|
|
|
for (i = 0; i < (256 * 3 / 4); i++)
|
1998-06-09 18:38:59 +04:00
|
|
|
bt->bt_cmap = btcm->btcm_int[i];
|
1998-01-26 23:53:17 +03:00
|
|
|
} else {
|
|
|
|
/* Clear H/W colormap. */
|
1996-10-29 22:54:19 +03:00
|
|
|
for (i = 0; i < (256 * 3 / 4); i++)
|
|
|
|
bt->bt_cmap = 0;
|
1998-06-09 20:10:25 +04:00
|
|
|
}
|
1998-06-09 18:38:59 +04:00
|
|
|
#else /* SUN3 */
|
1998-06-09 20:10:25 +04:00
|
|
|
/* Sun3/80 wants 8-bits in the high byte. */
|
|
|
|
if (sc->sc_video_on) {
|
|
|
|
/* Update H/W colormap. */
|
|
|
|
for (i = 0; i < (256 * 3); i++)
|
|
|
|
bt->bt_cmap = btcm->btcm_char[i] << 24;
|
|
|
|
} else {
|
|
|
|
/* Clear H/W colormap. */
|
1998-06-09 18:38:59 +04:00
|
|
|
for (i = 0; i < (256 * 3); i++)
|
|
|
|
bt->bt_cmap = 0;
|
1996-10-29 22:54:19 +03:00
|
|
|
}
|
1998-06-09 20:10:25 +04:00
|
|
|
#endif /* SUN3 */
|
1996-10-29 22:54:19 +03:00
|
|
|
}
|