Skip to content

Commit

Permalink
zynq: Remove support for Zynq-7000 SoC
Browse files Browse the repository at this point in the history
Remove support for Zynq-7000 SoC, changes are
1. Remove Zynq7 tool chain support
2. Makefile changes to remove zynq7

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/libmetal/tree/v2023.10

Signed-off-by: Rajiv Mohan <rajiv.mohan@amd.com>
  • Loading branch information
rajimoha committed Aug 2, 2024
1 parent 3aee6be commit 723156a
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 30 deletions.
3 changes: 1 addition & 2 deletions cmake/options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ if ("${PROJECT_MACHINE}" STREQUAL "zynqmp_a53" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_a72" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_a78" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_r5" OR
"${PROJECT_MACHINE}" STREQUAL "microblaze_generic" OR
"${PROJECT_MACHINE}" STREQUAL "zynq7")
"${PROJECT_MACHINE}" STREQUAL "microblaze_generic")
add_definitions( -DXLNX_PLATFORM )
endif()
8 changes: 0 additions & 8 deletions cmake/platforms/zynq7-freertos.cmake

This file was deleted.

4 changes: 0 additions & 4 deletions cmake/platforms/zynq7-generic-iar.cmake

This file was deleted.

8 changes: 0 additions & 8 deletions cmake/platforms/zynq7-generic.cmake

This file was deleted.

4 changes: 0 additions & 4 deletions cmake/platforms/zynq7-linux.cmake

This file was deleted.

3 changes: 1 addition & 2 deletions lib/system/freertos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE})
if ("${PROJECT_MACHINE}" STREQUAL "zynqmp_a53" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_a72" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_a78" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_r5" OR
"${PROJECT_MACHINE}" STREQUAL "zynq7")
"${PROJECT_MACHINE}" STREQUAL "zynqmp_r5")
add_subdirectory(xlnx)
endif()
3 changes: 1 addition & 2 deletions lib/system/generic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ if ("${PROJECT_MACHINE}" STREQUAL "zynqmp_a53" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_a72" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_a78" OR
"${PROJECT_MACHINE}" STREQUAL "zynqmp_r5" OR
"${PROJECT_MACHINE}" STREQUAL "microblaze_generic" OR
"${PROJECT_MACHINE}" STREQUAL "zynq7")
"${PROJECT_MACHINE}" STREQUAL "microblaze_generic")
add_subdirectory(xlnx)
elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_MACHINE})
add_subdirectory(${PROJECT_MACHINE})
Expand Down

0 comments on commit 723156a

Please sign in to comment.