summaryrefslogtreecommitdiff
path: root/cpuwinsys/cpuwinsys.c
blob: 04a8a05b2028c4c787eb76cec57392b324dbd76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#include "cpuwinsys.h"

#include "pipe/p_winsys.h"
#include "pipe/p_format.h"
#include "pipe/p_context.h"
#include "pipe/p_inlines.h"
#include "util/u_math.h"
#include "util/u_memory.h"

#ifdef GALLIUM_CELL
#include "cell/ppu/cell_context.h"
#include "cell/ppu/cell_screen.h"
#include "cell/ppu/cell_winsys.h"
#else
#define TILE_SIZE 32  /* avoid compilation errors */
#endif


/**
 * Subclass of pipe_winsys for Xlib winsys
 */
struct cpu_winsys {
   struct pipe_winsys base;
};

/**
 * Subclass of pipe_buffer for CL winsys.
 * Low-level OS/window system memory buffer
 */
struct cpu_buffer
{
   struct pipe_buffer base;
   boolean userBuffer;  /** Is this a user-space buffer? */
   void *data;
   void *mapped;
};


/** Cast wrapper */
static INLINE struct cpu_buffer *
cpu_buffer(struct pipe_buffer *buf)
{
   return (struct cpu_buffer *)buf;
}


/* Most callbacks map direcly onto dri_bufmgr operations:
 */
static void *
cpu_buffer_map(struct pipe_winsys *pws, struct pipe_buffer *buf,
               unsigned flags)
{
   struct cpu_buffer *cpu_buf = cpu_buffer(buf);
   cpu_buf->mapped = cpu_buf->data;
   return cpu_buf->mapped;
}

static void
cpu_buffer_unmap(struct pipe_winsys *pws, struct pipe_buffer *buf)
{
   struct cpu_buffer *cpu_buf = cpu_buffer(buf);
   cpu_buf->mapped = NULL;
}

static void
cpu_buffer_destroy(struct pipe_winsys *pws,
                   struct pipe_buffer *buf)
{
   struct cpu_buffer *oldBuf = cpu_buffer(buf);

   if (oldBuf->data) {
      if (!oldBuf->userBuffer) {
         align_free(oldBuf->data);
      }

      oldBuf->data = NULL;
   }

   free(oldBuf);
}


static void
cpu_flush_frontbuffer(struct pipe_winsys *pws,
                     struct pipe_surface *surf,
                     void *context_private)
{
   /*### do nothing? */
}



static const char *
cpu_get_name(struct pipe_winsys *pws)
{
   return "OpenCL CPU";
}


static struct pipe_buffer *
cpu_buffer_create(struct pipe_winsys *pws, 
                  unsigned alignment, 
                  unsigned usage,
                  unsigned size)
{
   struct cpu_buffer *buffer = CALLOC_STRUCT(cpu_buffer);

   buffer->base.refcount = 1;
   buffer->base.alignment = alignment;
   buffer->base.usage = usage;
   buffer->base.size = size;

   if (buffer->data == NULL) {
      /* align to 16-byte multiple for Cell */
      buffer->data = align_malloc(size, MAX2(alignment, 16));
   }

   return &buffer->base;
}


/**
 * Create buffer which wraps user-space data.
 */
static struct pipe_buffer *
cpu_user_buffer_create(struct pipe_winsys *pws, void *ptr, unsigned bytes)
{
   struct cpu_buffer *buffer = CALLOC_STRUCT(cpu_buffer);
   buffer->base.refcount = 1;
   buffer->base.size = bytes;
   buffer->userBuffer = TRUE;
   buffer->data = ptr;

   return &buffer->base;
}



/**
 * Round n up to next multiple.
 */
static INLINE unsigned
round_up(unsigned n, unsigned multiple)
{
   return (n + multiple - 1) & ~(multiple - 1);
}

static int
cpu_surface_alloc_storage(struct pipe_winsys *winsys,
                         struct pipe_surface *surf,
                         unsigned width, unsigned height,
                         enum pipe_format format,
                         unsigned flags,
                         unsigned tex_usage)
{
   const unsigned alignment = 64;

   surf->width = width;
   surf->height = height;
   surf->format = format;
   pf_get_block(format, &surf->block);
   surf->nblocksx = pf_get_nblocksx(&surf->block, width);
   surf->nblocksy = pf_get_nblocksy(&surf->block, height);
   surf->stride = round_up(surf->nblocksx * surf->block.size, alignment);
   surf->usage = flags;

   assert(!surf->buffer);
   surf->buffer = winsys->buffer_create(winsys, alignment,
                                        PIPE_BUFFER_USAGE_PIXEL,
#ifdef GALLIUM_CELL /* XXX a bit of a hack */
                                        surf->stride *
                                        round_up(surf->nblocksy, TILE_SIZE));
#else
                                        surf->stride * surf->nblocksy);
#endif

   if(!surf->buffer)
      return -1;

   return 0;
}


/**
 * Called via winsys->surface_alloc() to create new surfaces.
 */
static struct pipe_surface *
cpu_surface_alloc(struct pipe_winsys *ws)
{
   struct pipe_surface *surface = CALLOC_STRUCT(pipe_surface);

   assert(ws);

   surface->refcount = 1;
   surface->winsys = ws;

   return surface;
}



static void
cpu_surface_release(struct pipe_winsys *winsys, struct pipe_surface **s)
{
   struct pipe_surface *surf = *s;
   assert(!surf->texture);
   surf->refcount--;
   if (surf->refcount == 0) {
      if (surf->buffer)
         winsys_buffer_reference(winsys, &surf->buffer, NULL);
      free(surf);
   }
   *s = NULL;
}


/*
 * Fence functions - basically nothing to do, as we don't create any actual
 * fence objects.
 */

static void
cpu_fence_reference(struct pipe_winsys *sws, struct pipe_fence_handle **ptr,
                   struct pipe_fence_handle *fence)
{
}


static int
cpu_fence_signalled(struct pipe_winsys *sws, struct pipe_fence_handle *fence,
                   unsigned flag)
{
   return 0;
}


static int
cpu_fence_finish(struct pipe_winsys *sws, struct pipe_fence_handle *fence,
                unsigned flag)
{
   return 0;
}

struct pipe_winsys * cpu_winsys(void)
{
   static struct cpu_winsys *ws = NULL;

   if (!ws) {
      ws = CALLOC_STRUCT(cpu_winsys);

      /* Fill in this struct with callbacks that pipe will need to
       * communicate with the buffer manager, etc.
       */
      ws->base.buffer_create = cpu_buffer_create;
      ws->base.user_buffer_create = cpu_user_buffer_create;
      ws->base.buffer_map = cpu_buffer_map;
      ws->base.buffer_unmap = cpu_buffer_unmap;
      ws->base.buffer_destroy = cpu_buffer_destroy;

      ws->base.surface_alloc = cpu_surface_alloc;
      ws->base.surface_alloc_storage = cpu_surface_alloc_storage;
      ws->base.surface_release = cpu_surface_release;

      ws->base.fence_reference = cpu_fence_reference;
      ws->base.fence_signalled = cpu_fence_signalled;
      ws->base.fence_finish = cpu_fence_finish;

      ws->base.flush_frontbuffer = cpu_flush_frontbuffer;
      ws->base.get_name = cpu_get_name;
   }

   return &ws->base;
}