I run the rpmsg example from NXP SDK .
from the m4 core ,there is a "result = rpmsg_lite_send_nocopy(my_rpmsg, my_ept, remote_addr, tx_buf, len);" funtion to send msg to A53 core.
from A53 kernel file imx_rpmsg_tty.c, there is no read rpmsg funtion.
static const struct tty_operations imxrpmsgtty_ops = {
.install = rpmsgtty_install,
.open = rpmsgtty_open,
.close = rpmsgtty_close,
.write = rpmsgtty_write,
.write_room = rpmsgtty_write_room,
};
how to make A53 read rpmsg from m4 basing on imx_rpmsg_tty driver?