110 lines
2.2 KiB
Plaintext
110 lines
2.2 KiB
Plaintext
/*
|
|
* Copyright (c) 2020 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf5340_cpunet_qkaa.dtsi>
|
|
#include "nrf5340dk_common.dtsi"
|
|
#include "nrf5340dk_nrf5340_cpunet-pinctrl.dtsi"
|
|
#include <zephyr/dt-bindings/input/input-event-codes.h>
|
|
|
|
/ {
|
|
model = "Nordic NRF5340 DK NRF5340 Network";
|
|
compatible = "nordic,nrf5340-dk-nrf5340-cpunet";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,shell-uart = &uart0;
|
|
zephyr,uart-mcumgr = &uart0;
|
|
zephyr,bt-mon-uart = &uart0;
|
|
zephyr,bt-c2h-uart = &uart0;
|
|
zephyr,bt-hci-ipc = &ipc0;
|
|
nordic,802154-spinel-ipc = &ipc0;
|
|
zephyr,sram = &sram1;
|
|
zephyr,flash = &flash1;
|
|
zephyr,code-partition = &slot0_partition;
|
|
zephyr,ieee802154 = &ieee802154;
|
|
};
|
|
|
|
/* These aliases are provided for compatibility with samples */
|
|
aliases {
|
|
watchdog0 = &wdt0;
|
|
};
|
|
};
|
|
|
|
&gpiote {
|
|
status = "okay";
|
|
};
|
|
|
|
&gpio0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&gpio1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&uart0_default>;
|
|
pinctrl-1 = <&uart0_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
arduino_serial: &uart0{};
|
|
|
|
arduino_i2c: &i2c0 {
|
|
compatible = "nordic,nrf-twim";
|
|
/* Cannot be used together with uart0. */
|
|
/* status = "okay"; */
|
|
pinctrl-0 = <&i2c0_default>;
|
|
pinctrl-1 = <&i2c0_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
arduino_spi: &spi0 {
|
|
compatible = "nordic,nrf-spim";
|
|
/* Cannot be used together with uart0. */
|
|
/* status = "okay"; */
|
|
cs-gpios = <&arduino_header 16 GPIO_ACTIVE_LOW>; /* D10 */
|
|
pinctrl-0 = <&spi0_default>;
|
|
pinctrl-1 = <&spi0_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
&flash1 {
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
boot_partition: partition@0 {
|
|
label = "mcuboot";
|
|
reg = <0x00000000 0xc000>;
|
|
};
|
|
slot0_partition: partition@c000 {
|
|
label = "image-0";
|
|
reg = <0x0000C000 0x17000>;
|
|
};
|
|
slot1_partition: partition@23000 {
|
|
label = "image-1";
|
|
reg = <0x00023000 0x17000>;
|
|
};
|
|
storage_partition: partition@3a000 {
|
|
label = "storage";
|
|
reg = <0x0003a000 0x6000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&ieee802154 {
|
|
status = "okay";
|
|
};
|
|
|
|
/* Include default shared RAM configuration file */
|
|
#include <common/nordic/nrf5340_shared_sram_partition.dtsi>
|