Commit 27559a8b authored by Tony Lindgren's avatar Tony Lindgren
Browse files

ARM: dts: Configure interconnect target module for dra7 dmm



We can now probe devices with device tree only configuration using
ti-sysc interconnect target module driver. Let's configure the
module, but keep the legacy "ti,hwmods" peroperty to avoid new boot
time warnings. The legacy property will be removed in later patches
together with the legacy platform data.

Tested-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent f5d0aba7
Loading
Loading
Loading
Loading
+17 −4
Original line number Diff line number Diff line
@@ -464,11 +464,24 @@
			};
		};

		dmm@4e000000 {
		target-module@4e000000 {
			compatible = "ti,sysc-omap2", "ti,sysc";
			ti,hwmods = "dmm";
			reg = <0x4e000000 0x4>,
			      <0x4e000010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ranges = <0x0 0x4e000000 0x2000000>;
			#size-cells = <1>;
			#address-cells = <1>;

			dmm@0 {
				compatible = "ti,omap5-dmm";
			reg = <0x4e000000 0x800>;
				reg = <0 0x800>;
				interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
			ti,hwmods = "dmm";
			};
		};

		ipu1: ipu@58820000 {