Merge commit 'origin/gallium-0.1' into gallium-0.2
[mesa.git] / src / gallium / drivers / cell / ppu / cell_flush.c
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 #include "cell_context.h"
30 #include "cell_batch.h"
31 #include "cell_flush.h"
32 #include "cell_spu.h"
33 #include "cell_render.h"
34 #include "draw/draw_context.h"
35
36
37 /**
38 * Called via pipe->flush()
39 */
40 void
41 cell_flush(struct pipe_context *pipe, unsigned flags,
42 struct pipe_fence_handle **fence)
43 {
44 struct cell_context *cell = cell_context(pipe);
45
46 if (fence) {
47 *fence = NULL;
48 /* XXX: Implement real fencing */
49 flags |= CELL_FLUSH_WAIT;
50 }
51
52 if (flags & (PIPE_FLUSH_SWAPBUFFERS | PIPE_FLUSH_RENDER_CACHE))
53 flags |= CELL_FLUSH_WAIT;
54
55 draw_flush( cell->draw );
56 cell_flush_int(cell, flags);
57 }
58
59
60 /**
61 * Cell internal flush function. Send the current batch buffer to all SPUs.
62 * If flags & CELL_FLUSH_WAIT, do not return until the SPUs are idle.
63 * \param flags bitmask of flags CELL_FLUSH_WAIT, or zero
64 */
65 void
66 cell_flush_int(struct cell_context *cell, unsigned flags)
67 {
68 static boolean flushing = FALSE; /* recursion catcher */
69 uint i;
70
71 ASSERT(!flushing);
72 flushing = TRUE;
73
74 if (flags & CELL_FLUSH_WAIT) {
75 uint64_t *cmd = (uint64_t *) cell_batch_alloc(cell, sizeof(uint64_t));
76 *cmd = CELL_CMD_FINISH;
77 }
78
79 cell_batch_flush(cell);
80
81 #if 0
82 /* Send CMD_FINISH to all SPUs */
83 for (i = 0; i < cell->num_spus; i++) {
84 send_mbox_message(cell_global.spe_contexts[i], CELL_CMD_FINISH);
85 }
86 #endif
87
88 if (flags & CELL_FLUSH_WAIT) {
89 /* Wait for ack */
90 for (i = 0; i < cell->num_spus; i++) {
91 uint k = wait_mbox_message(cell_global.spe_contexts[i]);
92 assert(k == CELL_CMD_FINISH);
93 }
94 }
95
96 flushing = FALSE;
97 }
98
99
100 void
101 cell_flush_buffer_range(struct cell_context *cell, void *ptr,
102 unsigned size)
103 {
104 uint64_t batch[1 + (ROUNDUP8(sizeof(struct cell_buffer_range)) / 8)];
105 struct cell_buffer_range *br = (struct cell_buffer_range *) & batch[1];
106
107 batch[0] = CELL_CMD_FLUSH_BUFFER_RANGE;
108 br->base = (uintptr_t) ptr;
109 br->size = size;
110 cell_batch_append(cell, batch, sizeof(batch));
111 }