35 lines
623 B
Plaintext
35 lines
623 B
Plaintext
|
/*
|
||
|
* Copyright (c) 2019 Interay Solutions B.V.
|
||
|
* Copyright (c) 2019 Oane Kingma
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <mem.h>
|
||
|
#include <silabs/efm32gg11b.dtsi>
|
||
|
|
||
|
/ {
|
||
|
sram0: memory@20000000 {
|
||
|
reg = <0x20000000 DT_SIZE_K(256)>;
|
||
|
};
|
||
|
|
||
|
soc {
|
||
|
compatible = "silabs,efm32gg11b820f2048gl192", "silabs,efm32gg11b",
|
||
|
"silabs,efm32", "simple-bus";
|
||
|
|
||
|
flash-controller@40000000 {
|
||
|
flash0: flash@0 {
|
||
|
reg = <0 DT_SIZE_K(2048)>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
eth0: eth@40024000 { /* ETH0 */
|
||
|
compatible = "silabs,gecko-ethernet";
|
||
|
reg = <0x40024000 0xC14>;
|
||
|
interrupts = <59 0>;
|
||
|
status = "disabled";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|