]> begriffs open source - freertos/commit
Cortex-M35P: Add Cortex-M35P port (#631)
authorDevaraj Ranganna <devaraj.ranganna@arm.com>
Tue, 28 Feb 2023 07:28:59 +0000 (07:28 +0000)
committerGitHub <noreply@github.com>
Tue, 28 Feb 2023 07:28:59 +0000 (12:58 +0530)
commit5fdbb7fd2b6102bddfeb665f2d276c24a86c82df
tree3d60a910b4d0c6f7b4c2c717b3421b384b286ed8
parentcd87681789dd3317b1291a0b32800c64b8fd850f
Cortex-M35P: Add Cortex-M35P port (#631)

* Cortex-M35P: Add Cortex-M35P port

The Cortex-M35P support added to kernel. The port hasn't been
validated yet with TF-M. Hence TF-M support is not included in this
port.

Signed-off-by: Devaraj Ranganna <devaraj.ranganna@arm.com>
* Add portNORETURN to the newly added portmacro.h

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
---------

Signed-off-by: Devaraj Ranganna <devaraj.ranganna@arm.com>
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com>
Co-authored-by: kar-rahul-aws <118818625+kar-rahul-aws@users.noreply.github.com>
56 files changed:
CMakeLists.txt
portable/ARMv8M/copy_files.py
portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM35P/portmacro.h [new file with mode: 0644]
portable/ARMv8M/non_secure/portable/GCC/ARM_CM55/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM85/portmacro.h
portable/ARMv8M/non_secure/portable/IAR/ARM_CM35P/portmacro.h [new file with mode: 0644]
portable/CMakeLists.txt
portable/GCC/ARM_CM23/non_secure/portasm.c
portable/GCC/ARM_CM23/non_secure/portmacro.h
portable/GCC/ARM_CM23_NTZ/non_secure/portmacro.h
portable/GCC/ARM_CM33/non_secure/portmacro.h
portable/GCC/ARM_CM33_NTZ/non_secure/portmacro.h
portable/GCC/ARM_CM35P/non_secure/port.c [new file with mode: 0644]
portable/GCC/ARM_CM35P/non_secure/portasm.c [new file with mode: 0644]
portable/GCC/ARM_CM35P/non_secure/portasm.h [new file with mode: 0644]
portable/GCC/ARM_CM35P/non_secure/portmacro.h [new file with mode: 0644]
portable/GCC/ARM_CM35P/non_secure/portmacrocommon.h [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_context.c [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_context.h [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_context_port.c [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_heap.c [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_heap.h [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_init.c [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_init.h [new file with mode: 0644]
portable/GCC/ARM_CM35P/secure/secure_port_macros.h [new file with mode: 0644]
portable/GCC/ARM_CM35P_NTZ/non_secure/port.c [new file with mode: 0644]
portable/GCC/ARM_CM35P_NTZ/non_secure/portasm.c [new file with mode: 0644]
portable/GCC/ARM_CM35P_NTZ/non_secure/portasm.h [new file with mode: 0644]
portable/GCC/ARM_CM35P_NTZ/non_secure/portmacro.h [new file with mode: 0644]
portable/GCC/ARM_CM35P_NTZ/non_secure/portmacrocommon.h [new file with mode: 0644]
portable/GCC/ARM_CM55/non_secure/portmacro.h
portable/GCC/ARM_CM55_NTZ/non_secure/portmacro.h
portable/GCC/ARM_CM85/non_secure/portmacro.h
portable/GCC/ARM_CM85_NTZ/non_secure/portmacro.h
portable/IAR/ARM_CM35P/non_secure/port.c [new file with mode: 0644]
portable/IAR/ARM_CM35P/non_secure/portasm.h [new file with mode: 0644]
portable/IAR/ARM_CM35P/non_secure/portasm.s [new file with mode: 0644]
portable/IAR/ARM_CM35P/non_secure/portmacro.h [new file with mode: 0644]
portable/IAR/ARM_CM35P/non_secure/portmacrocommon.h [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_context.c [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_context.h [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_context_port_asm.s [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_heap.c [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_heap.h [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_init.c [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_init.h [new file with mode: 0644]
portable/IAR/ARM_CM35P/secure/secure_port_macros.h [new file with mode: 0644]
portable/IAR/ARM_CM35P_NTZ/non_secure/port.c [new file with mode: 0644]
portable/IAR/ARM_CM35P_NTZ/non_secure/portasm.h [new file with mode: 0644]
portable/IAR/ARM_CM35P_NTZ/non_secure/portasm.s [new file with mode: 0644]
portable/IAR/ARM_CM35P_NTZ/non_secure/portmacro.h [new file with mode: 0644]
portable/IAR/ARM_CM35P_NTZ/non_secure/portmacrocommon.h [new file with mode: 0644]