-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create core/arch/arm/cpu/<cpu-name>.mk to store CPU generic configurations settings. Update supported platforms to rely on the generic CPU support. Platform shall still specify whether they support or not the NEON extension. Cortex-A53 and Cortex-A57 are all ARMv8.0 compliant. For ARMv8 core, we will use ARMv8-A architecture minor version configuration files. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> Acked-by: Jerome Forissier <jerome.forissier@linaro.org>
- Loading branch information
1 parent
fc68faa
commit 4389685
Showing
18 changed files
with
61 additions
and
68 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$(call force,CFG_ARM32_core,y) | ||
$(call force,CFG_ARM64_core,n) | ||
$(call force,CFG_HWSUPP_MEM_PERM_WXN,y) | ||
$(call force,CFG_HWSUPP_MEM_PERM_PXN,y) | ||
arm32-platform-cpuarch := cortex-a15 | ||
arm32-platform-cflags += -mcpu=$(arm32-platform-cpuarch) | ||
arm32-platform-aflags += -mcpu=$(arm32-platform-cpuarch) |
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,7 @@ | ||
$(call force,CFG_ARM32_core,y) | ||
$(call force,CFG_ARM64_core,n) | ||
$(call force,CFG_HWSUPP_MEM_PERM_WXN,y) | ||
$(call force,CFG_HWSUPP_MEM_PERM_PXN,y) | ||
arm32-platform-cpuarch := cortex-a7 | ||
arm32-platform-cflags += -mcpu=$(arm32-platform-cpuarch) | ||
arm32-platform-aflags += -mcpu=$(arm32-platform-cpuarch) |
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,9 @@ | ||
$(call force,CFG_ARM32_core,y) | ||
$(call force,CFG_ARM64_core,n) | ||
$(call force,CFG_WITH_LPAE,n) | ||
$(call force,CFG_HWSUPP_MEM_PERM_WXN,n) | ||
$(call force,CFG_HWSUPP_MEM_PERM_PXN,n) | ||
$(call force,CFG_SECURE_TIME_SOURCE_CNTPCT,n) | ||
arm32-platform-cpuarch := cortex-a9 | ||
arm32-platform-cflags += -mcpu=$(arm32-platform-cpuarch) | ||
arm32-platform-aflags += -mcpu=$(arm32-platform-cpuarch) |
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,7 @@ | ||
$(call force,CFG_HWSUPP_MEM_PERM_WXN,y) | ||
$(call force,CFG_HWSUPP_MEM_PERM_PXN,y) | ||
# cortex-a53 and cortex-a57 complies on arm32 architectures | ||
arm32-platform-cpuarch := cortex-a53 | ||
arm32-platform-cflags += -mcpu=$(arm32-platform-cpuarch) | ||
arm32-platform-aflags += -mcpu=$(arm32-platform-cpuarch) | ||
platform-flavor-armv8 := 1 |
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
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
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
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
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