32 lines
562 B
Plaintext
32 lines
562 B
Plaintext
/*
|
|
* Copyright (c) 2019 Brett Witherspoon
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <ti/cc13xx_cc26xx.dtsi>
|
|
|
|
/ {
|
|
sram0: memory@20000000 {
|
|
reg = <0x20000000 DT_SIZE_K(144)>;
|
|
};
|
|
};
|
|
|
|
&flash0 {
|
|
reg = <0x0 DT_SIZE_K(704)>;
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
/* CCFG registers occupy the last 88 bytes of flash */
|
|
ti_ccfg_partition: partition@affa8 {
|
|
compatible = "zephyr,memory-region";
|
|
reg = <0xaffa8 88>;
|
|
zephyr,memory-region = "FLASH_CCFG";
|
|
};
|
|
};
|
|
};
|