It's my megabyte, I want to use it! At this point in init
vbios is copied over already, so there's no reason it cannot
used to hold other data now.

Signed-off-by: Maarten Lankhorst <maarten.lankhorst at canonical.com>
---
diff --git a/drivers/gpu/drm/nouveau/core/subdev/fb/ramnvc0.c 
b/drivers/gpu/drm/nouveau/core/subdev/fb/ramnvc0.c
index cf97c4d..507d35d 100644
--- a/drivers/gpu/drm/nouveau/core/subdev/fb/ramnvc0.c
+++ b/drivers/gpu/drm/nouveau/core/subdev/fb/ramnvc0.c
@@ -119,7 +119,6 @@ nvc0_ram_create(struct nouveau_object *parent, struct 
nouveau_object *engine,
        struct nouveau_bios *bios = nouveau_bios(pfb);
        struct nouveau_ram *ram;
        const u32 rsvd_head = ( 256 * 1024) >> 12; /* vga memory */
-       const u32 rsvd_tail = (1024 * 1024) >> 12; /* vbios etc */
        u32 parts = nv_rd32(pfb, 0x022438);
        u32 pmask = nv_rd32(pfb, 0x022554);
        u32 bsize = nv_rd32(pfb, 0x10f20c);
@@ -156,7 +155,7 @@ nvc0_ram_create(struct nouveau_object *parent, struct 
nouveau_object *engine,
        /* if all controllers have the same amount attached, there's no holes */
        if (uniform) {
                offset = rsvd_head;
-               length = (ram->size >> 12) - rsvd_head - rsvd_tail;
+               length = (ram->size >> 12) - rsvd_head;
                ret = nouveau_mm_init(&pfb->vram, offset, length, 1);
        } else {
                /* otherwise, address lowest common amount from 0GiB */
@@ -167,7 +166,7 @@ nvc0_ram_create(struct nouveau_object *parent, struct 
nouveau_object *engine,

                /* and the rest starting from (8GiB + common_size) */
                offset = (0x0200000000ULL >> 12) + (bsize << 8);
-               length = (ram->size >> 12) - (bsize << 8) - rsvd_tail;
+               length = (ram->size >> 12) - (bsize << 8);

                ret = nouveau_mm_init(&pfb->vram, offset, length, 0);
                if (ret)

Reply via email to