aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/arm/omap/dmm.txt
diff options
context:
space:
mode:
authorArchit Taneja <archit@ti.com>2013-12-17 15:32:21 +0530
committerBenoit Cousson <bcousson@baylibre.com>2014-03-02 21:26:27 +0100
commit1a5fe3ca5ea192d4309dd61f3626b79ff38693c2 (patch)
tree871b464ea7adc58818233cac098756487712ac09 /Documentation/devicetree/bindings/arm/omap/dmm.txt
parentARM: dts: am43x-gp-evm: Add matrix gpio keys. (diff)
downloadlinux-dev-1a5fe3ca5ea192d4309dd61f3626b79ff38693c2.tar.xz
linux-dev-1a5fe3ca5ea192d4309dd61f3626b79ff38693c2.zip
ARM: dts: omap4+: Add DMM bindings
Add Dynamic Memory Manager (DMM) bindings for OMAP4 and OMAP5 and DRA7x devices. DMM only requires address and irq information. Add documentation for the DMM bindings. Originally worked on by Andy Gross <andygro@gmail.com> Cc: Andy Gross <andygro@gmail.com> Signed-off-by: Archit Taneja <archit@ti.com> Signed-off-by: Benoit Cousson <bcousson@baylibre.com>
Diffstat (limited to 'Documentation/devicetree/bindings/arm/omap/dmm.txt')
-rw-r--r--Documentation/devicetree/bindings/arm/omap/dmm.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/omap/dmm.txt b/Documentation/devicetree/bindings/arm/omap/dmm.txt
new file mode 100644
index 000000000000..8bd6d0a238a8
--- /dev/null
+++ b/Documentation/devicetree/bindings/arm/omap/dmm.txt
@@ -0,0 +1,22 @@
+OMAP Dynamic Memory Manager (DMM) bindings
+
+The dynamic memory manager (DMM) is a module located immediately in front of the
+SDRAM controllers (called EMIFs on OMAP). DMM manages various aspects of memory
+accesses such as priority generation amongst initiators, configuration of SDRAM
+interleaving, optimizing transfer of 2D block objects, and provide MMU-like page
+translation for initiators which need contiguous dma bus addresses.
+
+Required properties:
+- compatible: Should contain "ti,omap4-dmm" for OMAP4 family
+ Should contain "ti,omap5-dmm" for OMAP5 and DRA7x family
+- reg: Contains DMM register address range (base address and length)
+- interrupts: Should contain an interrupt-specifier for DMM_IRQ.
+- ti,hwmods: Name of the hwmod associated to DMM, which is typically "dmm"
+
+Example:
+
+dmm@4e000000 {
+ compatible = "ti,omap4-dmm";
+ reg = <0x4e000000 0x800>;
+ ti,hwmods = "dmm";
+};