mirror of
https://github.com/eclipse-threadx/threadx.git
synced 2025-11-16 04:24:48 +00:00
Release ARMv7-A architecture ports and add tx_user.h to GNU port assembly files (#250)
* Release ARMv7-A architecture ports * Add tx_user.h to GNU port assembly files * Update GitHub action to perform check for Cortex-A ports
This commit is contained in:
30
.github/workflows/ports_arch_check.yml
vendored
30
.github/workflows/ports_arch_check.yml
vendored
@@ -15,11 +15,12 @@ on:
|
|||||||
- 'ports/**'
|
- 'ports/**'
|
||||||
- 'ports_modules/**'
|
- 'ports_modules/**'
|
||||||
- 'ports_smp/**'
|
- 'ports_smp/**'
|
||||||
|
- 'ports_arch/**'
|
||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
# This workflow contains a single job called "build"
|
# Check ports for cortex-m
|
||||||
build:
|
cortex-m:
|
||||||
# The type of runner that the job will run on
|
# The type of runner that the job will run on
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
@@ -38,8 +39,33 @@ jobs:
|
|||||||
scripts/copy_armv7_m.sh && scripts/copy_armv8_m.sh && scripts/copy_module_armv7_m.sh
|
scripts/copy_armv7_m.sh && scripts/copy_armv8_m.sh && scripts/copy_module_armv7_m.sh
|
||||||
if [[ -n $(git status --porcelain) ]]; then
|
if [[ -n $(git status --porcelain) ]]; then
|
||||||
echo "Ports for ARM architecture is not updated"
|
echo "Ports for ARM architecture is not updated"
|
||||||
|
git status
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
cortex-a:
|
||||||
|
# Check ports for cortex-a
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
|
steps:
|
||||||
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
|
- name: Checkout sources recursively
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.REPO_SCOPED_TOKEN }}
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
# Copy ports arch
|
||||||
|
- name: Copy ports arch
|
||||||
|
run: |
|
||||||
|
cd ports_arch/ARMv7-A
|
||||||
|
pwsh -Command ./update.ps1 -PortSets tx -CopyCommonFiles -CopyPortFiles -CopyExample -PatchFiles
|
||||||
|
if ((git status --porcelain) -ne $null) {
|
||||||
|
Write-Host "Ports for ARM architecture is not updated"
|
||||||
|
git status
|
||||||
|
Exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -50,7 +53,7 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_restore ARMv7-A */
|
/* _tx_thread_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -88,6 +91,9 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_restore
|
.global _tx_thread_context_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -36,7 +39,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_save ARMv7-A */
|
/* _tx_thread_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -73,6 +76,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_save
|
.global _tx_thread_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
SVC_MODE = 0xD3 // SVC mode
|
SVC_MODE = 0xD3 // SVC mode
|
||||||
FIQ_MODE = 0xD1 // FIQ mode
|
FIQ_MODE = 0xD1 // FIQ mode
|
||||||
@@ -48,7 +51,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_restore ARMv7-A */
|
/* _tx_thread_fiq_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -86,6 +89,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_restore
|
.global _tx_thread_fiq_context_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -37,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_save ARMv7-A */
|
/* _tx_thread_fiq_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -74,6 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_save
|
.global _tx_thread_fiq_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TX_ENABLE_FIQ_SUPPORT
|
#ifdef TX_ENABLE_FIQ_SUPPORT
|
||||||
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
||||||
@@ -40,7 +43,7 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -82,6 +85,9 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_end
|
.global _tx_thread_fiq_nesting_end
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
FIQ_DISABLE = 0x40 // FIQ disable bit
|
FIQ_DISABLE = 0x40 // FIQ disable bit
|
||||||
MODE_MASK = 0x1F // Mode mask
|
MODE_MASK = 0x1F // Mode mask
|
||||||
@@ -36,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -75,6 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_start
|
.global _tx_thread_fiq_nesting_start
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
INT_MASK = 0x03F
|
INT_MASK = 0x03F
|
||||||
|
|
||||||
@@ -47,7 +50,7 @@ $_tx_thread_interrupt_control:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_control ARMv7-A */
|
/* _tx_thread_interrupt_control ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -80,6 +83,9 @@ $_tx_thread_interrupt_control:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_control
|
.global _tx_thread_interrupt_control
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_disable for
|
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_disable for
|
||||||
applications calling this function from to 16-bit Thumb mode. */
|
applications calling this function from to 16-bit Thumb mode. */
|
||||||
@@ -44,7 +47,7 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_disable ARMv7-A */
|
/* _tx_thread_interrupt_disable ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -76,6 +79,9 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_disable
|
.global _tx_thread_interrupt_disable
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_restore for
|
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_restore for
|
||||||
applications calling this function from to 16-bit Thumb mode. */
|
applications calling this function from to 16-bit Thumb mode. */
|
||||||
@@ -44,7 +47,7 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_restore ARMv7-A */
|
/* _tx_thread_interrupt_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,6 +80,9 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_restore
|
.global _tx_thread_interrupt_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TX_ENABLE_FIQ_SUPPORT
|
#ifdef TX_ENABLE_FIQ_SUPPORT
|
||||||
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
||||||
@@ -40,7 +43,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_end ARMv7-A */
|
/* _tx_thread_irq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -82,6 +85,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_end
|
.global _tx_thread_irq_nesting_end
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
IRQ_DISABLE = 0x80 // IRQ disable bit
|
IRQ_DISABLE = 0x80 // IRQ disable bit
|
||||||
MODE_MASK = 0x1F // Mode mask
|
MODE_MASK = 0x1F // Mode mask
|
||||||
@@ -36,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_start ARMv7-A */
|
/* _tx_thread_irq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -75,6 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_start
|
.global _tx_thread_irq_nesting_start
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_execute_ptr
|
.global _tx_thread_execute_ptr
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -50,7 +53,7 @@ $_tx_thread_schedule:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_schedule ARMv7-A */
|
/* _tx_thread_schedule ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,6 +92,9 @@ $_tx_thread_schedule:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_schedule
|
.global _tx_thread_schedule
|
||||||
|
|||||||
@@ -19,6 +19,10 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
SVC_MODE = 0x13 // SVC mode
|
SVC_MODE = 0x13 // SVC mode
|
||||||
@@ -54,7 +58,7 @@ $_tx_thread_stack_build:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_stack_build ARMv7-A */
|
/* _tx_thread_stack_build ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,6 +93,9 @@ $_tx_thread_stack_build:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_stack_build
|
.global _tx_thread_stack_build
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -54,7 +57,7 @@ $_tx_thread_system_return:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_system_return ARMv7-A */
|
/* _tx_thread_system_return ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -92,6 +95,9 @@ $_tx_thread_system_return:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_system_return
|
.global _tx_thread_system_return
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -37,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_vectored_context_save ARMv7-A */
|
/* _tx_thread_vectored_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -74,6 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_vectored_context_save
|
.global _tx_thread_vectored_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -61,7 +64,7 @@ $_tx_timer_interrupt:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_timer_interrupt ARMv7-A */
|
/* _tx_timer_interrupt ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -98,6 +101,9 @@ $_tx_timer_interrupt:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_timer_interrupt
|
.global _tx_timer_interrupt
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -64,7 +67,7 @@ $_tx_initialize_low_level:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_initialize_low_level ARMv7-A */
|
/* _tx_initialize_low_level ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -100,6 +103,9 @@ $_tx_initialize_low_level:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_initialize_low_level
|
.global _tx_initialize_low_level
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_restore ARMv7-A */
|
/* _tx_thread_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -91,9 +91,9 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_restore
|
.global _tx_thread_context_restore
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_save ARMv7-A */
|
/* _tx_thread_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -76,9 +76,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_save
|
.global _tx_thread_context_save
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_restore ARMv7-A */
|
/* _tx_thread_fiq_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,9 +89,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_restore
|
.global _tx_thread_fiq_context_restore
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_save ARMv7-A */
|
/* _tx_thread_fiq_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_save
|
.global _tx_thread_fiq_context_save
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -85,9 +85,9 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_end
|
.global _tx_thread_fiq_nesting_end
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -78,9 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_start
|
.global _tx_thread_fiq_nesting_start
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ $_tx_thread_interrupt_control:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_control ARMv7-A */
|
/* _tx_thread_interrupt_control ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -83,9 +83,9 @@ $_tx_thread_interrupt_control:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_control
|
.global _tx_thread_interrupt_control
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_disable ARMv7-A */
|
/* _tx_thread_interrupt_disable ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -79,9 +79,9 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_disable
|
.global _tx_thread_interrupt_disable
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_restore ARMv7-A */
|
/* _tx_thread_interrupt_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -80,9 +80,9 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_restore
|
.global _tx_thread_interrupt_restore
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_end ARMv7-A */
|
/* _tx_thread_irq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -85,9 +85,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_end
|
.global _tx_thread_irq_nesting_end
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_start ARMv7-A */
|
/* _tx_thread_irq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -78,9 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_start
|
.global _tx_thread_irq_nesting_start
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ $_tx_thread_schedule:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_schedule ARMv7-A */
|
/* _tx_thread_schedule ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -92,9 +92,9 @@ $_tx_thread_schedule:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_schedule
|
.global _tx_thread_schedule
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ $_tx_thread_stack_build:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_stack_build ARMv7-A */
|
/* _tx_thread_stack_build ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -93,9 +93,9 @@ $_tx_thread_stack_build:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_stack_build
|
.global _tx_thread_stack_build
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ $_tx_thread_system_return:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_system_return ARMv7-A */
|
/* _tx_thread_system_return ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -95,9 +95,9 @@ $_tx_thread_system_return:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_system_return
|
.global _tx_thread_system_return
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_vectored_context_save ARMv7-A */
|
/* _tx_thread_vectored_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_vectored_context_save
|
.global _tx_thread_vectored_context_save
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ $_tx_timer_interrupt:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_timer_interrupt ARMv7-A */
|
/* _tx_timer_interrupt ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -101,9 +101,9 @@ $_tx_timer_interrupt:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_timer_interrupt
|
.global _tx_timer_interrupt
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -50,7 +53,7 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_restore ARMv7-A */
|
/* _tx_thread_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -88,6 +91,9 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_restore
|
.global _tx_thread_context_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -36,7 +39,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_save ARMv7-A */
|
/* _tx_thread_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -73,6 +76,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_save
|
.global _tx_thread_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
SVC_MODE = 0xD3 // SVC mode
|
SVC_MODE = 0xD3 // SVC mode
|
||||||
FIQ_MODE = 0xD1 // FIQ mode
|
FIQ_MODE = 0xD1 // FIQ mode
|
||||||
@@ -48,7 +51,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_restore ARMv7-A */
|
/* _tx_thread_fiq_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -86,6 +89,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_restore
|
.global _tx_thread_fiq_context_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -37,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_save ARMv7-A */
|
/* _tx_thread_fiq_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -74,6 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_save
|
.global _tx_thread_fiq_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TX_ENABLE_FIQ_SUPPORT
|
#ifdef TX_ENABLE_FIQ_SUPPORT
|
||||||
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
||||||
@@ -40,7 +43,7 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -82,6 +85,9 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_end
|
.global _tx_thread_fiq_nesting_end
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
FIQ_DISABLE = 0x40 // FIQ disable bit
|
FIQ_DISABLE = 0x40 // FIQ disable bit
|
||||||
MODE_MASK = 0x1F // Mode mask
|
MODE_MASK = 0x1F // Mode mask
|
||||||
@@ -36,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -75,6 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_start
|
.global _tx_thread_fiq_nesting_start
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
INT_MASK = 0x03F
|
INT_MASK = 0x03F
|
||||||
|
|
||||||
@@ -47,7 +50,7 @@ $_tx_thread_interrupt_control:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_control ARMv7-A */
|
/* _tx_thread_interrupt_control ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -80,6 +83,9 @@ $_tx_thread_interrupt_control:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_control
|
.global _tx_thread_interrupt_control
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_disable for
|
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_disable for
|
||||||
applications calling this function from to 16-bit Thumb mode. */
|
applications calling this function from to 16-bit Thumb mode. */
|
||||||
@@ -44,7 +47,7 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_disable ARMv7-A */
|
/* _tx_thread_interrupt_disable ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -76,6 +79,9 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_disable
|
.global _tx_thread_interrupt_disable
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_restore for
|
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_restore for
|
||||||
applications calling this function from to 16-bit Thumb mode. */
|
applications calling this function from to 16-bit Thumb mode. */
|
||||||
@@ -44,7 +47,7 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_restore ARMv7-A */
|
/* _tx_thread_interrupt_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,6 +80,9 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_restore
|
.global _tx_thread_interrupt_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TX_ENABLE_FIQ_SUPPORT
|
#ifdef TX_ENABLE_FIQ_SUPPORT
|
||||||
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
||||||
@@ -40,7 +43,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_end ARMv7-A */
|
/* _tx_thread_irq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -82,6 +85,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_end
|
.global _tx_thread_irq_nesting_end
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
IRQ_DISABLE = 0x80 // IRQ disable bit
|
IRQ_DISABLE = 0x80 // IRQ disable bit
|
||||||
MODE_MASK = 0x1F // Mode mask
|
MODE_MASK = 0x1F // Mode mask
|
||||||
@@ -36,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_start ARMv7-A */
|
/* _tx_thread_irq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -75,6 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_start
|
.global _tx_thread_irq_nesting_start
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_execute_ptr
|
.global _tx_thread_execute_ptr
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -50,7 +53,7 @@ $_tx_thread_schedule:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_schedule ARMv7-A */
|
/* _tx_thread_schedule ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,6 +92,9 @@ $_tx_thread_schedule:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_schedule
|
.global _tx_thread_schedule
|
||||||
|
|||||||
@@ -19,6 +19,10 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
SVC_MODE = 0x13 // SVC mode
|
SVC_MODE = 0x13 // SVC mode
|
||||||
@@ -54,7 +58,7 @@ $_tx_thread_stack_build:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_stack_build ARMv7-A */
|
/* _tx_thread_stack_build ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,6 +93,9 @@ $_tx_thread_stack_build:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_stack_build
|
.global _tx_thread_stack_build
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -54,7 +57,7 @@ $_tx_thread_system_return:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_system_return ARMv7-A */
|
/* _tx_thread_system_return ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -92,6 +95,9 @@ $_tx_thread_system_return:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_system_return
|
.global _tx_thread_system_return
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -37,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_vectored_context_save ARMv7-A */
|
/* _tx_thread_vectored_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -74,6 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_vectored_context_save
|
.global _tx_thread_vectored_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -61,7 +64,7 @@ $_tx_timer_interrupt:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_timer_interrupt ARMv7-A */
|
/* _tx_timer_interrupt ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -98,6 +101,9 @@ $_tx_timer_interrupt:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_timer_interrupt
|
.global _tx_timer_interrupt
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -64,7 +67,7 @@ $_tx_initialize_low_level:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_initialize_low_level ARMv7-A */
|
/* _tx_initialize_low_level ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -100,6 +103,9 @@ $_tx_initialize_low_level:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_initialize_low_level
|
.global _tx_initialize_low_level
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_restore ARMv7-A */
|
/* _tx_thread_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -91,9 +91,9 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_restore
|
.global _tx_thread_context_restore
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_save ARMv7-A */
|
/* _tx_thread_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -76,9 +76,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_save
|
.global _tx_thread_context_save
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_restore ARMv7-A */
|
/* _tx_thread_fiq_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,9 +89,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_restore
|
.global _tx_thread_fiq_context_restore
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_save ARMv7-A */
|
/* _tx_thread_fiq_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_save
|
.global _tx_thread_fiq_context_save
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -85,9 +85,9 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_end
|
.global _tx_thread_fiq_nesting_end
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -78,9 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_start
|
.global _tx_thread_fiq_nesting_start
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ $_tx_thread_interrupt_control:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_control ARMv7-A */
|
/* _tx_thread_interrupt_control ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -83,9 +83,9 @@ $_tx_thread_interrupt_control:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_control
|
.global _tx_thread_interrupt_control
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_disable ARMv7-A */
|
/* _tx_thread_interrupt_disable ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -79,9 +79,9 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_disable
|
.global _tx_thread_interrupt_disable
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_restore ARMv7-A */
|
/* _tx_thread_interrupt_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -80,9 +80,9 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_restore
|
.global _tx_thread_interrupt_restore
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_end ARMv7-A */
|
/* _tx_thread_irq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -85,9 +85,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_end
|
.global _tx_thread_irq_nesting_end
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_start ARMv7-A */
|
/* _tx_thread_irq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -78,9 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_start
|
.global _tx_thread_irq_nesting_start
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ $_tx_thread_schedule:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_schedule ARMv7-A */
|
/* _tx_thread_schedule ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -92,9 +92,9 @@ $_tx_thread_schedule:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_schedule
|
.global _tx_thread_schedule
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ $_tx_thread_stack_build:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_stack_build ARMv7-A */
|
/* _tx_thread_stack_build ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -93,9 +93,9 @@ $_tx_thread_stack_build:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_stack_build
|
.global _tx_thread_stack_build
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ $_tx_thread_system_return:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_system_return ARMv7-A */
|
/* _tx_thread_system_return ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -95,9 +95,9 @@ $_tx_thread_system_return:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_system_return
|
.global _tx_thread_system_return
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_vectored_context_save ARMv7-A */
|
/* _tx_thread_vectored_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_vectored_context_save
|
.global _tx_thread_vectored_context_save
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ $_tx_timer_interrupt:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_timer_interrupt ARMv7-A */
|
/* _tx_timer_interrupt ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -101,9 +101,9 @@ $_tx_timer_interrupt:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_timer_interrupt
|
.global _tx_timer_interrupt
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -50,7 +53,7 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_restore ARMv7-A */
|
/* _tx_thread_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -88,6 +91,9 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_restore
|
.global _tx_thread_context_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -36,7 +39,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_save ARMv7-A */
|
/* _tx_thread_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -73,6 +76,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_save
|
.global _tx_thread_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
SVC_MODE = 0xD3 // SVC mode
|
SVC_MODE = 0xD3 // SVC mode
|
||||||
FIQ_MODE = 0xD1 // FIQ mode
|
FIQ_MODE = 0xD1 // FIQ mode
|
||||||
@@ -48,7 +51,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_restore ARMv7-A */
|
/* _tx_thread_fiq_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -86,6 +89,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_restore
|
.global _tx_thread_fiq_context_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -37,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_save ARMv7-A */
|
/* _tx_thread_fiq_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -74,6 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_save
|
.global _tx_thread_fiq_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TX_ENABLE_FIQ_SUPPORT
|
#ifdef TX_ENABLE_FIQ_SUPPORT
|
||||||
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
||||||
@@ -40,7 +43,7 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -82,6 +85,9 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_end
|
.global _tx_thread_fiq_nesting_end
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
FIQ_DISABLE = 0x40 // FIQ disable bit
|
FIQ_DISABLE = 0x40 // FIQ disable bit
|
||||||
MODE_MASK = 0x1F // Mode mask
|
MODE_MASK = 0x1F // Mode mask
|
||||||
@@ -36,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -75,6 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_start
|
.global _tx_thread_fiq_nesting_start
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
INT_MASK = 0x03F
|
INT_MASK = 0x03F
|
||||||
|
|
||||||
@@ -47,7 +50,7 @@ $_tx_thread_interrupt_control:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_control ARMv7-A */
|
/* _tx_thread_interrupt_control ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -80,6 +83,9 @@ $_tx_thread_interrupt_control:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_control
|
.global _tx_thread_interrupt_control
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_disable for
|
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_disable for
|
||||||
applications calling this function from to 16-bit Thumb mode. */
|
applications calling this function from to 16-bit Thumb mode. */
|
||||||
@@ -44,7 +47,7 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_disable ARMv7-A */
|
/* _tx_thread_interrupt_disable ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -76,6 +79,9 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_disable
|
.global _tx_thread_interrupt_disable
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_restore for
|
/* Define the 16-bit Thumb mode veneer for _tx_thread_interrupt_restore for
|
||||||
applications calling this function from to 16-bit Thumb mode. */
|
applications calling this function from to 16-bit Thumb mode. */
|
||||||
@@ -44,7 +47,7 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_restore ARMv7-A */
|
/* _tx_thread_interrupt_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,6 +80,9 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_restore
|
.global _tx_thread_interrupt_restore
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TX_ENABLE_FIQ_SUPPORT
|
#ifdef TX_ENABLE_FIQ_SUPPORT
|
||||||
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
DISABLE_INTS = 0xC0 // Disable IRQ/FIQ interrupts
|
||||||
@@ -40,7 +43,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_end ARMv7-A */
|
/* _tx_thread_irq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -82,6 +85,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_end
|
.global _tx_thread_irq_nesting_end
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
IRQ_DISABLE = 0x80 // IRQ disable bit
|
IRQ_DISABLE = 0x80 // IRQ disable bit
|
||||||
MODE_MASK = 0x1F // Mode mask
|
MODE_MASK = 0x1F // Mode mask
|
||||||
@@ -36,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_start ARMv7-A */
|
/* _tx_thread_irq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -75,6 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_start
|
.global _tx_thread_irq_nesting_start
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_execute_ptr
|
.global _tx_thread_execute_ptr
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -50,7 +53,7 @@ $_tx_thread_schedule:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_schedule ARMv7-A */
|
/* _tx_thread_schedule ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,6 +92,9 @@ $_tx_thread_schedule:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_schedule
|
.global _tx_thread_schedule
|
||||||
|
|||||||
@@ -19,6 +19,10 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
SVC_MODE = 0x13 // SVC mode
|
SVC_MODE = 0x13 // SVC mode
|
||||||
@@ -54,7 +58,7 @@ $_tx_thread_stack_build:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_stack_build ARMv7-A */
|
/* _tx_thread_stack_build ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,6 +93,9 @@ $_tx_thread_stack_build:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_stack_build
|
.global _tx_thread_stack_build
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -54,7 +57,7 @@ $_tx_thread_system_return:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_system_return ARMv7-A */
|
/* _tx_thread_system_return ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -92,6 +95,9 @@ $_tx_thread_system_return:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_system_return
|
.global _tx_thread_system_return
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.global _tx_thread_system_state
|
.global _tx_thread_system_state
|
||||||
.global _tx_thread_current_ptr
|
.global _tx_thread_current_ptr
|
||||||
@@ -37,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_vectored_context_save ARMv7-A */
|
/* _tx_thread_vectored_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -74,6 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_vectored_context_save
|
.global _tx_thread_vectored_context_save
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -61,7 +64,7 @@ $_tx_timer_interrupt:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_timer_interrupt ARMv7-A */
|
/* _tx_timer_interrupt ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -98,6 +101,9 @@ $_tx_timer_interrupt:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_timer_interrupt
|
.global _tx_timer_interrupt
|
||||||
|
|||||||
@@ -19,6 +19,9 @@
|
|||||||
/** */
|
/** */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
#ifdef TX_INCLUDE_USER_DEFINE_FILE
|
||||||
|
#include "tx_user.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
.arm
|
.arm
|
||||||
|
|
||||||
@@ -64,7 +67,7 @@ $_tx_initialize_low_level:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_initialize_low_level ARMv7-A */
|
/* _tx_initialize_low_level ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -100,6 +103,9 @@ $_tx_initialize_low_level:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
|
/* #include tx_user.h, */
|
||||||
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_initialize_low_level
|
.global _tx_initialize_low_level
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_restore ARMv7-A */
|
/* _tx_thread_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -91,9 +91,9 @@ IRQ_MODE = 0x92 // Disable IRQ, IRQ mode
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_restore
|
.global _tx_thread_context_restore
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_context_save ARMv7-A */
|
/* _tx_thread_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -76,9 +76,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_context_save
|
.global _tx_thread_context_save
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_restore ARMv7-A */
|
/* _tx_thread_fiq_context_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -89,9 +89,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_restore
|
.global _tx_thread_fiq_context_restore
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_context_save ARMv7-A */
|
/* _tx_thread_fiq_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_context_save
|
.global _tx_thread_fiq_context_save
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
/* _tx_thread_fiq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -85,9 +85,9 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_end
|
.global _tx_thread_fiq_nesting_end
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
/* _tx_thread_fiq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -78,9 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_fiq_nesting_start
|
.global _tx_thread_fiq_nesting_start
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ $_tx_thread_interrupt_control:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_control ARMv7-A */
|
/* _tx_thread_interrupt_control ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -83,9 +83,9 @@ $_tx_thread_interrupt_control:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_control
|
.global _tx_thread_interrupt_control
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_disable ARMv7-A */
|
/* _tx_thread_interrupt_disable ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -79,9 +79,9 @@ $_tx_thread_interrupt_disable:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_disable
|
.global _tx_thread_interrupt_disable
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_interrupt_restore ARMv7-A */
|
/* _tx_thread_interrupt_restore ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -80,9 +80,9 @@ $_tx_thread_interrupt_restore:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_interrupt_restore
|
.global _tx_thread_interrupt_restore
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_end ARMv7-A */
|
/* _tx_thread_irq_nesting_end ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -85,9 +85,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_end
|
.global _tx_thread_irq_nesting_end
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_irq_nesting_start ARMv7-A */
|
/* _tx_thread_irq_nesting_start ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -78,9 +78,9 @@ SYS_MODE_BITS = 0x1F // System mode bits
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_irq_nesting_start
|
.global _tx_thread_irq_nesting_start
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ $_tx_thread_schedule:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_schedule ARMv7-A */
|
/* _tx_thread_schedule ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -92,9 +92,9 @@ $_tx_thread_schedule:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_schedule
|
.global _tx_thread_schedule
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ $_tx_thread_stack_build:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_stack_build ARMv7-A */
|
/* _tx_thread_stack_build ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -93,9 +93,9 @@ $_tx_thread_stack_build:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_stack_build
|
.global _tx_thread_stack_build
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ $_tx_thread_system_return:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_system_return ARMv7-A */
|
/* _tx_thread_system_return ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -95,9 +95,9 @@ $_tx_thread_system_return:
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_system_return
|
.global _tx_thread_system_return
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_thread_vectored_context_save ARMv7-A */
|
/* _tx_thread_vectored_context_save ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
/* resulting in version 6.1.9 */
|
/* resulting in version 6.1.9 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_thread_vectored_context_save
|
.global _tx_thread_vectored_context_save
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ $_tx_timer_interrupt:
|
|||||||
/* FUNCTION RELEASE */
|
/* FUNCTION RELEASE */
|
||||||
/* */
|
/* */
|
||||||
/* _tx_timer_interrupt ARMv7-A */
|
/* _tx_timer_interrupt ARMv7-A */
|
||||||
/* 6.1.11 */
|
/* 6.x */
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
/* */
|
/* */
|
||||||
/* William E. Lamie, Microsoft Corporation */
|
/* William E. Lamie, Microsoft Corporation */
|
||||||
@@ -101,9 +101,9 @@ $_tx_timer_interrupt:
|
|||||||
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
|
||||||
/* 04-25-2022 Zhen Kong Updated comments, */
|
/* 04-25-2022 Zhen Kong Updated comments, */
|
||||||
/* resulting in version 6.1.11 */
|
/* resulting in version 6.1.11 */
|
||||||
/* 03-08-2023 Cindy Deng Modified comment(s), added */
|
/* xx-xx-xxxx Tiejun Zhou Modified comment(s), added */
|
||||||
/* #include tx_user.h, */
|
/* #include tx_user.h, */
|
||||||
/* resulting in version 6.2.1 */
|
/* resulting in version 6.x */
|
||||||
/* */
|
/* */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
.global _tx_timer_interrupt
|
.global _tx_timer_interrupt
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user