Enable serial interface on i.MX8ULP. This also includes a SHA update for hal_nxp which pulls in the following commits relevant to Zephyr: * 3366f234ed47 build: hal_nxp: add TPM counter support * 6544455fcf46 Compile in PXP driver if LVGL is set to use PXP. * 31463a848bcd devices: MIMX8UD7: add definition for LPUART_RX_TX_IRQS Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
28 lines
460 B
Text
28 lines
460 B
Text
/*
|
|
* Copyright (c) 2023-2024 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <nxp/nxp_imx8ulp.dtsi>
|
|
#include "imx8ulp_evk_mimx8ud7_adsp-pinctrl.dtsi"
|
|
|
|
/ {
|
|
model = "NXP i.MX 8ULP Audio DSP";
|
|
compatible = "nxp";
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,console = &lpuart7;
|
|
zephyr,shell-uart = &lpuart7;
|
|
};
|
|
};
|
|
|
|
&lpuart7 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&lpuart7_default>;
|
|
pinctrl-names = "default";
|
|
};
|