main_s.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /******************************************************************************
  2. * @file main_s.c
  3. * @brief Code template for secure main function
  4. * @version V1.1.1
  5. * @date 10. January 2018
  6. ******************************************************************************/
  7. /*
  8. * Copyright (c) 2013-2018 Arm Limited. All rights reserved.
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. *
  12. * Licensed under the Apache License, Version 2.0 (the License); you may
  13. * not use this file except in compliance with the License.
  14. * You may obtain a copy of the License at
  15. *
  16. * www.apache.org/licenses/LICENSE-2.0
  17. *
  18. * Unless required by applicable law or agreed to in writing, software
  19. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  20. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  21. * See the License for the specific language governing permissions and
  22. * limitations under the License.
  23. */
  24. /* Use CMSE intrinsics */
  25. #include <arm_cmse.h>
  26. #include "RTE_Components.h"
  27. #include CMSIS_device_header
  28. /* TZ_START_NS: Start address of non-secure application */
  29. #ifndef TZ_START_NS
  30. #define TZ_START_NS (0x200000U)
  31. #endif
  32. /* typedef for non-secure callback functions */
  33. typedef void (*funcptr_void) (void) __attribute__((cmse_nonsecure_call));
  34. /* Secure main() */
  35. int main(void) {
  36. funcptr_void NonSecure_ResetHandler;
  37. /* Add user setup code for secure part here*/
  38. /* Set non-secure main stack (MSP_NS) */
  39. __TZ_set_MSP_NS(*((uint32_t *)(TZ_START_NS)));
  40. /* Get non-secure reset handler */
  41. NonSecure_ResetHandler = (funcptr_void)(*((uint32_t *)((TZ_START_NS) + 4U)));
  42. /* Start non-secure state software application */
  43. NonSecure_ResetHandler();
  44. /* Non-secure software does not return, this code is not executed */
  45. while (1) {
  46. __NOP();
  47. }
  48. }