1/* 2 * Copyright (c) 2019 Interay Solutions B.V. 3 * Copyright (c) 2019 Oane Kingma 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8#include <mem.h> 9#include <silabs/efm32gg11b.dtsi> 10 11/ { 12 sram0: memory@20000000 { 13 reg = <0x20000000 DT_SIZE_K(256)>; 14 }; 15 16 soc { 17 compatible = "silabs,efm32gg11b820f2048gl192", "silabs,efm32gg11b", 18 "silabs,efm32", "simple-bus"; 19 20 flash-controller@40000000 { 21 flash0: flash@0 { 22 reg = <0 DT_SIZE_K(2048)>; 23 }; 24 }; 25 26 eth0: eth@40024000 { /* ETH0 */ 27 compatible = "silabs,gecko-ethernet"; 28 reg = <0x40024000 0xC14>; 29 interrupts = <59 0>; 30 status = "disabled"; 31 }; 32 }; 33 34}; 35