Re: [PATCH v2] drm/panfrost: Calculate lock region size correctly

2021-09-17 Thread Steven Price
On 03/09/2021 10:49, Steven Price wrote: > It turns out that when locking a region, the region must be a naturally > aligned power of 2. The upshot of this is that if the desired region > crosses a 'large boundary' the region size must be increased > significantly to ensure that the locked region c

Re: [PATCH v2] drm/panfrost: Calculate lock region size correctly

2021-09-15 Thread Alyssa Rosenzweig
Took me a careful read, but this is Reviewed-by: Alyssa Rosenzweig Thanks for hunting this down!

[PATCH v2] drm/panfrost: Calculate lock region size correctly

2021-09-03 Thread Steven Price
It turns out that when locking a region, the region must be a naturally aligned power of 2. The upshot of this is that if the desired region crosses a 'large boundary' the region size must be increased significantly to ensure that the locked region completely covers the desired region. Previous cal