| 1 | ///////////////////////////////////////////////////////////////////////////// |
|---|
| 2 | // File : stdio.h |
|---|
| 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 | #ifndef _STDIO_H |
|---|
| 13 | #define _STDIO_H |
|---|
| 14 | |
|---|
| 15 | #include "giet_fat32/fat32_shared.h" |
|---|
| 16 | #include "giet_common/mips32_registers.h" |
|---|
| 17 | |
|---|
| 18 | // These define must be synchronised with |
|---|
| 19 | // the _syscall_vector defined in file sys_handler.c |
|---|
| 20 | |
|---|
| 21 | #define SYSCALL_PROC_XYP 0x00 |
|---|
| 22 | #define SYSCALL_PROC_TIME 0x01 |
|---|
| 23 | #define SYSCALL_PROCS_NUMBER 0x02 |
|---|
| 24 | #define SYSCALL_GET_XY 0x03 |
|---|
| 25 | // 0x04 |
|---|
| 26 | #define SYSCALL_VOBJ_GET_VBASE 0x05 |
|---|
| 27 | #define SYSCALL_VOBJ_GET_LENGTH 0x06 |
|---|
| 28 | #define SYSCALL_HEAP_INFO 0x07 |
|---|
| 29 | #define SYSCALL_FBF_SIZE 0x08 |
|---|
| 30 | #define SYSCALL_FBF_ALLOC 0x09 |
|---|
| 31 | #define SYSCALL_FBF_CMA_ALLOC 0x0A |
|---|
| 32 | #define SYSCALL_FBF_CMA_INIT_BUF 0x0B |
|---|
| 33 | #define SYSCALL_FBF_CMA_START 0x0C |
|---|
| 34 | #define SYSCALL_FBF_CMA_DISPLAY 0x0D |
|---|
| 35 | #define SYSCALL_FBF_CMA_STOP 0x0E |
|---|
| 36 | // 0x0F |
|---|
| 37 | |
|---|
| 38 | #define SYSCALL_APPS_STATUS 0x10 |
|---|
| 39 | #define SYSCALL_FBF_SYNC_WRITE 0x11 |
|---|
| 40 | #define SYSCALL_FBF_SYNC_READ 0x12 |
|---|
| 41 | // 0x13 |
|---|
| 42 | #define SYSCALL_TIM_ALLOC 0x14 |
|---|
| 43 | #define SYSCALL_TIM_START 0x15 |
|---|
| 44 | #define SYSCALL_TIM_STOP 0x16 |
|---|
| 45 | #define SYSCALL_KILL_APP 0x17 |
|---|
| 46 | #define SYSCALL_EXEC_APP 0x18 |
|---|
| 47 | // 0x19 |
|---|
| 48 | #define SYSCALL_PTHREAD_CONTROL 0x1A |
|---|
| 49 | #define SYSCALL_PTHREAD_YIELD 0x1B |
|---|
| 50 | #define SYSCALL_PTHREAD_KILL 0x1C |
|---|
| 51 | #define SYSCALL_PTHREAD_CREATE 0x1D |
|---|
| 52 | #define SYSCALL_PTHREAD_JOIN 0x1E |
|---|
| 53 | #define SYSCALL_PTHREAD_EXIT 0x1F |
|---|
| 54 | |
|---|
| 55 | #define SYSCALL_FAT_OPEN 0x20 |
|---|
| 56 | #define SYSCALL_FAT_READ 0x21 |
|---|
| 57 | #define SYSCALL_FAT_WRITE 0x22 |
|---|
| 58 | #define SYSCALL_FAT_LSEEK 0x23 |
|---|
| 59 | #define SYSCALL_FAT_FINFO 0x24 |
|---|
| 60 | #define SYSCALL_FAT_CLOSE 0x25 |
|---|
| 61 | #define SYSCALL_FAT_REMOVE 0x26 |
|---|
| 62 | #define SYSCALL_FAT_RENAME 0x27 |
|---|
| 63 | #define SYSCALL_FAT_MKDIR 0x28 |
|---|
| 64 | #define SYSCALL_FAT_OPENDIR 0x29 |
|---|
| 65 | #define SYSCALL_FAT_CLOSEDIR 0x2A |
|---|
| 66 | #define SYSCALL_FAT_READDIR 0x2B |
|---|
| 67 | // 0x2C |
|---|
| 68 | // 0x2D |
|---|
| 69 | // 0x2E |
|---|
| 70 | // 0x2F |
|---|
| 71 | |
|---|
| 72 | #define SYSCALL_NIC_ALLOC 0x30 |
|---|
| 73 | #define SYSCALL_NIC_START 0x31 |
|---|
| 74 | #define SYSCALL_NIC_MOVE 0x32 |
|---|
| 75 | #define SYSCALL_NIC_STOP 0x33 |
|---|
| 76 | #define SYSCALL_NIC_STATS 0x34 |
|---|
| 77 | #define SYSCALL_NIC_CLEAR 0x35 |
|---|
| 78 | #define SYSCALL_TTY_WRITE 0x36 |
|---|
| 79 | #define SYSCALL_TTY_READ 0x37 |
|---|
| 80 | #define SYSCALL_TTY_ALLOC 0x38 |
|---|
| 81 | // 0x39 |
|---|
| 82 | // 0x3A |
|---|
| 83 | #define SYSCALL_COPROC_COMPLETED 0x3B |
|---|
| 84 | #define SYSCALL_COPROC_ALLOC 0x3C |
|---|
| 85 | #define SYSCALL_COPROC_CHANNEL_INIT 0x3D |
|---|
| 86 | #define SYSCALL_COPROC_RUN 0x3E |
|---|
| 87 | #define SYSCALL_COPROC_RELEASE 0x3F |
|---|
| 88 | |
|---|
| 89 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 90 | // Define the error codes for the syscall handlers |
|---|
| 91 | // These define must be synchronized with values in the sys_handler.h file |
|---|
| 92 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 93 | |
|---|
| 94 | #define SYSCALL_OK ( 0 ) |
|---|
| 95 | #define SYSCALL_VSPACE_NOT_FOUND (-1 ) |
|---|
| 96 | #define SYSCALL_THREAD_NOT_FOUND (-2 ) |
|---|
| 97 | #define SYSCALL_NOT_IN_SAME_VSPACE (-3 ) |
|---|
| 98 | #define SYSCALL_UNCOHERENT_THREAD_CONTEXT (-4 ) |
|---|
| 99 | #define SYSCALL_ILLEGAL_THREAD_COMMAND_TYPE (-5 ) |
|---|
| 100 | #define SYSCALL_CANNOT_LOAD_DATA_SEGMENT (-6 ) |
|---|
| 101 | #define SYSCALL_THREAD_ALREADY_ACTIVE (-7 ) |
|---|
| 102 | #define SYSCALL_MAIN_NOT_FOUND (-8 ) |
|---|
| 103 | #define SYSCALL_APPLI_CANNOT_BE_KILLED (-9 ) |
|---|
| 104 | #define SYSCALL_PTHREAD_ARGUMENT_NOT_SUPPORTED (-10) |
|---|
| 105 | #define SYSCALL_ILLEGAL_CLUSTER_COORDINATES (-11) |
|---|
| 106 | #define SYSCALL_VSEG_NOT_FOUND (-12) |
|---|
| 107 | #define SYSCALL_UNDEFINED_SYSTEM_CALL (-13) |
|---|
| 108 | #define SYSCALL_COPROCESSOR_NOT_FOUND (-14) |
|---|
| 109 | #define SYSCALL_COPROCESSOR_ILLEGAL_MODE (-15) |
|---|
| 110 | #define SYSCALL_COPROCESSOR_NON_ALLOCATED (-16) |
|---|
| 111 | #define SYSCALL_CHANNEL_ALREADY_ALLOCATED (-17) |
|---|
| 112 | #define SYSCALL_NO_CHANNEL_AVAILABLE (-18) |
|---|
| 113 | #define SYSCALL_CHANNEL_NON_ALLOCATED (-19) |
|---|
| 114 | #define SYSCALL_ILLEGAL_XY_ARGUMENTS (-20) |
|---|
| 115 | #define SYSCALL_OUT_OF_KERNEL_HEAP_MEMORY (-21) |
|---|
| 116 | #define SYSCALL_ADDRESS_NON_ALIGNED (-22) |
|---|
| 117 | #define SYSCALL_ADDRESS_NON_USER_ACCESSIBLE (-23) |
|---|
| 118 | #define SYSCALL_MISSING_INITIALISATION (-24) |
|---|
| 119 | #define SYSCALL_SHARED_PERIPHERAL_BUSY (-25) |
|---|
| 120 | |
|---|
| 121 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 122 | // Command values for the giet_pthread_control() syscall |
|---|
| 123 | // These define must be synchronized with values in the sys_handler.h file |
|---|
| 124 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 125 | |
|---|
| 126 | #define THREAD_CMD_PAUSE 0 |
|---|
| 127 | #define THREAD_CMD_RESUME 1 |
|---|
| 128 | #define THREAD_CMD_CONTEXT 2 |
|---|
| 129 | |
|---|
| 130 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 131 | // NULL pointer definition |
|---|
| 132 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 133 | |
|---|
| 134 | #define NULL (void *)0 |
|---|
| 135 | |
|---|
| 136 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 137 | // This generic C function is used to implement all system calls. |
|---|
| 138 | // It writes the system call arguments in the proper registers, |
|---|
| 139 | // and tells GCC what has been modified by system call execution. |
|---|
| 140 | // Returns -1 to signal an error. |
|---|
| 141 | //////////////////////////////////////////////////////////////////////////// |
|---|
| 142 | static inline int sys_call( int call_no, |
|---|
| 143 | int arg_0, |
|---|
| 144 | int arg_1, |
|---|
| 145 | int arg_2, |
|---|
| 146 | int arg_3 ) |
|---|
| 147 | { |
|---|
| 148 | register int reg_no_and_output asm("v0") = call_no; |
|---|
| 149 | register int reg_a0 asm("a0") = arg_0; |
|---|
| 150 | register int reg_a1 asm("a1") = arg_1; |
|---|
| 151 | register int reg_a2 asm("a2") = arg_2; |
|---|
| 152 | register int reg_a3 asm("a3") = arg_3; |
|---|
| 153 | |
|---|
| 154 | asm volatile( |
|---|
| 155 | "syscall" |
|---|
| 156 | : "+r" (reg_no_and_output), /* input/output argument */ |
|---|
| 157 | "+r" (reg_a0), |
|---|
| 158 | "+r" (reg_a1), |
|---|
| 159 | "+r" (reg_a2), |
|---|
| 160 | "+r" (reg_a3), |
|---|
| 161 | "+r" (reg_no_and_output) |
|---|
| 162 | : /* input arguments */ |
|---|
| 163 | : "memory", |
|---|
| 164 | /* These persistant registers will be saved on the stack by the |
|---|
| 165 | * compiler only if they contain relevant data. */ |
|---|
| 166 | "at", |
|---|
| 167 | "v1", |
|---|
| 168 | "ra", |
|---|
| 169 | "t0", |
|---|
| 170 | "t1", |
|---|
| 171 | "t2", |
|---|
| 172 | "t3", |
|---|
| 173 | "t4", |
|---|
| 174 | "t5", |
|---|
| 175 | "t6", |
|---|
| 176 | "t7", |
|---|
| 177 | "t8", |
|---|
| 178 | "t9" |
|---|
| 179 | ); |
|---|
| 180 | return (volatile int)reg_no_and_output; |
|---|
| 181 | } |
|---|
| 182 | |
|---|
| 183 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 184 | // MIPS32 related system calls |
|---|
| 185 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 186 | |
|---|
| 187 | extern void giet_proc_xyp( unsigned int* cluster_x, |
|---|
| 188 | unsigned int* cluster_y, |
|---|
| 189 | unsigned int* lpid ); |
|---|
| 190 | |
|---|
| 191 | extern unsigned int giet_proctime(); |
|---|
| 192 | |
|---|
| 193 | extern unsigned int giet_rand(); |
|---|
| 194 | |
|---|
| 195 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 196 | // Threads related system calls |
|---|
| 197 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 198 | |
|---|
| 199 | typedef unsigned int pthread_t; |
|---|
| 200 | |
|---|
| 201 | typedef unsigned int pthread_attr_t; |
|---|
| 202 | |
|---|
| 203 | extern int giet_pthread_create( pthread_t* trdid, |
|---|
| 204 | pthread_attr_t* attr, |
|---|
| 205 | void* function, |
|---|
| 206 | void* ptr ); |
|---|
| 207 | |
|---|
| 208 | extern void giet_pthread_exit( void* string ); |
|---|
| 209 | |
|---|
| 210 | extern int giet_pthread_join( pthread_t trdid, |
|---|
| 211 | void** ptr ); |
|---|
| 212 | |
|---|
| 213 | extern int giet_pthread_kill( pthread_t thread_id, |
|---|
| 214 | int signal ); |
|---|
| 215 | |
|---|
| 216 | extern void giet_pthread_yield(); |
|---|
| 217 | |
|---|
| 218 | extern void giet_pthread_assert( unsigned int condition, |
|---|
| 219 | char* string ); |
|---|
| 220 | |
|---|
| 221 | extern void giet_pthread_control( unsigned int command, |
|---|
| 222 | char* vspace_name, |
|---|
| 223 | char* thread_name ); |
|---|
| 224 | |
|---|
| 225 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 226 | // Application related system calls |
|---|
| 227 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 228 | |
|---|
| 229 | extern int giet_kill_application( char* name ); |
|---|
| 230 | |
|---|
| 231 | extern int giet_exec_application( char* name ); |
|---|
| 232 | |
|---|
| 233 | extern void giet_applications_status( char* name ); |
|---|
| 234 | |
|---|
| 235 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 236 | // Coprocessors related system calls |
|---|
| 237 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 238 | |
|---|
| 239 | // this structure is used by the giet_coproc_channel_init() |
|---|
| 240 | // system call to specify the communication channel parameters. |
|---|
| 241 | typedef struct giet_coproc_channel |
|---|
| 242 | { |
|---|
| 243 | unsigned int channel_mode; // MWMR / DMA_IRQ / DMA_NO_IRQ |
|---|
| 244 | unsigned int buffer_size; // memory buffer size |
|---|
| 245 | unsigned int buffer_vaddr; // memory buffer virtual address |
|---|
| 246 | unsigned int mwmr_vaddr; // MWMR descriptor virtual address |
|---|
| 247 | unsigned int lock_vaddr; // lock for MWMR virtual address |
|---|
| 248 | } giet_coproc_channel_t; |
|---|
| 249 | |
|---|
| 250 | extern void giet_coproc_alloc( unsigned int coproc_type, |
|---|
| 251 | unsigned int* coproc_info ); |
|---|
| 252 | |
|---|
| 253 | extern void giet_coproc_release( unsigned int coproc_reg_index ); |
|---|
| 254 | |
|---|
| 255 | extern void giet_coproc_channel_init( unsigned int channel, |
|---|
| 256 | giet_coproc_channel_t* desc ); |
|---|
| 257 | |
|---|
| 258 | extern void giet_coproc_run( unsigned int coproc_reg_index ); |
|---|
| 259 | |
|---|
| 260 | extern void giet_coproc_completed(); |
|---|
| 261 | |
|---|
| 262 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 263 | // TTY device related system calls |
|---|
| 264 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 265 | |
|---|
| 266 | extern void giet_tty_alloc( unsigned int shared ); |
|---|
| 267 | |
|---|
| 268 | extern void giet_tty_printf( char* format, ... ); |
|---|
| 269 | |
|---|
| 270 | extern void giet_tty_getc( char* byte ); |
|---|
| 271 | |
|---|
| 272 | extern void giet_tty_gets( char* buf, unsigned int bufsize ); |
|---|
| 273 | |
|---|
| 274 | extern void giet_tty_getw( unsigned int* val ); |
|---|
| 275 | |
|---|
| 276 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 277 | // TIMER device related system calls |
|---|
| 278 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 279 | |
|---|
| 280 | extern void giet_timer_alloc(); |
|---|
| 281 | |
|---|
| 282 | extern void giet_timer_start( unsigned int period ); |
|---|
| 283 | |
|---|
| 284 | extern void giet_timer_stop(); |
|---|
| 285 | |
|---|
| 286 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 287 | // Frame buffer device related system calls |
|---|
| 288 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 289 | |
|---|
| 290 | extern void giet_fbf_size(); |
|---|
| 291 | |
|---|
| 292 | extern void giet_fbf_alloc(); |
|---|
| 293 | |
|---|
| 294 | extern void giet_fbf_cma_alloc(); |
|---|
| 295 | |
|---|
| 296 | extern void giet_fbf_cma_init_buf( void* buf0_vbase, |
|---|
| 297 | void* buf1_vbase, |
|---|
| 298 | void* sts0_vaddr, |
|---|
| 299 | void* sts1_vaddr ); |
|---|
| 300 | |
|---|
| 301 | extern void giet_fbf_cma_start( unsigned int length ); |
|---|
| 302 | |
|---|
| 303 | extern void giet_fbf_cma_display( unsigned int buffer ); |
|---|
| 304 | |
|---|
| 305 | extern void giet_fbf_cma_stop(); |
|---|
| 306 | |
|---|
| 307 | extern void giet_fbf_sync_read( unsigned int offset, |
|---|
| 308 | void* buffer, |
|---|
| 309 | unsigned int length ); |
|---|
| 310 | |
|---|
| 311 | extern void giet_fbf_sync_write( unsigned int offset, |
|---|
| 312 | void* buffer, |
|---|
| 313 | unsigned int length ); |
|---|
| 314 | |
|---|
| 315 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 316 | // NIC related system calls |
|---|
| 317 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 318 | |
|---|
| 319 | extern void giet_nic_rx_alloc( unsigned int xmax, unsigned int ymax ); |
|---|
| 320 | |
|---|
| 321 | extern void giet_nic_tx_alloc( unsigned int xmax, unsigned int ymax ); |
|---|
| 322 | |
|---|
| 323 | extern void giet_nic_rx_start(); |
|---|
| 324 | |
|---|
| 325 | extern void giet_nic_tx_start(); |
|---|
| 326 | |
|---|
| 327 | extern void giet_nic_rx_move( void* buffer ); |
|---|
| 328 | |
|---|
| 329 | extern void giet_nic_tx_move( void* buffer ); |
|---|
| 330 | |
|---|
| 331 | extern void giet_nic_rx_stop(); |
|---|
| 332 | |
|---|
| 333 | extern void giet_nic_tx_stop(); |
|---|
| 334 | |
|---|
| 335 | extern void giet_nic_rx_stats(); |
|---|
| 336 | |
|---|
| 337 | extern void giet_nic_tx_stats(); |
|---|
| 338 | |
|---|
| 339 | extern void giet_nic_rx_clear(); |
|---|
| 340 | |
|---|
| 341 | extern void giet_nic_tx_clear(); |
|---|
| 342 | |
|---|
| 343 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 344 | // FAT related system calls |
|---|
| 345 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 346 | |
|---|
| 347 | extern int giet_fat_open( char* pathname, |
|---|
| 348 | unsigned int flags ); |
|---|
| 349 | |
|---|
| 350 | extern int giet_fat_close( unsigned int fd_id ); |
|---|
| 351 | |
|---|
| 352 | extern int giet_fat_file_info( unsigned int fd_id, |
|---|
| 353 | fat_file_info_t* info ); |
|---|
| 354 | |
|---|
| 355 | extern int giet_fat_read( unsigned int fd_id, |
|---|
| 356 | void* buffer, |
|---|
| 357 | unsigned int count ); |
|---|
| 358 | |
|---|
| 359 | extern int giet_fat_write( unsigned int fd, |
|---|
| 360 | void* buffer, |
|---|
| 361 | unsigned int count ); |
|---|
| 362 | |
|---|
| 363 | extern int giet_fat_lseek( unsigned int fd, |
|---|
| 364 | unsigned int offset, |
|---|
| 365 | unsigned int whence ); |
|---|
| 366 | |
|---|
| 367 | extern int giet_fat_remove( char* pathname, |
|---|
| 368 | unsigned int should_be_dir ); |
|---|
| 369 | |
|---|
| 370 | extern int giet_fat_rename( char* old_path, |
|---|
| 371 | char* new_path ); |
|---|
| 372 | |
|---|
| 373 | extern int giet_fat_mkdir( char* pathname ); |
|---|
| 374 | |
|---|
| 375 | extern int giet_fat_opendir( char* pathname ); |
|---|
| 376 | |
|---|
| 377 | extern int giet_fat_closedir( unsigned int fd_id ); |
|---|
| 378 | |
|---|
| 379 | extern int giet_fat_readdir( unsigned int fd_id, |
|---|
| 380 | fat_dirent_t* entry ); |
|---|
| 381 | |
|---|
| 382 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 383 | // Miscelaneous system calls |
|---|
| 384 | ////////////////////////////////////////////////////////////////////////// |
|---|
| 385 | |
|---|
| 386 | extern void giet_procs_number( unsigned int* x_size, |
|---|
| 387 | unsigned int* y_size, |
|---|
| 388 | unsigned int* nprocs ); |
|---|
| 389 | |
|---|
| 390 | extern void giet_vobj_get_vbase( char* vspace_name, |
|---|
| 391 | char* vobj_name, |
|---|
| 392 | unsigned int* vobj_vaddr); |
|---|
| 393 | |
|---|
| 394 | extern void giet_vobj_get_length( char* vspace_name, |
|---|
| 395 | char* vobj_name, |
|---|
| 396 | unsigned int* vobj_vaddr); |
|---|
| 397 | |
|---|
| 398 | extern void giet_heap_info( unsigned int* vaddr, |
|---|
| 399 | unsigned int* length, |
|---|
| 400 | unsigned int x, |
|---|
| 401 | unsigned int y ); |
|---|
| 402 | |
|---|
| 403 | extern void giet_get_xy( void* ptr, |
|---|
| 404 | unsigned int* px, |
|---|
| 405 | unsigned int* py ); |
|---|
| 406 | |
|---|
| 407 | #endif |
|---|
| 408 | |
|---|
| 409 | // Local Variables: |
|---|
| 410 | // tab-width: 4 |
|---|
| 411 | // c-basic-offset: 4 |
|---|
| 412 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
|---|
| 413 | // indent-tabs-mode: nil |
|---|
| 414 | // End: |
|---|
| 415 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
|---|
| 416 | |
|---|