You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.2 KiB
58 lines
1.2 KiB
/* |
|
* Copyright (c) 2020 Piotr Mienkowski |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/dts-v1/; |
|
#include <silabs/efr32bg13p632f512gm48.dtsi> |
|
#include "../common/efr32-series1-common.dtsi" |
|
|
|
/ { |
|
model = "Silicon Labs BRD4104A (Blue Gecko 13 Radio Board)"; |
|
compatible = "silabs,slwrb4104a", "silabs,efr32bg13p"; |
|
}; |
|
|
|
&cpu0 { |
|
clock-frequency = <38400000>; |
|
}; |
|
|
|
&flash0 { |
|
partitions { |
|
compatible = "fixed-partitions"; |
|
#address-cells = <1>; |
|
#size-cells = <1>; |
|
|
|
/* Reserve 32 kB for the bootloader */ |
|
boot_partition: partition@0 { |
|
reg = <0x0 0x00008000>; |
|
label = "mcuboot"; |
|
read-only; |
|
}; |
|
|
|
/* Reserve 220 kB for the application in slot 0 */ |
|
slot0_partition: partition@8000 { |
|
reg = <0x00008000 0x00037000>; |
|
label = "image-0"; |
|
}; |
|
|
|
/* Reserve 220 kB for the application in slot 1 */ |
|
slot1_partition: partition@3f000 { |
|
reg = <0x0003f000 0x00037000>; |
|
label = "image-1"; |
|
}; |
|
|
|
/* Reserve 32 kB for the scratch partition */ |
|
scratch_partition: partition@76000 { |
|
reg = <0x00076000 0x00008000>; |
|
label = "image-scratch"; |
|
}; |
|
|
|
/* Set 8Kb of storage at the end of the 512KB of flash */ |
|
storage_partition: partition@7e000 { |
|
reg = <0x0007e000 0x00002000>; |
|
label = "storage"; |
|
}; |
|
|
|
}; |
|
};
|
|
|