blob: b7f483cac6d4b7973f1627912cee23235485af54 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* r128_state.c -- State support for r128 -*- linux-c -*-
2 * Created: Thu Jan 27 02:53:43 2000 by gareth@valinux.com
Dave Airlief26c4732006-01-02 17:18:39 +11003 */
Dave Airlie83a9e292006-12-19 17:56:14 +11004/*
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
26 *
27 * Authors:
28 * Gareth Hughes <gareth@valinux.com>
29 */
30
31#include "drmP.h"
32#include "drm.h"
33#include "r128_drm.h"
34#include "r128_drv.h"
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* ================================================================
37 * CCE hardware state programming functions
38 */
39
Dave Airlieb5e89ed2005-09-25 14:28:13 +100040static void r128_emit_clip_rects(drm_r128_private_t * dev_priv,
Dave Airlieeddca552007-07-11 16:09:54 +100041 struct drm_clip_rect * boxes, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 u32 aux_sc_cntl = 0x00000000;
44 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100045 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Dave Airlieb5e89ed2005-09-25 14:28:13 +100047 BEGIN_RING((count < 3 ? count : 3) * 5 + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Dave Airlieb5e89ed2005-09-25 14:28:13 +100049 if (count >= 1) {
50 OUT_RING(CCE_PACKET0(R128_AUX1_SC_LEFT, 3));
51 OUT_RING(boxes[0].x1);
52 OUT_RING(boxes[0].x2 - 1);
53 OUT_RING(boxes[0].y1);
54 OUT_RING(boxes[0].y2 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 aux_sc_cntl |= (R128_AUX1_SC_EN | R128_AUX1_SC_MODE_OR);
57 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100058 if (count >= 2) {
59 OUT_RING(CCE_PACKET0(R128_AUX2_SC_LEFT, 3));
60 OUT_RING(boxes[1].x1);
61 OUT_RING(boxes[1].x2 - 1);
62 OUT_RING(boxes[1].y1);
63 OUT_RING(boxes[1].y2 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 aux_sc_cntl |= (R128_AUX2_SC_EN | R128_AUX2_SC_MODE_OR);
66 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100067 if (count >= 3) {
68 OUT_RING(CCE_PACKET0(R128_AUX3_SC_LEFT, 3));
69 OUT_RING(boxes[2].x1);
70 OUT_RING(boxes[2].x2 - 1);
71 OUT_RING(boxes[2].y1);
72 OUT_RING(boxes[2].y2 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 aux_sc_cntl |= (R128_AUX3_SC_EN | R128_AUX3_SC_MODE_OR);
75 }
76
Dave Airlieb5e89ed2005-09-25 14:28:13 +100077 OUT_RING(CCE_PACKET0(R128_AUX_SC_CNTL, 0));
78 OUT_RING(aux_sc_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 ADVANCE_RING();
81}
82
Dave Airlieb5e89ed2005-09-25 14:28:13 +100083static __inline__ void r128_emit_core(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
86 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
87 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100088 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Dave Airlieb5e89ed2005-09-25 14:28:13 +100090 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Dave Airlieb5e89ed2005-09-25 14:28:13 +100092 OUT_RING(CCE_PACKET0(R128_SCALE_3D_CNTL, 0));
93 OUT_RING(ctx->scale_3d_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 ADVANCE_RING();
96}
97
Dave Airlieb5e89ed2005-09-25 14:28:13 +100098static __inline__ void r128_emit_context(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
101 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
102 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000103 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000105 BEGIN_RING(13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000107 OUT_RING(CCE_PACKET0(R128_DST_PITCH_OFFSET_C, 11));
108 OUT_RING(ctx->dst_pitch_offset_c);
109 OUT_RING(ctx->dp_gui_master_cntl_c);
110 OUT_RING(ctx->sc_top_left_c);
111 OUT_RING(ctx->sc_bottom_right_c);
112 OUT_RING(ctx->z_offset_c);
113 OUT_RING(ctx->z_pitch_c);
114 OUT_RING(ctx->z_sten_cntl_c);
115 OUT_RING(ctx->tex_cntl_c);
116 OUT_RING(ctx->misc_3d_state_cntl_reg);
117 OUT_RING(ctx->texture_clr_cmp_clr_c);
118 OUT_RING(ctx->texture_clr_cmp_msk_c);
119 OUT_RING(ctx->fog_color_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 ADVANCE_RING();
122}
123
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000124static __inline__ void r128_emit_setup(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
127 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
128 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000129 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000131 BEGIN_RING(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000133 OUT_RING(CCE_PACKET1(R128_SETUP_CNTL, R128_PM4_VC_FPU_SETUP));
134 OUT_RING(ctx->setup_cntl);
135 OUT_RING(ctx->pm4_vc_fpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 ADVANCE_RING();
138}
139
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000140static __inline__ void r128_emit_masks(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
143 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
144 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000145 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000147 BEGIN_RING(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000149 OUT_RING(CCE_PACKET0(R128_DP_WRITE_MASK, 0));
150 OUT_RING(ctx->dp_write_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000152 OUT_RING(CCE_PACKET0(R128_STEN_REF_MASK_C, 1));
153 OUT_RING(ctx->sten_ref_mask_c);
154 OUT_RING(ctx->plane_3d_mask_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 ADVANCE_RING();
157}
158
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000159static __inline__ void r128_emit_window(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
162 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
163 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000164 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000166 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000168 OUT_RING(CCE_PACKET0(R128_WINDOW_XY_OFFSET, 0));
169 OUT_RING(ctx->window_xy_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 ADVANCE_RING();
172}
173
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000174static __inline__ void r128_emit_tex0(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
177 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
178 drm_r128_texture_regs_t *tex = &sarea_priv->tex_state[0];
179 int i;
180 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000181 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000183 BEGIN_RING(7 + R128_MAX_TEXTURE_LEVELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000185 OUT_RING(CCE_PACKET0(R128_PRIM_TEX_CNTL_C,
186 2 + R128_MAX_TEXTURE_LEVELS));
187 OUT_RING(tex->tex_cntl);
188 OUT_RING(tex->tex_combine_cntl);
189 OUT_RING(ctx->tex_size_pitch_c);
190 for (i = 0; i < R128_MAX_TEXTURE_LEVELS; i++) {
191 OUT_RING(tex->tex_offset[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000194 OUT_RING(CCE_PACKET0(R128_CONSTANT_COLOR_C, 1));
195 OUT_RING(ctx->constant_color_c);
196 OUT_RING(tex->tex_border_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 ADVANCE_RING();
199}
200
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000201static __inline__ void r128_emit_tex1(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
204 drm_r128_texture_regs_t *tex = &sarea_priv->tex_state[1];
205 int i;
206 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000207 DRM_DEBUG(" %s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209 BEGIN_RING(5 + R128_MAX_TEXTURE_LEVELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000211 OUT_RING(CCE_PACKET0(R128_SEC_TEX_CNTL_C, 1 + R128_MAX_TEXTURE_LEVELS));
212 OUT_RING(tex->tex_cntl);
213 OUT_RING(tex->tex_combine_cntl);
214 for (i = 0; i < R128_MAX_TEXTURE_LEVELS; i++) {
215 OUT_RING(tex->tex_offset[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000218 OUT_RING(CCE_PACKET0(R128_SEC_TEXTURE_BORDER_COLOR_C, 0));
219 OUT_RING(tex->tex_border_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 ADVANCE_RING();
222}
223
Arjan van de Ven858119e2006-01-14 13:20:43 -0800224static void r128_emit_state(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
227 unsigned int dirty = sarea_priv->dirty;
228
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229 DRM_DEBUG("%s: dirty=0x%08x\n", __FUNCTION__, dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000231 if (dirty & R128_UPLOAD_CORE) {
232 r128_emit_core(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 sarea_priv->dirty &= ~R128_UPLOAD_CORE;
234 }
235
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000236 if (dirty & R128_UPLOAD_CONTEXT) {
237 r128_emit_context(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 sarea_priv->dirty &= ~R128_UPLOAD_CONTEXT;
239 }
240
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000241 if (dirty & R128_UPLOAD_SETUP) {
242 r128_emit_setup(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 sarea_priv->dirty &= ~R128_UPLOAD_SETUP;
244 }
245
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000246 if (dirty & R128_UPLOAD_MASKS) {
247 r128_emit_masks(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 sarea_priv->dirty &= ~R128_UPLOAD_MASKS;
249 }
250
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000251 if (dirty & R128_UPLOAD_WINDOW) {
252 r128_emit_window(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 sarea_priv->dirty &= ~R128_UPLOAD_WINDOW;
254 }
255
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000256 if (dirty & R128_UPLOAD_TEX0) {
257 r128_emit_tex0(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 sarea_priv->dirty &= ~R128_UPLOAD_TEX0;
259 }
260
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261 if (dirty & R128_UPLOAD_TEX1) {
262 r128_emit_tex1(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 sarea_priv->dirty &= ~R128_UPLOAD_TEX1;
264 }
265
266 /* Turn off the texture cache flushing */
267 sarea_priv->context_state.tex_cntl_c &= ~R128_TEX_CACHE_FLUSH;
268
269 sarea_priv->dirty &= ~R128_REQUIRE_QUIESCENCE;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272#if R128_PERFORMANCE_BOXES
273/* ================================================================
274 * Performance monitoring functions
275 */
276
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000277static void r128_clear_box(drm_r128_private_t * dev_priv,
278 int x, int y, int w, int h, int r, int g, int b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 u32 pitch, offset;
281 u32 fb_bpp, color;
282 RING_LOCALS;
283
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000284 switch (dev_priv->fb_bpp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 case 16:
286 fb_bpp = R128_GMC_DST_16BPP;
287 color = (((r & 0xf8) << 8) |
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000288 ((g & 0xfc) << 3) | ((b & 0xf8) >> 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
290 case 24:
291 fb_bpp = R128_GMC_DST_24BPP;
292 color = ((r << 16) | (g << 8) | b);
293 break;
294 case 32:
295 fb_bpp = R128_GMC_DST_32BPP;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000296 color = (((0xff) << 24) | (r << 16) | (g << 8) | b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
298 default:
299 return;
300 }
301
302 offset = dev_priv->back_offset;
303 pitch = dev_priv->back_pitch >> 3;
304
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000305 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000307 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
308 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
309 R128_GMC_BRUSH_SOLID_COLOR |
310 fb_bpp |
311 R128_GMC_SRC_DATATYPE_COLOR |
312 R128_ROP3_P |
313 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_AUX_CLIP_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000315 OUT_RING((pitch << 21) | (offset >> 5));
316 OUT_RING(color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000318 OUT_RING((x << 16) | y);
319 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 ADVANCE_RING();
322}
323
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000324static void r128_cce_performance_boxes(drm_r128_private_t * dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326 if (atomic_read(&dev_priv->idle_count) == 0) {
327 r128_clear_box(dev_priv, 64, 4, 8, 8, 0, 255, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000329 atomic_set(&dev_priv->idle_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331}
332
333#endif
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/* ================================================================
336 * CCE command dispatch functions
337 */
338
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000339static void r128_print_dirty(const char *msg, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000341 DRM_INFO("%s: (0x%x) %s%s%s%s%s%s%s%s%s\n",
342 msg,
343 flags,
344 (flags & R128_UPLOAD_CORE) ? "core, " : "",
345 (flags & R128_UPLOAD_CONTEXT) ? "context, " : "",
346 (flags & R128_UPLOAD_SETUP) ? "setup, " : "",
347 (flags & R128_UPLOAD_TEX0) ? "tex0, " : "",
348 (flags & R128_UPLOAD_TEX1) ? "tex1, " : "",
349 (flags & R128_UPLOAD_MASKS) ? "masks, " : "",
350 (flags & R128_UPLOAD_WINDOW) ? "window, " : "",
351 (flags & R128_UPLOAD_CLIPRECTS) ? "cliprects, " : "",
352 (flags & R128_REQUIRE_QUIESCENCE) ? "quiescence, " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Dave Airlieeddca552007-07-11 16:09:54 +1000355static void r128_cce_dispatch_clear(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000356 drm_r128_clear_t * clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 drm_r128_private_t *dev_priv = dev->dev_private;
359 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
360 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000361 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 unsigned int flags = clear->flags;
363 int i;
364 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000365 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000367 if (dev_priv->page_flipping && dev_priv->current_page == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 unsigned int tmp = flags;
369
370 flags &= ~(R128_FRONT | R128_BACK);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000371 if (tmp & R128_FRONT)
372 flags |= R128_BACK;
373 if (tmp & R128_BACK)
374 flags |= R128_FRONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000377 for (i = 0; i < nbox; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int x = pbox[i].x1;
379 int y = pbox[i].y1;
380 int w = pbox[i].x2 - x;
381 int h = pbox[i].y2 - y;
382
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000383 DRM_DEBUG("dispatch clear %d,%d-%d,%d flags 0x%x\n",
384 pbox[i].x1, pbox[i].y1, pbox[i].x2,
385 pbox[i].y2, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000387 if (flags & (R128_FRONT | R128_BACK)) {
388 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000390 OUT_RING(CCE_PACKET0(R128_DP_WRITE_MASK, 0));
391 OUT_RING(clear->color_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 ADVANCE_RING();
394 }
395
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000396 if (flags & R128_FRONT) {
397 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000399 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
400 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
401 R128_GMC_BRUSH_SOLID_COLOR |
402 (dev_priv->color_fmt << 8) |
403 R128_GMC_SRC_DATATYPE_COLOR |
404 R128_ROP3_P |
405 R128_GMC_CLR_CMP_CNTL_DIS |
406 R128_GMC_AUX_CLIP_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000408 OUT_RING(dev_priv->front_pitch_offset_c);
409 OUT_RING(clear->clear_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000411 OUT_RING((x << 16) | y);
412 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 ADVANCE_RING();
415 }
416
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000417 if (flags & R128_BACK) {
418 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000420 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
421 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
422 R128_GMC_BRUSH_SOLID_COLOR |
423 (dev_priv->color_fmt << 8) |
424 R128_GMC_SRC_DATATYPE_COLOR |
425 R128_ROP3_P |
426 R128_GMC_CLR_CMP_CNTL_DIS |
427 R128_GMC_AUX_CLIP_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000429 OUT_RING(dev_priv->back_pitch_offset_c);
430 OUT_RING(clear->clear_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000432 OUT_RING((x << 16) | y);
433 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 ADVANCE_RING();
436 }
437
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000438 if (flags & R128_DEPTH) {
439 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000441 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
442 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
443 R128_GMC_BRUSH_SOLID_COLOR |
444 (dev_priv->depth_fmt << 8) |
445 R128_GMC_SRC_DATATYPE_COLOR |
446 R128_ROP3_P |
447 R128_GMC_CLR_CMP_CNTL_DIS |
448 R128_GMC_AUX_CLIP_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000450 OUT_RING(dev_priv->depth_pitch_offset_c);
451 OUT_RING(clear->clear_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000453 OUT_RING((x << 16) | y);
454 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 ADVANCE_RING();
457 }
458 }
459}
460
Dave Airlieeddca552007-07-11 16:09:54 +1000461static void r128_cce_dispatch_swap(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 drm_r128_private_t *dev_priv = dev->dev_private;
464 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
465 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000466 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 int i;
468 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000469 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471#if R128_PERFORMANCE_BOXES
472 /* Do some trivial performance monitoring...
473 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000474 r128_cce_performance_boxes(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475#endif
476
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000477 for (i = 0; i < nbox; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int x = pbox[i].x1;
479 int y = pbox[i].y1;
480 int w = pbox[i].x2 - x;
481 int h = pbox[i].y2 - y;
482
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000483 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000485 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
486 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
487 R128_GMC_DST_PITCH_OFFSET_CNTL |
488 R128_GMC_BRUSH_NONE |
489 (dev_priv->color_fmt << 8) |
490 R128_GMC_SRC_DATATYPE_COLOR |
491 R128_ROP3_S |
492 R128_DP_SRC_SOURCE_MEMORY |
493 R128_GMC_CLR_CMP_CNTL_DIS |
494 R128_GMC_AUX_CLIP_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /* Make this work even if front & back are flipped:
497 */
498 if (dev_priv->current_page == 0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000499 OUT_RING(dev_priv->back_pitch_offset_c);
500 OUT_RING(dev_priv->front_pitch_offset_c);
501 } else {
502 OUT_RING(dev_priv->front_pitch_offset_c);
503 OUT_RING(dev_priv->back_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000506 OUT_RING((x << 16) | y);
507 OUT_RING((x << 16) | y);
508 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 ADVANCE_RING();
511 }
512
513 /* Increment the frame counter. The client-side 3D driver must
514 * throttle the framerate by waiting for this value before
515 * performing the swapbuffer ioctl.
516 */
517 dev_priv->sarea_priv->last_frame++;
518
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000519 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000521 OUT_RING(CCE_PACKET0(R128_LAST_FRAME_REG, 0));
522 OUT_RING(dev_priv->sarea_priv->last_frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 ADVANCE_RING();
525}
526
Dave Airlieeddca552007-07-11 16:09:54 +1000527static void r128_cce_dispatch_flip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 drm_r128_private_t *dev_priv = dev->dev_private;
530 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000531 DRM_DEBUG("%s: page=%d pfCurrentPage=%d\n",
532 __FUNCTION__,
533 dev_priv->current_page, dev_priv->sarea_priv->pfCurrentPage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535#if R128_PERFORMANCE_BOXES
536 /* Do some trivial performance monitoring...
537 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000538 r128_cce_performance_boxes(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539#endif
540
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000541 BEGIN_RING(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 R128_WAIT_UNTIL_PAGE_FLIPPED();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000544 OUT_RING(CCE_PACKET0(R128_CRTC_OFFSET, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000546 if (dev_priv->current_page == 0) {
547 OUT_RING(dev_priv->back_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000549 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
552 ADVANCE_RING();
553
554 /* Increment the frame counter. The client-side 3D driver must
555 * throttle the framerate by waiting for this value before
556 * performing the swapbuffer ioctl.
557 */
558 dev_priv->sarea_priv->last_frame++;
559 dev_priv->sarea_priv->pfCurrentPage = dev_priv->current_page =
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000560 1 - dev_priv->current_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000562 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000564 OUT_RING(CCE_PACKET0(R128_LAST_FRAME_REG, 0));
565 OUT_RING(dev_priv->sarea_priv->last_frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 ADVANCE_RING();
568}
569
Dave Airlie056219e2007-07-11 16:17:42 +1000570static void r128_cce_dispatch_vertex(struct drm_device * dev, struct drm_buf * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 drm_r128_private_t *dev_priv = dev->dev_private;
573 drm_r128_buf_priv_t *buf_priv = buf->dev_private;
574 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
575 int format = sarea_priv->vc_format;
576 int offset = buf->bus_address;
577 int size = buf->used;
578 int prim = buf_priv->prim;
579 int i = 0;
580 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000581 DRM_DEBUG("buf=%d nbox=%d\n", buf->idx, sarea_priv->nbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000583 if (0)
584 r128_print_dirty("dispatch_vertex", sarea_priv->dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000586 if (buf->used) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 buf_priv->dispatched = 1;
588
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000589 if (sarea_priv->dirty & ~R128_UPLOAD_CLIPRECTS) {
590 r128_emit_state(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593 do {
594 /* Emit the next set of up to three cliprects */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000595 if (i < sarea_priv->nbox) {
596 r128_emit_clip_rects(dev_priv,
597 &sarea_priv->boxes[i],
598 sarea_priv->nbox - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
601 /* Emit the vertex buffer rendering commands */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000602 BEGIN_RING(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000604 OUT_RING(CCE_PACKET3(R128_3D_RNDR_GEN_INDX_PRIM, 3));
605 OUT_RING(offset);
606 OUT_RING(size);
607 OUT_RING(format);
608 OUT_RING(prim | R128_CCE_VC_CNTL_PRIM_WALK_LIST |
609 (size << R128_CCE_VC_CNTL_NUM_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 ADVANCE_RING();
612
613 i += 3;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000614 } while (i < sarea_priv->nbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000617 if (buf_priv->discard) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 buf_priv->age = dev_priv->sarea_priv->last_dispatch;
619
620 /* Emit the vertex buffer age */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000621 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000623 OUT_RING(CCE_PACKET0(R128_LAST_DISPATCH_REG, 0));
624 OUT_RING(buf_priv->age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 ADVANCE_RING();
627
628 buf->pending = 1;
629 buf->used = 0;
630 /* FIXME: Check dispatched field */
631 buf_priv->dispatched = 0;
632 }
633
634 dev_priv->sarea_priv->last_dispatch++;
635
636 sarea_priv->dirty &= ~R128_UPLOAD_CLIPRECTS;
637 sarea_priv->nbox = 0;
638}
639
Dave Airlieeddca552007-07-11 16:09:54 +1000640static void r128_cce_dispatch_indirect(struct drm_device * dev,
Dave Airlie056219e2007-07-11 16:17:42 +1000641 struct drm_buf * buf, int start, int end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 drm_r128_private_t *dev_priv = dev->dev_private;
644 drm_r128_buf_priv_t *buf_priv = buf->dev_private;
645 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000646 DRM_DEBUG("indirect: buf=%d s=0x%x e=0x%x\n", buf->idx, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000648 if (start != end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int offset = buf->bus_address + start;
650 int dwords = (end - start + 3) / sizeof(u32);
651
652 /* Indirect buffer data must be an even number of
653 * dwords, so if we've been given an odd number we must
654 * pad the data with a Type-2 CCE packet.
655 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000656 if (dwords & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 u32 *data = (u32 *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000658 ((char *)dev->agp_buffer_map->handle
659 + buf->offset + start);
660 data[dwords++] = cpu_to_le32(R128_CCE_PACKET2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662
663 buf_priv->dispatched = 1;
664
665 /* Fire off the indirect buffer */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000666 BEGIN_RING(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000668 OUT_RING(CCE_PACKET0(R128_PM4_IW_INDOFF, 1));
669 OUT_RING(offset);
670 OUT_RING(dwords);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 ADVANCE_RING();
673 }
674
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000675 if (buf_priv->discard) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 buf_priv->age = dev_priv->sarea_priv->last_dispatch;
677
678 /* Emit the indirect buffer age */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000679 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000681 OUT_RING(CCE_PACKET0(R128_LAST_DISPATCH_REG, 0));
682 OUT_RING(buf_priv->age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 ADVANCE_RING();
685
686 buf->pending = 1;
687 buf->used = 0;
688 /* FIXME: Check dispatched field */
689 buf_priv->dispatched = 0;
690 }
691
692 dev_priv->sarea_priv->last_dispatch++;
693}
694
Dave Airlieeddca552007-07-11 16:09:54 +1000695static void r128_cce_dispatch_indices(struct drm_device * dev,
Dave Airlie056219e2007-07-11 16:17:42 +1000696 struct drm_buf * buf,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000697 int start, int end, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 drm_r128_private_t *dev_priv = dev->dev_private;
700 drm_r128_buf_priv_t *buf_priv = buf->dev_private;
701 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
702 int format = sarea_priv->vc_format;
703 int offset = dev->agp_buffer_map->offset - dev_priv->cce_buffers_offset;
704 int prim = buf_priv->prim;
705 u32 *data;
706 int dwords;
707 int i = 0;
708 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000709 DRM_DEBUG("indices: s=%d e=%d c=%d\n", start, end, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000711 if (0)
712 r128_print_dirty("dispatch_indices", sarea_priv->dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000714 if (start != end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 buf_priv->dispatched = 1;
716
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000717 if (sarea_priv->dirty & ~R128_UPLOAD_CLIPRECTS) {
718 r128_emit_state(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
721 dwords = (end - start + 3) / sizeof(u32);
722
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000723 data = (u32 *) ((char *)dev->agp_buffer_map->handle
724 + buf->offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000726 data[0] = cpu_to_le32(CCE_PACKET3(R128_3D_RNDR_GEN_INDX_PRIM,
727 dwords - 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000729 data[1] = cpu_to_le32(offset);
730 data[2] = cpu_to_le32(R128_MAX_VB_VERTS);
731 data[3] = cpu_to_le32(format);
732 data[4] = cpu_to_le32((prim | R128_CCE_VC_CNTL_PRIM_WALK_IND |
733 (count << 16)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000735 if (count & 0x1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736#ifdef __LITTLE_ENDIAN
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000737 data[dwords - 1] &= 0x0000ffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000739 data[dwords - 1] &= 0xffff0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif
741 }
742
743 do {
744 /* Emit the next set of up to three cliprects */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000745 if (i < sarea_priv->nbox) {
746 r128_emit_clip_rects(dev_priv,
747 &sarea_priv->boxes[i],
748 sarea_priv->nbox - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000751 r128_cce_dispatch_indirect(dev, buf, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 i += 3;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000754 } while (i < sarea_priv->nbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000757 if (buf_priv->discard) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 buf_priv->age = dev_priv->sarea_priv->last_dispatch;
759
760 /* Emit the vertex buffer age */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000761 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000763 OUT_RING(CCE_PACKET0(R128_LAST_DISPATCH_REG, 0));
764 OUT_RING(buf_priv->age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 ADVANCE_RING();
767
768 buf->pending = 1;
769 /* FIXME: Check dispatched field */
770 buf_priv->dispatched = 0;
771 }
772
773 dev_priv->sarea_priv->last_dispatch++;
774
775 sarea_priv->dirty &= ~R128_UPLOAD_CLIPRECTS;
776 sarea_priv->nbox = 0;
777}
778
Eric Anholt6c340ea2007-08-25 20:23:09 +1000779static int r128_cce_dispatch_blit(struct drm_device * dev,
780 struct drm_file *file_priv,
781 drm_r128_blit_t * blit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +1000784 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +1000785 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 drm_r128_buf_priv_t *buf_priv;
787 u32 *data;
788 int dword_shift, dwords;
789 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000790 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /* The compiler won't optimize away a division by a variable,
793 * even if the only legal values are powers of two. Thus, we'll
794 * use a shift instead.
795 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000796 switch (blit->format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 case R128_DATATYPE_ARGB8888:
798 dword_shift = 0;
799 break;
800 case R128_DATATYPE_ARGB1555:
801 case R128_DATATYPE_RGB565:
802 case R128_DATATYPE_ARGB4444:
803 case R128_DATATYPE_YVYU422:
804 case R128_DATATYPE_VYUY422:
805 dword_shift = 1;
806 break;
807 case R128_DATATYPE_CI8:
808 case R128_DATATYPE_RGB8:
809 dword_shift = 2;
810 break;
811 default:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000812 DRM_ERROR("invalid blit format %d\n", blit->format);
Eric Anholt20caafa2007-08-25 19:22:43 +1000813 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
816 /* Flush the pixel cache, and mark the contents as Read Invalid.
817 * This ensures no pixel data gets mixed up with the texture
818 * data from the host data blit, otherwise part of the texture
819 * image may be corrupted.
820 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000821 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000823 OUT_RING(CCE_PACKET0(R128_PC_GUI_CTLSTAT, 0));
824 OUT_RING(R128_PC_RI_GUI | R128_PC_FLUSH_GUI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 ADVANCE_RING();
827
828 /* Dispatch the indirect buffer.
829 */
830 buf = dma->buflist[blit->idx];
831 buf_priv = buf->dev_private;
832
Eric Anholt6c340ea2007-08-25 20:23:09 +1000833 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000834 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +1000835 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +1000836 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000838 if (buf->pending) {
839 DRM_ERROR("sending pending buffer %d\n", blit->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +1000840 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
843 buf_priv->discard = 1;
844
845 dwords = (blit->width * blit->height) >> dword_shift;
846
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000847 data = (u32 *) ((char *)dev->agp_buffer_map->handle + buf->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000849 data[0] = cpu_to_le32(CCE_PACKET3(R128_CNTL_HOSTDATA_BLT, dwords + 6));
850 data[1] = cpu_to_le32((R128_GMC_DST_PITCH_OFFSET_CNTL |
851 R128_GMC_BRUSH_NONE |
852 (blit->format << 8) |
853 R128_GMC_SRC_DATATYPE_COLOR |
854 R128_ROP3_S |
855 R128_DP_SRC_SOURCE_HOST_DATA |
856 R128_GMC_CLR_CMP_CNTL_DIS |
857 R128_GMC_AUX_CLIP_DIS | R128_GMC_WR_MSK_DIS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000859 data[2] = cpu_to_le32((blit->pitch << 21) | (blit->offset >> 5));
860 data[3] = cpu_to_le32(0xffffffff);
861 data[4] = cpu_to_le32(0xffffffff);
862 data[5] = cpu_to_le32((blit->y << 16) | blit->x);
863 data[6] = cpu_to_le32((blit->height << 16) | blit->width);
864 data[7] = cpu_to_le32(dwords);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 buf->used = (dwords + 8) * sizeof(u32);
867
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000868 r128_cce_dispatch_indirect(dev, buf, 0, buf->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 /* Flush the pixel cache after the blit completes. This ensures
871 * the texture data is written out to memory before rendering
872 * continues.
873 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000874 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000876 OUT_RING(CCE_PACKET0(R128_PC_GUI_CTLSTAT, 0));
877 OUT_RING(R128_PC_FLUSH_GUI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 ADVANCE_RING();
880
881 return 0;
882}
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884/* ================================================================
885 * Tiled depth buffer management
886 *
887 * FIXME: These should all set the destination write mask for when we
888 * have hardware stencil support.
889 */
890
Dave Airlieeddca552007-07-11 16:09:54 +1000891static int r128_cce_dispatch_write_span(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000892 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 drm_r128_private_t *dev_priv = dev->dev_private;
895 int count, x, y;
896 u32 *buffer;
897 u8 *mask;
898 int i, buffer_size, mask_size;
899 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000900 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 count = depth->n;
903 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +1000904 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000906 if (DRM_COPY_FROM_USER(&x, depth->x, sizeof(x))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000907 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000909 if (DRM_COPY_FROM_USER(&y, depth->y, sizeof(y))) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000910 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912
913 buffer_size = depth->n * sizeof(u32);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000914 buffer = drm_alloc(buffer_size, DRM_MEM_BUFS);
915 if (buffer == NULL)
Eric Anholt20caafa2007-08-25 19:22:43 +1000916 return -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000917 if (DRM_COPY_FROM_USER(buffer, depth->buffer, buffer_size)) {
918 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +1000919 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921
922 mask_size = depth->n * sizeof(u8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000923 if (depth->mask) {
924 mask = drm_alloc(mask_size, DRM_MEM_BUFS);
925 if (mask == NULL) {
926 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +1000927 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000929 if (DRM_COPY_FROM_USER(mask, depth->mask, mask_size)) {
930 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
931 drm_free(mask, mask_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +1000932 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000935 for (i = 0; i < count; i++, x++) {
936 if (mask[i]) {
937 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000939 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
940 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
941 R128_GMC_BRUSH_SOLID_COLOR |
942 (dev_priv->depth_fmt << 8) |
943 R128_GMC_SRC_DATATYPE_COLOR |
944 R128_ROP3_P |
945 R128_GMC_CLR_CMP_CNTL_DIS |
946 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000948 OUT_RING(dev_priv->depth_pitch_offset_c);
949 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000951 OUT_RING((x << 16) | y);
952 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 ADVANCE_RING();
955 }
956 }
957
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000958 drm_free(mask, mask_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000960 for (i = 0; i < count; i++, x++) {
961 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000963 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
964 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
965 R128_GMC_BRUSH_SOLID_COLOR |
966 (dev_priv->depth_fmt << 8) |
967 R128_GMC_SRC_DATATYPE_COLOR |
968 R128_ROP3_P |
969 R128_GMC_CLR_CMP_CNTL_DIS |
970 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000972 OUT_RING(dev_priv->depth_pitch_offset_c);
973 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000975 OUT_RING((x << 16) | y);
976 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 ADVANCE_RING();
979 }
980 }
981
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000982 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 return 0;
985}
986
Dave Airlieeddca552007-07-11 16:09:54 +1000987static int r128_cce_dispatch_write_pixels(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000988 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
990 drm_r128_private_t *dev_priv = dev->dev_private;
991 int count, *x, *y;
992 u32 *buffer;
993 u8 *mask;
994 int i, xbuf_size, ybuf_size, buffer_size, mask_size;
995 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000996 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 count = depth->n;
999 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +10001000 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 xbuf_size = count * sizeof(*x);
1003 ybuf_size = count * sizeof(*y);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001004 x = drm_alloc(xbuf_size, DRM_MEM_BUFS);
1005 if (x == NULL) {
Eric Anholt20caafa2007-08-25 19:22:43 +10001006 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001008 y = drm_alloc(ybuf_size, DRM_MEM_BUFS);
1009 if (y == NULL) {
1010 drm_free(x, xbuf_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001011 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001013 if (DRM_COPY_FROM_USER(x, depth->x, xbuf_size)) {
1014 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1015 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001016 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001018 if (DRM_COPY_FROM_USER(y, depth->y, xbuf_size)) {
1019 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1020 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001021 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023
1024 buffer_size = depth->n * sizeof(u32);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001025 buffer = drm_alloc(buffer_size, DRM_MEM_BUFS);
1026 if (buffer == NULL) {
1027 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1028 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001029 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001031 if (DRM_COPY_FROM_USER(buffer, depth->buffer, buffer_size)) {
1032 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1033 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1034 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001035 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001038 if (depth->mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 mask_size = depth->n * sizeof(u8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001040 mask = drm_alloc(mask_size, DRM_MEM_BUFS);
1041 if (mask == NULL) {
1042 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1043 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1044 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001045 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001047 if (DRM_COPY_FROM_USER(mask, depth->mask, mask_size)) {
1048 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1049 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1050 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
1051 drm_free(mask, mask_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001052 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001055 for (i = 0; i < count; i++) {
1056 if (mask[i]) {
1057 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001059 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
1060 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
1061 R128_GMC_BRUSH_SOLID_COLOR |
1062 (dev_priv->depth_fmt << 8) |
1063 R128_GMC_SRC_DATATYPE_COLOR |
1064 R128_ROP3_P |
1065 R128_GMC_CLR_CMP_CNTL_DIS |
1066 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001068 OUT_RING(dev_priv->depth_pitch_offset_c);
1069 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001071 OUT_RING((x[i] << 16) | y[i]);
1072 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 ADVANCE_RING();
1075 }
1076 }
1077
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001078 drm_free(mask, mask_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001080 for (i = 0; i < count; i++) {
1081 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001083 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
1084 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
1085 R128_GMC_BRUSH_SOLID_COLOR |
1086 (dev_priv->depth_fmt << 8) |
1087 R128_GMC_SRC_DATATYPE_COLOR |
1088 R128_ROP3_P |
1089 R128_GMC_CLR_CMP_CNTL_DIS |
1090 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001092 OUT_RING(dev_priv->depth_pitch_offset_c);
1093 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001095 OUT_RING((x[i] << 16) | y[i]);
1096 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 ADVANCE_RING();
1099 }
1100 }
1101
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001102 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1103 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1104 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 return 0;
1107}
1108
Dave Airlieeddca552007-07-11 16:09:54 +10001109static int r128_cce_dispatch_read_span(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001110 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 drm_r128_private_t *dev_priv = dev->dev_private;
1113 int count, x, y;
1114 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001115 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 count = depth->n;
1118 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +10001119 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001121 if (DRM_COPY_FROM_USER(&x, depth->x, sizeof(x))) {
Eric Anholt20caafa2007-08-25 19:22:43 +10001122 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001124 if (DRM_COPY_FROM_USER(&y, depth->y, sizeof(y))) {
Eric Anholt20caafa2007-08-25 19:22:43 +10001125 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
1127
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001128 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001130 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
1131 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
1132 R128_GMC_DST_PITCH_OFFSET_CNTL |
1133 R128_GMC_BRUSH_NONE |
1134 (dev_priv->depth_fmt << 8) |
1135 R128_GMC_SRC_DATATYPE_COLOR |
1136 R128_ROP3_S |
1137 R128_DP_SRC_SOURCE_MEMORY |
1138 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001140 OUT_RING(dev_priv->depth_pitch_offset_c);
1141 OUT_RING(dev_priv->span_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001143 OUT_RING((x << 16) | y);
1144 OUT_RING((0 << 16) | 0);
1145 OUT_RING((count << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 ADVANCE_RING();
1148
1149 return 0;
1150}
1151
Dave Airlieeddca552007-07-11 16:09:54 +10001152static int r128_cce_dispatch_read_pixels(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001153 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 drm_r128_private_t *dev_priv = dev->dev_private;
1156 int count, *x, *y;
1157 int i, xbuf_size, ybuf_size;
1158 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001159 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 count = depth->n;
1162 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +10001163 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001165 if (count > dev_priv->depth_pitch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 count = dev_priv->depth_pitch;
1167 }
1168
1169 xbuf_size = count * sizeof(*x);
1170 ybuf_size = count * sizeof(*y);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001171 x = drm_alloc(xbuf_size, DRM_MEM_BUFS);
1172 if (x == NULL) {
Eric Anholt20caafa2007-08-25 19:22:43 +10001173 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001175 y = drm_alloc(ybuf_size, DRM_MEM_BUFS);
1176 if (y == NULL) {
1177 drm_free(x, xbuf_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001178 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001180 if (DRM_COPY_FROM_USER(x, depth->x, xbuf_size)) {
1181 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1182 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001183 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001185 if (DRM_COPY_FROM_USER(y, depth->y, ybuf_size)) {
1186 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1187 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Eric Anholt20caafa2007-08-25 19:22:43 +10001188 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001191 for (i = 0; i < count; i++) {
1192 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001194 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
1195 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
1196 R128_GMC_DST_PITCH_OFFSET_CNTL |
1197 R128_GMC_BRUSH_NONE |
1198 (dev_priv->depth_fmt << 8) |
1199 R128_GMC_SRC_DATATYPE_COLOR |
1200 R128_ROP3_S |
1201 R128_DP_SRC_SOURCE_MEMORY |
1202 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001204 OUT_RING(dev_priv->depth_pitch_offset_c);
1205 OUT_RING(dev_priv->span_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001207 OUT_RING((x[i] << 16) | y[i]);
1208 OUT_RING((i << 16) | 0);
1209 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 ADVANCE_RING();
1212 }
1213
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001214 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1215 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 return 0;
1218}
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220/* ================================================================
1221 * Polygon stipple
1222 */
1223
Dave Airlieeddca552007-07-11 16:09:54 +10001224static void r128_cce_dispatch_stipple(struct drm_device * dev, u32 * stipple)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 drm_r128_private_t *dev_priv = dev->dev_private;
1227 int i;
1228 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001229 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001231 BEGIN_RING(33);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001233 OUT_RING(CCE_PACKET0(R128_BRUSH_DATA0, 31));
1234 for (i = 0; i < 32; i++) {
1235 OUT_RING(stipple[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
1238 ADVANCE_RING();
1239}
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241/* ================================================================
1242 * IOCTL functions
1243 */
1244
Eric Anholtc153f452007-09-03 12:06:45 +10001245static int r128_cce_clear(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 drm_r128_private_t *dev_priv = dev->dev_private;
1248 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001249 drm_r128_clear_t *clear = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001250 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Eric Anholt6c340ea2007-08-25 20:23:09 +10001252 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001254 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001256 if (sarea_priv->nbox > R128_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 sarea_priv->nbox = R128_NR_SAREA_CLIPRECTS;
1258
Eric Anholtc153f452007-09-03 12:06:45 +10001259 r128_cce_dispatch_clear(dev, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 COMMIT_RING();
1261
1262 /* Make sure we restore the 3D state next time.
1263 */
1264 dev_priv->sarea_priv->dirty |= R128_UPLOAD_CONTEXT | R128_UPLOAD_MASKS;
1265
1266 return 0;
1267}
1268
Dave Airlieeddca552007-07-11 16:09:54 +10001269static int r128_do_init_pageflip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001272 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001274 dev_priv->crtc_offset = R128_READ(R128_CRTC_OFFSET);
1275 dev_priv->crtc_offset_cntl = R128_READ(R128_CRTC_OFFSET_CNTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001277 R128_WRITE(R128_CRTC_OFFSET, dev_priv->front_offset);
1278 R128_WRITE(R128_CRTC_OFFSET_CNTL,
1279 dev_priv->crtc_offset_cntl | R128_CRTC_OFFSET_FLIP_CNTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 dev_priv->page_flipping = 1;
1282 dev_priv->current_page = 0;
1283 dev_priv->sarea_priv->pfCurrentPage = dev_priv->current_page;
1284
1285 return 0;
1286}
1287
Dave Airlieeddca552007-07-11 16:09:54 +10001288static int r128_do_cleanup_pageflip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001291 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001293 R128_WRITE(R128_CRTC_OFFSET, dev_priv->crtc_offset);
1294 R128_WRITE(R128_CRTC_OFFSET_CNTL, dev_priv->crtc_offset_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 if (dev_priv->current_page != 0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001297 r128_cce_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 COMMIT_RING();
1299 }
1300
1301 dev_priv->page_flipping = 0;
1302 return 0;
1303}
1304
1305/* Swapping and flipping are different operations, need different ioctls.
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001306 * They can & should be intermixed to support multiple 3d windows.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 */
1308
Eric Anholtc153f452007-09-03 12:06:45 +10001309static int r128_cce_flip(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001312 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Eric Anholt6c340ea2007-08-25 20:23:09 +10001314 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001316 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001318 if (!dev_priv->page_flipping)
1319 r128_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001321 r128_cce_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 COMMIT_RING();
1324 return 0;
1325}
1326
Eric Anholtc153f452007-09-03 12:06:45 +10001327static int r128_cce_swap(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 drm_r128_private_t *dev_priv = dev->dev_private;
1330 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001331 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Eric Anholt6c340ea2007-08-25 20:23:09 +10001333 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001335 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001337 if (sarea_priv->nbox > R128_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 sarea_priv->nbox = R128_NR_SAREA_CLIPRECTS;
1339
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001340 r128_cce_dispatch_swap(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 dev_priv->sarea_priv->dirty |= (R128_UPLOAD_CONTEXT |
1342 R128_UPLOAD_MASKS);
1343
1344 COMMIT_RING();
1345 return 0;
1346}
1347
Eric Anholtc153f452007-09-03 12:06:45 +10001348static int r128_cce_vertex(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +10001351 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001352 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 drm_r128_buf_priv_t *buf_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001354 drm_r128_vertex_t *vertex = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Eric Anholt6c340ea2007-08-25 20:23:09 +10001356 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001358 if (!dev_priv) {
1359 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Eric Anholt20caafa2007-08-25 19:22:43 +10001360 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
1362
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001363 DRM_DEBUG("pid=%d index=%d count=%d discard=%d\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001364 DRM_CURRENTPID, vertex->idx, vertex->count, vertex->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Eric Anholtc153f452007-09-03 12:06:45 +10001366 if (vertex->idx < 0 || vertex->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001367 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001368 vertex->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001369 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
Eric Anholtc153f452007-09-03 12:06:45 +10001371 if (vertex->prim < 0 ||
1372 vertex->prim > R128_CCE_VC_CNTL_PRIM_TYPE_TRI_TYPE2) {
1373 DRM_ERROR("buffer prim %d\n", vertex->prim);
Eric Anholt20caafa2007-08-25 19:22:43 +10001374 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001377 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1378 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Eric Anholtc153f452007-09-03 12:06:45 +10001380 buf = dma->buflist[vertex->idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 buf_priv = buf->dev_private;
1382
Eric Anholt6c340ea2007-08-25 20:23:09 +10001383 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001384 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +10001385 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +10001386 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001388 if (buf->pending) {
Eric Anholtc153f452007-09-03 12:06:45 +10001389 DRM_ERROR("sending pending buffer %d\n", vertex->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +10001390 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392
Eric Anholtc153f452007-09-03 12:06:45 +10001393 buf->used = vertex->count;
1394 buf_priv->prim = vertex->prim;
1395 buf_priv->discard = vertex->discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001397 r128_cce_dispatch_vertex(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 COMMIT_RING();
1400 return 0;
1401}
1402
Eric Anholtc153f452007-09-03 12:06:45 +10001403static int r128_cce_indices(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +10001406 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001407 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 drm_r128_buf_priv_t *buf_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001409 drm_r128_indices_t *elts = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 int count;
1411
Eric Anholt6c340ea2007-08-25 20:23:09 +10001412 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001414 if (!dev_priv) {
1415 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Eric Anholt20caafa2007-08-25 19:22:43 +10001416 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001419 DRM_DEBUG("pid=%d buf=%d s=%d e=%d d=%d\n", DRM_CURRENTPID,
Eric Anholtc153f452007-09-03 12:06:45 +10001420 elts->idx, elts->start, elts->end, elts->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Eric Anholtc153f452007-09-03 12:06:45 +10001422 if (elts->idx < 0 || elts->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001423 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001424 elts->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001425 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
Eric Anholtc153f452007-09-03 12:06:45 +10001427 if (elts->prim < 0 ||
1428 elts->prim > R128_CCE_VC_CNTL_PRIM_TYPE_TRI_TYPE2) {
1429 DRM_ERROR("buffer prim %d\n", elts->prim);
Eric Anholt20caafa2007-08-25 19:22:43 +10001430 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001433 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1434 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Eric Anholtc153f452007-09-03 12:06:45 +10001436 buf = dma->buflist[elts->idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 buf_priv = buf->dev_private;
1438
Eric Anholt6c340ea2007-08-25 20:23:09 +10001439 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001440 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +10001441 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +10001442 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001444 if (buf->pending) {
Eric Anholtc153f452007-09-03 12:06:45 +10001445 DRM_ERROR("sending pending buffer %d\n", elts->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +10001446 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
1448
Eric Anholtc153f452007-09-03 12:06:45 +10001449 count = (elts->end - elts->start) / sizeof(u16);
1450 elts->start -= R128_INDEX_PRIM_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Eric Anholtc153f452007-09-03 12:06:45 +10001452 if (elts->start & 0x7) {
1453 DRM_ERROR("misaligned buffer 0x%x\n", elts->start);
Eric Anholt20caafa2007-08-25 19:22:43 +10001454 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
Eric Anholtc153f452007-09-03 12:06:45 +10001456 if (elts->start < buf->used) {
1457 DRM_ERROR("no header 0x%x - 0x%x\n", elts->start, buf->used);
Eric Anholt20caafa2007-08-25 19:22:43 +10001458 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460
Eric Anholtc153f452007-09-03 12:06:45 +10001461 buf->used = elts->end;
1462 buf_priv->prim = elts->prim;
1463 buf_priv->discard = elts->discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Eric Anholtc153f452007-09-03 12:06:45 +10001465 r128_cce_dispatch_indices(dev, buf, elts->start, elts->end, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 COMMIT_RING();
1468 return 0;
1469}
1470
Eric Anholtc153f452007-09-03 12:06:45 +10001471static int r128_cce_blit(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Dave Airliecdd55a22007-07-11 16:32:08 +10001473 struct drm_device_dma *dma = dev->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001475 drm_r128_blit_t *blit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 int ret;
1477
Eric Anholt6c340ea2007-08-25 20:23:09 +10001478 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Eric Anholtc153f452007-09-03 12:06:45 +10001480 DRM_DEBUG("pid=%d index=%d\n", DRM_CURRENTPID, blit->idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Eric Anholtc153f452007-09-03 12:06:45 +10001482 if (blit->idx < 0 || blit->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001483 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001484 blit->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001485 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
1487
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001488 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1489 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Eric Anholtc153f452007-09-03 12:06:45 +10001491 ret = r128_cce_dispatch_blit(dev, file_priv, blit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 COMMIT_RING();
1494 return ret;
1495}
1496
Eric Anholtc153f452007-09-03 12:06:45 +10001497static int r128_cce_depth(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001500 drm_r128_depth_t *depth = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 int ret;
1502
Eric Anholt6c340ea2007-08-25 20:23:09 +10001503 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001505 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Eric Anholt20caafa2007-08-25 19:22:43 +10001507 ret = -EINVAL;
Eric Anholtc153f452007-09-03 12:06:45 +10001508 switch (depth->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 case R128_WRITE_SPAN:
Eric Anholtc153f452007-09-03 12:06:45 +10001510 ret = r128_cce_dispatch_write_span(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 case R128_WRITE_PIXELS:
Eric Anholtc153f452007-09-03 12:06:45 +10001513 ret = r128_cce_dispatch_write_pixels(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001514 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 case R128_READ_SPAN:
Eric Anholtc153f452007-09-03 12:06:45 +10001516 ret = r128_cce_dispatch_read_span(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 case R128_READ_PIXELS:
Eric Anholtc153f452007-09-03 12:06:45 +10001519 ret = r128_cce_dispatch_read_pixels(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001520 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522
1523 COMMIT_RING();
1524 return ret;
1525}
1526
Eric Anholtc153f452007-09-03 12:06:45 +10001527static int r128_cce_stipple(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001530 drm_r128_stipple_t *stipple = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 u32 mask[32];
1532
Eric Anholt6c340ea2007-08-25 20:23:09 +10001533 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Eric Anholtc153f452007-09-03 12:06:45 +10001535 if (DRM_COPY_FROM_USER(&mask, stipple->mask, 32 * sizeof(u32)))
Eric Anholt20caafa2007-08-25 19:22:43 +10001536 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001538 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001540 r128_cce_dispatch_stipple(dev, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 COMMIT_RING();
1543 return 0;
1544}
1545
Eric Anholtc153f452007-09-03 12:06:45 +10001546static int r128_cce_indirect(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +10001549 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001550 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 drm_r128_buf_priv_t *buf_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001552 drm_r128_indirect_t *indirect = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553#if 0
1554 RING_LOCALS;
1555#endif
1556
Eric Anholt6c340ea2007-08-25 20:23:09 +10001557 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001559 if (!dev_priv) {
1560 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Eric Anholt20caafa2007-08-25 19:22:43 +10001561 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001564 DRM_DEBUG("indirect: idx=%d s=%d e=%d d=%d\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001565 indirect->idx, indirect->start, indirect->end,
1566 indirect->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Eric Anholtc153f452007-09-03 12:06:45 +10001568 if (indirect->idx < 0 || indirect->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001569 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001570 indirect->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001571 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573
Eric Anholtc153f452007-09-03 12:06:45 +10001574 buf = dma->buflist[indirect->idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 buf_priv = buf->dev_private;
1576
Eric Anholt6c340ea2007-08-25 20:23:09 +10001577 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001578 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +10001579 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +10001580 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001582 if (buf->pending) {
Eric Anholtc153f452007-09-03 12:06:45 +10001583 DRM_ERROR("sending pending buffer %d\n", indirect->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +10001584 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586
Eric Anholtc153f452007-09-03 12:06:45 +10001587 if (indirect->start < buf->used) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001588 DRM_ERROR("reusing indirect: start=0x%x actual=0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001589 indirect->start, buf->used);
Eric Anholt20caafa2007-08-25 19:22:43 +10001590 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001593 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1594 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Eric Anholtc153f452007-09-03 12:06:45 +10001596 buf->used = indirect->end;
1597 buf_priv->discard = indirect->discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599#if 0
1600 /* Wait for the 3D stream to idle before the indirect buffer
1601 * containing 2D acceleration commands is processed.
1602 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001603 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 RADEON_WAIT_UNTIL_3D_IDLE();
1605 ADVANCE_RING();
1606#endif
1607
1608 /* Dispatch the indirect buffer full of commands from the
1609 * X server. This is insecure and is thus only available to
1610 * privileged clients.
1611 */
Eric Anholtc153f452007-09-03 12:06:45 +10001612 r128_cce_dispatch_indirect(dev, buf, indirect->start, indirect->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 COMMIT_RING();
1615 return 0;
1616}
1617
Eric Anholtc153f452007-09-03 12:06:45 +10001618static int r128_getparam(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001621 drm_r128_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 int value;
1623
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001624 if (!dev_priv) {
1625 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Eric Anholt20caafa2007-08-25 19:22:43 +10001626 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
1628
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001629 DRM_DEBUG("pid=%d\n", DRM_CURRENTPID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Eric Anholtc153f452007-09-03 12:06:45 +10001631 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 case R128_PARAM_IRQ_NR:
1633 value = dev->irq;
1634 break;
1635 default:
Eric Anholt20caafa2007-08-25 19:22:43 +10001636 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638
Eric Anholtc153f452007-09-03 12:06:45 +10001639 if (DRM_COPY_TO_USER(param->value, &value, sizeof(int))) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001640 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001641 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return 0;
1645}
1646
Eric Anholt6c340ea2007-08-25 20:23:09 +10001647void r128_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001649 if (dev->dev_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001651 if (dev_priv->page_flipping) {
1652 r128_do_cleanup_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
Dave Airlieeddca552007-07-11 16:09:54 +10001657void r128_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001659 r128_do_cleanup_cce(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
Eric Anholtc153f452007-09-03 12:06:45 +10001662struct drm_ioctl_desc r128_ioctls[] = {
1663 DRM_IOCTL_DEF(DRM_R128_INIT, r128_cce_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1664 DRM_IOCTL_DEF(DRM_R128_CCE_START, r128_cce_start, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1665 DRM_IOCTL_DEF(DRM_R128_CCE_STOP, r128_cce_stop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1666 DRM_IOCTL_DEF(DRM_R128_CCE_RESET, r128_cce_reset, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1667 DRM_IOCTL_DEF(DRM_R128_CCE_IDLE, r128_cce_idle, DRM_AUTH),
1668 DRM_IOCTL_DEF(DRM_R128_RESET, r128_engine_reset, DRM_AUTH),
1669 DRM_IOCTL_DEF(DRM_R128_FULLSCREEN, r128_fullscreen, DRM_AUTH),
1670 DRM_IOCTL_DEF(DRM_R128_SWAP, r128_cce_swap, DRM_AUTH),
1671 DRM_IOCTL_DEF(DRM_R128_FLIP, r128_cce_flip, DRM_AUTH),
1672 DRM_IOCTL_DEF(DRM_R128_CLEAR, r128_cce_clear, DRM_AUTH),
1673 DRM_IOCTL_DEF(DRM_R128_VERTEX, r128_cce_vertex, DRM_AUTH),
1674 DRM_IOCTL_DEF(DRM_R128_INDICES, r128_cce_indices, DRM_AUTH),
1675 DRM_IOCTL_DEF(DRM_R128_BLIT, r128_cce_blit, DRM_AUTH),
1676 DRM_IOCTL_DEF(DRM_R128_DEPTH, r128_cce_depth, DRM_AUTH),
1677 DRM_IOCTL_DEF(DRM_R128_STIPPLE, r128_cce_stipple, DRM_AUTH),
1678 DRM_IOCTL_DEF(DRM_R128_INDIRECT, r128_cce_indirect, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1679 DRM_IOCTL_DEF(DRM_R128_GETPARAM, r128_getparam, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680};
1681
1682int r128_max_ioctl = DRM_ARRAY_SIZE(r128_ioctls);