1/*
2 * Copyright (c) 2018 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8#include <nordic/nrf52840.dtsi>
9
10&flash0 {
11	reg = <0x00000000 DT_SIZE_K(1024)>;
12};
13
14&sram0 {
15	reg = <0x20000000 DT_SIZE_K(256)>;
16};
17
18&power {
19	reg0: regulator@40000580 {
20		compatible = "nordic,nrf52x-regulator-hv";
21		reg = <0x40000580 0x1>;
22		regulator-name = "REG0";
23		status = "disabled";
24	};
25};
26
27/ {
28	soc {
29		compatible = "nordic,nrf52840-qiaa", "nordic,nrf52840",
30			     "nordic,nrf52", "simple-bus";
31	};
32};
33