You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I came across the driver in the Linux kernel (https://github.com/torvalds/linux/blob/master/drivers/dma/xilinx/xdma.c) and Im wondering whats the difference between these two. The one in the kernel is a platform driver, which uses a different interface to load the driver (matching over device trees).
But what about the implementation differences? Do they work the same way or are they for different usecases? Are there related reference, which maybe answer my questions (I dont came across something in my research)?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi @free43 , that's an interesting question. In my understanding, the driver in /drivers/dma/xilinx is a driver for a SoC that has built-in hard IP from Xilinx, that's why it is instantiated in device tree, just like any other driver for SoC. There is a file that mentions ZynqMP, I guess that's what the driver for. As an opposite, XDMA driver in dma_ip_drivers repo (this one) is for PCIe device (FPGA with XDMA IP) that could be connected to your SoC's PCIe bus.
Hello,
I came across the driver in the Linux kernel (https://github.com/torvalds/linux/blob/master/drivers/dma/xilinx/xdma.c) and Im wondering whats the difference between these two. The one in the kernel is a platform driver, which uses a different interface to load the driver (matching over device trees).
But what about the implementation differences? Do they work the same way or are they for different usecases? Are there related reference, which maybe answer my questions (I dont came across something in my research)?
Thanks in advance!
The text was updated successfully, but these errors were encountered: