Maarten Lankhorst
2013-Aug-07 15:11 UTC
[Nouveau] [PATCH] drm/nouveau: require contiguous bo for framebuffer
This was already required before, but no check in the kernel was done to enforce
it.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst at canonical.com>
---
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c
b/drivers/gpu/drm/nouveau/nouveau_display.c
index 73cf240..ddb065c 100644
--- a/drivers/gpu/drm/nouveau/nouveau_display.c
+++ b/drivers/gpu/drm/nouveau/nouveau_display.c
@@ -107,6 +107,11 @@ nouveau_framebuffer_init(struct drm_device *dev,
return -EINVAL;
}
+ if (nvbo->tile_flags & NOUVEAU_GEM_TILE_NONCONTIG) {
+ NV_ERROR(drm, "framebuffer requires contiguous bo\n");
+ return -EINVAL;
+ }
+
if (nv_device(drm->device)->chipset == 0x50)
nv_fb->r_format |= (tile_flags << 8);
Seemingly Similar Threads
- [PATCH] drm/nouveau: handle framebuffer pinning correctly
- [PATCH v4] drm/nouveau: use tile_mode and pte_kind for VM_BIND bo allocations
- [PATCH v3] drm/nouveau: use tile_mode and pte_kind for VM_BIND bo allocations
- [RFC PATCH 6/7] drm/nouveau: Support marking buffers for explicit sync
- [PATCH v2] nouveau: add coherent BO attribute
