boards: Add support for NXP RT1160 EVK
Add baseline support for mimxrt1160_evk Cortex M4 and M7 cores UART shell, synchronization, and hello world have all been verified to build and run correctly. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
This commit is contained in:
parent
4a4a03d476
commit
c0cee4fb5c
25 changed files with 935 additions and 40 deletions
34
boards/arm/mimxrt1160_evk/mimxrt1160_evk_cm4.dts
Normal file
34
boards/arm/mimxrt1160_evk/mimxrt1160_evk_cm4.dts
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Copyright (c) 2021, NXP
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/dts-v1/;
|
||||
|
||||
#include <nxp/nxp_rt1160_cm4.dtsi>
|
||||
#include "mimxrt1160_evk.dtsi"
|
||||
|
||||
/ {
|
||||
model = "NXP MIMXRT1160-EVK board";
|
||||
compatible = "nxp,mimxrt1166";
|
||||
|
||||
chosen {
|
||||
zephyr,sram = &sram1;
|
||||
zephyr,console = &lpuart1;
|
||||
zephyr,shell-uart = &lpuart1;
|
||||
};
|
||||
|
||||
|
||||
sdram0: memory@80000000 {
|
||||
/* Winbond W9825G6KH-5I */
|
||||
device_type = "memory";
|
||||
reg = <0x80000000 DT_SIZE_M(64)>;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
&lpuart1 {
|
||||
status = "okay";
|
||||
current-speed = <115200>;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue