Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3598f247 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'at91-ab-4.9-dt1' of...

Merge tag 'at91-ab-4.9-dt1' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux into next/dt

Pull "DT Changes for 4.9" from Alexandre Belloni:
 - add ETM and ETB nodes on sama5d2

* tag 'at91-ab-4.9-dt1' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux:
  ARM: dts: at91: sama5d2: add ETM and ETB nodes
parents 9b81a8ce e46f48ad
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
@@ -77,6 +77,35 @@
		interrupts = <2 IRQ_TYPE_LEVEL_HIGH 0>;
	};

	etb {
		compatible = "arm,coresight-etb10", "arm,primecell";
		reg = <0x740000 0x1000>;

		clocks = <&mck>;
		clock-names = "apb_pclk";

		port {
			etb_in: endpoint {
				slave-mode;
				remote-endpoint = <&etm_out>;
			};
		};
	};

	etm {
		compatible = "arm,coresight-etm3x", "arm,primecell";
		reg = <0x73C000 0x1000>;

		clocks = <&mck>;
		clock-names = "apb_pclk";

		port {
			etm_out: endpoint {
				remote-endpoint = <&etb_in>;
			};
		};
	};

	memory {
		reg = <0x20000000 0x20000000>;
	};