2019-04-19 02:29:26 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Brett Witherspoon
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <mem.h>
|
|
|
|
#include <ti/cc13x2_cc26x2.dtsi>
|
|
|
|
|
|
|
|
/ {
|
|
|
|
sram0: memory@20000000 {
|
|
|
|
reg = <0x20000000 DT_SIZE_K(80)>;
|
|
|
|
};
|
|
|
|
|
|
|
|
flash0: serial-flash@0 {
|
|
|
|
reg = <0x0 DT_SIZE_K(352)>;
|
2021-04-10 13:42:15 +08:00
|
|
|
|
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
/* CCFG registers occupy the last 88 bytes of flash */
|
|
|
|
ti_ccfg_partition: partition@57fa8 {
|
|
|
|
label = "ti_ccfg";
|
|
|
|
reg = <0x57fa8 88>;
|
2021-07-28 18:31:24 +08:00
|
|
|
zephyr,memory-region = "FLASH_CCFG";
|
2021-04-10 13:42:15 +08:00
|
|
|
};
|
|
|
|
};
|
2019-04-19 02:29:26 +08:00
|
|
|
};
|
|
|
|
};
|