Merge branch 'mesa_7_5_branch'
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_lock.c
1 /**************************************************************************
2
3 Copyright 2000, 2001 ATI Technologies Inc., Ontario, Canada, and
4 VA Linux Systems Inc., Fremont, California.
5 Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
6
7 The Weather Channel (TM) funded Tungsten Graphics to develop the
8 initial release of the Radeon 8500 driver under the XFree86 license.
9 This notice must be preserved.
10
11 All Rights Reserved.
12
13 Permission is hereby granted, free of charge, to any person obtaining
14 a copy of this software and associated documentation files (the
15 "Software"), to deal in the Software without restriction, including
16 without limitation the rights to use, copy, modify, merge, publish,
17 distribute, sublicense, and/or sell copies of the Software, and to
18 permit persons to whom the Software is furnished to do so, subject to
19 the following conditions:
20
21 The above copyright notice and this permission notice (including the
22 next paragraph) shall be included in all copies or substantial
23 portions of the Software.
24
25 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
28 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
29 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32
33 **************************************************************************/
34
35 /*
36 * Authors:
37 * Gareth Hughes <gareth@valinux.com>
38 * Keith Whitwell <keith@tungstengraphics.com>
39 * Kevin E. Martin <martin@valinux.com>
40 */
41
42 #include "main/glheader.h"
43 #include "main/mtypes.h"
44 #include "main/colormac.h"
45 #include "dri_util.h"
46 #include "radeon_screen.h"
47 #include "radeon_common.h"
48 #include "radeon_lock.h"
49 #include "drirenderbuffer.h"
50
51 /* Update the hardware state. This is called if another context has
52 * grabbed the hardware lock, which includes the X server. This
53 * function also updates the driver's window state after the X server
54 * moves, resizes or restacks a window -- the change will be reflected
55 * in the drawable position and clip rects. Since the X server grabs
56 * the hardware lock when it changes the window state, this routine will
57 * automatically be called after such a change.
58 */
59 void radeonGetLock(radeonContextPtr rmesa, GLuint flags)
60 {
61 __DRIdrawablePrivate *const drawable = radeon_get_drawable(rmesa);
62 __DRIdrawablePrivate *const readable = radeon_get_readable(rmesa);
63 __DRIscreenPrivate *sPriv = rmesa->dri.screen;
64
65 assert(drawable != NULL);
66
67 drmGetLock(rmesa->dri.fd, rmesa->dri.hwContext, flags);
68
69 /* The window might have moved, so we might need to get new clip
70 * rects.
71 *
72 * NOTE: This releases and regrabs the hw lock to allow the X server
73 * to respond to the DRI protocol request for new drawable info.
74 * Since the hardware state depends on having the latest drawable
75 * clip rects, all state checking must be done _after_ this call.
76 */
77 DRI_VALIDATE_DRAWABLE_INFO(sPriv, drawable);
78 if (drawable != readable) {
79 DRI_VALIDATE_DRAWABLE_INFO(sPriv, readable);
80 }
81
82 if (rmesa->lastStamp != drawable->lastStamp) {
83 radeon_window_moved(rmesa);
84 rmesa->lastStamp = drawable->lastStamp;
85 }
86
87 rmesa->vtbl.get_lock(rmesa);
88
89 rmesa->lost_context = GL_TRUE;
90 }
91
92 void radeon_lock_hardware(radeonContextPtr radeon)
93 {
94 char ret = 0;
95 struct radeon_framebuffer *rfb = NULL;
96 struct radeon_renderbuffer *rrb = NULL;
97
98 if (radeon_get_drawable(radeon)) {
99 rfb = radeon_get_drawable(radeon)->driverPrivate;
100
101 if (rfb)
102 rrb = radeon_get_renderbuffer(&rfb->base,
103 rfb->base._ColorDrawBufferIndexes[0]);
104 }
105
106 if (!radeon->radeonScreen->driScreen->dri2.enabled) {
107 DRM_CAS(radeon->dri.hwLock, radeon->dri.hwContext,
108 (DRM_LOCK_HELD | radeon->dri.hwContext), ret );
109 if (ret)
110 radeonGetLock(radeon, 0);
111 }
112 }
113
114 void radeon_unlock_hardware(radeonContextPtr radeon)
115 {
116 if (!radeon->radeonScreen->driScreen->dri2.enabled) {
117 DRM_UNLOCK( radeon->dri.fd,
118 radeon->dri.hwLock,
119 radeon->dri.hwContext );
120 }
121 }