4ead400d79
The Silicon Labs EFM32 Jade Gecko MCU includes: * Cortex-M3 core at 40MHz * up to 1024KB of flash and 256KB of RAM * multiple low power peripherals This is basically the same as the EFM32 Pearl Gecko, but with an ARM Cortex-M3 core instead of a Cortex-M4F. Signed-off-by: Christian Taedcke <christian.taedcke@lemonbeat.com>
26 lines
420 B
Plaintext
26 lines
420 B
Plaintext
/*
|
|
* Copyright (c) 2019 Lemonbeat GmbH
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <silabs/efm32jg12b.dtsi>
|
|
|
|
/ {
|
|
sram0: memory@20000000 {
|
|
reg = <0x20000000 DT_SIZE_K(256)>;
|
|
};
|
|
|
|
soc {
|
|
compatible = "silabs,efm32jg12b500f1024gl125", "silabs,efm32jg12b", "silabs,efm32", "simple-bus";
|
|
|
|
flash-controller@400e0000 {
|
|
flash0: flash@0 {
|
|
reg = <0 DT_SIZE_K(1024)>;
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|