blob: 575e986f82a76239113e2e122b42ce961a24e3e0 [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
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/r128_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "r128_drv.h"
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/* ================================================================
36 * CCE hardware state programming functions
37 */
38
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +020039static void r128_emit_clip_rects(drm_r128_private_t *dev_priv,
40 struct drm_clip_rect *boxes, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 u32 aux_sc_cntl = 0x00000000;
43 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +100044 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Dave Airlieb5e89ed2005-09-25 14:28:13 +100046 BEGIN_RING((count < 3 ? count : 3) * 5 + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Dave Airlieb5e89ed2005-09-25 14:28:13 +100048 if (count >= 1) {
49 OUT_RING(CCE_PACKET0(R128_AUX1_SC_LEFT, 3));
50 OUT_RING(boxes[0].x1);
51 OUT_RING(boxes[0].x2 - 1);
52 OUT_RING(boxes[0].y1);
53 OUT_RING(boxes[0].y2 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 aux_sc_cntl |= (R128_AUX1_SC_EN | R128_AUX1_SC_MODE_OR);
56 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100057 if (count >= 2) {
58 OUT_RING(CCE_PACKET0(R128_AUX2_SC_LEFT, 3));
59 OUT_RING(boxes[1].x1);
60 OUT_RING(boxes[1].x2 - 1);
61 OUT_RING(boxes[1].y1);
62 OUT_RING(boxes[1].y2 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 aux_sc_cntl |= (R128_AUX2_SC_EN | R128_AUX2_SC_MODE_OR);
65 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100066 if (count >= 3) {
67 OUT_RING(CCE_PACKET0(R128_AUX3_SC_LEFT, 3));
68 OUT_RING(boxes[2].x1);
69 OUT_RING(boxes[2].x2 - 1);
70 OUT_RING(boxes[2].y1);
71 OUT_RING(boxes[2].y2 - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 aux_sc_cntl |= (R128_AUX3_SC_EN | R128_AUX3_SC_MODE_OR);
74 }
75
Dave Airlieb5e89ed2005-09-25 14:28:13 +100076 OUT_RING(CCE_PACKET0(R128_AUX_SC_CNTL, 0));
77 OUT_RING(aux_sc_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 ADVANCE_RING();
80}
81
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +020082static __inline__ void r128_emit_core(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
85 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
86 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +100087 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Dave Airlieb5e89ed2005-09-25 14:28:13 +100089 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Dave Airlieb5e89ed2005-09-25 14:28:13 +100091 OUT_RING(CCE_PACKET0(R128_SCALE_3D_CNTL, 0));
92 OUT_RING(ctx->scale_3d_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 ADVANCE_RING();
95}
96
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +020097static __inline__ void r128_emit_context(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
100 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
101 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000102 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000104 BEGIN_RING(13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000106 OUT_RING(CCE_PACKET0(R128_DST_PITCH_OFFSET_C, 11));
107 OUT_RING(ctx->dst_pitch_offset_c);
108 OUT_RING(ctx->dp_gui_master_cntl_c);
109 OUT_RING(ctx->sc_top_left_c);
110 OUT_RING(ctx->sc_bottom_right_c);
111 OUT_RING(ctx->z_offset_c);
112 OUT_RING(ctx->z_pitch_c);
113 OUT_RING(ctx->z_sten_cntl_c);
114 OUT_RING(ctx->tex_cntl_c);
115 OUT_RING(ctx->misc_3d_state_cntl_reg);
116 OUT_RING(ctx->texture_clr_cmp_clr_c);
117 OUT_RING(ctx->texture_clr_cmp_msk_c);
118 OUT_RING(ctx->fog_color_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 ADVANCE_RING();
121}
122
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200123static __inline__ void r128_emit_setup(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
126 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
127 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000128 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000130 BEGIN_RING(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000132 OUT_RING(CCE_PACKET1(R128_SETUP_CNTL, R128_PM4_VC_FPU_SETUP));
133 OUT_RING(ctx->setup_cntl);
134 OUT_RING(ctx->pm4_vc_fpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 ADVANCE_RING();
137}
138
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200139static __inline__ void r128_emit_masks(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
142 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
143 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000144 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000146 BEGIN_RING(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000148 OUT_RING(CCE_PACKET0(R128_DP_WRITE_MASK, 0));
149 OUT_RING(ctx->dp_write_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000151 OUT_RING(CCE_PACKET0(R128_STEN_REF_MASK_C, 1));
152 OUT_RING(ctx->sten_ref_mask_c);
153 OUT_RING(ctx->plane_3d_mask_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 ADVANCE_RING();
156}
157
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200158static __inline__ void r128_emit_window(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
161 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
162 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000163 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000165 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000167 OUT_RING(CCE_PACKET0(R128_WINDOW_XY_OFFSET, 0));
168 OUT_RING(ctx->window_xy_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 ADVANCE_RING();
171}
172
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200173static __inline__ void r128_emit_tex0(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
176 drm_r128_context_regs_t *ctx = &sarea_priv->context_state;
177 drm_r128_texture_regs_t *tex = &sarea_priv->tex_state[0];
178 int i;
179 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000180 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000182 BEGIN_RING(7 + R128_MAX_TEXTURE_LEVELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000184 OUT_RING(CCE_PACKET0(R128_PRIM_TEX_CNTL_C,
185 2 + R128_MAX_TEXTURE_LEVELS));
186 OUT_RING(tex->tex_cntl);
187 OUT_RING(tex->tex_combine_cntl);
188 OUT_RING(ctx->tex_size_pitch_c);
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200189 for (i = 0; i < R128_MAX_TEXTURE_LEVELS; i++)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000190 OUT_RING(tex->tex_offset[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000192 OUT_RING(CCE_PACKET0(R128_CONSTANT_COLOR_C, 1));
193 OUT_RING(ctx->constant_color_c);
194 OUT_RING(tex->tex_border_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 ADVANCE_RING();
197}
198
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200199static __inline__ void r128_emit_tex1(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
202 drm_r128_texture_regs_t *tex = &sarea_priv->tex_state[1];
203 int i;
204 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000205 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000207 BEGIN_RING(5 + R128_MAX_TEXTURE_LEVELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209 OUT_RING(CCE_PACKET0(R128_SEC_TEX_CNTL_C, 1 + R128_MAX_TEXTURE_LEVELS));
210 OUT_RING(tex->tex_cntl);
211 OUT_RING(tex->tex_combine_cntl);
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200212 for (i = 0; i < R128_MAX_TEXTURE_LEVELS; i++)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000213 OUT_RING(tex->tex_offset[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000215 OUT_RING(CCE_PACKET0(R128_SEC_TEXTURE_BORDER_COLOR_C, 0));
216 OUT_RING(tex->tex_border_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 ADVANCE_RING();
219}
220
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200221static void r128_emit_state(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
224 unsigned int dirty = sarea_priv->dirty;
225
Márton Németh3e684ea2008-01-24 15:58:57 +1000226 DRM_DEBUG("dirty=0x%08x\n", dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000228 if (dirty & R128_UPLOAD_CORE) {
229 r128_emit_core(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 sarea_priv->dirty &= ~R128_UPLOAD_CORE;
231 }
232
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000233 if (dirty & R128_UPLOAD_CONTEXT) {
234 r128_emit_context(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 sarea_priv->dirty &= ~R128_UPLOAD_CONTEXT;
236 }
237
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238 if (dirty & R128_UPLOAD_SETUP) {
239 r128_emit_setup(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 sarea_priv->dirty &= ~R128_UPLOAD_SETUP;
241 }
242
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000243 if (dirty & R128_UPLOAD_MASKS) {
244 r128_emit_masks(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 sarea_priv->dirty &= ~R128_UPLOAD_MASKS;
246 }
247
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000248 if (dirty & R128_UPLOAD_WINDOW) {
249 r128_emit_window(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 sarea_priv->dirty &= ~R128_UPLOAD_WINDOW;
251 }
252
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000253 if (dirty & R128_UPLOAD_TEX0) {
254 r128_emit_tex0(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 sarea_priv->dirty &= ~R128_UPLOAD_TEX0;
256 }
257
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000258 if (dirty & R128_UPLOAD_TEX1) {
259 r128_emit_tex1(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 sarea_priv->dirty &= ~R128_UPLOAD_TEX1;
261 }
262
263 /* Turn off the texture cache flushing */
264 sarea_priv->context_state.tex_cntl_c &= ~R128_TEX_CACHE_FLUSH;
265
266 sarea_priv->dirty &= ~R128_REQUIRE_QUIESCENCE;
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269#if R128_PERFORMANCE_BOXES
270/* ================================================================
271 * Performance monitoring functions
272 */
273
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200274static void r128_clear_box(drm_r128_private_t *dev_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000275 int x, int y, int w, int h, int r, int g, int b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 u32 pitch, offset;
278 u32 fb_bpp, color;
279 RING_LOCALS;
280
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000281 switch (dev_priv->fb_bpp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 case 16:
283 fb_bpp = R128_GMC_DST_16BPP;
284 color = (((r & 0xf8) << 8) |
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000285 ((g & 0xfc) << 3) | ((b & 0xf8) >> 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 break;
287 case 24:
288 fb_bpp = R128_GMC_DST_24BPP;
289 color = ((r << 16) | (g << 8) | b);
290 break;
291 case 32:
292 fb_bpp = R128_GMC_DST_32BPP;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000293 color = (((0xff) << 24) | (r << 16) | (g << 8) | b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 break;
295 default:
296 return;
297 }
298
299 offset = dev_priv->back_offset;
300 pitch = dev_priv->back_pitch >> 3;
301
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000302 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000304 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
305 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
306 R128_GMC_BRUSH_SOLID_COLOR |
307 fb_bpp |
308 R128_GMC_SRC_DATATYPE_COLOR |
309 R128_ROP3_P |
310 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_AUX_CLIP_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000312 OUT_RING((pitch << 21) | (offset >> 5));
313 OUT_RING(color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000315 OUT_RING((x << 16) | y);
316 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 ADVANCE_RING();
319}
320
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200321static void r128_cce_performance_boxes(drm_r128_private_t *dev_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200323 if (atomic_read(&dev_priv->idle_count) == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000324 r128_clear_box(dev_priv, 64, 4, 8, 8, 0, 255, 0);
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200325 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326 atomic_set(&dev_priv->idle_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329#endif
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/* ================================================================
332 * CCE command dispatch functions
333 */
334
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000335static void r128_print_dirty(const char *msg, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000337 DRM_INFO("%s: (0x%x) %s%s%s%s%s%s%s%s%s\n",
338 msg,
339 flags,
340 (flags & R128_UPLOAD_CORE) ? "core, " : "",
341 (flags & R128_UPLOAD_CONTEXT) ? "context, " : "",
342 (flags & R128_UPLOAD_SETUP) ? "setup, " : "",
343 (flags & R128_UPLOAD_TEX0) ? "tex0, " : "",
344 (flags & R128_UPLOAD_TEX1) ? "tex1, " : "",
345 (flags & R128_UPLOAD_MASKS) ? "masks, " : "",
346 (flags & R128_UPLOAD_WINDOW) ? "window, " : "",
347 (flags & R128_UPLOAD_CLIPRECTS) ? "cliprects, " : "",
348 (flags & R128_REQUIRE_QUIESCENCE) ? "quiescence, " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200351static void r128_cce_dispatch_clear(struct drm_device *dev,
352 drm_r128_clear_t *clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 drm_r128_private_t *dev_priv = dev->dev_private;
355 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
356 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000357 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned int flags = clear->flags;
359 int i;
360 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000361 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000363 if (dev_priv->page_flipping && dev_priv->current_page == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 unsigned int tmp = flags;
365
366 flags &= ~(R128_FRONT | R128_BACK);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000367 if (tmp & R128_FRONT)
368 flags |= R128_BACK;
369 if (tmp & R128_BACK)
370 flags |= R128_FRONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000373 for (i = 0; i < nbox; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int x = pbox[i].x1;
375 int y = pbox[i].y1;
376 int w = pbox[i].x2 - x;
377 int h = pbox[i].y2 - y;
378
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000379 DRM_DEBUG("dispatch clear %d,%d-%d,%d flags 0x%x\n",
380 pbox[i].x1, pbox[i].y1, pbox[i].x2,
381 pbox[i].y2, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000383 if (flags & (R128_FRONT | R128_BACK)) {
384 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000386 OUT_RING(CCE_PACKET0(R128_DP_WRITE_MASK, 0));
387 OUT_RING(clear->color_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 ADVANCE_RING();
390 }
391
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000392 if (flags & R128_FRONT) {
393 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000395 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
396 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
397 R128_GMC_BRUSH_SOLID_COLOR |
398 (dev_priv->color_fmt << 8) |
399 R128_GMC_SRC_DATATYPE_COLOR |
400 R128_ROP3_P |
401 R128_GMC_CLR_CMP_CNTL_DIS |
402 R128_GMC_AUX_CLIP_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000404 OUT_RING(dev_priv->front_pitch_offset_c);
405 OUT_RING(clear->clear_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000407 OUT_RING((x << 16) | y);
408 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 ADVANCE_RING();
411 }
412
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000413 if (flags & R128_BACK) {
414 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000416 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
417 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
418 R128_GMC_BRUSH_SOLID_COLOR |
419 (dev_priv->color_fmt << 8) |
420 R128_GMC_SRC_DATATYPE_COLOR |
421 R128_ROP3_P |
422 R128_GMC_CLR_CMP_CNTL_DIS |
423 R128_GMC_AUX_CLIP_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000425 OUT_RING(dev_priv->back_pitch_offset_c);
426 OUT_RING(clear->clear_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000428 OUT_RING((x << 16) | y);
429 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 ADVANCE_RING();
432 }
433
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000434 if (flags & R128_DEPTH) {
435 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000437 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
438 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
439 R128_GMC_BRUSH_SOLID_COLOR |
440 (dev_priv->depth_fmt << 8) |
441 R128_GMC_SRC_DATATYPE_COLOR |
442 R128_ROP3_P |
443 R128_GMC_CLR_CMP_CNTL_DIS |
444 R128_GMC_AUX_CLIP_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000446 OUT_RING(dev_priv->depth_pitch_offset_c);
447 OUT_RING(clear->clear_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000449 OUT_RING((x << 16) | y);
450 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 ADVANCE_RING();
453 }
454 }
455}
456
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200457static void r128_cce_dispatch_swap(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 drm_r128_private_t *dev_priv = dev->dev_private;
460 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
461 int nbox = sarea_priv->nbox;
Dave Airlieeddca552007-07-11 16:09:54 +1000462 struct drm_clip_rect *pbox = sarea_priv->boxes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 int i;
464 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000465 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467#if R128_PERFORMANCE_BOXES
468 /* Do some trivial performance monitoring...
469 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000470 r128_cce_performance_boxes(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471#endif
472
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000473 for (i = 0; i < nbox; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int x = pbox[i].x1;
475 int y = pbox[i].y1;
476 int w = pbox[i].x2 - x;
477 int h = pbox[i].y2 - y;
478
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000479 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000481 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
482 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
483 R128_GMC_DST_PITCH_OFFSET_CNTL |
484 R128_GMC_BRUSH_NONE |
485 (dev_priv->color_fmt << 8) |
486 R128_GMC_SRC_DATATYPE_COLOR |
487 R128_ROP3_S |
488 R128_DP_SRC_SOURCE_MEMORY |
489 R128_GMC_CLR_CMP_CNTL_DIS |
490 R128_GMC_AUX_CLIP_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* Make this work even if front & back are flipped:
493 */
494 if (dev_priv->current_page == 0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000495 OUT_RING(dev_priv->back_pitch_offset_c);
496 OUT_RING(dev_priv->front_pitch_offset_c);
497 } else {
498 OUT_RING(dev_priv->front_pitch_offset_c);
499 OUT_RING(dev_priv->back_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000502 OUT_RING((x << 16) | y);
503 OUT_RING((x << 16) | y);
504 OUT_RING((w << 16) | h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 ADVANCE_RING();
507 }
508
509 /* Increment the frame counter. The client-side 3D driver must
510 * throttle the framerate by waiting for this value before
511 * performing the swapbuffer ioctl.
512 */
513 dev_priv->sarea_priv->last_frame++;
514
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000515 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000517 OUT_RING(CCE_PACKET0(R128_LAST_FRAME_REG, 0));
518 OUT_RING(dev_priv->sarea_priv->last_frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 ADVANCE_RING();
521}
522
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200523static void r128_cce_dispatch_flip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 drm_r128_private_t *dev_priv = dev->dev_private;
526 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +1000527 DRM_DEBUG("page=%d pfCurrentPage=%d\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000528 dev_priv->current_page, dev_priv->sarea_priv->pfCurrentPage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530#if R128_PERFORMANCE_BOXES
531 /* Do some trivial performance monitoring...
532 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000533 r128_cce_performance_boxes(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#endif
535
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000536 BEGIN_RING(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 R128_WAIT_UNTIL_PAGE_FLIPPED();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000539 OUT_RING(CCE_PACKET0(R128_CRTC_OFFSET, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200541 if (dev_priv->current_page == 0)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000542 OUT_RING(dev_priv->back_offset);
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200543 else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000544 OUT_RING(dev_priv->front_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 ADVANCE_RING();
547
548 /* Increment the frame counter. The client-side 3D driver must
549 * throttle the framerate by waiting for this value before
550 * performing the swapbuffer ioctl.
551 */
552 dev_priv->sarea_priv->last_frame++;
553 dev_priv->sarea_priv->pfCurrentPage = dev_priv->current_page =
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000554 1 - dev_priv->current_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000556 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000558 OUT_RING(CCE_PACKET0(R128_LAST_FRAME_REG, 0));
559 OUT_RING(dev_priv->sarea_priv->last_frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 ADVANCE_RING();
562}
563
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200564static void r128_cce_dispatch_vertex(struct drm_device *dev, struct drm_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 drm_r128_private_t *dev_priv = dev->dev_private;
567 drm_r128_buf_priv_t *buf_priv = buf->dev_private;
568 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
569 int format = sarea_priv->vc_format;
570 int offset = buf->bus_address;
571 int size = buf->used;
572 int prim = buf_priv->prim;
573 int i = 0;
574 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000575 DRM_DEBUG("buf=%d nbox=%d\n", buf->idx, sarea_priv->nbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000577 if (0)
578 r128_print_dirty("dispatch_vertex", sarea_priv->dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000580 if (buf->used) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 buf_priv->dispatched = 1;
582
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200583 if (sarea_priv->dirty & ~R128_UPLOAD_CLIPRECTS)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000584 r128_emit_state(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 do {
587 /* Emit the next set of up to three cliprects */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000588 if (i < sarea_priv->nbox) {
589 r128_emit_clip_rects(dev_priv,
590 &sarea_priv->boxes[i],
591 sarea_priv->nbox - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593
594 /* Emit the vertex buffer rendering commands */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000595 BEGIN_RING(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000597 OUT_RING(CCE_PACKET3(R128_3D_RNDR_GEN_INDX_PRIM, 3));
598 OUT_RING(offset);
599 OUT_RING(size);
600 OUT_RING(format);
601 OUT_RING(prim | R128_CCE_VC_CNTL_PRIM_WALK_LIST |
602 (size << R128_CCE_VC_CNTL_NUM_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 ADVANCE_RING();
605
606 i += 3;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000607 } while (i < sarea_priv->nbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000610 if (buf_priv->discard) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 buf_priv->age = dev_priv->sarea_priv->last_dispatch;
612
613 /* Emit the vertex buffer age */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000614 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000616 OUT_RING(CCE_PACKET0(R128_LAST_DISPATCH_REG, 0));
617 OUT_RING(buf_priv->age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 ADVANCE_RING();
620
621 buf->pending = 1;
622 buf->used = 0;
623 /* FIXME: Check dispatched field */
624 buf_priv->dispatched = 0;
625 }
626
627 dev_priv->sarea_priv->last_dispatch++;
628
629 sarea_priv->dirty &= ~R128_UPLOAD_CLIPRECTS;
630 sarea_priv->nbox = 0;
631}
632
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200633static void r128_cce_dispatch_indirect(struct drm_device *dev,
634 struct drm_buf *buf, int start, int end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 drm_r128_private_t *dev_priv = dev->dev_private;
637 drm_r128_buf_priv_t *buf_priv = buf->dev_private;
638 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000639 DRM_DEBUG("indirect: buf=%d s=0x%x e=0x%x\n", buf->idx, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000641 if (start != end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 int offset = buf->bus_address + start;
643 int dwords = (end - start + 3) / sizeof(u32);
644
645 /* Indirect buffer data must be an even number of
646 * dwords, so if we've been given an odd number we must
647 * pad the data with a Type-2 CCE packet.
648 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000649 if (dwords & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 u32 *data = (u32 *)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000651 ((char *)dev->agp_buffer_map->handle
652 + buf->offset + start);
653 data[dwords++] = cpu_to_le32(R128_CCE_PACKET2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
656 buf_priv->dispatched = 1;
657
658 /* Fire off the indirect buffer */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000659 BEGIN_RING(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000661 OUT_RING(CCE_PACKET0(R128_PM4_IW_INDOFF, 1));
662 OUT_RING(offset);
663 OUT_RING(dwords);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 ADVANCE_RING();
666 }
667
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000668 if (buf_priv->discard) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 buf_priv->age = dev_priv->sarea_priv->last_dispatch;
670
671 /* Emit the indirect buffer age */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000672 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000674 OUT_RING(CCE_PACKET0(R128_LAST_DISPATCH_REG, 0));
675 OUT_RING(buf_priv->age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 ADVANCE_RING();
678
679 buf->pending = 1;
680 buf->used = 0;
681 /* FIXME: Check dispatched field */
682 buf_priv->dispatched = 0;
683 }
684
685 dev_priv->sarea_priv->last_dispatch++;
686}
687
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200688static void r128_cce_dispatch_indices(struct drm_device *dev,
689 struct drm_buf *buf,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000690 int start, int end, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 drm_r128_private_t *dev_priv = dev->dev_private;
693 drm_r128_buf_priv_t *buf_priv = buf->dev_private;
694 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
695 int format = sarea_priv->vc_format;
696 int offset = dev->agp_buffer_map->offset - dev_priv->cce_buffers_offset;
697 int prim = buf_priv->prim;
698 u32 *data;
699 int dwords;
700 int i = 0;
701 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000702 DRM_DEBUG("indices: s=%d e=%d c=%d\n", start, end, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000704 if (0)
705 r128_print_dirty("dispatch_indices", sarea_priv->dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000707 if (start != end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 buf_priv->dispatched = 1;
709
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200710 if (sarea_priv->dirty & ~R128_UPLOAD_CLIPRECTS)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000711 r128_emit_state(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 dwords = (end - start + 3) / sizeof(u32);
714
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000715 data = (u32 *) ((char *)dev->agp_buffer_map->handle
716 + buf->offset + start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000718 data[0] = cpu_to_le32(CCE_PACKET3(R128_3D_RNDR_GEN_INDX_PRIM,
719 dwords - 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000721 data[1] = cpu_to_le32(offset);
722 data[2] = cpu_to_le32(R128_MAX_VB_VERTS);
723 data[3] = cpu_to_le32(format);
724 data[4] = cpu_to_le32((prim | R128_CCE_VC_CNTL_PRIM_WALK_IND |
725 (count << 16)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000727 if (count & 0x1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728#ifdef __LITTLE_ENDIAN
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000729 data[dwords - 1] &= 0x0000ffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#else
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000731 data[dwords - 1] &= 0xffff0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#endif
733 }
734
735 do {
736 /* Emit the next set of up to three cliprects */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000737 if (i < sarea_priv->nbox) {
738 r128_emit_clip_rects(dev_priv,
739 &sarea_priv->boxes[i],
740 sarea_priv->nbox - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000743 r128_cce_dispatch_indirect(dev, buf, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 i += 3;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000746 } while (i < sarea_priv->nbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000749 if (buf_priv->discard) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 buf_priv->age = dev_priv->sarea_priv->last_dispatch;
751
752 /* Emit the vertex buffer age */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000753 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000755 OUT_RING(CCE_PACKET0(R128_LAST_DISPATCH_REG, 0));
756 OUT_RING(buf_priv->age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 ADVANCE_RING();
759
760 buf->pending = 1;
761 /* FIXME: Check dispatched field */
762 buf_priv->dispatched = 0;
763 }
764
765 dev_priv->sarea_priv->last_dispatch++;
766
767 sarea_priv->dirty &= ~R128_UPLOAD_CLIPRECTS;
768 sarea_priv->nbox = 0;
769}
770
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200771static int r128_cce_dispatch_blit(struct drm_device *dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000772 struct drm_file *file_priv,
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200773 drm_r128_blit_t *blit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +1000776 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +1000777 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 drm_r128_buf_priv_t *buf_priv;
779 u32 *data;
780 int dword_shift, dwords;
781 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000782 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 /* The compiler won't optimize away a division by a variable,
785 * even if the only legal values are powers of two. Thus, we'll
786 * use a shift instead.
787 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000788 switch (blit->format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 case R128_DATATYPE_ARGB8888:
790 dword_shift = 0;
791 break;
792 case R128_DATATYPE_ARGB1555:
793 case R128_DATATYPE_RGB565:
794 case R128_DATATYPE_ARGB4444:
795 case R128_DATATYPE_YVYU422:
796 case R128_DATATYPE_VYUY422:
797 dword_shift = 1;
798 break;
799 case R128_DATATYPE_CI8:
800 case R128_DATATYPE_RGB8:
801 dword_shift = 2;
802 break;
803 default:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000804 DRM_ERROR("invalid blit format %d\n", blit->format);
Eric Anholt20caafa2007-08-25 19:22:43 +1000805 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
808 /* Flush the pixel cache, and mark the contents as Read Invalid.
809 * This ensures no pixel data gets mixed up with the texture
810 * data from the host data blit, otherwise part of the texture
811 * image may be corrupted.
812 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000813 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000815 OUT_RING(CCE_PACKET0(R128_PC_GUI_CTLSTAT, 0));
816 OUT_RING(R128_PC_RI_GUI | R128_PC_FLUSH_GUI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 ADVANCE_RING();
819
820 /* Dispatch the indirect buffer.
821 */
822 buf = dma->buflist[blit->idx];
823 buf_priv = buf->dev_private;
824
Eric Anholt6c340ea2007-08-25 20:23:09 +1000825 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000826 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +1000827 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +1000828 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000830 if (buf->pending) {
831 DRM_ERROR("sending pending buffer %d\n", blit->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +1000832 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834
835 buf_priv->discard = 1;
836
837 dwords = (blit->width * blit->height) >> dword_shift;
838
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000839 data = (u32 *) ((char *)dev->agp_buffer_map->handle + buf->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000841 data[0] = cpu_to_le32(CCE_PACKET3(R128_CNTL_HOSTDATA_BLT, dwords + 6));
842 data[1] = cpu_to_le32((R128_GMC_DST_PITCH_OFFSET_CNTL |
843 R128_GMC_BRUSH_NONE |
844 (blit->format << 8) |
845 R128_GMC_SRC_DATATYPE_COLOR |
846 R128_ROP3_S |
847 R128_DP_SRC_SOURCE_HOST_DATA |
848 R128_GMC_CLR_CMP_CNTL_DIS |
849 R128_GMC_AUX_CLIP_DIS | R128_GMC_WR_MSK_DIS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000851 data[2] = cpu_to_le32((blit->pitch << 21) | (blit->offset >> 5));
852 data[3] = cpu_to_le32(0xffffffff);
853 data[4] = cpu_to_le32(0xffffffff);
854 data[5] = cpu_to_le32((blit->y << 16) | blit->x);
855 data[6] = cpu_to_le32((blit->height << 16) | blit->width);
856 data[7] = cpu_to_le32(dwords);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 buf->used = (dwords + 8) * sizeof(u32);
859
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000860 r128_cce_dispatch_indirect(dev, buf, 0, buf->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 /* Flush the pixel cache after the blit completes. This ensures
863 * the texture data is written out to memory before rendering
864 * continues.
865 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000866 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000868 OUT_RING(CCE_PACKET0(R128_PC_GUI_CTLSTAT, 0));
869 OUT_RING(R128_PC_FLUSH_GUI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 ADVANCE_RING();
872
873 return 0;
874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/* ================================================================
877 * Tiled depth buffer management
878 *
879 * FIXME: These should all set the destination write mask for when we
880 * have hardware stencil support.
881 */
882
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200883static int r128_cce_dispatch_write_span(struct drm_device *dev,
884 drm_r128_depth_t *depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 drm_r128_private_t *dev_priv = dev->dev_private;
887 int count, x, y;
888 u32 *buffer;
889 u8 *mask;
890 int i, buffer_size, mask_size;
891 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000892 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 count = depth->n;
895 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +1000896 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100898 if (copy_from_user(&x, depth->x, sizeof(x)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000899 return -EFAULT;
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100900 if (copy_from_user(&y, depth->y, sizeof(y)))
Eric Anholt20caafa2007-08-25 19:22:43 +1000901 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 buffer_size = depth->n * sizeof(u32);
Dan Carpenterd016da52013-12-11 11:35:11 +0100904 buffer = memdup_user(depth->buffer, buffer_size);
905 if (IS_ERR(buffer))
906 return PTR_ERR(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 mask_size = depth->n * sizeof(u8);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000909 if (depth->mask) {
Dan Carpenterd016da52013-12-11 11:35:11 +0100910 mask = memdup_user(depth->mask, mask_size);
911 if (IS_ERR(mask)) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700912 kfree(buffer);
Dan Carpenterd016da52013-12-11 11:35:11 +0100913 return PTR_ERR(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000916 for (i = 0; i < count; i++, x++) {
917 if (mask[i]) {
918 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000920 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
921 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
922 R128_GMC_BRUSH_SOLID_COLOR |
923 (dev_priv->depth_fmt << 8) |
924 R128_GMC_SRC_DATATYPE_COLOR |
925 R128_ROP3_P |
926 R128_GMC_CLR_CMP_CNTL_DIS |
927 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000929 OUT_RING(dev_priv->depth_pitch_offset_c);
930 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000932 OUT_RING((x << 16) | y);
933 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 ADVANCE_RING();
936 }
937 }
938
Eric Anholt9a298b22009-03-24 12:23:04 -0700939 kfree(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000941 for (i = 0; i < count; i++, x++) {
942 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000944 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
945 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
946 R128_GMC_BRUSH_SOLID_COLOR |
947 (dev_priv->depth_fmt << 8) |
948 R128_GMC_SRC_DATATYPE_COLOR |
949 R128_ROP3_P |
950 R128_GMC_CLR_CMP_CNTL_DIS |
951 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000953 OUT_RING(dev_priv->depth_pitch_offset_c);
954 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000956 OUT_RING((x << 16) | y);
957 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 ADVANCE_RING();
960 }
961 }
962
Eric Anholt9a298b22009-03-24 12:23:04 -0700963 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 return 0;
966}
967
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200968static int r128_cce_dispatch_write_pixels(struct drm_device *dev,
969 drm_r128_depth_t *depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 drm_r128_private_t *dev_priv = dev->dev_private;
972 int count, *x, *y;
973 u32 *buffer;
974 u8 *mask;
975 int i, xbuf_size, ybuf_size, buffer_size, mask_size;
976 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000977 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 count = depth->n;
980 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +1000981 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 xbuf_size = count * sizeof(*x);
984 ybuf_size = count * sizeof(*y);
Eric Anholt9a298b22009-03-24 12:23:04 -0700985 x = kmalloc(xbuf_size, GFP_KERNEL);
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +0200986 if (x == NULL)
Eric Anholt20caafa2007-08-25 19:22:43 +1000987 return -ENOMEM;
Eric Anholt9a298b22009-03-24 12:23:04 -0700988 y = kmalloc(ybuf_size, GFP_KERNEL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000989 if (y == NULL) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700990 kfree(x);
Eric Anholt20caafa2007-08-25 19:22:43 +1000991 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100993 if (copy_from_user(x, depth->x, xbuf_size)) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700994 kfree(x);
995 kfree(y);
Eric Anholt20caafa2007-08-25 19:22:43 +1000996 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100998 if (copy_from_user(y, depth->y, xbuf_size)) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700999 kfree(x);
1000 kfree(y);
Eric Anholt20caafa2007-08-25 19:22:43 +10001001 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
1003
1004 buffer_size = depth->n * sizeof(u32);
Dan Carpenterd016da52013-12-11 11:35:11 +01001005 buffer = memdup_user(depth->buffer, buffer_size);
1006 if (IS_ERR(buffer)) {
Eric Anholt9a298b22009-03-24 12:23:04 -07001007 kfree(x);
1008 kfree(y);
Dan Carpenterd016da52013-12-11 11:35:11 +01001009 return PTR_ERR(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001012 if (depth->mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 mask_size = depth->n * sizeof(u8);
Dan Carpenterd016da52013-12-11 11:35:11 +01001014 mask = memdup_user(depth->mask, mask_size);
1015 if (IS_ERR(mask)) {
Eric Anholt9a298b22009-03-24 12:23:04 -07001016 kfree(x);
1017 kfree(y);
1018 kfree(buffer);
Dan Carpenterd016da52013-12-11 11:35:11 +01001019 return PTR_ERR(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001022 for (i = 0; i < count; i++) {
1023 if (mask[i]) {
1024 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001026 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
1027 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
1028 R128_GMC_BRUSH_SOLID_COLOR |
1029 (dev_priv->depth_fmt << 8) |
1030 R128_GMC_SRC_DATATYPE_COLOR |
1031 R128_ROP3_P |
1032 R128_GMC_CLR_CMP_CNTL_DIS |
1033 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001035 OUT_RING(dev_priv->depth_pitch_offset_c);
1036 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001038 OUT_RING((x[i] << 16) | y[i]);
1039 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 ADVANCE_RING();
1042 }
1043 }
1044
Eric Anholt9a298b22009-03-24 12:23:04 -07001045 kfree(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001047 for (i = 0; i < count; i++) {
1048 BEGIN_RING(6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001050 OUT_RING(CCE_PACKET3(R128_CNTL_PAINT_MULTI, 4));
1051 OUT_RING(R128_GMC_DST_PITCH_OFFSET_CNTL |
1052 R128_GMC_BRUSH_SOLID_COLOR |
1053 (dev_priv->depth_fmt << 8) |
1054 R128_GMC_SRC_DATATYPE_COLOR |
1055 R128_ROP3_P |
1056 R128_GMC_CLR_CMP_CNTL_DIS |
1057 R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001059 OUT_RING(dev_priv->depth_pitch_offset_c);
1060 OUT_RING(buffer[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001062 OUT_RING((x[i] << 16) | y[i]);
1063 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 ADVANCE_RING();
1066 }
1067 }
1068
Eric Anholt9a298b22009-03-24 12:23:04 -07001069 kfree(x);
1070 kfree(y);
1071 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 return 0;
1074}
1075
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001076static int r128_cce_dispatch_read_span(struct drm_device *dev,
1077 drm_r128_depth_t *depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 drm_r128_private_t *dev_priv = dev->dev_private;
1080 int count, x, y;
1081 RING_LOCALS;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001082 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 count = depth->n;
1085 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +10001086 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Daniel Vetter1d6ac182013-12-11 11:34:44 +01001088 if (copy_from_user(&x, depth->x, sizeof(x)))
Eric Anholt20caafa2007-08-25 19:22:43 +10001089 return -EFAULT;
Daniel Vetter1d6ac182013-12-11 11:34:44 +01001090 if (copy_from_user(&y, depth->y, sizeof(y)))
Eric Anholt20caafa2007-08-25 19:22:43 +10001091 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001093 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001095 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
1096 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
1097 R128_GMC_DST_PITCH_OFFSET_CNTL |
1098 R128_GMC_BRUSH_NONE |
1099 (dev_priv->depth_fmt << 8) |
1100 R128_GMC_SRC_DATATYPE_COLOR |
1101 R128_ROP3_S |
1102 R128_DP_SRC_SOURCE_MEMORY |
1103 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001105 OUT_RING(dev_priv->depth_pitch_offset_c);
1106 OUT_RING(dev_priv->span_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001108 OUT_RING((x << 16) | y);
1109 OUT_RING((0 << 16) | 0);
1110 OUT_RING((count << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 ADVANCE_RING();
1113
1114 return 0;
1115}
1116
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001117static int r128_cce_dispatch_read_pixels(struct drm_device *dev,
1118 drm_r128_depth_t *depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
1120 drm_r128_private_t *dev_priv = dev->dev_private;
1121 int count, *x, *y;
1122 int i, xbuf_size, ybuf_size;
1123 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +10001124 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 count = depth->n;
1127 if (count > 4096 || count <= 0)
Eric Anholt20caafa2007-08-25 19:22:43 +10001128 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001130 if (count > dev_priv->depth_pitch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 count = dev_priv->depth_pitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 xbuf_size = count * sizeof(*x);
1134 ybuf_size = count * sizeof(*y);
Eric Anholt9a298b22009-03-24 12:23:04 -07001135 x = kmalloc(xbuf_size, GFP_KERNEL);
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001136 if (x == NULL)
Eric Anholt20caafa2007-08-25 19:22:43 +10001137 return -ENOMEM;
Eric Anholt9a298b22009-03-24 12:23:04 -07001138 y = kmalloc(ybuf_size, GFP_KERNEL);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001139 if (y == NULL) {
Eric Anholt9a298b22009-03-24 12:23:04 -07001140 kfree(x);
Eric Anholt20caafa2007-08-25 19:22:43 +10001141 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Daniel Vetter1d6ac182013-12-11 11:34:44 +01001143 if (copy_from_user(x, depth->x, xbuf_size)) {
Eric Anholt9a298b22009-03-24 12:23:04 -07001144 kfree(x);
1145 kfree(y);
Eric Anholt20caafa2007-08-25 19:22:43 +10001146 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
Daniel Vetter1d6ac182013-12-11 11:34:44 +01001148 if (copy_from_user(y, depth->y, ybuf_size)) {
Eric Anholt9a298b22009-03-24 12:23:04 -07001149 kfree(x);
1150 kfree(y);
Eric Anholt20caafa2007-08-25 19:22:43 +10001151 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001154 for (i = 0; i < count; i++) {
1155 BEGIN_RING(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001157 OUT_RING(CCE_PACKET3(R128_CNTL_BITBLT_MULTI, 5));
1158 OUT_RING(R128_GMC_SRC_PITCH_OFFSET_CNTL |
1159 R128_GMC_DST_PITCH_OFFSET_CNTL |
1160 R128_GMC_BRUSH_NONE |
1161 (dev_priv->depth_fmt << 8) |
1162 R128_GMC_SRC_DATATYPE_COLOR |
1163 R128_ROP3_S |
1164 R128_DP_SRC_SOURCE_MEMORY |
1165 R128_GMC_CLR_CMP_CNTL_DIS | R128_GMC_WR_MSK_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001167 OUT_RING(dev_priv->depth_pitch_offset_c);
1168 OUT_RING(dev_priv->span_pitch_offset_c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001170 OUT_RING((x[i] << 16) | y[i]);
1171 OUT_RING((i << 16) | 0);
1172 OUT_RING((1 << 16) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 ADVANCE_RING();
1175 }
1176
Eric Anholt9a298b22009-03-24 12:23:04 -07001177 kfree(x);
1178 kfree(y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 return 0;
1181}
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183/* ================================================================
1184 * Polygon stipple
1185 */
1186
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001187static void r128_cce_dispatch_stipple(struct drm_device *dev, u32 *stipple)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
1189 drm_r128_private_t *dev_priv = dev->dev_private;
1190 int i;
1191 RING_LOCALS;
Márton Németh3e684ea2008-01-24 15:58:57 +10001192 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001194 BEGIN_RING(33);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001196 OUT_RING(CCE_PACKET0(R128_BRUSH_DATA0, 31));
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001197 for (i = 0; i < 32; i++)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001198 OUT_RING(stipple[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 ADVANCE_RING();
1201}
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203/* ================================================================
1204 * IOCTL functions
1205 */
1206
Eric Anholtc153f452007-09-03 12:06:45 +10001207static int r128_cce_clear(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 drm_r128_private_t *dev_priv = dev->dev_private;
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001210 drm_r128_sarea_t *sarea_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001211 drm_r128_clear_t *clear = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001212 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Eric Anholt6c340ea2007-08-25 20:23:09 +10001214 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001216 DEV_INIT_TEST_WITH_RETURN(dev_priv);
1217
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001218 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001220 sarea_priv = dev_priv->sarea_priv;
1221
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001222 if (sarea_priv->nbox > R128_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 sarea_priv->nbox = R128_NR_SAREA_CLIPRECTS;
1224
Eric Anholtc153f452007-09-03 12:06:45 +10001225 r128_cce_dispatch_clear(dev, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 COMMIT_RING();
1227
1228 /* Make sure we restore the 3D state next time.
1229 */
1230 dev_priv->sarea_priv->dirty |= R128_UPLOAD_CONTEXT | R128_UPLOAD_MASKS;
1231
1232 return 0;
1233}
1234
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001235static int r128_do_init_pageflip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
1237 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001238 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001240 dev_priv->crtc_offset = R128_READ(R128_CRTC_OFFSET);
1241 dev_priv->crtc_offset_cntl = R128_READ(R128_CRTC_OFFSET_CNTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001243 R128_WRITE(R128_CRTC_OFFSET, dev_priv->front_offset);
1244 R128_WRITE(R128_CRTC_OFFSET_CNTL,
1245 dev_priv->crtc_offset_cntl | R128_CRTC_OFFSET_FLIP_CNTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 dev_priv->page_flipping = 1;
1248 dev_priv->current_page = 0;
1249 dev_priv->sarea_priv->pfCurrentPage = dev_priv->current_page;
1250
1251 return 0;
1252}
1253
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001254static int r128_do_cleanup_pageflip(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001257 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001259 R128_WRITE(R128_CRTC_OFFSET, dev_priv->crtc_offset);
1260 R128_WRITE(R128_CRTC_OFFSET_CNTL, dev_priv->crtc_offset_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 if (dev_priv->current_page != 0) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001263 r128_cce_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 COMMIT_RING();
1265 }
1266
1267 dev_priv->page_flipping = 0;
1268 return 0;
1269}
1270
1271/* Swapping and flipping are different operations, need different ioctls.
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001272 * They can & should be intermixed to support multiple 3d windows.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 */
1274
Eric Anholtc153f452007-09-03 12:06:45 +10001275static int r128_cce_flip(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 drm_r128_private_t *dev_priv = dev->dev_private;
Márton Németh3e684ea2008-01-24 15:58:57 +10001278 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Eric Anholt6c340ea2007-08-25 20:23:09 +10001280 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001282 DEV_INIT_TEST_WITH_RETURN(dev_priv);
1283
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001284 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001286 if (!dev_priv->page_flipping)
1287 r128_do_init_pageflip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001289 r128_cce_dispatch_flip(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 COMMIT_RING();
1292 return 0;
1293}
1294
Eric Anholtc153f452007-09-03 12:06:45 +10001295static int r128_cce_swap(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 drm_r128_private_t *dev_priv = dev->dev_private;
1298 drm_r128_sarea_t *sarea_priv = dev_priv->sarea_priv;
Márton Németh3e684ea2008-01-24 15:58:57 +10001299 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Eric Anholt6c340ea2007-08-25 20:23:09 +10001301 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001303 DEV_INIT_TEST_WITH_RETURN(dev_priv);
1304
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001305 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001307 if (sarea_priv->nbox > R128_NR_SAREA_CLIPRECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 sarea_priv->nbox = R128_NR_SAREA_CLIPRECTS;
1309
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001310 r128_cce_dispatch_swap(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 dev_priv->sarea_priv->dirty |= (R128_UPLOAD_CONTEXT |
1312 R128_UPLOAD_MASKS);
1313
1314 COMMIT_RING();
1315 return 0;
1316}
1317
Eric Anholtc153f452007-09-03 12:06:45 +10001318static int r128_cce_vertex(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +10001321 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001322 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 drm_r128_buf_priv_t *buf_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001324 drm_r128_vertex_t *vertex = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Eric Anholt6c340ea2007-08-25 20:23:09 +10001326 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001328 DEV_INIT_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001330 DRM_DEBUG("pid=%d index=%d count=%d discard=%d\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001331 DRM_CURRENTPID, vertex->idx, vertex->count, vertex->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Eric Anholtc153f452007-09-03 12:06:45 +10001333 if (vertex->idx < 0 || vertex->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001334 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001335 vertex->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001336 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
Eric Anholtc153f452007-09-03 12:06:45 +10001338 if (vertex->prim < 0 ||
1339 vertex->prim > R128_CCE_VC_CNTL_PRIM_TYPE_TRI_TYPE2) {
1340 DRM_ERROR("buffer prim %d\n", vertex->prim);
Eric Anholt20caafa2007-08-25 19:22:43 +10001341 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001344 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1345 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Eric Anholtc153f452007-09-03 12:06:45 +10001347 buf = dma->buflist[vertex->idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 buf_priv = buf->dev_private;
1349
Eric Anholt6c340ea2007-08-25 20:23:09 +10001350 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001351 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +10001352 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +10001353 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001355 if (buf->pending) {
Eric Anholtc153f452007-09-03 12:06:45 +10001356 DRM_ERROR("sending pending buffer %d\n", vertex->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +10001357 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
1359
Eric Anholtc153f452007-09-03 12:06:45 +10001360 buf->used = vertex->count;
1361 buf_priv->prim = vertex->prim;
1362 buf_priv->discard = vertex->discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001364 r128_cce_dispatch_vertex(dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 COMMIT_RING();
1367 return 0;
1368}
1369
Eric Anholtc153f452007-09-03 12:06:45 +10001370static int r128_cce_indices(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +10001373 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001374 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 drm_r128_buf_priv_t *buf_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001376 drm_r128_indices_t *elts = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 int count;
1378
Eric Anholt6c340ea2007-08-25 20:23:09 +10001379 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001381 DEV_INIT_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001383 DRM_DEBUG("pid=%d buf=%d s=%d e=%d d=%d\n", DRM_CURRENTPID,
Eric Anholtc153f452007-09-03 12:06:45 +10001384 elts->idx, elts->start, elts->end, elts->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Eric Anholtc153f452007-09-03 12:06:45 +10001386 if (elts->idx < 0 || elts->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001387 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001388 elts->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001389 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
Eric Anholtc153f452007-09-03 12:06:45 +10001391 if (elts->prim < 0 ||
1392 elts->prim > R128_CCE_VC_CNTL_PRIM_TYPE_TRI_TYPE2) {
1393 DRM_ERROR("buffer prim %d\n", elts->prim);
Eric Anholt20caafa2007-08-25 19:22:43 +10001394 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001397 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1398 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Eric Anholtc153f452007-09-03 12:06:45 +10001400 buf = dma->buflist[elts->idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 buf_priv = buf->dev_private;
1402
Eric Anholt6c340ea2007-08-25 20:23:09 +10001403 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001404 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +10001405 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +10001406 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001408 if (buf->pending) {
Eric Anholtc153f452007-09-03 12:06:45 +10001409 DRM_ERROR("sending pending buffer %d\n", elts->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +10001410 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412
Eric Anholtc153f452007-09-03 12:06:45 +10001413 count = (elts->end - elts->start) / sizeof(u16);
1414 elts->start -= R128_INDEX_PRIM_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Eric Anholtc153f452007-09-03 12:06:45 +10001416 if (elts->start & 0x7) {
1417 DRM_ERROR("misaligned buffer 0x%x\n", elts->start);
Eric Anholt20caafa2007-08-25 19:22:43 +10001418 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Eric Anholtc153f452007-09-03 12:06:45 +10001420 if (elts->start < buf->used) {
1421 DRM_ERROR("no header 0x%x - 0x%x\n", elts->start, buf->used);
Eric Anholt20caafa2007-08-25 19:22:43 +10001422 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424
Eric Anholtc153f452007-09-03 12:06:45 +10001425 buf->used = elts->end;
1426 buf_priv->prim = elts->prim;
1427 buf_priv->discard = elts->discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Eric Anholtc153f452007-09-03 12:06:45 +10001429 r128_cce_dispatch_indices(dev, buf, elts->start, elts->end, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 COMMIT_RING();
1432 return 0;
1433}
1434
Eric Anholtc153f452007-09-03 12:06:45 +10001435static int r128_cce_blit(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Dave Airliecdd55a22007-07-11 16:32:08 +10001437 struct drm_device_dma *dma = dev->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001439 drm_r128_blit_t *blit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 int ret;
1441
Eric Anholt6c340ea2007-08-25 20:23:09 +10001442 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001444 DEV_INIT_TEST_WITH_RETURN(dev_priv);
1445
Eric Anholtc153f452007-09-03 12:06:45 +10001446 DRM_DEBUG("pid=%d index=%d\n", DRM_CURRENTPID, blit->idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Eric Anholtc153f452007-09-03 12:06:45 +10001448 if (blit->idx < 0 || blit->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001449 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001450 blit->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001451 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001454 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1455 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Eric Anholtc153f452007-09-03 12:06:45 +10001457 ret = r128_cce_dispatch_blit(dev, file_priv, blit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 COMMIT_RING();
1460 return ret;
1461}
1462
Eric Anholtc153f452007-09-03 12:06:45 +10001463static int r128_cce_depth(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001466 drm_r128_depth_t *depth = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 int ret;
1468
Eric Anholt6c340ea2007-08-25 20:23:09 +10001469 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001471 DEV_INIT_TEST_WITH_RETURN(dev_priv);
1472
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001473 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Eric Anholt20caafa2007-08-25 19:22:43 +10001475 ret = -EINVAL;
Eric Anholtc153f452007-09-03 12:06:45 +10001476 switch (depth->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 case R128_WRITE_SPAN:
Eric Anholtc153f452007-09-03 12:06:45 +10001478 ret = r128_cce_dispatch_write_span(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 case R128_WRITE_PIXELS:
Eric Anholtc153f452007-09-03 12:06:45 +10001481 ret = r128_cce_dispatch_write_pixels(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001482 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 case R128_READ_SPAN:
Eric Anholtc153f452007-09-03 12:06:45 +10001484 ret = r128_cce_dispatch_read_span(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001485 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 case R128_READ_PIXELS:
Eric Anholtc153f452007-09-03 12:06:45 +10001487 ret = r128_cce_dispatch_read_pixels(dev, depth);
Dave Airlie41aac242005-04-16 15:24:04 -07001488 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490
1491 COMMIT_RING();
1492 return ret;
1493}
1494
Eric Anholtc153f452007-09-03 12:06:45 +10001495static int r128_cce_stipple(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001498 drm_r128_stipple_t *stipple = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 u32 mask[32];
1500
Eric Anholt6c340ea2007-08-25 20:23:09 +10001501 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001503 DEV_INIT_TEST_WITH_RETURN(dev_priv);
1504
Daniel Vetter1d6ac182013-12-11 11:34:44 +01001505 if (copy_from_user(&mask, stipple->mask, 32 * sizeof(u32)))
Eric Anholt20caafa2007-08-25 19:22:43 +10001506 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001508 RING_SPACE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001510 r128_cce_dispatch_stipple(dev, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 COMMIT_RING();
1513 return 0;
1514}
1515
Eric Anholtc153f452007-09-03 12:06:45 +10001516static int r128_cce_indirect(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 drm_r128_private_t *dev_priv = dev->dev_private;
Dave Airliecdd55a22007-07-11 16:32:08 +10001519 struct drm_device_dma *dma = dev->dma;
Dave Airlie056219e2007-07-11 16:17:42 +10001520 struct drm_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 drm_r128_buf_priv_t *buf_priv;
Eric Anholtc153f452007-09-03 12:06:45 +10001522 drm_r128_indirect_t *indirect = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523#if 0
1524 RING_LOCALS;
1525#endif
1526
Eric Anholt6c340ea2007-08-25 20:23:09 +10001527 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001529 DEV_INIT_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Márton Németh3e684ea2008-01-24 15:58:57 +10001531 DRM_DEBUG("idx=%d s=%d e=%d d=%d\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001532 indirect->idx, indirect->start, indirect->end,
1533 indirect->discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Eric Anholtc153f452007-09-03 12:06:45 +10001535 if (indirect->idx < 0 || indirect->idx >= dma->buf_count) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001536 DRM_ERROR("buffer index %d (of %d max)\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001537 indirect->idx, dma->buf_count - 1);
Eric Anholt20caafa2007-08-25 19:22:43 +10001538 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 }
1540
Eric Anholtc153f452007-09-03 12:06:45 +10001541 buf = dma->buflist[indirect->idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 buf_priv = buf->dev_private;
1543
Eric Anholt6c340ea2007-08-25 20:23:09 +10001544 if (buf->file_priv != file_priv) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001545 DRM_ERROR("process %d using buffer owned by %p\n",
Eric Anholt6c340ea2007-08-25 20:23:09 +10001546 DRM_CURRENTPID, buf->file_priv);
Eric Anholt20caafa2007-08-25 19:22:43 +10001547 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001549 if (buf->pending) {
Eric Anholtc153f452007-09-03 12:06:45 +10001550 DRM_ERROR("sending pending buffer %d\n", indirect->idx);
Eric Anholt20caafa2007-08-25 19:22:43 +10001551 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
Eric Anholtc153f452007-09-03 12:06:45 +10001554 if (indirect->start < buf->used) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001555 DRM_ERROR("reusing indirect: start=0x%x actual=0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001556 indirect->start, buf->used);
Eric Anholt20caafa2007-08-25 19:22:43 +10001557 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001560 RING_SPACE_TEST_WITH_RETURN(dev_priv);
1561 VB_AGE_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Eric Anholtc153f452007-09-03 12:06:45 +10001563 buf->used = indirect->end;
1564 buf_priv->discard = indirect->discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566#if 0
1567 /* Wait for the 3D stream to idle before the indirect buffer
1568 * containing 2D acceleration commands is processed.
1569 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001570 BEGIN_RING(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 RADEON_WAIT_UNTIL_3D_IDLE();
1572 ADVANCE_RING();
1573#endif
1574
1575 /* Dispatch the indirect buffer full of commands from the
1576 * X server. This is insecure and is thus only available to
1577 * privileged clients.
1578 */
Eric Anholtc153f452007-09-03 12:06:45 +10001579 r128_cce_dispatch_indirect(dev, buf, indirect->start, indirect->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 COMMIT_RING();
1582 return 0;
1583}
1584
Eric Anholtc153f452007-09-03 12:06:45 +10001585static int r128_getparam(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 drm_r128_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +10001588 drm_r128_getparam_t *param = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 int value;
1590
Ben Hutchings7dc482d2009-08-23 16:59:04 +01001591 DEV_INIT_TEST_WITH_RETURN(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001593 DRM_DEBUG("pid=%d\n", DRM_CURRENTPID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Eric Anholtc153f452007-09-03 12:06:45 +10001595 switch (param->param) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 case R128_PARAM_IRQ_NR:
Daniel Vetterebfa4322013-11-03 20:27:09 +01001597 value = dev->pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 break;
1599 default:
Eric Anholt20caafa2007-08-25 19:22:43 +10001600 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602
Daniel Vetter1d6ac182013-12-11 11:34:44 +01001603 if (copy_to_user(param->value, &value, sizeof(int))) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001604 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +10001605 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return 0;
1609}
1610
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001611void r128_driver_preclose(struct drm_device *dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001613 if (dev->dev_private) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 drm_r128_private_t *dev_priv = dev->dev_private;
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001615 if (dev_priv->page_flipping)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001616 r128_do_cleanup_pageflip(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
Nicolas Kaiserbc5e9d62010-07-12 13:44:23 +02001619void r128_driver_lastclose(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001621 r128_do_cleanup_cce(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
1623
Rob Clarkbaa70942013-08-02 13:27:49 -04001624const struct drm_ioctl_desc r128_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +10001625 DRM_IOCTL_DEF_DRV(R128_INIT, r128_cce_init, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1626 DRM_IOCTL_DEF_DRV(R128_CCE_START, r128_cce_start, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1627 DRM_IOCTL_DEF_DRV(R128_CCE_STOP, r128_cce_stop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1628 DRM_IOCTL_DEF_DRV(R128_CCE_RESET, r128_cce_reset, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1629 DRM_IOCTL_DEF_DRV(R128_CCE_IDLE, r128_cce_idle, DRM_AUTH),
1630 DRM_IOCTL_DEF_DRV(R128_RESET, r128_engine_reset, DRM_AUTH),
1631 DRM_IOCTL_DEF_DRV(R128_FULLSCREEN, r128_fullscreen, DRM_AUTH),
1632 DRM_IOCTL_DEF_DRV(R128_SWAP, r128_cce_swap, DRM_AUTH),
1633 DRM_IOCTL_DEF_DRV(R128_FLIP, r128_cce_flip, DRM_AUTH),
1634 DRM_IOCTL_DEF_DRV(R128_CLEAR, r128_cce_clear, DRM_AUTH),
1635 DRM_IOCTL_DEF_DRV(R128_VERTEX, r128_cce_vertex, DRM_AUTH),
1636 DRM_IOCTL_DEF_DRV(R128_INDICES, r128_cce_indices, DRM_AUTH),
1637 DRM_IOCTL_DEF_DRV(R128_BLIT, r128_cce_blit, DRM_AUTH),
1638 DRM_IOCTL_DEF_DRV(R128_DEPTH, r128_cce_depth, DRM_AUTH),
1639 DRM_IOCTL_DEF_DRV(R128_STIPPLE, r128_cce_stipple, DRM_AUTH),
1640 DRM_IOCTL_DEF_DRV(R128_INDIRECT, r128_cce_indirect, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1641 DRM_IOCTL_DEF_DRV(R128_GETPARAM, r128_getparam, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642};
1643
Damien Lespiauf95aeb12014-06-09 14:39:49 +01001644int r128_max_ioctl = ARRAY_SIZE(r128_ioctls);