Path: blob/master/Documentation/devicetree/bindings/dma/milbeaut-m10v-hdmac.txt
26308 views
* Milbeaut AHB DMA Controller12Milbeaut AHB DMA controller has transfer capability below.3- device to memory transfer4- memory to device transfer56Required property:7- compatible: Should be "socionext,milbeaut-m10v-hdmac"8- reg: Should contain DMA registers location and length.9- interrupts: Should contain all of the per-channel DMA interrupts.10Number of channels is configurable - 2, 4 or 8, so11the number of interrupts specified should be {2,4,8}.12- #dma-cells: Should be 1. Specify the ID of the slave.13- clocks: Phandle to the clock used by the HDMAC module.141516Example:1718hdmac1: dma-controller@1e110000 {19compatible = "socionext,milbeaut-m10v-hdmac";20reg = <0x1e110000 0x10000>;21interrupts = <0 132 4>,22<0 133 4>,23<0 134 4>,24<0 135 4>,25<0 136 4>,26<0 137 4>,27<0 138 4>,28<0 139 4>;29#dma-cells = <1>;30clocks = <&dummy_clk>;31};323334