2018-05-07 06:16:23 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
2009-07-21 16:23:57 +07:00
|
|
|
/*
|
|
|
|
* Copyright 2009 VMware, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors: Michel Dänzer
|
|
|
|
*/
|
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/radeon_drm.h>
|
|
|
|
#include "radeon_reg.h"
|
|
|
|
#include "radeon.h"
|
|
|
|
|
2012-06-05 05:45:15 +07:00
|
|
|
#define RADEON_TEST_COPY_BLIT 1
|
|
|
|
#define RADEON_TEST_COPY_DMA 0
|
|
|
|
|
2009-07-21 16:23:57 +07:00
|
|
|
|
|
|
|
/* Test BO GTT->VRAM and VRAM->GTT GPU copies across the whole GTT aperture */
|
2012-06-05 05:45:15 +07:00
|
|
|
static void radeon_do_test_moves(struct radeon_device *rdev, int flag)
|
2009-07-21 16:23:57 +07:00
|
|
|
{
|
2009-11-20 20:29:23 +07:00
|
|
|
struct radeon_bo *vram_obj = NULL;
|
|
|
|
struct radeon_bo **gtt_obj = NULL;
|
2009-07-21 16:23:57 +07:00
|
|
|
uint64_t gtt_addr, vram_addr;
|
2013-07-01 23:39:34 +07:00
|
|
|
unsigned n, size;
|
|
|
|
int i, r, ring;
|
2012-06-05 05:45:15 +07:00
|
|
|
|
|
|
|
switch (flag) {
|
|
|
|
case RADEON_TEST_COPY_DMA:
|
|
|
|
ring = radeon_copy_dma_ring_index(rdev);
|
|
|
|
break;
|
|
|
|
case RADEON_TEST_COPY_BLIT:
|
|
|
|
ring = radeon_copy_blit_ring_index(rdev);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DRM_ERROR("Unknown copy method\n");
|
|
|
|
return;
|
|
|
|
}
|
2009-07-21 16:23:57 +07:00
|
|
|
|
|
|
|
size = 1024 * 1024;
|
|
|
|
|
|
|
|
/* Number of tests =
|
2011-08-19 22:24:16 +07:00
|
|
|
* (Total GTT - IB pool - writeback page - ring buffers) / test size
|
2009-07-21 16:23:57 +07:00
|
|
|
*/
|
2014-07-17 23:20:32 +07:00
|
|
|
n = rdev->mc.gtt_size - rdev->gart_pin_size;
|
2011-08-19 22:24:16 +07:00
|
|
|
n /= size;
|
2009-07-21 16:23:57 +07:00
|
|
|
|
treewide: kzalloc() -> kcalloc()
The kzalloc() function has a 2-factor argument form, kcalloc(). This
patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
as well as handling cases of:
kzalloc(a * b * c, gfp)
with:
kzalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kzalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kzalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kzalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kzalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kzalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kzalloc
+ kcalloc
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kzalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kzalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kzalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kzalloc(sizeof(THING) * C2, ...)
|
kzalloc(sizeof(TYPE) * C2, ...)
|
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(C1 * C2, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * E2
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 04:03:40 +07:00
|
|
|
gtt_obj = kcalloc(n, sizeof(*gtt_obj), GFP_KERNEL);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (!gtt_obj) {
|
|
|
|
DRM_ERROR("Failed to allocate %d pointers\n", n);
|
|
|
|
r = 1;
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
2011-02-18 23:59:16 +07:00
|
|
|
r = radeon_bo_create(rdev, size, PAGE_SIZE, true, RADEON_GEM_DOMAIN_VRAM,
|
2014-09-18 19:11:56 +07:00
|
|
|
0, NULL, NULL, &vram_obj);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to create VRAM object\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2009-11-20 20:29:23 +07:00
|
|
|
r = radeon_bo_reserve(vram_obj, false);
|
|
|
|
if (unlikely(r != 0))
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_unref;
|
2009-11-20 20:29:23 +07:00
|
|
|
r = radeon_bo_pin(vram_obj, RADEON_GEM_DOMAIN_VRAM, &vram_addr);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to pin VRAM object\n");
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_unres;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
void *gtt_map, *vram_map;
|
|
|
|
void **gtt_start, **gtt_end;
|
|
|
|
void **vram_start, **vram_end;
|
2013-06-27 18:48:26 +07:00
|
|
|
struct radeon_fence *fence = NULL;
|
2009-07-21 16:23:57 +07:00
|
|
|
|
2011-02-18 23:59:16 +07:00
|
|
|
r = radeon_bo_create(rdev, size, PAGE_SIZE, true,
|
2014-09-18 19:11:56 +07:00
|
|
|
RADEON_GEM_DOMAIN_GTT, 0, NULL, NULL,
|
|
|
|
gtt_obj + i);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to create GTT object %d\n", i);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
r = radeon_bo_reserve(gtt_obj[i], false);
|
|
|
|
if (unlikely(r != 0))
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unref;
|
2009-11-20 20:29:23 +07:00
|
|
|
r = radeon_bo_pin(gtt_obj[i], RADEON_GEM_DOMAIN_GTT, >t_addr);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to pin GTT object %d\n", i);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unres;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
r = radeon_bo_kmap(gtt_obj[i], >t_map);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to map GTT object %d\n", i);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
for (gtt_start = gtt_map, gtt_end = gtt_map + size;
|
|
|
|
gtt_start < gtt_end;
|
|
|
|
gtt_start++)
|
|
|
|
*gtt_start = gtt_start;
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
radeon_bo_kunmap(gtt_obj[i]);
|
2009-07-21 16:23:57 +07:00
|
|
|
|
2012-06-05 05:45:15 +07:00
|
|
|
if (ring == R600_RING_TYPE_DMA_INDEX)
|
2014-09-05 01:01:53 +07:00
|
|
|
fence = radeon_copy_dma(rdev, gtt_addr, vram_addr,
|
|
|
|
size / RADEON_GPU_PAGE_SIZE,
|
2015-01-30 12:38:44 +07:00
|
|
|
vram_obj->tbo.resv);
|
2012-06-05 05:45:15 +07:00
|
|
|
else
|
2014-09-05 01:01:53 +07:00
|
|
|
fence = radeon_copy_blit(rdev, gtt_addr, vram_addr,
|
|
|
|
size / RADEON_GPU_PAGE_SIZE,
|
2015-01-30 12:38:44 +07:00
|
|
|
vram_obj->tbo.resv);
|
2014-09-05 01:01:53 +07:00
|
|
|
if (IS_ERR(fence)) {
|
2009-07-21 16:23:57 +07:00
|
|
|
DRM_ERROR("Failed GTT->VRAM copy %d\n", i);
|
2014-09-05 01:01:53 +07:00
|
|
|
r = PTR_ERR(fence);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
r = radeon_fence_wait(fence, false);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to wait for GTT->VRAM fence %d\n", i);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
radeon_fence_unref(&fence);
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
r = radeon_bo_kmap(vram_obj, &vram_map);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to map VRAM object after copy %d\n", i);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
for (gtt_start = gtt_map, gtt_end = gtt_map + size,
|
|
|
|
vram_start = vram_map, vram_end = vram_map + size;
|
|
|
|
vram_start < vram_end;
|
|
|
|
gtt_start++, vram_start++) {
|
|
|
|
if (*vram_start != gtt_start) {
|
|
|
|
DRM_ERROR("Incorrect GTT->VRAM copy %d: Got 0x%p, "
|
2011-08-19 22:24:17 +07:00
|
|
|
"expected 0x%p (GTT/VRAM offset "
|
|
|
|
"0x%16llx/0x%16llx)\n",
|
|
|
|
i, *vram_start, gtt_start,
|
|
|
|
(unsigned long long)
|
|
|
|
(gtt_addr - rdev->mc.gtt_start +
|
|
|
|
(void*)gtt_start - gtt_map),
|
|
|
|
(unsigned long long)
|
|
|
|
(vram_addr - rdev->mc.vram_start +
|
|
|
|
(void*)gtt_start - gtt_map));
|
2009-11-20 20:29:23 +07:00
|
|
|
radeon_bo_kunmap(vram_obj);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
*vram_start = vram_start;
|
|
|
|
}
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
radeon_bo_kunmap(vram_obj);
|
2009-07-21 16:23:57 +07:00
|
|
|
|
2012-06-05 05:45:15 +07:00
|
|
|
if (ring == R600_RING_TYPE_DMA_INDEX)
|
2014-09-05 01:01:53 +07:00
|
|
|
fence = radeon_copy_dma(rdev, vram_addr, gtt_addr,
|
|
|
|
size / RADEON_GPU_PAGE_SIZE,
|
2015-01-30 12:38:44 +07:00
|
|
|
vram_obj->tbo.resv);
|
2012-06-05 05:45:15 +07:00
|
|
|
else
|
2014-09-05 01:01:53 +07:00
|
|
|
fence = radeon_copy_blit(rdev, vram_addr, gtt_addr,
|
|
|
|
size / RADEON_GPU_PAGE_SIZE,
|
2015-01-30 12:38:44 +07:00
|
|
|
vram_obj->tbo.resv);
|
2014-09-05 01:01:53 +07:00
|
|
|
if (IS_ERR(fence)) {
|
2009-07-21 16:23:57 +07:00
|
|
|
DRM_ERROR("Failed VRAM->GTT copy %d\n", i);
|
2014-09-05 01:01:53 +07:00
|
|
|
r = PTR_ERR(fence);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
r = radeon_fence_wait(fence, false);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to wait for VRAM->GTT fence %d\n", i);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
radeon_fence_unref(&fence);
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
r = radeon_bo_kmap(gtt_obj[i], >t_map);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to map GTT object after copy %d\n", i);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
for (gtt_start = gtt_map, gtt_end = gtt_map + size,
|
|
|
|
vram_start = vram_map, vram_end = vram_map + size;
|
|
|
|
gtt_start < gtt_end;
|
|
|
|
gtt_start++, vram_start++) {
|
|
|
|
if (*gtt_start != vram_start) {
|
|
|
|
DRM_ERROR("Incorrect VRAM->GTT copy %d: Got 0x%p, "
|
2011-08-19 22:24:17 +07:00
|
|
|
"expected 0x%p (VRAM/GTT offset "
|
|
|
|
"0x%16llx/0x%16llx)\n",
|
|
|
|
i, *gtt_start, vram_start,
|
|
|
|
(unsigned long long)
|
|
|
|
(vram_addr - rdev->mc.vram_start +
|
|
|
|
(void*)vram_start - vram_map),
|
|
|
|
(unsigned long long)
|
|
|
|
(gtt_addr - rdev->mc.gtt_start +
|
|
|
|
(void*)vram_start - vram_map));
|
2009-11-20 20:29:23 +07:00
|
|
|
radeon_bo_kunmap(gtt_obj[i]);
|
2013-06-27 18:48:26 +07:00
|
|
|
goto out_lclean_unpin;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
radeon_bo_kunmap(gtt_obj[i]);
|
2009-07-21 16:23:57 +07:00
|
|
|
|
|
|
|
DRM_INFO("Tested GTT->VRAM and VRAM->GTT copy for GTT offset 0x%llx\n",
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-18 04:54:29 +07:00
|
|
|
gtt_addr - rdev->mc.gtt_start);
|
2013-06-27 18:48:26 +07:00
|
|
|
continue;
|
|
|
|
|
|
|
|
out_lclean_unpin:
|
|
|
|
radeon_bo_unpin(gtt_obj[i]);
|
|
|
|
out_lclean_unres:
|
|
|
|
radeon_bo_unreserve(gtt_obj[i]);
|
|
|
|
out_lclean_unref:
|
|
|
|
radeon_bo_unref(>t_obj[i]);
|
|
|
|
out_lclean:
|
|
|
|
for (--i; i >= 0; --i) {
|
|
|
|
radeon_bo_unpin(gtt_obj[i]);
|
|
|
|
radeon_bo_unreserve(gtt_obj[i]);
|
|
|
|
radeon_bo_unref(>t_obj[i]);
|
|
|
|
}
|
2014-09-05 01:01:53 +07:00
|
|
|
if (fence && !IS_ERR(fence))
|
2013-06-27 18:48:26 +07:00
|
|
|
radeon_fence_unref(&fence);
|
|
|
|
break;
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
|
2013-06-27 18:48:26 +07:00
|
|
|
radeon_bo_unpin(vram_obj);
|
|
|
|
out_unres:
|
|
|
|
radeon_bo_unreserve(vram_obj);
|
|
|
|
out_unref:
|
|
|
|
radeon_bo_unref(&vram_obj);
|
2009-07-21 16:23:57 +07:00
|
|
|
out_cleanup:
|
2013-06-27 18:48:26 +07:00
|
|
|
kfree(gtt_obj);
|
2009-07-21 16:23:57 +07:00
|
|
|
if (r) {
|
2017-02-28 19:55:52 +07:00
|
|
|
pr_warn("Error while testing BO move\n");
|
2009-07-21 16:23:57 +07:00
|
|
|
}
|
|
|
|
}
|
2011-09-27 17:31:00 +07:00
|
|
|
|
2012-06-05 05:45:15 +07:00
|
|
|
void radeon_test_moves(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
if (rdev->asic->copy.dma)
|
|
|
|
radeon_do_test_moves(rdev, RADEON_TEST_COPY_DMA);
|
|
|
|
if (rdev->asic->copy.blit)
|
|
|
|
radeon_do_test_moves(rdev, RADEON_TEST_COPY_BLIT);
|
|
|
|
}
|
|
|
|
|
2013-04-08 17:41:29 +07:00
|
|
|
static int radeon_test_create_and_emit_fence(struct radeon_device *rdev,
|
|
|
|
struct radeon_ring *ring,
|
|
|
|
struct radeon_fence **fence)
|
|
|
|
{
|
2013-05-23 17:10:04 +07:00
|
|
|
uint32_t handle = ring->idx ^ 0xdeafbeef;
|
2013-04-08 17:41:29 +07:00
|
|
|
int r;
|
|
|
|
|
|
|
|
if (ring->idx == R600_RING_TYPE_UVD_INDEX) {
|
2013-05-23 17:10:04 +07:00
|
|
|
r = radeon_uvd_get_create_msg(rdev, ring->idx, handle, NULL);
|
2013-04-08 17:41:29 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to get dummy create msg\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-05-23 17:10:04 +07:00
|
|
|
r = radeon_uvd_get_destroy_msg(rdev, ring->idx, handle, fence);
|
2013-04-08 17:41:29 +07:00
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to get dummy destroy msg\n");
|
|
|
|
return r;
|
|
|
|
}
|
2013-05-23 17:10:04 +07:00
|
|
|
|
|
|
|
} else if (ring->idx == TN_RING_TYPE_VCE1_INDEX ||
|
|
|
|
ring->idx == TN_RING_TYPE_VCE2_INDEX) {
|
|
|
|
r = radeon_vce_get_create_msg(rdev, ring->idx, handle, NULL);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to get dummy create msg\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = radeon_vce_get_destroy_msg(rdev, ring->idx, handle, fence);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to get dummy destroy msg\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-04-08 17:41:29 +07:00
|
|
|
} else {
|
|
|
|
r = radeon_ring_lock(rdev, ring, 64);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to lock ring A %d\n", ring->idx);
|
|
|
|
return r;
|
|
|
|
}
|
2017-04-24 15:45:51 +07:00
|
|
|
r = radeon_fence_emit(rdev, fence, ring->idx);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to emit fence\n");
|
|
|
|
radeon_ring_unlock_undo(rdev, ring);
|
|
|
|
return r;
|
|
|
|
}
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ring, false);
|
2013-04-08 17:41:29 +07:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-27 17:31:00 +07:00
|
|
|
void radeon_test_ring_sync(struct radeon_device *rdev,
|
2011-10-23 17:56:27 +07:00
|
|
|
struct radeon_ring *ringA,
|
|
|
|
struct radeon_ring *ringB)
|
2011-09-27 17:31:00 +07:00
|
|
|
{
|
2011-11-17 21:22:44 +07:00
|
|
|
struct radeon_fence *fence1 = NULL, *fence2 = NULL;
|
2011-09-27 17:31:00 +07:00
|
|
|
struct radeon_semaphore *semaphore = NULL;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = radeon_semaphore_create(rdev, &semaphore);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to create semaphore\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
2011-10-23 17:56:27 +07:00
|
|
|
r = radeon_ring_lock(rdev, ringA, 64);
|
2011-09-27 17:31:00 +07:00
|
|
|
if (r) {
|
2012-07-18 01:02:30 +07:00
|
|
|
DRM_ERROR("Failed to lock ring A %d\n", ringA->idx);
|
2011-09-27 17:31:00 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2012-07-18 01:02:30 +07:00
|
|
|
radeon_semaphore_emit_wait(rdev, ringA->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringA, false);
|
2013-04-08 17:41:29 +07:00
|
|
|
|
|
|
|
r = radeon_test_create_and_emit_fence(rdev, ringA, &fence1);
|
|
|
|
if (r)
|
2012-05-08 19:24:01 +07:00
|
|
|
goto out_cleanup;
|
2013-04-08 17:41:29 +07:00
|
|
|
|
|
|
|
r = radeon_ring_lock(rdev, ringA, 64);
|
2012-05-08 19:24:01 +07:00
|
|
|
if (r) {
|
2013-04-08 17:41:29 +07:00
|
|
|
DRM_ERROR("Failed to lock ring A %d\n", ringA->idx);
|
2012-05-08 19:24:01 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2013-04-08 17:41:29 +07:00
|
|
|
radeon_semaphore_emit_wait(rdev, ringA->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringA, false);
|
2011-09-27 17:31:00 +07:00
|
|
|
|
2013-04-08 17:41:29 +07:00
|
|
|
r = radeon_test_create_and_emit_fence(rdev, ringA, &fence2);
|
|
|
|
if (r)
|
|
|
|
goto out_cleanup;
|
|
|
|
|
2018-08-04 07:01:02 +07:00
|
|
|
msleep(1000);
|
2011-09-27 17:31:00 +07:00
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
if (radeon_fence_signaled(fence1)) {
|
|
|
|
DRM_ERROR("Fence 1 signaled without waiting for semaphore.\n");
|
2011-09-27 17:31:00 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
2011-10-23 17:56:27 +07:00
|
|
|
r = radeon_ring_lock(rdev, ringB, 64);
|
2011-09-27 17:31:00 +07:00
|
|
|
if (r) {
|
2011-10-23 17:56:27 +07:00
|
|
|
DRM_ERROR("Failed to lock ring B %p\n", ringB);
|
2011-09-27 17:31:00 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2012-07-18 01:02:30 +07:00
|
|
|
radeon_semaphore_emit_signal(rdev, ringB->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringB, false);
|
2011-09-27 17:31:00 +07:00
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
r = radeon_fence_wait(fence1, false);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to wait for sync fence 1\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
2018-08-04 07:01:02 +07:00
|
|
|
msleep(1000);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
|
|
|
if (radeon_fence_signaled(fence2)) {
|
|
|
|
DRM_ERROR("Fence 2 signaled without waiting for semaphore.\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = radeon_ring_lock(rdev, ringB, 64);
|
2011-09-27 17:31:00 +07:00
|
|
|
if (r) {
|
2011-11-17 21:22:44 +07:00
|
|
|
DRM_ERROR("Failed to lock ring B %p\n", ringB);
|
2011-09-27 17:31:00 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2012-07-18 01:02:30 +07:00
|
|
|
radeon_semaphore_emit_signal(rdev, ringB->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringB, false);
|
2011-09-27 17:31:00 +07:00
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
r = radeon_fence_wait(fence2, false);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to wait for sync fence 1\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2011-09-27 17:31:00 +07:00
|
|
|
|
|
|
|
out_cleanup:
|
2012-05-10 21:46:43 +07:00
|
|
|
radeon_semaphore_free(rdev, &semaphore, NULL);
|
2011-09-27 17:31:00 +07:00
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
if (fence1)
|
|
|
|
radeon_fence_unref(&fence1);
|
|
|
|
|
|
|
|
if (fence2)
|
|
|
|
radeon_fence_unref(&fence2);
|
|
|
|
|
|
|
|
if (r)
|
2017-02-28 19:55:52 +07:00
|
|
|
pr_warn("Error while testing ring sync (%d)\n", r);
|
2011-11-17 21:22:44 +07:00
|
|
|
}
|
|
|
|
|
2012-09-01 00:43:50 +07:00
|
|
|
static void radeon_test_ring_sync2(struct radeon_device *rdev,
|
2011-11-17 21:22:44 +07:00
|
|
|
struct radeon_ring *ringA,
|
|
|
|
struct radeon_ring *ringB,
|
|
|
|
struct radeon_ring *ringC)
|
|
|
|
{
|
|
|
|
struct radeon_fence *fenceA = NULL, *fenceB = NULL;
|
|
|
|
struct radeon_semaphore *semaphore = NULL;
|
|
|
|
bool sigA, sigB;
|
|
|
|
int i, r;
|
|
|
|
|
|
|
|
r = radeon_semaphore_create(rdev, &semaphore);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to create semaphore\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = radeon_ring_lock(rdev, ringA, 64);
|
|
|
|
if (r) {
|
2012-07-18 01:02:30 +07:00
|
|
|
DRM_ERROR("Failed to lock ring A %d\n", ringA->idx);
|
2011-11-17 21:22:44 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2012-07-18 01:02:30 +07:00
|
|
|
radeon_semaphore_emit_wait(rdev, ringA->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringA, false);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
2013-04-08 17:41:29 +07:00
|
|
|
r = radeon_test_create_and_emit_fence(rdev, ringA, &fenceA);
|
|
|
|
if (r)
|
|
|
|
goto out_cleanup;
|
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
r = radeon_ring_lock(rdev, ringB, 64);
|
|
|
|
if (r) {
|
2012-07-18 01:02:30 +07:00
|
|
|
DRM_ERROR("Failed to lock ring B %d\n", ringB->idx);
|
2011-11-17 21:22:44 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2012-07-18 01:02:30 +07:00
|
|
|
radeon_semaphore_emit_wait(rdev, ringB->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringB, false);
|
2013-04-08 17:41:29 +07:00
|
|
|
r = radeon_test_create_and_emit_fence(rdev, ringB, &fenceB);
|
|
|
|
if (r)
|
|
|
|
goto out_cleanup;
|
2011-11-17 21:22:44 +07:00
|
|
|
|
2018-08-04 07:01:02 +07:00
|
|
|
msleep(1000);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
|
|
|
if (radeon_fence_signaled(fenceA)) {
|
|
|
|
DRM_ERROR("Fence A signaled without waiting for semaphore.\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
if (radeon_fence_signaled(fenceB)) {
|
2013-04-08 17:41:29 +07:00
|
|
|
DRM_ERROR("Fence B signaled without waiting for semaphore.\n");
|
2011-11-17 21:22:44 +07:00
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = radeon_ring_lock(rdev, ringC, 64);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to lock ring B %p\n", ringC);
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2012-07-18 01:02:30 +07:00
|
|
|
radeon_semaphore_emit_signal(rdev, ringC->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringC, false);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
|
|
|
for (i = 0; i < 30; ++i) {
|
2018-08-04 07:01:02 +07:00
|
|
|
msleep(100);
|
2011-11-17 21:22:44 +07:00
|
|
|
sigA = radeon_fence_signaled(fenceA);
|
|
|
|
sigB = radeon_fence_signaled(fenceB);
|
|
|
|
if (sigA || sigB)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sigA && !sigB) {
|
|
|
|
DRM_ERROR("Neither fence A nor B has been signaled\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
} else if (sigA && sigB) {
|
|
|
|
DRM_ERROR("Both fence A and B has been signaled\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
DRM_INFO("Fence %c was first signaled\n", sigA ? 'A' : 'B');
|
|
|
|
|
|
|
|
r = radeon_ring_lock(rdev, ringC, 64);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to lock ring B %p\n", ringC);
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
2012-07-18 01:02:30 +07:00
|
|
|
radeon_semaphore_emit_signal(rdev, ringC->idx, semaphore);
|
2014-08-18 15:34:55 +07:00
|
|
|
radeon_ring_unlock_commit(rdev, ringC, false);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
2018-08-04 07:01:02 +07:00
|
|
|
msleep(1000);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
|
|
|
r = radeon_fence_wait(fenceA, false);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to wait for sync fence A\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
r = radeon_fence_wait(fenceB, false);
|
|
|
|
if (r) {
|
|
|
|
DRM_ERROR("Failed to wait for sync fence B\n");
|
|
|
|
goto out_cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
out_cleanup:
|
2012-05-10 21:46:43 +07:00
|
|
|
radeon_semaphore_free(rdev, &semaphore, NULL);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
|
|
|
if (fenceA)
|
|
|
|
radeon_fence_unref(&fenceA);
|
|
|
|
|
|
|
|
if (fenceB)
|
|
|
|
radeon_fence_unref(&fenceB);
|
2011-09-27 17:31:00 +07:00
|
|
|
|
|
|
|
if (r)
|
2017-02-28 19:55:52 +07:00
|
|
|
pr_warn("Error while testing ring sync (%d)\n", r);
|
2011-09-27 17:31:00 +07:00
|
|
|
}
|
|
|
|
|
2013-05-23 17:10:04 +07:00
|
|
|
static bool radeon_test_sync_possible(struct radeon_ring *ringA,
|
|
|
|
struct radeon_ring *ringB)
|
|
|
|
{
|
|
|
|
if (ringA->idx == TN_RING_TYPE_VCE2_INDEX &&
|
|
|
|
ringB->idx == TN_RING_TYPE_VCE1_INDEX)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-27 17:31:00 +07:00
|
|
|
void radeon_test_syncing(struct radeon_device *rdev)
|
|
|
|
{
|
2011-11-17 21:22:44 +07:00
|
|
|
int i, j, k;
|
2011-09-27 17:31:00 +07:00
|
|
|
|
|
|
|
for (i = 1; i < RADEON_NUM_RINGS; ++i) {
|
2011-10-23 17:56:27 +07:00
|
|
|
struct radeon_ring *ringA = &rdev->ring[i];
|
|
|
|
if (!ringA->ready)
|
2011-09-27 17:31:00 +07:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for (j = 0; j < i; ++j) {
|
2011-10-23 17:56:27 +07:00
|
|
|
struct radeon_ring *ringB = &rdev->ring[j];
|
|
|
|
if (!ringB->ready)
|
2011-09-27 17:31:00 +07:00
|
|
|
continue;
|
|
|
|
|
2013-05-23 17:10:04 +07:00
|
|
|
if (!radeon_test_sync_possible(ringA, ringB))
|
|
|
|
continue;
|
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
DRM_INFO("Testing syncing between rings %d and %d...\n", i, j);
|
2011-10-23 17:56:27 +07:00
|
|
|
radeon_test_ring_sync(rdev, ringA, ringB);
|
2011-09-27 17:31:00 +07:00
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
DRM_INFO("Testing syncing between rings %d and %d...\n", j, i);
|
2011-10-23 17:56:27 +07:00
|
|
|
radeon_test_ring_sync(rdev, ringB, ringA);
|
2011-11-17 21:22:44 +07:00
|
|
|
|
|
|
|
for (k = 0; k < j; ++k) {
|
|
|
|
struct radeon_ring *ringC = &rdev->ring[k];
|
2012-01-05 17:02:42 +07:00
|
|
|
if (!ringC->ready)
|
|
|
|
continue;
|
2011-11-17 21:22:44 +07:00
|
|
|
|
2013-05-23 17:10:04 +07:00
|
|
|
if (!radeon_test_sync_possible(ringA, ringC))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!radeon_test_sync_possible(ringB, ringC))
|
|
|
|
continue;
|
|
|
|
|
2011-11-17 21:22:44 +07:00
|
|
|
DRM_INFO("Testing syncing between rings %d, %d and %d...\n", i, j, k);
|
|
|
|
radeon_test_ring_sync2(rdev, ringA, ringB, ringC);
|
|
|
|
|
|
|
|
DRM_INFO("Testing syncing between rings %d, %d and %d...\n", i, k, j);
|
|
|
|
radeon_test_ring_sync2(rdev, ringA, ringC, ringB);
|
|
|
|
|
|
|
|
DRM_INFO("Testing syncing between rings %d, %d and %d...\n", j, i, k);
|
|
|
|
radeon_test_ring_sync2(rdev, ringB, ringA, ringC);
|
|
|
|
|
|
|
|
DRM_INFO("Testing syncing between rings %d, %d and %d...\n", j, k, i);
|
|
|
|
radeon_test_ring_sync2(rdev, ringB, ringC, ringA);
|
|
|
|
|
|
|
|
DRM_INFO("Testing syncing between rings %d, %d and %d...\n", k, i, j);
|
|
|
|
radeon_test_ring_sync2(rdev, ringC, ringA, ringB);
|
|
|
|
|
|
|
|
DRM_INFO("Testing syncing between rings %d, %d and %d...\n", k, j, i);
|
|
|
|
radeon_test_ring_sync2(rdev, ringC, ringB, ringA);
|
|
|
|
}
|
2011-09-27 17:31:00 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|