arm64/imx9: Allocate 64B granules instead of 256B
Optimal size of granule is 64B (the dcache line size). We can use it now as we don't have max. 32 granules limitation anymore. Signed-off-by: Jani Paalijarvi <jani.paalijarvi@unikie.com>
This commit is contained in:
parent
0d3a1bc617
commit
5b3ef20629
|
@ -89,11 +89,7 @@ int imx9_dma_alloc_init(void)
|
|||
{
|
||||
/* Allocate 64B granules with 64B alignment */
|
||||
|
||||
/* REVISIT: Use 256B granule size to get 8K maximum allocation. This is a
|
||||
* limitation in the granule allocator itself.
|
||||
*/
|
||||
|
||||
dma_allocator = gran_initialize(g_dma_heap, sizeof(g_dma_heap), 8, 6);
|
||||
dma_allocator = gran_initialize(g_dma_heap, sizeof(g_dma_heap), 6, 6);
|
||||
|
||||
if (dma_allocator == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue