This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-DRA8X-TDA4X: IPC Comunication

Part Number: PROCESSOR-SDK-DRA8X-TDA4X

Hi, Expert,

I want send IPC Notify from MCU2_1(R5F) to MPU(A72), but when I send my message, I got the message in Liunx as follow:

[   30.827141] virtio_rpmsg_bus virtio7: msg received with no recipient
[   31.827141] virtio_rpmsg_bus virtio7: msg received with no recipient
[   32.827135] virtio_rpmsg_bus virtio7: msg received with no recipient
[   33.827132] virtio_rpmsg_bus virtio7: msg received with no recipient
[   34.826129] virtio_rpmsg_bus virtio7: msg received with no recipient
[   35.825124] virtio_rpmsg_bus virtio7: msg received with no recipient
[   36.825130] virtio_rpmsg_bus virtio7: msg received with no recipient
[   37.825125] virtio_rpmsg_bus virtio7: msg received with no recipient
[   38.825127] virtio_rpmsg_bus virtio7: msg received with no recipient
[   39.825122] virtio_rpmsg_bus virtio7: msg received with no recipient
[   40.825125] virtio_rpmsg_bus virtio7: msg received with no recipient
[   41.825136] virtio_rpmsg_bus virtio7: msg received with no recipient
[   42.825126] virtio_rpmsg_bus virtio7: msg received with no recipient
[   43.825127] virtio_rpmsg_bus virtio7: msg received with no recipient

I send my notify as following in MCU2_1 appMain task,

while(1)
    {
        appLogWaitMsecs(1000u);    

        status = appIpcSendNotify(APP_IPC_CPU_MPU1_0, (0xDEAD0000 | (0x00 & 0xFFFF)));
        if(status==0)
        {
            printf("APP IPC TIOVX: Sent msg to CPU\n");
        }
        else
        {
            printf("APP IPC TIOVX: ERROR: Send msg to CPU failed !!!\n");
        }
    }

How can I send message to A72 correctly?

Thanks.