portASM.s 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. ;/*
  2. ; * FreeRTOS Kernel V10.4.6
  3. ; * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  4. ; *
  5. ; * SPDX-License-Identifier: MIT
  6. ; *
  7. ; * Permission is hereby granted, free of charge, to any person obtaining a copy of
  8. ; * this software and associated documentation files (the "Software"), to deal in
  9. ; * the Software without restriction, including without limitation the rights to
  10. ; * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  11. ; * the Software, and to permit persons to whom the Software is furnished to do so,
  12. ; * subject to the following conditions:
  13. ; *
  14. ; * The above copyright notice and this permission notice shall be included in all
  15. ; * copies or substantial portions of the Software.
  16. ; *
  17. ; * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. ; * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  19. ; * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  20. ; * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  21. ; * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. ; * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. ; *
  24. ; * https://www.FreeRTOS.org
  25. ; * https://github.com/FreeRTOS
  26. ; *
  27. ; */
  28. INCLUDE portmacro.inc
  29. IMPORT vTaskSwitchContext
  30. IMPORT xTaskIncrementTick
  31. EXPORT vPortYieldProcessor
  32. EXPORT vPortStartFirstTask
  33. EXPORT vPreemptiveTick
  34. EXPORT vPortYield
  35. VICVECTADDR EQU 0xFFFFF030
  36. T0IR EQU 0xE0004000
  37. T0MATCHBIT EQU 0x00000001
  38. ARM
  39. AREA PORT_ASM, CODE, READONLY
  40. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  41. ; Starting the first task is done by just restoring the context
  42. ; setup by pxPortInitialiseStack
  43. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  44. vPortStartFirstTask
  45. PRESERVE8
  46. portRESTORE_CONTEXT
  47. vPortYield
  48. PRESERVE8
  49. SVC 0
  50. bx lr
  51. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  52. ; Interrupt service routine for the SWI interrupt. The vector table is
  53. ; configured in the startup.s file.
  54. ;
  55. ; vPortYieldProcessor() is used to manually force a context switch. The
  56. ; SWI interrupt is generated by a call to taskYIELD() or portYIELD().
  57. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  58. vPortYieldProcessor
  59. PRESERVE8
  60. ; Within an IRQ ISR the link register has an offset from the true return
  61. ; address, but an SWI ISR does not. Add the offset manually so the same
  62. ; ISR return code can be used in both cases.
  63. ADD LR, LR, #4
  64. ; Perform the context switch.
  65. portSAVE_CONTEXT ; Save current task context
  66. LDR R0, =vTaskSwitchContext ; Get the address of the context switch function
  67. MOV LR, PC ; Store the return address
  68. BX R0 ; Call the contedxt switch function
  69. portRESTORE_CONTEXT ; restore the context of the selected task
  70. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  71. ; Interrupt service routine for preemptive scheduler tick timer
  72. ; Only used if portUSE_PREEMPTION is set to 1 in portmacro.h
  73. ;
  74. ; Uses timer 0 of LPC21XX Family
  75. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  76. vPreemptiveTick
  77. PRESERVE8
  78. portSAVE_CONTEXT ; Save the context of the current task.
  79. LDR R0, =xTaskIncrementTick ; Increment the tick count.
  80. MOV LR, PC ; This may make a delayed task ready
  81. BX R0 ; to run.
  82. CMP R0, #0
  83. BEQ SkipContextSwitch
  84. LDR R0, =vTaskSwitchContext ; Find the highest priority task that
  85. MOV LR, PC ; is ready to run.
  86. BX R0
  87. SkipContextSwitch
  88. MOV R0, #T0MATCHBIT ; Clear the timer event
  89. LDR R1, =T0IR
  90. STR R0, [R1]
  91. LDR R0, =VICVECTADDR ; Acknowledge the interrupt
  92. STR R0,[R0]
  93. portRESTORE_CONTEXT ; Restore the context of the highest
  94. ; priority task that is ready to run.
  95. END