1# Copyright (c) 2019 Brett Witherspoon
2#
3# SPDX-License-Identifier: Apache-2.0
4
5zephyr_sources(soc.c)
6zephyr_sources(ccfg.c)
7zephyr_include_directories(.)
8
9if(CONFIG_PM OR CONFIG_PM_DEVICE OR CONFIG_POWEROFF)
10  zephyr_library_sources(power.c)
11endif()
12zephyr_library_sources_ifdef(CONFIG_POWEROFF poweroff.c)
13
14zephyr_linker_sources_ifdef(CONFIG_HAS_TI_CCFG SECTIONS ccfg.ld)
15
16set(SOC_LINKER_SCRIPT ${ZEPHYR_BASE}/include/zephyr/arch/arm/cortex_m/scripts/linker.ld CACHE INTERNAL "")
17