samples: subsys: ipc: Remove references to v2m_musca

Remove stale references to v2m_musica in the ipc samples as the board
support for v2m_musca has been removed.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2021-03-04 18:43:35 -06:00 committed by Kumar Gala
commit 4f0eaad283
6 changed files with 1 additions and 53 deletions

View file

@ -18,27 +18,6 @@ steps are:
Building and Running
********************
On Musca A1
-----------
This project outputs 'IPM MHU sample on musca_a' to the console.
It can be built and executed on Musca A1 CPU 0 as follows:
.. zephyr-app-commands::
:zephyr-app: samples/subsys/ipc/ipm_mhu_dual_core
:board: v2m_musca
:goals: run
:compact:
This project outputs 'IPM MHU sample on v2m_musca_nonsecure' to the console.
It can be built and executed on Musca A1 CPU 1 as follows:
.. zephyr-app-commands::
:zephyr-app: samples/subsys/ipc/ipm_mhu_dual_core
:board: v2m_musca_nonsecure
:goals: run
:compact:
On Musca B1
-----------

View file

@ -5,4 +5,4 @@ sample:
tests:
sample.ipc.ipm.ipm_mhu_dual_core:
tags: ipm
platform_allow: v2m_musca v2m_musca_nonsecure v2m_musca_b1 v2m_musca_b1_nonsecure
platform_allow: v2m_musca_b1 v2m_musca_b1_nonsecure

View file

@ -14,8 +14,6 @@ elseif("${BOARD}" STREQUAL "lpcxpresso55s69_cpu0")
elseif("${BOARD}" STREQUAL "mps2_an521")
set(QEMU_EXTRA_FLAGS "-device;loader,file=${REMOTE_ZEPHYR_DIR}/zephyr.elf")
set(BOARD_REMOTE "mps2_an521_nonsecure")
elseif("${BOARD}" STREQUAL "v2m_musca")
set(BOARD_REMOTE "v2m_musca_nonsecure")
elseif("${BOARD}" STREQUAL "v2m_musca_b1")
set(BOARD_REMOTE "v2m_musca_b1_nonsecure")
else()

View file

@ -34,14 +34,6 @@ Building the application for mps2_an521
:board: mps2_an521
:goals: debug
Building the application for v2m_musca
**************************************
.. zephyr-app-commands::
:zephyr-app: samples/subsys/ipc/openamp
:board: v2m_musca
:goals: debug
Building the application for v2m_musca_b1
*****************************************

View file

@ -1,20 +0,0 @@
/*
* Copyright (c) 2019 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
chosen {
/*
* shared memory reserved for the inter-processor communication
*/
zephyr,ipc_shm = &sramx;
zephyr,ipc = &mhu0;
};
sramx: memory@20018000 {
compatible = "mmio-sram";
reg = <0x20018000 0x8000>;
};
};

View file

@ -8,7 +8,6 @@ cmake_minimum_required(VERSION 3.13.1)
if(("${BOARD}" STREQUAL "lpcxpresso54114_m0")
OR "${BOARD}" STREQUAL "lpcxpresso55s69_cpu1"
OR "${BOARD}" STREQUAL "mps2_an521_nonsecure"
OR "${BOARD}" STREQUAL "v2m_musca_nonsecure"
OR "${BOARD}" STREQUAL "v2m_musca_b1_nonsecure")
message(INFO " ${BOARD} compiles as remote in this sample")
else()