This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
FreeRTOS-Kernel/portable/IAR
RichardBarry bac101c988
Fix/clear MIE bit in initial RISC-V mstatus register. (#57)
* fix: CLEAR MIE BIT IN INITIAL RISC-V MSTATUS VALUE
The MIE bit in the RISC-V MSTATUS register is used to globally enable
or disable interrupts.  It is copied into the MPIE bit and cleared
on entry to an interrupt, and then copied back from the MPIE bit on
exit from an interrupt.

When a task is created it is given an initial MSTATUS value that is
derived from the current MSTATUS value with the MPIE bit force to 1,
but the MIE bit is not forced into any state.  This change forces
the MIE bit to 0 (interrupts disabled).

Why:
If a task is created before the scheduler is started the MIE bit
will happen to be 0 (interrupts disabled), which is fine.  If a
task is created after the scheduler has been started the MIE bit
is set (interrupts enabled), causing interrupts to unintentionally
become enabled inside the interrupt in which the task is first
moved to the running state - effectively breaking a critical
section which in turn could cause a crash if enabling interrupts
causes interrupts to nest.  It is only an issue when starting a
newly created task that was created after the scheduler was started.

Related Issues:
https://forums.freertos.org/t/risc-v-port-pxportinitialisestack-issue-about-mstatus-value-onto-the-stack/9622
Co-authored-by: Cobus van Eeden <35851496+cobusve@users.noreply.github.com>
2020-05-01 22:35:42 -07:00
..
78K0R version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ARM_CA5_No_GIC version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ARM_CA9 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ARM_CM0 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ARM_CM3 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ARM_CM4F version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ARM_CM4F_MPU Enable ARMv7-M MPU ports to place FreeRTOS kernel code outside of flash (#46) 2020-04-06 15:51:40 -07:00
ARM_CM7 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ARM_CM23 Add "Tickless Idle" support for ARMv8M ports (#29) 2020-03-16 10:50:49 -07:00
ARM_CM23_NTZ/non_secure Add "Tickless Idle" support for ARMv8M ports (#29) 2020-03-16 10:50:49 -07:00
ARM_CM33 Add "Tickless Idle" support for ARMv8M ports (#29) 2020-03-16 10:50:49 -07:00
ARM_CM33_NTZ/non_secure Add "Tickless Idle" support for ARMv8M ports (#29) 2020-03-16 10:50:49 -07:00
ARM_CRx_No_GIC version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
ATMega323 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
AtmelSAM7S64 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
AtmelSAM9XE version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
AVR32_UC3 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
LPC2000 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
MSP430 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
MSP430X version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
RISC-V Fix/clear MIE bit in initial RISC-V mstatus register. (#57) 2020-05-01 22:35:42 -07:00
RL78 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
RX100 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
RX600 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
RXv2 version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
STR71x version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
STR75x version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
STR91x version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00
V850ES version bump to v10.3.1 (#16) 2020-02-18 22:03:54 -08:00