Skip to content

Commit

Permalink
west.yml: update Zephyr to 0d5a670f4f073
Browse files Browse the repository at this point in the history
Switch back to main Zephyr repository and commit 0d5a670f4f073.

This includes multiple changes to fix compilation with Zephyr commit
"hwmv2: Introduce Hardware model version 2 and convert devices".

Signed-off-by: Kai Vehmanen <[email protected]>
  • Loading branch information
kv2019i committed Mar 6, 2024
1 parent 7507b32 commit ba3900c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion scripts/xtensa-build-zephyr.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ def build_platforms():

# cavstool and friends
shutil.copytree(pathlib.Path(west_top) /
"zephyr" / "soc" / "xtensa" / "intel_adsp" / "tools",
"zephyr" / "soc" / "intel" / "intel_adsp" / "tools",
tools_output_dir,
symlinks=True, ignore_dangling_symlinks=True, dirs_exist_ok=True)

Expand Down
6 changes: 3 additions & 3 deletions src/audio/base_fw.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <sof/lib/cpu.h>
#include <rtos/init.h>
#include <platform/lib/clk.h>
#if defined(CONFIG_SOC_SERIES_INTEL_ACE)
#if defined(CONFIG_SOC_SERIES_INTEL_ADSP_ACE)
#include <intel_adsp_hda.h>
#endif

Expand All @@ -24,7 +24,7 @@
#include <zephyr/logging/log_ctrl.h>

/* TODO: Remove platform-specific code, see https://github.com/thesofproject/sof/issues/7549 */
#if defined(CONFIG_SOC_SERIES_INTEL_ACE) || defined(CONFIG_INTEL_ADSP_CAVS)
#if defined(CONFIG_SOC_SERIES_INTEL_ADSP_ACE) || defined(CONFIG_INTEL_ADSP_CAVS)
# define INTEL_ADSP 1
#endif

Expand Down Expand Up @@ -421,7 +421,7 @@ static int basefw_power_state_info_get(uint32_t *data_offset, char *data)

static int fw_config_set_force_l1_exit(const struct sof_tlv *tlv)
{
#if defined(CONFIG_SOC_SERIES_INTEL_ACE)
#if defined(CONFIG_SOC_SERIES_INTEL_ADSP_ACE)
const uint32_t force = tlv->value[0];

if (force) {
Expand Down
2 changes: 1 addition & 1 deletion src/ipc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ zephyr_library_sources(
dma-copy.c
)

if (CONFIG_SOC_SERIES_INTEL_CAVS_V25 OR CONFIG_SOC_SERIES_INTEL_ACE)
if (CONFIG_SOC_SERIES_INTEL_CAVS_V25 OR CONFIG_SOC_SERIES_INTEL_ADSP_ACE)
zephyr_library_sources(
ipc-zephyr.c
)
Expand Down
2 changes: 1 addition & 1 deletion src/ipc/ipc4/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <rtos/wait.h>

/* TODO: Remove platform-specific code, see https://github.com/thesofproject/sof/issues/7549 */
#if defined(CONFIG_SOC_SERIES_INTEL_ACE) || defined(CONFIG_INTEL_ADSP_CAVS)
#if defined(CONFIG_SOC_SERIES_INTEL_ADSP_ACE) || defined(CONFIG_INTEL_ADSP_CAVS)
#define RIMAGE_MANIFEST 1
#endif

Expand Down
5 changes: 2 additions & 3 deletions west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ manifest:

- name: zephyr
repo-path: zephyr
# commit in sof/main-rebase-20240305
revision: f26f0bc09893616ccda461c815f083c4ce8cfcec
remote: thesofproject
revision: 0d5a670f4f073ff2185221b76afc1998a08a4074
remote: zephyrproject

# Import some projects listed in zephyr/west.yml@revision
#
Expand Down
2 changes: 1 addition & 1 deletion zephyr/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ if (CONFIG_SOC_SERIES_INTEL_CAVS_V25)
endif()

# Intel ACE 1.5 and newer platforms
if (CONFIG_SOC_SERIES_INTEL_ACE)
if (CONFIG_SOC_SERIES_INTEL_ADSP_ACE)

# Platform sources
zephyr_library_sources(
Expand Down

0 comments on commit ba3900c

Please sign in to comment.