mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-31 07:28:37 -04:00
Add starting point for IGLOO2 RISV-V demo project.
This commit is contained in:
parent
483f4a8c4b
commit
9119e1e0e3
42 changed files with 13068 additions and 0 deletions
|
@ -0,0 +1,266 @@
|
|||
/*******************************************************************************
|
||||
* (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
|
Loading…
Add table
Add a link
Reference in a new issue