summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-09-26Fixed the issue of the data/bss section cannot be read from ARM FVP debug ↵Yajun Xia
tool in cortex-A5 GNU port (#306) https://msazure.visualstudio.com/One/_workitems/edit/25153813/
2023-09-18Fixed the issue of the data/bss section cannot be read from ARM FVP debug ↵Yajun Xia
tool in cortex-A9 GNU port. (#303) https://msazure.visualstudio.com/One/_workitems/edit/25153785/
2023-09-18Fixed the issue of the data/bss section cannot be read from ARM FVP debug ↵Yajun Xia
tool in cortex-A8 GNU port. (#302) https://msazure.visualstudio.com/One/_workitems/edit/25139203/
2023-09-15Fixed the issue of the data/bss section cannot be read from ARM FVP d… (#301)Yajun Xia
* Fixed the issue of the data/bss section cannot be read from ARM FVP debug tool in cortex-A7 GNU port. https://msazure.visualstudio.com/One/_workitems/edit/24597276/ * remove untracked files.
2023-09-14Fixed the issue of ports_arch_check failed on the step of copy ports arch on ↵Yajun Xia
ARMv8 ports. (#300) https://msazure.visualstudio.com/One/_workitems/edit/25154735/
2023-08-07Added thumb mode support under IAR for module manager on Cortex-A7 pl… (#289)yajunxiaMS
* Added thumb mode support under IAR for module manager on Cortex-A7 platform. * update code for comments.
2023-07-21Added thumb mode support under GNU for module manager on Cortex-A7 pl… (#287)yajunxiaMS
* Added thumb mode support under GNU for module manager on Cortex-A7 platform. * update code for comment.
2023-07-13Allow manual trigger for CodeQL action (#286)TiejunZhou
2023-07-13Enable CodeQL (#285)TiejunZhou
* Enable CodeQL * Build cortex-m0 in CodeQL * Trigger the CodeQL by cron only
2023-06-26Added memory barrier before thread scheduling for ARMv8-A ThreadX SMP. (#280)TiejunZhou
2023-06-21Unify ThreadX and SMP for ARMv8-A. (#275)TiejunZhou
* Unify ThreadX and SMP for ARMv8-A. * Fix path in pipeline to check ports arch. * Add ignore folders for ARM DS * Generate ThreadX and SMP ports for ARMv8-A. * Ignore untracked files for ports_arch check. * Use arch instead of CPU to simplify the project management.
2023-06-21SysTick initialization problem fixed in tx_initialize_low_level.sAlex Kiselev
Problem with first system tick was detected, it needs much more time for the first tick as it's defined. The reason for this behavior is incorrect initialization of the SysTick timer in the port file for the Cortex-M0. It doesn't reset the SysTick Current Value Register despite the fact that its value is not initialized at startup (see https://developer.arm.com/documentation/dui0552/a/cortex-m3-peripherals/system-timer--systick). So if we have 0xFFFFFF (this register has 24-bit), it means we will get about 256*256*256 / 48000000 for the tact frequency of 48MHz to reach the zero, that makes 350ms delay at startup.
2023-06-20Remove duplicate declaration "invalidateCaches_IS"Du Huanpeng
Signed-off-by: Du Huanpeng <[email protected]>
2023-06-20fix link flag to -mcpu=cortex-a9Du Huanpeng
Signed-off-by: Du Huanpeng <[email protected]>
2023-06-19Fix compile warnings in Linux port. (#276)Yanwu Cai
2023-06-06Add a pull request template (#272)TiejunZhou
2023-06-01Update tx_port.hPaulo Condeça
removed extra spaces
2023-05-24Include tx_user.h in cortex_m33/55/85 IAR port (#267)TiejunZhou
2023-05-19Export _tx_handler_svc_unrecognized as weak symbol. (#264)Xiuwen Cai
2023-05-18Fix MISRA issues for ThreadX SMP (#263)TiejunZhou
* Fixed MISRA2012 rule 10.4_a The operands `pool_ptr->tx_byte_pool_fragments' and `2' have essential type categories unsigned 32-bit int and signed 8-bit int, which do not match. * Fixed MISRA2012 rule 10.4_a The operands `next_priority' and `TX_MAX_PRIORITIES' have essential type categories unsigned 32-bit int and signed 8-bit int, which do not match. * Fixed MISRA2012 rule 8.3 Declaration/definition of `_tx_thread_smp_preemptable_threads_get' is inconsistent with previous declaration/definition in types and/or type qualifiers
2023-05-12Add random number stack filling option. (#257)Xiuwen Cai
Co-authored-by: TiejunZhou <[email protected]>
2023-05-12Update LICENSE.txt (#261)Stefan Wick
2023-04-24Include tx_user.h in cortex_m3/4/7 IAR and AC5 port (#255)TiejunZhou
* Include tx_user.h in ARMv7-M IAR port * Include tx_user.h in ARMv7-M AC5 port * Include tx_user.h in cortex_m3/4/7 IAR and AC5 port
2023-04-23Release scripts to validate ThreadX port (#254)TiejunZhou
2023-04-21Update devcontainer to Ubuntu 22.04 (#253)TiejunZhou
2023-04-20Update CFS usage (#252)TiejunZhou
2023-04-19Release ARMv7-A architecture ports and add tx_user.h to GNU port assembly ↵TiejunZhou
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
2023-04-18Release ARMv7-M and ARMv8-M architecture ports (#249)TiejunZhou
* Release ARMv7-M and ARMv8-M architecture ports * Add a pipeline to check ports_arch
2023-04-17Filter the path for PR trigger and add codeowners (#248)TiejunZhou
* Filter the path for PR trigger * Add codeowners * Fix syntax in pipeline
2023-04-17Fix path to test reports in pipeline (#247)TiejunZhou
* Fix path to test reports in pipeline * Fix test case when CPU starves, the thread 2 can run 14 ronuds.
2023-04-14Fix random failure in test case threadx_event_flag_suspension_timeout_test.c ↵TiejunZhou
(#246) Depending on the starting time, thread 1 can run either 32 or 33 rounds.
2023-04-13Merge pull request #244 from azure-rtos/tizho/testTiejunZhou
Release ThreadX regression system
2023-04-12Add Azure DevOps pipelines for ThreadX testTiejun Zhou
2023-04-04Release ThreadX regression systemTiejun Zhou
2023-03-31Update on 31 Mar 2023. Expand to see details.Tiejun Zhou
af5702cbf Include tx_user.h only when TX_INCLUDE_USER_DEFINE_FILE is defined for assembly files
2023-03-22Merge pull request #236 from wickste/patch-1TiejunZhou
Update LICENSED-HARDWARE.txt
2023-03-21Update LICENSED-HARDWARE.txtStefan Wick
Adding per Renesas updated support for MPUs
2023-03-08Release 6.2.1 on 08 Mar 2023. Expand to see details.v6.2.1_relTiejun Zhou
cee19603d Include tx_user.h conditionally. e40e08007 Update owners d69641273 Update release date and version 394aee52f Add tx_user.h to GNU port assembly files 5cca2ddd0 RISC-V 64 bit port for Microchip e0f2c373c Link Winmm.lib that required by the high-resolution timer. 6af472a68 Update Win32 port with high resolution timer. aea7b556a Add DMB ISH barrier inst in ARMv8-A SMP scheduler 19091a262 Add .section .preamble to m3 m4 m7 module ports ced60e1b7 Add missing parenthesis in ports assembly file 309dc77ca Modules Cortex-A7 IAR new port c752a4063 Modules Cortex-A7 GNU new port dc224b90f Fix race condition in tx_thread_wait_abort and update regression test 6e261f5b7 create threadx cmsis-pack
2023-02-10Update LICENSED-HARDWARE.txtLiya Du
2023-02-10Update LICENSED-HARDWARE.txtLiya Du
Add new NXP and Renesas series.
2023-01-18Update on 18 Jan 2023. Expand to see details.Scott Larson
9c3acb6ce armv8-m compile time FPU fix 37daa35e7 added tx_trace.h include to module stop.c 39824289f Remove internal deprecated files. fe2f80f43 Add a notice for not released file. 7fdd3782a Upgrade to the latest Container Images.
2022-12-16Update on 16 Dec 2022. Expand to see details.Scott Larson
b5d5df511 #include tx_user.h in assembly files for cortex-m ports 33e04e3d5 initial port of MIPS SMP for GHS and GNU 2eda2c17d capitalize extensions for M23 asm files 21c354ccb Fix armv7-m MPU settings for corner case, unify txm_module_port.h files 4a1ff93f9 remove uneeded include for ac6 c823e91ff update riscv iar example for latest iar tools 5559d185d check module stack for overlap (not kernel stack) efa9ce7b7 apply patch from mobileye to fix time slice processing 75fdcb722 Updated copy_armv7_cm.yml de04b9904 initialize unused MPU settings so that aliasing will work 79b317b60 add config directory to IAR RISC-V port in order to use simulator
2022-11-17update IAR RISC-V exampleScott Larson
2022-11-15Update issue templatesLiya Du
2022-11-15Update issue templatesLiya Du
2022-11-15Update issue templatesLiya Du
2022-11-02add 'config' directory to risc-v iar to support simulatorScott Larson
2022-10-26Release 6.2.0v6.2.0_relTiejun Zhou
2022-07-29Merge pull request #206 from azure-rtos/JideshMSFT-fix-cortex_m4-example_buildScott Larson
Delete cortexm_crt0.s and tx_simulator_startup.s which were removed from the latest release
2022-07-29Delete tx_simulator_startup.sJideshMSFT