vc4: Add a note about a piece of errata I've learned about.
authorEric Anholt <eric@anholt.net>
Fri, 21 Nov 2014 03:41:26 +0000 (19:41 -0800)
committerEric Anholt <eric@anholt.net>
Mon, 24 Nov 2014 20:37:33 +0000 (12:37 -0800)
Right now in my environment I've only got a small CMA area, so this
constraint ends up holding.

src/gallium/drivers/vc4/vc4_draw.c

index e70506b6245adff62d6cc036292b914934842dea..2d824624b5f7921347a42cdd571116dba0090bdd 100644 (file)
@@ -48,6 +48,10 @@ vc4_start_draw(struct vc4_context *vc4)
          * BO allocations align to that anyway), then for some reason the
          * simulator wants an extra page available, even if you have overflow
          * memory set up.
+         *
+         * XXX: The binner only does 28-bit addressing math, so the tile alloc
+         * and tile state should be in the same BO and that BO needs to not
+         * cross a 256MB boundary, somehow.
          */
         uint32_t tile_alloc_size = 32 * tilew * tileh;
         tile_alloc_size = align(tile_alloc_size, 4096);