1# Intel ACE SoC family CMake file
2#
3# Copyright (c) 2022-2024 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6
7zephyr_library_sources(
8  sram.c
9  multiprocessing.c
10  irq.c
11  power_down.S
12  power.c
13  boot.c
14  timestamp.c
15  )
16
17zephyr_include_directories(include)
18zephyr_include_directories(include/${CONFIG_SOC})
19zephyr_library_sources_ifdef(CONFIG_SOC_INTEL_COMM_WIDGET comm_widget.c)
20zephyr_library_sources_ifdef(CONFIG_SOC_INTEL_COMM_WIDGET comm_widget_messages.c)
21
22if (CONFIG_XTENSA_MMU)
23  zephyr_library_sources_ifdef(CONFIG_SOC_INTEL_ACE30_PTL mmu_ptl.c)
24endif()
25
26set(SOC_LINKER_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/linker.ld CACHE INTERNAL "")
27