1 /**************************************************************************
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
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.
26 **************************************************************************/
29 #include "i915_blit.h"
31 #include "i915_batch.h"
32 #include "i915_debug.h"
36 i915_fill_blit(struct i915_context
*i915
,
39 unsigned short dst_pitch
,
40 struct i915_winsys_buffer
*dst_buffer
,
49 I915_DBG(DBG_BLIT
, "%s dst:buf(%p)/%d+%d %d,%d sz:%dx%d\n",
50 __FUNCTION__
, dst_buffer
, dst_pitch
, dst_offset
, x
, y
, w
, h
);
52 if(!i915_winsys_validate_buffers(i915
->batch
, &dst_buffer
, 1)) {
54 assert(i915_winsys_validate_buffers(i915
->batch
, &dst_buffer
, 1));
61 BR13
= (((int) dst_pitch
) & 0xffff) |
62 (0xF0 << 16) | (1 << 24);
63 CMD
= XY_COLOR_BLT_CMD
;
66 BR13
= (((int) dst_pitch
) & 0xffff) |
67 (0xF0 << 16) | (1 << 24) | (1 << 25);
68 CMD
= (XY_COLOR_BLT_CMD
| rgba_mask
);
74 if (!BEGIN_BATCH(6)) {
76 assert(BEGIN_BATCH(6));
80 OUT_BATCH((y
<< 16) | x
);
81 OUT_BATCH(((y
+ h
) << 16) | (x
+ w
));
82 OUT_RELOC_FENCED(dst_buffer
, I915_USAGE_2D_TARGET
, dst_offset
);
85 i915_set_flush_dirty(i915
, I915_FLUSH_CACHE
);
89 i915_copy_blit(struct i915_context
*i915
,
91 unsigned short src_pitch
,
92 struct i915_winsys_buffer
*src_buffer
,
94 unsigned short dst_pitch
,
95 struct i915_winsys_buffer
*dst_buffer
,
97 short src_x
, short src_y
,
98 short dst_x
, short dst_y
,
102 int dst_y2
= dst_y
+ h
;
103 int dst_x2
= dst_x
+ w
;
104 struct i915_winsys_buffer
*buffers
[2] = {src_buffer
, dst_buffer
};
108 "%s src:buf(%p)/%d+%d %d,%d dst:buf(%p)/%d+%d %d,%d sz:%dx%d\n",
110 src_buffer
, src_pitch
, src_offset
, src_x
, src_y
,
111 dst_buffer
, dst_pitch
, dst_offset
, dst_x
, dst_y
, w
, h
);
113 if(!i915_winsys_validate_buffers(i915
->batch
, buffers
, 2)) {
115 assert(i915_winsys_validate_buffers(i915
->batch
, buffers
, 2));
122 BR13
= (((int) dst_pitch
) & 0xffff) |
123 (0xCC << 16) | (1 << 24);
124 CMD
= XY_SRC_COPY_BLT_CMD
;
127 BR13
= (((int) dst_pitch
) & 0xffff) |
128 (0xCC << 16) | (1 << 24) | (1 << 25);
129 CMD
= (XY_SRC_COPY_BLT_CMD
| XY_SRC_COPY_BLT_WRITE_ALPHA
|
130 XY_SRC_COPY_BLT_WRITE_RGB
);
136 if (dst_y2
< dst_y
|| dst_x2
< dst_x
) {
140 /* Hardware can handle negative pitches but loses the ability to do
141 * proper overlapping blits in that case. We don't really have a
142 * need for either at this stage.
144 assert (dst_pitch
> 0 && src_pitch
> 0);
146 if (!BEGIN_BATCH(8)) {
148 assert(BEGIN_BATCH(8));
152 OUT_BATCH((dst_y
<< 16) | dst_x
);
153 OUT_BATCH((dst_y2
<< 16) | dst_x2
);
154 OUT_RELOC_FENCED(dst_buffer
, I915_USAGE_2D_TARGET
, dst_offset
);
155 OUT_BATCH((src_y
<< 16) | src_x
);
156 OUT_BATCH(((int) src_pitch
& 0xffff));
157 OUT_RELOC_FENCED(src_buffer
, I915_USAGE_2D_SOURCE
, src_offset
);
159 i915_set_flush_dirty(i915
, I915_FLUSH_CACHE
);