Re: [Mesa-dev] [PATCH v2 21/37] panfrost: Allocate tiler and scratchpad BOs per-batch

2019-09-16 Thread Alyssa Rosenzweig
> Note to Alyssa: I tried removing the dummy_tiler BO replacing it by a > dummy value (tried both 0xdeafbeef and 0x0) and unfortunately it > crashed, so I decided to keep this dummy allocation for now. Very well. That'd be a neat but very low prio RE task, so *shrug* > -static void > -panfrost_se

[Mesa-dev] [PATCH v2 21/37] panfrost: Allocate tiler and scratchpad BOs per-batch

2019-09-16 Thread Boris Brezillon
If we want to execute several batches in parallel they need to have their own tiler and scratchpad BOs. Let move those objects to panfrost_batch and allocate them on a per-batch basis. Signed-off-by: Boris Brezillon --- Note to Alyssa: I tried removing the dummy_tiler BO replacing it by a dummy v