drm/nouveau: fix m2mf copy to tiled gart
Commit de7b7d59d5 introduced tiled GART, but a linear copy is
still performed. This may result in errors on eviction, fix it by
checking tiling from memtype.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Cc: stable@vger.kernel.org #3.10+
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
committed by
Ben Skeggs
parent
2e2cfbe61b
commit
ce8f7699f2
@@ -798,25 +798,25 @@ nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
|
|||||||
struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
|
struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
|
||||||
{
|
{
|
||||||
struct nouveau_mem *node = old_mem->mm_node;
|
struct nouveau_mem *node = old_mem->mm_node;
|
||||||
struct nouveau_bo *nvbo = nouveau_bo(bo);
|
|
||||||
u64 length = (new_mem->num_pages << PAGE_SHIFT);
|
u64 length = (new_mem->num_pages << PAGE_SHIFT);
|
||||||
u64 src_offset = node->vma[0].offset;
|
u64 src_offset = node->vma[0].offset;
|
||||||
u64 dst_offset = node->vma[1].offset;
|
u64 dst_offset = node->vma[1].offset;
|
||||||
|
int src_tiled = !!node->memtype;
|
||||||
|
int dst_tiled = !!((struct nouveau_mem *)new_mem->mm_node)->memtype;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
while (length) {
|
while (length) {
|
||||||
u32 amount, stride, height;
|
u32 amount, stride, height;
|
||||||
|
|
||||||
|
ret = RING_SPACE(chan, 18 + 6 * (src_tiled + dst_tiled));
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
amount = min(length, (u64)(4 * 1024 * 1024));
|
amount = min(length, (u64)(4 * 1024 * 1024));
|
||||||
stride = 16 * 4;
|
stride = 16 * 4;
|
||||||
height = amount / stride;
|
height = amount / stride;
|
||||||
|
|
||||||
if (old_mem->mem_type == TTM_PL_VRAM &&
|
if (src_tiled) {
|
||||||
nouveau_bo_tile_layout(nvbo)) {
|
|
||||||
ret = RING_SPACE(chan, 8);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
BEGIN_NV04(chan, NvSubCopy, 0x0200, 7);
|
BEGIN_NV04(chan, NvSubCopy, 0x0200, 7);
|
||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
@@ -826,19 +826,10 @@ nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
|
|||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
} else {
|
} else {
|
||||||
ret = RING_SPACE(chan, 2);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
BEGIN_NV04(chan, NvSubCopy, 0x0200, 1);
|
BEGIN_NV04(chan, NvSubCopy, 0x0200, 1);
|
||||||
OUT_RING (chan, 1);
|
OUT_RING (chan, 1);
|
||||||
}
|
}
|
||||||
if (new_mem->mem_type == TTM_PL_VRAM &&
|
if (dst_tiled) {
|
||||||
nouveau_bo_tile_layout(nvbo)) {
|
|
||||||
ret = RING_SPACE(chan, 8);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
BEGIN_NV04(chan, NvSubCopy, 0x021c, 7);
|
BEGIN_NV04(chan, NvSubCopy, 0x021c, 7);
|
||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
@@ -848,18 +839,10 @@ nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
|
|||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
OUT_RING (chan, 0);
|
OUT_RING (chan, 0);
|
||||||
} else {
|
} else {
|
||||||
ret = RING_SPACE(chan, 2);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
BEGIN_NV04(chan, NvSubCopy, 0x021c, 1);
|
BEGIN_NV04(chan, NvSubCopy, 0x021c, 1);
|
||||||
OUT_RING (chan, 1);
|
OUT_RING (chan, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = RING_SPACE(chan, 14);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
BEGIN_NV04(chan, NvSubCopy, 0x0238, 2);
|
BEGIN_NV04(chan, NvSubCopy, 0x0238, 2);
|
||||||
OUT_RING (chan, upper_32_bits(src_offset));
|
OUT_RING (chan, upper_32_bits(src_offset));
|
||||||
OUT_RING (chan, upper_32_bits(dst_offset));
|
OUT_RING (chan, upper_32_bits(dst_offset));
|
||||||
|
|||||||
Reference in New Issue
Block a user