|
|
@ -194,7 +194,7 @@ extern void vPortRestoreContextOfFirstTask( void ) PRIVILEGED_FUNCTION;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @brief Enter critical section.
|
|
|
|
* @brief Enter critical section.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
#if( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
#if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
void vPortEnterCritical( void ) FREERTOS_SYSTEM_CALL;
|
|
|
|
void vPortEnterCritical( void ) FREERTOS_SYSTEM_CALL;
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
void vPortEnterCritical( void ) PRIVILEGED_FUNCTION;
|
|
|
|
void vPortEnterCritical( void ) PRIVILEGED_FUNCTION;
|
|
|
@ -203,7 +203,7 @@ extern void vPortRestoreContextOfFirstTask( void ) PRIVILEGED_FUNCTION;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @brief Exit from critical section.
|
|
|
|
* @brief Exit from critical section.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
#if( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
#if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
void vPortExitCritical( void ) FREERTOS_SYSTEM_CALL;
|
|
|
|
void vPortExitCritical( void ) FREERTOS_SYSTEM_CALL;
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
void vPortExitCritical( void ) PRIVILEGED_FUNCTION;
|
|
|
|
void vPortExitCritical( void ) PRIVILEGED_FUNCTION;
|
|
|
@ -316,9 +316,9 @@ void vPortSVCHandler_C( uint32_t * pulParam )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
__asm volatile
|
|
|
|
__asm volatile
|
|
|
|
(
|
|
|
|
(
|
|
|
|
" mrs r1, control \n"/* Obtain current control value. */
|
|
|
|
" mrs r1, control \n" /* Obtain current control value. */
|
|
|
|
" bic r1, r1, #1 \n"/* Set privilege bit. */
|
|
|
|
" bic r1, r1, #1 \n" /* Set privilege bit. */
|
|
|
|
" msr control, r1 \n"/* Write back new control value. */
|
|
|
|
" msr control, r1 \n" /* Write back new control value. */
|
|
|
|
::: "r1", "memory"
|
|
|
|
::: "r1", "memory"
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -328,9 +328,9 @@ void vPortSVCHandler_C( uint32_t * pulParam )
|
|
|
|
case portSVC_RAISE_PRIVILEGE:
|
|
|
|
case portSVC_RAISE_PRIVILEGE:
|
|
|
|
__asm volatile
|
|
|
|
__asm volatile
|
|
|
|
(
|
|
|
|
(
|
|
|
|
" mrs r1, control \n"/* Obtain current control value. */
|
|
|
|
" mrs r1, control \n" /* Obtain current control value. */
|
|
|
|
" bic r1, r1, #1 \n"/* Set privilege bit. */
|
|
|
|
" bic r1, r1, #1 \n" /* Set privilege bit. */
|
|
|
|
" msr control, r1 \n"/* Write back new control value. */
|
|
|
|
" msr control, r1 \n" /* Write back new control value. */
|
|
|
|
::: "r1", "memory"
|
|
|
|
::: "r1", "memory"
|
|
|
|
);
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
@ -352,6 +352,7 @@ BaseType_t xPortStartScheduler( void )
|
|
|
|
#if ( configENABLE_ERRATA_837070_WORKAROUND == 1 )
|
|
|
|
#if ( configENABLE_ERRATA_837070_WORKAROUND == 1 )
|
|
|
|
configASSERT( ( portCPUID == portCORTEX_M7_r0p1_ID ) || ( portCPUID == portCORTEX_M7_r0p0_ID ) );
|
|
|
|
configASSERT( ( portCPUID == portCORTEX_M7_r0p1_ID ) || ( portCPUID == portCORTEX_M7_r0p0_ID ) );
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
|
|
/* When using this port on a Cortex-M7 r0p0 or r0p1 core, define
|
|
|
|
/* When using this port on a Cortex-M7 r0p0 or r0p1 core, define
|
|
|
|
* configENABLE_ERRATA_837070_WORKAROUND to 1 in your
|
|
|
|
* configENABLE_ERRATA_837070_WORKAROUND to 1 in your
|
|
|
|
* FreeRTOSConfig.h. */
|
|
|
|
* FreeRTOSConfig.h. */
|
|
|
@ -362,6 +363,7 @@ BaseType_t xPortStartScheduler( void )
|
|
|
|
#if ( configASSERT_DEFINED == 1 )
|
|
|
|
#if ( configASSERT_DEFINED == 1 )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
volatile uint32_t ulOriginalPriority;
|
|
|
|
volatile uint32_t ulOriginalPriority;
|
|
|
|
|
|
|
|
volatile uint32_t ulImplementedPrioBits = 0;
|
|
|
|
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
|
|
|
|
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
|
|
|
|
volatile uint8_t ucMaxPriorityValue;
|
|
|
|
volatile uint8_t ucMaxPriorityValue;
|
|
|
|
|
|
|
|
|
|
|
@ -393,20 +395,46 @@ BaseType_t xPortStartScheduler( void )
|
|
|
|
|
|
|
|
|
|
|
|
/* Calculate the maximum acceptable priority group value for the number
|
|
|
|
/* Calculate the maximum acceptable priority group value for the number
|
|
|
|
* of bits read back. */
|
|
|
|
* of bits read back. */
|
|
|
|
ulMaxPRIGROUPValue = portMAX_PRIGROUP_BITS;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE )
|
|
|
|
while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ulMaxPRIGROUPValue--;
|
|
|
|
ulImplementedPrioBits++;
|
|
|
|
ucMaxPriorityValue <<= ( uint8_t ) 0x01;
|
|
|
|
ucMaxPriorityValue <<= ( uint8_t ) 0x01;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if( ulImplementedPrioBits == 8 )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
/* When the hardware implements 8 priority bits, there is no way for
|
|
|
|
|
|
|
|
* the software to configure PRIGROUP to not have sub-priorities. As
|
|
|
|
|
|
|
|
* a result, the least significant bit is always used for sub-priority
|
|
|
|
|
|
|
|
* and there are 128 preemption priorities and 2 sub-priorities.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* This may cause some confusion in some cases - for example, if
|
|
|
|
|
|
|
|
* configMAX_SYSCALL_INTERRUPT_PRIORITY is set to 5, both 5 and 4
|
|
|
|
|
|
|
|
* priority interrupts will be masked in Critical Sections as those
|
|
|
|
|
|
|
|
* are at the same preemption priority. This may appear confusing as
|
|
|
|
|
|
|
|
* 4 is higher (numerically lower) priority than
|
|
|
|
|
|
|
|
* configMAX_SYSCALL_INTERRUPT_PRIORITY and therefore, should not
|
|
|
|
|
|
|
|
* have been masked. Instead, if we set configMAX_SYSCALL_INTERRUPT_PRIORITY
|
|
|
|
|
|
|
|
* to 4, this confusion does not happen and the behaviour remains the same.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* The following assert ensures that the sub-priority bit in the
|
|
|
|
|
|
|
|
* configMAX_SYSCALL_INTERRUPT_PRIORITY is clear to avoid the above mentioned
|
|
|
|
|
|
|
|
* confusion. */
|
|
|
|
|
|
|
|
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & 0x1U ) == 0U );
|
|
|
|
|
|
|
|
ulMaxPRIGROUPValue = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ulMaxPRIGROUPValue = portMAX_PRIGROUP_BITS - ulImplementedPrioBits;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __NVIC_PRIO_BITS
|
|
|
|
#ifdef __NVIC_PRIO_BITS
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/* Check the CMSIS configuration that defines the number of
|
|
|
|
/* Check the CMSIS configuration that defines the number of
|
|
|
|
* priority bits matches the number of priority bits actually queried
|
|
|
|
* priority bits matches the number of priority bits actually queried
|
|
|
|
* from the hardware. */
|
|
|
|
* from the hardware. */
|
|
|
|
configASSERT( ( portMAX_PRIGROUP_BITS - ulMaxPRIGROUPValue ) == __NVIC_PRIO_BITS );
|
|
|
|
configASSERT( ulImplementedPrioBits == __NVIC_PRIO_BITS );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
@ -415,7 +443,7 @@ BaseType_t xPortStartScheduler( void )
|
|
|
|
/* Check the FreeRTOS configuration that defines the number of
|
|
|
|
/* Check the FreeRTOS configuration that defines the number of
|
|
|
|
* priority bits matches the number of priority bits actually queried
|
|
|
|
* priority bits matches the number of priority bits actually queried
|
|
|
|
* from the hardware. */
|
|
|
|
* from the hardware. */
|
|
|
|
configASSERT( ( portMAX_PRIGROUP_BITS - ulMaxPRIGROUPValue ) == configPRIO_BITS );
|
|
|
|
configASSERT( ulImplementedPrioBits == configPRIO_BITS );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
@ -468,7 +496,7 @@ void vPortEndScheduler( void )
|
|
|
|
|
|
|
|
|
|
|
|
void vPortEnterCritical( void )
|
|
|
|
void vPortEnterCritical( void )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
#if( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
#if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
if( portIS_PRIVILEGED() == pdFALSE )
|
|
|
|
if( portIS_PRIVILEGED() == pdFALSE )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
portRAISE_PRIVILEGE();
|
|
|
|
portRAISE_PRIVILEGE();
|
|
|
@ -476,6 +504,7 @@ void vPortEnterCritical( void )
|
|
|
|
|
|
|
|
|
|
|
|
portDISABLE_INTERRUPTS();
|
|
|
|
portDISABLE_INTERRUPTS();
|
|
|
|
uxCriticalNesting++;
|
|
|
|
uxCriticalNesting++;
|
|
|
|
|
|
|
|
|
|
|
|
/* This is not the interrupt safe version of the enter critical function so
|
|
|
|
/* This is not the interrupt safe version of the enter critical function so
|
|
|
|
* assert() if it is being called from an interrupt context. Only API
|
|
|
|
* assert() if it is being called from an interrupt context. Only API
|
|
|
|
* functions that end in "FromISR" can be used in an interrupt. Only assert if
|
|
|
|
* functions that end in "FromISR" can be used in an interrupt. Only assert if
|
|
|
@ -485,6 +514,7 @@ void vPortEnterCritical( void )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 );
|
|
|
|
configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
portMEMORY_BARRIER();
|
|
|
|
portMEMORY_BARRIER();
|
|
|
|
|
|
|
|
|
|
|
|
portRESET_PRIVILEGE();
|
|
|
|
portRESET_PRIVILEGE();
|
|
|
@ -494,6 +524,7 @@ void vPortEnterCritical( void )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
portDISABLE_INTERRUPTS();
|
|
|
|
portDISABLE_INTERRUPTS();
|
|
|
|
uxCriticalNesting++;
|
|
|
|
uxCriticalNesting++;
|
|
|
|
|
|
|
|
|
|
|
|
/* This is not the interrupt safe version of the enter critical function so
|
|
|
|
/* This is not the interrupt safe version of the enter critical function so
|
|
|
|
* assert() if it is being called from an interrupt context. Only API
|
|
|
|
* assert() if it is being called from an interrupt context. Only API
|
|
|
|
* functions that end in "FromISR" can be used in an interrupt. Only assert if
|
|
|
|
* functions that end in "FromISR" can be used in an interrupt. Only assert if
|
|
|
@ -504,9 +535,10 @@ void vPortEnterCritical( void )
|
|
|
|
configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 );
|
|
|
|
configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#else /* if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 ) */
|
|
|
|
portDISABLE_INTERRUPTS();
|
|
|
|
portDISABLE_INTERRUPTS();
|
|
|
|
uxCriticalNesting++;
|
|
|
|
uxCriticalNesting++;
|
|
|
|
|
|
|
|
|
|
|
|
/* This is not the interrupt safe version of the enter critical function so
|
|
|
|
/* This is not the interrupt safe version of the enter critical function so
|
|
|
|
* assert() if it is being called from an interrupt context. Only API
|
|
|
|
* assert() if it is being called from an interrupt context. Only API
|
|
|
|
* functions that end in "FromISR" can be used in an interrupt. Only assert if
|
|
|
|
* functions that end in "FromISR" can be used in an interrupt. Only assert if
|
|
|
@ -516,13 +548,13 @@ void vPortEnterCritical( void )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 );
|
|
|
|
configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 ) */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
void vPortExitCritical( void )
|
|
|
|
void vPortExitCritical( void )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
#if( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
#if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 )
|
|
|
|
if( portIS_PRIVILEGED() == pdFALSE )
|
|
|
|
if( portIS_PRIVILEGED() == pdFALSE )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
portRAISE_PRIVILEGE();
|
|
|
|
portRAISE_PRIVILEGE();
|
|
|
@ -535,6 +567,7 @@ void vPortExitCritical( void )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
portENABLE_INTERRUPTS();
|
|
|
|
portENABLE_INTERRUPTS();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
portMEMORY_BARRIER();
|
|
|
|
portMEMORY_BARRIER();
|
|
|
|
|
|
|
|
|
|
|
|
portRESET_PRIVILEGE();
|
|
|
|
portRESET_PRIVILEGE();
|
|
|
@ -550,7 +583,7 @@ void vPortExitCritical( void )
|
|
|
|
portENABLE_INTERRUPTS();
|
|
|
|
portENABLE_INTERRUPTS();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#else /* if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 ) */
|
|
|
|
configASSERT( uxCriticalNesting );
|
|
|
|
configASSERT( uxCriticalNesting );
|
|
|
|
uxCriticalNesting--;
|
|
|
|
uxCriticalNesting--;
|
|
|
|
|
|
|
|
|
|
|
@ -558,7 +591,7 @@ void vPortExitCritical( void )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
portENABLE_INTERRUPTS();
|
|
|
|
portENABLE_INTERRUPTS();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* if ( configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS == 1 ) */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|