aboutsummaryrefslogtreecommitdiffstats
path: root/ChibiOS_20.3.2/os/sb/various/syscalls.c
blob: 4d3ae0ffe8ece61d5a09a73e0e1fb75cc80907c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
    ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>

#include "sbuser.h"

#define MAKERR(e) (-(int)(e))

__attribute__((used))
int _close_r(struct _reent *r, int file) {
  uint32_t err;

  err = sbFileClose((uint32_t)file);
  if (SB_ERR_ISERROR(err)) {
    __errno_r(r) = MAKERR(err);
    return -1;
  }

  return 0;
}

__attribute__((used))
int _write_r(struct _reent *r, int file, char * ptr, int len) {
  uint32_t err;

  err = sbFileWrite((uint32_t)file, (const uint8_t *)ptr, (size_t)len);
  if (SB_ERR_ISERROR(err)) {
    __errno_r(r) = MAKERR(err);
    return -1;
  }

  return (int)err;
}

__attribute__((used))
int _read_r(struct _reent *r, int file, char * ptr, int len) {
  uint32_t err;

  err = sbFileRead((uint32_t)file, (uint8_t *)ptr, (size_t)len);
  if (SB_ERR_ISERROR(err)) {
    __errno_r(r) = MAKERR(err);
    return -1;
  }

  return (int)err;
}

__attribute__((used))
int _lseek_r(struct _reent *r, int file, int ptr, int dir) {
  uint32_t err;

  err = sbFileSeek((uint32_t)file, (uint32_t)ptr, (uint32_t)dir);
  if (SB_ERR_ISERROR(err)) {
    __errno_r(r) = MAKERR(err);
    return -1;
  }

  return (int)err;
}

__attribute__((used))
int _fstat_r(struct _reent *r, int file, struct stat * st) {
  (void)r;
  (void)file;

  memset(st, 0, sizeof(*st));
  st->st_mode = S_IFCHR;
  return 0;
}

__attribute__((used))
int _isatty_r(struct _reent *r, int fd) {
  (void)r;
  (void)fd;

  return 1;
}

__attribute__((used))
caddr_t _sbrk_r(struct _reent *r, int incr) {
  extern uint8_t __heap_end__, __heap_base__;
  static uint8_t *p = &__heap_base__;
  uint8_t *prevp;

  prevp = p;
  if ((p + incr > &__heap_end__) ||
      (p + incr < &__heap_base__)) {
    __errno_r(r)  = ENOMEM;
    return (caddr_t)-1;
  }

  p += incr;
  return (caddr_t)prevp;
}

__attribute__((used))
int _getpid_r(struct _reent *r) {

  (void)r;

  return 1;
}

__attribute__((used))
int _kill_r(struct _reent *r, int pid, int sig) {

  (void)pid;
  (void)sig;

  __errno_r(r) = EINVAL;
  return -1;
}

__attribute__((used))
void _exit(int code) {

  sbExit((msg_t)code);
  while (true);
}

/*** EOF ***/