2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
31 #include "r600_reg_safe.h"
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
);
42 struct r600_cs_track
{
43 /* configuration we miror so that we use same code btw kms/ums */
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];
56 u32 cb_color_size_idx
[8];
61 u32 vgt_strmout_buffer_en
;
64 u32 db_depth_size_idx
;
68 struct radeon_bo
*db_bo
;
71 static inline int r600_bpe_from_format(u32
*bpe
, u32 format
)
74 case V_038004_COLOR_8
:
75 case V_038004_COLOR_4_4
:
76 case V_038004_COLOR_3_3_2
:
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
:
90 case V_038004_FMT_8_8_8
:
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
:
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
:
120 case V_038004_FMT_16_16_16
:
121 case V_038004_FMT_16_16_16_FLOAT
:
124 case V_038004_FMT_32_32_32
:
125 case V_038004_FMT_32_32_32_FLOAT
:
128 case V_038004_COLOR_32_32_32_32
:
129 case V_038004_COLOR_32_32_32_32_FLOAT
:
132 case V_038004_FMT_GB_GR
:
133 case V_038004_FMT_BG_RG
:
134 case V_038004_COLOR_INVALID
:
141 static void r600_cs_track_init(struct r600_cs_track
*track
)
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;
155 track
->cb_target_mask
= 0xFFFFFFFF;
156 track
->cb_shader_mask
= 0xFFFFFFFF;
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;
166 static inline int r600_cs_track_validate_cb(struct radeon_cs_parser
*p
, int i
)
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
;
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");
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
]);
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;
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
]);
190 height
= size
/ (pitch
* bpe
);
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
:
197 dev_warn(p
->dev
, "%s:%d cb pitch (%d x %d = %d) invalid\n",
198 __func__
, __LINE__
, pitch
, bpe
, pitch
* bpe
);
201 if ((pitch
* bpe
) & (track
->group_size
- 1)) {
202 dev_warn(p
->dev
, "%s:%d cb pitch (%d) invalid\n",
203 __func__
, __LINE__
, pitch
);
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
);
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
);
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
);
230 height
&= ~((16 * track
->npipes
) - 1);
232 height
= 16 * track
->npipes
;
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
]);
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
]);
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
;
256 static int r600_cs_track_check(struct radeon_cs_parser
*p
)
258 struct r600_cs_track
*track
= p
->track
;
261 volatile u32
*ib
= p
->ib
->ptr
;
263 /* on legacy kernel we don't perform advanced check */
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");
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 :(
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
);
283 /* perform rewrite of CB_COLOR[0-7]_SIZE */
284 r
= r600_cs_track_validate_cb(p
, i
);
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");
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");
301 switch (G_028010_FORMAT(track
->db_depth_info
)) {
302 case V_028010_DEPTH_16
:
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
:
312 case V_028010_DEPTH_X24_8_32_FLOAT
:
316 dev_warn(p
->dev
, "z/stencil with invalid format %d\n", G_028010_FORMAT(track
->db_depth_info
));
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");
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;
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
));
333 ib
[track
->db_depth_size_idx
] = S_028000_SLICE_TILE_MAX(tmp
- 1) | (track
->db_depth_size
& 0x3FF);
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
));
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
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.
357 int r600_cs_packet_parse(struct radeon_cs_parser
*p
,
358 struct radeon_cs_packet
*pkt
,
361 struct radeon_cs_chunk
*ib_chunk
= &p
->chunks
[p
->chunk_ib_idx
];
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
);
369 header
= radeon_get_ib_value(p
, idx
);
371 pkt
->type
= CP_PACKET_GET_TYPE(header
);
372 pkt
->count
= CP_PACKET_GET_COUNT(header
);
376 pkt
->reg
= CP_PACKET0_GET_REG(header
);
379 pkt
->opcode
= CP_PACKET3_GET_OPCODE(header
);
385 DRM_ERROR("Unknown packet type %d at %d !\n", pkt
->type
, idx
);
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
);
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
404 * Check next packet is relocation packet3, do bo validation and compute
405 * GPU offset using the provided start.
407 static int r600_cs_packet_next_reloc_mm(struct radeon_cs_parser
*p
,
408 struct radeon_cs_reloc
**cs_reloc
)
410 struct radeon_cs_chunk
*relocs_chunk
;
411 struct radeon_cs_packet p3reloc
;
415 if (p
->chunk_relocs_idx
== -1) {
416 DRM_ERROR("No relocation chunk !\n");
420 relocs_chunk
= &p
->chunks
[p
->chunk_relocs_idx
];
421 r
= r600_cs_packet_parse(p
, &p3reloc
, p
->idx
);
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",
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
);
437 /* FIXME: we assume reloc size is 4 dwords */
438 *cs_reloc
= p
->relocs_ptr
[(idx
/ 4)];
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
450 * Check next packet is relocation packet3, do bo validation and compute
451 * GPU offset using the provided start.
453 static int r600_cs_packet_next_reloc_nomm(struct radeon_cs_parser
*p
,
454 struct radeon_cs_reloc
**cs_reloc
)
456 struct radeon_cs_chunk
*relocs_chunk
;
457 struct radeon_cs_packet p3reloc
;
461 if (p
->chunk_relocs_idx
== -1) {
462 DRM_ERROR("No relocation chunk !\n");
466 relocs_chunk
= &p
->chunks
[p
->chunk_relocs_idx
];
467 r
= r600_cs_packet_parse(p
, &p3reloc
, p
->idx
);
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",
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
);
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];
490 * r600_cs_packet_next_is_pkt3_nop() - test if next packet is packet3 nop for reloc
491 * @parser: parser structure holding parsing context.
493 * Check next packet is relocation packet3, do bo validation and compute
494 * GPU offset using the provided start.
496 static inline int r600_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser
*p
)
498 struct radeon_cs_packet p3reloc
;
501 r
= r600_cs_packet_parse(p
, &p3reloc
, p
->idx
);
505 if (p3reloc
.type
!= PACKET_TYPE3
|| p3reloc
.opcode
!= PACKET3_NOP
) {
512 * r600_cs_packet_next_vline() - parse userspace VLINE packet
513 * @parser: parser structure holding parsing context.
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.
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
525 static int r600_cs_packet_parse_vline(struct radeon_cs_parser
*p
)
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
;
533 uint32_t header
, h_idx
, reg
, wait_reg_mem_info
;
534 volatile uint32_t *ib
;
538 /* parse the WAIT_REG_MEM */
539 r
= r600_cs_packet_parse(p
, &wait_reg_mem
, p
->idx
);
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");
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");
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");
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");
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");
576 /* jump over the NOP */
577 r
= r600_cs_packet_parse(p
, &p3reloc
, p
->idx
+ wait_reg_mem
.count
+ 2);
582 p
->idx
+= wait_reg_mem
.count
+ 2;
583 p
->idx
+= p3reloc
.count
+ 2;
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
);
591 DRM_ERROR("cannot find crtc %d\n", crtc_id
);
595 crtc
= obj_to_crtc(obj
);
596 radeon_crtc
= to_radeon_crtc(crtc
);
597 crtc_id
= radeon_crtc
->crtc_id
;
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) {
610 case AVIVO_D1MODE_VLINE_START_END
:
611 header
&= ~R600_CP_PACKET0_REG_MASK
;
612 header
|= AVIVO_D2MODE_VLINE_START_END
>> 2;
615 DRM_ERROR("unknown crtc reloc\n");
620 ib
[h_idx
+ 4] = AVIVO_D2MODE_VLINE_STATUS
>> 2;
623 mutex_unlock(&p
->rdev
->ddev
->mode_config
.mutex
);
627 static int r600_packet0_check(struct radeon_cs_parser
*p
,
628 struct radeon_cs_packet
*pkt
,
629 unsigned idx
, unsigned reg
)
634 case AVIVO_D1MODE_VLINE_START_END
:
635 r
= r600_cs_packet_parse_vline(p
);
637 DRM_ERROR("No reloc for ib[%d]=0x%04X\n",
643 printk(KERN_ERR
"Forbidden register 0x%04X in cs at %d\n",
650 static int r600_cs_parse_packet0(struct radeon_cs_parser
*p
,
651 struct radeon_cs_packet
*pkt
)
659 for (i
= 0; i
<= pkt
->count
; i
++, idx
++, reg
+= 4) {
660 r
= r600_packet0_check(p
, pkt
, idx
, reg
);
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
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.
678 static inline int r600_cs_check_reg(struct radeon_cs_parser
*p
, u32 reg
, u32 idx
)
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
);
688 dev_warn(p
->dev
, "forbidden register 0x%08x at %d\n", reg
, idx
);
691 m
= 1 << ((reg
>> 2) & 31);
692 if (!(r600_reg_safe_bm
[i
] & m
))
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)
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
);
722 track
->sq_config
= radeon_get_ib_value(p
, idx
);
724 case R_028800_DB_DEPTH_CONTROL
:
725 track
->db_depth_control
= radeon_get_ib_value(p
, idx
);
727 case R_028010_DB_DEPTH_INFO
:
728 track
->db_depth_info
= radeon_get_ib_value(p
, idx
);
730 case R_028004_DB_DEPTH_VIEW
:
731 track
->db_depth_view
= radeon_get_ib_value(p
, idx
);
733 case R_028000_DB_DEPTH_SIZE
:
734 track
->db_depth_size
= radeon_get_ib_value(p
, idx
);
735 track
->db_depth_size_idx
= idx
;
737 case R_028AB0_VGT_STRMOUT_EN
:
738 track
->vgt_strmout_en
= radeon_get_ib_value(p
, idx
);
740 case R_028B20_VGT_STRMOUT_BUFFER_EN
:
741 track
->vgt_strmout_buffer_en
= radeon_get_ib_value(p
, idx
);
743 case R_028238_CB_TARGET_MASK
:
744 track
->cb_target_mask
= radeon_get_ib_value(p
, idx
);
746 case R_02823C_CB_SHADER_MASK
:
747 track
->cb_shader_mask
= radeon_get_ib_value(p
, idx
);
749 case R_028C04_PA_SC_AA_CONFIG
:
750 tmp
= G_028C04_MSAA_NUM_SAMPLES(radeon_get_ib_value(p
, idx
));
751 track
->nsamples
= 1 << tmp
;
753 case R_0280A0_CB_COLOR0_INFO
:
754 case R_0280A4_CB_COLOR1_INFO
:
755 case R_0280A8_CB_COLOR2_INFO
:
756 case R_0280AC_CB_COLOR3_INFO
:
757 case R_0280B0_CB_COLOR4_INFO
:
758 case R_0280B4_CB_COLOR5_INFO
:
759 case R_0280B8_CB_COLOR6_INFO
:
760 case R_0280BC_CB_COLOR7_INFO
:
761 tmp
= (reg
- R_0280A0_CB_COLOR0_INFO
) / 4;
762 track
->cb_color_info
[tmp
] = radeon_get_ib_value(p
, idx
);
764 case R_028060_CB_COLOR0_SIZE
:
765 case R_028064_CB_COLOR1_SIZE
:
766 case R_028068_CB_COLOR2_SIZE
:
767 case R_02806C_CB_COLOR3_SIZE
:
768 case R_028070_CB_COLOR4_SIZE
:
769 case R_028074_CB_COLOR5_SIZE
:
770 case R_028078_CB_COLOR6_SIZE
:
771 case R_02807C_CB_COLOR7_SIZE
:
772 tmp
= (reg
- R_028060_CB_COLOR0_SIZE
) / 4;
773 track
->cb_color_size
[tmp
] = radeon_get_ib_value(p
, idx
);
774 track
->cb_color_size_idx
[tmp
] = idx
;
776 /* This register were added late, there is userspace
777 * which does provide relocation for those but set
778 * 0 offset. In order to avoid breaking old userspace
779 * we detect this and set address to point to last
780 * CB_COLOR0_BASE, note that if userspace doesn't set
781 * CB_COLOR0_BASE before this register we will report
782 * error. Old userspace always set CB_COLOR0_BASE
783 * before any of this.
785 case R_0280E0_CB_COLOR0_FRAG
:
786 case R_0280E4_CB_COLOR1_FRAG
:
787 case R_0280E8_CB_COLOR2_FRAG
:
788 case R_0280EC_CB_COLOR3_FRAG
:
789 case R_0280F0_CB_COLOR4_FRAG
:
790 case R_0280F4_CB_COLOR5_FRAG
:
791 case R_0280F8_CB_COLOR6_FRAG
:
792 case R_0280FC_CB_COLOR7_FRAG
:
793 tmp
= (reg
- R_0280E0_CB_COLOR0_FRAG
) / 4;
794 if (!r600_cs_packet_next_is_pkt3_nop(p
)) {
795 if (!track
->cb_color_base_last
[tmp
]) {
796 dev_err(p
->dev
, "Broken old userspace ? no cb_color0_base supplied before trying to write 0x%08X\n", reg
);
799 ib
[idx
] = track
->cb_color_base_last
[tmp
];
800 printk_once(KERN_WARNING
"You have old & broken userspace "
801 "please consider updating mesa & xf86-video-ati\n");
802 track
->cb_color_frag_bo
[tmp
] = track
->cb_color_bo
[tmp
];
804 r
= r600_cs_packet_next_reloc(p
, &reloc
);
806 dev_err(p
->dev
, "bad SET_CONTEXT_REG 0x%04X\n", reg
);
809 ib
[idx
] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
810 track
->cb_color_frag_bo
[tmp
] = reloc
->robj
;
813 case R_0280C0_CB_COLOR0_TILE
:
814 case R_0280C4_CB_COLOR1_TILE
:
815 case R_0280C8_CB_COLOR2_TILE
:
816 case R_0280CC_CB_COLOR3_TILE
:
817 case R_0280D0_CB_COLOR4_TILE
:
818 case R_0280D4_CB_COLOR5_TILE
:
819 case R_0280D8_CB_COLOR6_TILE
:
820 case R_0280DC_CB_COLOR7_TILE
:
821 tmp
= (reg
- R_0280C0_CB_COLOR0_TILE
) / 4;
822 if (!r600_cs_packet_next_is_pkt3_nop(p
)) {
823 if (!track
->cb_color_base_last
[tmp
]) {
824 dev_err(p
->dev
, "Broken old userspace ? no cb_color0_base supplied before trying to write 0x%08X\n", reg
);
827 ib
[idx
] = track
->cb_color_base_last
[tmp
];
828 printk_once(KERN_WARNING
"You have old & broken userspace "
829 "please consider updating mesa & xf86-video-ati\n");
830 track
->cb_color_tile_bo
[tmp
] = track
->cb_color_bo
[tmp
];
832 r
= r600_cs_packet_next_reloc(p
, &reloc
);
834 dev_err(p
->dev
, "bad SET_CONTEXT_REG 0x%04X\n", reg
);
837 ib
[idx
] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
838 track
->cb_color_tile_bo
[tmp
] = reloc
->robj
;
849 r
= r600_cs_packet_next_reloc(p
, &reloc
);
851 dev_warn(p
->dev
, "bad SET_CONTEXT_REG "
855 tmp
= (reg
- CB_COLOR0_BASE
) / 4;
856 track
->cb_color_bo_offset
[tmp
] = radeon_get_ib_value(p
, idx
);
857 ib
[idx
] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
858 track
->cb_color_base_last
[tmp
] = ib
[idx
];
859 track
->cb_color_bo
[tmp
] = reloc
->robj
;
862 r
= r600_cs_packet_next_reloc(p
, &reloc
);
864 dev_warn(p
->dev
, "bad SET_CONTEXT_REG "
868 track
->db_offset
= radeon_get_ib_value(p
, idx
);
869 ib
[idx
] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
870 track
->db_bo
= reloc
->robj
;
872 case DB_HTILE_DATA_BASE
:
873 case SQ_PGM_START_FS
:
874 case SQ_PGM_START_ES
:
875 case SQ_PGM_START_VS
:
876 case SQ_PGM_START_GS
:
877 case SQ_PGM_START_PS
:
878 case SQ_ALU_CONST_CACHE_GS_0
:
879 case SQ_ALU_CONST_CACHE_GS_1
:
880 case SQ_ALU_CONST_CACHE_GS_2
:
881 case SQ_ALU_CONST_CACHE_GS_3
:
882 case SQ_ALU_CONST_CACHE_GS_4
:
883 case SQ_ALU_CONST_CACHE_GS_5
:
884 case SQ_ALU_CONST_CACHE_GS_6
:
885 case SQ_ALU_CONST_CACHE_GS_7
:
886 case SQ_ALU_CONST_CACHE_GS_8
:
887 case SQ_ALU_CONST_CACHE_GS_9
:
888 case SQ_ALU_CONST_CACHE_GS_10
:
889 case SQ_ALU_CONST_CACHE_GS_11
:
890 case SQ_ALU_CONST_CACHE_GS_12
:
891 case SQ_ALU_CONST_CACHE_GS_13
:
892 case SQ_ALU_CONST_CACHE_GS_14
:
893 case SQ_ALU_CONST_CACHE_GS_15
:
894 case SQ_ALU_CONST_CACHE_PS_0
:
895 case SQ_ALU_CONST_CACHE_PS_1
:
896 case SQ_ALU_CONST_CACHE_PS_2
:
897 case SQ_ALU_CONST_CACHE_PS_3
:
898 case SQ_ALU_CONST_CACHE_PS_4
:
899 case SQ_ALU_CONST_CACHE_PS_5
:
900 case SQ_ALU_CONST_CACHE_PS_6
:
901 case SQ_ALU_CONST_CACHE_PS_7
:
902 case SQ_ALU_CONST_CACHE_PS_8
:
903 case SQ_ALU_CONST_CACHE_PS_9
:
904 case SQ_ALU_CONST_CACHE_PS_10
:
905 case SQ_ALU_CONST_CACHE_PS_11
:
906 case SQ_ALU_CONST_CACHE_PS_12
:
907 case SQ_ALU_CONST_CACHE_PS_13
:
908 case SQ_ALU_CONST_CACHE_PS_14
:
909 case SQ_ALU_CONST_CACHE_PS_15
:
910 case SQ_ALU_CONST_CACHE_VS_0
:
911 case SQ_ALU_CONST_CACHE_VS_1
:
912 case SQ_ALU_CONST_CACHE_VS_2
:
913 case SQ_ALU_CONST_CACHE_VS_3
:
914 case SQ_ALU_CONST_CACHE_VS_4
:
915 case SQ_ALU_CONST_CACHE_VS_5
:
916 case SQ_ALU_CONST_CACHE_VS_6
:
917 case SQ_ALU_CONST_CACHE_VS_7
:
918 case SQ_ALU_CONST_CACHE_VS_8
:
919 case SQ_ALU_CONST_CACHE_VS_9
:
920 case SQ_ALU_CONST_CACHE_VS_10
:
921 case SQ_ALU_CONST_CACHE_VS_11
:
922 case SQ_ALU_CONST_CACHE_VS_12
:
923 case SQ_ALU_CONST_CACHE_VS_13
:
924 case SQ_ALU_CONST_CACHE_VS_14
:
925 case SQ_ALU_CONST_CACHE_VS_15
:
926 r
= r600_cs_packet_next_reloc(p
, &reloc
);
928 dev_warn(p
->dev
, "bad SET_CONTEXT_REG "
932 ib
[idx
] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
935 dev_warn(p
->dev
, "forbidden register 0x%08x at %d\n", reg
, idx
);
941 static inline unsigned minify(unsigned size
, unsigned levels
)
943 size
= size
>> levels
;
949 static void r600_texture_size(unsigned nfaces
, unsigned blevel
, unsigned nlevels
,
950 unsigned w0
, unsigned h0
, unsigned d0
, unsigned bpe
,
951 unsigned *l0_size
, unsigned *mipmap_size
)
953 unsigned offset
, i
, level
, face
;
954 unsigned width
, height
, depth
, rowstride
, size
;
959 for(i
= 0, offset
= 0, level
= blevel
; i
< nlevels
; i
++, level
++) {
960 width
= minify(w0
, i
);
961 height
= minify(h0
, i
);
962 depth
= minify(d0
, i
);
963 for(face
= 0; face
< nfaces
; face
++) {
964 rowstride
= ((width
* bpe
) + 255) & ~255;
965 size
= height
* rowstride
* depth
;
967 offset
= (offset
+ 0x1f) & ~0x1f;
970 *l0_size
= (((w0
* bpe
) + 255) & ~255) * h0
* d0
;
971 *mipmap_size
= offset
;
973 *mipmap_size
-= *l0_size
;
975 *mipmap_size
= *l0_size
;
979 * r600_check_texture_resource() - check if register is authorized or not
980 * @p: parser structure holding parsing context
981 * @idx: index into the cs buffer
982 * @texture: texture's bo structure
983 * @mipmap: mipmap's bo structure
985 * This function will check that the resource has valid field and that
986 * the texture and mipmap bo object are big enough to cover this resource.
988 static inline int r600_check_texture_resource(struct radeon_cs_parser
*p
, u32 idx
,
989 struct radeon_bo
*texture
,
990 struct radeon_bo
*mipmap
)
992 u32 nfaces
, nlevels
, blevel
, w0
, h0
, d0
, bpe
= 0;
993 u32 word0
, word1
, l0_size
, mipmap_size
;
995 /* on legacy kernel we don't perform advanced check */
998 word0
= radeon_get_ib_value(p
, idx
+ 0);
999 word1
= radeon_get_ib_value(p
, idx
+ 1);
1000 w0
= G_038000_TEX_WIDTH(word0
) + 1;
1001 h0
= G_038004_TEX_HEIGHT(word1
) + 1;
1002 d0
= G_038004_TEX_DEPTH(word1
);
1004 switch (G_038000_DIM(word0
)) {
1005 case V_038000_SQ_TEX_DIM_1D
:
1006 case V_038000_SQ_TEX_DIM_2D
:
1007 case V_038000_SQ_TEX_DIM_3D
:
1009 case V_038000_SQ_TEX_DIM_CUBEMAP
:
1012 case V_038000_SQ_TEX_DIM_1D_ARRAY
:
1013 case V_038000_SQ_TEX_DIM_2D_ARRAY
:
1014 case V_038000_SQ_TEX_DIM_2D_MSAA
:
1015 case V_038000_SQ_TEX_DIM_2D_ARRAY_MSAA
:
1017 dev_warn(p
->dev
, "this kernel doesn't support %d texture dim\n", G_038000_DIM(word0
));
1020 if (r600_bpe_from_format(&bpe
, G_038004_DATA_FORMAT(word1
))) {
1021 dev_warn(p
->dev
, "%s:%d texture invalid format %d\n",
1022 __func__
, __LINE__
, G_038004_DATA_FORMAT(word1
));
1025 word0
= radeon_get_ib_value(p
, idx
+ 4);
1026 word1
= radeon_get_ib_value(p
, idx
+ 5);
1027 blevel
= G_038010_BASE_LEVEL(word0
);
1028 nlevels
= G_038014_LAST_LEVEL(word1
);
1029 r600_texture_size(nfaces
, blevel
, nlevels
, w0
, h0
, d0
, bpe
, &l0_size
, &mipmap_size
);
1030 /* using get ib will give us the offset into the texture bo */
1031 word0
= radeon_get_ib_value(p
, idx
+ 2);
1032 if ((l0_size
+ word0
) > radeon_bo_size(texture
)) {
1033 dev_warn(p
->dev
, "texture bo too small (%d %d %d %d -> %d have %ld)\n",
1034 w0
, h0
, bpe
, word0
, l0_size
, radeon_bo_size(texture
));
1037 /* using get ib will give us the offset into the mipmap bo */
1038 word0
= radeon_get_ib_value(p
, idx
+ 3);
1039 if ((mipmap_size
+ word0
) > radeon_bo_size(mipmap
)) {
1040 dev_warn(p
->dev
, "mipmap bo too small (%d %d %d %d %d %d -> %d have %ld)\n",
1041 w0
, h0
, bpe
, blevel
, nlevels
, word0
, mipmap_size
, radeon_bo_size(texture
));
1047 static int r600_packet3_check(struct radeon_cs_parser
*p
,
1048 struct radeon_cs_packet
*pkt
)
1050 struct radeon_cs_reloc
*reloc
;
1051 struct r600_cs_track
*track
;
1055 unsigned start_reg
, end_reg
, reg
;
1059 track
= (struct r600_cs_track
*)p
->track
;
1062 idx_value
= radeon_get_ib_value(p
, idx
);
1064 switch (pkt
->opcode
) {
1065 case PACKET3_START_3D_CMDBUF
:
1066 if (p
->family
>= CHIP_RV770
|| pkt
->count
) {
1067 DRM_ERROR("bad START_3D\n");
1071 case PACKET3_CONTEXT_CONTROL
:
1072 if (pkt
->count
!= 1) {
1073 DRM_ERROR("bad CONTEXT_CONTROL\n");
1077 case PACKET3_INDEX_TYPE
:
1078 case PACKET3_NUM_INSTANCES
:
1080 DRM_ERROR("bad INDEX_TYPE/NUM_INSTANCES\n");
1084 case PACKET3_DRAW_INDEX
:
1085 if (pkt
->count
!= 3) {
1086 DRM_ERROR("bad DRAW_INDEX\n");
1089 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1091 DRM_ERROR("bad DRAW_INDEX\n");
1094 ib
[idx
+0] = idx_value
+ (u32
)(reloc
->lobj
.gpu_offset
& 0xffffffff);
1095 ib
[idx
+1] += upper_32_bits(reloc
->lobj
.gpu_offset
) & 0xff;
1096 r
= r600_cs_track_check(p
);
1098 dev_warn(p
->dev
, "%s:%d invalid cmd stream\n", __func__
, __LINE__
);
1102 case PACKET3_DRAW_INDEX_AUTO
:
1103 if (pkt
->count
!= 1) {
1104 DRM_ERROR("bad DRAW_INDEX_AUTO\n");
1107 r
= r600_cs_track_check(p
);
1109 dev_warn(p
->dev
, "%s:%d invalid cmd stream %d\n", __func__
, __LINE__
, idx
);
1113 case PACKET3_DRAW_INDEX_IMMD_BE
:
1114 case PACKET3_DRAW_INDEX_IMMD
:
1115 if (pkt
->count
< 2) {
1116 DRM_ERROR("bad DRAW_INDEX_IMMD\n");
1119 r
= r600_cs_track_check(p
);
1121 dev_warn(p
->dev
, "%s:%d invalid cmd stream\n", __func__
, __LINE__
);
1125 case PACKET3_WAIT_REG_MEM
:
1126 if (pkt
->count
!= 5) {
1127 DRM_ERROR("bad WAIT_REG_MEM\n");
1130 /* bit 4 is reg (0) or mem (1) */
1131 if (idx_value
& 0x10) {
1132 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1134 DRM_ERROR("bad WAIT_REG_MEM\n");
1137 ib
[idx
+1] += (u32
)(reloc
->lobj
.gpu_offset
& 0xffffffff);
1138 ib
[idx
+2] += upper_32_bits(reloc
->lobj
.gpu_offset
) & 0xff;
1141 case PACKET3_SURFACE_SYNC
:
1142 if (pkt
->count
!= 3) {
1143 DRM_ERROR("bad SURFACE_SYNC\n");
1146 /* 0xffffffff/0x0 is flush all cache flag */
1147 if (radeon_get_ib_value(p
, idx
+ 1) != 0xffffffff ||
1148 radeon_get_ib_value(p
, idx
+ 2) != 0) {
1149 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1151 DRM_ERROR("bad SURFACE_SYNC\n");
1154 ib
[idx
+2] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
1157 case PACKET3_EVENT_WRITE
:
1158 if (pkt
->count
!= 2 && pkt
->count
!= 0) {
1159 DRM_ERROR("bad EVENT_WRITE\n");
1163 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1165 DRM_ERROR("bad EVENT_WRITE\n");
1168 ib
[idx
+1] += (u32
)(reloc
->lobj
.gpu_offset
& 0xffffffff);
1169 ib
[idx
+2] += upper_32_bits(reloc
->lobj
.gpu_offset
) & 0xff;
1172 case PACKET3_EVENT_WRITE_EOP
:
1173 if (pkt
->count
!= 4) {
1174 DRM_ERROR("bad EVENT_WRITE_EOP\n");
1177 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1179 DRM_ERROR("bad EVENT_WRITE\n");
1182 ib
[idx
+1] += (u32
)(reloc
->lobj
.gpu_offset
& 0xffffffff);
1183 ib
[idx
+2] += upper_32_bits(reloc
->lobj
.gpu_offset
) & 0xff;
1185 case PACKET3_SET_CONFIG_REG
:
1186 start_reg
= (idx_value
<< 2) + PACKET3_SET_CONFIG_REG_OFFSET
;
1187 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1188 if ((start_reg
< PACKET3_SET_CONFIG_REG_OFFSET
) ||
1189 (start_reg
>= PACKET3_SET_CONFIG_REG_END
) ||
1190 (end_reg
>= PACKET3_SET_CONFIG_REG_END
)) {
1191 DRM_ERROR("bad PACKET3_SET_CONFIG_REG\n");
1194 for (i
= 0; i
< pkt
->count
; i
++) {
1195 reg
= start_reg
+ (4 * i
);
1196 r
= r600_cs_check_reg(p
, reg
, idx
+1+i
);
1201 case PACKET3_SET_CONTEXT_REG
:
1202 start_reg
= (idx_value
<< 2) + PACKET3_SET_CONTEXT_REG_OFFSET
;
1203 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1204 if ((start_reg
< PACKET3_SET_CONTEXT_REG_OFFSET
) ||
1205 (start_reg
>= PACKET3_SET_CONTEXT_REG_END
) ||
1206 (end_reg
>= PACKET3_SET_CONTEXT_REG_END
)) {
1207 DRM_ERROR("bad PACKET3_SET_CONTEXT_REG\n");
1210 for (i
= 0; i
< pkt
->count
; i
++) {
1211 reg
= start_reg
+ (4 * i
);
1212 r
= r600_cs_check_reg(p
, reg
, idx
+1+i
);
1217 case PACKET3_SET_RESOURCE
:
1218 if (pkt
->count
% 7) {
1219 DRM_ERROR("bad SET_RESOURCE\n");
1222 start_reg
= (idx_value
<< 2) + PACKET3_SET_RESOURCE_OFFSET
;
1223 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1224 if ((start_reg
< PACKET3_SET_RESOURCE_OFFSET
) ||
1225 (start_reg
>= PACKET3_SET_RESOURCE_END
) ||
1226 (end_reg
>= PACKET3_SET_RESOURCE_END
)) {
1227 DRM_ERROR("bad SET_RESOURCE\n");
1230 for (i
= 0; i
< (pkt
->count
/ 7); i
++) {
1231 struct radeon_bo
*texture
, *mipmap
;
1234 switch (G__SQ_VTX_CONSTANT_TYPE(radeon_get_ib_value(p
, idx
+(i
*7)+6+1))) {
1235 case SQ_TEX_VTX_VALID_TEXTURE
:
1237 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1239 DRM_ERROR("bad SET_RESOURCE\n");
1242 ib
[idx
+1+(i
*7)+2] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
1243 texture
= reloc
->robj
;
1245 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1247 DRM_ERROR("bad SET_RESOURCE\n");
1250 ib
[idx
+1+(i
*7)+3] += (u32
)((reloc
->lobj
.gpu_offset
>> 8) & 0xffffffff);
1251 mipmap
= reloc
->robj
;
1252 r
= r600_check_texture_resource(p
, idx
+(i
*7)+1,
1257 case SQ_TEX_VTX_VALID_BUFFER
:
1259 r
= r600_cs_packet_next_reloc(p
, &reloc
);
1261 DRM_ERROR("bad SET_RESOURCE\n");
1264 offset
= radeon_get_ib_value(p
, idx
+1+(i
*7)+0);
1265 size
= radeon_get_ib_value(p
, idx
+1+(i
*7)+1);
1266 if (p
->rdev
&& (size
+ offset
) > radeon_bo_size(reloc
->robj
)) {
1267 /* force size to size of the buffer */
1268 dev_warn(p
->dev
, "vbo resource seems too big for the bo\n");
1269 ib
[idx
+1+(i
*7)+1] = radeon_bo_size(reloc
->robj
);
1271 ib
[idx
+1+(i
*7)+0] += (u32
)((reloc
->lobj
.gpu_offset
) & 0xffffffff);
1272 ib
[idx
+1+(i
*7)+2] += upper_32_bits(reloc
->lobj
.gpu_offset
) & 0xff;
1274 case SQ_TEX_VTX_INVALID_TEXTURE
:
1275 case SQ_TEX_VTX_INVALID_BUFFER
:
1277 DRM_ERROR("bad SET_RESOURCE\n");
1282 case PACKET3_SET_ALU_CONST
:
1283 if (track
->sq_config
& DX9_CONSTS
) {
1284 start_reg
= (idx_value
<< 2) + PACKET3_SET_ALU_CONST_OFFSET
;
1285 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1286 if ((start_reg
< PACKET3_SET_ALU_CONST_OFFSET
) ||
1287 (start_reg
>= PACKET3_SET_ALU_CONST_END
) ||
1288 (end_reg
>= PACKET3_SET_ALU_CONST_END
)) {
1289 DRM_ERROR("bad SET_ALU_CONST\n");
1294 case PACKET3_SET_BOOL_CONST
:
1295 start_reg
= (idx_value
<< 2) + PACKET3_SET_BOOL_CONST_OFFSET
;
1296 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1297 if ((start_reg
< PACKET3_SET_BOOL_CONST_OFFSET
) ||
1298 (start_reg
>= PACKET3_SET_BOOL_CONST_END
) ||
1299 (end_reg
>= PACKET3_SET_BOOL_CONST_END
)) {
1300 DRM_ERROR("bad SET_BOOL_CONST\n");
1304 case PACKET3_SET_LOOP_CONST
:
1305 start_reg
= (idx_value
<< 2) + PACKET3_SET_LOOP_CONST_OFFSET
;
1306 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1307 if ((start_reg
< PACKET3_SET_LOOP_CONST_OFFSET
) ||
1308 (start_reg
>= PACKET3_SET_LOOP_CONST_END
) ||
1309 (end_reg
>= PACKET3_SET_LOOP_CONST_END
)) {
1310 DRM_ERROR("bad SET_LOOP_CONST\n");
1314 case PACKET3_SET_CTL_CONST
:
1315 start_reg
= (idx_value
<< 2) + PACKET3_SET_CTL_CONST_OFFSET
;
1316 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1317 if ((start_reg
< PACKET3_SET_CTL_CONST_OFFSET
) ||
1318 (start_reg
>= PACKET3_SET_CTL_CONST_END
) ||
1319 (end_reg
>= PACKET3_SET_CTL_CONST_END
)) {
1320 DRM_ERROR("bad SET_CTL_CONST\n");
1324 case PACKET3_SET_SAMPLER
:
1325 if (pkt
->count
% 3) {
1326 DRM_ERROR("bad SET_SAMPLER\n");
1329 start_reg
= (idx_value
<< 2) + PACKET3_SET_SAMPLER_OFFSET
;
1330 end_reg
= 4 * pkt
->count
+ start_reg
- 4;
1331 if ((start_reg
< PACKET3_SET_SAMPLER_OFFSET
) ||
1332 (start_reg
>= PACKET3_SET_SAMPLER_END
) ||
1333 (end_reg
>= PACKET3_SET_SAMPLER_END
)) {
1334 DRM_ERROR("bad SET_SAMPLER\n");
1338 case PACKET3_SURFACE_BASE_UPDATE
:
1339 if (p
->family
>= CHIP_RV770
|| p
->family
== CHIP_R600
) {
1340 DRM_ERROR("bad SURFACE_BASE_UPDATE\n");
1344 DRM_ERROR("bad SURFACE_BASE_UPDATE\n");
1351 DRM_ERROR("Packet3 opcode %x not supported\n", pkt
->opcode
);
1357 int r600_cs_parse(struct radeon_cs_parser
*p
)
1359 struct radeon_cs_packet pkt
;
1360 struct r600_cs_track
*track
;
1363 if (p
->track
== NULL
) {
1364 /* initialize tracker, we are in kms */
1365 track
= kzalloc(sizeof(*track
), GFP_KERNEL
);
1368 r600_cs_track_init(track
);
1369 if (p
->rdev
->family
< CHIP_RV770
) {
1370 track
->npipes
= p
->rdev
->config
.r600
.tiling_npipes
;
1371 track
->nbanks
= p
->rdev
->config
.r600
.tiling_nbanks
;
1372 track
->group_size
= p
->rdev
->config
.r600
.tiling_group_size
;
1373 } else if (p
->rdev
->family
<= CHIP_RV740
) {
1374 track
->npipes
= p
->rdev
->config
.rv770
.tiling_npipes
;
1375 track
->nbanks
= p
->rdev
->config
.rv770
.tiling_nbanks
;
1376 track
->group_size
= p
->rdev
->config
.rv770
.tiling_group_size
;
1381 r
= r600_cs_packet_parse(p
, &pkt
, p
->idx
);
1387 p
->idx
+= pkt
.count
+ 2;
1390 r
= r600_cs_parse_packet0(p
, &pkt
);
1395 r
= r600_packet3_check(p
, &pkt
);
1398 DRM_ERROR("Unknown packet type %d !\n", pkt
.type
);
1408 } while (p
->idx
< p
->chunks
[p
->chunk_ib_idx
].length_dw
);
1410 for (r
= 0; r
< p
->ib
->length_dw
; r
++) {
1411 printk(KERN_INFO
"%05d 0x%08X\n", r
, p
->ib
->ptr
[r
]);
1420 static int r600_cs_parser_relocs_legacy(struct radeon_cs_parser
*p
)
1422 if (p
->chunk_relocs_idx
== -1) {
1425 p
->relocs
= kzalloc(sizeof(struct radeon_cs_reloc
), GFP_KERNEL
);
1426 if (p
->relocs
== NULL
) {
1433 * cs_parser_fini() - clean parser states
1434 * @parser: parser structure holding parsing context.
1435 * @error: error number
1437 * If error is set than unvalidate buffer, otherwise just free memory
1438 * used by parsing context.
1440 static void r600_cs_parser_fini(struct radeon_cs_parser
*parser
, int error
)
1444 kfree(parser
->relocs
);
1445 for (i
= 0; i
< parser
->nchunks
; i
++) {
1446 kfree(parser
->chunks
[i
].kdata
);
1447 kfree(parser
->chunks
[i
].kpage
[0]);
1448 kfree(parser
->chunks
[i
].kpage
[1]);
1450 kfree(parser
->chunks
);
1451 kfree(parser
->chunks_array
);
1454 int r600_cs_legacy(struct drm_device
*dev
, void *data
, struct drm_file
*filp
,
1455 unsigned family
, u32
*ib
, int *l
)
1457 struct radeon_cs_parser parser
;
1458 struct radeon_cs_chunk
*ib_chunk
;
1459 struct radeon_ib fake_ib
;
1460 struct r600_cs_track
*track
;
1463 /* initialize tracker */
1464 track
= kzalloc(sizeof(*track
), GFP_KERNEL
);
1467 r600_cs_track_init(track
);
1468 r600_cs_legacy_get_tiling_conf(dev
, &track
->npipes
, &track
->nbanks
, &track
->group_size
);
1469 /* initialize parser */
1470 memset(&parser
, 0, sizeof(struct radeon_cs_parser
));
1472 parser
.dev
= &dev
->pdev
->dev
;
1474 parser
.family
= family
;
1475 parser
.ib
= &fake_ib
;
1476 parser
.track
= track
;
1478 r
= radeon_cs_parser_init(&parser
, data
);
1480 DRM_ERROR("Failed to initialize parser !\n");
1481 r600_cs_parser_fini(&parser
, r
);
1484 r
= r600_cs_parser_relocs_legacy(&parser
);
1486 DRM_ERROR("Failed to parse relocation !\n");
1487 r600_cs_parser_fini(&parser
, r
);
1490 /* Copy the packet into the IB, the parser will read from the
1491 * input memory (cached) and write to the IB (which can be
1493 ib_chunk
= &parser
.chunks
[parser
.chunk_ib_idx
];
1494 parser
.ib
->length_dw
= ib_chunk
->length_dw
;
1495 *l
= parser
.ib
->length_dw
;
1496 r
= r600_cs_parse(&parser
);
1498 DRM_ERROR("Invalid command stream !\n");
1499 r600_cs_parser_fini(&parser
, r
);
1502 r
= radeon_cs_finish_pages(&parser
);
1504 DRM_ERROR("Invalid command stream !\n");
1505 r600_cs_parser_fini(&parser
, r
);
1508 r600_cs_parser_fini(&parser
, r
);
1512 void r600_cs_legacy_init(void)
1514 r600_cs_packet_next_reloc
= &r600_cs_packet_next_reloc_nomm
;