From e3de04df9b787c170a8ed03ef2c5cdc4591c8558 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Thu, 6 Apr 2023 13:13:48 +0000 Subject: [PATCH 1/3] app: zephyr still requires cmake version 3.20.0 Set min. cmake version required to what zephyr uses. Signed-off-by: Anas Nashif --- app/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index da9db799d387..ed6e53025fed 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.21.0) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(sample_sof) From 316f414b64dee8e4aefce503af6c2c2e57d266f4 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Wed, 7 Aug 2024 14:38:03 -0400 Subject: [PATCH 2/3] app: ace30_ptl_sim is not a support target ace30_ptl_sim is not a target in zephyr. intel_adsp/ace30_ptl not supported by the zephyr sdk yet, so it can't be an integration platform. Signed-off-by: Anas Nashif --- app/sample.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/sample.yaml b/app/sample.yaml index edcaf3996476..4739c74609a2 100644 --- a/app/sample.yaml +++ b/app/sample.yaml @@ -25,8 +25,6 @@ tests: - intel_adsp/cavs25 # TGL - intel_adsp/ace15_mtpm # MTL - intel_adsp/ace20_lnl - - intel_adsp/ace30/ptl - - intel_adsp/ace30/ptl/sim - imx8qm_mek/mimx8qm6/adsp - imx8qxp_mek/mimx8qx6/adsp - imx8mp_evk/mimx8ml8/adsp From 2900fa6be99f001ce578af7491e9a758b609cfc4 Mon Sep 17 00:00:00 2001 From: Jilay Pandya <126553325+jilaypandya@users.noreply.github.com> Date: Thu, 28 Nov 2024 20:52:38 +0000 Subject: [PATCH 3/3] platform: posix: dma: place api in iterable section this commit refactors dma_driver_api in iterable_section Signed-off-by: Jilay Pandya --- src/platform/posix/dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/posix/dma.c b/src/platform/posix/dma.c index 37f9ebdff0ac..0e5faa92556b 100644 --- a/src/platform/posix/dma.c +++ b/src/platform/posix/dma.c @@ -154,7 +154,7 @@ static int pzdma_init(const struct device *dev) /* Zephyr device definition */ -static const struct dma_driver_api pzdma_api = { +static DEVICE_API(dma, pzdma_api) = { .config = pzdma_config, .reload = pzdma_reload, .start = pzdma_start,