1/*
2 * Copyright (c) 2019 Lemonbeat GmbH
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8#include <silabs/efm32jg12b.dtsi>
9
10/ {
11	sram0: memory@20000000 {
12		reg = <0x20000000 DT_SIZE_K(256)>;
13	};
14
15	soc {
16		compatible = "silabs,efm32jg12b500f1024gl125", "silabs,efm32jg12b", "silabs,efm32", "simple-bus";
17
18		flash-controller@400e0000 {
19			flash0: flash@0 {
20				reg = <0 DT_SIZE_K(1024)>;
21			};
22		};
23	};
24
25};
26