67 lines
1.1 KiB
Plaintext
67 lines
1.1 KiB
Plaintext
/*
|
|
* Copyright (c) 2020, Bernhard Kraemer
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <nxp/nxp_rt1060.dtsi>
|
|
|
|
/ {
|
|
model = "PJRC TEENSY 4.0 board";
|
|
compatible = "nxp,mimxrt1062";
|
|
|
|
aliases {
|
|
led0 = &board_led;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,sram = &ocram;
|
|
zephyr,itcm = &itcm;
|
|
zephyr,dtcm = &dtcm;
|
|
zephyr,console = &lpuart6; /* Teensy Pins 0(RX1) 1(TX1) */
|
|
zephyr,can-primary = &flexcan1; /* Teensy Pins 23(CRX1) 22(CTX1) */
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
board_led: led-1 {
|
|
gpios = <&gpio2 3 GPIO_ACTIVE_HIGH>;
|
|
label = "User LED Pin 13";
|
|
};
|
|
};
|
|
};
|
|
|
|
&flexspi {
|
|
reg = <0x402a8000 0x4000>, <0x60000000 0x200000>;
|
|
/* WINBOND flash memory*/
|
|
w25q16jvuxim: w25q16jvuxim@0 {
|
|
compatible = "winbond,w25q16jvuxim", "jedec,spi-nor";
|
|
size = <16777208>;
|
|
label = "W25Q16JVUXIM";
|
|
reg = <0>;
|
|
spi-max-frequency = <133000000>;
|
|
status = "okay";
|
|
jedec-id = [ef 40 15];
|
|
};
|
|
};
|
|
|
|
zephyr_udc0: &usb1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&lpuart6 {
|
|
status = "okay";
|
|
current-speed = < 115200 >;
|
|
};
|
|
|
|
&flexcan1 {
|
|
status = "okay";
|
|
bus-speed = < 125000 >;
|
|
};
|
|
|
|
&edma0 {
|
|
status = "okay";
|
|
};
|