Merge branch 'mesa_7_6_branch' of git+ssh://agd5f@git.freedesktop.org/git/mesa/mesa
[mesa.git] / src / gallium / state_trackers / xorg / xorg_tracker.h
1 /*
2 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 *
26 * Author: Alan Hourihane <alanh@tungstengraphics.com>
27 * Author: Jakob Bornecrantz <wallbraker@gmail.com>
28 *
29 */
30
31 #ifndef _XORG_TRACKER_H_
32 #define _XORG_TRACKER_H_
33
34 #include <stddef.h>
35 #include <stdint.h>
36 #include <errno.h>
37 #include <drm.h>
38 #include <xf86drm.h>
39 #include <xf86drmMode.h>
40 #include <xorg-server.h>
41 #include <xf86.h>
42 #include "xf86Crtc.h"
43 #include <exa.h>
44
45 #ifdef DRM_MODE_FEATURE_DIRTYFB
46 #include <damage.h>
47 #endif
48
49 #include "pipe/p_screen.h"
50 #include "state_tracker/drm_api.h"
51
52 #define DRV_ERROR(msg) xf86DrvMsg(pScrn->scrnIndex, X_ERROR, msg);
53
54 struct exa_context;
55
56 typedef struct
57 {
58 int lastInstance;
59 int refCount;
60 ScrnInfoPtr pScrn_1;
61 ScrnInfoPtr pScrn_2;
62 } EntRec, *EntPtr;
63
64 typedef struct _modesettingRec
65 {
66 /* drm */
67 int fd;
68 unsigned fb_id;
69
70 /* X */
71 EntPtr entityPrivate;
72
73 int Chipset;
74 EntityInfoPtr pEnt;
75 struct pci_device *PciInfo;
76
77 Bool noAccel;
78 Bool SWCursor;
79 CloseScreenProcPtr CloseScreen;
80
81 /* Broken-out options. */
82 OptionInfoPtr Options;
83
84 unsigned int SaveGeneration;
85
86 void (*blockHandler)(int, pointer, pointer, pointer);
87 CreateScreenResourcesProcPtr createScreenResources;
88
89 /* gallium */
90 struct drm_api *api;
91 struct pipe_screen *screen;
92 struct pipe_context *ctx;
93 boolean d_depth_bits_last;
94 boolean ds_depth_bits_last;
95
96 /* exa */
97 struct exa_context *exa;
98 Bool noEvict;
99 Bool debug_fallback;
100
101 #ifdef DRM_MODE_FEATURE_DIRTYFB
102 DamagePtr damage;
103 #endif
104 } modesettingRec, *modesettingPtr;
105
106 #define modesettingPTR(p) ((modesettingPtr)((p)->driverPrivate))
107
108
109 /***********************************************************************
110 * xorg_exa.c
111 */
112 struct pipe_texture *
113 xorg_exa_get_texture(PixmapPtr pPixmap);
114
115 unsigned
116 xorg_exa_get_pixmap_handle(PixmapPtr pPixmap, unsigned *stride);
117
118 int
119 xorg_exa_set_displayed_usage(PixmapPtr pPixmap);
120
121 int
122 xorg_exa_set_shared_usage(PixmapPtr pPixmap);
123
124 void *
125 xorg_exa_init(ScrnInfoPtr pScrn);
126
127 void
128 xorg_exa_close(ScrnInfoPtr pScrn);
129
130
131 /***********************************************************************
132 * xorg_dri2.c
133 */
134 Bool
135 driScreenInit(ScreenPtr pScreen);
136
137 void
138 driCloseScreen(ScreenPtr pScreen);
139
140
141 /***********************************************************************
142 * xorg_crtc.c
143 */
144 void
145 crtc_init(ScrnInfoPtr pScrn);
146
147 void
148 crtc_cursor_destroy(xf86CrtcPtr crtc);
149
150
151 /***********************************************************************
152 * xorg_output.c
153 */
154 void
155 output_init(ScrnInfoPtr pScrn);
156
157 /***********************************************************************
158 * xorg_xv.c
159 */
160 void
161 xorg_init_video(ScreenPtr pScreen);
162
163
164 #endif /* _XORG_TRACKER_H_ */