I want to do dma of multiple frames to send a big frame( jumbo ). I am able to send normal frame ( of size 1500 ). I need some doubts on dma.
What is real advantage of dma_map_single() over other api. We could do everything with dma_map_page , right ?
Suppose we need to transmit a big frame( jumbo ) in a driver , and i have stored this frame in multiple buffers. These buffers are not contiguous in physical memory or in virtual memory. But these buffers are in kernel space. How can we send it as a one frame. Should we use scatter-gather dma ?. Is this possible with other dma_api ?