1/* 2 * Copyright (c) 2019 Brett Witherspoon 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <mem.h> 8#include <ti/cc13xx_cc26xx.dtsi> 9 10/ { 11 sram0: memory@20000000 { 12 reg = <0x20000000 DT_SIZE_K(80)>; 13 }; 14}; 15 16&flash0 { 17 reg = <0x0 DT_SIZE_K(352)>; 18 19 partitions { 20 compatible = "fixed-partitions"; 21 #address-cells = <1>; 22 #size-cells = <1>; 23 24 /* CCFG registers occupy the last 88 bytes of flash */ 25 ti_ccfg_partition: partition@57fa8 { 26 compatible = "zephyr,memory-region"; 27 reg = <0x57fa8 88>; 28 zephyr,memory-region = "FLASH_CCFG"; 29 }; 30 }; 31}; 32