[158] | 1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : sys_handler.c |
---|
| 3 | // Date : 01/04/2012 |
---|
| 4 | // Author : alain greiner and joel porquet |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | // The sys_handler.c and sys_handler.h files are part of the GIET nano-kernel. |
---|
| 8 | // It define the syscall_vector[] (at the end of this file), as well as the |
---|
| 9 | // associated syscall handlers that are not related to peripherals. |
---|
| 10 | // The syscall handlers for peripherals are defined in the drivers.c file. |
---|
| 11 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 12 | |
---|
| 13 | #include <sys_handler.h> |
---|
| 14 | #include <drivers.h> |
---|
| 15 | #include <ctx_handler.h> |
---|
| 16 | #include <common.h> |
---|
| 17 | #include <giet_config.h> |
---|
| 18 | #include <mapping_info.h> |
---|
| 19 | |
---|
| 20 | //////////////////////////////////////////////////////////////////////////// |
---|
| 21 | // Initialize the syscall vector with syscall handlers |
---|
| 22 | //////////////////////////////////////////////////////////////////////////// |
---|
| 23 | const void *_syscall_vector[32] = { |
---|
| 24 | &_procid, /* 0x00 */ |
---|
| 25 | &_proctime, /* 0x01 */ |
---|
| 26 | &_tty_write, /* 0x02 */ |
---|
| 27 | &_tty_read, /* 0x03 */ |
---|
| 28 | &_timer_write, /* 0x04 */ |
---|
| 29 | &_timer_read, /* 0x05 */ |
---|
| 30 | &_gcd_write, /* 0x06 */ |
---|
| 31 | &_gcd_read, /* 0x07 */ |
---|
| 32 | &_sys_ukn, /* 0x08 */ |
---|
| 33 | &_sys_ukn, /* 0x09 */ |
---|
| 34 | &_tty_read_irq, /* 0x0A */ |
---|
| 35 | &_sys_ukn, /* 0x0B */ |
---|
| 36 | &_sys_ukn, /* 0x0C */ |
---|
| 37 | &_ctx_switch, /* 0x0D */ |
---|
| 38 | &_exit, /* 0x0E */ |
---|
| 39 | &_procs_number, /* 0x0F */ |
---|
| 40 | &_fb_sync_write, /* 0x10 */ |
---|
| 41 | &_fb_sync_read, /* 0x11 */ |
---|
| 42 | &_fb_write, /* 0x12 */ |
---|
| 43 | &_fb_read, /* 0x13 */ |
---|
| 44 | &_fb_completed, /* 0x14 */ |
---|
| 45 | &_ioc_write, /* 0x15 */ |
---|
| 46 | &_ioc_read, /* 0x16 */ |
---|
| 47 | &_ioc_completed, /* 0x17 */ |
---|
| 48 | &_sys_ukn, /* 0x18 */ |
---|
| 49 | &_sys_ukn, /* 0x19 */ |
---|
[160] | 50 | &_vobj_get_vbase, /* 0x1A */ |
---|
[158] | 51 | &_sys_ukn, /* 0x1B */ |
---|
| 52 | &_sys_ukn, /* 0x1C */ |
---|
| 53 | &_sys_ukn, /* 0x1D */ |
---|
| 54 | &_sys_ukn, /* 0x1E */ |
---|
| 55 | &_sys_ukn, /* 0x1F */ |
---|
| 56 | }; |
---|
| 57 | |
---|
| 58 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 59 | // function executed in case of undefined syscall |
---|
| 60 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 61 | void _sys_ukn() |
---|
| 62 | { |
---|
| 63 | unsigned int epc; |
---|
| 64 | asm volatile("mfc0 %0, $14" : "=r"(epc)); |
---|
| 65 | |
---|
| 66 | _puts("\n\n!!! Undefined System Call !!!\n"); |
---|
| 67 | _puts("\nEPC = "); |
---|
| 68 | _putw( epc ); |
---|
| 69 | _exit(); |
---|
| 70 | } |
---|
| 71 | //////////////////////////////////////////////////////////////////////////// |
---|
| 72 | // _exit() |
---|
| 73 | // Task suicide... after printing a death message. |
---|
| 74 | //////////////////////////////////////////////////////////////////////////// |
---|
| 75 | void _exit() |
---|
| 76 | { |
---|
[189] | 77 | /* |
---|
[167] | 78 | unsigned int date = _proctime(); |
---|
[189] | 79 | |
---|
[158] | 80 | unsigned int proc_id = _procid(); |
---|
| 81 | |
---|
[189] | 82 | unsigned int task_id = _get_current_task_id(); |
---|
| 83 | |
---|
[158] | 84 | // print death message |
---|
[189] | 85 | _get_lock(&_tty_put_lock); |
---|
[158] | 86 | _puts("\n\n!!! Exit task "); |
---|
| 87 | _putw( task_id ); |
---|
| 88 | _puts(" on processor "); |
---|
| 89 | _putw( proc_id ); |
---|
[167] | 90 | _puts(" at cycle "); |
---|
| 91 | _putw( date ); |
---|
[165] | 92 | _puts("\n\n"); |
---|
[189] | 93 | _release_lock(&_tty_put_lock); |
---|
| 94 | */ |
---|
| 95 | |
---|
[158] | 96 | /* infinite loop */ |
---|
| 97 | while (1) asm volatile("nop"); |
---|
| 98 | } |
---|
| 99 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 100 | // _procid() |
---|
| 101 | // Access CP0 and returns current processor's identifier. |
---|
| 102 | // Max number or processors is 1024. |
---|
| 103 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 104 | unsigned int _procid() |
---|
| 105 | { |
---|
| 106 | unsigned int ret; |
---|
| 107 | asm volatile("mfc0 %0, $15, 1" : "=r"(ret)); |
---|
[165] | 108 | return (ret & 0xFFF); |
---|
[158] | 109 | } |
---|
| 110 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 111 | // _proctime() |
---|
| 112 | // Access CP0 and returns current processor's elapsed clock cycles since boot. |
---|
| 113 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 114 | unsigned int _proctime() |
---|
| 115 | { |
---|
| 116 | unsigned int ret; |
---|
| 117 | asm volatile("mfc0 %0, $9" : "=r"(ret)); |
---|
| 118 | return ret; |
---|
| 119 | } |
---|
| 120 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 121 | // _procnumber() |
---|
| 122 | // returns in buffer argument the number of processors in the cluster |
---|
| 123 | // specified by the cluster_id argument. |
---|
| 124 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 125 | unsigned int _procs_number( unsigned int cluster_id, |
---|
| 126 | unsigned int* buffer) |
---|
| 127 | { |
---|
[160] | 128 | mapping_header_t* header = (mapping_header_t*)&seg_mapping_base; |
---|
[158] | 129 | mapping_cluster_t* cluster = _get_cluster_base( header ); |
---|
| 130 | |
---|
| 131 | if ( cluster_id < header->clusters ) |
---|
| 132 | { |
---|
| 133 | *buffer = cluster[cluster_id].procs; |
---|
| 134 | return 0; |
---|
| 135 | } |
---|
| 136 | else |
---|
| 137 | { |
---|
| 138 | return 1; |
---|
| 139 | } |
---|
| 140 | } |
---|
[161] | 141 | |
---|
[158] | 142 | ///////////////////////////////////////////////////////////////////////////// |
---|
[163] | 143 | // _vobj_get_vbase() |
---|
[165] | 144 | // This function writes in vobj_buffer the virtual base address of a vobj |
---|
| 145 | // identified by the (vspace_name / vobj_name ) couple. |
---|
| 146 | // The vobj_type argument is redundant, and for checking purpose. |
---|
[160] | 147 | // returns 0: success, else: failed. |
---|
[158] | 148 | ///////////////////////////////////////////////////////////////////////////// |
---|
[165] | 149 | unsigned int _vobj_get_vbase( char* vspace_name, |
---|
| 150 | char* vobj_name, |
---|
| 151 | unsigned int vobj_type, |
---|
| 152 | unsigned int* vobj_vaddr ) |
---|
[158] | 153 | { |
---|
[160] | 154 | mapping_header_t* header = (mapping_header_t*)&seg_mapping_base; |
---|
[158] | 155 | mapping_vspace_t* vspace = _get_vspace_base( header ); |
---|
[160] | 156 | mapping_vobj_t* vobj = _get_vobj_base( header ); |
---|
[158] | 157 | |
---|
| 158 | unsigned int vspace_id; |
---|
[160] | 159 | unsigned int vobj_id; |
---|
| 160 | |
---|
[158] | 161 | |
---|
| 162 | // scan vspaces |
---|
| 163 | for ( vspace_id = 0 ; vspace_id < header->vspaces ; vspace_id++ ) |
---|
| 164 | { |
---|
| 165 | if ( _strncmp( vspace[vspace_id].name, vspace_name, 31) == 0 ) |
---|
| 166 | { |
---|
[160] | 167 | // scan vobjs |
---|
[165] | 168 | for( vobj_id = vspace[vspace_id].vobj_offset; |
---|
| 169 | vobj_id < (vspace[vspace_id].vobj_offset + vspace[vspace_id].vobjs); |
---|
| 170 | vobj_id++) |
---|
[158] | 171 | { |
---|
[160] | 172 | |
---|
| 173 | if ( _strncmp( vobj[vobj_id].name, vobj_name, 31) == 0 ) |
---|
[158] | 174 | { |
---|
[160] | 175 | if(vobj[vobj_id].type != vobj_type) |
---|
[165] | 176 | return -1; //wrong type |
---|
[160] | 177 | |
---|
[165] | 178 | *vobj_vaddr = (unsigned int)vobj[vobj_id].vaddr; |
---|
[158] | 179 | return 0; |
---|
| 180 | } |
---|
| 181 | } |
---|
| 182 | } |
---|
[163] | 183 | } |
---|
[165] | 184 | return -2; //not found |
---|
[158] | 185 | } |
---|
| 186 | |
---|