summaryrefslogtreecommitdiff
path: root/sys/dev/sbus
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2002-07-30 18:07:03 +0000
committerJason Wright <jason@cvs.openbsd.org>2002-07-30 18:07:03 +0000
commit692d2b47101b08866d6c011e27941a2b8f132bc8 (patch)
tree8b89891106454b8eaf6eb4ab509de54b7f90ddc3 /sys/dev/sbus
parent359121ee0d779d563c3ea5d325fc1fd68922b7af (diff)
- Allow disabling of console acceleration with cf_flags
- handle native and dumb mappings separately
Diffstat (limited to 'sys/dev/sbus')
-rw-r--r--sys/dev/sbus/cgsix.c77
-rw-r--r--sys/dev/sbus/cgsixreg.h4
2 files changed, 66 insertions, 15 deletions
diff --git a/sys/dev/sbus/cgsix.c b/sys/dev/sbus/cgsix.c
index cadf9ee1141..3e3646ea4cf 100644
--- a/sys/dev/sbus/cgsix.c
+++ b/sys/dev/sbus/cgsix.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cgsix.c,v 1.24 2002/07/26 15:49:56 jason Exp $ */
+/* $OpenBSD: cgsix.c,v 1.25 2002/07/30 18:07:02 jason Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
@@ -240,13 +240,16 @@ cgsixattach(parent, self, aux)
rasops_init(&sc->sc_rasops,
a2int(getpropstring(optionsnode, "screen-#rows"), 34),
a2int(getpropstring(optionsnode, "screen-#columns"), 80));
- sc->sc_rasops.ri_hw = sc;
- sc->sc_rasops.ri_ops.copyrows = cgsix_ras_copyrows;
- sc->sc_rasops.ri_ops.copycols = cgsix_ras_copycols;
- sc->sc_rasops.ri_ops.eraserows = cgsix_ras_eraserows;
- sc->sc_rasops.ri_ops.erasecols = cgsix_ras_erasecols;
- sc->sc_rasops.ri_do_cursor = cgsix_ras_do_cursor;
- cgsix_ras_init(sc);
+
+ if ((sc->sc_dev.dv_cfdata->cf_flags & CG6_CFFLAG_NOACCEL) == 0) {
+ sc->sc_rasops.ri_hw = sc;
+ sc->sc_rasops.ri_ops.copyrows = cgsix_ras_copyrows;
+ sc->sc_rasops.ri_ops.copycols = cgsix_ras_copycols;
+ sc->sc_rasops.ri_ops.eraserows = cgsix_ras_eraserows;
+ sc->sc_rasops.ri_ops.erasecols = cgsix_ras_erasecols;
+ sc->sc_rasops.ri_do_cursor = cgsix_ras_do_cursor;
+ cgsix_ras_init(sc);
+ }
cgsix_stdscreen.nrows = sc->sc_rasops.ri_rows;
cgsix_stdscreen.ncols = sc->sc_rasops.ri_cols;
@@ -321,6 +324,9 @@ cgsix_ioctl(v, cmd, data, flags, p)
case WSDISPLAYIO_GTYPE:
*(u_int *)data = WSDISPLAY_TYPE_UNKNOWN;
break;
+ case WSDISPLAYIO_SMODE:
+ sc->sc_mode = *(u_int *)data;
+ break;
case WSDISPLAYIO_GINFO:
wdf = (void *)data;
wdf->height = sc->sc_height;
@@ -404,6 +410,12 @@ cgsix_show_screen(v, cookie, waitok, cb, cbarg)
return (0);
}
+struct mmo {
+ off_t mo_uaddr;
+ bus_size_t mo_size;
+ bus_size_t mo_physoff;
+};
+
paddr_t
cgsix_mmap(v, off, prot)
void *v;
@@ -411,14 +423,51 @@ cgsix_mmap(v, off, prot)
int prot;
{
struct cgsix_softc *sc = v;
-
- if (off & PGOFSET)
+ struct mmo *mo;
+ bus_addr_t u;
+ bus_size_t sz;
+
+ static struct mmo mmo[] = {
+ { CG6_USER_RAM, 0, CGSIX_VID_OFFSET },
+
+ /* do not actually know how big most of these are! */
+ { CG6_USER_FBC, 1, CGSIX_FBC_OFFSET },
+ { CG6_USER_TEC, 1, CGSIX_TEC_OFFSET },
+ { CG6_USER_BTREGS, 8192 /* XXX */, CGSIX_BT_OFFSET },
+ { CG6_USER_FHC, 1, CGSIX_FHC_OFFSET },
+ { CG6_USER_THC, CGSIX_THC_SIZE, CGSIX_THC_OFFSET },
+ { CG6_USER_ROM, 65536, CGSIX_ROM_OFFSET },
+ { CG6_USER_DHC, 1, CGSIX_DHC_OFFSET },
+ };
+#define NMMO (sizeof mmo / sizeof *mmo)
+
+ if (off & PGOFSET || off < 0)
return (-1);
- /* Allow mapping as a dumb framebuffer from offset 0 */
- if (off >= 0 && off < (sc->sc_linebytes * sc->sc_height))
- return (bus_space_mmap(sc->sc_bustag, sc->sc_paddr,
- off + CGSIX_VID_OFFSET, prot, BUS_SPACE_MAP_LINEAR));
+ switch (sc->sc_mode) {
+ case WSDISPLAYIO_MODE_MAPPED:
+ for (mo = mmo; mo < &mmo[NMMO]; mo++) {
+ if (off < mo->mo_uaddr)
+ continue;
+ u = off - mo->mo_uaddr;
+ sz = mo->mo_size ? mo->mo_size :
+ sc->sc_linebytes * sc->sc_height;
+ if (u < sz) {
+ return (bus_space_mmap(sc->sc_bustag,
+ sc->sc_paddr, u + mo->mo_physoff,
+ prot, BUS_SPACE_MAP_LINEAR));
+ }
+ }
+ break;
+
+ case WSDISPLAYIO_MODE_DUMBFB:
+ /* Allow mapping as a dumb framebuffer from offset 0 */
+ if (off >= 0 && off < (sc->sc_linebytes * sc->sc_height))
+ return (bus_space_mmap(sc->sc_bustag, sc->sc_paddr,
+ off + CGSIX_VID_OFFSET, prot,
+ BUS_SPACE_MAP_LINEAR));
+ break;
+ }
return (-1);
}
diff --git a/sys/dev/sbus/cgsixreg.h b/sys/dev/sbus/cgsixreg.h
index aa6fa6f3b5f..31478041dfa 100644
--- a/sys/dev/sbus/cgsixreg.h
+++ b/sys/dev/sbus/cgsixreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cgsixreg.h,v 1.1 2002/07/26 15:49:56 jason Exp $ */
+/* $OpenBSD: cgsixreg.h,v 1.2 2002/07/30 18:07:02 jason Exp $ */
/*
* Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -220,6 +220,7 @@ struct cgsix_softc {
int sc_width, sc_height, sc_depth, sc_linebytes;
union bt_cmap sc_cmap;
void *sc_ih;
+ u_int sc_mode;
};
#define CG6_USER_FBC 0x70000000
@@ -270,3 +271,4 @@ struct cgsix_softc {
#define CG6_DRAIN(sc) \
while (FBC_READ(sc, CG6_FBC_S) & FBC_S_GXINPROGRESS)
+#define CG6_CFFLAG_NOACCEL 0x1 /* disable console acceleration */