Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: e9eef7ce57c361eec7b4006c537d26ced0e02aec
https://github.com/OpenAMP/open-amp/commit/e9eef7ce57c361eec7b4006c537d26ce…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-05-31 (Fri, 31 May 2024)
Changed paths:
M VERSION
Log Message:
-----------
release: open-amp 2024.05.0
Set library version to 1.6.0
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Signed-off-by: Ed Mooring <ed.mooring(a)gmail.com>
Signed-off-by: Tanmay Shah <tanmay.shah(a)amd.com>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/open-amp/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/libmetal
Commit: 3aee6be866b190d2e2b4997fedbd976a0c37c0c6
https://github.com/OpenAMP/libmetal/commit/3aee6be866b190d2e2b4997fedbd976a…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-05-31 (Fri, 31 May 2024)
Changed paths:
M VERSION
Log Message:
-----------
release: libmetal 2024.05.0
Set library version to 1.6.0
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Signed-off-by: Ed Mooring <ed.mooring(a)gmail.com>
Signed-off-by: Tanmay Shah <tanmay.shah(a)amd.com>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/libmetal/settings/notifications
Branch: refs/heads/v2024.05-rc
Home: https://github.com/OpenAMP/open-amp
Commit: 0538be5c9433d761e1479d554936d820476934e5
https://github.com/OpenAMP/open-amp/commit/0538be5c9433d761e1479d554936d820…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-05-22 (Wed, 22 May 2024)
Changed paths:
M lib/include/openamp/virtio.h
Log Message:
-----------
lib: fix build error using legacy VIRTIO_DEVICE/DRIVER_ONLY
As part of the deprecation process for VIRTIO_DEVICE_ONLY and
VIRTIO_DRIVER_ONLY, we should still support builds without errors when
possible.
For legacy support, define VIRTIO_DRIVER_SUPPORT and VIRTIO_DEVICE_SUPPORT
default values based on VIRTIO_DEVICE_ONLY and VIRTIO_DRIVER_ONLY.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/open-amp/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: 0538be5c9433d761e1479d554936d820476934e5
https://github.com/OpenAMP/open-amp/commit/0538be5c9433d761e1479d554936d820…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-05-22 (Wed, 22 May 2024)
Changed paths:
M lib/include/openamp/virtio.h
Log Message:
-----------
lib: fix build error using legacy VIRTIO_DEVICE/DRIVER_ONLY
As part of the deprecation process for VIRTIO_DEVICE_ONLY and
VIRTIO_DRIVER_ONLY, we should still support builds without errors when
possible.
For legacy support, define VIRTIO_DRIVER_SUPPORT and VIRTIO_DEVICE_SUPPORT
default values based on VIRTIO_DEVICE_ONLY and VIRTIO_DRIVER_ONLY.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/open-amp/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: 31fb9138bc2ba6c408936f3270341dbfd99bdb14
https://github.com/OpenAMP/open-amp/commit/31fb9138bc2ba6c408936f3270341dbf…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-05-20 (Mon, 20 May 2024)
Changed paths:
M lib/include/openamp/rpmsg_virtio.h
Log Message:
-----------
rpmsg_virtio: Fix return value comment for rpmsg_virtio_get_role()
The `role` member of `struct virtio_device` stores either the value
VIRTIO_DEV_DRIVER or VIRTIO_DEV_DEVICE. This means the function
rpmsg_virtio_get_role() will also return one of these values.
The values RPMSG_HOST and RPMSG_REMOTE are defined to be the same,
but there is no need for this redefinition. Update the return
values in the comment docs.
While here, remove the same from rpmsg_virtio_set_wait_cb() which
does not return anything, this looks to be a copy/paste error.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: 5d8e63f2efe5337ca1f3a612dee9ac37e1b8d2a8
https://github.com/OpenAMP/open-amp/commit/5d8e63f2efe5337ca1f3a612dee9ac37…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-05-20 (Mon, 20 May 2024)
Changed paths:
M lib/rpmsg/rpmsg_virtio.c
Log Message:
-----------
rpmsg_virtio: Deprecate RPMSG_HOST and RPMSG_REMOTE definitions
For all cases when the role is checked in rpmsg_virtio, what is being
checked is the role of the underlying virtio layer. As such, we should
be matching against the role definitions for the virtio layer
(VIRTIO_DEV_DEVICE and VIRTIO_DEV_DRIVER). Fix this here.
While the underlying virtio layer may be asymmetric, the RPMSG layer
generally is symmetrical. There is no need to define a HOST or REMOTE
role specific to the RPMSG layer. And as there are now no more internal
users of these definitions, deprecate them here.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: fdef576779d676732e26b26687940965785bc1ee
https://github.com/OpenAMP/open-amp/commit/fdef576779d676732e26b26687940965…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-05-20 (Mon, 20 May 2024)
Changed paths:
M lib/rpmsg/rpmsg_virtio.c
Log Message:
-----------
rpmsg_virtio: Use VIRTIO_ROLE_IS_{DRIVER,DEVICE}() macros
Now that we match role to VIRTIO_DEV_{DRIVER,DEVICE} we can replace
all these double check if statements with the role checking macro
already used in all other files.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Compare: https://github.com/OpenAMP/open-amp/compare/e03d09a3fb08...fdef576779d6
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/open-amp/settings/notifications