-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move examples dir from the libmetal repository #21
base: main
Are you sure you want to change the base?
Conversation
Move examples directory from https://github.com/OpenAMP/libmetal into examples/libmetal. Moved files (LANG=C tree examples/libmetal): examples/libmetal |-- CMakeLists.txt `-- system |-- CMakeLists.txt |-- freertos | |-- CMakeLists.txt | `-- zynqmp_r5 | |-- CMakeLists.txt | `-- zynqmp_amp_demo | |-- CMakeLists.txt | |-- common.h | |-- ipi_latency_demod.c | |-- ipi_shmem_demod.c | |-- libmetal_amp_demod.c | |-- lscript.ld | |-- platform_config.h | |-- shmem_atomic_demod.c | |-- shmem_demod.c | |-- shmem_latency_demod.c | |-- shmem_throughput_demod.c | |-- sys_init.c | `-- sys_init.h |-- generic | |-- CMakeLists.txt | `-- zynqmp_r5 | |-- CMakeLists.txt | `-- zynqmp_amp_demo | |-- CMakeLists.txt | |-- common.h | |-- ipi_latency_demod.c | |-- ipi_shmem_demod.c | |-- libmetal_amp_demod.c | |-- lscript.ld | |-- platform_config.h | |-- shmem_atomic_demod.c | |-- shmem_demod.c | |-- shmem_latency_demod.c | |-- shmem_throughput_demod.c | |-- sys_init.c | `-- sys_init.h `-- linux |-- CMakeLists.txt `-- zynqmp |-- CMakeLists.txt `-- zynqmp_amp_demo |-- CMakeLists.txt |-- common.h |-- ipi_latency_demo.c |-- ipi_shmem_demo.c |-- libmetal_amp_demo.c |-- libmetal_amp_demod.c |-- shmem_atomic_demo.c |-- shmem_demo.c |-- shmem_latency_demo.c |-- shmem_throughput_demo.c |-- sys_init.c `-- sys_init.h 10 directories, 46 files Signed-off-by: Sergei Korneichuk <[email protected]>
c55c6ea
to
edd999d
Compare
@kernelchuk , Could you clarify the need of this examples for AMD? By essence the libmetal is used to adapt the openamp lib to the target ( compiler, platform, OS). Do you have some project using only lib metal? So i wonder if this code is only for legacy and what you really need is just open-amp examples running on AMD platforms (#19) |
@arnopo, Other projects at AMD use libmetal without OpenAMP. From the top of my head: RFDC. We also use it internally for testing and validation. This is not legacy code. |
@tnmysh I presume your PR# 44 makes this redundant correct? |
@wmamills as part of PR#44, I am moving only open-amp repository demos. I would like to keep this open, till we move libmetal demos as well. |
Move examples directory from https://github.com/OpenAMP/libmetal into examples/libmetal.