Rga on 8GB memory board

I have a 8GB rock3a and I’m using a mainline 5.17 kernel. I can enable the rga in dtb with CounterPillow’s patch. But when I use gstreamer command gst-launch-1.0 videotestsrc ! video/x-raw,width=320,height=240 ! v4l2convert ! video/x-raw,width=640,height=480 ! autovideosink, I get a green window. And I can see rga error:

rockchip-rga fdeb0000.rga: swiotlb buffer is full (sz: 393216 bytes), total 32768 (slots), used 6827 (slots)

After some search on internet, I found that other people using rockchip 4.19 also meet this issue: https://forum.odroid.com/viewtopic.php?f=211&t=44281&sid=8c3a1dedcc2e517ab52168e19f0b6970. I add “mem=4G” to my boot parameter and I can run the above gstreamer command with normal output. It seems that the rockchip rga2 driver is used for chips released before rk3568 which don’t have memory larger than 4GB.

1 Like

Facing same problems here, RK3566 evb3 V10 board with kernel 4.19.219

@amazingfate

Just some of my findings.
This happens also on rk3588, 16GB, kernel 5.10.66 and 5.10.110, librga 1.8.1 If i recall correctly, librga on the official image is 1.7.y and i can’t remember having this issue with 1.7.y when i re-used the rootfs to build my first custom image, but i don’t have the latest SDK. Waiting for the Radxa team to release it and test it.

Obs: using hw decode

This patch will save the world: https://lore.kernel.org/linux-arm-kernel/20230914-rockchip-rga-multiplanar-v2-0-bbfa6abf8bbf@pengutronix.de/
I have tested it on rk3588, which works amazing.

Rockchip BSP kernel does not require this. The mainline requires it because it was hardcoded in V4L2 driver. You are free to set whether to allocate DMA32 memory via the ROCKCHIP_BO_DMA32 DRM_GEM flag or using the DMA_HEAP device nodes /dev/dma_heap/system-{dma32,uncached-dma32}.

Or simply use the MPP internal allocator and add the following flags.

mpp_buffer_group_get_internal(&buf_group, MPP_BUFFER_TYPE_DRM | MPP_BUFFER_FLAGS_DMA32 | MPP_BUFFER_FLAGS_CACHABLE);

Thanks for the heads up.

I am still running 5.10.110 on rk3588, which i find it more stable for this platform. (16GB RAM).
Rock 3A runs very stable with 5.10.160 (rkr4.1)
What puzzles me is Armbian kernel naming convention, named rkr6 and Rockchip BSP looks like rkr6.1 and is on kernel 6.1 now.
Are you following Rockchip naming convention?