Hi There,
I'm looking to write a linux driver that uses DMA to read from a memory-mapped register on the GPMC bus, into a memory buffer.
I can't seem to find any example code that sets up the device tree to specify the `dmas` to transfer DMA_DEV_TO_MEM from a GPMC device. I've examined `drivers/dma/ti/k3-psil-am62a.c`, but don't find anything related to GPMC in the `am62a_src_ep_map`.
Examining https://software-dl.ti.com/tisci/esd/latest/5_soc_doc/am62ax/psil_cfg.html, I found:
pktdma_rx | 0x9000 to 0x9017 |
But can't find enough documentation around this to determine whether this is the correct avenue to go.
Below is an example of the node I'm trying to setup in my device tree, that will utilize this DMA action:
my_device_data: my-device-data@20110000 { compatible = "my-device"; #address-cells = <1>; #size-cells = <1>; reg = <0x4c000000 0x1c00000>; memory-region = <&my_device_region>; dmas = <&main_pktdma ? ?>; dma-names = "rx"; status = "okay"; };
Any help you can provide to direct me to the documentation/information I can't find would be appreciated.
Thanks in advance,
Craig.