]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - Documentation/devicetree/bindings/dma/ti-edma.txt
dmaengine: edma: DT: Change memcpy channel array from 16bit to 32bit type
[mirror_ubuntu-artful-kernel.git] / Documentation / devicetree / bindings / dma / ti-edma.txt
CommitLineData
1be5336b
PU
1Texas Instruments eDMA
2
3The eDMA3 consists of two components: Channel controller (CC) and Transfer
4Controller(s) (TC). The CC is the main entry for DMA users since it is
5responsible for the DMA channel handling, while the TCs are responsible to
6execute the actual DMA tansfer.
7
8------------------------------------------------------------------------------
9eDMA3 Channel Controller
10
11Required properties:
12- compatible: "ti,edma3-tpcc" for the channel controller(s)
13- #dma-cells: Should be set to <2>. The first number is the DMA request
14 number and the second is the TC the channel is serviced on.
15- reg: Memory map of eDMA CC
16- reg-names: "edma3_cc"
17- interrupts: Interrupt lines for CCINT, MPERR and CCERRINT.
18- interrupt-names: "edma3_ccint", "emda3_mperr" and "edma3_ccerrint"
19- ti,tptcs: List of TPTCs associated with the eDMA in the following form:
20 <&tptc_phandle TC_priority_number>. The highest priority is 0.
21
22Optional properties:
23- ti,hwmods: Name of the hwmods associated to the eDMA CC
24- ti,edma-memcpy-channels: List of channels allocated to be used for memcpy, iow
ecb7dece 25 these channels will be SW triggered channels. See example.
1be5336b
PU
26- ti,edma-reserved-slot-ranges: PaRAM slot ranges which should not be used by
27 the driver, they are allocated to be used by for example the
28 DSP. See example.
29
30------------------------------------------------------------------------------
31eDMA3 Transfer Controller
32
33Required properties:
34- compatible: "ti,edma3-tptc" for the transfer controller(s)
35- reg: Memory map of eDMA TC
36- interrupts: Interrupt number for TCerrint.
37
38Optional properties:
39- ti,hwmods: Name of the hwmods associated to the given eDMA TC
40- interrupt-names: "edma3_tcerrint"
41
42------------------------------------------------------------------------------
43Example:
44
45edma: edma@49000000 {
46 compatible = "ti,edma3-tpcc";
47 ti,hwmods = "tpcc";
48 reg = <0x49000000 0x10000>;
49 reg-names = "edma3_cc";
50 interrupts = <12 13 14>;
51 interrupt-names = "edma3_ccint", "emda3_mperr", "edma3_ccerrint";
52 dma-requests = <64>;
53 #dma-cells = <2>;
54
55 ti,tptcs = <&edma_tptc0 7>, <&edma_tptc1 7>, <&edma_tptc2 0>;
56
57 /* Channel 20 and 21 is allocated for memcpy */
ecb7dece 58 ti,edma-memcpy-channels = <20 21>;
1be5336b
PU
59 /* The following PaRAM slots are reserved: 35-45 and 100-110 */
60 ti,edma-reserved-slot-ranges = /bits/ 16 <35 10>,
61 /bits/ 16 <100 10>;
62};
63
64edma_tptc0: tptc@49800000 {
65 compatible = "ti,edma3-tptc";
66 ti,hwmods = "tptc0";
67 reg = <0x49800000 0x100000>;
68 interrupts = <112>;
69 interrupt-names = "edm3_tcerrint";
70};
71
72edma_tptc1: tptc@49900000 {
73 compatible = "ti,edma3-tptc";
74 ti,hwmods = "tptc1";
75 reg = <0x49900000 0x100000>;
76 interrupts = <113>;
77 interrupt-names = "edm3_tcerrint";
78};
79
80edma_tptc2: tptc@49a00000 {
81 compatible = "ti,edma3-tptc";
82 ti,hwmods = "tptc2";
83 reg = <0x49a00000 0x100000>;
84 interrupts = <114>;
85 interrupt-names = "edm3_tcerrint";
86};
87
88sham: sham@53100000 {
89 compatible = "ti,omap4-sham";
90 ti,hwmods = "sham";
91 reg = <0x53100000 0x200>;
92 interrupts = <109>;
93 /* DMA channel 36 executed on eDMA TC0 - low priority queue */
94 dmas = <&edma 36 0>;
95 dma-names = "rx";
96};
97
98mcasp0: mcasp@48038000 {
99 compatible = "ti,am33xx-mcasp-audio";
100 ti,hwmods = "mcasp0";
101 reg = <0x48038000 0x2000>,
102 <0x46000000 0x400000>;
103 reg-names = "mpu", "dat";
104 interrupts = <80>, <81>;
105 interrupt-names = "tx", "rx";
106 status = "disabled";
107 /* DMA channels 8 and 9 executed on eDMA TC2 - high priority queue */
108 dmas = <&edma 8 2>,
109 <&edma 9 2>;
110 dma-names = "tx", "rx";
111};
112
113------------------------------------------------------------------------------
114DEPRECATED binding, new DTS files must use the ti,edma3-tpcc/ti,edma3-tptc
115binding.
bf3156dd
MP
116
117Required properties:
118- compatible : "ti,edma3"
bf3156dd
MP
119- #dma-cells: Should be set to <1>
120 Clients should use a single channel number per DMA request.
bf3156dd
MP
121- reg: Memory map for accessing module
122- interrupt-parent: Interrupt controller the interrupt is routed through
123- interrupts: Exactly 3 interrupts need to be specified in the order:
124 1. Transfer completion interrupt.
125 2. Memory protection interrupt.
126 3. Error interrupt.
127Optional properties:
128- ti,hwmods: Name of the hwmods associated to the EDMA
129- ti,edma-xbar-event-map: Crossbar event to channel map
130
efc24e14
PU
131Deprecated properties:
132Listed here in case one wants to boot an old kernel with new DTB. These
133properties might need to be added to the new DTS files.
134- ti,edma-regions: Number of regions
135- ti,edma-slots: Number of slots
136- dma-channels: Specify total DMA channels per CC
137
bf3156dd
MP
138Example:
139
140edma: edma@49000000 {
141 reg = <0x49000000 0x10000>;
142 interrupt-parent = <&intc>;
143 interrupts = <12 13 14>;
144 compatible = "ti,edma3";
145 ti,hwmods = "tpcc", "tptc0", "tptc1", "tptc2";
146 #dma-cells = <1>;
cf7eb979
TG
147 ti,edma-xbar-event-map = /bits/ 16 <1 12
148 2 13>;
bf3156dd 149};