Actually move region_alloc() and region_release() to intel_winsys.
[mesa.git] / src / mesa / drivers / dri / intel_winsys / intel_winsys_i915.c
1 /**************************************************************************
2 *
3 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
24 * of the Software.
25 *
26 *
27 **************************************************************************/
28 /*
29 * Authors: Keith Whitwell <keithw-at-tungstengraphics-dot-com>
30 */
31
32 #include <stdlib.h>
33 #include <xf86drm.h>
34 #include "dri_bufpool.h"
35 #include "dri_bufmgr.h"
36
37 #include "intel_context.h"
38 #include "intel_batchbuffer.h"
39 #include "intel_winsys.h"
40
41 #include "pipe/i915simple/i915_winsys.h"
42
43
44 struct intel_i915_winsys {
45 struct i915_winsys winsys;
46 struct intel_context *intel;
47 };
48
49
50 /* Turn a i915simple winsys into an intel/i915simple winsys:
51 */
52 static inline struct intel_i915_winsys *
53 intel_i915_winsys( struct i915_winsys *sws )
54 {
55 return (struct intel_i915_winsys *)sws;
56 }
57
58
59 /* Simple batchbuffer interface:
60 */
61
62 static unsigned *intel_i915_batch_start( struct i915_winsys *sws,
63 unsigned dwords,
64 unsigned relocs )
65 {
66 struct intel_context *intel = intel_i915_winsys(sws)->intel;
67
68 /* XXX: check relocs.
69 */
70 if (intel_batchbuffer_space( intel->batch ) >= dwords * 4) {
71 /* XXX: Hmm, the driver can't really do much with this pointer:
72 */
73 return (unsigned *)intel->batch->ptr;
74 }
75 else
76 return NULL;
77 }
78
79 static void intel_i915_batch_dword( struct i915_winsys *sws,
80 unsigned dword )
81 {
82 struct intel_context *intel = intel_i915_winsys(sws)->intel;
83 intel_batchbuffer_emit_dword( intel->batch, dword );
84 }
85
86 static void intel_i915_batch_reloc( struct i915_winsys *sws,
87 struct pipe_buffer_handle *buf,
88 unsigned access_flags,
89 unsigned delta )
90 {
91 struct intel_context *intel = intel_i915_winsys(sws)->intel;
92 unsigned flags = DRM_BO_FLAG_MEM_TT;
93 unsigned mask = DRM_BO_MASK_MEM;
94
95 if (access_flags & I915_BUFFER_ACCESS_WRITE) {
96 flags |= DRM_BO_FLAG_WRITE;
97 mask |= DRM_BO_FLAG_WRITE;
98 }
99
100 if (access_flags & I915_BUFFER_ACCESS_READ) {
101 flags |= DRM_BO_FLAG_READ;
102 mask |= DRM_BO_FLAG_READ;
103 }
104
105 intel_batchbuffer_emit_reloc( intel->batch,
106 dri_bo( buf ),
107 flags, mask,
108 delta );
109 }
110
111
112
113 static void intel_i915_batch_flush( struct i915_winsys *sws )
114 {
115 struct intel_context *intel = intel_i915_winsys(sws)->intel;
116
117 intel_batchbuffer_flush( intel->batch );
118 // if (0) intel_i915_batch_wait_idle( sws );
119 }
120
121
122
123 struct pipe_context *
124 intel_create_i915simple( struct intel_context *intel )
125 {
126 struct intel_i915_winsys *iws = CALLOC_STRUCT( intel_i915_winsys );
127
128 /* Fill in this struct with callbacks that i915simple will need to
129 * communicate with the window system, buffer manager, etc.
130 */
131 iws->winsys.batch_start = intel_i915_batch_start;
132 iws->winsys.batch_dword = intel_i915_batch_dword;
133 iws->winsys.batch_reloc = intel_i915_batch_reloc;
134 iws->winsys.batch_flush = intel_i915_batch_flush;
135 iws->intel = intel;
136
137 /* Create the i915simple context:
138 */
139 return i915_create( intel_create_pipe_winsys(intel),
140 &iws->winsys,
141 intel->intelScreen->deviceID );
142 }