2014-07-25 12:10:31 +04:00
|
|
|
/* $NetBSD: bw2.c,v 1.36 2014/07/25 08:10:35 dholland 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.
|
|
|
|
*
|
|
|
|
* @(#)bwtwo.c 8.1 (Berkeley) 6/11/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* black&white display (bw2) driver.
|
|
|
|
*
|
|
|
|
* Does not handle interrupts, even though they can occur.
|
|
|
|
*/
|
|
|
|
|
2003-07-15 06:54:31 +04:00
|
|
|
#include <sys/cdefs.h>
|
2014-07-25 12:10:31 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: bw2.c,v 1.36 2014/07/25 08:10:35 dholland Exp $");
|
2003-07-15 06:54:31 +04:00
|
|
|
|
1995-03-10 04:50:28 +03:00
|
|
|
#include <sys/param.h>
|
1996-12-18 00:10:35 +03:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/conf.h>
|
1995-03-10 04:50:28 +03:00
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#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:37:18 +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/bw2reg.h>
|
|
|
|
#include <sun3/dev/p4reg.h>
|
1995-03-10 04:50:28 +03:00
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
#include "ioconf.h"
|
|
|
|
|
1995-03-10 04:50:28 +03:00
|
|
|
/* per-display variables */
|
|
|
|
struct bw2_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 */
|
|
|
|
int sc_phys; /* display RAM (phys addr) */
|
1998-02-05 07:56:24 +03:00
|
|
|
/* If using overlay plane of something, it is... */
|
|
|
|
int sc_ovtype; /* ... this type. */
|
|
|
|
int sc_video_on;
|
1995-03-10 04:50:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/* autoconfiguration driver */
|
2008-06-28 16:13:38 +04:00
|
|
|
static int bw2match(device_t, cfdata_t, void *);
|
|
|
|
static void bw2attach(device_t, device_t, void *);
|
1995-03-10 04:50:28 +03:00
|
|
|
|
2008-06-28 16:13:38 +04:00
|
|
|
CFATTACH_DECL_NEW(bwtwo, sizeof(struct bw2_softc),
|
2002-10-02 20:02:08 +04:00
|
|
|
bw2match, bw2attach, NULL, NULL);
|
1996-03-17 05:00:30 +03:00
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
dev_type_open(bw2open);
|
|
|
|
dev_type_ioctl(bw2ioctl);
|
|
|
|
dev_type_mmap(bw2mmap);
|
|
|
|
|
|
|
|
const struct cdevsw bwtwo_cdevsw = {
|
2014-03-16 09:20:22 +04:00
|
|
|
.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,
|
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
|
|
|
};
|
|
|
|
|
1995-03-10 04:50:28 +03:00
|
|
|
/* XXX we do not handle frame buffer interrupts */
|
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static int bw2gvideo(struct fbdevice *, void *);
|
|
|
|
static int bw2svideo(struct fbdevice *, void *);
|
1995-03-10 04:50:28 +03:00
|
|
|
|
|
|
|
static struct fbdriver bw2fbdriver = {
|
2002-10-23 13:10:23 +04:00
|
|
|
bw2open, nullclose, bw2mmap, nokqfilter,
|
1996-12-18 00:10:35 +03:00
|
|
|
fb_noioctl,
|
1995-03-10 04:50:28 +03:00
|
|
|
bw2gvideo, bw2svideo,
|
1996-12-18 00:10:35 +03:00
|
|
|
fb_noioctl, fb_noioctl, };
|
1995-03-10 04:50:28 +03:00
|
|
|
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
2008-06-28 16:13:38 +04:00
|
|
|
bw2match(device_t parent, cfdata_t cf, void *args)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
|
|
|
struct confargs *ca = args;
|
1998-02-08 08:22:08 +03:00
|
|
|
int mid, p4id, peekval;
|
|
|
|
void *p4reg;
|
|
|
|
|
|
|
|
/* No default address support. */
|
|
|
|
if (ca->ca_paddr == -1)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
|
|
|
/*
|
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.
|
1995-03-10 04:50:28 +03:00
|
|
|
*/
|
1998-02-08 08:22:08 +03:00
|
|
|
mid = cf->cf_flags & IDM_IMPL_MASK;
|
2008-06-28 16:13:38 +04:00
|
|
|
if (mid != 0 && (mid != (cpu_machine_id & IDM_IMPL_MASK)))
|
|
|
|
return 0;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
/*
|
|
|
|
* Make sure something is there, and if so,
|
|
|
|
* see if it looks like a P4 register.
|
|
|
|
*/
|
|
|
|
p4reg = bus_tmapin(ca->ca_bustype, ca->ca_paddr);
|
|
|
|
peekval = peek_long(p4reg);
|
2008-06-28 16:13:38 +04:00
|
|
|
p4id = (peekval == -1) ? P4_NOTFOUND : fb_pfour_id(p4reg);
|
1998-02-08 08:22:08 +03:00
|
|
|
bus_tmapout(p4reg);
|
|
|
|
if (peekval == -1)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-02-08 08:22:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The config flag 0x40 if set means we should match
|
|
|
|
* only on a CG? overlay plane. We can use only the
|
|
|
|
* CG4 and CG8, which both have a P4 register.
|
|
|
|
*/
|
|
|
|
if (cf->cf_flags & 0x40) {
|
|
|
|
switch (p4id) {
|
|
|
|
case P4_ID_COLOR8P1:
|
|
|
|
case P4_ID_COLOR24:
|
2008-06-28 16:13:38 +04:00
|
|
|
return 1;
|
1998-02-08 08:22:08 +03:00
|
|
|
case P4_NOTFOUND:
|
|
|
|
default:
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-02-08 08:22:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OK, we are expecting a plain old BW2, and
|
|
|
|
* there may or may not be a P4 register.
|
|
|
|
*/
|
|
|
|
switch (p4id) {
|
|
|
|
case P4_ID_BW:
|
|
|
|
case P4_NOTFOUND:
|
2008-06-28 16:13:38 +04:00
|
|
|
return 1;
|
1998-02-08 08:22:08 +03:00
|
|
|
default:
|
|
|
|
#ifdef DEBUG
|
2008-06-28 16:13:38 +04:00
|
|
|
aprint_debug("bwtwo at 0x%lx match p4id=0x%x fails\n",
|
|
|
|
ca->ca_paddr, p4id & 0xFF);
|
1998-02-05 07:56:24 +03:00
|
|
|
#endif
|
2002-05-31 02:19:11 +04:00
|
|
|
break;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
bw2attach(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 bw2_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-02-08 08:22:08 +03:00
|
|
|
void *p4reg;
|
|
|
|
int p4id, tmp;
|
|
|
|
int pixeloffset; /* offset to framebuffer */
|
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_SUN2BW;
|
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 = 1;
|
|
|
|
fbt->fb_cmsize = 0;
|
1998-02-05 07:56:24 +03:00
|
|
|
fbt->fb_size = BW2_FBSIZE; /* default - see below */
|
|
|
|
fb->fb_driver = &bw2fbdriver;
|
|
|
|
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
|
|
|
|
|
|
|
/* Set up default pixel offset. May be changed below. */
|
|
|
|
pixeloffset = 0;
|
|
|
|
|
|
|
|
/* Does it have a P4 register? */
|
|
|
|
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;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
case P4_ID_BW:
|
|
|
|
pixeloffset = P4_BW_OFF;
|
1997-02-19 03:22:40 +03:00
|
|
|
break;
|
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
default:
|
2008-06-28 16:13:38 +04:00
|
|
|
aprint_error("%s: bad p4id=0x%x\n", fb->fb_name, p4id);
|
1998-02-08 08:22:08 +03:00
|
|
|
/* Must be some kinda color... */
|
2008-06-28 16:13:38 +04:00
|
|
|
/* FALLTHROUGH */
|
1998-02-08 08:22:08 +03:00
|
|
|
case P4_ID_COLOR8P1:
|
|
|
|
case P4_ID_COLOR24:
|
|
|
|
sc->sc_ovtype = p4id;
|
|
|
|
pixeloffset = P4_COLOR_OFF_OVERLAY;
|
1997-02-19 03:22:40 +03:00
|
|
|
break;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
1998-02-08 08:22:08 +03:00
|
|
|
sc->sc_phys = ca->ca_paddr + pixeloffset;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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) {
|
|
|
|
#ifdef _SUN3_
|
2005-06-20 00:00:28 +04:00
|
|
|
case ID_SUN3_60:
|
1998-02-08 08:22:08 +03:00
|
|
|
/*
|
|
|
|
* Only the model 60 can have hi-res.
|
|
|
|
* Look at the "resolution" jumper.
|
|
|
|
*/
|
|
|
|
tmp = bus_peek(BUS_OBMEM, BW2_CR_PADDR, 1);
|
|
|
|
if ((tmp != -1) && (tmp & 0x80) == 0)
|
|
|
|
goto high_res;
|
|
|
|
break;
|
|
|
|
|
2005-06-20 00:00:28 +04:00
|
|
|
case ID_SUN3_260:
|
1998-02-08 08:22:08 +03:00
|
|
|
/* The Sun3/260 is ALWAYS high-resolution! */
|
|
|
|
/* fall through */
|
|
|
|
high_res:
|
|
|
|
fbt->fb_width = 1600;
|
|
|
|
fbt->fb_height = 1280;
|
|
|
|
fbt->fb_size = BW2_FBSIZE_HIRES;
|
|
|
|
break;
|
1998-02-05 07:56:24 +03:00
|
|
|
#endif /* SUN3 */
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
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. */
|
|
|
|
tmp = 1;
|
|
|
|
bw2svideo(fb, &tmp);
|
|
|
|
|
|
|
|
/* Let /dev/fb know we are here. */
|
1995-04-07 06:37:18 +04:00
|
|
|
fb_attach(fb, 1);
|
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
|
|
|
bw2open(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 bw2_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(&bwtwo_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
|
|
|
bw2ioctl(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 bw2_softc *sc = device_lookup_private(&bwtwo_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.
|
|
|
|
*/
|
2005-01-22 18:36:09 +03:00
|
|
|
paddr_t
|
|
|
|
bw2mmap(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 bw2_softc *sc = device_lookup_private(&bwtwo_cd, minor(dev));
|
1998-02-08 08:22:08 +03:00
|
|
|
int size = sc->sc_fb.fb_fbtype.fb_size;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
|
|
|
if (off & PGOFSET)
|
2008-06-28 16:13:38 +04:00
|
|
|
panic("%s: bad offset", __func__);
|
1998-02-08 08:22:08 +03:00
|
|
|
|
|
|
|
if ((off < 0) || (off >= size))
|
2008-06-28 16:13:38 +04:00
|
|
|
return -1;
|
1998-02-08 08:22:08 +03: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 (sc->sc_phys + off) | PMAP_NC;
|
1995-03-10 04:50:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* FBIOGVIDEO: */
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
|
|
|
bw2gvideo(struct fbdevice *fb, void *data)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
1998-02-05 07:56:24 +03:00
|
|
|
struct bw2_softc *sc = fb->fb_private;
|
1996-12-18 00:10:35 +03:00
|
|
|
int *on = data;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-02-05 07:56:24 +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
|
|
|
}
|
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
/* FBIOSVIDEO: */
|
2005-01-22 18:36:09 +03:00
|
|
|
static int
|
|
|
|
bw2svideo(struct fbdevice *fb, void *data)
|
1995-03-10 04:50:28 +03:00
|
|
|
{
|
1998-02-05 07:56:24 +03:00
|
|
|
struct bw2_softc *sc = fb->fb_private;
|
1996-12-18 00:10:35 +03:00
|
|
|
int *on = data;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-02-05 07:56:24 +03:00
|
|
|
if (sc->sc_video_on == *on)
|
2008-06-28 16:13:38 +04:00
|
|
|
return 0;
|
1998-02-05 07:56:24 +03:00
|
|
|
sc->sc_video_on = *on;
|
1995-03-10 04:50:28 +03:00
|
|
|
|
1998-02-08 08:22:08 +03:00
|
|
|
if (fb->fb_pfour)
|
|
|
|
fb_pfour_set_video(fb, sc->sc_video_on);
|
|
|
|
else
|
|
|
|
enable_video(sc->sc_video_on);
|
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
|
|
|
}
|