2014-11-06 13:19:51 +01:00

132 lines
5.0 KiB
C

/* $NetBSD: x68kText.c,v 1.3 2011/05/20 05:12:42 tsutsui Exp $ */
/*-------------------------------------------------------------------------
* Copyright (c) 1996 Yasushi Yamasaki
* All rights reserved.
*
* 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 Yasushi Yamasaki
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
*-----------------------------------------------------------------------*/
#include "x68k.h"
#include <mfb.h>
/* in x68kConfig.c */
X68kScreenRec *x68kGetScreenRecByType(int type);
/* in x68kFb.c */
Bool x68kSaveScreen(ScreenPtr pScreen, Bool on);
/*-------------------------------------------------------------------------
* function "x68kTextOpen" [ X68kFBProc function ]
*
* purpose: call common frame buffer opening procedure
* and enable TVRAM simultaneous access mode
* argument: (X68kScreenRec *)pPriv : X68k private screen record
* returns: (Bool): TRUE if succeeded
* FALSE otherwise
*-----------------------------------------------------------------------*/
static u_short r21;
static u_short tpal0;
static u_short tpal15;
Bool x68kTextOpen(X68kScreenRec *pPriv)
{
if( !x68kFbCommonOpen(pPriv, "/dev/grf0") )
return FALSE;
/* enable TVRAM simultaneous access mode */
r21 = pPriv->reg->crtc.r21;
pPriv->reg->crtc.r21 = 0x01f0;
/* initialize scroll registers */
pPriv->reg->crtc.r10 = pPriv->reg->crtc.r11 = 0;
tpal0 = pPriv->reg->tpal[0];
tpal15 = pPriv->reg->tpal[15];
pPriv->reg->tpal[0] = 0;
pPriv->reg->tpal[15] = 0xFFFE;
return TRUE;
}
/*-------------------------------------------------------------------------
* function "x68kTextClose" [ X68kFBProc function ]
*
* purpose: close text frame buffer
* argument: nothing
* returns: nothing
*-----------------------------------------------------------------------*/
void x68kTextClose(X68kScreenRec *pPriv)
{
pPriv->reg->crtc.r21 = r21; /* recover TVRAM mode */
pPriv->reg->tpal[0] = tpal0;
pPriv->reg->tpal[15] = tpal15;
x68kFbCommonClose(pPriv);
}
/*-------------------------------------------------------------------------
* function "x68kTextInit" [ called by DIX AddScreen ]
*
* purpose: initialize text frame buffer
* argument: (int)screen : screen index
* (ScreenPtr)pScreen : DIX screen record
* (int)argc, (char **)argv : standard C arguments
* returns: (Bool) TRUE if succeeded
* FALSE otherwise
*-----------------------------------------------------------------------*/
Bool x68kTextInit(int screen, ScreenPtr pScreen, int argc, char *argv[])
{
X68kScreenRec *pPriv;
/* get private screen record set by X68KConfig */
pPriv = x68kGetScreenRecByType(X68K_FB_TEXT);
if ( x68kGeneration != serverGeneration ) {
if ( (x68kScreenIndex = AllocateScreenPrivateIndex()) < 0 ) {
Error("AllocateScreenPrivateIndex failed" );
return FALSE;
}
x68kGeneration = serverGeneration;
}
pScreen->devPrivates[x68kScreenIndex].ptr = (pointer)pPriv;
if ( !mfbScreenInit(pScreen, pPriv->fb,
pPriv->scr_width, pPriv->scr_height,
pPriv->dpi, pPriv->dpi, pPriv->fb_width) )
return FALSE;
pScreen->whitePixel = 1;
pScreen->blackPixel = 0;
if ( !miDCInitialize(pScreen, &x68kPointerScreenFuncs) )
return FALSE;
if ( !mfbCreateDefColormap(pScreen) )
return FALSE;
pScreen->SaveScreen = x68kSaveScreen;
return TRUE;
}
/* EOF x68kText.c */