mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Remove driver files that generate compiler warnings from the RISC-V_Renode_Emulator_SoftConsole project.
Update RISC-V ports so the interrupt stack is set to a known value before the scheduler is started if the interrupt stack is statically defined rather than re-using the main.c() stack.
This commit is contained in:
parent
16639d2d63
commit
07622ed3ee
|
@ -57,7 +57,7 @@
|
|||
#define configIDLE_SHOULD_YIELD 0
|
||||
#define configUSE_MUTEXES 1
|
||||
#define configQUEUE_REGISTRY_SIZE 8
|
||||
#define configCHECK_FOR_STACK_OVERFLOW 3
|
||||
#define configCHECK_FOR_STACK_OVERFLOW 2
|
||||
#define configUSE_RECURSIVE_MUTEXES 1
|
||||
#define configUSE_MALLOC_FAILED_HOOK 1
|
||||
#define configUSE_APPLICATION_TASK_TAG 0
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -153,6 +153,10 @@
|
|||
|
||||
<option id="ilg.gnumcueclipse.managedbuild.cross.riscv.option.c.compiler.other.458885637" name="Other compiler flags" superClass="ilg.gnumcueclipse.managedbuild.cross.riscv.option.c.compiler.other" useByScannerDiscovery="true" value="" valueType="string"/>
|
||||
|
||||
<option id="ilg.gnumcueclipse.managedbuild.cross.riscv.option.c.compiler.otherwarnings.501755172" name="Other warning flags" superClass="ilg.gnumcueclipse.managedbuild.cross.riscv.option.c.compiler.otherwarnings" useByScannerDiscovery="true" value="-Wall -Wextra" valueType="string"/>
|
||||
|
||||
<option id="ilg.gnumcueclipse.managedbuild.cross.riscv.option.c.compiler.otheroptimizations.161916863" name="Other optimization flags" superClass="ilg.gnumcueclipse.managedbuild.cross.riscv.option.c.compiler.otheroptimizations" useByScannerDiscovery="true" value="" valueType="string"/>
|
||||
|
||||
<inputType id="ilg.gnumcueclipse.managedbuild.cross.riscv.tool.c.compiler.input.1901773760" superClass="ilg.gnumcueclipse.managedbuild.cross.riscv.tool.c.compiler.input"/>
|
||||
|
||||
</tool>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
|
||||
|
||||
<provider class="org.eclipse.cdt.managedbuilder.language.settings.providers.GCCBuiltinSpecsDetector" console="false" env-hash="-1790871989465787416" id="ilg.gnumcueclipse.managedbuild.cross.riscv.GCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT RISC-V Cross GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} ${cross_toolchain_flags} -E -P -v -dD "${INPUTS}"" prefer-non-shared="true">
|
||||
<provider class="org.eclipse.cdt.managedbuilder.language.settings.providers.GCCBuiltinSpecsDetector" console="false" env-hash="-515639860269293471" id="ilg.gnumcueclipse.managedbuild.cross.riscv.GCCBuiltinSpecsDetector" keep-relative-paths="false" name="CDT RISC-V Cross GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} ${cross_toolchain_flags} -E -P -v -dD "${INPUTS}"" prefer-non-shared="true">
|
||||
|
||||
<language-scope id="org.eclipse.cdt.core.gcc"/>
|
||||
|
||||
|
|
|
@ -85,7 +85,6 @@
|
|||
*
|
||||
* See http://www.freertos.org/a00110.html.
|
||||
*----------------------------------------------------------*/
|
||||
|
||||
#define configCLINT_BASE_ADDRESS PRCI_BASE
|
||||
#define configUSE_PREEMPTION 1
|
||||
#define configUSE_IDLE_HOOK 1
|
||||
|
@ -143,4 +142,7 @@ to exclude the API function. */
|
|||
header file. */
|
||||
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); __asm volatile( "ebreak" ); for( ;; ); }
|
||||
|
||||
/* Defined in main.c and used in main_blinky.c and main_full.c. */
|
||||
void vSendString( const char * const pcString );
|
||||
|
||||
#endif /* FREERTOS_CONFIG_H */
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,35 +0,0 @@
|
|||
/*******************************************************************************
|
||||
* (c) Copyright 2009-2015 Microsemi SoC Products Group. All rights reserved.
|
||||
*
|
||||
* CoreI2C driver interrupt control.
|
||||
*
|
||||
* SVN $Revision: 7984 $
|
||||
* SVN $Date: 2015-10-12 12:07:40 +0530 (Mon, 12 Oct 2015) $
|
||||
*/
|
||||
#include "hal.h"
|
||||
#include "hal_assert.h"
|
||||
#include "core_i2c.h"
|
||||
#include "riscv_hal.h"
|
||||
|
||||
|
||||
#define I2C_IRQn External_29_IRQn
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
* This function must be modified to enable interrupts generated from the
|
||||
* CoreI2C instance identified as parameter.
|
||||
*/
|
||||
void I2C_enable_irq( i2c_instance_t * this_i2c )
|
||||
{
|
||||
PLIC_EnableIRQ(I2C_IRQn);
|
||||
// HAL_ASSERT(0)
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
* This function must be modified to disable interrupts generated from the
|
||||
* CoreI2C instance identified as parameter.
|
||||
*/
|
||||
void I2C_disable_irq( i2c_instance_t * this_i2c )
|
||||
{
|
||||
PLIC_DisableIRQ(I2C_IRQn);
|
||||
// HAL_ASSERT(0)
|
||||
}
|
|
@ -1,266 +0,0 @@
|
|||
/*******************************************************************************
|
||||
* (c) Copyright 2016-2018 Microsemi SoC Products Group. All rights reserved.
|
||||
*
|
||||
* @file syscall.c
|
||||
* @author Microsemi SoC Products Group
|
||||
* @brief Stubs for system calls.
|
||||
*
|
||||
* SVN $Revision: 9661 $
|
||||
* SVN $Date: 2018-01-15 16:13:33 +0530 (Mon, 15 Jan 2018) $
|
||||
*/
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/times.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "encoding.h"
|
||||
|
||||
#ifdef MSCC_STDIO_THRU_CORE_UART_APB
|
||||
|
||||
#include "core_uart_apb.h"
|
||||
#include "hw_platform.h"
|
||||
|
||||
#endif /*MSCC_STDIO_THRU_CORE_UART_APB*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef MSCC_STDIO_THRU_CORE_UART_APB
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
* CoreUARTapb instance data for the CoreUARTapb instance used for standard
|
||||
* output.
|
||||
*/
|
||||
static UART_instance_t g_stdio_uart;
|
||||
|
||||
/*==============================================================================
|
||||
* Flag used to indicate if the UART driver needs to be initialized.
|
||||
*/
|
||||
static int g_stdio_uart_init_done = 0;
|
||||
#endif /*MSCC_STDIO_THRU_CORE_UART_APB*/
|
||||
|
||||
#undef errno
|
||||
int errno;
|
||||
|
||||
char *__env[1] = { 0 };
|
||||
char **environ = __env;
|
||||
|
||||
void write_hex(int fd, uint32_t hex)
|
||||
{
|
||||
uint8_t ii;
|
||||
uint8_t jj;
|
||||
char towrite;
|
||||
uint8_t digit;
|
||||
|
||||
write( fd , "0x", 2 );
|
||||
|
||||
for (ii = 8 ; ii > 0; ii--)
|
||||
{
|
||||
jj = ii-1;
|
||||
digit = ((hex & (0xF << (jj*4))) >> (jj*4));
|
||||
towrite = digit < 0xA ? ('0' + digit) : ('A' + (digit - 0xA));
|
||||
write( fd, &towrite, 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void _exit(int code)
|
||||
{
|
||||
#ifdef MSCC_STDIO_THRU_CORE_UART_APB
|
||||
const char * message = "\nProgam has exited with code:";
|
||||
|
||||
write(STDERR_FILENO, message, strlen(message));
|
||||
write_hex(STDERR_FILENO, code);
|
||||
#endif
|
||||
|
||||
while (1);
|
||||
}
|
||||
|
||||
void *_sbrk(ptrdiff_t incr)
|
||||
{
|
||||
extern char _end[];
|
||||
extern char _heap_end[];
|
||||
static char *curbrk = _end;
|
||||
|
||||
if ((curbrk + incr < _end) || (curbrk + incr > _heap_end))
|
||||
{
|
||||
return ((char *) - 1);
|
||||
}
|
||||
|
||||
curbrk += incr;
|
||||
return curbrk - incr;
|
||||
}
|
||||
|
||||
int _isatty(int fd)
|
||||
{
|
||||
if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
errno = EBADF;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stub(int err)
|
||||
{
|
||||
errno = err;
|
||||
return -1;
|
||||
}
|
||||
|
||||
int _open(const char* name, int flags, int mode)
|
||||
{
|
||||
return stub(ENOENT);
|
||||
}
|
||||
|
||||
int _openat(int dirfd, const char* name, int flags, int mode)
|
||||
{
|
||||
return stub(ENOENT);
|
||||
}
|
||||
|
||||
int _close(int fd)
|
||||
{
|
||||
return stub(EBADF);
|
||||
}
|
||||
|
||||
int _execve(const char* name, char* const argv[], char* const env[])
|
||||
{
|
||||
return stub(ENOMEM);
|
||||
}
|
||||
|
||||
int _fork()
|
||||
{
|
||||
return stub(EAGAIN);
|
||||
}
|
||||
|
||||
int _fstat(int fd, struct stat *st)
|
||||
{
|
||||
if (isatty(fd))
|
||||
{
|
||||
st->st_mode = S_IFCHR;
|
||||
return 0;
|
||||
}
|
||||
|
||||
return stub(EBADF);
|
||||
}
|
||||
|
||||
int _getpid()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int _kill(int pid, int sig)
|
||||
{
|
||||
return stub(EINVAL);
|
||||
}
|
||||
|
||||
int _link(const char *old_name, const char *new_name)
|
||||
{
|
||||
return stub(EMLINK);
|
||||
}
|
||||
|
||||
off_t _lseek(int fd, off_t ptr, int dir)
|
||||
{
|
||||
if (_isatty(fd))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
return stub(EBADF);
|
||||
}
|
||||
|
||||
ssize_t _read(int fd, void* ptr, size_t len)
|
||||
{
|
||||
#ifdef MSCC_STDIO_THRU_CORE_UART_APB
|
||||
if (_isatty(fd))
|
||||
{
|
||||
/*--------------------------------------------------------------------------
|
||||
* Initialize the UART driver if it is the first time this function is
|
||||
* called.
|
||||
*/
|
||||
if ( !g_stdio_uart_init_done )
|
||||
{
|
||||
/******************************************************************************
|
||||
* Baud value:
|
||||
* This value is calculated using the following equation:
|
||||
* BAUD_VALUE = (CLOCK / (16 * BAUD_RATE)) - 1
|
||||
*****************************************************************************/
|
||||
UART_init( &g_stdio_uart, MSCC_STDIO_UART_BASE_ADDR, ((SYS_CLK_FREQ/(16 * MSCC_STDIO_BAUD_VALUE))-1), (DATA_8_BITS | NO_PARITY));
|
||||
g_stdio_uart_init_done = 1;
|
||||
}
|
||||
|
||||
return UART_get_rx(&g_stdio_uart, (uint8_t*) ptr, len);
|
||||
}
|
||||
#endif
|
||||
|
||||
return stub(EBADF);
|
||||
}
|
||||
|
||||
int _stat(const char* file, struct stat* st)
|
||||
{
|
||||
return stub(EACCES);
|
||||
}
|
||||
|
||||
clock_t _times(struct tms* buf)
|
||||
{
|
||||
return stub(EACCES);
|
||||
}
|
||||
|
||||
int _unlink(const char* name)
|
||||
{
|
||||
return stub(ENOENT);
|
||||
}
|
||||
|
||||
int _wait(int* status)
|
||||
{
|
||||
return stub(ECHILD);
|
||||
}
|
||||
|
||||
ssize_t _write(int fd, const void* ptr, size_t len)
|
||||
{
|
||||
|
||||
#ifdef MSCC_STDIO_THRU_CORE_UART_APB
|
||||
const uint8_t * current = (const uint8_t *) ptr;
|
||||
size_t jj;
|
||||
|
||||
if (_isatty(fd))
|
||||
{
|
||||
/*--------------------------------------------------------------------------
|
||||
* Initialize the UART driver if it is the first time this function is
|
||||
* called.
|
||||
*/
|
||||
if ( !g_stdio_uart_init_done )
|
||||
{
|
||||
/******************************************************************************
|
||||
* Baud value:
|
||||
* This value is calculated using the following equation:
|
||||
* BAUD_VALUE = (CLOCK / (16 * BAUD_RATE)) - 1
|
||||
*****************************************************************************/
|
||||
UART_init( &g_stdio_uart, MSCC_STDIO_UART_BASE_ADDR, ((SYS_CLK_FREQ/(16 * MSCC_STDIO_BAUD_VALUE))-1), (DATA_8_BITS | NO_PARITY));
|
||||
g_stdio_uart_init_done = 1;
|
||||
}
|
||||
|
||||
for (jj = 0; jj < len; jj++)
|
||||
{
|
||||
UART_send(&g_stdio_uart, current + jj, 1);
|
||||
if (current[jj] == '\n')
|
||||
{
|
||||
UART_send(&g_stdio_uart, (const uint8_t *)"\r", 1);
|
||||
}
|
||||
}
|
||||
return len;
|
||||
}
|
||||
#endif
|
||||
|
||||
return stub(EBADF);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
|
@ -175,7 +175,6 @@ unsigned long ulReceivedValue;
|
|||
const unsigned long ulExpectedValue = 100UL;
|
||||
const char * const pcPassMessage = "Blink\r\n";
|
||||
const char * const pcFailMessage = "Unexpected value received\r\n";
|
||||
extern void vSendString( const char * const pcString );
|
||||
extern void vToggleLED( void );
|
||||
|
||||
/* Remove compiler warning about unused parameter. */
|
||||
|
|
|
@ -230,7 +230,6 @@ uint32_t ulLastRegTest1Value = 0, ulLastRegTest2Value = 0;
|
|||
uint32_t ulLastTimer0Interrupts = 0, ulLastTimer1Interrupts = 0;
|
||||
char * const pcPassMessage = ".";
|
||||
char * pcStatusMessage = pcPassMessage;
|
||||
extern void vSendString( const char * const pcString );
|
||||
extern void vToggleLED( void );
|
||||
|
||||
/* Just to stop compiler warnings. */
|
||||
|
|
|
@ -121,7 +121,7 @@ static uint32_t ulLEDState = 0;
|
|||
|
||||
void vSendString( const char * const pcString )
|
||||
{
|
||||
UART_polled_tx_string( &g_uart, pcString );
|
||||
UART_polled_tx_string( &g_uart, ( const uint8_t * ) pcString );
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
|
@ -181,5 +181,13 @@ void vApplicationTickHook( void )
|
|||
}
|
||||
#endif
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void *_sbrk( ptrdiff_t incr )
|
||||
{
|
||||
/* Required to link, but force an assert to ensure it is never actually
|
||||
called. */
|
||||
configASSERT( ( void * ) incr == NULL );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -19,11 +19,13 @@
|
|||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
#define configUSE_IDLE_HOOK 1
|
||||
#define configUSE_TICK_HOOK 1
|
||||
#define configUSE_DAEMON_TASK_STARTUP_HOOK 1
|
||||
#define configTICK_RATE_HZ ( 1000 ) /* In this non-real time simulated environment the tick frequency has to be at least a multiple of the Win32 tick frequency, and therefore very slow. */
|
||||
#define configTICK_RATE_HZ ( 100 ) /* In this non-real time simulated environment the tick frequency has to be at least a multiple of the Win32 tick frequency, and therefore very slow. */
|
||||
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 70 ) /* In this simulated case, the stack only has to hold one small structure as the real stack is part of the win32 thread. */
|
||||
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 52 * 1024 ) )
|
||||
#define configMAX_TASK_NAME_LEN ( 12 )
|
||||
|
|
|
@ -34,6 +34,9 @@
|
|||
#include "task.h"
|
||||
#include "portmacro.h"
|
||||
|
||||
/* Standard includes. */
|
||||
#include "string.h"
|
||||
|
||||
#ifndef configCLINT_BASE_ADDRESS
|
||||
#warning configCLINT_BASE_ADDRESS must be defined in FreeRTOSConfig.h. If the target chip includes a Core Local Interrupter (CLINT) then set configCLINT_BASE_ADDRESS to the CLINT base address. Otherwise set configCLINT_BASE_ADDRESS to 0.
|
||||
#endif
|
||||
|
@ -57,6 +60,11 @@ interrupt stack after the scheduler has started. */
|
|||
#ifdef configISR_STACK_SIZE_WORDS
|
||||
static __attribute__ ((aligned(16))) StackType_t xISRStack[ configISR_STACK_SIZE_WORDS ] = { 0 };
|
||||
const StackType_t xISRStackTop = ( StackType_t ) &( xISRStack[ configISR_STACK_SIZE_WORDS & ~portBYTE_ALIGNMENT_MASK ] );
|
||||
|
||||
/* Don't use 0xa5 as the stack fill bytes as that is used by the kernerl for
|
||||
the task stacks, and so will legitimately appear in many positions within
|
||||
the ISR stack. */
|
||||
#define portISR_STACK_FILL_BYTE 0xee
|
||||
#else
|
||||
extern const uint32_t __freertos_irq_stack_top[];
|
||||
const StackType_t xISRStackTop = ( StackType_t ) __freertos_irq_stack_top;
|
||||
|
@ -82,12 +90,8 @@ volatile uint64_t * pullMachineTimerCompareRegister = 0;
|
|||
stack checking. A problem in the ISR stack will trigger an assert, not call the
|
||||
stack overflow hook function (because the stack overflow hook is specific to a
|
||||
task stack, not the ISR stack). */
|
||||
#if( configCHECK_FOR_STACK_OVERFLOW > 2 )
|
||||
#if defined( configISR_STACK_SIZE_WORDS ) && ( configCHECK_FOR_STACK_OVERFLOW > 2 )
|
||||
#warning This path not tested, or even compiled yet.
|
||||
/* Don't use 0xa5 as the stack fill bytes as that is used by the kernerl for
|
||||
the task stacks, and so will legitimately appear in many positions within
|
||||
the ISR stack. */
|
||||
#define portISR_STACK_FILL_BYTE 0xee
|
||||
|
||||
static const uint8_t ucExpectedStackBytes[] = {
|
||||
portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, \
|
||||
|
@ -152,6 +156,12 @@ extern void xPortStartFirstTask( void );
|
|||
stack that was being used by main() prior to the scheduler being
|
||||
started. */
|
||||
configASSERT( ( xISRStackTop & portBYTE_ALIGNMENT_MASK ) == 0 );
|
||||
|
||||
#ifdef configISR_STACK_SIZE_WORDS
|
||||
{
|
||||
memset( ( void * ) xISRStack, portISR_STACK_FILL_BYTE, sizeof( xISRStack ) );
|
||||
}
|
||||
#endif /* configISR_STACK_SIZE_WORDS */
|
||||
}
|
||||
#endif /* configASSERT_DEFINED */
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ handle_asynchronous:
|
|||
li t4, -1
|
||||
lw t2, 0(t1) /* Load the low word of ullNextTime into t2. */
|
||||
lw t3, 4(t1) /* Load the high word of ullNextTime into t3. */
|
||||
sw t4, 0(t0) /* Low word no smaller than old value. */
|
||||
sw t4, 0(t0) /* Low word no smaller than old value to start with - will be overwritten below. */
|
||||
sw t3, 4(t0) /* Store high word of ullNextTime into compare register. No smaller than new value. */
|
||||
sw t2, 0(t0) /* Store low word of ullNextTime into compare register. */
|
||||
lw t0, uxTimerIncrementsForOneTick /* Load the value of ullTimerIncrementForOneTick into t0 (could this be optimized by storing in an array next to pullNextTime?). */
|
||||
|
@ -226,7 +226,7 @@ is_exception:
|
|||
csrr t0, mcause /* For viewing in the debugger only. */
|
||||
csrr t1, mepc /* For viewing in the debugger only */
|
||||
csrr t2, mstatus
|
||||
j is_exception
|
||||
j is_exception /* No other exceptions handled yet. */
|
||||
|
||||
as_yet_unhandled:
|
||||
csrr t0, mcause /* For viewing in the debugger only. */
|
||||
|
|
|
@ -34,6 +34,9 @@
|
|||
#include "task.h"
|
||||
#include "portmacro.h"
|
||||
|
||||
/* Standard includes. */
|
||||
#include "string.h"
|
||||
|
||||
#ifndef configCLINT_BASE_ADDRESS
|
||||
#warning configCLINT_BASE_ADDRESS must be defined in FreeRTOSConfig.h. If the target chip includes a Core Local Interrupter (CLINT) then set configCLINT_BASE_ADDRESS to the CLINT base address. Otherwise set configCLINT_BASE_ADDRESS to 0.
|
||||
#endif
|
||||
|
@ -57,6 +60,11 @@ interrupt stack after the scheduler has started. */
|
|||
#ifdef configISR_STACK_SIZE_WORDS
|
||||
static __attribute__ ((aligned(16))) StackType_t xISRStack[ configISR_STACK_SIZE_WORDS ] = { 0 };
|
||||
const StackType_t xISRStackTop = ( StackType_t ) &( xISRStack[ configISR_STACK_SIZE_WORDS & ~portBYTE_ALIGNMENT_MASK ] );
|
||||
|
||||
/* Don't use 0xa5 as the stack fill bytes as that is used by the kernerl for
|
||||
the task stacks, and so will legitimately appear in many positions within
|
||||
the ISR stack. */
|
||||
#define portISR_STACK_FILL_BYTE 0xee
|
||||
#else
|
||||
extern const uint32_t __freertos_irq_stack_top[];
|
||||
const StackType_t xISRStackTop = ( StackType_t ) __freertos_irq_stack_top;
|
||||
|
@ -77,17 +85,12 @@ const uint64_t *pullNextTime = &ullNextTime;
|
|||
const size_t uxTimerIncrementsForOneTick = ( size_t ) ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ); /* Assumes increment won't go over 32-bits. */
|
||||
volatile uint64_t * const pullMachineTimerCompareRegisterBase = ( uint64_t * ) ( configCLINT_BASE_ADDRESS + 0x4000 );
|
||||
volatile uint64_t * pullMachineTimerCompareRegister = 0;
|
||||
|
||||
/* Set configCHECK_FOR_STACK_OVERFLOW to 3 to add ISR stack checking to task
|
||||
stack checking. A problem in the ISR stack will trigger an assert, not call the
|
||||
stack overflow hook function (because the stack overflow hook is specific to a
|
||||
task stack, not the ISR stack). */
|
||||
#if( configCHECK_FOR_STACK_OVERFLOW > 2 )
|
||||
#if defined( configISR_STACK_SIZE_WORDS ) && ( configCHECK_FOR_STACK_OVERFLOW > 2 )
|
||||
#warning This path not tested, or even compiled yet.
|
||||
/* Don't use 0xa5 as the stack fill bytes as that is used by the kernerl for
|
||||
the task stacks, and so will legitimately appear in many positions within
|
||||
the ISR stack. */
|
||||
#define portISR_STACK_FILL_BYTE 0xee
|
||||
|
||||
static const uint8_t ucExpectedStackBytes[] = {
|
||||
portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, portISR_STACK_FILL_BYTE, \
|
||||
|
|
|
@ -99,12 +99,12 @@ at the top of this file. */
|
|||
EXTERN pxCurrentTCB
|
||||
EXTERN ulPortTrapHandler
|
||||
EXTERN vTaskSwitchContext
|
||||
EXTERN xTaskIncrementTick
|
||||
EXTERN Timer_IRQHandler
|
||||
EXTERN pullMachineTimerCompareRegister
|
||||
EXTERN pullNextTime
|
||||
EXTERN uxTimerIncrementsForOneTick /* size_t type so 32-bit on 32-bit core and 64-bits on 64-bit core. */
|
||||
EXTERN xISRStackTop
|
||||
EXTERN xTaskIncrementTick
|
||||
EXTERN portasmHANDLE_INTERRUPT
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
@ -231,11 +231,13 @@ test_if_environment_call:
|
|||
j processed_source
|
||||
|
||||
is_exception:
|
||||
ebreak
|
||||
j is_exception
|
||||
csrr t0, CSR_MCAUSE /* For viewing in the debugger only. */
|
||||
csrr t1, CSR_MEPC /* For viewing in the debugger only */
|
||||
csrr t2, CSR_MSTATUS
|
||||
j is_exception /* No other exceptions handled yet. */
|
||||
|
||||
as_yet_unhandled:
|
||||
ebreak
|
||||
csrr t0, mcause /* For viewing in the debugger only. */
|
||||
j as_yet_unhandled
|
||||
|
||||
processed_source:
|
||||
|
|
Loading…
Reference in a new issue