bring in changes from 6.4 branch
[mesa.git] / src / glx / mini / driver.h
1 /**
2 * \file driver.h
3 * \brief DRI utility functions definitions.
4 *
5 * This module acts as glue between GLX and the actual hardware driver. A DRI
6 * driver doesn't really \e have to use any of this - it's optional. But, some
7 * useful stuff is done here that otherwise would have to be duplicated in most
8 * drivers.
9 *
10 * Basically, these utility functions take care of some of the dirty details of
11 * screen initialization, context creation, context binding, DRM setup, etc.
12 *
13 * These functions are compiled into each DRI driver so libGL.so knows nothing
14 * about them.
15 *
16 * Look for more comments in the dri_util.c file.
17 *
18 * \author Kevin E. Martin <kevin@precisioninsight.com>
19 * \author Brian Paul <brian@precisioninsight.com>
20 */
21
22 /*
23 * Copyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
24 * All Rights Reserved.
25 *
26 * Permission is hereby granted, free of charge, to any person obtaining a
27 * copy of this software and associated documentation files (the
28 * "Software"), to deal in the Software without restriction, including
29 * without limitation the rights to use, copy, modify, merge, publish,
30 * distribute, sub license, and/or sell copies of the Software, and to
31 * permit persons to whom the Software is furnished to do so, subject to
32 * the following conditions:
33 *
34 * The above copyright notice and this permission notice (including the
35 * next paragraph) shall be included in all copies or substantial portions
36 * of the Software.
37 *
38 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
39 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
40 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
41 * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
42 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
43 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
44 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45 */
46
47 #ifndef _driver_H_
48 #define _driver_H_
49
50 #define CAPI /* XXX this should be globally defined somewhere */
51
52 #include "GL/gl.h"
53 #include "GL/internal/glcore.h"
54
55 #include "drm.h"
56 #include "drm_sarea.h"
57
58 /**
59 * \brief DRIDriverContext type.
60 */
61 typedef struct DRIDriverContextRec {
62 const char *pciBusID;
63 int pciBus;
64 int pciDevice;
65 int pciFunc;
66 int chipset;
67 int bpp;
68 int cpp;
69 int agpmode;
70 int isPCI;
71
72 int colorTiling; /**< \brief color tiling is enabled */
73
74 unsigned long FBStart; /**< \brief physical address of the framebuffer */
75 unsigned long MMIOStart; /**< \brief physical address of the MMIO region */
76
77 int FBSize; /**< \brief size of the mmap'd framebuffer in bytes */
78 int MMIOSize; /**< \brief size of the mmap'd MMIO region in bytes */
79
80 void *FBAddress; /**< \brief start of the mmap'd framebuffer */
81 void *MMIOAddress; /**< \brief start of the mmap'd MMIO region */
82
83 /**
84 * \brief Client configuration details
85 *
86 * These are computed on the server and sent to clients as part of
87 * the initial handshaking.
88 */
89 struct {
90 drm_handle_t hSAREA;
91 int SAREASize;
92 drm_handle_t hFrameBuffer;
93 int fbOrigin;
94 int fbSize;
95 int fbStride;
96 int virtualWidth;
97 int virtualHeight;
98 } shared;
99
100 /**
101 * \name From DRIInfoRec
102 */
103 /*@{*/
104 int drmFD; /**< \brief DRM device file descriptor */
105 drm_sarea_t *pSAREA;
106 unsigned int serverContext; /**< \brief DRM context only active on server */
107 /*@}*/
108
109
110 /**
111 * \name Driver private
112 *
113 * Populated by __driInitFBDev()
114 */
115 /*@{*/
116 void *driverPrivate;
117 void *driverClientMsg;
118 int driverClientMsgSize;
119 /*@}*/
120 } DRIDriverContext;
121
122 /**
123 * \brief Interface to the DRI driver.
124 *
125 * This structure is retrieved from the loadable driver by the \e
126 * __driDriver symbol to access the Mini GLX specific hardware
127 * initialization and take down routines.
128 */
129 typedef struct DRIDriverRec {
130 /**
131 * \brief Validate the framebuffer device mode
132 */
133 int (*validateMode)( const DRIDriverContext *context );
134
135 /**
136 * \brief Examine mode returned by fbdev (may differ from the one
137 * requested), restore any hw regs clobbered by fbdev.
138 */
139 int (*postValidateMode)( const DRIDriverContext *context );
140
141 /**
142 * \brief Initialize the framebuffer device.
143 */
144 int (*initFBDev)( DRIDriverContext *context );
145
146 /**
147 * \brief Halt the framebuffer device.
148 */
149 void (*haltFBDev)( DRIDriverContext *context );
150
151
152 /**
153 * \brief Idle and shutdown hardware in preparation for a VT switch.
154 */
155 int (*shutdownHardware)( const DRIDriverContext *context );
156
157 /**
158 * \brief Restore hardware state after regaining the VT.
159 */
160 int (*restoreHardware)( const DRIDriverContext *context );
161
162 /**
163 * \brief Notify hardware driver of gain/loose focus. May be zero
164 * as this is of limited utility for most drivers.
165 */
166 void (*notifyFocus)( int have_focus );
167 } DRIDriver;
168
169 #endif /* _driver_H_ */