summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/i965/xlib/xlib_i965.c
blob: c22df6643aab03fd50312fb476b95f840240939d (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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
/**************************************************************************
 * 
 * Copyright 2007 Tungsten Graphics, Inc., Bismarck, ND., USA
 * All Rights Reserved.
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 * 
 * 
 **************************************************************************/

/*
 * Authors:
 *   Keith Whitwell
 *   Brian Paul
 */


#include "util/u_memory.h"
#include "util/u_math.h"
#include "pipe/p_error.h"
#include "pipe/p_context.h"

#include "xm_public.h"

#include "i965/brw_winsys.h"
#include "i965/brw_screen.h"
#include "i965/brw_resource.h"
#include "i965/brw_reg.h"
#include "i965/brw_structs_dump.h"

#define MAX_VRAM (128*1024*1024)



extern int brw_disasm (FILE *file, 
                       const struct brw_instruction *inst,
                       unsigned count );

extern int intel_decode(const uint32_t *data, 
                        int count,
                        uint32_t hw_offset,
                        uint32_t devid);

struct xlib_brw_buffer
{
   struct brw_winsys_buffer base;
   char *virtual;
   unsigned offset;
   unsigned type;
   int map_count;
   boolean modified;
};


/**
 * Subclass of brw_winsys_screen for Xlib winsys
 */
struct xlib_brw_winsys
{
   struct brw_winsys_screen base;
   struct brw_chipset chipset;

   unsigned size;
   unsigned used;
};

static struct xlib_brw_winsys *
xlib_brw_winsys( struct brw_winsys_screen *screen )
{
   return (struct xlib_brw_winsys *)screen;
}


static struct xlib_brw_buffer *
xlib_brw_buffer( struct brw_winsys_buffer *buffer )
{
   return (struct xlib_brw_buffer *)buffer;
}



const char *names[BRW_BUFFER_TYPE_MAX] = {
   "TEXTURE",
   "SCANOUT",
   "VERTEX",
   "CURBE",
   "QUERY",
   "SHADER_CONSTANTS",
   "WM_SCRATCH",
   "BATCH",
   "GENERAL_STATE",
   "SURFACE_STATE",
   "PIXEL",
   "GENERIC",
};

const char *usages[BRW_USAGE_MAX] = {
   "STATE",
   "QUERY_RESULT",
   "RENDER_TARGET",
   "DEPTH_BUFFER",
   "BLIT_SOURCE",
   "BLIT_DEST",
   "SAMPLER",
   "VERTEX",
   "SCRATCH"
};


const char *data_types[BRW_DATA_MAX] =
{
   "GS: CC_VP",
   "GS: CC_UNIT",
   "GS: WM_PROG",
   "GS: SAMPLER_DEFAULT_COLOR",
   "GS: SAMPLER",
   "GS: WM_UNIT",
   "GS: SF_PROG",
   "GS: SF_VP",
   "GS: SF_UNIT",
   "GS: VS_UNIT",
   "GS: VS_PROG",
   "GS: GS_UNIT",
   "GS: GS_PROG",
   "GS: CLIP_VP",
   "GS: CLIP_UNIT",
   "GS: CLIP_PROG",
   "SS: SURFACE",
   "SS: SURF_BIND",
   "CONSTANT DATA",
   "BATCH DATA",
   "(untyped)"
};


static enum pipe_error
xlib_brw_bo_alloc( struct brw_winsys_screen *sws,
                   enum brw_buffer_type type,
                   unsigned size,
                   unsigned alignment,
                   struct brw_winsys_buffer **bo_out )
{
   struct xlib_brw_winsys *xbw = xlib_brw_winsys(sws);
   struct xlib_brw_buffer *buf;

   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s type %s sz %d align %d\n",
                   __FUNCTION__, names[type], size, alignment );

   buf = CALLOC_STRUCT(xlib_brw_buffer);
   if (!buf)
      return PIPE_ERROR_OUT_OF_MEMORY;

   pipe_reference_init(&buf->base.reference, 1);

   buf->offset = align(xbw->used, alignment);
   buf->type = type;
   buf->virtual = MALLOC(size);
   buf->base.size = size;
   buf->base.sws = sws;

   xbw->used = align(xbw->used, alignment) + size;
   if (xbw->used > MAX_VRAM)
      goto err;

   /* XXX: possibly rentrant call to bo_destroy:
    */
   bo_reference(bo_out, &buf->base);
   return PIPE_OK;

err:
   assert(0);
   FREE(buf->virtual);
   FREE(buf);
   return PIPE_ERROR_OUT_OF_MEMORY;
}

static void 
xlib_brw_bo_destroy( struct brw_winsys_buffer *buffer )
{
   struct xlib_brw_buffer *buf = xlib_brw_buffer(buffer);

   FREE(buf);
}

static int 
xlib_brw_bo_emit_reloc( struct brw_winsys_buffer *buffer,
                        enum brw_buffer_usage usage,
                        unsigned delta,
                        unsigned offset,
                        struct brw_winsys_buffer *buffer2)
{
   struct xlib_brw_buffer *buf = xlib_brw_buffer(buffer);
   struct xlib_brw_buffer *buf2 = xlib_brw_buffer(buffer2);

   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s buf %p offset %x val %x + %x buf2 %p/%s/%s\n",
                   __FUNCTION__, (void *)buffer, offset,
                   buf2->offset, delta,
                   (void *)buffer2, names[buf2->type], usages[usage]);

   *(uint32_t *)(buf->virtual + offset) = buf2->offset + delta;

   return 0;
}

static int 
xlib_brw_bo_exec( struct brw_winsys_buffer *buffer,
		     unsigned bytes_used )
{
   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("execute buffer %p, bytes %d\n", (void *)buffer, bytes_used);

   return 0;
}




static int
xlib_brw_bo_subdata(struct brw_winsys_buffer *buffer,
                    enum brw_buffer_data_type data_type,
                    size_t offset,
                    size_t size,
                    const void *data,
                    const struct brw_winsys_reloc *reloc,
                    unsigned nr_relocs)
{
   struct xlib_brw_buffer *buf = xlib_brw_buffer(buffer);
   struct xlib_brw_winsys *xbw = xlib_brw_winsys(buffer->sws);
   unsigned i;

   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s buf %p off %d sz %d %s relocs: %d\n", 
                   __FUNCTION__, 
                   (void *)buffer, offset, size, 
                   data_types[data_type],
                   nr_relocs);

   assert(buf->base.size >= offset + size);
   memcpy(buf->virtual + offset, data, size);

   /* Apply the relocations:
    */
   for (i = 0; i < nr_relocs; i++) {
      if (BRW_DEBUG & DEBUG_WINSYS)
         debug_printf("\treloc[%d] usage %s off %d value %x+%x\n", 
                      i, usages[reloc[i].usage], reloc[i].offset,
                      xlib_brw_buffer(reloc[i].bo)->offset, reloc[i].delta);

      *(unsigned *)(buf->virtual + offset + reloc[i].offset) = 
         xlib_brw_buffer(reloc[i].bo)->offset + reloc[i].delta;
   }

   if (BRW_DUMP)
      brw_dump_data( xbw->chipset.pci_id,
		     data_type,
		     buf->offset + offset, 
		     buf->virtual + offset, size );


   return 0;
}


static boolean 
xlib_brw_bo_is_busy(struct brw_winsys_buffer *buffer)
{
   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s %p\n", __FUNCTION__, (void *)buffer);
   return TRUE;
}

static boolean 
xlib_brw_bo_references(struct brw_winsys_buffer *a,
			  struct brw_winsys_buffer *b)
{
   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s %p %p\n", __FUNCTION__, (void *)a, (void *)b);
   return TRUE;
}

static enum pipe_error
xlib_brw_check_aperture_space( struct brw_winsys_screen *iws,
                                struct brw_winsys_buffer **buffers,
                                unsigned count )
{
   unsigned tot_size = 0;
   unsigned i;

   for (i = 0; i < count; i++)
      tot_size += buffers[i]->size;

   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s %d bufs, tot_size: %d kb\n", 
                   __FUNCTION__, count, 
                   (tot_size + 1023) / 1024);

   return PIPE_OK;
}

static void *
xlib_brw_bo_map(struct brw_winsys_buffer *buffer,
                enum brw_buffer_data_type data_type,
                unsigned offset,
                unsigned length,
                boolean write,
                boolean discard,
                boolean explicit)
{
   struct xlib_brw_buffer *buf = xlib_brw_buffer(buffer);

   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s %p %s %s\n", __FUNCTION__, (void *)buffer, 
                   write ? "read/write" : "read",
                   write ? data_types[data_type] : "");

   if (write)
      buf->modified = 1;

   buf->map_count++;
   return buf->virtual;
}


static void
xlib_brw_bo_flush_range( struct brw_winsys_buffer *buffer,
                         unsigned offset,
                         unsigned length )
{
}


static void 
xlib_brw_bo_unmap(struct brw_winsys_buffer *buffer)
{
   struct xlib_brw_buffer *buf = xlib_brw_buffer(buffer);

   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s %p\n", __FUNCTION__, (void *)buffer);

   --buf->map_count;
   assert(buf->map_count >= 0);

   if (buf->map_count == 0 &&
       buf->modified) {

      buf->modified = 0;
      
      /* Consider dumping new buffer contents here, using the
       * flush-range info to minimize verbosity.
       */
   }
}


static void
xlib_brw_bo_wait_idle( struct brw_winsys_buffer *buffer )
{
}


static void
xlib_brw_winsys_destroy( struct brw_winsys_screen *sws )
{
   struct xlib_brw_winsys *xbw = xlib_brw_winsys(sws);

   FREE(xbw);
}

static struct brw_winsys_screen *
xlib_create_brw_winsys_screen( void )
{
   struct xlib_brw_winsys *ws;

   ws = CALLOC_STRUCT(xlib_brw_winsys);
   if (!ws)
      return NULL;

   ws->used = 0;
   ws->base.pci_id = PCI_CHIP_GM45_GM;

   ws->base.destroy              = xlib_brw_winsys_destroy;
   ws->base.bo_alloc             = xlib_brw_bo_alloc;
   ws->base.bo_destroy           = xlib_brw_bo_destroy;
   ws->base.bo_emit_reloc        = xlib_brw_bo_emit_reloc;
   ws->base.bo_exec              = xlib_brw_bo_exec;
   ws->base.bo_subdata           = xlib_brw_bo_subdata;
   ws->base.bo_is_busy           = xlib_brw_bo_is_busy;
   ws->base.bo_references        = xlib_brw_bo_references;
   ws->base.check_aperture_space = xlib_brw_check_aperture_space;
   ws->base.bo_map               = xlib_brw_bo_map;
   ws->base.bo_flush_range       = xlib_brw_bo_flush_range;
   ws->base.bo_unmap             = xlib_brw_bo_unmap;
   ws->base.bo_wait_idle         = xlib_brw_bo_wait_idle;

   return &ws->base;
}


/***********************************************************************
 * Implementation of Xlib co-state-tracker's winsys interface
 */

static void
xlib_i965_display_surface(struct xmesa_buffer *xm_buffer,
                          struct pipe_resource *resource,
                          unsigned level, unsigned layer)
{
   struct brw_texture *tex = brw_texture(resource);
   struct xlib_brw_buffer *bo = xlib_brw_buffer(tex->bo);
   /* not sure if the resource is really useful here but
      since it was never implemented anyway... */
   if (BRW_DEBUG & DEBUG_WINSYS)
      debug_printf("%s level %u layer %u offset %x base sz %dx%d\n", __FUNCTION__,
                   level, layer,
                   bo->offset,
                   resource->width0,
                   resource->height0);
}

static void
xlib_i965_flush_frontbuffer(struct pipe_screen *screen,
                            struct pipe_resource *resource,
                            unsigned level, unsigned layer,
                            void *context_private)
{
   xlib_i965_display_surface(NULL, resource, level, layer);
}


static struct pipe_screen *
xlib_create_i965_screen( void )
{
   struct brw_winsys_screen *winsys;
   struct pipe_screen *screen;

   winsys = xlib_create_brw_winsys_screen();
   if (winsys == NULL)
      return NULL;

   screen = brw_create_screen(winsys);
   if (screen == NULL)
      goto fail;

   xlib_brw_winsys(winsys)->chipset = brw_screen(screen)->chipset;

   screen->flush_frontbuffer = xlib_i965_flush_frontbuffer;
   return screen;

fail:
   if (winsys)
      winsys->destroy( winsys );

   return NULL;
}





struct xm_driver xlib_i965_driver = 
{
   .create_pipe_screen = xlib_create_i965_screen,
   .display_surface = xlib_i965_display_surface
};


/* Register this driver at library load: 
 */
static void _init( void ) __attribute__((constructor));
static void _init( void )
{
   xmesa_set_driver( &xlib_i965_driver );
}



/***********************************************************************
 *
 * Butt-ugly hack to convince the linker not to throw away public GL
 * symbols (they are all referenced from getprocaddress, I guess).
 */
extern void (*linker_foo(const unsigned char *procName))();
extern void (*glXGetProcAddress(const unsigned char *procName))();

extern void (*linker_foo(const unsigned char *procName))()
{
   return glXGetProcAddress(procName);
}