-
Notifications
You must be signed in to change notification settings - Fork 181
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
cmake: platforms: xlnx: Update machine from 'zynqmp_' to 'xlnx_' #305
Open
bentheredonethat
wants to merge
24
commits into
OpenAMP:main
Choose a base branch
from
bentheredonethat:update-xlnx-cmake-files
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
130a908
examples: linux: zynqmp: Add IPI uio based API implementation
82f7603
examples: linux: add IPI with R5 rproc kick sysfs impelmentation
81ca995
examples: linux: zynqmp: Use IPI commit API
c2533b4
examples: linux: libmetal_amp_demod: add macro guards for IPI
9f4a838
examples: linux: zynqmp_r5: dynamically set TTC and IPI vars
6c174a7
examples: generic: zynqmp_r5: dynamically set TTC and IPI vars
1b5b5a5
examples: freertos: zynqmp_r5: dynamically set TTC and IPI vars
6b82085
libmetal: amp_demo: improve performance measurement
kernelchuk 75159e7
examples: linux: add an option to set debug log level
kernelchuk c7edeb0
log: update ML_ERR, ML_INFO, ML_DBG macros
kernelchuk ed732a9
log: default to function, line number prefix
kernelchuk ee95b7a
test: linux: add test for multiple IO regions
2ac9c17
examples: freertos: define xInterruptController in System Device Tree…
bentheredonethat 3ef1b92
examples: linux: zynqmp: Remove MB definition
bentheredonethat d988212
examples: generic: zynqmp_r5: Add symbols for System Device Flow flow
bentheredonethat 68f4ba0
lib: generic: xlnx: Use CMAKE_C_FLAGS to determine if SDT symbol is p…
bentheredonethat 5805b7f
examples: linux: zynqmp: Add Versal-NET IPI Values
bentheredonethat 22e8f5f
examples: linux: zynqmp: Fix Typo in ZynqMP IPI Base address
bentheredonethat d381e62
examples: linux: zynqmp: Enable Values to be mutable
bentheredonethat 3c27d85
examples: zynqmp_r5: CMake: Enable demo to build without libxil prese…
bentheredonethat 8eca38f
examples: zynqmp_r5: CMake: Add SDT-required libs as link dependencies
bentheredonethat 7ae1fe9
examples: freertos: zynqmp_r5: zynqmp_amp_demo: Add symbols for Syste…
bentheredonethat 19ece34
examples: zynqmp_r5: Enable CMake to pass in app binary name
bentheredonethat 9dbceb6
cmake: platforms: xlnx: Update machine from 'zynqmp_' to 'xlnx_'
bentheredonethat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
set (CMAKE_SYSTEM_PROCESSOR "aarch64" CACHE STRING "") | ||
set (MACHINE "xlnx_a53" CACHE STRING "") | ||
set (PROJECT_VENDOR "xlnx" CACHE STRING "") | ||
set (CROSS_PREFIX "aarch64-none-elf-" CACHE STRING "") | ||
set (CMAKE_C_FLAGS "" CACHE STRING "") | ||
|
||
include (cross-freertos-gcc) | ||
|
2 changes: 1 addition & 1 deletion
2
cmake/platforms/zynqmp-a53-generic.cmake → cmake/platforms/xlnx-a53-generic.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
set (CMAKE_SYSTEM_PROCESSOR "arm" CACHE STRING "") | ||
set (MACHINE "xlnx_r5" CACHE STRING "") | ||
set (PROJECT_VENDOR "xlnx" CACHE STRING "") | ||
set (CROSS_PREFIX "armr5-none-eabi-" CACHE STRING "") | ||
set (CMAKE_C_FLAGS "-mfloat-abi=soft -mcpu=cortex-r5" CACHE STRING "") | ||
|
||
include (cross-freertos-gcc) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
set (CMAKE_SYSTEM_PROCESSOR "arm" CACHE STRING "") | ||
set (MACHINE "xlnx_r5" CACHE STRING "") | ||
set (CROSS_PREFIX "armr5-none-eabi-" CACHE STRING "") | ||
set (PROJECT_VENDOR "xlnx" CACHE STRING "") | ||
|
||
# Xilinx SDK version earlier than 2017.2 use mfloat-abi=soft by default to generate libxil | ||
set (CMAKE_C_FLAGS "-mfloat-abi=hard -mfpu=vfpv3-d16 -mcpu=cortex-r5" CACHE STRING "") | ||
|
||
include (cross-generic-gcc) | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto