I'm using Linux 6.6.94
On my dmesg I have this message
[ 3286.891586] virtio_rpmsg_bus virtio0: msg received with no recipient
and I have this extract on my firmware code
----------------------------------------------------------------------------------------------------------------------------------
int32_t status = ipc_lib_init(callback);
#if MCU_SUPPORT_DEBUG
DebugP_log("[APP] IPC initialized. Sending welcome message to A53...\r\n");
#endif
const char* welcome_message = "Hello from MCU! IPC is ready.";
// Send welcome message
ipc_lib_send(A53_MAIN_CORE_ID,
A53_CHRDEV_ENDPOINT,
welcome_message,
strlen(welcome_message) + 1);
#if MCU_SUPPORT_DEBUG
DebugP_log("[APP] Welcome message sent. Entering main polling loop.\r\n");
#endif
return status;
-------------------------------------------------------------------------------------------------------------------------------------------
root@am62p-lohr:/storage# lsmod | grep rpmsg
rpmsg_ctrl 12288 0
rpmsg_char 20480 1 rpmsg_ctrl
root@am62p-lohr:~# dmesg | grep remoteproc
[ 4.382924] platform 79000000.r5f: configured R5F for remoteproc mode
[ 4.414100] remoteproc remoteproc0: 79000000.r5f is available
[ 4.423039] remoteproc remoteproc0: powering up 79000000.r5f
[ 4.425074] remoteproc remoteproc0: Booting fw image am62p-mcu-r5f0_0-fw, size 1142704
[ 4.452068] remoteproc remoteproc0: remote processor 79000000.r5f is now up
[ 4.455881] remoteproc remoteproc1: 78000000.r5f is available
[ 4.455996] remoteproc remoteproc1: attaching to 78000000.r5f
[ 4.521299] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
root@am62p-lohr:~# dmesg | grep virtio
[ 4.437422] rproc-virtio rproc-virtio.4.auto: assigned reserved memory node mcu-r5fss-dma-memory-region@9b800000
[ 4.451896] virtio_rpmsg_bus virtio0: rpmsg host is online
[ 4.452055] rproc-virtio rproc-virtio.4.auto: registered virtio0 (type 7)
[ 4.458332] rproc-virtio rproc-virtio.6.auto: assigned reserved memory node r5f-dma-memory@9c800000
[ 4.519478] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
[ 4.519592] virtio_rpmsg_bus virtio1: rpmsg host is online
[ 4.521272] rproc-virtio rproc-virtio.6.auto: registered virtio1 (type 7)
[ 4.534238] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
Where can I find this message on my kernel?
Att.