Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions boards/nxp/frdm_imx93/frdm_imx93_mimx9352_a55.dts
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,7 @@
&wdog4 {
status = "okay";
};

&tpm2 {
status = "okay";
};
1 change: 1 addition & 0 deletions boards/nxp/frdm_imx93/frdm_imx93_mimx9352_a55.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ toolchain:
- cross-compile
ram: 1024
supported:
- counter
- gpio
- uart
- i2c
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CONFIG_REBOOT=y
CONFIG_PM_CPU_OPS=y
CONFIG_PM_CPU_OPS_PSCI=y
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright 2025 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/

/{
resources {
compatible = "test-gpio-basic-api";
/*
* Use connector P11 Pin33 EXP_GPIO_IO13 which connects to GPIO2 Pin13 as output
* GPIO, and connector P11 Pin8 EXP_GPIO_IO14 which connect to GPIO2 Pin14 as
* input GPIO, connect these two pins with a Dupont Line.
*/
out-gpios = <&gpio2 13 0>;
in-gpios = <&gpio2 14 0>;
};
};