Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: 6a5fdf1b1f7650b65115a64bbc23729e2e215b97
https://github.com/OpenAMP/open-amp/commit/6a5fdf1b1f7650b65115a64bbc23729e…
Author: Bill Mills <bill.mills(a)linaro.org>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M .github/actions/build_ci/entrypoint.sh
Log Message:
-----------
CI: reduce zephyr sdk install verbosity
Reduce the console output for the Zephyr sdk install.
This now matches the intent of libmetal but uses the documented wget
option.
Signed-off-by: Bill Mills <bill.mills(a)linaro.org>
Commit: 3541b5771bc7d0e0cd5259f6315639123be8fc05
https://github.com/OpenAMP/open-amp/commit/3541b5771bc7d0e0cd5259f631563912…
Author: Bill Mills <bill.mills(a)linaro.org>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M .github/actions/build_ci/entrypoint.sh
M .github/workflows/continuous-integration.yml
A .github/workflows/heathcheck.yml
Log Message:
-----------
CI: Do Zephyr build tests on known good and latest versions
Allow Zephyr testing to either use locked known good values
or the very latest versions.
This brings open-amp to parity with libmetal. Open-amp did not have the
SDK URL discovery code so that was added here as part of this.
The known good versions are best for PR checking as if the build fails
it is almost always the PR itself that broke it.
The latest version is good for periodically checking compatibility with
the very latest Zephyr changes.
For now we run both on pushes and PRs.
We also run main against the latest zephyr check weekly as a look ahead.
Signed-off-by: Bill Mills <bill.mills(a)linaro.org>
Compare: https://github.com/OpenAMP/open-amp/compare/c3132d0d631a...3541b5771bc7
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: 9aa3ee53c7f781effa8d4fb17e37dbffb3f17a31
https://github.com/OpenAMP/open-amp/commit/9aa3ee53c7f781effa8d4fb17e37dbff…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/CMakeLists.txt
A lib/include/internal/utilities.h
A lib/utils/CMakeLists.txt
A lib/utils/utilities.c
Log Message:
-----------
lib: utils: implement internal safe_strcpy function
The strlcpy() function has only recently become available in glibc.
While this function prevents destination buffer overflow, it seems
that it cannot guarantee read access only within the source buffer.
this is for instance the case if the source string is not terminated by
a'\0' character.
Implement a safe_strcpy to ensure that no access is done out of the
source and destination buffer ranges.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Commit: 27bec14883019d0b1a526f7cbd17314360141c0a
https://github.com/OpenAMP/open-amp/commit/27bec14883019d0b1a526f7cbd173143…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/rpmsg/rpmsg.c
Log Message:
-----------
lib: rpmsg: replace strncpy with internal safe_strcpy
The strncpy function does not ensure that the destination string is
null-terminated. To address this issue, replace strncpy with the
internal safe_strcpy() function, which guarantees null-termination of the
destination string but also access only in buffer memory ranges.
Note: (void)safe_strcpy(...) indicates that the return value is
intentionally ignored.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Commit: c3132d0d631a4465bfc062b03274a67acf0039ab
https://github.com/OpenAMP/open-amp/commit/c3132d0d631a4465bfc062b03274a67a…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/remoteproc/remoteproc.c
Log Message:
-----------
lib: remoteproc: replace strncpy with internal safe_strcpy
The strncpy function does not ensure that the destination string is
null-terminated. To address this issue, replace strncpy with the
internal safe_strcpy() function, which guarantees null-termination of the
destination string but also access only in buffer memory ranges.
Note: (void)safe_strcpy(...) indicates that the return value is
intentionally ignored.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Compare: https://github.com/OpenAMP/open-amp/compare/a69881f13134...c3132d0d631a
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: d680a19e2a21d15d72895218cf54b3afdab01eef
https://github.com/OpenAMP/libmetal/commit/d680a19e2a21d15d72895218cf54b3af…
Author: Yongrong Wang <wangyongrong(a)xiaomi.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/system/nuttx/device.c
M lib/system/nuttx/init.c
M lib/system/nuttx/io.c
M lib/system/nuttx/io.h
Log Message:
-----------
lib/system/nuttx: fix undeclared parameter compile error
fix compile error:
/nuttx/openamp/libmetal/lib/system/nuttx/device.c:16:22: error:
'io' undeclared (first use in this function)
16 | metal_unused(io);
/nuttx/openamp/libmetal/lib/system/nuttx/device.c:14:53: error:
unused parameter 'dev' [-Werror=unused-parameter]
14 | int metal_generic_dev_sys_open(struct metal_device *dev)
...
Signed-off-by: Yongrong Wang <wangyongrong(a)xiaomi.com>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/libmetal/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: 2e6cef5739bae2ce88562c5f4cd4eda73e8b1e26
https://github.com/OpenAMP/open-amp/commit/2e6cef5739bae2ce88562c5f4cd4eda7…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M .github/workflows/compliance.yml
Log Message:
-----------
CI: Ignore .github path for compliance check
The CI does not need to strictly adhere to the coding rules.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Commit: aa4040f3ba8176d3c5bbe1ea1ad20e2c801c26e1
https://github.com/OpenAMP/open-amp/commit/aa4040f3ba8176d3c5bbe1ea1ad20e2c…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M .github/workflows/compliance.yml
M .github/workflows/continuous-integration.yml
Log Message:
-----------
CI: Update checkout action to V4
Use last version of checkout action.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Commit: 173d5cbb28bcb75f39f399f0cb2d6354115b14e2
https://github.com/OpenAMP/open-amp/commit/173d5cbb28bcb75f39f399f0cb2d6354…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M .github/actions/build_ci/entrypoint.sh
M .github/workflows/continuous-integration.yml
Log Message:
-----------
CI: Update open-amp path
To have a coherent directory hierarchy, move the open-amp git from root
to the "./open-amp" directory.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Commit: a69881f131342448cb423f590cb68db15a05699a
https://github.com/OpenAMP/open-amp/commit/a69881f131342448cb423f590cb68db1…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M .github/actions/build_ci/entrypoint.sh
M .github/workflows/continuous-integration.yml
Log Message:
-----------
CI: Update CI to build system reference applications
Build system reference applications instead of open-amp deprecated
applications.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)foss.st.com>
Compare: https://github.com/OpenAMP/open-amp/compare/79d20e69b3cf...a69881f13134
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: efb8ade7526d758a62a68ff623e22b31f1c5661c
https://github.com/OpenAMP/libmetal/commit/efb8ade7526d758a62a68ff623e22b31…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/system/linux/sys.h
M lib/system/linux/utilities.c
Log Message:
-----------
lib: system: linux: Remove unused internal functions
These functions are labeled METAL_INTERNAL so should have no external
users, but they are not used internally either. Remove these functions.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: af3a02833820091afdfa3aa133667ce072e6cf1a
https://github.com/OpenAMP/libmetal/commit/af3a02833820091afdfa3aa133667ce0…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/system/linux/init.c
M lib/system/linux/utilities.c
Log Message:
-----------
lib: system: linux: Remove use of ENOSYS error code
This return code is for system calls only, and checkpatch warns about the
same. Remove the use of this return code.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: 4202dd3563bb215bc50f3ceffe41d7f75b3bccf5
https://github.com/OpenAMP/libmetal/commit/4202dd3563bb215bc50f3ceffe41d7f7…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/system/linux/shmem.c
M lib/system/linux/sys.h
M lib/system/linux/utilities.c
Log Message:
-----------
lib: system: linux: Move metal_virt2phys() into shmem
This function is only used by shmem. Move it to where it is used to
reduce internal-only "API" functions.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: 13428794f11661ed7f0c182baecd591b1883f2bb
https://github.com/OpenAMP/libmetal/commit/13428794f11661ed7f0c182baecd591b…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/system/linux/shmem.c
M lib/system/linux/sys.h
M lib/system/linux/utilities.c
Log Message:
-----------
lib: system: linux: Inline metal_mlock() function
This is a one-line one user internal function, just use mlock directly.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: 6b0b1cbb1db5e7da1f8249e177f976b9cfecea09
https://github.com/OpenAMP/libmetal/commit/6b0b1cbb1db5e7da1f8249e177f976b9…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/system/linux/init.c
M lib/system/linux/sys.h
Log Message:
-----------
lib: system: linux: Remove unused sysfs_path from metal_state
This is not used, remove to prevent failures related to getting a
path that is not needed.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: 0f0393503e10c3c6c2d1a27b7c5091122b4fef05
https://github.com/OpenAMP/libmetal/commit/0f0393503e10c3c6c2d1a27b7c509112…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-10-18 (Fri, 18 Oct 2024)
Changed paths:
M lib/system/linux/device.c
Log Message:
-----------
lib: system: linux: Remove unneeded forward declaration
The declaration metal_linux_bus_close() is not needed, it is already
defined at this point.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Compare: https://github.com/OpenAMP/libmetal/compare/7969bed068ee...0f0393503e10
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/libmetal/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: 79d20e69b3cf4366438cac1d35d09cdfdba0d489
https://github.com/OpenAMP/open-amp/commit/79d20e69b3cf4366438cac1d35d09cdf…
Author: Yongrong Wang <wangyongrong(a)xiaomi.com>
Date: 2024-10-17 (Thu, 17 Oct 2024)
Changed paths:
M README.md
M cmake/options.cmake
M lib/rpmsg/rpmsg_virtio.c
Log Message:
-----------
rpmsg: Allow to send virqueue_kick only when RX queue is empty
Add VQ_RX_EMPTY_NOTIFY config to define the behavior. If
VQ_RX_EMPTY_NOTIFY is disabled, notify the other side each
time a buffer is released. If VQ_RX_EMPTY_NOTIFY is enabled,
only send one notification when the RX queue is empty to
improve performance.
Signed-off-by: Yongrong Wang <wangyongrong(a)xiaomi.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: 14a37c7bfe462b56fbec21757dc6f9ecd5cb3181
https://github.com/OpenAMP/open-amp/commit/14a37c7bfe462b56fbec21757dc6f9ec…
Author: Rajiv Mohan <rajiv.mohan(a)amd.com>
Date: 2024-10-14 (Mon, 14 Oct 2024)
Changed paths:
R apps/machine/zynq7/CMakeLists.txt
R apps/machine/zynq7/platform_info.c
R apps/machine/zynq7/platform_info.h
R apps/machine/zynq7/platform_info_remoteproc_master.c
R apps/machine/zynq7/rsc_table.c
R apps/machine/zynq7/rsc_table.h
R apps/machine/zynq7/zynq_a9_rproc.c
R apps/system/generic/machine/zynq7/CMakeLists.txt
R apps/system/generic/machine/zynq7/Xilinx.spec
R apps/system/generic/machine/zynq7/helper.c
R apps/system/generic/machine/zynq7/linker_master.ld
R apps/system/generic/machine/zynq7/linker_remote.ld
R cmake/platforms/zynq7_generic.cmake
R cmake/platforms/zynq7_linux.cmake
M doc/apps/echo_test/README.md
M doc/apps/matrix_multiply/README.md
M doc/apps/rpc_demo/README.md
Log Message:
-----------
zynq: Remove support for Zynq-7000 SoC
Remove openamp support for Zynq-7000 SoC, following changes are done
1) remove folder apps/machine/zynq7
2) remove folder apps/system/generic/machine/zynq7
3) remove file cmake/platforms/zynq7_generic.cmake
4) remove file cmake/platforms/zynq7_linux.cmake
5) Modify README.md files
Reasons to remove:
1) Support for Zynq-7000 has ended
2) Removing redundant or unmaintained code
3) Reduce technical debt carried by OpenAMP team
4) very few customer using openamp on Zynq-7000 SoC
For using Zynq-7000 SoC support
last working and tested version is (v2023.10)
https://github.com/OpenAMP/open-amp/tree/v2023.10
Signed-off-by: Rajiv Mohan <rajiv.mohan(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: b691eee88fe0e7fc9c6d5996dd5559960c04459a
https://github.com/OpenAMP/libmetal/commit/b691eee88fe0e7fc9c6d5996dd555996…
Author: Rajiv Mohan <rajiv.mohan(a)amd.com>
Date: 2024-10-14 (Mon, 14 Oct 2024)
Changed paths:
M README.md
R cmake/platforms/zynq7-freertos.cmake
R cmake/platforms/zynq7-generic-iar.cmake
R cmake/platforms/zynq7-generic.cmake
R cmake/platforms/zynq7-linux.cmake
Log Message:
-----------
zynq: Remove support for Zynq-7000 SoC
Remove support for Zynq-7000 SoC, changes are
1. Remove Zynq7 tool chain support
2. Makefile changes to remove zynq7
Reasons to remove:
1. Removing redundant or unmaintained code
2. Reduce technical debt carried by OpenAMP team
3. very few customer using openamp on Zynq-7000 SoC
For using Zynq-7000 SoC support last working and tested
version is (v2023.04)
https://github.com/OpenAMP/libmetal/tree/v2023.04
Signed-off-by: Rajiv Mohan <rajiv.mohan(a)amd.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/main
Home: https://github.com/OpenAMP/open-amp
Commit: c31e4fd626a7e6e0a6e0864c4866c621e559fc95
https://github.com/OpenAMP/open-amp/commit/c31e4fd626a7e6e0a6e0864c4866c621…
Author: Yongrong Wang <wangyongrong(a)xiaomi.com>
Date: 2024-10-09 (Wed, 09 Oct 2024)
Changed paths:
M lib/remoteproc/remoteproc_virtio.c
Log Message:
-----------
remoteproc_virtio.c: fix rproc_virtio_negotiate_features return value
Make rproc_virtio_negotiate_features() return the mask of features
successfully negotiated.
Signed-off-by: Yongrong Wang <wangyongrong(a)xiaomi.com>
Commit: 4df7975ab11bcb8f2eb8f6ac2bc8f2c14b6f4d60
https://github.com/OpenAMP/open-amp/commit/4df7975ab11bcb8f2eb8f6ac2bc8f2c1…
Author: Yongrong Wang <wangyongrong(a)xiaomi.com>
Date: 2024-10-09 (Wed, 09 Oct 2024)
Changed paths:
M lib/include/openamp/virtio.h
Log Message:
-----------
openamp/virtio.h: update vdev->features
set vdev->features in virtio_negotiate_features
Signed-off-by: Yongrong Wang <wangyongrong(a)xiaomi.com>
Commit: 81ac4d3934929d79fbddbac114efd73ebdebfe6f
https://github.com/OpenAMP/open-amp/commit/81ac4d3934929d79fbddbac114efd73e…
Author: Yongrong Wang <wangyongrong(a)xiaomi.com>
Date: 2024-10-09 (Wed, 09 Oct 2024)
Changed paths:
M lib/include/openamp/virtio.h
Log Message:
-----------
openamp/virtio.h: make final_features optional
negotiate also can be call when final_features is NULL
Signed-off-by: Yongrong Wang <wangyongrong(a)xiaomi.com>
Compare: https://github.com/OpenAMP/open-amp/compare/e7e7593ca392...81ac4d393492
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/openamp-system-reference
Commit: cde20918d94c1fea560da94e5dfc51afa08dbe33
https://github.com/OpenAMP/openamp-system-reference/commit/cde20918d94c1fea…
Author: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Date: 2024-10-02 (Wed, 02 Oct 2024)
Changed paths:
A examples/zephyr/rpmsg_multi_services/sample.yaml
R examples/zephyr/rpmsg_multi_services/src/sample.yaml
Log Message:
-----------
examples: zephyr: move sample.yaml out of src/ folder
Move sample.yaml file outside of source folder.
While here, fix some typos.
Signed-off-by: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Commit: 0835217f17dc69b3ed26c6823587ca5a7c6be220
https://github.com/OpenAMP/openamp-system-reference/commit/0835217f17dc69b3…
Author: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Date: 2024-10-02 (Wed, 02 Oct 2024)
Changed paths:
R examples/zephyr/rpmsg_multi_services/src/CMakeLists.txt
R examples/zephyr/rpmsg_multi_services/src/README.rst
R examples/zephyr/rpmsg_multi_services/src/prj.conf
Log Message:
-----------
examples: zephyr: remove unneeded files from src/ folder
In src/ folder should only be source files, therefore remove
the others.
Actually all these files (README, CMakeLists and prj.conf)
are already in sample's folder, where they belong.
Signed-off-by: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Commit: f9f2706d8164047a0bcd2e2db8d3631fc1b0ed23
https://github.com/OpenAMP/openamp-system-reference/commit/f9f2706d8164047a…
Author: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Date: 2024-10-02 (Wed, 02 Oct 2024)
Changed paths:
M examples/zephyr/rpmsg_multi_services/prj.conf
Log Message:
-----------
examples: zephyr: remove arch specific config from project
The CONFIG_PLATFORM_SPECIFIC_INIT is bool, so the
default value is implicitly n.
Therefore, is redundant to set it again.
Also, this is arch specific, and it should be no
restriction to run the sample on other,
non-arm, platforms.
Signed-off-by: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Commit: 340adb9f2dc42451084d895e402704181371a976
https://github.com/OpenAMP/openamp-system-reference/commit/340adb9f2dc42451…
Author: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Date: 2024-10-02 (Wed, 02 Oct 2024)
Changed paths:
M examples/zephyr/rpmsg_multi_services/src/main_remote.c
Log Message:
-----------
examples: zephyr: increase stack size
While testing rpmsg_multi_services example on HiFi4 DSP from
i.MX8M Plus, realized the stack is not enough.
Increase the size based on Thread Analyzer measurements:
...
<dbg> openamp_rsc_table: mailbox_notify: mailbox_notify: msg received
OpenAMP Linux sample client responder ended
Thread analyze:
0x9240d5b0 : STACK: unused 688 usage 1360 / 2048 (66 %); CPU: 0 %
: Total CPU cycles used: 25065
0x9240d638 : STACK: unused 704 usage 1344 / 2048 (65 %); CPU: 0 %
: Total CPU cycles used: 19662
0x9240d748 : STACK: unused 328 usage 696 / 1024 (67 %); CPU: 0 %
: Total CPU cycles used: 1234863
0x9240d7d0 : STACK: unused 272 usage 752 / 1024 (73 %); CPU: 0 %
: Total CPU cycles used: 53216
0x9240d858 : STACK: unused 168 usage 856 / 1024 (83 %); CPU: 98 %
: Total CPU cycles used: 136995186
0x9240d920 : STACK: unused 936 usage 88 / 1024 (8 %); CPU: 0 %
: Total CPU cycles used: 0
ISR0 : STACK: unused 1584 usage 464 / 2048 (22 %)
Signed-off-by: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Commit: 5386c24ae376f35a760fd07550d959bb5ca51c5c
https://github.com/OpenAMP/openamp-system-reference/commit/5386c24ae376f35a…
Author: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Date: 2024-10-02 (Wed, 02 Oct 2024)
Changed paths:
A examples/zephyr/rpmsg_multi_services/boards/nxp_adsp_imx8m.conf
A examples/zephyr/rpmsg_multi_services/boards/nxp_adsp_imx8m.overlay
M examples/zephyr/rpmsg_multi_services/sample.yaml
Log Message:
-----------
examples: add support for nxp_adsp_imx8m in rpmsg_multi_services
Add the dts and config overlay for nxp_adsp_imx8m board
in order to have the rpmsg_multi_services sample working on
HiFi4 DSP from i.MX 8M Plus.
Signed-off-by: Iuliana Prodan <iuliana.prodan(a)nxp.com>
Compare: https://github.com/OpenAMP/openamp-system-reference/compare/d57bae7346f2...…
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/openamp-system-reference/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/libmetal
Commit: a4bce3507502a7eb9e29bafe0eb174ed5c4316e9
https://github.com/OpenAMP/libmetal/commit/a4bce3507502a7eb9e29bafe0eb174ed…
Author: Bill Mills <bill.mills(a)linaro.org>
Date: 2024-09-20 (Fri, 20 Sep 2024)
Changed paths:
M .github/actions/build_ci/entrypoint.sh
M .github/workflows/continuous-integration.yml
A .github/workflows/heathcheck.yml
Log Message:
-----------
CI: Do Zephyr build tests on known good and latest versions
Allow Zephyr testing to either use locked known good values
or the very latest versions.
The known good versions are best for PR checking as if the build fails
it is almost always the PR itself that broke it.
The latest version is good for periodically checking compatibility with
the very latest Zephyr changes.
For now we run both on pushes and PRs.
We also run main against the latest zephyr check weekly as a look ahead.
Signed-off-by: Bill Mills <bill.mills(a)linaro.org>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/libmetal/settings/notifications
Hello,
The v2024.10 release of the OpenAMP project repositories is scheduled for the end of next month.
Please note that the feature freeze will take effect on October 18th. After this date, only bug fixes will be accepted until the release.
To ensure sufficient time for the review process, please submit your pull requests at least two weeks before the feature freeze date.
Thanks and regards,
Arnaud
Branch: refs/heads/pull/303/head
Home: https://github.com/OpenAMP/libmetal
Commit: 9d8b90393d3e7f6400a336c278f3c890773f4172
https://github.com/OpenAMP/libmetal/commit/9d8b90393d3e7f6400a336c278f3c890…
Author: Rajiv Mohan <rajiv.mohan(a)amd.com>
Date: 2024-09-06 (Fri, 06 Sep 2024)
Changed paths:
M README.md
R cmake/platforms/zynq7-freertos.cmake
R cmake/platforms/zynq7-generic-iar.cmake
R cmake/platforms/zynq7-generic.cmake
R cmake/platforms/zynq7-linux.cmake
Log Message:
-----------
zynq: Remove support for Zynq-7000 SoC
Remove support for Zynq-7000 SoC, changes are
1. Remove Zynq7 tool chain support
2. Makefile changes to remove zynq7
Reasons to remove:
1. Removing redundant or unmaintained code
2. Reduce technical debt carried by OpenAMP team
3. very few customer using openamp on Zynq-7000 SoC
For using Zynq-7000 SoC support last working and tested
version is (v2023.04)
https://github.com/OpenAMP/libmetal/tree/v2023.04
Signed-off-by: Rajiv Mohan <rajiv.mohan(a)amd.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/303
Home: https://github.com/OpenAMP/libmetal
Commit: 9d8b90393d3e7f6400a336c278f3c890773f4172
https://github.com/OpenAMP/libmetal/commit/9d8b90393d3e7f6400a336c278f3c890…
Author: Rajiv Mohan <rajiv.mohan(a)amd.com>
Date: 2024-09-06 (Fri, 06 Sep 2024)
Changed paths:
M README.md
R cmake/platforms/zynq7-freertos.cmake
R cmake/platforms/zynq7-generic-iar.cmake
R cmake/platforms/zynq7-generic.cmake
R cmake/platforms/zynq7-linux.cmake
Log Message:
-----------
zynq: Remove support for Zynq-7000 SoC
Remove support for Zynq-7000 SoC, changes are
1. Remove Zynq7 tool chain support
2. Makefile changes to remove zynq7
Reasons to remove:
1. Removing redundant or unmaintained code
2. Reduce technical debt carried by OpenAMP team
3. very few customer using openamp on Zynq-7000 SoC
For using Zynq-7000 SoC support last working and tested
version is (v2023.04)
https://github.com/OpenAMP/libmetal/tree/v2023.04
Signed-off-by: Rajiv Mohan <rajiv.mohan(a)amd.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/main
Home: https://github.com/OpenAMP/openamp-system-reference
Commit: 2f2c7a6199c4a658cbfd2f74fc8e96aabc416893
https://github.com/OpenAMP/openamp-system-reference/commit/2f2c7a6199c4a658…
Author: Tanmay Shah <tanmay.shah(a)amd.com>
Date: 2024-08-28 (Wed, 28 Aug 2024)
Changed paths:
A examples/legacy_apps/CMakeLists.txt
A examples/legacy_apps/examples/CMakeLists.txt
A examples/legacy_apps/examples/echo/CMakeLists.txt
A examples/legacy_apps/examples/echo/rpmsg-echo.c
A examples/legacy_apps/examples/echo/rpmsg-echo.h
A examples/legacy_apps/examples/echo/rpmsg-ping.c
A examples/legacy_apps/examples/linux_rpc_demo/CMakeLists.txt
A examples/legacy_apps/examples/linux_rpc_demo/README.md
A examples/legacy_apps/examples/linux_rpc_demo/linux-rpmsg-rpc-demo.h
A examples/legacy_apps/examples/linux_rpc_demo/linux_rpc_demo.c
A examples/legacy_apps/examples/linux_rpc_demo/linux_rpc_demod.c
A examples/legacy_apps/examples/load_fw/CMakeLists.txt
A examples/legacy_apps/examples/load_fw/common.h
A examples/legacy_apps/examples/load_fw/load_fw.c
A examples/legacy_apps/examples/load_fw/lscript.ld
A examples/legacy_apps/examples/load_fw/mem_image_store.c
A examples/legacy_apps/examples/load_fw/platform_info.c
A examples/legacy_apps/examples/load_fw/platform_info.h
A examples/legacy_apps/examples/load_fw/zynqmp_apu_lcm_rproc_example.c
A examples/legacy_apps/examples/load_fw/zynqmp_r5_lcm_rproc_example.c
A examples/legacy_apps/examples/load_fw/zynqmp_rpu_lcm_rproc_example.c
A examples/legacy_apps/examples/matrix_multiply/CMakeLists.txt
A examples/legacy_apps/examples/matrix_multiply/matrix_multiply.c
A examples/legacy_apps/examples/matrix_multiply/matrix_multiply.h
A examples/legacy_apps/examples/matrix_multiply/matrix_multiplyd.c
A examples/legacy_apps/examples/nocopy_echo/CMakeLists.txt
A examples/legacy_apps/examples/nocopy_echo/rpmsg-echo.h
A examples/legacy_apps/examples/nocopy_echo/rpmsg-nocopy-echo.c
A examples/legacy_apps/examples/nocopy_echo/rpmsg-nocopy-ping.c
A examples/legacy_apps/examples/rpc_demo/CMakeLists.txt
A examples/legacy_apps/examples/rpc_demo/rpc_demo.c
A examples/legacy_apps/examples/rpc_demo/rpc_demod.c
A examples/legacy_apps/examples/rpc_demo/rpmsg-rpc-demo.h
A examples/legacy_apps/examples/rpmsg_sample_echo/CMakeLists.txt
A examples/legacy_apps/examples/rpmsg_sample_echo/rpmsg-sample-echo.c
A examples/legacy_apps/examples/rpmsg_sample_echo/rpmsg-sample-ping.c
A examples/legacy_apps/include/platform_info_common.h
A examples/legacy_apps/machine/CMakeLists.txt
A examples/legacy_apps/machine/microblaze_generic/CMakeLists.txt
A examples/legacy_apps/machine/microblaze_generic/README.md
A examples/legacy_apps/machine/microblaze_generic/platform_info.c
A examples/legacy_apps/machine/microblaze_generic/platform_info.h
A examples/legacy_apps/machine/microblaze_generic/rsc_table.c
A examples/legacy_apps/machine/microblaze_generic/rsc_table.h
A examples/legacy_apps/machine/microblaze_generic/zynqmp_mb_a53_rproc.c
A examples/legacy_apps/machine/zynq7/CMakeLists.txt
A examples/legacy_apps/machine/zynq7/platform_info.c
A examples/legacy_apps/machine/zynq7/platform_info.h
A examples/legacy_apps/machine/zynq7/platform_info_remoteproc_master.c
A examples/legacy_apps/machine/zynq7/rsc_table.c
A examples/legacy_apps/machine/zynq7/rsc_table.h
A examples/legacy_apps/machine/zynq7/zynq_a9_rproc.c
A examples/legacy_apps/machine/zynqmp/CMakeLists.txt
A examples/legacy_apps/machine/zynqmp/openamp-linux-userspace.dtsi
A examples/legacy_apps/machine/zynqmp/platform_info.c
A examples/legacy_apps/machine/zynqmp/platform_info.h
A examples/legacy_apps/machine/zynqmp/zynqmp_linux_r5_proc.c
A examples/legacy_apps/machine/zynqmp_r5/CMakeLists.txt
A examples/legacy_apps/machine/zynqmp_r5/platform_info.c
A examples/legacy_apps/machine/zynqmp_r5/platform_info.h
A examples/legacy_apps/machine/zynqmp_r5/rsc_table.c
A examples/legacy_apps/machine/zynqmp_r5/rsc_table.h
A examples/legacy_apps/machine/zynqmp_r5/zynqmp_r5_a53_rproc.c
A examples/legacy_apps/system/CMakeLists.txt
A examples/legacy_apps/system/generic/CMakeLists.txt
A examples/legacy_apps/system/generic/machine/CMakeLists.txt
A examples/legacy_apps/system/generic/machine/microblaze_generic/CMakeLists.txt
A examples/legacy_apps/system/generic/machine/microblaze_generic/helper.c
A examples/legacy_apps/system/generic/machine/microblaze_generic/linker_remote.ld
A examples/legacy_apps/system/generic/machine/zynq7/CMakeLists.txt
A examples/legacy_apps/system/generic/machine/zynq7/Xilinx.spec
A examples/legacy_apps/system/generic/machine/zynq7/helper.c
A examples/legacy_apps/system/generic/machine/zynq7/linker_master.ld
A examples/legacy_apps/system/generic/machine/zynq7/linker_remote.ld
A examples/legacy_apps/system/generic/machine/zynqmp_r5/CMakeLists.txt
A examples/legacy_apps/system/generic/machine/zynqmp_r5/helper.c
A examples/legacy_apps/system/generic/machine/zynqmp_r5/linker_large_text.ld
A examples/legacy_apps/system/generic/machine/zynqmp_r5/linker_remote.ld
A examples/legacy_apps/system/linux/CMakeLists.txt
A examples/legacy_apps/system/linux/machine/CMakeLists.txt
A examples/legacy_apps/system/linux/machine/generic/CMakeLists.txt
A examples/legacy_apps/system/linux/machine/generic/helper.c
A examples/legacy_apps/system/linux/machine/generic/platform_info.c
A examples/legacy_apps/system/linux/machine/generic/platform_info.h
A examples/legacy_apps/system/linux/machine/generic/rsc_table.c
A examples/legacy_apps/system/linux/machine/generic/rsc_table.h
A examples/legacy_apps/system/linux/machine/zynqmp/CMakeLists.txt
A examples/legacy_apps/system/linux/machine/zynqmp/helper.c
A examples/legacy_apps/tests/CMakeLists.txt
A examples/legacy_apps/tests/msg/CMakeLists.txt
A examples/legacy_apps/tests/msg/rpmsg-flood-ping.c
A examples/legacy_apps/tests/msg/rpmsg-nocopy-echo.c
A examples/legacy_apps/tests/msg/rpmsg-nocopy-ping.c
A examples/legacy_apps/tests/msg/rpmsg-ping.c
A examples/legacy_apps/tests/msg/rpmsg-ping.h
A examples/legacy_apps/tests/msg/rpmsg-update.c
Log Message:
-----------
examples: Move apps from openamp repo
Apps directory was tightly coupled with open_amp
library source code. Instead host demo applications
in openamp-system-reference repository. This patch
copies over source code of apps as it is so build
with only this commit is expected to fail.
Next commit will introduce changes required to build
demos and link open_amp library.
Commit: 133ab49008aabce61118d023829e0cb61f831bfb
https://github.com/OpenAMP/openamp-system-reference/commit/133ab49008aabce6…
Author: Tanmay Shah <tanmay.shah(a)amd.com>
Date: 2024-08-28 (Wed, 28 Aug 2024)
Changed paths:
M examples/legacy_apps/CMakeLists.txt
A examples/legacy_apps/cmake/collect.cmake
A examples/legacy_apps/cmake/depends.cmake
A examples/legacy_apps/cmake/modules/FindLibmetal.cmake
A examples/legacy_apps/cmake/modules/Findopen_amp.cmake
A examples/legacy_apps/cmake/options.cmake
A examples/legacy_apps/cmake/platforms/cross_generic_gcc.cmake
A examples/legacy_apps/cmake/platforms/cross_linux_gcc.cmake
A examples/legacy_apps/cmake/platforms/zynq7_generic.cmake
A examples/legacy_apps/cmake/platforms/zynq7_linux.cmake
A examples/legacy_apps/cmake/platforms/zynqmp_a53_generic.cmake
A examples/legacy_apps/cmake/platforms/zynqmp_linux.cmake
A examples/legacy_apps/cmake/platforms/zynqmp_r5_generic.cmake
A examples/legacy_apps/cmake/syscheck.cmake
M examples/legacy_apps/examples/CMakeLists.txt
M examples/legacy_apps/examples/echo/CMakeLists.txt
M examples/legacy_apps/examples/echo/rpmsg-echo.c
M examples/legacy_apps/examples/linux_rpc_demo/CMakeLists.txt
M examples/legacy_apps/examples/load_fw/CMakeLists.txt
M examples/legacy_apps/examples/matrix_multiply/CMakeLists.txt
M examples/legacy_apps/examples/nocopy_echo/CMakeLists.txt
M examples/legacy_apps/examples/rpc_demo/CMakeLists.txt
M examples/legacy_apps/examples/rpmsg_sample_echo/CMakeLists.txt
M examples/legacy_apps/tests/msg/CMakeLists.txt
Log Message:
-----------
examples: legacy_apps: build success demos
- Remove version control information
- Add cmake infra to find open_amp library
- fix open_amp and libmetal library linking
Signed-off-by: Tanmay Shah <tanmay.shah(a)amd.com>
Commit: 75848186eb536084548ac7706eff045b2ca52ae6
https://github.com/OpenAMP/openamp-system-reference/commit/75848186eb536084…
Author: Tanmay Shah <tanmay.shah(a)amd.com>
Date: 2024-08-28 (Wed, 28 Aug 2024)
Changed paths:
A examples/legacy_apps/west.yml
Log Message:
-----------
legacy_apps: Add west support
Use west to fetch open-amp and libmetal library source code.
Signed-off-by: Tanmay Shah <tanmay.shah(a)amd.com>
Commit: d57bae7346f2d6f0513d9eb8b22fda698d4af8e0
https://github.com/OpenAMP/openamp-system-reference/commit/d57bae7346f2d6f0…
Author: Tanmay Shah <tanmay.shah(a)amd.com>
Date: 2024-08-28 (Wed, 28 Aug 2024)
Changed paths:
A examples/legacy_apps/README.md
Log Message:
-----------
legacy_apps: Add README
Add instructions to fetch libraries and build legacy apps and tests.
Signed-off-by: Tanmay Shah <tanmay.shah(a)amd.com>
Compare: https://github.com/OpenAMP/openamp-system-reference/compare/5d258336d40c...…
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/openamp-system-reference/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/libmetal
Commit: 64c1a16131d8061fc82b22316c29dfa4791069f0
https://github.com/OpenAMP/libmetal/commit/64c1a16131d8061fc82b22316c29dfa4…
Author: Bill Mills <bill.mills(a)linaro.org>
Date: 2024-08-26 (Mon, 26 Aug 2024)
Changed paths:
M .github/actions/build_ci/entrypoint.sh
Log Message:
-----------
CI: fix zephyr build for v3.7 and later
The current CI uses the latest from main for zephyr build tests.
This has been broken sometime after v3.6 and before v3.7. Since that
time, use of GNU style constructors requires a kconfig value to be
defined. This same kconfig value will cause an error in v3.6 or earlier.
The test framework intentionally uses GNU constructors for the base level
of its framework and version.c uses this to register its test.
The test/system/zephyr/ level overrides the default META_ADD_TEST() macro
and creates unique functions that main.c then calls explicitly in function
metal_test_add_functions().
Thus, right now the only constructor used if for version.c but it still
intentionally used.
Since we use the latest for CI, define the value so CI will complete.
Signed-off-by: Bill Mills <bill.mills(a)linaro.org>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/libmetal/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/libmetal
Commit: eb828549502a54aa481faaff9fa99179aff3ca5a
https://github.com/OpenAMP/libmetal/commit/eb828549502a54aa481faaff9fa99179…
Author: Ben Levinsky <ben.levinsky(a)amd.com>
Date: 2024-08-15 (Thu, 15 Aug 2024)
Changed paths:
M cmake/options.cmake
M lib/system/freertos/CMakeLists.txt
M lib/system/generic/CMakeLists.txt
Log Message:
-----------
lib: xlnx: Update logic to pull in vendor-specific logic based on PROJECT_VENDOR
Simplify logic that coordinates when to pull in Xilinx-AMD BSP and setup code
basedd on new CMake variable 'PROJECT_VENDOR'.
Add PROJECT_VENDOR check in cmake/options.cmake for case where PROJECT_VENDOR
is not defined.
Signed-off-by: Ben Levinsky <ben.levinsky(a)amd.com>
Commit: 3e8be081fc38fb6ca7c073aa730320062e5fa6dd
https://github.com/OpenAMP/libmetal/commit/3e8be081fc38fb6ca7c073aa73032006…
Author: Ben Levinsky <ben.levinsky(a)amd.com>
Date: 2024-08-15 (Thu, 15 Aug 2024)
Changed paths:
M cmake/platforms/microblaze-generic.cmake
M cmake/platforms/zynq7-freertos.cmake
M cmake/platforms/zynq7-generic-iar.cmake
M cmake/platforms/zynq7-generic.cmake
M cmake/platforms/zynqmp-a53-freertos.cmake
M cmake/platforms/zynqmp-a53-generic.cmake
M cmake/platforms/zynqmp-r5-freertos.cmake
M cmake/platforms/zynqmp-r5-generic.cmake
Log Message:
-----------
cmake: platforms: xlnx: Add PROJECT_VENDOR
Add PROJECT_VENDOR to Xilinx-AMD .cmake platform files.
Signed-off-by: Ben Levinsky <ben.levinsky(a)amd.com>
Commit: 5c36d6b9c13182ea569d7b0464aa8f3086041dc1
https://github.com/OpenAMP/libmetal/commit/5c36d6b9c13182ea569d7b0464aa8f30…
Author: Ben Levinsky <ben.levinsky(a)amd.com>
Date: 2024-08-15 (Thu, 15 Aug 2024)
Changed paths:
A examples/system/freertos/xlnx_r5/CMakeLists.txt
A examples/system/freertos/xlnx_r5/amp_demo/CMakeLists.txt
A examples/system/freertos/xlnx_r5/amp_demo/common.h
A examples/system/freertos/xlnx_r5/amp_demo/ipi_latency_demod.c
A examples/system/freertos/xlnx_r5/amp_demo/ipi_shmem_demod.c
A examples/system/freertos/xlnx_r5/amp_demo/libmetal_amp_demod.c
A examples/system/freertos/xlnx_r5/amp_demo/lscript.ld
A examples/system/freertos/xlnx_r5/amp_demo/platform_config.h
A examples/system/freertos/xlnx_r5/amp_demo/shmem_atomic_demod.c
A examples/system/freertos/xlnx_r5/amp_demo/shmem_demod.c
A examples/system/freertos/xlnx_r5/amp_demo/shmem_latency_demod.c
A examples/system/freertos/xlnx_r5/amp_demo/shmem_throughput_demod.c
A examples/system/freertos/xlnx_r5/amp_demo/sys_init.c
A examples/system/freertos/xlnx_r5/amp_demo/sys_init.h
R examples/system/freertos/zynqmp_r5/CMakeLists.txt
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/common.h
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/ipi_latency_demod.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/ipi_shmem_demod.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/libmetal_amp_demod.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/lscript.ld
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/platform_config.h
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/shmem_atomic_demod.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/shmem_demod.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/shmem_latency_demod.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/shmem_throughput_demod.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/sys_init.c
R examples/system/freertos/zynqmp_r5/zynqmp_amp_demo/sys_init.h
A examples/system/generic/xlnx_r5/CMakeLists.txt
A examples/system/generic/xlnx_r5/amp_demo/CMakeLists.txt
A examples/system/generic/xlnx_r5/amp_demo/common.h
A examples/system/generic/xlnx_r5/amp_demo/ipi_latency_demod.c
A examples/system/generic/xlnx_r5/amp_demo/ipi_shmem_demod.c
A examples/system/generic/xlnx_r5/amp_demo/libmetal_amp_demod.c
A examples/system/generic/xlnx_r5/amp_demo/lscript.ld
A examples/system/generic/xlnx_r5/amp_demo/platform_config.h
A examples/system/generic/xlnx_r5/amp_demo/shmem_atomic_demod.c
A examples/system/generic/xlnx_r5/amp_demo/shmem_demod.c
A examples/system/generic/xlnx_r5/amp_demo/shmem_latency_demod.c
A examples/system/generic/xlnx_r5/amp_demo/shmem_throughput_demod.c
A examples/system/generic/xlnx_r5/amp_demo/sys_init.c
A examples/system/generic/xlnx_r5/amp_demo/sys_init.h
R examples/system/generic/zynqmp_r5/CMakeLists.txt
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/CMakeLists.txt
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/common.h
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/ipi_latency_demod.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/ipi_shmem_demod.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/libmetal_amp_demod.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/lscript.ld
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/platform_config.h
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/shmem_atomic_demod.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/shmem_demod.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/shmem_latency_demod.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/shmem_throughput_demod.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/sys_init.c
R examples/system/generic/zynqmp_r5/zynqmp_amp_demo/sys_init.h
A examples/system/linux/xlnx/CMakeLists.txt
A examples/system/linux/xlnx/zynqmp_amp_demo/CMakeLists.txt
A examples/system/linux/xlnx/zynqmp_amp_demo/common.h
A examples/system/linux/xlnx/zynqmp_amp_demo/ipi_latency_demo.c
A examples/system/linux/xlnx/zynqmp_amp_demo/ipi_shmem_demo.c
A examples/system/linux/xlnx/zynqmp_amp_demo/libmetal_amp_demo.c
A examples/system/linux/xlnx/zynqmp_amp_demo/libmetal_amp_demod.c
A examples/system/linux/xlnx/zynqmp_amp_demo/shmem_atomic_demo.c
A examples/system/linux/xlnx/zynqmp_amp_demo/shmem_demo.c
A examples/system/linux/xlnx/zynqmp_amp_demo/shmem_latency_demo.c
A examples/system/linux/xlnx/zynqmp_amp_demo/shmem_throughput_demo.c
A examples/system/linux/xlnx/zynqmp_amp_demo/sys_init.c
A examples/system/linux/xlnx/zynqmp_amp_demo/sys_init.h
R examples/system/linux/zynqmp/CMakeLists.txt
R examples/system/linux/zynqmp/zynqmp_amp_demo/CMakeLists.txt
R examples/system/linux/zynqmp/zynqmp_amp_demo/common.h
R examples/system/linux/zynqmp/zynqmp_amp_demo/ipi_latency_demo.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/ipi_shmem_demo.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/libmetal_amp_demo.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/libmetal_amp_demod.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/shmem_atomic_demo.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/shmem_demo.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/shmem_latency_demo.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/shmem_throughput_demo.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/sys_init.c
R examples/system/linux/zynqmp/zynqmp_amp_demo/sys_init.h
Log Message:
-----------
examples: xlnx: Change machine name to be SOC agnostic
Match examples to lib CMake machine name change
Signed-off-by: Ben Levinsky <ben.levinsky(a)amd.com>
Compare: https://github.com/OpenAMP/libmetal/compare/3aee6be866b1...5c36d6b9c131
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/libmetal/settings/notifications