How do i change the access pattern in vdma module?
For instance, I have a 4x4 image:
0 1 2 3
4 5 6 7
8 9 10 11
12 13 14 15
and I want to access the image in this order:
0 1 2
4 5 6 ->
8 9 10
1 2 3
5 6 7 ->
9 10 11
4 5 6
8 9 10 -> ...
12 13 14
Is there a way to do this>?