mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 23:52:30 +00:00
Add pinctrl for SAI1 node. This means: 1) Adding definitions for the pads used by SAI1. 2) Creating a pin group and referencing it in the SAI1 node via the `pinctrl-0` property. Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
38 lines
579 B
Plaintext
38 lines
579 B
Plaintext
/*
|
|
* Copyright (c) 2021, 2024 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <nxp/nxp_imx8.dtsi>
|
|
#include "imx8qxp_mek_mimx8qx6_adsp-pinctrl.dtsi"
|
|
|
|
/ {
|
|
model = "NXP i.MX 8QXP Audio DSP";
|
|
compatible = "nxp";
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,console = &lpuart2;
|
|
zephyr,shell-uart = &lpuart2;
|
|
};
|
|
};
|
|
|
|
&lpuart2 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&lpuart2_default>;
|
|
pinctrl-names = "default";
|
|
};
|
|
|
|
&sai1 {
|
|
pinctrl-0 = <&sai1_default>;
|
|
pinctrl-names = "default";
|
|
};
|
|
|
|
&irqsteer {
|
|
reg = <0x51080000 DT_SIZE_K(64)>;
|
|
};
|