pb_buffer.h revision 93ff702b4f1c6016e249c4d326e71cdc4932f57c
1/**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28/**
29 * \file
30 * Generic code for buffers.
31 *
32 * Behind a pipe buffle handle there can be DMA buffers, client (or user)
33 * buffers, regular malloced buffers, etc. This file provides an abstract base
34 * buffer handle that allows the driver to cope with all those kinds of buffers
35 * in a more flexible way.
36 *
37 * There is no obligation of a winsys driver to use this library. And a pipe
38 * driver should be completly agnostic about it.
39 *
40 * \author Jos� Fonseca <jrfonseca@tungstengraphics.com>
41 */
42
43#ifndef PB_BUFFER_H_
44#define PB_BUFFER_H_
45
46
47#include "pipe/p_compiler.h"
48#include "pipe/p_debug.h"
49#include "pipe/p_state.h"
50#include "pipe/p_inlines.h"
51
52
53#ifdef __cplusplus
54extern "C" {
55#endif
56
57
58struct pb_vtbl;
59
60/**
61 * Buffer description.
62 *
63 * Used when allocating the buffer.
64 */
65struct pb_desc
66{
67   unsigned alignment;
68   unsigned usage;
69};
70
71
72/**
73 * Base class for all pb_* buffers.
74 */
75struct pb_buffer
76{
77   struct pipe_buffer base;
78
79   /**
80    * Pointer to the virtual function table.
81    *
82    * Avoid accessing this table directly. Use the inline functions below
83    * instead to avoid mistakes.
84    */
85   const struct pb_vtbl *vtbl;
86};
87
88
89/**
90 * Virtual function table for the buffer storage operations.
91 *
92 * Note that creation is not done through this table.
93 */
94struct pb_vtbl
95{
96   void (*destroy)( struct pb_buffer *buf );
97
98   /**
99    * Map the entire data store of a buffer object into the client's address.
100    * flags is bitmask of PIPE_BUFFER_FLAG_READ/WRITE.
101    */
102   void *(*map)( struct pb_buffer *buf,
103                 unsigned flags );
104
105   void (*unmap)( struct pb_buffer *buf );
106
107   /**
108    * Get the base buffer and the offset.
109    *
110    * A buffer can be subdivided in smaller buffers. This method should return
111    * the underlaying buffer, and the relative offset.
112    *
113    * Buffers without an underlaying base buffer should return themselves, with
114    * a zero offset.
115    *
116    * Note that this will increase the reference count of the base buffer.
117    */
118   void (*get_base_buffer)( struct pb_buffer *buf,
119                            struct pb_buffer **base_buf,
120                            unsigned *offset );
121};
122
123
124static INLINE struct pipe_buffer *
125pb_pipe_buffer( struct pb_buffer *pbuf )
126{
127   assert(pbuf);
128   return &pbuf->base;
129}
130
131
132static INLINE struct pb_buffer *
133pb_buffer( struct pipe_buffer *buf )
134{
135   assert(buf);
136   /* Could add a magic cookie check on debug builds.
137    */
138   return (struct pb_buffer *)buf;
139}
140
141
142/* Accessor functions for pb->vtbl:
143 */
144static INLINE void *
145pb_map(struct pb_buffer *buf,
146       unsigned flags)
147{
148   assert(buf);
149   if(!buf)
150      return NULL;
151   return buf->vtbl->map(buf, flags);
152}
153
154
155static INLINE void
156pb_unmap(struct pb_buffer *buf)
157{
158   assert(buf);
159   if(!buf)
160      return;
161   buf->vtbl->unmap(buf);
162}
163
164
165static INLINE void
166pb_get_base_buffer( struct pb_buffer *buf,
167		    struct pb_buffer **base_buf,
168		    unsigned *offset )
169{
170   assert(buf);
171   if(!buf) {
172      base_buf = NULL;
173      offset = 0;
174      return;
175   }
176   buf->vtbl->get_base_buffer(buf, base_buf, offset);
177}
178
179
180static INLINE void
181pb_destroy(struct pb_buffer *buf)
182{
183   assert(buf);
184   if(!buf)
185      return;
186   buf->vtbl->destroy(buf);
187}
188
189
190/* XXX: thread safety issues!
191 */
192static INLINE void
193pb_reference(struct pb_buffer **dst,
194             struct pb_buffer *src)
195{
196   if (src)
197      src->base.refcount++;
198
199   if (*dst && --(*dst)->base.refcount == 0)
200      pb_destroy( *dst );
201
202   *dst = src;
203}
204
205
206/**
207 * Utility function to check whether the provided alignment is consistent with
208 * the requested or not.
209 */
210static INLINE boolean
211pb_check_alignment(size_t requested, size_t provided)
212{
213   return requested <= provided && (provided % requested) == 0 ? TRUE : FALSE;
214}
215
216
217/**
218 * Utility function to check whether the provided alignment is consistent with
219 * the requested or not.
220 */
221static INLINE boolean
222pb_check_usage(unsigned requested, unsigned provided)
223{
224   return (requested & provided) == requested ? TRUE : FALSE;
225}
226
227
228/**
229 * Malloc-based buffer to store data that can't be used by the graphics
230 * hardware.
231 */
232struct pb_buffer *
233pb_malloc_buffer_create(size_t size,
234                        const struct pb_desc *desc);
235
236
237void
238pb_init_winsys(struct pipe_winsys *winsys);
239
240
241#ifdef __cplusplus
242}
243#endif
244
245#endif /*PB_BUFFER_H_*/
246