[521] | 1 | ////////////////////////////////////////////////////////////////////////////// |
---|
[258] | 2 | // File : stdio.c |
---|
| 3 | // Date : 01/04/2010 |
---|
| 4 | // Author : alain greiner & Joel Porquet |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
[521] | 6 | ////////////////////////////////////////////////////////////////////////////// |
---|
[258] | 7 | |
---|
| 8 | #include <stdarg.h> |
---|
| 9 | #include <stdio.h> |
---|
[267] | 10 | #include <giet_config.h> |
---|
[258] | 11 | |
---|
[521] | 12 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 13 | ///////////////////// MIPS32 related system calls /////////////////////// |
---|
| 14 | ////////////////////////////////////////////////////////////////////////////// |
---|
[390] | 15 | |
---|
[438] | 16 | //////////////////////////////////////////// |
---|
[431] | 17 | void giet_proc_xyp( unsigned int* cluster_x, |
---|
| 18 | unsigned int* cluster_y, |
---|
| 19 | unsigned int* lpid ) |
---|
[390] | 20 | { |
---|
[438] | 21 | sys_call( SYSCALL_PROC_XYP, |
---|
[431] | 22 | (unsigned int)cluster_x, |
---|
| 23 | (unsigned int)cluster_y, |
---|
| 24 | (unsigned int)lpid, |
---|
| 25 | 0 ); |
---|
[390] | 26 | } |
---|
| 27 | |
---|
[438] | 28 | //////////////////////////// |
---|
| 29 | unsigned int giet_proctime() |
---|
[390] | 30 | { |
---|
[438] | 31 | return (unsigned int)sys_call( SYSCALL_PROC_TIME, |
---|
| 32 | 0, 0, 0, 0 ); |
---|
[390] | 33 | } |
---|
| 34 | |
---|
[438] | 35 | //////////////////////// |
---|
| 36 | unsigned int giet_rand() |
---|
[390] | 37 | { |
---|
[438] | 38 | unsigned int x = (unsigned int)sys_call( SYSCALL_PROC_TIME, |
---|
| 39 | 0, 0, 0, 0); |
---|
[390] | 40 | if ((x & 0xF) > 7) |
---|
| 41 | { |
---|
| 42 | return (x*x & 0xFFFF); |
---|
| 43 | } |
---|
| 44 | else |
---|
| 45 | { |
---|
| 46 | return (x*x*x & 0xFFFF); |
---|
| 47 | } |
---|
| 48 | } |
---|
| 49 | |
---|
[521] | 50 | ////////////////////////////////////////////////////////////////////////////// |
---|
[647] | 51 | ///////////////////// Task related system calls ///////////////////////////// |
---|
[521] | 52 | ////////////////////////////////////////////////////////////////////////////// |
---|
[438] | 53 | |
---|
| 54 | //////////////////////////////// |
---|
| 55 | unsigned int giet_proc_task_id() |
---|
| 56 | { |
---|
| 57 | return (unsigned int)sys_call( SYSCALL_LOCAL_TASK_ID, |
---|
| 58 | 0, 0, 0, 0 ); |
---|
| 59 | } |
---|
| 60 | |
---|
| 61 | ////////////////////////////////// |
---|
| 62 | unsigned int giet_global_task_id() |
---|
| 63 | { |
---|
| 64 | return (unsigned int)sys_call( SYSCALL_GLOBAL_TASK_ID, |
---|
| 65 | 0, 0, 0, 0 ); |
---|
| 66 | } |
---|
| 67 | |
---|
| 68 | ///////////////////////////// |
---|
| 69 | unsigned int giet_thread_id() |
---|
| 70 | { |
---|
| 71 | return (unsigned int)sys_call( SYSCALL_THREAD_ID, |
---|
| 72 | 0, 0, 0, 0 ); |
---|
| 73 | } |
---|
| 74 | |
---|
[647] | 75 | ////////////////////////////// |
---|
| 76 | void giet_exit( char* string ) |
---|
| 77 | { |
---|
| 78 | sys_call( SYSCALL_EXIT, |
---|
| 79 | (unsigned int)string, |
---|
| 80 | 0, 0, 0 ); |
---|
| 81 | } |
---|
[438] | 82 | |
---|
[647] | 83 | ///////////////////////////////////////// |
---|
| 84 | void giet_assert( unsigned int condition, |
---|
| 85 | char* string ) |
---|
| 86 | { |
---|
| 87 | if ( condition == 0 ) giet_exit( string ); |
---|
| 88 | } |
---|
| 89 | |
---|
| 90 | ////////////////////////// |
---|
| 91 | void giet_context_switch() |
---|
| 92 | { |
---|
| 93 | sys_call( SYSCALL_CTX_SWITCH, |
---|
| 94 | 0, 0, 0, 0 ); |
---|
| 95 | } |
---|
| 96 | |
---|
[521] | 97 | ////////////////////////////////////////////////////////////////////////////// |
---|
[647] | 98 | ///////////////////// Applications system calls ///////////////////////////// |
---|
| 99 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 100 | |
---|
| 101 | /////////////////////////////////////// |
---|
| 102 | int giet_kill_application( char* name ) |
---|
| 103 | { |
---|
| 104 | return ( sys_call( SYSCALL_KILL_APP, |
---|
| 105 | (unsigned int)name, |
---|
| 106 | 0, 0, 0 ) ); |
---|
| 107 | } |
---|
| 108 | |
---|
| 109 | /////////////////////////////////////// |
---|
| 110 | int giet_exec_application( char* name ) |
---|
| 111 | { |
---|
| 112 | return ( sys_call( SYSCALL_EXEC_APP, |
---|
| 113 | (unsigned int)name, |
---|
| 114 | 0, 0, 0 ) ); |
---|
| 115 | } |
---|
| 116 | |
---|
| 117 | ////////////////////////////////////////////////////////////////////////////// |
---|
[521] | 118 | ///////////////////// Coprocessors system calls //////////////////////////// |
---|
| 119 | ////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 120 | |
---|
[521] | 121 | /////////////////////////////////////////////////// |
---|
| 122 | void giet_coproc_alloc( unsigned int coproc_type, |
---|
[558] | 123 | unsigned int* coproc_info ) |
---|
[521] | 124 | { |
---|
| 125 | if ( sys_call( SYSCALL_COPROC_ALLOC, |
---|
| 126 | coproc_type, |
---|
| 127 | (unsigned int)coproc_info, |
---|
[558] | 128 | 0, 0 ) ) |
---|
[521] | 129 | giet_exit("error in giet_coproc_alloc()"); |
---|
| 130 | } |
---|
| 131 | |
---|
[558] | 132 | ///////////////////////////////////////////////////////// |
---|
| 133 | void giet_coproc_release( unsigned int coproc_reg_index ) |
---|
[521] | 134 | { |
---|
| 135 | if ( sys_call( SYSCALL_COPROC_RELEASE, |
---|
[558] | 136 | coproc_reg_index, |
---|
[521] | 137 | 0, 0, 0 ) ) |
---|
| 138 | giet_exit("error in giet_coproc_release()"); |
---|
| 139 | } |
---|
| 140 | |
---|
| 141 | ////////////////////////////////////////////////////////////////// |
---|
[558] | 142 | void giet_coproc_channel_init( unsigned int channel, |
---|
[521] | 143 | giet_coproc_channel_t* desc ) |
---|
| 144 | { |
---|
| 145 | if ( sys_call( SYSCALL_COPROC_CHANNEL_INIT, |
---|
| 146 | channel, |
---|
| 147 | (unsigned int)desc, |
---|
| 148 | 0, 0 ) ) |
---|
[558] | 149 | giet_exit("error in giet_coproc_channel_init()"); |
---|
[521] | 150 | } |
---|
| 151 | |
---|
[558] | 152 | ///////////////////////////////////////////////////// |
---|
| 153 | void giet_coproc_run( unsigned int coproc_reg_index ) |
---|
[521] | 154 | { |
---|
[558] | 155 | if ( sys_call( SYSCALL_COPROC_RUN, |
---|
| 156 | coproc_reg_index, |
---|
| 157 | 0, 0, 0 ) ) |
---|
| 158 | giet_exit("error in giet_coproc_run()"); |
---|
[521] | 159 | } |
---|
| 160 | |
---|
[558] | 161 | //////////////////////////// |
---|
| 162 | void giet_coproc_completed() |
---|
[521] | 163 | { |
---|
| 164 | if ( sys_call( SYSCALL_COPROC_COMPLETED, |
---|
[558] | 165 | 0, 0, 0, 0 ) ) |
---|
[521] | 166 | giet_exit("error in giet_coproc_completed"); |
---|
| 167 | } |
---|
| 168 | |
---|
| 169 | |
---|
| 170 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 171 | ///////////////////// TTY device related system calls /////////////////////// |
---|
| 172 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 173 | |
---|
[438] | 174 | ///////////////////// |
---|
| 175 | void giet_tty_alloc() |
---|
[258] | 176 | { |
---|
[521] | 177 | if ( sys_call( SYSCALL_TTY_ALLOC, |
---|
| 178 | 0, 0, 0, 0 ) ) giet_exit("error in giet_tty_alloc()"); |
---|
[438] | 179 | } |
---|
[258] | 180 | |
---|
[438] | 181 | //////////////////////////////////////////////////////////////////////// |
---|
| 182 | static int __printf( char* format, unsigned int channel, va_list* args) |
---|
| 183 | { |
---|
| 184 | int ret; // return value from the syscall |
---|
[580] | 185 | enum TModifiers {NO_MOD, L_MOD, LL_MOD} modifiers; |
---|
[438] | 186 | |
---|
[295] | 187 | printf_text: |
---|
[258] | 188 | |
---|
[295] | 189 | while (*format) |
---|
[258] | 190 | { |
---|
[295] | 191 | unsigned int i; |
---|
| 192 | for (i = 0 ; format[i] && (format[i] != '%') ; i++); |
---|
| 193 | if (i) |
---|
| 194 | { |
---|
| 195 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 196 | (unsigned int)format, |
---|
| 197 | i, |
---|
| 198 | channel, |
---|
[258] | 199 | 0); |
---|
| 200 | |
---|
[295] | 201 | if (ret != i) goto return_error; |
---|
| 202 | |
---|
| 203 | format += i; |
---|
[258] | 204 | } |
---|
[295] | 205 | if (*format == '%') |
---|
[258] | 206 | { |
---|
[295] | 207 | format++; |
---|
[580] | 208 | modifiers = NO_MOD; |
---|
[295] | 209 | goto printf_arguments; |
---|
[258] | 210 | } |
---|
| 211 | } |
---|
| 212 | |
---|
[345] | 213 | return 0; |
---|
[295] | 214 | |
---|
| 215 | printf_arguments: |
---|
| 216 | |
---|
[258] | 217 | { |
---|
[628] | 218 | char buf[30]; |
---|
| 219 | char * pbuf; |
---|
| 220 | unsigned int len = 0; |
---|
[295] | 221 | static const char HexaTab[] = "0123456789ABCDEF"; |
---|
[628] | 222 | unsigned int i; |
---|
[580] | 223 | |
---|
| 224 | /* Ignored fields : width and precision */ |
---|
| 225 | for (; *format >= '0' && *format <= '9'; format++); |
---|
[258] | 226 | |
---|
[295] | 227 | switch (*format++) |
---|
[258] | 228 | { |
---|
[580] | 229 | case ('%'): |
---|
[641] | 230 | { |
---|
| 231 | len = 1; |
---|
| 232 | pbuf = "%"; |
---|
| 233 | break; |
---|
| 234 | } |
---|
[295] | 235 | case ('c'): /* char conversion */ |
---|
[258] | 236 | { |
---|
[345] | 237 | int val = va_arg( *args, int ); |
---|
[588] | 238 | if (modifiers != NO_MOD) goto return_error; // Modifiers have no meaning |
---|
[580] | 239 | |
---|
[295] | 240 | len = 1; |
---|
| 241 | buf[0] = val; |
---|
| 242 | pbuf = &buf[0]; |
---|
| 243 | break; |
---|
[258] | 244 | } |
---|
[580] | 245 | case ('d'): /* decimal signed integer */ |
---|
[258] | 246 | { |
---|
[345] | 247 | int val = va_arg( *args, int ); |
---|
[580] | 248 | |
---|
[588] | 249 | if (modifiers == LL_MOD) goto return_error; // 64 bits not supported |
---|
[580] | 250 | |
---|
[295] | 251 | if (val < 0) |
---|
| 252 | { |
---|
| 253 | val = -val; |
---|
| 254 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 255 | (unsigned int)"-", |
---|
| 256 | 1, |
---|
| 257 | channel, |
---|
| 258 | 0); |
---|
| 259 | if (ret != 1) goto return_error; |
---|
| 260 | } |
---|
| 261 | for(i = 0; i < 10; i++) |
---|
| 262 | { |
---|
| 263 | buf[9 - i] = HexaTab[val % 10]; |
---|
| 264 | if (!(val /= 10)) break; |
---|
| 265 | } |
---|
| 266 | len = i + 1; |
---|
| 267 | pbuf = &buf[9 - i]; |
---|
| 268 | break; |
---|
[258] | 269 | } |
---|
[580] | 270 | case ('u'): /* decimal unsigned integer */ |
---|
[295] | 271 | { |
---|
[580] | 272 | if (modifiers != LL_MOD) //32 bits integer |
---|
[295] | 273 | { |
---|
[580] | 274 | unsigned int val = va_arg( *args, unsigned int ); |
---|
| 275 | for(i = 0; i < 10; i++) |
---|
| 276 | { |
---|
| 277 | buf[9 - i] = HexaTab[val % 10]; |
---|
| 278 | if (!(val /= 10)) break; |
---|
| 279 | } |
---|
| 280 | len = i + 1; |
---|
| 281 | pbuf = &buf[9 - i]; |
---|
| 282 | break; |
---|
[295] | 283 | } |
---|
[580] | 284 | //64 bits : base 10 unsupported : continue to hexa |
---|
[295] | 285 | } |
---|
[580] | 286 | case ('x'): |
---|
| 287 | case ('X'): /* hexadecimal integer */ |
---|
[295] | 288 | { |
---|
[580] | 289 | unsigned long long val; |
---|
| 290 | int imax; |
---|
| 291 | |
---|
[628] | 292 | if (modifiers == LL_MOD) // 64 bits |
---|
[295] | 293 | { |
---|
[580] | 294 | val = va_arg( *args, unsigned long long); |
---|
| 295 | |
---|
[628] | 296 | // if asked to print in base 10, can do only if it fits in 32 bits |
---|
| 297 | if (*(format-1) == 'u' && (!(val & 0xFFFFFFFF00000000ULL))) |
---|
[580] | 298 | { |
---|
| 299 | unsigned int uintv = (unsigned int) val; |
---|
| 300 | |
---|
| 301 | for(i = 0; i < 10; i++) |
---|
| 302 | { |
---|
| 303 | buf[9 - i] = HexaTab[uintv % 10]; |
---|
| 304 | if (!(uintv /= 10)) break; |
---|
| 305 | } |
---|
| 306 | len = i + 1; |
---|
| 307 | pbuf = &buf[9 - i]; |
---|
| 308 | break; |
---|
| 309 | } |
---|
| 310 | |
---|
| 311 | imax = 16; |
---|
[295] | 312 | } |
---|
[580] | 313 | else //32 bits |
---|
| 314 | { |
---|
| 315 | val = va_arg( *args, unsigned int); |
---|
| 316 | imax = 8; |
---|
| 317 | } |
---|
| 318 | |
---|
[295] | 319 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 320 | (unsigned int)"0x", |
---|
| 321 | 2, |
---|
| 322 | channel, |
---|
| 323 | 0); |
---|
| 324 | if (ret != 2) goto return_error; |
---|
[580] | 325 | |
---|
| 326 | for(i = 0; i < imax; i++) |
---|
[295] | 327 | { |
---|
[580] | 328 | buf[(imax-1) - i] = HexaTab[val % 16]; |
---|
[295] | 329 | if (!(val /= 16)) break; |
---|
| 330 | } |
---|
| 331 | len = i + 1; |
---|
[580] | 332 | pbuf = &buf[(imax-1) - i]; |
---|
[295] | 333 | break; |
---|
| 334 | } |
---|
| 335 | case ('s'): /* string */ |
---|
| 336 | { |
---|
[345] | 337 | char* str = va_arg( *args, char* ); |
---|
[580] | 338 | |
---|
[588] | 339 | if (modifiers != NO_MOD) goto return_error; // Modifiers have no meaning |
---|
[580] | 340 | |
---|
[295] | 341 | while (str[len]) |
---|
| 342 | { |
---|
| 343 | len++; |
---|
| 344 | } |
---|
| 345 | pbuf = str; |
---|
| 346 | break; |
---|
| 347 | } |
---|
[580] | 348 | case ('e'): |
---|
| 349 | case ('f'): |
---|
| 350 | case ('g'): /* IEEE754 64 bits */ |
---|
| 351 | { |
---|
| 352 | |
---|
| 353 | double vald = va_arg( *args, double); |
---|
| 354 | |
---|
| 355 | unsigned long long |
---|
| 356 | val = *(unsigned long long*)&vald, //get ieee754 without conversion |
---|
[628] | 357 | digits = val & 0xFFFFFFFFFFFFFULL; //get mantissa |
---|
[580] | 358 | |
---|
| 359 | unsigned int |
---|
[628] | 360 | base = (unsigned int)((val & 0x7FF0000000000000ULL) >> 52), //get exposant |
---|
[580] | 361 | intp = (unsigned int)vald, //get integer part of the float |
---|
| 362 | decp; |
---|
| 363 | |
---|
| 364 | int isvalue = 0; |
---|
| 365 | |
---|
| 366 | if (base == 0x7FF) //special value |
---|
| 367 | { |
---|
[628] | 368 | if (digits & 0xFFFFFFFFFFFFFULL) |
---|
[580] | 369 | { |
---|
| 370 | /* Not a Number */ |
---|
| 371 | buf[0] = 'N'; |
---|
| 372 | buf[1] = 'a'; |
---|
| 373 | buf[2] = 'N'; |
---|
| 374 | len = 3; |
---|
| 375 | pbuf = buf; |
---|
| 376 | } |
---|
| 377 | else |
---|
| 378 | { |
---|
| 379 | /* inf */ |
---|
[628] | 380 | buf[0] = (val & 0x8000000000000000ULL) ? '-' : '+'; |
---|
[580] | 381 | buf[1] = 'i'; |
---|
| 382 | buf[2] = 'n'; |
---|
| 383 | buf[3] = 'f'; |
---|
| 384 | len = 4; |
---|
| 385 | pbuf = buf; |
---|
| 386 | } |
---|
| 387 | break; |
---|
| 388 | } |
---|
| 389 | |
---|
[628] | 390 | if (val & 0x8000000000000000ULL) |
---|
[580] | 391 | { |
---|
| 392 | /* negative */ |
---|
| 393 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 394 | (unsigned int)"-", |
---|
| 395 | 1, |
---|
| 396 | channel, |
---|
| 397 | 0); |
---|
| 398 | if (ret != 1) goto return_error; |
---|
| 399 | vald = vald * -1; |
---|
| 400 | } |
---|
| 401 | else |
---|
| 402 | { |
---|
| 403 | /* positive */ |
---|
| 404 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 405 | (unsigned int)"+", |
---|
| 406 | 1, |
---|
| 407 | channel, |
---|
| 408 | 0); |
---|
| 409 | if (ret != 1) goto return_error; |
---|
| 410 | } |
---|
| 411 | |
---|
| 412 | if (vald > 0xFFFFFFFF) |
---|
| 413 | { |
---|
| 414 | /* overflow */ |
---|
| 415 | buf[0] = 'B'; |
---|
| 416 | buf[1] = 'I'; |
---|
| 417 | buf[2] = 'G'; |
---|
| 418 | len = 3; |
---|
| 419 | pbuf = buf; |
---|
| 420 | break; |
---|
| 421 | } |
---|
| 422 | |
---|
| 423 | vald -= (double)intp; |
---|
[581] | 424 | decp = (unsigned int)(vald * 1000000000); |
---|
[580] | 425 | |
---|
| 426 | for(i = 0; i < 10; i++) |
---|
| 427 | { |
---|
| 428 | if ((!isvalue) && (intp % 10)) isvalue = 1; |
---|
| 429 | buf[9 - i] = HexaTab[intp % 10]; |
---|
| 430 | if (!(intp /= 10)) break; |
---|
| 431 | } |
---|
| 432 | pbuf = &buf[9 - i]; |
---|
| 433 | len = i+11; |
---|
| 434 | buf[10] = '.'; |
---|
| 435 | |
---|
| 436 | for(i = 0; i < 9; i++) |
---|
| 437 | { |
---|
| 438 | if ((!isvalue) && (decp % 10)) isvalue = 1; |
---|
| 439 | buf[19 - i] = HexaTab[decp % 10]; |
---|
| 440 | decp /= 10; |
---|
| 441 | } |
---|
| 442 | |
---|
| 443 | if (!isvalue) |
---|
| 444 | { |
---|
| 445 | if (vald != 0) |
---|
| 446 | { |
---|
| 447 | /* underflow */ |
---|
| 448 | buf[0] = 'T'; |
---|
| 449 | buf[1] = 'I'; |
---|
| 450 | buf[2] = 'N'; |
---|
| 451 | buf[3] = 'Y'; |
---|
| 452 | len = 4; |
---|
| 453 | pbuf = buf; |
---|
| 454 | } |
---|
| 455 | } |
---|
| 456 | |
---|
| 457 | break; |
---|
| 458 | } |
---|
| 459 | case ('l'): |
---|
| 460 | switch (modifiers) |
---|
| 461 | { |
---|
| 462 | case NO_MOD: |
---|
| 463 | modifiers = L_MOD; |
---|
| 464 | goto printf_arguments; |
---|
| 465 | |
---|
| 466 | case L_MOD: |
---|
| 467 | modifiers = LL_MOD; |
---|
| 468 | goto printf_arguments; |
---|
| 469 | |
---|
| 470 | default: |
---|
| 471 | goto return_error; |
---|
| 472 | } |
---|
| 473 | |
---|
| 474 | /* Ignored fields : width and precision */ |
---|
| 475 | case ('.'): goto printf_arguments; |
---|
| 476 | |
---|
[295] | 477 | default: |
---|
| 478 | goto return_error; |
---|
[258] | 479 | } |
---|
| 480 | |
---|
[295] | 481 | ret = sys_call(SYSCALL_TTY_WRITE, |
---|
| 482 | (unsigned int)pbuf, |
---|
| 483 | len, |
---|
| 484 | channel, |
---|
| 485 | 0); |
---|
| 486 | if (ret != len) goto return_error; |
---|
| 487 | |
---|
| 488 | goto printf_text; |
---|
[258] | 489 | } |
---|
| 490 | |
---|
[295] | 491 | return_error: |
---|
[345] | 492 | return 1; |
---|
| 493 | } // end __printf() |
---|
[295] | 494 | |
---|
[345] | 495 | |
---|
| 496 | //////////////////////////////////////// |
---|
| 497 | void giet_tty_printf( char* format, ...) |
---|
| 498 | { |
---|
| 499 | va_list args; |
---|
| 500 | |
---|
| 501 | va_start( args, format ); |
---|
| 502 | int ret = __printf(format, 0xFFFFFFFF, &args); |
---|
[295] | 503 | va_end( args ); |
---|
[345] | 504 | |
---|
| 505 | if (ret) |
---|
| 506 | { |
---|
[382] | 507 | giet_exit("ERROR in giet_tty_printf()"); |
---|
[345] | 508 | } |
---|
[295] | 509 | } // end giet_tty_printf() |
---|
| 510 | |
---|
| 511 | //////////////////////////////////////// |
---|
| 512 | void giet_shr_printf( char* format, ...) |
---|
[258] | 513 | { |
---|
[295] | 514 | va_list args; |
---|
[345] | 515 | volatile unsigned int sr_save; |
---|
[258] | 516 | |
---|
[295] | 517 | sys_call( SYSCALL_TTY_GET_LOCK, |
---|
[501] | 518 | 0, |
---|
[295] | 519 | (unsigned int)&sr_save, |
---|
| 520 | 0, 0 ); |
---|
| 521 | |
---|
[345] | 522 | va_start( args, format ); |
---|
[501] | 523 | int ret = __printf(format, 0, &args); |
---|
[345] | 524 | va_end( args ); |
---|
[258] | 525 | |
---|
[295] | 526 | sys_call( SYSCALL_TTY_RELEASE_LOCK, |
---|
[501] | 527 | 0, |
---|
[295] | 528 | (unsigned int)&sr_save, |
---|
| 529 | 0, 0 ); |
---|
[267] | 530 | |
---|
[345] | 531 | if (ret) |
---|
[258] | 532 | { |
---|
[345] | 533 | giet_exit("error in giet_shr_printf()"); |
---|
[258] | 534 | } |
---|
[345] | 535 | } // end giet_shr_printf() |
---|
[267] | 536 | |
---|
[295] | 537 | ///////////////////////////////// |
---|
| 538 | void giet_tty_getc( char * byte ) |
---|
| 539 | { |
---|
| 540 | int ret; |
---|
| 541 | |
---|
| 542 | do |
---|
[267] | 543 | { |
---|
[295] | 544 | ret = sys_call(SYSCALL_TTY_READ, |
---|
| 545 | (unsigned int)byte, // buffer address |
---|
| 546 | 1, // number of characters |
---|
| 547 | 0xFFFFFFFF, // channel index from task context |
---|
| 548 | 0); |
---|
| 549 | if ( ret < 0 ) giet_exit("error in giet_tty_getc()"); |
---|
[267] | 550 | } |
---|
[295] | 551 | while (ret != 1); |
---|
| 552 | } |
---|
[267] | 553 | |
---|
[295] | 554 | ///////////////////////////////////// |
---|
| 555 | void giet_tty_gets( char* buf, |
---|
| 556 | unsigned int bufsize ) |
---|
| 557 | { |
---|
[647] | 558 | int ret; // return value from syscalls |
---|
[295] | 559 | unsigned char byte; |
---|
| 560 | unsigned int index = 0; |
---|
[647] | 561 | unsigned int string_cancel = 0x00082008; // string containing BS/SPACE/BS |
---|
[295] | 562 | |
---|
| 563 | while (index < (bufsize - 1)) |
---|
| 564 | { |
---|
[647] | 565 | // get one character |
---|
[295] | 566 | do |
---|
| 567 | { |
---|
| 568 | ret = sys_call(SYSCALL_TTY_READ, |
---|
| 569 | (unsigned int)(&byte), |
---|
| 570 | 1, |
---|
[647] | 571 | 0xFFFFFFFF, // channel index from task context |
---|
[295] | 572 | 0); |
---|
| 573 | if ( ret < 0 ) giet_exit("error in giet_tty_gets()"); |
---|
| 574 | } |
---|
| 575 | while (ret != 1); |
---|
| 576 | |
---|
[647] | 577 | // analyse character |
---|
| 578 | if (byte == 0x0A) // LF special character |
---|
[295] | 579 | { |
---|
| 580 | break; |
---|
| 581 | } |
---|
[647] | 582 | else if ( (byte == 0x7F) || // DEL special character |
---|
| 583 | (byte == 0x08) ) // BS special character |
---|
[295] | 584 | { |
---|
[647] | 585 | if ( index > 0 ) |
---|
| 586 | { |
---|
| 587 | index--; |
---|
| 588 | |
---|
| 589 | // cancel character |
---|
| 590 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 591 | (unsigned int)(&string_cancel), |
---|
| 592 | 3, |
---|
| 593 | 0XFFFFFFFF, // channel index from task context |
---|
| 594 | 0 ); |
---|
| 595 | if ( ret < 0 ) giet_exit("error in giet_tty_gets()"); |
---|
| 596 | } |
---|
[295] | 597 | } |
---|
[647] | 598 | else if ( (byte < 0x20) || (byte > 0x7F) ) // non printable characters |
---|
[295] | 599 | { |
---|
[647] | 600 | } |
---|
| 601 | else // take all other characters |
---|
| 602 | { |
---|
[295] | 603 | buf[index] = byte; |
---|
| 604 | index++; |
---|
[647] | 605 | |
---|
| 606 | // echo |
---|
| 607 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 608 | (unsigned int)(&byte), |
---|
| 609 | 1, |
---|
| 610 | 0XFFFFFFFF, // channel index from task context |
---|
| 611 | 0 ); |
---|
| 612 | if ( ret < 0 ) giet_exit("error in giet_tty_gets()"); |
---|
| 613 | |
---|
[295] | 614 | } |
---|
| 615 | } |
---|
| 616 | buf[index] = 0; |
---|
[258] | 617 | |
---|
[647] | 618 | } // end giet_tty_gets() |
---|
| 619 | |
---|
[295] | 620 | /////////////////////////////////////// |
---|
| 621 | void giet_tty_getw( unsigned int* val ) |
---|
| 622 | { |
---|
| 623 | unsigned char buf[32]; |
---|
| 624 | unsigned int string_byte = 0x00000000; // string containing one single byte |
---|
| 625 | unsigned int string_cancel = 0x00082008; // string containing BS/SPACE/BS |
---|
| 626 | unsigned int save = 0; |
---|
| 627 | unsigned int dec = 0; |
---|
| 628 | unsigned int done = 0; |
---|
| 629 | unsigned int overflow = 0; |
---|
| 630 | unsigned int length = 0; |
---|
| 631 | unsigned int i; |
---|
| 632 | int ret; // return value from syscalls |
---|
| 633 | |
---|
| 634 | // get characters |
---|
| 635 | while (done == 0) |
---|
| 636 | { |
---|
| 637 | // read one character |
---|
| 638 | do |
---|
| 639 | { |
---|
| 640 | ret = sys_call( SYSCALL_TTY_READ, |
---|
| 641 | (unsigned int)(&string_byte), |
---|
| 642 | 1, |
---|
[647] | 643 | 0xFFFFFFFF, // channel index from task context |
---|
[295] | 644 | 0); |
---|
| 645 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
| 646 | } |
---|
| 647 | while (ret != 1); |
---|
[258] | 648 | |
---|
[295] | 649 | // analyse character |
---|
[647] | 650 | if ((string_byte > 0x2F) && (string_byte < 0x3A)) // decimal character |
---|
[295] | 651 | { |
---|
| 652 | buf[length] = (unsigned char)string_byte; |
---|
| 653 | length++; |
---|
[258] | 654 | |
---|
[295] | 655 | // echo |
---|
| 656 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 657 | (unsigned int)(&string_byte), |
---|
| 658 | 1, |
---|
[647] | 659 | 0xFFFFFFFF, // channel index from task context |
---|
[295] | 660 | 0 ); |
---|
[647] | 661 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
[295] | 662 | } |
---|
[647] | 663 | else if (string_byte == 0x0A) // LF character |
---|
[295] | 664 | { |
---|
| 665 | done = 1; |
---|
| 666 | } |
---|
[647] | 667 | else if ( (string_byte == 0x7F) || // DEL character |
---|
| 668 | (string_byte == 0x08) ) // BS character |
---|
[295] | 669 | { |
---|
| 670 | if ( length > 0 ) |
---|
| 671 | { |
---|
| 672 | length--; // cancel the character |
---|
| 673 | |
---|
| 674 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 675 | (unsigned int)(&string_cancel), |
---|
| 676 | 3, |
---|
[647] | 677 | 0xFFFFFFFF, // channel index from task context |
---|
[295] | 678 | 0 ); |
---|
[352] | 679 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
[295] | 680 | } |
---|
| 681 | } |
---|
| 682 | |
---|
| 683 | // test buffer overflow |
---|
| 684 | if ( length >= 32 ) |
---|
| 685 | { |
---|
| 686 | overflow = 1; |
---|
| 687 | done = 1; |
---|
| 688 | } |
---|
| 689 | } // end while characters |
---|
| 690 | |
---|
| 691 | // string to int conversion with overflow detection |
---|
| 692 | if ( overflow == 0 ) |
---|
| 693 | { |
---|
| 694 | for (i = 0; (i < length) && (overflow == 0) ; i++) |
---|
| 695 | { |
---|
| 696 | dec = dec * 10 + (buf[i] - 0x30); |
---|
| 697 | if (dec < save) overflow = 1; |
---|
| 698 | save = dec; |
---|
| 699 | } |
---|
| 700 | } |
---|
| 701 | |
---|
| 702 | // final evaluation |
---|
| 703 | if ( overflow == 0 ) |
---|
| 704 | { |
---|
| 705 | // return value |
---|
| 706 | *val = dec; |
---|
| 707 | } |
---|
| 708 | else |
---|
| 709 | { |
---|
| 710 | // cancel all echo characters |
---|
| 711 | for (i = 0; i < length ; i++) |
---|
| 712 | { |
---|
| 713 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 714 | (unsigned int)(&string_cancel), |
---|
| 715 | 3, |
---|
[647] | 716 | 0xFFFFFFFF, // channel index from task context |
---|
[295] | 717 | 0 ); |
---|
[352] | 718 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
[295] | 719 | } |
---|
| 720 | // echo character '0' |
---|
| 721 | string_byte = 0x30; |
---|
| 722 | ret = sys_call( SYSCALL_TTY_WRITE, |
---|
| 723 | (unsigned int)(&string_byte), |
---|
| 724 | 1, |
---|
[647] | 725 | 0xFFFFFFFF, // channel index from task context |
---|
[295] | 726 | 0 ); |
---|
[352] | 727 | if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); |
---|
[295] | 728 | |
---|
| 729 | // return 0 value |
---|
| 730 | *val = 0; |
---|
| 731 | } |
---|
[647] | 732 | } // end giet_tty_getw() |
---|
[295] | 733 | |
---|
| 734 | |
---|
[258] | 735 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 736 | ///////////////////// TIMER related system calls //////////////////////////////// |
---|
| 737 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 738 | |
---|
[295] | 739 | /////////////////////// |
---|
[438] | 740 | void giet_timer_alloc() |
---|
[258] | 741 | { |
---|
[438] | 742 | if ( sys_call( SYSCALL_TIM_ALLOC, |
---|
| 743 | 0, 0, 0, 0 ) ) giet_exit("error in giet_timer_alloc()"); |
---|
[258] | 744 | } |
---|
[295] | 745 | |
---|
[438] | 746 | //////////////////////////////////////////// |
---|
| 747 | void giet_timer_start( unsigned int period ) |
---|
| 748 | { |
---|
| 749 | if ( sys_call( SYSCALL_TIM_START, |
---|
| 750 | period, |
---|
| 751 | 0, 0, 0 ) ) giet_exit("error in giet_timer_start()"); |
---|
| 752 | } |
---|
| 753 | |
---|
[295] | 754 | ////////////////////// |
---|
| 755 | void giet_timer_stop() |
---|
[258] | 756 | { |
---|
[438] | 757 | if ( sys_call( SYSCALL_TIM_STOP, |
---|
| 758 | 0, 0, 0, 0 ) ) giet_exit("error in giet_timer_stop()"); |
---|
[258] | 759 | } |
---|
| 760 | |
---|
| 761 | |
---|
| 762 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 763 | /////////////// Frame buffer device related system calls /////////////////////// |
---|
| 764 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 765 | |
---|
[438] | 766 | ///////////////////////// |
---|
| 767 | void giet_fbf_cma_alloc() |
---|
[258] | 768 | { |
---|
[438] | 769 | if ( sys_call( SYSCALL_FBF_CMA_ALLOC, |
---|
| 770 | 0, 0, 0, 0 ) ) giet_exit("error in giet_fbf_cma_alloc()"); |
---|
[258] | 771 | } |
---|
[295] | 772 | |
---|
| 773 | /////////////////////////////////////////// |
---|
[614] | 774 | void giet_fbf_cma_init_buf( void* buf0_vbase, |
---|
| 775 | void* buf1_vbase, |
---|
| 776 | void* sts0_vaddr, |
---|
| 777 | void* sts1_vaddr ) |
---|
[258] | 778 | { |
---|
[614] | 779 | if ( sys_call( SYSCALL_FBF_CMA_INIT_BUF, |
---|
| 780 | (unsigned int)buf0_vbase, |
---|
| 781 | (unsigned int)buf1_vbase, |
---|
| 782 | (unsigned int)sts0_vaddr, |
---|
| 783 | (unsigned int)sts1_vaddr ) ) giet_exit("error in giet_fbf_cma_init_buf()"); |
---|
| 784 | } |
---|
| 785 | |
---|
| 786 | /////////////////////////////////////////// |
---|
| 787 | void giet_fbf_cma_start( unsigned int length ) |
---|
| 788 | { |
---|
[438] | 789 | if ( sys_call( SYSCALL_FBF_CMA_START, |
---|
[614] | 790 | length, |
---|
| 791 | 0, 0, 0 ) ) giet_exit("error in giet_fbf_cma_start()"); |
---|
[258] | 792 | } |
---|
[295] | 793 | |
---|
[438] | 794 | //////////////////////////////////////////////// |
---|
| 795 | void giet_fbf_cma_display( unsigned int buffer ) |
---|
[258] | 796 | { |
---|
[438] | 797 | if ( sys_call( SYSCALL_FBF_CMA_DISPLAY, |
---|
| 798 | buffer, |
---|
| 799 | 0, 0, 0 ) ) giet_exit("error in giet_fbf_cma_display()"); |
---|
[258] | 800 | } |
---|
[295] | 801 | |
---|
| 802 | //////////////////////// |
---|
[438] | 803 | void giet_fbf_cma_stop() |
---|
[258] | 804 | { |
---|
[438] | 805 | if ( sys_call( SYSCALL_FBF_CMA_STOP, |
---|
| 806 | 0, 0, 0, 0 ) ) giet_exit("error in giet_fbf_cma_stop()"); |
---|
[258] | 807 | } |
---|
| 808 | |
---|
[438] | 809 | ////////////////////////////////////////////// |
---|
| 810 | void giet_fbf_sync_write( unsigned int offset, |
---|
| 811 | void * buffer, |
---|
| 812 | unsigned int length ) |
---|
| 813 | { |
---|
| 814 | if ( sys_call( SYSCALL_FBF_SYNC_WRITE, |
---|
| 815 | offset, |
---|
| 816 | (unsigned int)buffer, |
---|
| 817 | length, |
---|
| 818 | 0 ) ) giet_exit("error in giet_fbf_sync_write()"); |
---|
| 819 | } |
---|
[258] | 820 | |
---|
[438] | 821 | ///////////////////////////////////////////// |
---|
| 822 | void giet_fbf_sync_read( unsigned int offset, |
---|
| 823 | void * buffer, |
---|
| 824 | unsigned int length ) |
---|
| 825 | { |
---|
| 826 | if ( sys_call( SYSCALL_FBF_SYNC_READ, |
---|
| 827 | offset, |
---|
| 828 | (unsigned int)buffer, |
---|
| 829 | length, |
---|
| 830 | 0 ) ) giet_exit("error in giet_fbf_sync_read()"); |
---|
| 831 | } |
---|
| 832 | |
---|
| 833 | |
---|
[258] | 834 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 835 | /////////////////////// NIC related system calls ///////////////////////////////// |
---|
| 836 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 837 | |
---|
[501] | 838 | //////////////////////////////////////////////////// |
---|
| 839 | unsigned int giet_nic_rx_alloc( unsigned int xmax, |
---|
| 840 | unsigned int ymax ) |
---|
[258] | 841 | { |
---|
[461] | 842 | int channel = sys_call( SYSCALL_NIC_ALLOC, |
---|
| 843 | 1, |
---|
[501] | 844 | xmax, |
---|
| 845 | ymax, |
---|
| 846 | 0 ); |
---|
[487] | 847 | if ( channel < 0 ) giet_exit("error in giet_nic_rx_alloc()"); |
---|
[461] | 848 | |
---|
[487] | 849 | return (unsigned int)channel; |
---|
[258] | 850 | } |
---|
[295] | 851 | |
---|
[501] | 852 | //////////////////////////////////////////////////// |
---|
| 853 | unsigned int giet_nic_tx_alloc( unsigned int xmax, |
---|
| 854 | unsigned int ymax ) |
---|
[258] | 855 | { |
---|
[461] | 856 | int channel = sys_call( SYSCALL_NIC_ALLOC, |
---|
[501] | 857 | 0, |
---|
| 858 | xmax, |
---|
| 859 | ymax, |
---|
| 860 | 0 ); |
---|
[461] | 861 | if ( channel < 0 ) giet_exit("error in giet_nic_tx_alloc()"); |
---|
| 862 | |
---|
[487] | 863 | return (unsigned int)channel; |
---|
[450] | 864 | } |
---|
| 865 | |
---|
[487] | 866 | ////////////////////////////////////////////// |
---|
| 867 | void giet_nic_rx_start( unsigned int channel ) |
---|
[450] | 868 | { |
---|
[461] | 869 | if ( sys_call( SYSCALL_NIC_START, |
---|
| 870 | 1, |
---|
[487] | 871 | channel, |
---|
| 872 | 0, 0 ) ) giet_exit("error in giet_nic_rx_start()"); |
---|
[450] | 873 | } |
---|
| 874 | |
---|
[487] | 875 | ////////////////////////////////////////////// |
---|
| 876 | void giet_nic_tx_start( unsigned int channel ) |
---|
[450] | 877 | { |
---|
[461] | 878 | if ( sys_call( SYSCALL_NIC_START, |
---|
| 879 | 0, |
---|
[487] | 880 | channel, |
---|
| 881 | 0, 0 ) ) giet_exit("error in giet_nic_tx_start()"); |
---|
[450] | 882 | } |
---|
| 883 | |
---|
[461] | 884 | /////////////////////////////////////////////////////////// |
---|
| 885 | void giet_nic_rx_move( unsigned int channel, void* buffer ) |
---|
[450] | 886 | { |
---|
[461] | 887 | if ( sys_call( SYSCALL_NIC_MOVE, |
---|
| 888 | 1, |
---|
| 889 | channel, |
---|
[438] | 890 | (unsigned int)buffer, |
---|
[461] | 891 | 0 ) ) giet_exit("error in giet_nic_rx_move()"); |
---|
[258] | 892 | } |
---|
| 893 | |
---|
[461] | 894 | /////////////////////////////////////////////////////////// |
---|
| 895 | void giet_nic_tx_move( unsigned int channel, void* buffer ) |
---|
[438] | 896 | { |
---|
[461] | 897 | if ( sys_call( SYSCALL_NIC_MOVE, |
---|
| 898 | 0, |
---|
| 899 | channel, |
---|
[438] | 900 | (unsigned int)buffer, |
---|
[461] | 901 | 0 ) ) giet_exit("error in giet_nic_tx_move()"); |
---|
[438] | 902 | } |
---|
| 903 | |
---|
[487] | 904 | ///////////////////////////////////////////// |
---|
| 905 | void giet_nic_rx_stop( unsigned int channel ) |
---|
[450] | 906 | { |
---|
[461] | 907 | if ( sys_call( SYSCALL_NIC_STOP, |
---|
| 908 | 1, |
---|
[487] | 909 | channel, |
---|
| 910 | 0, 0 ) ) giet_exit("error in giet_nic_rx_stop()"); |
---|
[450] | 911 | } |
---|
| 912 | |
---|
[487] | 913 | ///////////////////////////////////////////// |
---|
| 914 | void giet_nic_tx_stop( unsigned int channel ) |
---|
[450] | 915 | { |
---|
[461] | 916 | if ( sys_call( SYSCALL_NIC_STOP, |
---|
| 917 | 0, |
---|
[487] | 918 | channel, |
---|
| 919 | 0, 0 ) ) giet_exit("error in giet_nic_tx_stop()"); |
---|
[450] | 920 | } |
---|
| 921 | |
---|
[487] | 922 | ////////////////////////////////////////////// |
---|
| 923 | void giet_nic_rx_stats( unsigned int channel ) |
---|
[461] | 924 | { |
---|
| 925 | if ( sys_call( SYSCALL_NIC_STATS, |
---|
| 926 | 1, |
---|
[487] | 927 | channel, |
---|
| 928 | 0, 0 ) ) giet_exit("error in giet_nic_rx_stats()"); |
---|
[461] | 929 | } |
---|
[450] | 930 | |
---|
[487] | 931 | ////////////////////////////////////////////// |
---|
| 932 | void giet_nic_tx_stats( unsigned int channel ) |
---|
[461] | 933 | { |
---|
| 934 | if ( sys_call( SYSCALL_NIC_STATS, |
---|
| 935 | 0, |
---|
[487] | 936 | channel, |
---|
| 937 | 0, 0 ) ) giet_exit("error in giet_nic_tx_stats()"); |
---|
[461] | 938 | } |
---|
| 939 | |
---|
[487] | 940 | ////////////////////////////////////////////// |
---|
| 941 | void giet_nic_rx_clear( unsigned int channel ) |
---|
[461] | 942 | { |
---|
| 943 | if ( sys_call( SYSCALL_NIC_CLEAR, |
---|
| 944 | 1, |
---|
[487] | 945 | channel, |
---|
| 946 | 0, 0 ) ) giet_exit("error in giet_nic_rx_clear()"); |
---|
[461] | 947 | } |
---|
| 948 | |
---|
[487] | 949 | ////////////////////////////////////////////// |
---|
| 950 | void giet_nic_tx_clear( unsigned int channel ) |
---|
[461] | 951 | { |
---|
| 952 | if ( sys_call( SYSCALL_NIC_CLEAR, |
---|
| 953 | 0, |
---|
[487] | 954 | channel, |
---|
| 955 | 0, 0 ) ) giet_exit("error in giet_nic_tx_clear()"); |
---|
[461] | 956 | } |
---|
| 957 | |
---|
| 958 | |
---|
| 959 | |
---|
[295] | 960 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 961 | ///////////////////// FAT related system calls //////////////////////////////////// |
---|
| 962 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[258] | 963 | |
---|
[588] | 964 | ///////////////////////////////////////// |
---|
| 965 | int giet_fat_open( char* pathname, |
---|
| 966 | unsigned int flags ) |
---|
[295] | 967 | { |
---|
[588] | 968 | return sys_call( SYSCALL_FAT_OPEN, |
---|
| 969 | (unsigned int)pathname, |
---|
| 970 | flags, |
---|
| 971 | 0, 0 ); |
---|
[295] | 972 | } |
---|
[258] | 973 | |
---|
[588] | 974 | ///////////////////////////////////////// |
---|
| 975 | int giet_fat_close( unsigned int fd_id ) |
---|
[295] | 976 | { |
---|
[588] | 977 | return sys_call( SYSCALL_FAT_CLOSE, |
---|
| 978 | fd_id, |
---|
| 979 | 0, 0, 0 ); |
---|
[295] | 980 | } |
---|
| 981 | |
---|
[588] | 982 | ///////////////////////////////////////////// |
---|
[623] | 983 | int giet_fat_file_info( unsigned int fd_id, |
---|
| 984 | struct fat_file_info_s* info ) |
---|
[295] | 985 | { |
---|
[588] | 986 | return sys_call( SYSCALL_FAT_FINFO, |
---|
| 987 | fd_id, |
---|
[623] | 988 | (unsigned int)info, |
---|
| 989 | 0, 0 ); |
---|
[295] | 990 | } |
---|
| 991 | |
---|
[588] | 992 | /////////////////////////////////////// |
---|
| 993 | int giet_fat_read( unsigned int fd_id, |
---|
| 994 | void* buffer, |
---|
| 995 | unsigned int count ) |
---|
| 996 | { |
---|
| 997 | return sys_call( SYSCALL_FAT_READ, |
---|
| 998 | fd_id, |
---|
| 999 | (unsigned int)buffer, |
---|
| 1000 | count, |
---|
| 1001 | 0 ); |
---|
| 1002 | } |
---|
| 1003 | |
---|
| 1004 | //////////////////////////////////////// |
---|
| 1005 | int giet_fat_write( unsigned int fd_id, |
---|
[295] | 1006 | void* buffer, |
---|
[588] | 1007 | unsigned int count ) |
---|
[258] | 1008 | { |
---|
[295] | 1009 | return sys_call( SYSCALL_FAT_WRITE, |
---|
[588] | 1010 | fd_id, |
---|
[295] | 1011 | (unsigned int)buffer, |
---|
[588] | 1012 | count, |
---|
| 1013 | 0 ); |
---|
[258] | 1014 | } |
---|
[295] | 1015 | |
---|
[588] | 1016 | //////////////////////////////////////// |
---|
| 1017 | int giet_fat_lseek( unsigned int fd_id, |
---|
[295] | 1018 | unsigned int offset, |
---|
| 1019 | unsigned int whence ) |
---|
[258] | 1020 | { |
---|
[588] | 1021 | return sys_call( SYSCALL_FAT_LSEEK, |
---|
| 1022 | fd_id, |
---|
| 1023 | offset, |
---|
| 1024 | whence, |
---|
| 1025 | 0 ); |
---|
[258] | 1026 | } |
---|
[295] | 1027 | |
---|
[588] | 1028 | //////////////////////////////////////////// |
---|
| 1029 | int giet_fat_remove( char* pathname, |
---|
| 1030 | unsigned int should_be_dir ) |
---|
[258] | 1031 | { |
---|
[588] | 1032 | return sys_call( SYSCALL_FAT_REMOVE, |
---|
| 1033 | (unsigned int)pathname, |
---|
| 1034 | should_be_dir, |
---|
| 1035 | 0, 0 ); |
---|
[258] | 1036 | } |
---|
[295] | 1037 | |
---|
| 1038 | ///////////////////////////////////// |
---|
[588] | 1039 | int giet_fat_rename( char* old_path, |
---|
| 1040 | char* new_path ) |
---|
[258] | 1041 | { |
---|
[588] | 1042 | return sys_call( SYSCALL_FAT_RENAME, |
---|
| 1043 | (unsigned int)old_path, |
---|
| 1044 | (unsigned int)new_path, |
---|
| 1045 | 0, 0 ); |
---|
[258] | 1046 | } |
---|
[295] | 1047 | |
---|
[588] | 1048 | //////////////////////////////////// |
---|
| 1049 | int giet_fat_mkdir( char* pathname ) |
---|
| 1050 | { |
---|
| 1051 | return sys_call( SYSCALL_FAT_MKDIR, |
---|
| 1052 | (unsigned int)pathname, |
---|
| 1053 | 0, 0, 0 ); |
---|
| 1054 | } |
---|
[295] | 1055 | |
---|
[588] | 1056 | ///////////////////////////////////// |
---|
| 1057 | int giet_fat_list( char* pathname ) |
---|
| 1058 | { |
---|
| 1059 | return sys_call( SYSCALL_FAT_LIST, |
---|
| 1060 | (unsigned int)pathname, |
---|
| 1061 | 0, 0, 0 ); |
---|
| 1062 | } |
---|
[295] | 1063 | |
---|
| 1064 | |
---|
[588] | 1065 | |
---|
[390] | 1066 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 1067 | ///////////////////// Miscellaneous system calls ///////////////////////////////// |
---|
| 1068 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 1069 | |
---|
[501] | 1070 | ///////////////////////////////////////////////// |
---|
| 1071 | void giet_procs_number( unsigned int* x_size, |
---|
| 1072 | unsigned int* y_size, |
---|
| 1073 | unsigned int* nprocs ) |
---|
[438] | 1074 | { |
---|
[501] | 1075 | if ( sys_call( SYSCALL_PROCS_NUMBER, |
---|
| 1076 | (unsigned int)x_size, |
---|
| 1077 | (unsigned int)y_size, |
---|
| 1078 | (unsigned int)nprocs, |
---|
| 1079 | 0 ) ) giet_exit("ERROR in giet_procs_number()"); |
---|
[438] | 1080 | } |
---|
| 1081 | |
---|
[295] | 1082 | //////////////////////////////////////////////////// |
---|
| 1083 | void giet_vobj_get_vbase( char* vspace_name, |
---|
| 1084 | char* vobj_name, |
---|
[438] | 1085 | unsigned int* vbase ) |
---|
[258] | 1086 | { |
---|
[295] | 1087 | if ( sys_call( SYSCALL_VOBJ_GET_VBASE, |
---|
| 1088 | (unsigned int) vspace_name, |
---|
| 1089 | (unsigned int) vobj_name, |
---|
[438] | 1090 | (unsigned int) vbase, |
---|
[390] | 1091 | 0 ) ) giet_exit("ERROR in giet_vobj_get_vbase()"); |
---|
[258] | 1092 | } |
---|
[260] | 1093 | |
---|
[438] | 1094 | //////////////////////////////////////////////////// |
---|
| 1095 | void giet_vobj_get_length( char* vspace_name, |
---|
| 1096 | char* vobj_name, |
---|
| 1097 | unsigned int* length ) |
---|
[260] | 1098 | { |
---|
[438] | 1099 | if ( sys_call( SYSCALL_VOBJ_GET_LENGTH, |
---|
| 1100 | (unsigned int) vspace_name, |
---|
| 1101 | (unsigned int) vobj_name, |
---|
| 1102 | (unsigned int) length, |
---|
| 1103 | 0 ) ) giet_exit("ERROR in giet_vobj_get_length()"); |
---|
[260] | 1104 | } |
---|
| 1105 | |
---|
[295] | 1106 | ///////////////////////////////////////// |
---|
| 1107 | void giet_heap_info( unsigned int* vaddr, |
---|
[368] | 1108 | unsigned int* length, |
---|
| 1109 | unsigned int x, |
---|
| 1110 | unsigned int y ) |
---|
[258] | 1111 | { |
---|
[295] | 1112 | if ( sys_call( SYSCALL_HEAP_INFO, |
---|
| 1113 | (unsigned int)vaddr, |
---|
| 1114 | (unsigned int)length, |
---|
[368] | 1115 | x, |
---|
[390] | 1116 | y ) ) giet_exit("ERROR in giet_heap_info()"); |
---|
[258] | 1117 | } |
---|
| 1118 | |
---|
[390] | 1119 | ///////////////////////////////////////// |
---|
| 1120 | void giet_get_xy( void* ptr, |
---|
| 1121 | unsigned int* px, |
---|
| 1122 | unsigned int* py ) |
---|
| 1123 | { |
---|
| 1124 | if ( sys_call( SYSCALL_GET_XY, |
---|
| 1125 | (unsigned int)ptr, |
---|
| 1126 | (unsigned int)px, |
---|
| 1127 | (unsigned int)py, |
---|
| 1128 | 0 ) ) giet_exit("ERROR in giet_get_xy()"); |
---|
| 1129 | } |
---|
| 1130 | |
---|
[258] | 1131 | // Local Variables: |
---|
| 1132 | // tab-width: 4 |
---|
| 1133 | // c-basic-offset: 4 |
---|
| 1134 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 1135 | // indent-tabs-mode: nil |
---|
| 1136 | // End: |
---|
| 1137 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 1138 | |
---|