#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: bw2.c,v 1.39 2024/12/21 17:40:11 tsutsui Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/proc.h>
#include <sys/tty.h>
#include <uvm/uvm_extern.h>
#include <machine/autoconf.h>
#include <machine/cpu.h>
#include <dev/sun/fbio.h>
#include <machine/idprom.h>
#include <machine/pmap.h>
#include <sun3/dev/fbvar.h>
#include <sun3/dev/bw2reg.h>
#include <sun3/dev/p4reg.h>
#include "ioconf.h"
struct bw2_softc {
device_t sc_dev;
struct fbdevice sc_fb;
int sc_phys;
int sc_ovtype;
int sc_video_on;
};
static int bw2match(device_t, cfdata_t, void *);
static void bw2attach(device_t, device_t, void *);
CFATTACH_DECL_NEW(bwtwo, sizeof(struct bw2_softc),
bw2match, bw2attach, NULL, NULL);
static dev_type_open(bw2open);
static dev_type_ioctl(bw2ioctl);
static dev_type_mmap(bw2mmap);
const struct cdevsw bwtwo_cdevsw = {
.d_open = bw2open,
.d_close = nullclose,
.d_read = noread,
.d_write = nowrite,
.d_ioctl = bw2ioctl,
.d_stop = nostop,
.d_tty = notty,
.d_poll = nopoll,
.d_mmap = bw2mmap,
.d_kqfilter = nokqfilter,
.d_discard = nodiscard,
.d_flag = 0
};
static int bw2gvideo(struct fbdevice *, void *);
static int bw2svideo(struct fbdevice *, void *);
static struct fbdriver bw2fbdriver = {
bw2open, nullclose, bw2mmap, nokqfilter,
fb_noioctl,
bw2gvideo, bw2svideo,
fb_noioctl, fb_noioctl, };
static int
bw2match(device_t parent, cfdata_t cf, void *args)
{
struct confargs *ca = args;
int mid, p4id, peekval;
void *p4reg;
if (ca->ca_paddr == -1)
return 0;
mid = cf->cf_flags & IDM_IMPL_MASK;
if (mid != 0 && (mid != (cpu_machine_id & IDM_IMPL_MASK)))
return 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 (cf->cf_flags & 0x40) {
switch (p4id) {
case P4_ID_COLOR8P1:
case P4_ID_COLOR24:
return 1;
case P4_NOTFOUND:
default:
return 0;
}
}
switch (p4id) {
case P4_ID_BW:
case P4_NOTFOUND:
return 1;
default:
#ifdef DEBUG
aprint_debug("bwtwo at 0x%lx match p4id=0x%x fails\n",
ca->ca_paddr, p4id & 0xFF);
#endif
break;
}
return 0;
}
static void
bw2attach(device_t parent, device_t self, void *args)
{
struct bw2_softc *sc = device_private(self);
struct fbdevice *fb = &sc->sc_fb;
struct confargs *ca = args;
struct fbtype *fbt;
void *p4reg;
int p4id, tmp;
int pixeloffset;
sc->sc_dev = self;
fbt = &fb->fb_fbtype;
fbt->fb_type = FBTYPE_SUN2BW;
fbt->fb_width = 1152;
fbt->fb_height = 900;
fbt->fb_depth = 1;
fbt->fb_cmsize = 0;
fbt->fb_size = BW2_FBSIZE;
fb->fb_driver = &bw2fbdriver;
fb->fb_private = sc;
fb->fb_name = device_xname(self);
fb->fb_flags = device_cfdata(self)->cf_flags;
pixeloffset = 0;
p4reg = bus_mapin(ca->ca_bustype, ca->ca_paddr, 4);
p4id = fb_pfour_id(p4reg);
if (p4id != P4_NOTFOUND)
fb->fb_pfour = p4reg;
else
bus_mapout(p4reg, 4);
switch (p4id) {
case P4_NOTFOUND:
pixeloffset = 0;
break;
case P4_ID_BW:
pixeloffset = P4_BW_OFF;
break;
default:
aprint_error("%s: bad p4id=0x%x\n", fb->fb_name, p4id);
case P4_ID_COLOR8P1:
case P4_ID_COLOR24:
sc->sc_ovtype = p4id;
pixeloffset = P4_COLOR_OFF_OVERLAY;
break;
}
sc->sc_phys = ca->ca_paddr + pixeloffset;
if (fb->fb_pfour)
fb_pfour_setsize(fb);
else if (device_unit(self) == 0)
fb_eeprom_setsize(fb);
else {
switch (cpu_machine_id) {
#ifdef _SUN3_
case ID_SUN3_60:
tmp = bus_peek(BUS_OBMEM, BW2_CR_PADDR, 1);
if ((tmp != -1) && (tmp & 0x80) == 0)
goto high_res;
break;
case ID_SUN3_260:
high_res:
fbt->fb_width = 1600;
fbt->fb_height = 1280;
fbt->fb_size = BW2_FBSIZE_HIRES;
break;
#endif
default:
break;
}
}
aprint_normal(" (%dx%d)\n", fbt->fb_width, fbt->fb_height);
tmp = 1;
bw2svideo(fb, &tmp);
fb_attach(fb, 1);
}
static int
bw2open(dev_t dev, int flags, int mode, struct lwp *l)
{
struct bw2_softc *sc;
int unit = minor(dev);
sc = device_lookup_private(&bwtwo_cd, unit);
if (sc == NULL)
return ENXIO;
return 0;
}
static int
bw2ioctl(dev_t dev, u_long cmd, void *data, int flags, struct lwp *l)
{
struct bw2_softc *sc = device_lookup_private(&bwtwo_cd, minor(dev));
return fbioctlfb(&sc->sc_fb, cmd, data);
}
static paddr_t
bw2mmap(dev_t dev, off_t off, int prot)
{
struct bw2_softc *sc = device_lookup_private(&bwtwo_cd, minor(dev));
int size = sc->sc_fb.fb_fbtype.fb_size;
if (off & PGOFSET)
panic("%s: bad offset", __func__);
if ((off < 0) || (off >= size))
return -1;
return (sc->sc_phys + off) | PMAP_NC;
}
static int
bw2gvideo(struct fbdevice *fb, void *data)
{
struct bw2_softc *sc = fb->fb_private;
int *on = data;
*on = sc->sc_video_on;
return 0;
}
static int
bw2svideo(struct fbdevice *fb, void *data)
{
struct bw2_softc *sc = fb->fb_private;
int *on = data;
if (sc->sc_video_on == *on)
return 0;
sc->sc_video_on = *on;
if (fb->fb_pfour)
fb_pfour_set_video(fb, sc->sc_video_on);
else
enable_video(sc->sc_video_on);
return 0;
}