blob: 1fdfeb876a8e152f83c1cc011b65634bf7f24a4a [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
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000779static int r128_cce_dispatch_blit(DRMFILE filp,
Dave Airlieeddca552007-07-11 16:09:54 +1000780 struct drm_device * dev, drm_r128_blit_t * blit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 drm_r128_private_t *dev_priv = dev->dev_private;
783 drm_device_dma_t *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +1000784 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 drm_r128_buf_priv_t *buf_priv;
786 u32 *data;
787 int dword_shift, dwords;
788 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000789 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /* The compiler won't optimize away a division by a variable,
792 * even if the only legal values are powers of two. Thus, we'll
793 * use a shift instead.
794 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000795 switch (blit->format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 case R128_DATATYPE_ARGB8888:
797 dword_shift = 0;
798 break;
799 case R128_DATATYPE_ARGB1555:
800 case R128_DATATYPE_RGB565:
801 case R128_DATATYPE_ARGB4444:
802 case R128_DATATYPE_YVYU422:
803 case R128_DATATYPE_VYUY422:
804 dword_shift = 1;
805 break;
806 case R128_DATATYPE_CI8:
807 case R128_DATATYPE_RGB8:
808 dword_shift = 2;
809 break;
810 default:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000811 DRM_ERROR("invalid blit format %d\n", blit->format);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return DRM_ERR(EINVAL);
813 }
814
815 /* Flush the pixel cache, and mark the contents as Read Invalid.
816 * This ensures no pixel data gets mixed up with the texture
817 * data from the host data blit, otherwise part of the texture
818 * image may be corrupted.
819 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000820 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000822 OUT_RING(CCE_PACKET0(R128_PC_GUI_CTLSTAT, 0));
823 OUT_RING(R128_PC_RI_GUI | R128_PC_FLUSH_GUI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 ADVANCE_RING();
826
827 /* Dispatch the indirect buffer.
828 */
829 buf = dma->buflist[blit->idx];
830 buf_priv = buf->dev_private;
831
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000832 if (buf->filp != filp) {
833 DRM_ERROR("process %d using buffer owned by %p\n",
834 DRM_CURRENTPID, buf->filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return DRM_ERR(EINVAL);
836 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000837 if (buf->pending) {
838 DRM_ERROR("sending pending buffer %d\n", blit->idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return DRM_ERR(EINVAL);
840 }
841
842 buf_priv->discard = 1;
843
844 dwords = (blit->width * blit->height) >> dword_shift;
845
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000846 data = (u32 *) ((char *)dev->agp_buffer_map->handle + buf->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000848 data[0] = cpu_to_le32(CCE_PACKET3(R128_CNTL_HOSTDATA_BLT, dwords + 6));
849 data[1] = cpu_to_le32((R128_GMC_DST_PITCH_OFFSET_CNTL |
850 R128_GMC_BRUSH_NONE |
851 (blit->format << 8) |
852 R128_GMC_SRC_DATATYPE_COLOR |
853 R128_ROP3_S |
854 R128_DP_SRC_SOURCE_HOST_DATA |
855 R128_GMC_CLR_CMP_CNTL_DIS |
856 R128_GMC_AUX_CLIP_DIS | R128_GMC_WR_MSK_DIS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000858 data[2] = cpu_to_le32((blit->pitch << 21) | (blit->offset >> 5));
859 data[3] = cpu_to_le32(0xffffffff);
860 data[4] = cpu_to_le32(0xffffffff);
861 data[5] = cpu_to_le32((blit->y << 16) | blit->x);
862 data[6] = cpu_to_le32((blit->height << 16) | blit->width);
863 data[7] = cpu_to_le32(dwords);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 buf->used = (dwords + 8) * sizeof(u32);
866
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000867 r128_cce_dispatch_indirect(dev, buf, 0, buf->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 /* Flush the pixel cache after the blit completes. This ensures
870 * the texture data is written out to memory before rendering
871 * continues.
872 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000873 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000875 OUT_RING(CCE_PACKET0(R128_PC_GUI_CTLSTAT, 0));
876 OUT_RING(R128_PC_FLUSH_GUI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 ADVANCE_RING();
879
880 return 0;
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/* ================================================================
884 * Tiled depth buffer management
885 *
886 * FIXME: These should all set the destination write mask for when we
887 * have hardware stencil support.
888 */
889
Dave Airlieeddca552007-07-11 16:09:54 +1000890static int r128_cce_dispatch_write_span(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000891 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 drm_r128_private_t *dev_priv = dev->dev_private;
894 int count, x, y;
895 u32 *buffer;
896 u8 *mask;
897 int i, buffer_size, mask_size;
898 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000899 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 count = depth->n;
902 if (count > 4096 || count <= 0)
903 return DRM_ERR(EMSGSIZE);
904
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000905 if (DRM_COPY_FROM_USER(&x, depth->x, sizeof(x))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return DRM_ERR(EFAULT);
907 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000908 if (DRM_COPY_FROM_USER(&y, depth->y, sizeof(y))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return DRM_ERR(EFAULT);
910 }
911
912 buffer_size = depth->n * sizeof(u32);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000913 buffer = drm_alloc(buffer_size, DRM_MEM_BUFS);
914 if (buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return DRM_ERR(ENOMEM);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000916 if (DRM_COPY_FROM_USER(buffer, depth->buffer, buffer_size)) {
917 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return DRM_ERR(EFAULT);
919 }
920
921 mask_size = depth->n * sizeof(u8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000922 if (depth->mask) {
923 mask = drm_alloc(mask_size, DRM_MEM_BUFS);
924 if (mask == NULL) {
925 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return DRM_ERR(ENOMEM);
927 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000928 if (DRM_COPY_FROM_USER(mask, depth->mask, mask_size)) {
929 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
930 drm_free(mask, mask_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return DRM_ERR(EFAULT);
932 }
933
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000934 for (i = 0; i < count; i++, x++) {
935 if (mask[i]) {
936 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000938 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
939 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
940 R128_GMC_BRUSH_SOLID_COLOR |
941 (dev_priv->depth_fmt << 8) |
942 R128_GMC_SRC_DATATYPE_COLOR |
943 R128_ROP3_P |
944 R128_GMC_CLR_CMP_CNTL_DIS |
945 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000947 OUT_RING(dev_priv->depth_pitch_offset_c);
948 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000950 OUT_RING((x << 16) | y);
951 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 ADVANCE_RING();
954 }
955 }
956
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000957 drm_free(mask, mask_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000959 for (i = 0; i < count; i++, x++) {
960 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000962 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
963 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
964 R128_GMC_BRUSH_SOLID_COLOR |
965 (dev_priv->depth_fmt << 8) |
966 R128_GMC_SRC_DATATYPE_COLOR |
967 R128_ROP3_P |
968 R128_GMC_CLR_CMP_CNTL_DIS |
969 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000971 OUT_RING(dev_priv->depth_pitch_offset_c);
972 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000974 OUT_RING((x << 16) | y);
975 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 ADVANCE_RING();
978 }
979 }
980
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000981 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 return 0;
984}
985
Dave Airlieeddca552007-07-11 16:09:54 +1000986static int r128_cce_dispatch_write_pixels(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000987 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 drm_r128_private_t *dev_priv = dev->dev_private;
990 int count, *x, *y;
991 u32 *buffer;
992 u8 *mask;
993 int i, xbuf_size, ybuf_size, buffer_size, mask_size;
994 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000995 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 count = depth->n;
998 if (count > 4096 || count <= 0)
999 return DRM_ERR(EMSGSIZE);
1000
1001 xbuf_size = count * sizeof(*x);
1002 ybuf_size = count * sizeof(*y);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001003 x = drm_alloc(xbuf_size, DRM_MEM_BUFS);
1004 if (x == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return DRM_ERR(ENOMEM);
1006 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001007 y = drm_alloc(ybuf_size, DRM_MEM_BUFS);
1008 if (y == NULL) {
1009 drm_free(x, xbuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return DRM_ERR(ENOMEM);
1011 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001012 if (DRM_COPY_FROM_USER(x, depth->x, xbuf_size)) {
1013 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1014 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return DRM_ERR(EFAULT);
1016 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001017 if (DRM_COPY_FROM_USER(y, depth->y, xbuf_size)) {
1018 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1019 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return DRM_ERR(EFAULT);
1021 }
1022
1023 buffer_size = depth->n * sizeof(u32);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001024 buffer = drm_alloc(buffer_size, DRM_MEM_BUFS);
1025 if (buffer == NULL) {
1026 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1027 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return DRM_ERR(ENOMEM);
1029 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001030 if (DRM_COPY_FROM_USER(buffer, depth->buffer, buffer_size)) {
1031 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1032 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1033 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return DRM_ERR(EFAULT);
1035 }
1036
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001037 if (depth->mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 mask_size = depth->n * sizeof(u8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001039 mask = drm_alloc(mask_size, DRM_MEM_BUFS);
1040 if (mask == NULL) {
1041 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1042 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1043 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return DRM_ERR(ENOMEM);
1045 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001046 if (DRM_COPY_FROM_USER(mask, depth->mask, mask_size)) {
1047 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1048 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1049 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
1050 drm_free(mask, mask_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return DRM_ERR(EFAULT);
1052 }
1053
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001054 for (i = 0; i < count; i++) {
1055 if (mask[i]) {
1056 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001058 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
1059 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
1060 R128_GMC_BRUSH_SOLID_COLOR |
1061 (dev_priv->depth_fmt << 8) |
1062 R128_GMC_SRC_DATATYPE_COLOR |
1063 R128_ROP3_P |
1064 R128_GMC_CLR_CMP_CNTL_DIS |
1065 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001067 OUT_RING(dev_priv->depth_pitch_offset_c);
1068 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001070 OUT_RING((x[i] << 16) | y[i]);
1071 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 ADVANCE_RING();
1074 }
1075 }
1076
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001077 drm_free(mask, mask_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001079 for (i = 0; i < count; i++) {
1080 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001082 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
1083 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
1084 R128_GMC_BRUSH_SOLID_COLOR |
1085 (dev_priv->depth_fmt << 8) |
1086 R128_GMC_SRC_DATATYPE_COLOR |
1087 R128_ROP3_P |
1088 R128_GMC_CLR_CMP_CNTL_DIS |
1089 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001091 OUT_RING(dev_priv->depth_pitch_offset_c);
1092 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001094 OUT_RING((x[i] << 16) | y[i]);
1095 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 ADVANCE_RING();
1098 }
1099 }
1100
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001101 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1102 drm_free(y, ybuf_size, DRM_MEM_BUFS);
1103 drm_free(buffer, buffer_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 return 0;
1106}
1107
Dave Airlieeddca552007-07-11 16:09:54 +10001108static int r128_cce_dispatch_read_span(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001109 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 drm_r128_private_t *dev_priv = dev->dev_private;
1112 int count, x, y;
1113 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001114 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 count = depth->n;
1117 if (count > 4096 || count <= 0)
1118 return DRM_ERR(EMSGSIZE);
1119
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001120 if (DRM_COPY_FROM_USER(&x, depth->x, sizeof(x))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return DRM_ERR(EFAULT);
1122 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001123 if (DRM_COPY_FROM_USER(&y, depth->y, sizeof(y))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return DRM_ERR(EFAULT);
1125 }
1126
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001127 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001129 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
1130 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
1131 R128_GMC_DST_PITCH_OFFSET_CNTL |
1132 R128_GMC_BRUSH_NONE |
1133 (dev_priv->depth_fmt << 8) |
1134 R128_GMC_SRC_DATATYPE_COLOR |
1135 R128_ROP3_S |
1136 R128_DP_SRC_SOURCE_MEMORY |
1137 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001139 OUT_RING(dev_priv->depth_pitch_offset_c);
1140 OUT_RING(dev_priv->span_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001142 OUT_RING((x << 16) | y);
1143 OUT_RING((0 << 16) | 0);
1144 OUT_RING((count << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 ADVANCE_RING();
1147
1148 return 0;
1149}
1150
Dave Airlieeddca552007-07-11 16:09:54 +10001151static int r128_cce_dispatch_read_pixels(struct drm_device * dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001152 drm_r128_depth_t * depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 drm_r128_private_t *dev_priv = dev->dev_private;
1155 int count, *x, *y;
1156 int i, xbuf_size, ybuf_size;
1157 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001158 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 count = depth->n;
1161 if (count > 4096 || count <= 0)
1162 return DRM_ERR(EMSGSIZE);
1163
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001164 if (count > dev_priv->depth_pitch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 count = dev_priv->depth_pitch;
1166 }
1167
1168 xbuf_size = count * sizeof(*x);
1169 ybuf_size = count * sizeof(*y);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001170 x = drm_alloc(xbuf_size, DRM_MEM_BUFS);
1171 if (x == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return DRM_ERR(ENOMEM);
1173 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001174 y = drm_alloc(ybuf_size, DRM_MEM_BUFS);
1175 if (y == NULL) {
1176 drm_free(x, xbuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return DRM_ERR(ENOMEM);
1178 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001179 if (DRM_COPY_FROM_USER(x, depth->x, xbuf_size)) {
1180 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1181 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return DRM_ERR(EFAULT);
1183 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001184 if (DRM_COPY_FROM_USER(y, depth->y, ybuf_size)) {
1185 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1186 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return DRM_ERR(EFAULT);
1188 }
1189
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001190 for (i = 0; i < count; i++) {
1191 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001193 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
1194 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
1195 R128_GMC_DST_PITCH_OFFSET_CNTL |
1196 R128_GMC_BRUSH_NONE |
1197 (dev_priv->depth_fmt << 8) |
1198 R128_GMC_SRC_DATATYPE_COLOR |
1199 R128_ROP3_S |
1200 R128_DP_SRC_SOURCE_MEMORY |
1201 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001203 OUT_RING(dev_priv->depth_pitch_offset_c);
1204 OUT_RING(dev_priv->span_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001206 OUT_RING((x[i] << 16) | y[i]);
1207 OUT_RING((i << 16) | 0);
1208 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 ADVANCE_RING();
1211 }
1212
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001213 drm_free(x, xbuf_size, DRM_MEM_BUFS);
1214 drm_free(y, ybuf_size, DRM_MEM_BUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 return 0;
1217}
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219/* ================================================================
1220 * Polygon stipple
1221 */
1222
Dave Airlieeddca552007-07-11 16:09:54 +10001223static void r128_cce_dispatch_stipple(struct drm_device * dev, u32 * stipple)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 drm_r128_private_t *dev_priv = dev->dev_private;
1226 int i;
1227 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001228 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001230 BEGIN_RING(33);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001232 OUT_RING(CCE_PACKET0(R128_BRUSH_DATA0, 31));
1233 for (i = 0; i < 32; i++) {
1234 OUT_RING(stipple[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236
1237 ADVANCE_RING();
1238}
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240/* ================================================================
1241 * IOCTL functions
1242 */
1243
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001244static int r128_cce_clear(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
1246 DRM_DEVICE;
1247 drm_r128_private_t *dev_priv = dev->dev_private;
1248 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
1249 drm_r128_clear_t clear;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001250 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001252 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001254 DRM_COPY_FROM_USER_IOCTL(clear, (drm_r128_clear_t __user *) data,
1255 sizeof(clear));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001257 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001259 if (sarea_priv->nbox > R128_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 sarea_priv->nbox = R128_NR_SAREA_CLIPRECTS;
1261
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001262 r128_cce_dispatch_clear(dev, &clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 COMMIT_RING();
1264
1265 /* Make sure we restore the 3D state next time.
1266 */
1267 dev_priv->sarea_priv->dirty |= R128_UPLOAD_CONTEXT | R128_UPLOAD_MASKS;
1268
1269 return 0;
1270}
1271
Dave Airlieeddca552007-07-11 16:09:54 +10001272static int r128_do_init_pageflip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
1274 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001275 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001277 dev_priv->crtc_offset = R128_READ(R128_CRTC_OFFSET);
1278 dev_priv->crtc_offset_cntl = R128_READ(R128_CRTC_OFFSET_CNTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001280 R128_WRITE(R128_CRTC_OFFSET, dev_priv->front_offset);
1281 R128_WRITE(R128_CRTC_OFFSET_CNTL,
1282 dev_priv->crtc_offset_cntl | R128_CRTC_OFFSET_FLIP_CNTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 dev_priv->page_flipping = 1;
1285 dev_priv->current_page = 0;
1286 dev_priv->sarea_priv->pfCurrentPage = dev_priv->current_page;
1287
1288 return 0;
1289}
1290
Dave Airlieeddca552007-07-11 16:09:54 +10001291static int r128_do_cleanup_pageflip(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
1293 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001294 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001296 R128_WRITE(R128_CRTC_OFFSET, dev_priv->crtc_offset);
1297 R128_WRITE(R128_CRTC_OFFSET_CNTL, dev_priv->crtc_offset_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 if (dev_priv->current_page != 0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001300 r128_cce_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 COMMIT_RING();
1302 }
1303
1304 dev_priv->page_flipping = 0;
1305 return 0;
1306}
1307
1308/* Swapping and flipping are different operations, need different ioctls.
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001309 * They can & should be intermixed to support multiple 3d windows.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 */
1311
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001312static int r128_cce_flip(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 DRM_DEVICE;
1315 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001316 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001318 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001320 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001322 if (!dev_priv->page_flipping)
1323 r128_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001325 r128_cce_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 COMMIT_RING();
1328 return 0;
1329}
1330
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001331static int r128_cce_swap(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
1333 DRM_DEVICE;
1334 drm_r128_private_t *dev_priv = dev->dev_private;
1335 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001336 DRM_DEBUG("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001338 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001340 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001342 if (sarea_priv->nbox > R128_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 sarea_priv->nbox = R128_NR_SAREA_CLIPRECTS;
1344
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001345 r128_cce_dispatch_swap(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 dev_priv->sarea_priv->dirty |= (R128_UPLOAD_CONTEXT |
1347 R128_UPLOAD_MASKS);
1348
1349 COMMIT_RING();
1350 return 0;
1351}
1352
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001353static int r128_cce_vertex(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
1355 DRM_DEVICE;
1356 drm_r128_private_t *dev_priv = dev->dev_private;
1357 drm_device_dma_t *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001358 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 drm_r128_buf_priv_t *buf_priv;
1360 drm_r128_vertex_t vertex;
1361
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001362 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001364 if (!dev_priv) {
1365 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return DRM_ERR(EINVAL);
1367 }
1368
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001369 DRM_COPY_FROM_USER_IOCTL(vertex, (drm_r128_vertex_t __user *) data,
1370 sizeof(vertex));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001372 DRM_DEBUG("pid=%d index=%d count=%d discard=%d\n",
1373 DRM_CURRENTPID, vertex.idx, vertex.count, vertex.discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001375 if (vertex.idx < 0 || vertex.idx >= dma->buf_count) {
1376 DRM_ERROR("buffer index %d (of %d max)\n",
1377 vertex.idx, dma->buf_count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return DRM_ERR(EINVAL);
1379 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001380 if (vertex.prim < 0 ||
1381 vertex.prim > R128_CCE_VC_CNTL_PRIM_TYPE_TRI_TYPE2) {
1382 DRM_ERROR("buffer prim %d\n", vertex.prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return DRM_ERR(EINVAL);
1384 }
1385
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001386 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1387 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 buf = dma->buflist[vertex.idx];
1390 buf_priv = buf->dev_private;
1391
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001392 if (buf->filp != filp) {
1393 DRM_ERROR("process %d using buffer owned by %p\n",
1394 DRM_CURRENTPID, buf->filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return DRM_ERR(EINVAL);
1396 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001397 if (buf->pending) {
1398 DRM_ERROR("sending pending buffer %d\n", vertex.idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return DRM_ERR(EINVAL);
1400 }
1401
1402 buf->used = vertex.count;
1403 buf_priv->prim = vertex.prim;
1404 buf_priv->discard = vertex.discard;
1405
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001406 r128_cce_dispatch_vertex(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 COMMIT_RING();
1409 return 0;
1410}
1411
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001412static int r128_cce_indices(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 DRM_DEVICE;
1415 drm_r128_private_t *dev_priv = dev->dev_private;
1416 drm_device_dma_t *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001417 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 drm_r128_buf_priv_t *buf_priv;
1419 drm_r128_indices_t elts;
1420 int count;
1421
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001422 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001424 if (!dev_priv) {
1425 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return DRM_ERR(EINVAL);
1427 }
1428
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001429 DRM_COPY_FROM_USER_IOCTL(elts, (drm_r128_indices_t __user *) data,
1430 sizeof(elts));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001432 DRM_DEBUG("pid=%d buf=%d s=%d e=%d d=%d\n", DRM_CURRENTPID,
1433 elts.idx, elts.start, elts.end, elts.discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001435 if (elts.idx < 0 || elts.idx >= dma->buf_count) {
1436 DRM_ERROR("buffer index %d (of %d max)\n",
1437 elts.idx, dma->buf_count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return DRM_ERR(EINVAL);
1439 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001440 if (elts.prim < 0 || elts.prim > R128_CCE_VC_CNTL_PRIM_TYPE_TRI_TYPE2) {
1441 DRM_ERROR("buffer prim %d\n", elts.prim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return DRM_ERR(EINVAL);
1443 }
1444
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001445 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1446 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 buf = dma->buflist[elts.idx];
1449 buf_priv = buf->dev_private;
1450
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001451 if (buf->filp != filp) {
1452 DRM_ERROR("process %d using buffer owned by %p\n",
1453 DRM_CURRENTPID, buf->filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return DRM_ERR(EINVAL);
1455 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001456 if (buf->pending) {
1457 DRM_ERROR("sending pending buffer %d\n", elts.idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return DRM_ERR(EINVAL);
1459 }
1460
1461 count = (elts.end - elts.start) / sizeof(u16);
1462 elts.start -= R128_INDEX_PRIM_OFFSET;
1463
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001464 if (elts.start & 0x7) {
1465 DRM_ERROR("misaligned buffer 0x%x\n", elts.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return DRM_ERR(EINVAL);
1467 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001468 if (elts.start < buf->used) {
1469 DRM_ERROR("no header 0x%x - 0x%x\n", elts.start, buf->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return DRM_ERR(EINVAL);
1471 }
1472
1473 buf->used = elts.end;
1474 buf_priv->prim = elts.prim;
1475 buf_priv->discard = elts.discard;
1476
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001477 r128_cce_dispatch_indices(dev, buf, elts.start, elts.end, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 COMMIT_RING();
1480 return 0;
1481}
1482
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001483static int r128_cce_blit(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
1485 DRM_DEVICE;
1486 drm_device_dma_t *dma = dev->dma;
1487 drm_r128_private_t *dev_priv = dev->dev_private;
1488 drm_r128_blit_t blit;
1489 int ret;
1490
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001491 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001493 DRM_COPY_FROM_USER_IOCTL(blit, (drm_r128_blit_t __user *) data,
1494 sizeof(blit));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001496 DRM_DEBUG("pid=%d index=%d\n", DRM_CURRENTPID, blit.idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001498 if (blit.idx < 0 || blit.idx >= dma->buf_count) {
1499 DRM_ERROR("buffer index %d (of %d max)\n",
1500 blit.idx, dma->buf_count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return DRM_ERR(EINVAL);
1502 }
1503
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001504 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1505 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001507 ret = r128_cce_dispatch_blit(filp, dev, &blit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 COMMIT_RING();
1510 return ret;
1511}
1512
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001513static int r128_cce_depth(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 DRM_DEVICE;
1516 drm_r128_private_t *dev_priv = dev->dev_private;
1517 drm_r128_depth_t depth;
1518 int ret;
1519
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001520 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001522 DRM_COPY_FROM_USER_IOCTL(depth, (drm_r128_depth_t __user *) data,
1523 sizeof(depth));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001525 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 ret = DRM_ERR(EINVAL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001528 switch (depth.func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 case R128_WRITE_SPAN:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001530 ret = r128_cce_dispatch_write_span(dev, &depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001531 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 case R128_WRITE_PIXELS:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001533 ret = r128_cce_dispatch_write_pixels(dev, &depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001534 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 case R128_READ_SPAN:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001536 ret = r128_cce_dispatch_read_span(dev, &depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001537 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 case R128_READ_PIXELS:
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001539 ret = r128_cce_dispatch_read_pixels(dev, &depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001540 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
1543 COMMIT_RING();
1544 return ret;
1545}
1546
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001547static int r128_cce_stipple(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 DRM_DEVICE;
1550 drm_r128_private_t *dev_priv = dev->dev_private;
1551 drm_r128_stipple_t stipple;
1552 u32 mask[32];
1553
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001554 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001556 DRM_COPY_FROM_USER_IOCTL(stipple, (drm_r128_stipple_t __user *) data,
1557 sizeof(stipple));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001559 if (DRM_COPY_FROM_USER(&mask, stipple.mask, 32 * sizeof(u32)))
1560 return DRM_ERR(EFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001562 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001564 r128_cce_dispatch_stipple(dev, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 COMMIT_RING();
1567 return 0;
1568}
1569
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001570static int r128_cce_indirect(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 DRM_DEVICE;
1573 drm_r128_private_t *dev_priv = dev->dev_private;
1574 drm_device_dma_t *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001575 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 drm_r128_buf_priv_t *buf_priv;
1577 drm_r128_indirect_t indirect;
1578#if 0
1579 RING_LOCALS;
1580#endif
1581
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001582 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001584 if (!dev_priv) {
1585 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return DRM_ERR(EINVAL);
1587 }
1588
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001589 DRM_COPY_FROM_USER_IOCTL(indirect, (drm_r128_indirect_t __user *) data,
1590 sizeof(indirect));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001592 DRM_DEBUG("indirect: idx=%d s=%d e=%d d=%d\n",
1593 indirect.idx, indirect.start, indirect.end, indirect.discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001595 if (indirect.idx < 0 || indirect.idx >= dma->buf_count) {
1596 DRM_ERROR("buffer index %d (of %d max)\n",
1597 indirect.idx, dma->buf_count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return DRM_ERR(EINVAL);
1599 }
1600
1601 buf = dma->buflist[indirect.idx];
1602 buf_priv = buf->dev_private;
1603
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001604 if (buf->filp != filp) {
1605 DRM_ERROR("process %d using buffer owned by %p\n",
1606 DRM_CURRENTPID, buf->filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return DRM_ERR(EINVAL);
1608 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001609 if (buf->pending) {
1610 DRM_ERROR("sending pending buffer %d\n", indirect.idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return DRM_ERR(EINVAL);
1612 }
1613
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001614 if (indirect.start < buf->used) {
1615 DRM_ERROR("reusing indirect: start=0x%x actual=0x%x\n",
1616 indirect.start, buf->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return DRM_ERR(EINVAL);
1618 }
1619
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001620 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1621 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 buf->used = indirect.end;
1624 buf_priv->discard = indirect.discard;
1625
1626#if 0
1627 /* Wait for the 3D stream to idle before the indirect buffer
1628 * containing 2D acceleration commands is processed.
1629 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001630 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 RADEON_WAIT_UNTIL_3D_IDLE();
1632 ADVANCE_RING();
1633#endif
1634
1635 /* Dispatch the indirect buffer full of commands from the
1636 * X server. This is insecure and is thus only available to
1637 * privileged clients.
1638 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001639 r128_cce_dispatch_indirect(dev, buf, indirect.start, indirect.end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 COMMIT_RING();
1642 return 0;
1643}
1644
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001645static int r128_getparam(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
1647 DRM_DEVICE;
1648 drm_r128_private_t *dev_priv = dev->dev_private;
1649 drm_r128_getparam_t param;
1650 int value;
1651
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001652 if (!dev_priv) {
1653 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return DRM_ERR(EINVAL);
1655 }
1656
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001657 DRM_COPY_FROM_USER_IOCTL(param, (drm_r128_getparam_t __user *) data,
1658 sizeof(param));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001660 DRM_DEBUG("pid=%d\n", DRM_CURRENTPID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001662 switch (param.param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 case R128_PARAM_IRQ_NR:
1664 value = dev->irq;
1665 break;
1666 default:
1667 return DRM_ERR(EINVAL);
1668 }
1669
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001670 if (DRM_COPY_TO_USER(param.value, &value, sizeof(int))) {
1671 DRM_ERROR("copy_to_user\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return DRM_ERR(EFAULT);
1673 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return 0;
1676}
1677
Dave Airlieeddca552007-07-11 16:09:54 +10001678void r128_driver_preclose(struct drm_device * dev, DRMFILE filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001680 if (dev->dev_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001682 if (dev_priv->page_flipping) {
1683 r128_do_cleanup_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
Dave Airlieeddca552007-07-11 16:09:54 +10001688void r128_driver_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001690 r128_do_cleanup_cce(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
1693drm_ioctl_desc_t r128_ioctls[] = {
Dave Airliea7a2cc32006-01-02 13:54:04 +11001694 [DRM_IOCTL_NR(DRM_R128_INIT)] = {r128_cce_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1695 [DRM_IOCTL_NR(DRM_R128_CCE_START)] = {r128_cce_start, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1696 [DRM_IOCTL_NR(DRM_R128_CCE_STOP)] = {r128_cce_stop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1697 [DRM_IOCTL_NR(DRM_R128_CCE_RESET)] = {r128_cce_reset, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1698 [DRM_IOCTL_NR(DRM_R128_CCE_IDLE)] = {r128_cce_idle, DRM_AUTH},
1699 [DRM_IOCTL_NR(DRM_R128_RESET)] = {r128_engine_reset, DRM_AUTH},
1700 [DRM_IOCTL_NR(DRM_R128_FULLSCREEN)] = {r128_fullscreen, DRM_AUTH},
1701 [DRM_IOCTL_NR(DRM_R128_SWAP)] = {r128_cce_swap, DRM_AUTH},
1702 [DRM_IOCTL_NR(DRM_R128_FLIP)] = {r128_cce_flip, DRM_AUTH},
1703 [DRM_IOCTL_NR(DRM_R128_CLEAR)] = {r128_cce_clear, DRM_AUTH},
1704 [DRM_IOCTL_NR(DRM_R128_VERTEX)] = {r128_cce_vertex, DRM_AUTH},
1705 [DRM_IOCTL_NR(DRM_R128_INDICES)] = {r128_cce_indices, DRM_AUTH},
1706 [DRM_IOCTL_NR(DRM_R128_BLIT)] = {r128_cce_blit, DRM_AUTH},
1707 [DRM_IOCTL_NR(DRM_R128_DEPTH)] = {r128_cce_depth, DRM_AUTH},
1708 [DRM_IOCTL_NR(DRM_R128_STIPPLE)] = {r128_cce_stipple, DRM_AUTH},
1709 [DRM_IOCTL_NR(DRM_R128_INDIRECT)] = {r128_cce_indirect, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
1710 [DRM_IOCTL_NR(DRM_R128_GETPARAM)] = {r128_getparam, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711};
1712
1713int r128_max_ioctl = DRM_ARRAY_SIZE(r128_ioctls);