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/Renesas/SH2A_FPU/portmacro.h

138 lines
5.3 KiB
C
Raw Normal View History

2009-12-28 23:06:11 +08:00
/*
* FreeRTOS Kernel V10.3.1
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://www.FreeRTOS.org
* http://aws.amazon.com/freertos
*
*/
2009-12-28 23:06:11 +08:00
#ifndef PORTMACRO_H
2020-07-02 13:27:40 +08:00
#define PORTMACRO_H
2009-12-28 23:06:11 +08:00
2020-07-02 13:27:40 +08:00
#include <machine.h>
2009-12-28 23:06:11 +08:00
2020-07-02 13:27:40 +08:00
#ifdef __cplusplus
extern "C" {
#endif
2009-12-28 23:06:11 +08:00
/*-----------------------------------------------------------
* Port specific definitions.
2009-12-28 23:06:11 +08:00
*
* The settings in this file configure FreeRTOS correctly for the
* given hardware and compiler.
*
* These settings should not be altered.
*-----------------------------------------------------------
*/
2010-01-18 00:32:43 +08:00
/* Type definitions - these are a bit legacy and not really used now, other than
2020-07-02 13:27:40 +08:00
* portSTACK_TYPE and portBASE_TYPE. */
#define portCHAR char
#define portFLOAT float
#define portDOUBLE double
#define portLONG long
#define portSHORT short
#define portSTACK_TYPE uint32_t
#define portBASE_TYPE long
typedef portSTACK_TYPE StackType_t;
typedef long BaseType_t;
typedef unsigned long UBaseType_t;
#if ( configUSE_16_BIT_TICKS == 1 )
typedef uint16_t TickType_t;
#define portMAX_DELAY ( TickType_t ) 0xffff
#else
typedef uint32_t TickType_t;
#define portMAX_DELAY ( TickType_t ) 0xffffffffUL
/* 32-bit tick type on a 32-bit architecture, so reads of the tick count do
* not need to be guarded with a critical section. */
#define portTICK_TYPE_IS_ATOMIC 1
#endif
2009-12-28 23:06:11 +08:00
/*-----------------------------------------------------------*/
/* Hardware specifics. */
2020-07-02 13:27:40 +08:00
#define portBYTE_ALIGNMENT 8
#define portSTACK_GROWTH -1
#define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
#define portNOP() nop()
#define portSTART_SCHEDULER_TRAP_NO ( 32 )
#define portYIELD_TRAP_NO ( 33 )
#define portKERNEL_INTERRUPT_PRIORITY ( 1 )
2010-01-17 21:12:54 +08:00
2020-07-02 13:27:40 +08:00
void vPortYield( void );
#define portYIELD() vPortYield()
2010-01-17 21:12:54 +08:00
2020-07-02 13:27:40 +08:00
extern void vTaskSwitchContext( void );
#define portYIELD_FROM_ISR( x ) if( x != pdFALSE ) vTaskSwitchContext()
2010-02-16 01:16:38 +08:00
/*
* This function tells the kernel that the task referenced by xTask is going to
* use the floating point registers and therefore requires the floating point
* registers saved as part of its context.
2010-01-18 00:32:43 +08:00
*/
2020-07-02 13:27:40 +08:00
BaseType_t xPortUsesFloatingPoint( void * xTask );
2010-01-18 00:32:43 +08:00
/*
* The flop save and restore functions are defined in portasm.src and called by
* the trace "task switched in" and "trace task switched out" macros.
2010-01-18 00:32:43 +08:00
*/
2020-07-02 13:27:40 +08:00
void vPortSaveFlopRegisters( void * pulBuffer );
void vPortRestoreFlopRegisters( void * pulBuffer );
2010-01-18 00:32:43 +08:00
/*
* pxTaskTag is used to point to the buffer into which the floating point
2010-01-18 00:32:43 +08:00
* context should be saved. If pxTaskTag is NULL then the task does not use
* a floating point context.
*/
2020-07-02 13:27:40 +08:00
#define traceTASK_SWITCHED_OUT() if( pxCurrentTCB->pxTaskTag != NULL ) vPortSaveFlopRegisters( pxCurrentTCB->pxTaskTag )
#define traceTASK_SWITCHED_IN() if( pxCurrentTCB->pxTaskTag != NULL ) vPortRestoreFlopRegisters( pxCurrentTCB->pxTaskTag )
2010-01-17 21:12:54 +08:00
2010-01-18 00:32:43 +08:00
/*
* These macros should be called directly, but through the taskENTER_CRITICAL()
* and taskEXIT_CRITICAL() macros.
*/
2020-07-02 13:27:40 +08:00
#define portENABLE_INTERRUPTS() set_imask( 0x00 )
#define portDISABLE_INTERRUPTS() set_imask( portKERNEL_INTERRUPT_PRIORITY )
2009-12-28 23:06:11 +08:00
2010-01-18 00:32:43 +08:00
/* Critical nesting counts are stored in the TCB. */
2020-07-02 13:27:40 +08:00
#define portCRITICAL_NESTING_IN_TCB ( 1 )
2010-01-18 00:32:43 +08:00
/* The critical nesting functions defined within tasks.c. */
2020-07-02 13:27:40 +08:00
extern void vTaskEnterCritical( void );
extern void vTaskExitCritical( void );
#define portENTER_CRITICAL() vTaskEnterCritical();
#define portEXIT_CRITICAL() vTaskExitCritical();
2009-12-28 23:06:11 +08:00
/*-----------------------------------------------------------*/
/* Task function macros as described on the FreeRTOS.org WEB site. */
2020-07-02 13:27:40 +08:00
#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void * pvParameters )
#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void * pvParameters )
2009-12-28 23:06:11 +08:00
2020-07-02 13:27:40 +08:00
#ifdef __cplusplus
}
#endif
2009-12-28 23:06:11 +08:00
#endif /* PORTMACRO_H */