Commit 3b32e697 authored by Iuliana Prodan's avatar Iuliana Prodan Committed by Carles Cufi
Browse files

dts: xtensa: nxp: Add device tree for HiFi4 core from NXP i.MXRT700



Add a basic device tree for the HiFi4 DSP from NXP i.MXRT700.

Signed-off-by: default avatarIuliana Prodan <iuliana.prodan@nxp.com>
parent b3b6f7e2
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
/*
 * Copyright 2024-2025 NXP
 *
 * SPDX-License-Identifier: Apache-2.0
 */

#include <xtensa/xtensa.dtsi>
#include <freq.h>
#include <mem.h>

/ {
	cpus {
		#address-cells = <1>;
		#size-cells = <0>;

		cpu0: cpu@0 {
			device_type = "cpu";
			compatible = "cdns,tensilica-xtensa-lx7";
			clock-frequency = <DT_FREQ_M(325)>;
			reg = <0>;
		};
	};

	itcm: memory@24020000 {
		device_type = "memory";
		compatible = "mmio-sram";
		reg = <0x24020000 DT_SIZE_K(64)>;
	};

	dtcm: memory@24000000 {
		device_type = "memory";
		compatible = "mmio-sram";
		reg = <0x24000000 DT_SIZE_K(64)>;
	};
};