mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
178 lines
2.9 KiB
C
178 lines
2.9 KiB
C
/*
|
|
* Copyright (C) 2017 Ken Rabold
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup cpu_fe310
|
|
* @{
|
|
*
|
|
* @file nanostubs.c
|
|
* @brief Implementation of the Newlib-nano for SiFive FE310
|
|
*
|
|
* @author Ken Rabold
|
|
* @}
|
|
*/
|
|
|
|
#include <reent.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/unistd.h>
|
|
|
|
#include "sched.h"
|
|
#include "thread.h"
|
|
#include "irq.h"
|
|
#include "cpu.h"
|
|
#include "stdio_uart.h"
|
|
|
|
extern char _heap_start; /* Heap markers from fe310.ld file */
|
|
extern char _heap_end;
|
|
char *heap_top = &_heap_start + 4;
|
|
|
|
/**
|
|
* @brief Initialize the Newlib-nano functions (also forces inclusion of stubs for linking)
|
|
*/
|
|
void nanostubs_init(void)
|
|
{
|
|
#if defined(MODULE_STDIO_UART)
|
|
/* STDIO redirected to UART, no line buffering */
|
|
stdio_init();
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
|
#endif
|
|
}
|
|
|
|
void _init(void)
|
|
{
|
|
}
|
|
|
|
void _fini(void)
|
|
{
|
|
}
|
|
|
|
void *_sbrk(ptrdiff_t incr)
|
|
{
|
|
unsigned int state = irq_disable();
|
|
void *res = heap_top;
|
|
|
|
/* Allocate memory from heap */
|
|
if ((heap_top + incr > &_heap_end) || (heap_top + incr < &_heap_start)) {
|
|
errno = ENOMEM;
|
|
res = (void *) -1;
|
|
}
|
|
else {
|
|
heap_top += incr;
|
|
}
|
|
|
|
irq_restore(state);
|
|
return res;
|
|
}
|
|
|
|
int _open(const char *name, int flags, int mode)
|
|
{
|
|
(void) name;
|
|
(void) flags;
|
|
(void) mode;
|
|
errno = ENODEV;
|
|
return -1;
|
|
}
|
|
|
|
_ssize_t _read(int fd, void *buffer, size_t count)
|
|
{
|
|
#if defined(MODULE_STDIO_UART)
|
|
if (fd == STDIN_FILENO) {
|
|
return stdio_read(buffer, count);
|
|
}
|
|
errno = EBADF;
|
|
return -1;
|
|
#else
|
|
(void) fd;
|
|
(void) buffer;
|
|
(void) count;
|
|
errno = ENODEV;
|
|
return -1;
|
|
#endif
|
|
}
|
|
|
|
_ssize_t _write(int fd, const void *data, size_t count)
|
|
{
|
|
#if defined(MODULE_STDIO_UART)
|
|
if (fd == STDOUT_FILENO || fd == STDERR_FILENO) {
|
|
return stdio_write(data, count);
|
|
}
|
|
errno = EBADF;
|
|
return -1;
|
|
#else
|
|
(void) fd;
|
|
(void) data;
|
|
(void) count;
|
|
errno = ENODEV;
|
|
return -1;
|
|
#endif
|
|
}
|
|
|
|
int _close(int fd)
|
|
{
|
|
(void) fd;
|
|
errno = ENODEV;
|
|
return -1;
|
|
}
|
|
|
|
int _isatty(int fd)
|
|
{
|
|
errno = 0;
|
|
|
|
if (fd == STDIN_FILENO || fd == STDOUT_FILENO || fd == STDERR_FILENO) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int _fstat(int fd, struct stat *st)
|
|
{
|
|
(void) fd;
|
|
(void) st;
|
|
errno = ENODEV;
|
|
return -1;
|
|
}
|
|
|
|
_off_t _lseek(int fd, _off_t pos, int dir)
|
|
{
|
|
(void) fd;
|
|
(void) pos;
|
|
(void) dir;
|
|
errno = ENODEV;
|
|
return -1;
|
|
}
|
|
|
|
int _gettimeofday(struct timeval *tp, void *tzp)
|
|
{
|
|
(void) tp;
|
|
(void) tzp;
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
int _getpid(void)
|
|
{
|
|
return thread_getpid();
|
|
}
|
|
|
|
int _kill(int pid, int sig)
|
|
{
|
|
(void) pid;
|
|
(void) sig;
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
void _exit(int _status)
|
|
{
|
|
(void) _status;
|
|
while(1);
|
|
}
|