]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/gpu/drm/radeon/r600_cs.c
5cab1b413b6c374aa87e806e90d873bdcf8954ef
[net-next-2.6.git] / drivers / gpu / drm / radeon / r600_cs.c
1 /*
2  * Copyright 2008 Advanced Micro Devices, Inc.
3  * Copyright 2008 Red Hat Inc.
4  * Copyright 2009 Jerome Glisse.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors: Dave Airlie
25  *          Alex Deucher
26  *          Jerome Glisse
27  */
28 #include "drmP.h"
29 #include "radeon.h"
30 #include "r600d.h"
31 #include "r600_reg_safe.h"
32
33 static int r600_cs_packet_next_reloc_mm(struct radeon_cs_parser *p,
34                                         struct radeon_cs_reloc **cs_reloc);
35 static int r600_cs_packet_next_reloc_nomm(struct radeon_cs_parser *p,
36                                         struct radeon_cs_reloc **cs_reloc);
37 typedef int (*next_reloc_t)(struct radeon_cs_parser*, struct radeon_cs_reloc**);
38 static next_reloc_t r600_cs_packet_next_reloc = &r600_cs_packet_next_reloc_mm;
39 extern void r600_cs_legacy_get_tiling_conf(struct drm_device *dev, u32 *npipes, u32 *nbanks, u32 *group_size);
40
41
42 struct r600_cs_track {
43         /* configuration we miror so that we use same code btw kms/ums */
44         u32                     group_size;
45         u32                     nbanks;
46         u32                     npipes;
47         /* value we track */
48         u32                     sq_config;
49         u32                     nsamples;
50         u32                     cb_color_base_last[8];
51         struct radeon_bo        *cb_color_bo[8];
52         u32                     cb_color_bo_offset[8];
53         struct radeon_bo        *cb_color_frag_bo[8];
54         struct radeon_bo        *cb_color_tile_bo[8];
55         u32                     cb_color_info[8];
56         u32                     cb_color_size_idx[8];
57         u32                     cb_target_mask;
58         u32                     cb_shader_mask;
59         u32                     cb_color_size[8];
60         u32                     vgt_strmout_en;
61         u32                     vgt_strmout_buffer_en;
62         u32                     db_depth_control;
63         u32                     db_depth_info;
64         u32                     db_depth_size_idx;
65         u32                     db_depth_view;
66         u32                     db_depth_size;
67         u32                     db_offset;
68         struct radeon_bo        *db_bo;
69 };
70
71 static inline int r600_bpe_from_format(u32 *bpe, u32 format)
72 {
73         switch (format) {
74         case V_038004_COLOR_8:
75         case V_038004_COLOR_4_4:
76         case V_038004_COLOR_3_3_2:
77         case V_038004_FMT_1:
78                 *bpe = 1;
79                 break;
80         case V_038004_COLOR_16:
81         case V_038004_COLOR_16_FLOAT:
82         case V_038004_COLOR_8_8:
83         case V_038004_COLOR_5_6_5:
84         case V_038004_COLOR_6_5_5:
85         case V_038004_COLOR_1_5_5_5:
86         case V_038004_COLOR_4_4_4_4:
87         case V_038004_COLOR_5_5_5_1:
88                 *bpe = 2;
89                 break;
90         case V_038004_FMT_8_8_8:
91                 *bpe = 3;
92                 break;
93         case V_038004_COLOR_32:
94         case V_038004_COLOR_32_FLOAT:
95         case V_038004_COLOR_16_16:
96         case V_038004_COLOR_16_16_FLOAT:
97         case V_038004_COLOR_8_24:
98         case V_038004_COLOR_8_24_FLOAT:
99         case V_038004_COLOR_24_8:
100         case V_038004_COLOR_24_8_FLOAT:
101         case V_038004_COLOR_10_11_11:
102         case V_038004_COLOR_10_11_11_FLOAT:
103         case V_038004_COLOR_11_11_10:
104         case V_038004_COLOR_11_11_10_FLOAT:
105         case V_038004_COLOR_2_10_10_10:
106         case V_038004_COLOR_8_8_8_8:
107         case V_038004_COLOR_10_10_10_2:
108         case V_038004_FMT_5_9_9_9_SHAREDEXP:
109         case V_038004_FMT_32_AS_8:
110         case V_038004_FMT_32_AS_8_8:
111                 *bpe = 4;
112                 break;
113         case V_038004_COLOR_X24_8_32_FLOAT:
114         case V_038004_COLOR_32_32:
115         case V_038004_COLOR_32_32_FLOAT:
116         case V_038004_COLOR_16_16_16_16:
117         case V_038004_COLOR_16_16_16_16_FLOAT:
118                 *bpe = 8;
119                 break;
120         case V_038004_FMT_16_16_16:
121         case V_038004_FMT_16_16_16_FLOAT:
122                 *bpe = 6;
123                 break;
124         case V_038004_FMT_32_32_32:
125         case V_038004_FMT_32_32_32_FLOAT:
126                 *bpe = 12;
127                 break;
128         case V_038004_COLOR_32_32_32_32:
129         case V_038004_COLOR_32_32_32_32_FLOAT:
130                 *bpe = 16;
131                 break;
132         case V_038004_FMT_GB_GR:
133         case V_038004_FMT_BG_RG:
134         case V_038004_COLOR_INVALID:
135                 *bpe = 16;
136                 return -EINVAL;
137         }
138         return 0;
139 }
140
141 static void r600_cs_track_init(struct r600_cs_track *track)
142 {
143         int i;
144
145         /* assume DX9 mode */
146         track->sq_config = DX9_CONSTS;
147         for (i = 0; i < 8; i++) {
148                 track->cb_color_base_last[i] = 0;
149                 track->cb_color_size[i] = 0;
150                 track->cb_color_size_idx[i] = 0;
151                 track->cb_color_info[i] = 0;
152                 track->cb_color_bo[i] = NULL;
153                 track->cb_color_bo_offset[i] = 0xFFFFFFFF;
154         }
155         track->cb_target_mask = 0xFFFFFFFF;
156         track->cb_shader_mask = 0xFFFFFFFF;
157         track->db_bo = NULL;
158         /* assume the biggest format and that htile is enabled */
159         track->db_depth_info = 7 | (1 << 25);
160         track->db_depth_view = 0xFFFFC000;
161         track->db_depth_size = 0xFFFFFFFF;
162         track->db_depth_size_idx = 0;
163         track->db_depth_control = 0xFFFFFFFF;
164 }
165
166 static inline int r600_cs_track_validate_cb(struct radeon_cs_parser *p, int i)
167 {
168         struct r600_cs_track *track = p->track;
169         u32 bpe = 0, pitch, slice_tile_max, size, tmp, height;
170         volatile u32 *ib = p->ib->ptr;
171
172         if (G_0280A0_TILE_MODE(track->cb_color_info[i])) {
173                 dev_warn(p->dev, "FMASK or CMASK buffer are not supported by this kernel\n");
174                 return -EINVAL;
175         }
176         size = radeon_bo_size(track->cb_color_bo[i]);
177         if (r600_bpe_from_format(&bpe, G_0280A0_FORMAT(track->cb_color_info[i]))) {
178                 dev_warn(p->dev, "%s:%d cb invalid format %d for %d (0x%08X)\n",
179                          __func__, __LINE__, G_0280A0_FORMAT(track->cb_color_info[i]),
180                         i, track->cb_color_info[i]);
181                 return -EINVAL;
182         }
183         pitch = (G_028060_PITCH_TILE_MAX(track->cb_color_size[i]) + 1) << 3;
184         slice_tile_max = G_028060_SLICE_TILE_MAX(track->cb_color_size[i]) + 1;
185         if (!pitch) {
186                 dev_warn(p->dev, "%s:%d cb pitch (%d) for %d invalid (0x%08X)\n",
187                         __func__, __LINE__, pitch, i, track->cb_color_size[i]);
188                 return -EINVAL;
189         }
190         height = size / (pitch * bpe);
191         if (height > 8192)
192                 height = 8192;
193         switch (G_0280A0_ARRAY_MODE(track->cb_color_info[i])) {
194         case V_0280A0_ARRAY_LINEAR_GENERAL:
195         case V_0280A0_ARRAY_LINEAR_ALIGNED:
196                 if (pitch & 0x3f) {
197                         dev_warn(p->dev, "%s:%d cb pitch (%d x %d = %d) invalid\n",
198                                 __func__, __LINE__, pitch, bpe, pitch * bpe);
199                         return -EINVAL;
200                 }
201                 if ((pitch * bpe) & (track->group_size - 1)) {
202                         dev_warn(p->dev, "%s:%d cb pitch (%d) invalid\n",
203                                 __func__, __LINE__, pitch);
204                         return -EINVAL;
205                 }
206                 break;
207         case V_0280A0_ARRAY_1D_TILED_THIN1:
208                 if ((pitch * 8 * bpe * track->nsamples) & (track->group_size - 1)) {
209                         dev_warn(p->dev, "%s:%d cb pitch (%d) invalid\n",
210                                 __func__, __LINE__, pitch);
211                         return -EINVAL;
212                 }
213                 height &= ~0x7;
214                 if (!height)
215                         height = 8;
216                 break;
217         case V_0280A0_ARRAY_2D_TILED_THIN1:
218                 if (pitch & ((8 * track->nbanks) - 1)) {
219                         dev_warn(p->dev, "%s:%d cb pitch (%d) invalid\n",
220                                 __func__, __LINE__, pitch);
221                         return -EINVAL;
222                 }
223                 tmp = pitch * 8 * bpe * track->nsamples;
224                 tmp = tmp / track->nbanks;
225                 if (tmp & (track->group_size - 1)) {
226                         dev_warn(p->dev, "%s:%d cb pitch (%d) invalid\n",
227                                 __func__, __LINE__, pitch);
228                         return -EINVAL;
229                 }
230                 height &= ~((16 * track->npipes) - 1);
231                 if (!height)
232                         height = 16 * track->npipes;
233                 break;
234         default:
235                 dev_warn(p->dev, "%s invalid tiling %d for %d (0x%08X)\n", __func__,
236                         G_0280A0_ARRAY_MODE(track->cb_color_info[i]), i,
237                         track->cb_color_info[i]);
238                 return -EINVAL;
239         }
240         /* check offset */
241         tmp = height * pitch;
242         if ((tmp + track->cb_color_bo_offset[i]) > radeon_bo_size(track->cb_color_bo[i])) {
243                 dev_warn(p->dev, "%s offset[%d] %d to big\n", __func__, i, track->cb_color_bo_offset[i]);
244                 return -EINVAL;
245         }
246         /* limit max tile */
247         tmp = (height * pitch) >> 6;
248         if (tmp < slice_tile_max)
249                 slice_tile_max = tmp;
250         tmp = S_028060_PITCH_TILE_MAX((pitch >> 3) - 1) |
251                 S_028060_SLICE_TILE_MAX(slice_tile_max - 1);
252         ib[track->cb_color_size_idx[i]] = tmp;
253         return 0;
254 }
255
256 static int r600_cs_track_check(struct radeon_cs_parser *p)
257 {
258         struct r600_cs_track *track = p->track;
259         u32 tmp;
260         int r, i;
261         volatile u32 *ib = p->ib->ptr;
262
263         /* on legacy kernel we don't perform advanced check */
264         if (p->rdev == NULL)
265                 return 0;
266         /* we don't support out buffer yet */
267         if (track->vgt_strmout_en || track->vgt_strmout_buffer_en) {
268                 dev_warn(p->dev, "this kernel doesn't support SMX output buffer\n");
269                 return -EINVAL;
270         }
271         /* check that we have a cb for each enabled target, we don't check
272          * shader_mask because it seems mesa isn't always setting it :(
273          */
274         tmp = track->cb_target_mask;
275         for (i = 0; i < 8; i++) {
276                 if ((tmp >> (i * 4)) & 0xF) {
277                         /* at least one component is enabled */
278                         if (track->cb_color_bo[i] == NULL) {
279                                 dev_warn(p->dev, "%s:%d mask 0x%08X | 0x%08X no cb for %d\n",
280                                         __func__, __LINE__, track->cb_target_mask, track->cb_shader_mask, i);
281                                 return -EINVAL;
282                         }
283                         /* perform rewrite of CB_COLOR[0-7]_SIZE */
284                         r = r600_cs_track_validate_cb(p, i);
285                         if (r)
286                                 return r;
287                 }
288         }
289         /* Check depth buffer */
290         if (G_028800_STENCIL_ENABLE(track->db_depth_control) ||
291                 G_028800_Z_ENABLE(track->db_depth_control)) {
292                 u32 nviews, bpe, ntiles;
293                 if (track->db_bo == NULL) {
294                         dev_warn(p->dev, "z/stencil with no depth buffer\n");
295                         return -EINVAL;
296                 }
297                 if (G_028010_TILE_SURFACE_ENABLE(track->db_depth_info)) {
298                         dev_warn(p->dev, "this kernel doesn't support z/stencil htile\n");
299                         return -EINVAL;
300                 }
301                 switch (G_028010_FORMAT(track->db_depth_info)) {
302                 case V_028010_DEPTH_16:
303                         bpe = 2;
304                         break;
305                 case V_028010_DEPTH_X8_24:
306                 case V_028010_DEPTH_8_24:
307                 case V_028010_DEPTH_X8_24_FLOAT:
308                 case V_028010_DEPTH_8_24_FLOAT:
309                 case V_028010_DEPTH_32_FLOAT:
310                         bpe = 4;
311                         break;
312                 case V_028010_DEPTH_X24_8_32_FLOAT:
313                         bpe = 8;
314                         break;
315                 default:
316                         dev_warn(p->dev, "z/stencil with invalid format %d\n", G_028010_FORMAT(track->db_depth_info));
317                         return -EINVAL;
318                 }
319                 if ((track->db_depth_size & 0xFFFFFC00) == 0xFFFFFC00) {
320                         if (!track->db_depth_size_idx) {
321                                 dev_warn(p->dev, "z/stencil buffer size not set\n");
322                                 return -EINVAL;
323                         }
324                         printk_once(KERN_WARNING "You have old & broken userspace please consider updating mesa\n");
325                         tmp = radeon_bo_size(track->db_bo) - track->db_offset;
326                         tmp = (tmp / bpe) >> 6;
327                         if (!tmp) {
328                                 dev_warn(p->dev, "z/stencil buffer too small (0x%08X %d %d %ld)\n",
329                                                 track->db_depth_size, bpe, track->db_offset,
330                                                 radeon_bo_size(track->db_bo));
331                                 return -EINVAL;
332                         }
333                         ib[track->db_depth_size_idx] = S_028000_SLICE_TILE_MAX(tmp - 1) | (track->db_depth_size & 0x3FF);
334                 } else {
335                         ntiles = G_028000_SLICE_TILE_MAX(track->db_depth_size) + 1;
336                         nviews = G_028004_SLICE_MAX(track->db_depth_view) + 1;
337                         tmp = ntiles * bpe * 64 * nviews;
338                         if ((tmp + track->db_offset) > radeon_bo_size(track->db_bo)) {
339                                 dev_warn(p->dev, "z/stencil buffer too small (0x%08X %d %d %d -> %d have %ld)\n",
340                                                 track->db_depth_size, ntiles, nviews, bpe, tmp + track->db_offset,
341                                                 radeon_bo_size(track->db_bo));
342                                 return -EINVAL;
343                         }
344                 }
345         }
346         return 0;
347 }
348
349 /**
350  * r600_cs_packet_parse() - parse cp packet and point ib index to next packet
351  * @parser:     parser structure holding parsing context.
352  * @pkt:        where to store packet informations
353  *
354  * Assume that chunk_ib_index is properly set. Will return -EINVAL
355  * if packet is bigger than remaining ib size. or if packets is unknown.
356  **/
357 int r600_cs_packet_parse(struct radeon_cs_parser *p,
358                         struct radeon_cs_packet *pkt,
359                         unsigned idx)
360 {
361         struct radeon_cs_chunk *ib_chunk = &p->chunks[p->chunk_ib_idx];
362         uint32_t header;
363
364         if (idx >= ib_chunk->length_dw) {
365                 DRM_ERROR("Can not parse packet at %d after CS end %d !\n",
366                           idx, ib_chunk->length_dw);
367                 return -EINVAL;
368         }
369         header = radeon_get_ib_value(p, idx);
370         pkt->idx = idx;
371         pkt->type = CP_PACKET_GET_TYPE(header);
372         pkt->count = CP_PACKET_GET_COUNT(header);
373         pkt->one_reg_wr = 0;
374         switch (pkt->type) {
375         case PACKET_TYPE0:
376                 pkt->reg = CP_PACKET0_GET_REG(header);
377                 break;
378         case PACKET_TYPE3:
379                 pkt->opcode = CP_PACKET3_GET_OPCODE(header);
380                 break;
381         case PACKET_TYPE2:
382                 pkt->count = -1;
383                 break;
384         default:
385                 DRM_ERROR("Unknown packet type %d at %d !\n", pkt->type, idx);
386                 return -EINVAL;
387         }
388         if ((pkt->count + 1 + pkt->idx) >= ib_chunk->length_dw) {
389                 DRM_ERROR("Packet (%d:%d:%d) end after CS buffer (%d) !\n",
390                           pkt->idx, pkt->type, pkt->count, ib_chunk->length_dw);
391                 return -EINVAL;
392         }
393         return 0;
394 }
395
396 /**
397  * r600_cs_packet_next_reloc_mm() - parse next packet which should be reloc packet3
398  * @parser:             parser structure holding parsing context.
399  * @data:               pointer to relocation data
400  * @offset_start:       starting offset
401  * @offset_mask:        offset mask (to align start offset on)
402  * @reloc:              reloc informations
403  *
404  * Check next packet is relocation packet3, do bo validation and compute
405  * GPU offset using the provided start.
406  **/
407 static int r600_cs_packet_next_reloc_mm(struct radeon_cs_parser *p,
408                                         struct radeon_cs_reloc **cs_reloc)
409 {
410         struct radeon_cs_chunk *relocs_chunk;
411         struct radeon_cs_packet p3reloc;
412         unsigned idx;
413         int r;
414
415         if (p->chunk_relocs_idx == -1) {
416                 DRM_ERROR("No relocation chunk !\n");
417                 return -EINVAL;
418         }
419         *cs_reloc = NULL;
420         relocs_chunk = &p->chunks[p->chunk_relocs_idx];
421         r = r600_cs_packet_parse(p, &p3reloc, p->idx);
422         if (r) {
423                 return r;
424         }
425         p->idx += p3reloc.count + 2;
426         if (p3reloc.type != PACKET_TYPE3 || p3reloc.opcode != PACKET3_NOP) {
427                 DRM_ERROR("No packet3 for relocation for packet at %d.\n",
428                           p3reloc.idx);
429                 return -EINVAL;
430         }
431         idx = radeon_get_ib_value(p, p3reloc.idx + 1);
432         if (idx >= relocs_chunk->length_dw) {
433                 DRM_ERROR("Relocs at %d after relocations chunk end %d !\n",
434                           idx, relocs_chunk->length_dw);
435                 return -EINVAL;
436         }
437         /* FIXME: we assume reloc size is 4 dwords */
438         *cs_reloc = p->relocs_ptr[(idx / 4)];
439         return 0;
440 }
441
442 /**
443  * r600_cs_packet_next_reloc_nomm() - parse next packet which should be reloc packet3
444  * @parser:             parser structure holding parsing context.
445  * @data:               pointer to relocation data
446  * @offset_start:       starting offset
447  * @offset_mask:        offset mask (to align start offset on)
448  * @reloc:              reloc informations
449  *
450  * Check next packet is relocation packet3, do bo validation and compute
451  * GPU offset using the provided start.
452  **/
453 static int r600_cs_packet_next_reloc_nomm(struct radeon_cs_parser *p,
454                                         struct radeon_cs_reloc **cs_reloc)
455 {
456         struct radeon_cs_chunk *relocs_chunk;
457         struct radeon_cs_packet p3reloc;
458         unsigned idx;
459         int r;
460
461         if (p->chunk_relocs_idx == -1) {
462                 DRM_ERROR("No relocation chunk !\n");
463                 return -EINVAL;
464         }
465         *cs_reloc = NULL;
466         relocs_chunk = &p->chunks[p->chunk_relocs_idx];
467         r = r600_cs_packet_parse(p, &p3reloc, p->idx);
468         if (r) {
469                 return r;
470         }
471         p->idx += p3reloc.count + 2;
472         if (p3reloc.type != PACKET_TYPE3 || p3reloc.opcode != PACKET3_NOP) {
473                 DRM_ERROR("No packet3 for relocation for packet at %d.\n",
474                           p3reloc.idx);
475                 return -EINVAL;
476         }
477         idx = radeon_get_ib_value(p, p3reloc.idx + 1);
478         if (idx >= relocs_chunk->length_dw) {
479                 DRM_ERROR("Relocs at %d after relocations chunk end %d !\n",
480                           idx, relocs_chunk->length_dw);
481                 return -EINVAL;
482         }
483         *cs_reloc = p->relocs;
484         (*cs_reloc)->lobj.gpu_offset = (u64)relocs_chunk->kdata[idx + 3] << 32;
485         (*cs_reloc)->lobj.gpu_offset |= relocs_chunk->kdata[idx + 0];
486         return 0;
487 }
488
489 /**
490  * r600_cs_packet_next_is_pkt3_nop() - test if next packet is packet3 nop for reloc
491  * @parser:             parser structure holding parsing context.
492  *
493  * Check next packet is relocation packet3, do bo validation and compute
494  * GPU offset using the provided start.
495  **/
496 static inline int r600_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p)
497 {
498         struct radeon_cs_packet p3reloc;
499         int r;
500
501         r = r600_cs_packet_parse(p, &p3reloc, p->idx);
502         if (r) {
503                 return 0;
504         }
505         if (p3reloc.type != PACKET_TYPE3 || p3reloc.opcode != PACKET3_NOP) {
506                 return 0;
507         }
508         return 1;
509 }
510
511 /**
512  * r600_cs_packet_next_vline() - parse userspace VLINE packet
513  * @parser:             parser structure holding parsing context.
514  *
515  * Userspace sends a special sequence for VLINE waits.
516  * PACKET0 - VLINE_START_END + value
517  * PACKET3 - WAIT_REG_MEM poll vline status reg
518  * RELOC (P3) - crtc_id in reloc.
519  *
520  * This function parses this and relocates the VLINE START END
521  * and WAIT_REG_MEM packets to the correct crtc.
522  * It also detects a switched off crtc and nulls out the
523  * wait in that case.
524  */
525 static int r600_cs_packet_parse_vline(struct radeon_cs_parser *p)
526 {
527         struct drm_mode_object *obj;
528         struct drm_crtc *crtc;
529         struct radeon_crtc *radeon_crtc;
530         struct radeon_cs_packet p3reloc, wait_reg_mem;
531         int crtc_id;
532         int r;
533         uint32_t header, h_idx, reg, wait_reg_mem_info;
534         volatile uint32_t *ib;
535
536         ib = p->ib->ptr;
537
538         /* parse the WAIT_REG_MEM */
539         r = r600_cs_packet_parse(p, &wait_reg_mem, p->idx);
540         if (r)
541                 return r;
542
543         /* check its a WAIT_REG_MEM */
544         if (wait_reg_mem.type != PACKET_TYPE3 ||
545             wait_reg_mem.opcode != PACKET3_WAIT_REG_MEM) {
546                 DRM_ERROR("vline wait missing WAIT_REG_MEM segment\n");
547                 r = -EINVAL;
548                 return r;
549         }
550
551         wait_reg_mem_info = radeon_get_ib_value(p, wait_reg_mem.idx + 1);
552         /* bit 4 is reg (0) or mem (1) */
553         if (wait_reg_mem_info & 0x10) {
554                 DRM_ERROR("vline WAIT_REG_MEM waiting on MEM rather than REG\n");
555                 r = -EINVAL;
556                 return r;
557         }
558         /* waiting for value to be equal */
559         if ((wait_reg_mem_info & 0x7) != 0x3) {
560                 DRM_ERROR("vline WAIT_REG_MEM function not equal\n");
561                 r = -EINVAL;
562                 return r;
563         }
564         if ((radeon_get_ib_value(p, wait_reg_mem.idx + 2) << 2) != AVIVO_D1MODE_VLINE_STATUS) {
565                 DRM_ERROR("vline WAIT_REG_MEM bad reg\n");
566                 r = -EINVAL;
567                 return r;
568         }
569
570         if (radeon_get_ib_value(p, wait_reg_mem.idx + 5) != AVIVO_D1MODE_VLINE_STAT) {
571                 DRM_ERROR("vline WAIT_REG_MEM bad bit mask\n");
572                 r = -EINVAL;
573                 return r;
574         }
575
576         /* jump over the NOP */
577         r = r600_cs_packet_parse(p, &p3reloc, p->idx + wait_reg_mem.count + 2);
578         if (r)
579                 return r;
580
581         h_idx = p->idx - 2;
582         p->idx += wait_reg_mem.count + 2;
583         p->idx += p3reloc.count + 2;
584
585         header = radeon_get_ib_value(p, h_idx);
586         crtc_id = radeon_get_ib_value(p, h_idx + 2 + 7 + 1);
587         reg = CP_PACKET0_GET_REG(header);
588         mutex_lock(&p->rdev->ddev->mode_config.mutex);
589         obj = drm_mode_object_find(p->rdev->ddev, crtc_id, DRM_MODE_OBJECT_CRTC);
590         if (!obj) {
591                 DRM_ERROR("cannot find crtc %d\n", crtc_id);
592                 r = -EINVAL;
593                 goto out;
594         }
595         crtc = obj_to_crtc(obj);
596         radeon_crtc = to_radeon_crtc(crtc);
597         crtc_id = radeon_crtc->crtc_id;
598
599         if (!crtc->enabled) {
600                 /* if the CRTC isn't enabled - we need to nop out the WAIT_REG_MEM */
601                 ib[h_idx + 2] = PACKET2(0);
602                 ib[h_idx + 3] = PACKET2(0);
603                 ib[h_idx + 4] = PACKET2(0);
604                 ib[h_idx + 5] = PACKET2(0);
605                 ib[h_idx + 6] = PACKET2(0);
606                 ib[h_idx + 7] = PACKET2(0);
607                 ib[h_idx + 8] = PACKET2(0);
608         } else if (crtc_id == 1) {
609                 switch (reg) {
610                 case AVIVO_D1MODE_VLINE_START_END:
611                         header &= ~R600_CP_PACKET0_REG_MASK;
612                         header |= AVIVO_D2MODE_VLINE_START_END >> 2;
613                         break;
614                 default:
615                         DRM_ERROR("unknown crtc reloc\n");
616                         r = -EINVAL;
617                         goto out;
618                 }
619                 ib[h_idx] = header;
620                 ib[h_idx + 4] = AVIVO_D2MODE_VLINE_STATUS >> 2;
621         }
622 out:
623         mutex_unlock(&p->rdev->ddev->mode_config.mutex);
624         return r;
625 }
626
627 static int r600_packet0_check(struct radeon_cs_parser *p,
628                                 struct radeon_cs_packet *pkt,
629                                 unsigned idx, unsigned reg)
630 {
631         int r;
632
633         switch (reg) {
634         case AVIVO_D1MODE_VLINE_START_END:
635                 r = r600_cs_packet_parse_vline(p);
636                 if (r) {
637                         DRM_ERROR("No reloc for ib[%d]=0x%04X\n",
638                                         idx, reg);
639                         return r;
640                 }
641                 break;
642         default:
643                 printk(KERN_ERR "Forbidden register 0x%04X in cs at %d\n",
644                        reg, idx);
645                 return -EINVAL;
646         }
647         return 0;
648 }
649
650 static int r600_cs_parse_packet0(struct radeon_cs_parser *p,
651                                 struct radeon_cs_packet *pkt)
652 {
653         unsigned reg, i;
654         unsigned idx;
655         int r;
656
657         idx = pkt->idx + 1;
658         reg = pkt->reg;
659         for (i = 0; i <= pkt->count; i++, idx++, reg += 4) {
660                 r = r600_packet0_check(p, pkt, idx, reg);
661                 if (r) {
662                         return r;
663                 }
664         }
665         return 0;
666 }
667
668 /**
669  * r600_cs_check_reg() - check if register is authorized or not
670  * @parser: parser structure holding parsing context
671  * @reg: register we are testing
672  * @idx: index into the cs buffer
673  *
674  * This function will test against r600_reg_safe_bm and return 0
675  * if register is safe. If register is not flag as safe this function
676  * will test it against a list of register needind special handling.
677  */
678 static inline int r600_cs_check_reg(struct radeon_cs_parser *p, u32 reg, u32 idx)
679 {
680         struct r600_cs_track *track = (struct r600_cs_track *)p->track;
681         struct radeon_cs_reloc *reloc;
682         u32 last_reg = ARRAY_SIZE(r600_reg_safe_bm);
683         u32 m, i, tmp, *ib;
684         int r;
685
686         i = (reg >> 7);
687         if (i > last_reg) {
688                 dev_warn(p->dev, "forbidden register 0x%08x at %d\n", reg, idx);
689                 return -EINVAL;
690         }
691         m = 1 << ((reg >> 2) & 31);
692         if (!(r600_reg_safe_bm[i] & m))
693                 return 0;
694         ib = p->ib->ptr;
695         switch (reg) {
696         /* force following reg to 0 in an attemp to disable out buffer
697          * which will need us to better understand how it works to perform
698          * security check on it (Jerome)
699          */
700         case R_0288A8_SQ_ESGS_RING_ITEMSIZE:
701         case R_008C44_SQ_ESGS_RING_SIZE:
702         case R_0288B0_SQ_ESTMP_RING_ITEMSIZE:
703         case R_008C54_SQ_ESTMP_RING_SIZE:
704         case R_0288C0_SQ_FBUF_RING_ITEMSIZE:
705         case R_008C74_SQ_FBUF_RING_SIZE:
706         case R_0288B4_SQ_GSTMP_RING_ITEMSIZE:
707         case R_008C5C_SQ_GSTMP_RING_SIZE:
708         case R_0288AC_SQ_GSVS_RING_ITEMSIZE:
709         case R_008C4C_SQ_GSVS_RING_SIZE:
710         case R_0288BC_SQ_PSTMP_RING_ITEMSIZE:
711         case R_008C6C_SQ_PSTMP_RING_SIZE:
712         case R_0288C4_SQ_REDUC_RING_ITEMSIZE:
713         case R_008C7C_SQ_REDUC_RING_SIZE:
714         case R_0288B8_SQ_VSTMP_RING_ITEMSIZE:
715         case R_008C64_SQ_VSTMP_RING_SIZE:
716         case R_0288C8_SQ_GS_VERT_ITEMSIZE:
717                 /* get value to populate the IB don't remove */
718                 tmp =radeon_get_ib_value(p, idx);
719                 ib[idx] = 0;
720                 break;
721         case SQ_CONFIG:
722                 track->sq_config = radeon_get_ib_value(p, idx);
723                 break;
724         case R_028800_DB_DEPTH_CONTROL:
725                 track->db_depth_control = radeon_get_ib_value(p, idx);
726                 break;
727         case R_028010_DB_DEPTH_INFO:
728                 if (r600_cs_packet_next_is_pkt3_nop(p)) {
729                         r = r600_cs_packet_next_reloc(p, &reloc);
730                         if (r) {
731                                 dev_warn(p->dev, "bad SET_CONTEXT_REG "
732                                          "0x%04X\n", reg);
733                                 return -EINVAL;
734                         }
735                         track->db_depth_info = radeon_get_ib_value(p, idx);
736                         ib[idx] &= C_028010_ARRAY_MODE;
737                         track->db_depth_info &= C_028010_ARRAY_MODE;
738                         if (reloc->lobj.tiling_flags & RADEON_TILING_MACRO) {
739                                 ib[idx] |= S_028010_ARRAY_MODE(V_028010_ARRAY_2D_TILED_THIN1);
740                                 track->db_depth_info |= S_028010_ARRAY_MODE(V_028010_ARRAY_2D_TILED_THIN1);
741                         } else {
742                                 ib[idx] |= S_028010_ARRAY_MODE(V_028010_ARRAY_1D_TILED_THIN1);
743                                 track->db_depth_info |= S_028010_ARRAY_MODE(V_028010_ARRAY_1D_TILED_THIN1);
744                         }
745                 } else
746                         track->db_depth_info = radeon_get_ib_value(p, idx);
747                 break;
748         case R_028004_DB_DEPTH_VIEW:
749                 track->db_depth_view = radeon_get_ib_value(p, idx);
750                 break;
751         case R_028000_DB_DEPTH_SIZE:
752                 track->db_depth_size = radeon_get_ib_value(p, idx);
753                 track->db_depth_size_idx = idx;
754                 break;
755         case R_028AB0_VGT_STRMOUT_EN:
756                 track->vgt_strmout_en = radeon_get_ib_value(p, idx);
757                 break;
758         case R_028B20_VGT_STRMOUT_BUFFER_EN:
759                 track->vgt_strmout_buffer_en = radeon_get_ib_value(p, idx);
760                 break;
761         case R_028238_CB_TARGET_MASK:
762                 track->cb_target_mask = radeon_get_ib_value(p, idx);
763                 break;
764         case R_02823C_CB_SHADER_MASK:
765                 track->cb_shader_mask = radeon_get_ib_value(p, idx);
766                 break;
767         case R_028C04_PA_SC_AA_CONFIG:
768                 tmp = G_028C04_MSAA_NUM_SAMPLES(radeon_get_ib_value(p, idx));
769                 track->nsamples = 1 << tmp;
770                 break;
771         case R_0280A0_CB_COLOR0_INFO:
772         case R_0280A4_CB_COLOR1_INFO:
773         case R_0280A8_CB_COLOR2_INFO:
774         case R_0280AC_CB_COLOR3_INFO:
775         case R_0280B0_CB_COLOR4_INFO:
776         case R_0280B4_CB_COLOR5_INFO:
777         case R_0280B8_CB_COLOR6_INFO:
778         case R_0280BC_CB_COLOR7_INFO:
779                 if (r600_cs_packet_next_is_pkt3_nop(p)) {
780                         r = r600_cs_packet_next_reloc(p, &reloc);
781                         if (r) {
782                                 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg);
783                                 return -EINVAL;
784                         }
785                         tmp = (reg - R_0280A0_CB_COLOR0_INFO) / 4;
786                         track->cb_color_info[tmp] = radeon_get_ib_value(p, idx);
787                         if (reloc->lobj.tiling_flags & RADEON_TILING_MACRO) {
788                                 ib[idx] |= S_0280A0_ARRAY_MODE(V_0280A0_ARRAY_2D_TILED_THIN1);
789                                 track->cb_color_info[tmp] |= S_0280A0_ARRAY_MODE(V_0280A0_ARRAY_2D_TILED_THIN1);
790                         } else if (reloc->lobj.tiling_flags & RADEON_TILING_MICRO) {
791                                 ib[idx] |= S_0280A0_ARRAY_MODE(V_0280A0_ARRAY_1D_TILED_THIN1);
792                                 track->cb_color_info[tmp] |= S_0280A0_ARRAY_MODE(V_0280A0_ARRAY_1D_TILED_THIN1);
793                         }
794                 } else {
795                         tmp = (reg - R_0280A0_CB_COLOR0_INFO) / 4;
796                         track->cb_color_info[tmp] = radeon_get_ib_value(p, idx);
797                 }
798                 break;
799         case R_028060_CB_COLOR0_SIZE:
800         case R_028064_CB_COLOR1_SIZE:
801         case R_028068_CB_COLOR2_SIZE:
802         case R_02806C_CB_COLOR3_SIZE:
803         case R_028070_CB_COLOR4_SIZE:
804         case R_028074_CB_COLOR5_SIZE:
805         case R_028078_CB_COLOR6_SIZE:
806         case R_02807C_CB_COLOR7_SIZE:
807                 tmp = (reg - R_028060_CB_COLOR0_SIZE) / 4;
808                 track->cb_color_size[tmp] = radeon_get_ib_value(p, idx);
809                 track->cb_color_size_idx[tmp] = idx;
810                 break;
811                 /* This register were added late, there is userspace
812                  * which does provide relocation for those but set
813                  * 0 offset. In order to avoid breaking old userspace
814                  * we detect this and set address to point to last
815                  * CB_COLOR0_BASE, note that if userspace doesn't set
816                  * CB_COLOR0_BASE before this register we will report
817                  * error. Old userspace always set CB_COLOR0_BASE
818                  * before any of this.
819                  */
820         case R_0280E0_CB_COLOR0_FRAG:
821         case R_0280E4_CB_COLOR1_FRAG:
822         case R_0280E8_CB_COLOR2_FRAG:
823         case R_0280EC_CB_COLOR3_FRAG:
824         case R_0280F0_CB_COLOR4_FRAG:
825         case R_0280F4_CB_COLOR5_FRAG:
826         case R_0280F8_CB_COLOR6_FRAG:
827         case R_0280FC_CB_COLOR7_FRAG:
828                 tmp = (reg - R_0280E0_CB_COLOR0_FRAG) / 4;
829                 if (!r600_cs_packet_next_is_pkt3_nop(p)) {
830                         if (!track->cb_color_base_last[tmp]) {
831                                 dev_err(p->dev, "Broken old userspace ? no cb_color0_base supplied before trying to write 0x%08X\n", reg);
832                                 return -EINVAL;
833                         }
834                         ib[idx] = track->cb_color_base_last[tmp];
835                         printk_once(KERN_WARNING "You have old & broken userspace "
836                                         "please consider updating mesa & xf86-video-ati\n");
837                         track->cb_color_frag_bo[tmp] = track->cb_color_bo[tmp];
838                 } else {
839                         r = r600_cs_packet_next_reloc(p, &reloc);
840                         if (r) {
841                                 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg);
842                                 return -EINVAL;
843                         }
844                         ib[idx] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
845                         track->cb_color_frag_bo[tmp] = reloc->robj;
846                 }
847                 break;
848         case R_0280C0_CB_COLOR0_TILE:
849         case R_0280C4_CB_COLOR1_TILE:
850         case R_0280C8_CB_COLOR2_TILE:
851         case R_0280CC_CB_COLOR3_TILE:
852         case R_0280D0_CB_COLOR4_TILE:
853         case R_0280D4_CB_COLOR5_TILE:
854         case R_0280D8_CB_COLOR6_TILE:
855         case R_0280DC_CB_COLOR7_TILE:
856                 tmp = (reg - R_0280C0_CB_COLOR0_TILE) / 4;
857                 if (!r600_cs_packet_next_is_pkt3_nop(p)) {
858                         if (!track->cb_color_base_last[tmp]) {
859                                 dev_err(p->dev, "Broken old userspace ? no cb_color0_base supplied before trying to write 0x%08X\n", reg);
860                                 return -EINVAL;
861                         }
862                         ib[idx] = track->cb_color_base_last[tmp];
863                         printk_once(KERN_WARNING "You have old & broken userspace "
864                                         "please consider updating mesa & xf86-video-ati\n");
865                         track->cb_color_tile_bo[tmp] = track->cb_color_bo[tmp];
866                 } else {
867                         r = r600_cs_packet_next_reloc(p, &reloc);
868                         if (r) {
869                                 dev_err(p->dev, "bad SET_CONTEXT_REG 0x%04X\n", reg);
870                                 return -EINVAL;
871                         }
872                         ib[idx] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
873                         track->cb_color_tile_bo[tmp] = reloc->robj;
874                 }
875                 break;
876         case CB_COLOR0_BASE:
877         case CB_COLOR1_BASE:
878         case CB_COLOR2_BASE:
879         case CB_COLOR3_BASE:
880         case CB_COLOR4_BASE:
881         case CB_COLOR5_BASE:
882         case CB_COLOR6_BASE:
883         case CB_COLOR7_BASE:
884                 r = r600_cs_packet_next_reloc(p, &reloc);
885                 if (r) {
886                         dev_warn(p->dev, "bad SET_CONTEXT_REG "
887                                         "0x%04X\n", reg);
888                         return -EINVAL;
889                 }
890                 tmp = (reg - CB_COLOR0_BASE) / 4;
891                 track->cb_color_bo_offset[tmp] = radeon_get_ib_value(p, idx);
892                 ib[idx] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
893                 track->cb_color_base_last[tmp] = ib[idx];
894                 track->cb_color_bo[tmp] = reloc->robj;
895                 break;
896         case DB_DEPTH_BASE:
897                 r = r600_cs_packet_next_reloc(p, &reloc);
898                 if (r) {
899                         dev_warn(p->dev, "bad SET_CONTEXT_REG "
900                                         "0x%04X\n", reg);
901                         return -EINVAL;
902                 }
903                 track->db_offset = radeon_get_ib_value(p, idx);
904                 ib[idx] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
905                 track->db_bo = reloc->robj;
906                 break;
907         case DB_HTILE_DATA_BASE:
908         case SQ_PGM_START_FS:
909         case SQ_PGM_START_ES:
910         case SQ_PGM_START_VS:
911         case SQ_PGM_START_GS:
912         case SQ_PGM_START_PS:
913         case SQ_ALU_CONST_CACHE_GS_0:
914         case SQ_ALU_CONST_CACHE_GS_1:
915         case SQ_ALU_CONST_CACHE_GS_2:
916         case SQ_ALU_CONST_CACHE_GS_3:
917         case SQ_ALU_CONST_CACHE_GS_4:
918         case SQ_ALU_CONST_CACHE_GS_5:
919         case SQ_ALU_CONST_CACHE_GS_6:
920         case SQ_ALU_CONST_CACHE_GS_7:
921         case SQ_ALU_CONST_CACHE_GS_8:
922         case SQ_ALU_CONST_CACHE_GS_9:
923         case SQ_ALU_CONST_CACHE_GS_10:
924         case SQ_ALU_CONST_CACHE_GS_11:
925         case SQ_ALU_CONST_CACHE_GS_12:
926         case SQ_ALU_CONST_CACHE_GS_13:
927         case SQ_ALU_CONST_CACHE_GS_14:
928         case SQ_ALU_CONST_CACHE_GS_15:
929         case SQ_ALU_CONST_CACHE_PS_0:
930         case SQ_ALU_CONST_CACHE_PS_1:
931         case SQ_ALU_CONST_CACHE_PS_2:
932         case SQ_ALU_CONST_CACHE_PS_3:
933         case SQ_ALU_CONST_CACHE_PS_4:
934         case SQ_ALU_CONST_CACHE_PS_5:
935         case SQ_ALU_CONST_CACHE_PS_6:
936         case SQ_ALU_CONST_CACHE_PS_7:
937         case SQ_ALU_CONST_CACHE_PS_8:
938         case SQ_ALU_CONST_CACHE_PS_9:
939         case SQ_ALU_CONST_CACHE_PS_10:
940         case SQ_ALU_CONST_CACHE_PS_11:
941         case SQ_ALU_CONST_CACHE_PS_12:
942         case SQ_ALU_CONST_CACHE_PS_13:
943         case SQ_ALU_CONST_CACHE_PS_14:
944         case SQ_ALU_CONST_CACHE_PS_15:
945         case SQ_ALU_CONST_CACHE_VS_0:
946         case SQ_ALU_CONST_CACHE_VS_1:
947         case SQ_ALU_CONST_CACHE_VS_2:
948         case SQ_ALU_CONST_CACHE_VS_3:
949         case SQ_ALU_CONST_CACHE_VS_4:
950         case SQ_ALU_CONST_CACHE_VS_5:
951         case SQ_ALU_CONST_CACHE_VS_6:
952         case SQ_ALU_CONST_CACHE_VS_7:
953         case SQ_ALU_CONST_CACHE_VS_8:
954         case SQ_ALU_CONST_CACHE_VS_9:
955         case SQ_ALU_CONST_CACHE_VS_10:
956         case SQ_ALU_CONST_CACHE_VS_11:
957         case SQ_ALU_CONST_CACHE_VS_12:
958         case SQ_ALU_CONST_CACHE_VS_13:
959         case SQ_ALU_CONST_CACHE_VS_14:
960         case SQ_ALU_CONST_CACHE_VS_15:
961                 r = r600_cs_packet_next_reloc(p, &reloc);
962                 if (r) {
963                         dev_warn(p->dev, "bad SET_CONTEXT_REG "
964                                         "0x%04X\n", reg);
965                         return -EINVAL;
966                 }
967                 ib[idx] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
968                 break;
969         default:
970                 dev_warn(p->dev, "forbidden register 0x%08x at %d\n", reg, idx);
971                 return -EINVAL;
972         }
973         return 0;
974 }
975
976 static inline unsigned minify(unsigned size, unsigned levels)
977 {
978         size = size >> levels;
979         if (size < 1)
980                 size = 1;
981         return size;
982 }
983
984 static void r600_texture_size(unsigned nfaces, unsigned blevel, unsigned nlevels,
985                                 unsigned w0, unsigned h0, unsigned d0, unsigned bpe,
986                                 unsigned *l0_size, unsigned *mipmap_size)
987 {
988         unsigned offset, i, level, face;
989         unsigned width, height, depth, rowstride, size;
990
991         w0 = minify(w0, 0);
992         h0 = minify(h0, 0);
993         d0 = minify(d0, 0);
994         for(i = 0, offset = 0, level = blevel; i < nlevels; i++, level++) {
995                 width = minify(w0, i);
996                 height = minify(h0, i);
997                 depth = minify(d0, i);
998                 for(face = 0; face < nfaces; face++) {
999                         rowstride = ((width * bpe) + 255) & ~255;
1000                         size = height * rowstride * depth;
1001                         offset += size;
1002                         offset = (offset + 0x1f) & ~0x1f;
1003                 }
1004         }
1005         *l0_size = (((w0 * bpe) + 255) & ~255) * h0 * d0;
1006         *mipmap_size = offset;
1007         if (!blevel)
1008                 *mipmap_size -= *l0_size;
1009         if (!nlevels)
1010                 *mipmap_size = *l0_size;
1011 }
1012
1013 /**
1014  * r600_check_texture_resource() - check if register is authorized or not
1015  * @p: parser structure holding parsing context
1016  * @idx: index into the cs buffer
1017  * @texture: texture's bo structure
1018  * @mipmap: mipmap's bo structure
1019  *
1020  * This function will check that the resource has valid field and that
1021  * the texture and mipmap bo object are big enough to cover this resource.
1022  */
1023 static inline int r600_check_texture_resource(struct radeon_cs_parser *p,  u32 idx,
1024                                               struct radeon_bo *texture,
1025                                               struct radeon_bo *mipmap,
1026                                               u32 tiling_flags)
1027 {
1028         u32 nfaces, nlevels, blevel, w0, h0, d0, bpe = 0;
1029         u32 word0, word1, l0_size, mipmap_size;
1030
1031         /* on legacy kernel we don't perform advanced check */
1032         if (p->rdev == NULL)
1033                 return 0;
1034
1035         word0 = radeon_get_ib_value(p, idx + 0);
1036         if (tiling_flags & RADEON_TILING_MACRO)
1037                 word0 |= S_038000_TILE_MODE(V_038000_ARRAY_2D_TILED_THIN1);
1038         else if (tiling_flags & RADEON_TILING_MICRO)
1039                 word0 |= S_038000_TILE_MODE(V_038000_ARRAY_1D_TILED_THIN1);
1040         word1 = radeon_get_ib_value(p, idx + 1);
1041         w0 = G_038000_TEX_WIDTH(word0) + 1;
1042         h0 = G_038004_TEX_HEIGHT(word1) + 1;
1043         d0 = G_038004_TEX_DEPTH(word1);
1044         nfaces = 1;
1045         switch (G_038000_DIM(word0)) {
1046         case V_038000_SQ_TEX_DIM_1D:
1047         case V_038000_SQ_TEX_DIM_2D:
1048         case V_038000_SQ_TEX_DIM_3D:
1049                 break;
1050         case V_038000_SQ_TEX_DIM_CUBEMAP:
1051                 nfaces = 6;
1052                 break;
1053         case V_038000_SQ_TEX_DIM_1D_ARRAY:
1054         case V_038000_SQ_TEX_DIM_2D_ARRAY:
1055         case V_038000_SQ_TEX_DIM_2D_MSAA:
1056         case V_038000_SQ_TEX_DIM_2D_ARRAY_MSAA:
1057         default:
1058                 dev_warn(p->dev, "this kernel doesn't support %d texture dim\n", G_038000_DIM(word0));
1059                 return -EINVAL;
1060         }
1061         if (r600_bpe_from_format(&bpe,  G_038004_DATA_FORMAT(word1))) {
1062                 dev_warn(p->dev, "%s:%d texture invalid format %d\n",
1063                          __func__, __LINE__, G_038004_DATA_FORMAT(word1));
1064                 return -EINVAL;
1065         }
1066         word0 = radeon_get_ib_value(p, idx + 4);
1067         word1 = radeon_get_ib_value(p, idx + 5);
1068         blevel = G_038010_BASE_LEVEL(word0);
1069         nlevels = G_038014_LAST_LEVEL(word1);
1070         r600_texture_size(nfaces, blevel, nlevels, w0, h0, d0, bpe, &l0_size, &mipmap_size);
1071         /* using get ib will give us the offset into the texture bo */
1072         word0 = radeon_get_ib_value(p, idx + 2);
1073         if ((l0_size + word0) > radeon_bo_size(texture)) {
1074                 dev_warn(p->dev, "texture bo too small (%d %d %d %d -> %d have %ld)\n",
1075                         w0, h0, bpe, word0, l0_size, radeon_bo_size(texture));
1076                 return -EINVAL;
1077         }
1078         /* using get ib will give us the offset into the mipmap bo */
1079         word0 = radeon_get_ib_value(p, idx + 3);
1080         if ((mipmap_size + word0) > radeon_bo_size(mipmap)) {
1081                 dev_warn(p->dev, "mipmap bo too small (%d %d %d %d %d %d -> %d have %ld)\n",
1082                         w0, h0, bpe, blevel, nlevels, word0, mipmap_size, radeon_bo_size(texture));
1083                 return -EINVAL;
1084         }
1085         return 0;
1086 }
1087
1088 static int r600_packet3_check(struct radeon_cs_parser *p,
1089                                 struct radeon_cs_packet *pkt)
1090 {
1091         struct radeon_cs_reloc *reloc;
1092         struct r600_cs_track *track;
1093         volatile u32 *ib;
1094         unsigned idx;
1095         unsigned i;
1096         unsigned start_reg, end_reg, reg;
1097         int r;
1098         u32 idx_value;
1099
1100         track = (struct r600_cs_track *)p->track;
1101         ib = p->ib->ptr;
1102         idx = pkt->idx + 1;
1103         idx_value = radeon_get_ib_value(p, idx);
1104
1105         switch (pkt->opcode) {
1106         case PACKET3_START_3D_CMDBUF:
1107                 if (p->family >= CHIP_RV770 || pkt->count) {
1108                         DRM_ERROR("bad START_3D\n");
1109                         return -EINVAL;
1110                 }
1111                 break;
1112         case PACKET3_CONTEXT_CONTROL:
1113                 if (pkt->count != 1) {
1114                         DRM_ERROR("bad CONTEXT_CONTROL\n");
1115                         return -EINVAL;
1116                 }
1117                 break;
1118         case PACKET3_INDEX_TYPE:
1119         case PACKET3_NUM_INSTANCES:
1120                 if (pkt->count) {
1121                         DRM_ERROR("bad INDEX_TYPE/NUM_INSTANCES\n");
1122                         return -EINVAL;
1123                 }
1124                 break;
1125         case PACKET3_DRAW_INDEX:
1126                 if (pkt->count != 3) {
1127                         DRM_ERROR("bad DRAW_INDEX\n");
1128                         return -EINVAL;
1129                 }
1130                 r = r600_cs_packet_next_reloc(p, &reloc);
1131                 if (r) {
1132                         DRM_ERROR("bad DRAW_INDEX\n");
1133                         return -EINVAL;
1134                 }
1135                 ib[idx+0] = idx_value + (u32)(reloc->lobj.gpu_offset & 0xffffffff);
1136                 ib[idx+1] += upper_32_bits(reloc->lobj.gpu_offset) & 0xff;
1137                 r = r600_cs_track_check(p);
1138                 if (r) {
1139                         dev_warn(p->dev, "%s:%d invalid cmd stream\n", __func__, __LINE__);
1140                         return r;
1141                 }
1142                 break;
1143         case PACKET3_DRAW_INDEX_AUTO:
1144                 if (pkt->count != 1) {
1145                         DRM_ERROR("bad DRAW_INDEX_AUTO\n");
1146                         return -EINVAL;
1147                 }
1148                 r = r600_cs_track_check(p);
1149                 if (r) {
1150                         dev_warn(p->dev, "%s:%d invalid cmd stream %d\n", __func__, __LINE__, idx);
1151                         return r;
1152                 }
1153                 break;
1154         case PACKET3_DRAW_INDEX_IMMD_BE:
1155         case PACKET3_DRAW_INDEX_IMMD:
1156                 if (pkt->count < 2) {
1157                         DRM_ERROR("bad DRAW_INDEX_IMMD\n");
1158                         return -EINVAL;
1159                 }
1160                 r = r600_cs_track_check(p);
1161                 if (r) {
1162                         dev_warn(p->dev, "%s:%d invalid cmd stream\n", __func__, __LINE__);
1163                         return r;
1164                 }
1165                 break;
1166         case PACKET3_WAIT_REG_MEM:
1167                 if (pkt->count != 5) {
1168                         DRM_ERROR("bad WAIT_REG_MEM\n");
1169                         return -EINVAL;
1170                 }
1171                 /* bit 4 is reg (0) or mem (1) */
1172                 if (idx_value & 0x10) {
1173                         r = r600_cs_packet_next_reloc(p, &reloc);
1174                         if (r) {
1175                                 DRM_ERROR("bad WAIT_REG_MEM\n");
1176                                 return -EINVAL;
1177                         }
1178                         ib[idx+1] += (u32)(reloc->lobj.gpu_offset & 0xffffffff);
1179                         ib[idx+2] += upper_32_bits(reloc->lobj.gpu_offset) & 0xff;
1180                 }
1181                 break;
1182         case PACKET3_SURFACE_SYNC:
1183                 if (pkt->count != 3) {
1184                         DRM_ERROR("bad SURFACE_SYNC\n");
1185                         return -EINVAL;
1186                 }
1187                 /* 0xffffffff/0x0 is flush all cache flag */
1188                 if (radeon_get_ib_value(p, idx + 1) != 0xffffffff ||
1189                     radeon_get_ib_value(p, idx + 2) != 0) {
1190                         r = r600_cs_packet_next_reloc(p, &reloc);
1191                         if (r) {
1192                                 DRM_ERROR("bad SURFACE_SYNC\n");
1193                                 return -EINVAL;
1194                         }
1195                         ib[idx+2] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
1196                 }
1197                 break;
1198         case PACKET3_EVENT_WRITE:
1199                 if (pkt->count != 2 && pkt->count != 0) {
1200                         DRM_ERROR("bad EVENT_WRITE\n");
1201                         return -EINVAL;
1202                 }
1203                 if (pkt->count) {
1204                         r = r600_cs_packet_next_reloc(p, &reloc);
1205                         if (r) {
1206                                 DRM_ERROR("bad EVENT_WRITE\n");
1207                                 return -EINVAL;
1208                         }
1209                         ib[idx+1] += (u32)(reloc->lobj.gpu_offset & 0xffffffff);
1210                         ib[idx+2] += upper_32_bits(reloc->lobj.gpu_offset) & 0xff;
1211                 }
1212                 break;
1213         case PACKET3_EVENT_WRITE_EOP:
1214                 if (pkt->count != 4) {
1215                         DRM_ERROR("bad EVENT_WRITE_EOP\n");
1216                         return -EINVAL;
1217                 }
1218                 r = r600_cs_packet_next_reloc(p, &reloc);
1219                 if (r) {
1220                         DRM_ERROR("bad EVENT_WRITE\n");
1221                         return -EINVAL;
1222                 }
1223                 ib[idx+1] += (u32)(reloc->lobj.gpu_offset & 0xffffffff);
1224                 ib[idx+2] += upper_32_bits(reloc->lobj.gpu_offset) & 0xff;
1225                 break;
1226         case PACKET3_SET_CONFIG_REG:
1227                 start_reg = (idx_value << 2) + PACKET3_SET_CONFIG_REG_OFFSET;
1228                 end_reg = 4 * pkt->count + start_reg - 4;
1229                 if ((start_reg < PACKET3_SET_CONFIG_REG_OFFSET) ||
1230                     (start_reg >= PACKET3_SET_CONFIG_REG_END) ||
1231                     (end_reg >= PACKET3_SET_CONFIG_REG_END)) {
1232                         DRM_ERROR("bad PACKET3_SET_CONFIG_REG\n");
1233                         return -EINVAL;
1234                 }
1235                 for (i = 0; i < pkt->count; i++) {
1236                         reg = start_reg + (4 * i);
1237                         r = r600_cs_check_reg(p, reg, idx+1+i);
1238                         if (r)
1239                                 return r;
1240                 }
1241                 break;
1242         case PACKET3_SET_CONTEXT_REG:
1243                 start_reg = (idx_value << 2) + PACKET3_SET_CONTEXT_REG_OFFSET;
1244                 end_reg = 4 * pkt->count + start_reg - 4;
1245                 if ((start_reg < PACKET3_SET_CONTEXT_REG_OFFSET) ||
1246                     (start_reg >= PACKET3_SET_CONTEXT_REG_END) ||
1247                     (end_reg >= PACKET3_SET_CONTEXT_REG_END)) {
1248                         DRM_ERROR("bad PACKET3_SET_CONTEXT_REG\n");
1249                         return -EINVAL;
1250                 }
1251                 for (i = 0; i < pkt->count; i++) {
1252                         reg = start_reg + (4 * i);
1253                         r = r600_cs_check_reg(p, reg, idx+1+i);
1254                         if (r)
1255                                 return r;
1256                 }
1257                 break;
1258         case PACKET3_SET_RESOURCE:
1259                 if (pkt->count % 7) {
1260                         DRM_ERROR("bad SET_RESOURCE\n");
1261                         return -EINVAL;
1262                 }
1263                 start_reg = (idx_value << 2) + PACKET3_SET_RESOURCE_OFFSET;
1264                 end_reg = 4 * pkt->count + start_reg - 4;
1265                 if ((start_reg < PACKET3_SET_RESOURCE_OFFSET) ||
1266                     (start_reg >= PACKET3_SET_RESOURCE_END) ||
1267                     (end_reg >= PACKET3_SET_RESOURCE_END)) {
1268                         DRM_ERROR("bad SET_RESOURCE\n");
1269                         return -EINVAL;
1270                 }
1271                 for (i = 0; i < (pkt->count / 7); i++) {
1272                         struct radeon_bo *texture, *mipmap;
1273                         u32 size, offset;
1274
1275                         switch (G__SQ_VTX_CONSTANT_TYPE(radeon_get_ib_value(p, idx+(i*7)+6+1))) {
1276                         case SQ_TEX_VTX_VALID_TEXTURE:
1277                                 /* tex base */
1278                                 r = r600_cs_packet_next_reloc(p, &reloc);
1279                                 if (r) {
1280                                         DRM_ERROR("bad SET_RESOURCE\n");
1281                                         return -EINVAL;
1282                                 }
1283                                 ib[idx+1+(i*7)+2] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
1284                                 if (reloc->lobj.tiling_flags & RADEON_TILING_MACRO)
1285                                         ib[idx+1+(i*7)+0] |= S_038000_TILE_MODE(V_038000_ARRAY_2D_TILED_THIN1);
1286                                 else if (reloc->lobj.tiling_flags & RADEON_TILING_MICRO)
1287                                         ib[idx+1+(i*7)+0] |= S_038000_TILE_MODE(V_038000_ARRAY_1D_TILED_THIN1);
1288                                 texture = reloc->robj;
1289                                 /* tex mip base */
1290                                 r = r600_cs_packet_next_reloc(p, &reloc);
1291                                 if (r) {
1292                                         DRM_ERROR("bad SET_RESOURCE\n");
1293                                         return -EINVAL;
1294                                 }
1295                                 ib[idx+1+(i*7)+3] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff);
1296                                 mipmap = reloc->robj;
1297                                 r = r600_check_texture_resource(p,  idx+(i*7)+1,
1298                                                                 texture, mipmap, reloc->lobj.tiling_flags);
1299                                 if (r)
1300                                         return r;
1301                                 break;
1302                         case SQ_TEX_VTX_VALID_BUFFER:
1303                                 /* vtx base */
1304                                 r = r600_cs_packet_next_reloc(p, &reloc);
1305                                 if (r) {
1306                                         DRM_ERROR("bad SET_RESOURCE\n");
1307                                         return -EINVAL;
1308                                 }
1309                                 offset = radeon_get_ib_value(p, idx+1+(i*7)+0);
1310                                 size = radeon_get_ib_value(p, idx+1+(i*7)+1);
1311                                 if (p->rdev && (size + offset) > radeon_bo_size(reloc->robj)) {
1312                                         /* force size to size of the buffer */
1313                                         dev_warn(p->dev, "vbo resource seems too big for the bo\n");
1314                                         ib[idx+1+(i*7)+1] = radeon_bo_size(reloc->robj);
1315                                 }
1316                                 ib[idx+1+(i*7)+0] += (u32)((reloc->lobj.gpu_offset) & 0xffffffff);
1317                                 ib[idx+1+(i*7)+2] += upper_32_bits(reloc->lobj.gpu_offset) & 0xff;
1318                                 break;
1319                         case SQ_TEX_VTX_INVALID_TEXTURE:
1320                         case SQ_TEX_VTX_INVALID_BUFFER:
1321                         default:
1322                                 DRM_ERROR("bad SET_RESOURCE\n");
1323                                 return -EINVAL;
1324                         }
1325                 }
1326                 break;
1327         case PACKET3_SET_ALU_CONST:
1328                 if (track->sq_config & DX9_CONSTS) {
1329                         start_reg = (idx_value << 2) + PACKET3_SET_ALU_CONST_OFFSET;
1330                         end_reg = 4 * pkt->count + start_reg - 4;
1331                         if ((start_reg < PACKET3_SET_ALU_CONST_OFFSET) ||
1332                             (start_reg >= PACKET3_SET_ALU_CONST_END) ||
1333                             (end_reg >= PACKET3_SET_ALU_CONST_END)) {
1334                                 DRM_ERROR("bad SET_ALU_CONST\n");
1335                                 return -EINVAL;
1336                         }
1337                 }
1338                 break;
1339         case PACKET3_SET_BOOL_CONST:
1340                 start_reg = (idx_value << 2) + PACKET3_SET_BOOL_CONST_OFFSET;
1341                 end_reg = 4 * pkt->count + start_reg - 4;
1342                 if ((start_reg < PACKET3_SET_BOOL_CONST_OFFSET) ||
1343                     (start_reg >= PACKET3_SET_BOOL_CONST_END) ||
1344                     (end_reg >= PACKET3_SET_BOOL_CONST_END)) {
1345                         DRM_ERROR("bad SET_BOOL_CONST\n");
1346                         return -EINVAL;
1347                 }
1348                 break;
1349         case PACKET3_SET_LOOP_CONST:
1350                 start_reg = (idx_value << 2) + PACKET3_SET_LOOP_CONST_OFFSET;
1351                 end_reg = 4 * pkt->count + start_reg - 4;
1352                 if ((start_reg < PACKET3_SET_LOOP_CONST_OFFSET) ||
1353                     (start_reg >= PACKET3_SET_LOOP_CONST_END) ||
1354                     (end_reg >= PACKET3_SET_LOOP_CONST_END)) {
1355                         DRM_ERROR("bad SET_LOOP_CONST\n");
1356                         return -EINVAL;
1357                 }
1358                 break;
1359         case PACKET3_SET_CTL_CONST:
1360                 start_reg = (idx_value << 2) + PACKET3_SET_CTL_CONST_OFFSET;
1361                 end_reg = 4 * pkt->count + start_reg - 4;
1362                 if ((start_reg < PACKET3_SET_CTL_CONST_OFFSET) ||
1363                     (start_reg >= PACKET3_SET_CTL_CONST_END) ||
1364                     (end_reg >= PACKET3_SET_CTL_CONST_END)) {
1365                         DRM_ERROR("bad SET_CTL_CONST\n");
1366                         return -EINVAL;
1367                 }
1368                 break;
1369         case PACKET3_SET_SAMPLER:
1370                 if (pkt->count % 3) {
1371                         DRM_ERROR("bad SET_SAMPLER\n");
1372                         return -EINVAL;
1373                 }
1374                 start_reg = (idx_value << 2) + PACKET3_SET_SAMPLER_OFFSET;
1375                 end_reg = 4 * pkt->count + start_reg - 4;
1376                 if ((start_reg < PACKET3_SET_SAMPLER_OFFSET) ||
1377                     (start_reg >= PACKET3_SET_SAMPLER_END) ||
1378                     (end_reg >= PACKET3_SET_SAMPLER_END)) {
1379                         DRM_ERROR("bad SET_SAMPLER\n");
1380                         return -EINVAL;
1381                 }
1382                 break;
1383         case PACKET3_SURFACE_BASE_UPDATE:
1384                 if (p->family >= CHIP_RV770 || p->family == CHIP_R600) {
1385                         DRM_ERROR("bad SURFACE_BASE_UPDATE\n");
1386                         return -EINVAL;
1387                 }
1388                 if (pkt->count) {
1389                         DRM_ERROR("bad SURFACE_BASE_UPDATE\n");
1390                         return -EINVAL;
1391                 }
1392                 break;
1393         case PACKET3_NOP:
1394                 break;
1395         default:
1396                 DRM_ERROR("Packet3 opcode %x not supported\n", pkt->opcode);
1397                 return -EINVAL;
1398         }
1399         return 0;
1400 }
1401
1402 int r600_cs_parse(struct radeon_cs_parser *p)
1403 {
1404         struct radeon_cs_packet pkt;
1405         struct r600_cs_track *track;
1406         int r;
1407
1408         if (p->track == NULL) {
1409                 /* initialize tracker, we are in kms */
1410                 track = kzalloc(sizeof(*track), GFP_KERNEL);
1411                 if (track == NULL)
1412                         return -ENOMEM;
1413                 r600_cs_track_init(track);
1414                 if (p->rdev->family < CHIP_RV770) {
1415                         track->npipes = p->rdev->config.r600.tiling_npipes;
1416                         track->nbanks = p->rdev->config.r600.tiling_nbanks;
1417                         track->group_size = p->rdev->config.r600.tiling_group_size;
1418                 } else if (p->rdev->family <= CHIP_RV740) {
1419                         track->npipes = p->rdev->config.rv770.tiling_npipes;
1420                         track->nbanks = p->rdev->config.rv770.tiling_nbanks;
1421                         track->group_size = p->rdev->config.rv770.tiling_group_size;
1422                 }
1423                 p->track = track;
1424         }
1425         do {
1426                 r = r600_cs_packet_parse(p, &pkt, p->idx);
1427                 if (r) {
1428                         kfree(p->track);
1429                         p->track = NULL;
1430                         return r;
1431                 }
1432                 p->idx += pkt.count + 2;
1433                 switch (pkt.type) {
1434                 case PACKET_TYPE0:
1435                         r = r600_cs_parse_packet0(p, &pkt);
1436                         break;
1437                 case PACKET_TYPE2:
1438                         break;
1439                 case PACKET_TYPE3:
1440                         r = r600_packet3_check(p, &pkt);
1441                         break;
1442                 default:
1443                         DRM_ERROR("Unknown packet type %d !\n", pkt.type);
1444                         kfree(p->track);
1445                         p->track = NULL;
1446                         return -EINVAL;
1447                 }
1448                 if (r) {
1449                         kfree(p->track);
1450                         p->track = NULL;
1451                         return r;
1452                 }
1453         } while (p->idx < p->chunks[p->chunk_ib_idx].length_dw);
1454 #if 0
1455         for (r = 0; r < p->ib->length_dw; r++) {
1456                 printk(KERN_INFO "%05d  0x%08X\n", r, p->ib->ptr[r]);
1457                 mdelay(1);
1458         }
1459 #endif
1460         kfree(p->track);
1461         p->track = NULL;
1462         return 0;
1463 }
1464
1465 static int r600_cs_parser_relocs_legacy(struct radeon_cs_parser *p)
1466 {
1467         if (p->chunk_relocs_idx == -1) {
1468                 return 0;
1469         }
1470         p->relocs = kzalloc(sizeof(struct radeon_cs_reloc), GFP_KERNEL);
1471         if (p->relocs == NULL) {
1472                 return -ENOMEM;
1473         }
1474         return 0;
1475 }
1476
1477 /**
1478  * cs_parser_fini() - clean parser states
1479  * @parser:     parser structure holding parsing context.
1480  * @error:      error number
1481  *
1482  * If error is set than unvalidate buffer, otherwise just free memory
1483  * used by parsing context.
1484  **/
1485 static void r600_cs_parser_fini(struct radeon_cs_parser *parser, int error)
1486 {
1487         unsigned i;
1488
1489         kfree(parser->relocs);
1490         for (i = 0; i < parser->nchunks; i++) {
1491                 kfree(parser->chunks[i].kdata);
1492                 kfree(parser->chunks[i].kpage[0]);
1493                 kfree(parser->chunks[i].kpage[1]);
1494         }
1495         kfree(parser->chunks);
1496         kfree(parser->chunks_array);
1497 }
1498
1499 int r600_cs_legacy(struct drm_device *dev, void *data, struct drm_file *filp,
1500                         unsigned family, u32 *ib, int *l)
1501 {
1502         struct radeon_cs_parser parser;
1503         struct radeon_cs_chunk *ib_chunk;
1504         struct radeon_ib fake_ib;
1505         struct r600_cs_track *track;
1506         int r;
1507
1508         /* initialize tracker */
1509         track = kzalloc(sizeof(*track), GFP_KERNEL);
1510         if (track == NULL)
1511                 return -ENOMEM;
1512         r600_cs_track_init(track);
1513         r600_cs_legacy_get_tiling_conf(dev, &track->npipes, &track->nbanks, &track->group_size);
1514         /* initialize parser */
1515         memset(&parser, 0, sizeof(struct radeon_cs_parser));
1516         parser.filp = filp;
1517         parser.dev = &dev->pdev->dev;
1518         parser.rdev = NULL;
1519         parser.family = family;
1520         parser.ib = &fake_ib;
1521         parser.track = track;
1522         fake_ib.ptr = ib;
1523         r = radeon_cs_parser_init(&parser, data);
1524         if (r) {
1525                 DRM_ERROR("Failed to initialize parser !\n");
1526                 r600_cs_parser_fini(&parser, r);
1527                 return r;
1528         }
1529         r = r600_cs_parser_relocs_legacy(&parser);
1530         if (r) {
1531                 DRM_ERROR("Failed to parse relocation !\n");
1532                 r600_cs_parser_fini(&parser, r);
1533                 return r;
1534         }
1535         /* Copy the packet into the IB, the parser will read from the
1536          * input memory (cached) and write to the IB (which can be
1537          * uncached). */
1538         ib_chunk = &parser.chunks[parser.chunk_ib_idx];
1539         parser.ib->length_dw = ib_chunk->length_dw;
1540         *l = parser.ib->length_dw;
1541         r = r600_cs_parse(&parser);
1542         if (r) {
1543                 DRM_ERROR("Invalid command stream !\n");
1544                 r600_cs_parser_fini(&parser, r);
1545                 return r;
1546         }
1547         r = radeon_cs_finish_pages(&parser);
1548         if (r) {
1549                 DRM_ERROR("Invalid command stream !\n");
1550                 r600_cs_parser_fini(&parser, r);
1551                 return r;
1552         }
1553         r600_cs_parser_fini(&parser, r);
1554         return r;
1555 }
1556
1557 void r600_cs_legacy_init(void)
1558 {
1559         r600_cs_packet_next_reloc = &r600_cs_packet_next_reloc_nomm;
1560 }