1/*
2 * Copyright 2022,2024 NXP
3 * Copyright 2024 PHYTEC Messtechnik GmbH
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8/dts-v1/;
9
10#include <nxp/nxp_mimx93_a55.dtsi>
11#include "phyboard_nash-pinctrl.dtsi"
12
13/ {
14	model = "PHYTEC phyBOARD-Nash i.MX93";
15	compatible = "phytec,phyboard_nash";
16
17	chosen {
18		zephyr,console = &lpuart2;
19		zephyr,shell-uart = &lpuart2;
20		zephyr,sram = &sram0;
21	};
22
23	cpus {
24		cpu@0 {
25			status = "disabled";
26		};
27	};
28
29	sram0: memory@d0000000 {
30		reg = <0xd0000000 DT_SIZE_M(1)>;
31	};
32};
33
34&lpuart2 {
35	status = "okay";
36	current-speed = <115200>;
37	/* clocks = <&ccm IMX_CCM_UART4_CLK 0x6c 24>; */
38	pinctrl-0 = <&uart2_default>;
39	pinctrl-names = "default";
40};
41