/* $XFree86: xc/programs/Xserver/hw/xfree86/vga16/ibm/ppcIO.c,v 3.7.2.1 1998/02/01 16:04:58 robin Exp $ */ /* Copyright (c) 1990 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. Copyright IBM Corporation 1987,1988,1989 All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of IBM not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* $XConsortium: ppcIO.c /main/8 1996/02/21 17:57:49 kaleb $ */ #include "X.h" #include "resource.h" #include "scrnintstr.h" #include "servermd.h" /* GJA */ #include "mi.h" /* GJA */ #include "compiler.h" /* rvb */ #include "vgaVideo.h" #include "ibmTrace.h" #include "windowstr.h" #include "ppc.h" #include "mistruct.h" #include "mi.h" extern Bool xf86FlipPixels; #define XF86FLIP_PIXELS() \ if (xf86FlipPixels) { \ pScreen->whitePixel = (pScreen->whitePixel) ? 0 : 1; \ pScreen->blackPixel = (pScreen->blackPixel) ? 0 : 1; \ } extern ScreenRec vgaScreenRec ; /* Forward Declaration Here */ VisualRec vgaVisuals[] = { /* StaticColor needs to be first so is can be used as the default */ /* vid class bpRGB cmpE nplan rMask gMask bMask oRed oGreen oBlue */ #ifdef PC98 { 0, StaticColor, 4, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, { 0, StaticGray, 4, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, { 0, GrayScale, 4, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, { 0, PseudoColor, 4, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, #else { 0, StaticColor, 6, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, { 0, StaticGray, 6, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, { 0, GrayScale, 6, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, { 0, PseudoColor, 6, 1 << VGA_MAXPLANES, VGA_MAXPLANES, 0, 0, 0, 0, 0, 0 }, #endif } ; #define NUM_VISUALS (sizeof vgaVisuals/sizeof (VisualRec)) unsigned long int vgaDepthVIDs[NUM_VISUALS]; DepthRec vgaDepths[] = { /* depth numVid vids */ { 1, 0, NULL }, { VGA_MAXPLANES, NUM_VISUALS, vgaDepthVIDs } } ; #define NUM_DEPTHS (sizeof vgaDepths/sizeof (DepthRec)) NeverCalled() { ErrorF("NeverCalled was nevertheless called\n"); abort(); } miBSFuncRec ppcBSFuncRec = { ppcSaveAreas, ppcRestoreAreas, (void (*)()) 0, (PixmapPtr (*)()) 0, (PixmapPtr (*)()) 0, }; /*ARGSUSED*/ Bool vgaScreenClose( index, pScreen ) int index; ScreenPtr pScreen; { pScreen->defColormap = 0 ; return TRUE; } GCPtr sampleGCperDepth[MAXFORMATS+1] = { 0 }; PixmapPtr samplePixmapPerDepth[1] = { 0 }; /* GJA -- Took this from miscrinit.c. * We want that devKind contains the distance in bytes between two scanlines. * The computation that mi does is not appropriate for planar VGA. * Therefore we provide here our own routine. */ /* GJA -- WARNING: this is an internal structure declaration, taken from * miscrinit.c */ typedef struct { pointer pbits; /* pointer to framebuffer */ int width; /* delta to add to a framebuffer addr to move one row down */ } miScreenInitParmsRec, *miScreenInitParmsPtr; /* With the introduction of pixmap privates, the "screen pixmap" can no * longer be created in miScreenInit, since all the modules that could * possibly ask for pixmap private space have not been initialized at * that time. pScreen->CreateScreenResources is called after all * possible private-requesting modules have been inited; we create the * screen pixmap here. */ Bool v16CreateScreenResources(pScreen) ScreenPtr pScreen; { miScreenInitParmsPtr pScrInitParms; pointer value; pScrInitParms = (miScreenInitParmsPtr)pScreen->devPrivate; /* if width is non-zero, pScreen->devPrivate will be a pixmap * else it will just take the value pbits */ if (pScrInitParms->width) { PixmapPtr pPixmap; /* create a pixmap with no data, then redirect it to point to * the screen */ pPixmap = (*pScreen->CreatePixmap)(pScreen, 0, 0, pScreen->rootDepth); if (!pPixmap) return FALSE; if (!(*pScreen->ModifyPixmapHeader)(pPixmap, pScreen->width, pScreen->height, pScreen->rootDepth, 8 /* bits per pixel */, /* GJA: was PixmapBytePad(pScrInitParms->width, pScreen->rootDepth), */ #define BITS_PER_BYTE_SHIFT 3 pScrInitParms->width >> BITS_PER_BYTE_SHIFT, pScrInitParms->pbits)) return FALSE; value = (pointer)pPixmap; } else { value = pScrInitParms->pbits; } xfree(pScreen->devPrivate); /* freeing miScreenInitParmsRec */ pScreen->devPrivate = value; /* pPixmap or pbits */ return TRUE; } void Init16Output( pScreen, pbits, virtx, virty, dpix, dpiy, width ) ScreenPtr pScreen; pointer pbits; /* We assume that this is equal to vgaBase */ int virtx, virty; int dpix, dpiy; int width; { extern int defaultColorVisualClass; int defvisual,i; switch ( defaultColorVisualClass ) { case StaticColor: case PseudoColor: case StaticGray: case GrayScale: defvisual = defaultColorVisualClass; break; case TrueColor: case DirectColor: ErrorF("(!!) VGA16: Visual Class %d is not supported, using StaticColor.\n", defaultColorVisualClass ); default: defvisual = StaticColor; } /* Initialize the list of vids used for depth 4 */ for(i=0; i id = 0; pScreen->defColormap = FakeClientID(0); pScreen-> whitePixel = VGA_WHITE_PIXEL; pScreen-> blackPixel = VGA_BLACK_PIXEL; XF86FLIP_PIXELS(); pScreen-> rgf = 0; *(pScreen-> GCperDepth) = *(sampleGCperDepth); *(pScreen-> PixmapPerDepth) = *(samplePixmapPerDepth); pScreen-> CloseScreen = vgaScreenClose; pScreen-> QueryBestSize = ppcQueryBestSize; pScreen-> GetImage = ppcGetImage; pScreen-> GetSpans = ppcGetSpans; pScreen-> CreateWindow = ppcCreateWindowForXYhardware; pScreen-> DestroyWindow = ppcDestroyWindow; pScreen-> PositionWindow = ppcPositionWindow; pScreen-> ChangeWindowAttributes = mfbChangeWindowAttributes; pScreen-> RealizeWindow = mfbMapWindow; pScreen-> UnrealizeWindow = mfbUnmapWindow; pScreen-> PaintWindowBackground = ppcPaintWindow; pScreen-> PaintWindowBorder = ppcPaintWindow; pScreen-> CopyWindow = ppcCopyWindow; pScreen-> CreatePixmap = ppcCreatePixmap; pScreen-> DestroyPixmap = mfbDestroyPixmap; pScreen-> SaveDoomedAreas = (SaveDoomedAreasProcPtr)NoopDDA; pScreen-> RestoreAreas = (RegionPtr(*)())ppcRestoreAreas; pScreen-> ExposeCopy = (ExposeCopyProcPtr)NoopDDA; pScreen-> TranslateBackingStore = (RegionPtr(*)())NoopDDA; pScreen-> ClearBackingStore = (RegionPtr(*)())NoopDDA; pScreen-> DrawGuarantee = (DrawGuaranteeProcPtr)NoopDDA; pScreen-> RealizeFont = mfbRealizeFont; pScreen-> UnrealizeFont = mfbUnrealizeFont; pScreen-> CreateGC = ppcCreateGC; pScreen-> CreateColormap = (Bool (*)())vga16InitializeColormap; pScreen-> DestroyColormap = (void (*)())NoopDDA; pScreen-> ResolveColor = vga16ResolveColor; pScreen-> BitmapToRegion = mfbPixmapToRegion; if (!mfbAllocatePrivates(pScreen, (int*)NULL, (int*)NULL)) return ; miScreenInit(pScreen, pbits, virtx, virty, 75, 75, width, VGA_MAXPLANES, NUM_DEPTHS, vgaDepths, defvisual /* See above */, NUM_VISUALS, vgaVisuals, &ppcBSFuncRec); /* GJA -- Now we override the supplied default: */ pScreen -> CreateScreenResources = v16CreateScreenResources; mfbRegisterCopyPlaneProc(pScreen,miCopyPlane); /* GJA -- R4->R5 */ }