mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 14:52:31 +00:00
Add board support for NXP i.MX8M Mini EVK. This board has the following features: Processor : i.MX8M Mini Quad applications processor Memory : 32-bit LPDDR4 w/2 GB eMMC 5.0/5.1 w/16 GB SD/MMC connector QSPI w/32 MB Connectivity : MIMO 1x1 Wi-Fi 802.11a/b/g/n/ac and BT4.1 Ethernet PCIe M.2 USB : 2x USB 3.0 Type C Debug : JTAG connector MicroUSB for debug console More information about this board can be found in NXP website: https://www.nxp.com/design/development-boards/i.mx-evaluation-and-development-boards/evaluation-kit-for-thebr-i.mx-8m-mini-applications-processor:8MMINILPD4-EVK Signed-off-by: Manivannan Sadhasivam <mani@kernel.org>
31 lines
458 B
Plaintext
31 lines
458 B
Plaintext
/*
|
|
* Copyright (c) 2020, Manivannan Sadhasivam <mani@kernel.org>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <nxp/nxp_imx8mm_m4.dtsi>
|
|
|
|
/ {
|
|
model = "NXP i.MX8M Mini EVK board";
|
|
compatible = "nxp,mimx8mm_evk";
|
|
|
|
aliases {
|
|
uart-4 = &uart4;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,flash = &tcml_code;
|
|
zephyr,sram = &tcmu_sys;
|
|
zephyr,console = &uart4;
|
|
zephyr,shell-uart = &uart4;
|
|
};
|
|
};
|
|
|
|
&uart4 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
};
|