[258] | 1 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : stdio.c |
---|
| 3 | // Date : 01/04/2010 |
---|
| 4 | // Author : alain greiner & Joel Porquet |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | // The stdio.c and stdio.h files are part of the GIET_VM nano-kernel. |
---|
| 8 | // This library contains all user-level functions that contain a system call |
---|
| 9 | // to access protected or shared ressources. |
---|
| 10 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 11 | |
---|
| 12 | #include <stdarg.h> |
---|
| 13 | #include <stdio.h> |
---|
[267] | 14 | #include <giet_config.h> |
---|
[258] | 15 | |
---|
| 16 | //////////////////////////////////////////////////////////////////////////////////// |
---|
| 17 | ////////////////////// MIPS32 related system calls /////////////////////////////// |
---|
| 18 | //////////////////////////////////////////////////////////////////////////////////// |
---|
| 19 | |
---|
| 20 | //////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 21 | ///////////////////// TTY device related system calls ///////////////////////////// |
---|
[258] | 22 | //////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 23 | |
---|
[352] | 24 | /////////////////////////////////////////////////////////////////////// |
---|
[345] | 25 | static int __printf( char* format, unsigned int channel, va_list* args) |
---|
[258] | 26 | { |
---|
[345] | 27 | int ret; // return value from the syscalls |
---|
[258] | 28 | |
---|
[295] | 29 | printf_text: |
---|
[258] | 30 | |
---|
[295] | 31 | while (*format) |
---|
[258] | 32 | { |
---|
[295] | 33 | unsigned int i; |
---|
| 34 | for (i = 0 ; format[i] && (format[i] != '%') ; i++); |
---|
| 35 | if (i) |
---|
| 36 | { |
---|
| 37 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 38 | (unsigned int)format, |
---|
| 39 | i, |
---|
| 40 | channel, |
---|
[258] | 41 | 0); |
---|
| 42 | |
---|
[295] | 43 | if (ret != i) goto return_error; |
---|
| 44 | |
---|
| 45 | format += i; |
---|
[258] | 46 | } |
---|
[295] | 47 | if (*format == '%') |
---|
[258] | 48 | { |
---|
[295] | 49 | format++; |
---|
| 50 | goto printf_arguments; |
---|
[258] | 51 | } |
---|
| 52 | } |
---|
| 53 | |
---|
[345] | 54 | return 0; |
---|
[295] | 55 | |
---|
| 56 | printf_arguments: |
---|
| 57 | |
---|
[258] | 58 | { |
---|
[295] | 59 | char buf[20]; |
---|
| 60 | char * pbuf; |
---|
| 61 | unsigned int len = 0; |
---|
| 62 | static const char HexaTab[] = "0123456789ABCDEF"; |
---|
| 63 | unsigned int i; |
---|
[258] | 64 | |
---|
[295] | 65 | switch (*format++) |
---|
[258] | 66 | { |
---|
[295] | 67 | case ('c'): /* char conversion */ |
---|
[258] | 68 | { |
---|
[345] | 69 | int val = va_arg( *args, int ); |
---|
[295] | 70 | len = 1; |
---|
| 71 | buf[0] = val; |
---|
| 72 | pbuf = &buf[0]; |
---|
| 73 | break; |
---|
[258] | 74 | } |
---|
[295] | 75 | case ('d'): /* 32 bits decimal signed integer */ |
---|
[258] | 76 | { |
---|
[345] | 77 | int val = va_arg( *args, int ); |
---|
[295] | 78 | if (val < 0) |
---|
| 79 | { |
---|
| 80 | val = -val; |
---|
| 81 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 82 | (unsigned int)"-", |
---|
| 83 | 1, |
---|
| 84 | channel, |
---|
| 85 | 0); |
---|
| 86 | if (ret != 1) goto return_error; |
---|
| 87 | } |
---|
| 88 | for(i = 0; i < 10; i++) |
---|
| 89 | { |
---|
| 90 | buf[9 - i] = HexaTab[val % 10]; |
---|
| 91 | if (!(val /= 10)) break; |
---|
| 92 | } |
---|
| 93 | len = i + 1; |
---|
| 94 | pbuf = &buf[9 - i]; |
---|
| 95 | break; |
---|
[258] | 96 | } |
---|
[295] | 97 | case ('u'): /* 32 bits decimal unsigned integer */ |
---|
| 98 | { |
---|
[345] | 99 | unsigned int val = va_arg( *args, unsigned int ); |
---|
[295] | 100 | for(i = 0; i < 10; i++) |
---|
| 101 | { |
---|
| 102 | buf[9 - i] = HexaTab[val % 10]; |
---|
| 103 | if (!(val /= 10)) break; |
---|
| 104 | } |
---|
| 105 | len = i + 1; |
---|
| 106 | pbuf = &buf[9 - i]; |
---|
| 107 | break; |
---|
| 108 | } |
---|
| 109 | case ('x'): /* 32 bits hexadecimal integer */ |
---|
| 110 | { |
---|
[345] | 111 | unsigned int val = va_arg( *args, unsigned int ); |
---|
[295] | 112 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 113 | (unsigned int)"0x", |
---|
| 114 | 2, |
---|
| 115 | channel, |
---|
| 116 | 0); |
---|
| 117 | if (ret != 2) goto return_error; |
---|
| 118 | for(i = 0; i < 8; i++) |
---|
| 119 | { |
---|
| 120 | buf[7 - i] = HexaTab[val % 16]; |
---|
| 121 | if (!(val /= 16)) break; |
---|
| 122 | } |
---|
| 123 | len = i + 1; |
---|
| 124 | pbuf = &buf[7 - i]; |
---|
| 125 | break; |
---|
| 126 | } |
---|
| 127 | case ('l'): /* 64 bits hexadecimal unsigned */ |
---|
| 128 | { |
---|
[345] | 129 | unsigned long long val = va_arg( *args, unsigned long long ); |
---|
[295] | 130 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 131 | (unsigned int)"0x", |
---|
| 132 | 2, |
---|
| 133 | channel, |
---|
| 134 | 0); |
---|
| 135 | if (ret != 2) goto return_error; |
---|
| 136 | for(i = 0; i < 16; i++) |
---|
| 137 | { |
---|
| 138 | buf[15 - i] = HexaTab[val % 16]; |
---|
| 139 | if (!(val /= 16)) break; |
---|
| 140 | } |
---|
| 141 | len = i + 1; |
---|
| 142 | pbuf = &buf[15 - i]; |
---|
| 143 | break; |
---|
| 144 | } |
---|
| 145 | case ('s'): /* string */ |
---|
| 146 | { |
---|
[345] | 147 | char* str = va_arg( *args, char* ); |
---|
[295] | 148 | while (str[len]) |
---|
| 149 | { |
---|
| 150 | len++; |
---|
| 151 | } |
---|
| 152 | pbuf = str; |
---|
| 153 | break; |
---|
| 154 | } |
---|
| 155 | default: |
---|
| 156 | goto return_error; |
---|
[258] | 157 | } |
---|
| 158 | |
---|
[295] | 159 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 160 | (unsigned int)pbuf, |
---|
| 161 | len, |
---|
| 162 | channel, |
---|
| 163 | 0); |
---|
| 164 | if (ret != len) goto return_error; |
---|
| 165 | |
---|
| 166 | goto printf_text; |
---|
[258] | 167 | } |
---|
| 168 | |
---|
[295] | 169 | return_error: |
---|
[345] | 170 | return 1; |
---|
| 171 | } // end __printf() |
---|
[295] | 172 | |
---|
[345] | 173 | |
---|
| 174 | //////////////////////////////////////// |
---|
| 175 | void giet_tty_printf( char* format, ...) |
---|
| 176 | { |
---|
| 177 | va_list args; |
---|
| 178 | |
---|
| 179 | va_start( args, format ); |
---|
| 180 | int ret = __printf(format, 0xFFFFFFFF, &args); |
---|
[295] | 181 | va_end( args ); |
---|
[345] | 182 | |
---|
| 183 | if (ret) |
---|
| 184 | { |
---|
| 185 | giet_exit("error in giet_tty_printf()"); |
---|
| 186 | } |
---|
[295] | 187 | } // end giet_tty_printf() |
---|
| 188 | |
---|
| 189 | //////////////////////////////////////// |
---|
| 190 | void giet_shr_printf( char* format, ...) |
---|
[258] | 191 | { |
---|
[295] | 192 | va_list args; |
---|
[345] | 193 | const int channel = 0; |
---|
| 194 | volatile unsigned int sr_save; |
---|
[258] | 195 | |
---|
[295] | 196 | sys_call( SYSCALL_TTY_GET_LOCK, |
---|
| 197 | channel, |
---|
| 198 | (unsigned int)&sr_save, |
---|
| 199 | 0, 0 ); |
---|
| 200 | |
---|
[345] | 201 | va_start( args, format ); |
---|
| 202 | int ret = __printf(format, channel, &args); |
---|
| 203 | va_end( args ); |
---|
[258] | 204 | |
---|
[295] | 205 | sys_call( SYSCALL_TTY_RELEASE_LOCK, |
---|
| 206 | channel, |
---|
| 207 | (unsigned int)&sr_save, |
---|
| 208 | 0, 0 ); |
---|
[267] | 209 | |
---|
[345] | 210 | if (ret) |
---|
[258] | 211 | { |
---|
[345] | 212 | giet_exit("error in giet_shr_printf()"); |
---|
[258] | 213 | } |
---|
[345] | 214 | } // end giet_shr_printf() |
---|
[267] | 215 | |
---|
[295] | 216 | ///////////////////////////////// |
---|
| 217 | void giet_tty_getc( char * byte ) |
---|
| 218 | { |
---|
| 219 | int ret; |
---|
| 220 | |
---|
| 221 | do |
---|
[267] | 222 | { |
---|
[295] | 223 | ret = sys_call(SYSCALL_TTY_READ, |
---|
| 224 | (unsigned int)byte, // buffer address |
---|
| 225 | 1, // number of characters |
---|
| 226 | 0xFFFFFFFF, // channel index from task context |
---|
| 227 | 0); |
---|
| 228 | if ( ret < 0 ) giet_exit("error in giet_tty_getc()"); |
---|
[267] | 229 | } |
---|
[295] | 230 | while (ret != 1); |
---|
| 231 | } |
---|
[267] | 232 | |
---|
[295] | 233 | ///////////////////////////////////// |
---|
| 234 | void giet_tty_gets( char* buf, |
---|
| 235 | unsigned int bufsize ) |
---|
| 236 | { |
---|
| 237 | int ret; |
---|
| 238 | unsigned char byte; |
---|
| 239 | unsigned int index = 0; |
---|
| 240 | |
---|
| 241 | while (index < (bufsize - 1)) |
---|
| 242 | { |
---|
| 243 | do |
---|
| 244 | { |
---|
| 245 | ret = sys_call(SYSCALL_TTY_READ, |
---|
| 246 | (unsigned int)(&byte), |
---|
| 247 | 1, |
---|
| 248 | 0xFFFFFFFF, |
---|
| 249 | 0); |
---|
| 250 | if ( ret < 0 ) giet_exit("error in giet_tty_gets()"); |
---|
| 251 | } |
---|
| 252 | while (ret != 1); |
---|
| 253 | |
---|
| 254 | if (byte == 0x0A) /* LF */ |
---|
| 255 | { |
---|
| 256 | break; |
---|
| 257 | } |
---|
| 258 | else if ((byte == 0x7F) && (index > 0)) /* DEL */ |
---|
| 259 | { |
---|
| 260 | index--; |
---|
| 261 | } |
---|
| 262 | else |
---|
| 263 | { |
---|
| 264 | buf[index] = byte; |
---|
| 265 | index++; |
---|
| 266 | } |
---|
| 267 | } |
---|
| 268 | buf[index] = 0; |
---|
[258] | 269 | } |
---|
| 270 | |
---|
[295] | 271 | /////////////////////////////////////// |
---|
| 272 | void giet_tty_getw( unsigned int* val ) |
---|
| 273 | { |
---|
| 274 | unsigned char buf[32]; |
---|
| 275 | unsigned int string_byte = 0x00000000; // string containing one single byte |
---|
| 276 | unsigned int string_cancel = 0x00082008; // string containing BS/SPACE/BS |
---|
| 277 | unsigned int save = 0; |
---|
| 278 | unsigned int dec = 0; |
---|
| 279 | unsigned int done = 0; |
---|
| 280 | unsigned int overflow = 0; |
---|
| 281 | unsigned int length = 0; |
---|
| 282 | unsigned int i; |
---|
| 283 | unsigned int channel = 0xFFFFFFFF; |
---|
| 284 | int ret; // return value from syscalls |
---|
| 285 | |
---|
| 286 | // get characters |
---|
| 287 | while (done == 0) |
---|
| 288 | { |
---|
| 289 | // read one character |
---|
| 290 | do |
---|
| 291 | { |
---|
| 292 | ret = sys_call( SYSCALL_TTY_READ, |
---|
| 293 | (unsigned int)(&string_byte), |
---|
| 294 | 1, |
---|
| 295 | channel, |
---|
| 296 | 0); |
---|
| 297 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
| 298 | } |
---|
| 299 | while (ret != 1); |
---|
[258] | 300 | |
---|
[295] | 301 | // analyse character |
---|
| 302 | if ((string_byte > 0x2F) && (string_byte < 0x3A)) /* decimal character */ |
---|
| 303 | { |
---|
| 304 | buf[length] = (unsigned char)string_byte; |
---|
| 305 | length++; |
---|
[258] | 306 | |
---|
[295] | 307 | // echo |
---|
| 308 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 309 | (unsigned int)(&string_byte), |
---|
| 310 | 1, |
---|
| 311 | channel, |
---|
| 312 | 0 ); |
---|
| 313 | if ( ret < 0 ) giet_exit("error in giet_tty_gets()"); |
---|
| 314 | } |
---|
| 315 | else if (string_byte == 0x0A) /* LF character */ |
---|
| 316 | { |
---|
| 317 | done = 1; |
---|
| 318 | } |
---|
| 319 | else if ( (string_byte == 0x7F) || /* DEL character */ |
---|
| 320 | (string_byte == 0x08) ) /* BS character */ |
---|
| 321 | { |
---|
| 322 | if ( length > 0 ) |
---|
| 323 | { |
---|
| 324 | length--; // cancel the character |
---|
| 325 | |
---|
| 326 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 327 | (unsigned int)(&string_cancel), |
---|
| 328 | 3, |
---|
| 329 | channel, |
---|
| 330 | 0 ); |
---|
[352] | 331 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
[295] | 332 | } |
---|
| 333 | } |
---|
| 334 | |
---|
| 335 | // test buffer overflow |
---|
| 336 | if ( length >= 32 ) |
---|
| 337 | { |
---|
| 338 | overflow = 1; |
---|
| 339 | done = 1; |
---|
| 340 | } |
---|
| 341 | } // end while characters |
---|
| 342 | |
---|
| 343 | // string to int conversion with overflow detection |
---|
| 344 | if ( overflow == 0 ) |
---|
| 345 | { |
---|
| 346 | for (i = 0; (i < length) && (overflow == 0) ; i++) |
---|
| 347 | { |
---|
| 348 | dec = dec * 10 + (buf[i] - 0x30); |
---|
| 349 | if (dec < save) overflow = 1; |
---|
| 350 | save = dec; |
---|
| 351 | } |
---|
| 352 | } |
---|
| 353 | |
---|
| 354 | // final evaluation |
---|
| 355 | if ( overflow == 0 ) |
---|
| 356 | { |
---|
| 357 | // return value |
---|
| 358 | *val = dec; |
---|
| 359 | } |
---|
| 360 | else |
---|
| 361 | { |
---|
| 362 | // cancel all echo characters |
---|
| 363 | for (i = 0; i < length ; i++) |
---|
| 364 | { |
---|
| 365 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 366 | (unsigned int)(&string_cancel), |
---|
| 367 | 3, |
---|
| 368 | channel, |
---|
| 369 | 0 ); |
---|
[352] | 370 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
[295] | 371 | } |
---|
| 372 | // echo character '0' |
---|
| 373 | string_byte = 0x30; |
---|
| 374 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 375 | (unsigned int)(&string_byte), |
---|
| 376 | 1, |
---|
| 377 | channel, |
---|
| 378 | 0 ); |
---|
[352] | 379 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
[295] | 380 | |
---|
| 381 | // return 0 value |
---|
| 382 | *val = 0; |
---|
| 383 | } |
---|
| 384 | } |
---|
| 385 | |
---|
| 386 | |
---|
[258] | 387 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 388 | ///////////////////// TIMER related system calls //////////////////////////////// |
---|
| 389 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 390 | |
---|
[295] | 391 | /////////////////////// |
---|
| 392 | void giet_timer_start() |
---|
[258] | 393 | { |
---|
[295] | 394 | if ( sys_call( SYSCALL_TIMER_START, 0, 0, 0, 0 ) ) |
---|
| 395 | giet_exit("error in giet_timer_start()"); |
---|
[258] | 396 | } |
---|
[295] | 397 | |
---|
| 398 | ////////////////////// |
---|
| 399 | void giet_timer_stop() |
---|
[258] | 400 | { |
---|
[295] | 401 | if ( sys_call( SYSCALL_TIMER_STOP, 0, 0, 0, 0 ) ) |
---|
| 402 | giet_exit("error in giet_timer_stop()"); |
---|
[258] | 403 | } |
---|
| 404 | |
---|
| 405 | |
---|
| 406 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 407 | /////////////// Frame buffer device related system calls /////////////////////// |
---|
| 408 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 409 | |
---|
[295] | 410 | //////////////////////////////////////////// |
---|
| 411 | void giet_fb_sync_write( unsigned int offset, |
---|
[258] | 412 | void * buffer, |
---|
| 413 | unsigned int length ) |
---|
| 414 | { |
---|
[295] | 415 | if ( sys_call( SYSCALL_FB_SYNC_WRITE, |
---|
| 416 | offset, |
---|
| 417 | (unsigned int)buffer, |
---|
| 418 | length, |
---|
| 419 | 0 ) ) giet_exit("error in giet_fb_sync_write()"); |
---|
[258] | 420 | } |
---|
[295] | 421 | |
---|
| 422 | /////////////////////////////////////////// |
---|
| 423 | void giet_fb_sync_read( unsigned int offset, |
---|
| 424 | void * buffer, |
---|
| 425 | unsigned int length ) |
---|
[258] | 426 | { |
---|
[295] | 427 | if ( sys_call( SYSCALL_FB_SYNC_READ, |
---|
| 428 | offset, |
---|
| 429 | (unsigned int)buffer, |
---|
| 430 | length, |
---|
| 431 | 0 ) ) giet_exit("error in giet_fb_sync_read()"); |
---|
[258] | 432 | } |
---|
[295] | 433 | |
---|
| 434 | ///////////////////////////////////////// |
---|
| 435 | void giet_fb_cma_init( void * buf0, |
---|
| 436 | void * buf1, |
---|
| 437 | unsigned int length ) |
---|
[258] | 438 | { |
---|
[295] | 439 | if ( sys_call( SYSCALL_FB_CMA_INIT, |
---|
| 440 | (unsigned int)buf0, |
---|
| 441 | (unsigned int)buf1, |
---|
| 442 | length, |
---|
| 443 | 0 ) ) giet_exit("error in giet_fb_cma_init()"); |
---|
[258] | 444 | } |
---|
[295] | 445 | |
---|
| 446 | /////////////////////////////////////////////// |
---|
| 447 | void giet_fb_cma_write( unsigned int buffer_id ) |
---|
[258] | 448 | { |
---|
[295] | 449 | if ( sys_call( SYSCALL_FB_CMA_WRITE, |
---|
| 450 | buffer_id, |
---|
| 451 | 0, 0, 0 ) ) giet_exit("error in giet_fb_cma_write()"); |
---|
[258] | 452 | } |
---|
[295] | 453 | |
---|
| 454 | //////////////////////// |
---|
| 455 | void giet_fb_cma_stop() |
---|
[258] | 456 | { |
---|
[295] | 457 | if ( sys_call( SYSCALL_FB_CMA_STOP, |
---|
| 458 | 0, 0, 0, 0 ) ) giet_exit("error in giet_fb_cma_stop()"); |
---|
[258] | 459 | } |
---|
| 460 | |
---|
| 461 | |
---|
| 462 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 463 | /////////////////////// NIC related system calls ///////////////////////////////// |
---|
| 464 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 465 | |
---|
[295] | 466 | ///////////////////////// |
---|
| 467 | void giet_nic_cma_start() |
---|
[258] | 468 | { |
---|
[295] | 469 | if ( sys_call( SYSCALL_NIC_CMA_START, 0, 0, 0, 0 ) ) |
---|
| 470 | giet_exit("error in giet_nic_cma_start()"); |
---|
[258] | 471 | } |
---|
[295] | 472 | |
---|
| 473 | ///////////////////////// |
---|
| 474 | void giet_nic_cma_stop() |
---|
[258] | 475 | { |
---|
[295] | 476 | if ( sys_call( SYSCALL_NIC_CMA_STOP, 0, 0, 0, 0 ) ) |
---|
| 477 | giet_exit("error in giet_nic_cma_stop()"); |
---|
[258] | 478 | } |
---|
| 479 | |
---|
[295] | 480 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 481 | ///////////////////// FAT related system calls //////////////////////////////////// |
---|
| 482 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[258] | 483 | |
---|
[295] | 484 | /////////////////////////////////////////// |
---|
| 485 | int giet_fat_open( const char* pathname, |
---|
| 486 | unsigned int flags ) |
---|
| 487 | { |
---|
| 488 | return sys_call( SYSCALL_FAT_OPEN, |
---|
| 489 | (unsigned int)pathname, |
---|
| 490 | flags, |
---|
| 491 | 0, 0 ); |
---|
| 492 | } |
---|
[258] | 493 | |
---|
[295] | 494 | //////////////////////////////////// |
---|
| 495 | void giet_fat_read( unsigned int fd, |
---|
| 496 | void* buffer, |
---|
| 497 | unsigned int count, |
---|
| 498 | unsigned int offset ) |
---|
| 499 | { |
---|
| 500 | if ( sys_call( SYSCALL_FAT_READ, |
---|
| 501 | fd, |
---|
| 502 | (unsigned int)buffer, |
---|
| 503 | count, |
---|
| 504 | offset ) != count ) giet_exit("in giet_fat_read()"); |
---|
| 505 | } |
---|
| 506 | |
---|
| 507 | ///////////////////////////////////// |
---|
| 508 | void giet_fat_write( unsigned int fd, |
---|
| 509 | void* buffer, |
---|
| 510 | unsigned int count, |
---|
| 511 | unsigned int offset ) |
---|
| 512 | { |
---|
| 513 | if ( sys_call( SYSCALL_FAT_WRITE, |
---|
| 514 | fd, |
---|
| 515 | (unsigned int)buffer, |
---|
| 516 | count, |
---|
| 517 | offset ) != count ) giet_exit("in giet_fat_write()"); |
---|
| 518 | } |
---|
| 519 | |
---|
| 520 | /* variant implementing the UNIX spec |
---|
[258] | 521 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 522 | // This system call writes to a file identified by the "fd" file descriptor. |
---|
| 523 | // - "buffer" is the source buffer virtual address (must be word aligned). |
---|
| 524 | // - "count" is a number of bytes (must be multiple of 4). |
---|
| 525 | // It uses the implicit "lseek" pointer in file descriptor. |
---|
[258] | 526 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 527 | void giet_fat_write( unsigned int fd, |
---|
| 528 | void* buffer, |
---|
| 529 | unsigned int count ) // number of bytes |
---|
[258] | 530 | { |
---|
[295] | 531 | return sys_call( SYSCALL_FAT_WRITE, |
---|
| 532 | fd, |
---|
| 533 | (unsigned int)buffer, |
---|
| 534 | count, 0 ); |
---|
[258] | 535 | } |
---|
[295] | 536 | */ |
---|
| 537 | |
---|
| 538 | ///////////////////////////////////// |
---|
| 539 | void giet_fat_lseek( unsigned int fd, |
---|
| 540 | unsigned int offset, |
---|
| 541 | unsigned int whence ) |
---|
[258] | 542 | { |
---|
[295] | 543 | if ( sys_call( SYSCALL_FAT_LSEEK, |
---|
| 544 | fd, |
---|
| 545 | offset, |
---|
| 546 | whence, |
---|
| 547 | 0 ) ) giet_exit("in giet_fat_lseek()"); |
---|
[258] | 548 | } |
---|
[295] | 549 | |
---|
| 550 | ////////////////////////////////////// |
---|
| 551 | void giet_fat_fstat( unsigned int fd ) |
---|
[258] | 552 | { |
---|
[295] | 553 | if ( sys_call( SYSCALL_FAT_FSTAT, |
---|
| 554 | fd, |
---|
| 555 | 0, 0, 0 ) ) giet_exit("in giet_fat_lseek()"); |
---|
[258] | 556 | } |
---|
[295] | 557 | |
---|
| 558 | ///////////////////////////////////// |
---|
| 559 | void giet_fat_close( unsigned int fd ) |
---|
[258] | 560 | { |
---|
[295] | 561 | if ( sys_call( SYSCALL_FAT_CLOSE, |
---|
| 562 | fd, |
---|
| 563 | 0, 0, 0 ) ) giet_exit("in giet_fat_close()"); |
---|
[258] | 564 | } |
---|
[295] | 565 | |
---|
| 566 | |
---|
[258] | 567 | ////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 568 | ///////////////////// Miscellaneous system calls ///////////////////////////////// |
---|
[258] | 569 | ////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 570 | |
---|
| 571 | ///////////////// |
---|
| 572 | int giet_procid() |
---|
[258] | 573 | { |
---|
[295] | 574 | return sys_call( SYSCALL_PROCID, |
---|
[258] | 575 | 0, 0, 0, 0 ); |
---|
| 576 | } |
---|
[295] | 577 | |
---|
| 578 | //////////////////// |
---|
| 579 | int giet_proctime() |
---|
| 580 | { |
---|
| 581 | return sys_call( SYSCALL_PROCTIME, |
---|
| 582 | 0, 0, 0, 0 ); |
---|
| 583 | } |
---|
| 584 | |
---|
| 585 | /////////////////////// |
---|
[258] | 586 | int giet_proc_task_id() |
---|
| 587 | { |
---|
| 588 | return sys_call( SYSCALL_LOCAL_TASK_ID, |
---|
| 589 | 0, 0, 0, 0 ); |
---|
| 590 | } |
---|
[295] | 591 | |
---|
| 592 | ///////////////////////// |
---|
[258] | 593 | int giet_global_task_id() |
---|
| 594 | { |
---|
| 595 | return sys_call( SYSCALL_GLOBAL_TASK_ID, |
---|
| 596 | 0, 0, 0, 0 ); |
---|
| 597 | } |
---|
| 598 | |
---|
[295] | 599 | //////////////////// |
---|
[267] | 600 | int giet_thread_id() |
---|
| 601 | { |
---|
| 602 | return sys_call( SYSCALL_THREAD_ID, |
---|
| 603 | 0, 0, 0, 0 ); |
---|
| 604 | } |
---|
| 605 | |
---|
[295] | 606 | /////////////// |
---|
| 607 | int giet_rand() |
---|
[258] | 608 | { |
---|
[295] | 609 | unsigned int x = sys_call(SYSCALL_PROCTIME, 0, 0, 0, 0); |
---|
| 610 | if ((x & 0xF) > 7) { |
---|
| 611 | return (x*x & 0xFFFF); |
---|
| 612 | } |
---|
| 613 | else { |
---|
| 614 | return (x*x*x & 0xFFFF); |
---|
| 615 | } |
---|
[258] | 616 | } |
---|
[295] | 617 | |
---|
| 618 | ////////////////////////////// |
---|
| 619 | void giet_exit( char* string ) |
---|
[258] | 620 | { |
---|
[295] | 621 | sys_call( SYSCALL_EXIT, |
---|
| 622 | (unsigned int)string, |
---|
| 623 | 0, 0, 0 ); |
---|
[258] | 624 | } |
---|
[295] | 625 | |
---|
| 626 | ///////////////////////////////////////// |
---|
| 627 | void giet_assert( unsigned int condition, |
---|
| 628 | char* string ) |
---|
[258] | 629 | { |
---|
[295] | 630 | if ( condition == 0 ) giet_exit( string ); |
---|
[258] | 631 | } |
---|
[295] | 632 | |
---|
| 633 | //////////////////////////////////////////////////// |
---|
| 634 | void giet_vobj_get_vbase( char* vspace_name, |
---|
| 635 | char* vobj_name, |
---|
| 636 | unsigned int* vobj_vaddr ) |
---|
[258] | 637 | { |
---|
[295] | 638 | if ( sys_call( SYSCALL_VOBJ_GET_VBASE, |
---|
| 639 | (unsigned int) vspace_name, |
---|
| 640 | (unsigned int) vobj_name, |
---|
| 641 | (unsigned int) vobj_vaddr, |
---|
| 642 | 0 ) ) giet_exit("in giet_vobj_get_vbase()"); |
---|
[258] | 643 | } |
---|
[260] | 644 | |
---|
[295] | 645 | /////////////////////////////////////////////// |
---|
| 646 | void giet_proc_number( unsigned int cluster_id, |
---|
| 647 | unsigned int* buffer ) |
---|
[260] | 648 | { |
---|
[295] | 649 | if ( sys_call( SYSCALL_PROC_NUMBER, |
---|
| 650 | cluster_id, |
---|
| 651 | (unsigned int) buffer, |
---|
| 652 | 0, 0) ) giet_exit("in giet_proc_number()"); |
---|
[260] | 653 | } |
---|
| 654 | |
---|
[295] | 655 | ////////////////////////// |
---|
| 656 | void giet_context_switch() |
---|
[258] | 657 | { |
---|
[295] | 658 | sys_call( SYSCALL_CTX_SWITCH, |
---|
| 659 | 0, 0, 0, 0 ); |
---|
[258] | 660 | } |
---|
| 661 | |
---|
[295] | 662 | ///////////////////////////////////////// |
---|
| 663 | void giet_heap_info( unsigned int* vaddr, |
---|
| 664 | unsigned int* length ) |
---|
[258] | 665 | { |
---|
[295] | 666 | if ( sys_call( SYSCALL_HEAP_INFO, |
---|
| 667 | (unsigned int)vaddr, |
---|
| 668 | (unsigned int)length, |
---|
| 669 | 0, 0 ) ) giet_exit("in giet_heap_info()"); |
---|
[258] | 670 | } |
---|
| 671 | |
---|
| 672 | // Local Variables: |
---|
| 673 | // tab-width: 4 |
---|
| 674 | // c-basic-offset: 4 |
---|
| 675 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 676 | // indent-tabs-mode: nil |
---|
| 677 | // End: |
---|
| 678 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 679 | |
---|