zephyr/boards/arm/pico_pi_m4/pico_pi_m4.dts
Joris Offouga 0e038bc6d7 boards: arm: Add support for Pico-Pi i.MX7D board
This patch is to add support for the Pico-Pi board which has an i.MX7D
Dual SoC.
The Zephyr is running on the Cortex M4 core and the following features
were validated on this board:

* UART: Zephyr console

Signed-off-by: Joris Offouga <offougajoris@gmail.com>
2019-09-11 08:47:53 -05:00

32 lines
443 B
Plaintext

/*
* Copyright (c) 2019, Joris Offouga
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <nxp/nxp_imx7d_m4.dtsi>
/ {
model = "Pico-Pi IMX7D board";
compatible = "nxp,mcimx7d_m4";
aliases {
uart-6 = &uart6;
};
chosen {
zephyr,flash = &tcml_code;
zephyr,sram = &tcmu_sys;
zephyr,console = &uart6;
zephyr,shell-uart = &uart6;
};
};
&uart6 {
status = "okay";
current-speed = <115200>;
modem-mode = <0>;
};