]> begriffs open source - freertos/commit
aarch64: Rename ARM_CA53_64_BIT/_SRE to Arm_AARCH64/_SRE (#822)
authorDevaraj Ranganna <devaraj.ranganna@arm.com>
Tue, 31 Oct 2023 04:36:39 +0000 (04:36 +0000)
committerGitHub <noreply@github.com>
Tue, 31 Oct 2023 04:36:39 +0000 (10:06 +0530)
commit83083a8a1371359e66af4a5aecb5e3110100f5c9
tree19274a383f9494dfeb06987c43d90031d3ba056b
parentef0104e7685c45eeebf6ebe06a24f4eb1a28c045
aarch64: Rename ARM_CA53_64_BIT/_SRE to Arm_AARCH64/_SRE (#822)

The Cortex-A53 ports are generic and can be used as a starting point
for other Armv8-A application processors. Therefore, rename
`ARM_CA53_64_BIT` to `Arm_AARCH64` and `ARM_CA53_64_BIT_SRE` to
`Arm_AARCH64_SRE`.

With this renaming, existing projects that use old port, should
migrate to renamed port as follows:

* `ARM_CA53_64_BIT` -> `Arm_AARCH64`
* `ARM_CA53_64_BIT_SRE` -> `Arm_AARCH64_SRE`

Signed-off-by: Devaraj Ranganna <devaraj.ranganna@arm.com>
Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
12 files changed:
CMakeLists.txt
portable/CMakeLists.txt
portable/GCC/ARM_CA53_64_BIT/README.md [new file with mode: 0644]
portable/GCC/ARM_CA53_64_BIT_SRE/README.md [new file with mode: 0644]
portable/GCC/Arm_AARCH64/README.md [new file with mode: 0644]
portable/GCC/Arm_AARCH64/port.c [moved from portable/GCC/ARM_CA53_64_BIT/port.c with 100% similarity]
portable/GCC/Arm_AARCH64/portASM.S [moved from portable/GCC/ARM_CA53_64_BIT/portASM.S with 100% similarity]
portable/GCC/Arm_AARCH64/portmacro.h [moved from portable/GCC/ARM_CA53_64_BIT/portmacro.h with 100% similarity]
portable/GCC/Arm_AARCH64_SRE/README.md [new file with mode: 0644]
portable/GCC/Arm_AARCH64_SRE/port.c [moved from portable/GCC/ARM_CA53_64_BIT_SRE/port.c with 100% similarity]
portable/GCC/Arm_AARCH64_SRE/portASM.S [moved from portable/GCC/ARM_CA53_64_BIT_SRE/portASM.S with 100% similarity]
portable/GCC/Arm_AARCH64_SRE/portmacro.h [moved from portable/GCC/ARM_CA53_64_BIT_SRE/portmacro.h with 100% similarity]