Commit a2ef8a6a authored by Andrzej Głąbek's avatar Andrzej Głąbek Committed by Carles Cufi
Browse files

boards: nrf54h20dk: Add XIP region definition to memory map



Access to this region must be requested through UICR by a local
domain that want to use the Execute In Place (XIP) feature of
the EXMIF peripheral.

Signed-off-by: default avatarAndrzej Głąbek <andrzej.glabek@nordicsemi.no>
parent 2d003e3e
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -174,6 +174,15 @@
			zephyr,memory-region = "DMA_RAM3x_RAD";
			zephyr,memory-attr = <( DT_MEM_DMA )>;
		};

		xip_region: memory@60000000 {
			compatible = "nordic,owned-memory";
			reg = <0x60000000 0x20000000>;
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x60000000 0x20000000>;
		};
	};
};