Skip to content

Commit

Permalink
Merge branch 'main' into add-task-dedicated-pac-key-support
Browse files Browse the repository at this point in the history
  • Loading branch information
aggarg authored Dec 18, 2024
2 parents c6be7f8 + e169442 commit 99742d2
Show file tree
Hide file tree
Showing 27 changed files with 94 additions and 89 deletions.
3 changes: 3 additions & 0 deletions .github/allowed_urls.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
https://www.renesas.com/us/en/document/mah/rh850f1k-group-users-manual-hardware?r=1170166
https://www.renesas.com/us/en/products/microcontrollers-microprocessors/rh850-automotive-mcus
https://www.renesas.com/us/en/software-tool/c-compiler-package-rh850-family#downloads
2 changes: 1 addition & 1 deletion .github/scripts/manifest_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def update_manifest_file(new_version_number):
for line in f:
line = line.strip()
if line.startswith('version'):
updated_lines.append(f'version: "v{new_version_number}"\n')
updated_lines.append(f'version: "V{new_version_number}"\n')
else:
updated_lines.append(f'{line}\n')

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
uses: actions/checkout@v4.1.1
- name: Link Verification
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
with:
allowlist-file: '.github/allowed_urls.txt'

verify-manifest:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name : "FreeRTOS-Kernel"
version: "v11.0.1+"
version: "V11.0.1+"
description: "FreeRTOS Kernel."
license: "MIT"
8 changes: 4 additions & 4 deletions portable/ARMv8M/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
4 changes: 2 additions & 2 deletions portable/GCC/ARM_CA9/portASM.S
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ switch_before_exit:
vApplicationIRQHandler:
PUSH {LR}
FMRX R1, FPSCR
VPUSH {D0-D15}
VPUSH {D0-D7}
VPUSH {D16-D31}
PUSH {R1}

Expand All @@ -311,7 +311,7 @@ vApplicationIRQHandler:

POP {R0}
VPOP {D16-D31}
VPOP {D0-D15}
VPOP {D0-D7}
VMSR FPSCR, R0

POP {PC}
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM23/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM23_NTZ/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM33/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM33_NTZ/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM35P/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM35P_NTZ/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM55/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
8 changes: 4 additions & 4 deletions portable/GCC/ARM_CM55_NTZ/non_secure/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ typedef void ( * portISR_t )( void );
*/
static void prvTaskExitError( void );

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

/**
* @brief Extract MPU region's access permissions from the Region Base Address
Expand All @@ -414,7 +414,7 @@ static void prvTaskExitError( void );
* @return uint32_t Access permissions.
*/
static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) PRIVILEGED_FUNCTION;
#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */

#if ( configENABLE_MPU == 1 )

Expand Down Expand Up @@ -876,7 +876,7 @@ static void prvTaskExitError( void )
}
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
#if ( ( configENABLE_MPU == 1 ) && ( configUSE_MPU_WRAPPERS_V1 == 0 ) )

static uint32_t prvGetRegionAccessPermissions( uint32_t ulRBARValue ) /* PRIVILEGED_FUNCTION */
{
Expand All @@ -895,7 +895,7 @@ static void prvTaskExitError( void )
return ulAccessPermissions;
}

#endif /* configENABLE_MPU */
#endif /* configENABLE_MPU == 1 && configUSE_MPU_WRAPPERS_V1 == 0 */
/*-----------------------------------------------------------*/

#if ( configENABLE_MPU == 1 )
Expand Down
Loading

0 comments on commit 99742d2

Please sign in to comment.