tcx.h revision e4da13ee
1/* 2 * TCX framebuffer - defines. 3 * 4 * Copyright (C) 2000 Jakub Jelinek (jakub@redhat.com) 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 * copies of the Software, and to permit persons to whom the Software is 11 * furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * JAKUB JELINEK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 */ 23/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suntcx/tcx.h,v 1.1 2000/06/30 17:15:16 dawes Exp $ */ 24 25#ifndef TCX_H 26#define TCX_H 27 28#include "xf86.h" 29#include "xf86_OSproc.h" 30#include "xf86RamDac.h" 31#include <X11/Xmd.h> 32#include "gcstruct.h" 33#include "xf86sbusBus.h" 34#include "tcx_regs.h" 35 36/* Various offsets in virtual (ie. mmap()) spaces Linux and Solaris support. */ 37#define TCX_RAM8_VOFF 0x00000000 38#define TCX_RAM24_VOFF 0x01000000 39#define TCX_CPLANE_VOFF 0x28000000 40#define TCX_TEC_VOFF 0x70000000 41#define TCX_BTREGS_VOFF 0x70002000 42#define TCX_THC_VOFF 0x70004000 43#define TCX_DHC_VOFF 0x70008000 44#define TCX_ALT_VOFF 0x7000a000 45#define TCX_SYNC_VOFF 0x7000e000 46 47typedef struct { 48 unsigned char *fb; 49 int width; 50 int height; 51 unsigned int *cplane; 52 TcxThcPtr thc; 53 sbusDevicePtr psdp; 54 CloseScreenProcPtr CloseScreen; 55 Bool HWCursor; 56 xf86CursorInfoPtr CursorInfoRec; 57 unsigned int CursorXY; 58 int CursorBg, CursorFg; 59 Bool CursorEnabled; 60 unsigned char CursorShiftX, CursorShiftY; 61 unsigned char *CursorData; 62 OptionInfoPtr Options; 63} TcxRec, *TcxPtr; 64 65#define TCX_CPLANE_MODE 0x03000000 66 67#define GET_TCX_FROM_SCRN(p) ((TcxPtr)((p)->driverPrivate)) 68 69#endif /* TCX_H */ 70