mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 18:58:46 +00:00
The i.MX 91 Evaluation Kit (MCIMX91-EVK board) is a platform designed to display the most commonly used features of the i.MX 91 applications processor. The MCIMX91-EVK board is an entry-level development board with a small and low-cost package. Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
30 lines
596 B
Plaintext
30 lines
596 B
Plaintext
/*
|
|
* Copyright 2025 NXP
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
*/
|
|
|
|
#include <nxp/nxp_imx/mimx9131cvvxj-pinctrl.dtsi>
|
|
|
|
&pinctrl {
|
|
uart1_default: uart1_default {
|
|
group0 {
|
|
pinmux = <&iomuxc1_uart1_rxd_lpuart_rx_lpuart1_rx>,
|
|
<&iomuxc1_uart1_txd_lpuart_tx_lpuart1_tx>;
|
|
bias-pull-up;
|
|
slew-rate = "slightly_fast";
|
|
drive-strength = "x5";
|
|
};
|
|
};
|
|
|
|
uart2_default: uart2_default {
|
|
group0 {
|
|
pinmux = <&iomuxc1_uart2_rxd_lpuart_rx_lpuart2_rx>,
|
|
<&iomuxc1_uart2_txd_lpuart_tx_lpuart2_tx>;
|
|
bias-pull-up;
|
|
slew-rate = "slightly_fast";
|
|
drive-strength = "x5";
|
|
};
|
|
};
|
|
};
|