- Ensure that properties have 2 new lines when node is above it. - Enures that 1 new line is required between a node and #if/#ifdef... - Enures that 2 new line are required between #endif and node. - Wraps property values that exceed 100 characters in length. Signed-off-by: Kyle Bonnici <kylebonnici@hotmail.com>
54 lines
862 B
Plaintext
54 lines
862 B
Plaintext
/*
|
|
* Copyright 2025 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <nxp/nxp_imx943_m7_0.dtsi>
|
|
#include "imx943_evk-pinctrl.dtsi"
|
|
|
|
/ {
|
|
model = "NXP i.MX943 EVK board";
|
|
compatible = "nxp,imx943_evk";
|
|
|
|
chosen {
|
|
zephyr,flash = &itcm;
|
|
zephyr,sram = &dtcm;
|
|
|
|
zephyr,console = &lpuart11;
|
|
zephyr,shell-uart = &lpuart11;
|
|
};
|
|
};
|
|
|
|
&flexio1 {
|
|
status = "okay";
|
|
|
|
/* Signal can be checked by the connector J44 Pin10(M1_LED_TP1) via logic analyzer */
|
|
flexio1_pwm: flexio1_pwm {
|
|
compatible = "nxp,flexio-pwm";
|
|
#pwm-cells = <3>;
|
|
pinctrl-0 = <&flexio1_io5_default>;
|
|
pinctrl-names = "default";
|
|
|
|
pwm_1 {
|
|
pin-id = <5>;
|
|
prescaler = <1>;
|
|
};
|
|
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
&lpuart11 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&lpuart11_default>;
|
|
pinctrl-names = "default";
|
|
};
|
|
|
|
&gpt_hw_timer2 {
|
|
status = "okay";
|
|
};
|