The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec: Linux 5.10-rc1 (2020-10-25 15:14:11 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git tags/rpmsg-v5.11 for you to fetch changes up to 950a7388f02bf775515d13dc508cb9d749bd6d91: rpmsg: Turn name service into a stand alone driver (2020-11-24 10:11:59 -0600) ---------------------------------------------------------------- rpmsg updates for v5.11 This extracts the "nameserver" previoiusly used only by the virtio rpmsg transport to work ontop of any rpmsg implementation and clarifies the endianness of the data types used in rpmsg. ---------------------------------------------------------------- Arnaud Pouliquen (4): rpmsg: virtio: Rename rpmsg_create_channel rpmsg: core: Add channel creation internal API rpmsg: virtio: Add rpmsg channel device ops rpmsg: Turn name service into a stand alone driver Mathieu Poirier (4): rpmsg: Introduce __rpmsg{16|32|64} types rpmsg: virtio: Move from virtio to rpmsg byte conversion rpmsg: Move structure rpmsg_ns_msg to header file rpmsg: Make rpmsg_{register|unregister}_device() public drivers/rpmsg/Kconfig | 9 ++ drivers/rpmsg/Makefile | 1 + drivers/rpmsg/rpmsg_core.c | 44 +++++++++ drivers/rpmsg/rpmsg_internal.h | 14 ++- drivers/rpmsg/rpmsg_ns.c | 126 ++++++++++++++++++++++++++ drivers/rpmsg/virtio_rpmsg_bus.c | 186 ++++++++++++++------------------------- include/linux/rpmsg.h | 63 ++++++++++++- include/linux/rpmsg/byteorder.h | 67 ++++++++++++++ include/linux/rpmsg/ns.h | 45 ++++++++++ include/uapi/linux/rpmsg_types.h | 11 +++ 10 files changed, 439 insertions(+), 127 deletions(-) create mode 100644 drivers/rpmsg/rpmsg_ns.c create mode 100644 include/linux/rpmsg/byteorder.h create mode 100644 include/linux/rpmsg/ns.h create mode 100644 include/uapi/linux/rpmsg_types.h