Ps3GpuTransferData cannot handle negative X and Y copy directions, fallback to softwa...
[ps3freebsd_xf86_video_ps3gpu.git] / src / ps3gpu.h
blob115e3229f804555ce429d436a9bc47c7959997f3
1 /*-
2 * Copyright (C) 2011 glevand <geoffrey.levand@mail.ru>
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer,
10 * without modification, immediately at the beginning of the file.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 * $FreeBSD$
29 #ifndef _PS3GPU_H
30 #define _PS3GPU_H
32 #ifdef DEBUG
33 #define DPRINTF(pScrn, ...) xf86DrvMsg((pScrn)->scrnIndex, X_INFO, ##__VA_ARGS__)
34 #else
35 #define DPRINTF(pScrn, ...)
36 #endif
38 typedef struct {
39 EntityInfoPtr pEnt;
40 OptionInfoPtr options;
41 CloseScreenProcPtr closeScreen;
43 Bool shadowFB;
44 Bool swCursor;
45 Bool noAccel;
47 int fd;
48 int gpuContextId;
49 unsigned long gpuControlHandle;
50 int gpuControlSize;
52 unsigned long fbHandle;
53 unsigned int fbGpuAddress;
54 pointer* fbBase;
55 int fbSize;
57 unsigned long cursorHandle;
58 pointer* cursorBase;
59 int cursorSize;
60 Bool cursorShow;
61 int cursorWidth;
62 int cursorHeight;
63 CARD32 cursorBgColor;
64 CARD32 cursorFgColor;
65 xf86CursorInfoPtr cursorInfo;
67 pointer *controlBase;
68 unsigned long fifoHandle;
69 unsigned int fifoGpuAddress;
70 pointer *fifoBase;
71 int fifoSize;
72 int fifoMaxSlots;
73 int fifoPutSlot;
74 int fifoCurrentSlot;
75 int fifoFreeSlots;
76 unsigned long gartHandle;
77 unsigned int gartGpuAddress;
78 pointer *gartBase;
79 int gartSize;
80 int copyDx;
81 int copyDy;
82 PixmapPtr pCopySrcPixmap;
83 ExaDriverPtr exaDriver;
84 } Ps3GpuRec, *Ps3GpuPtr;
86 #define PS3GPUPTR(p) ((Ps3GpuPtr) (p)->driverPrivate)
88 #endif /* _PS3GPU_H */