mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 23:55:55 +00:00
Add device tree support for nRF52840 SoC and PCA10056-DK board. This is minimal support for memory, flash, and UART. For the nRF52840 we select between "nordic,nrf-uarte", "nordic,nrf-uart" support for each board. Change-Id: I1c377e0cb97ff4716ea5489fffaa7c0e2b34d18a Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
27 lines
440 B
Plaintext
27 lines
440 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf52840.dtsi>
|
|
|
|
/ {
|
|
model = "Nordic PCA10056 Dev Kit";
|
|
compatible = "nordic,pca10056-dk", "nordic,nrf52840-qiaa",
|
|
"nordic,nrf52840";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
compatible = "nordic,nrf-uart";
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|