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 | |
---|
8 | #include <sys_handler.h> |
---|
9 | #include <tty_driver.h> |
---|
10 | #include <tim_driver.h> |
---|
11 | #include <nic_driver.h> |
---|
12 | #include <mmc_driver.h> |
---|
13 | #include <mwr_driver.h> |
---|
14 | #include <cma_driver.h> |
---|
15 | #include <ctx_handler.h> |
---|
16 | #include <fat32.h> |
---|
17 | #include <elf-types.h> |
---|
18 | #include <utils.h> |
---|
19 | #include <kernel_malloc.h> |
---|
20 | #include <tty0.h> |
---|
21 | #include <vmem.h> |
---|
22 | #include <hard_config.h> |
---|
23 | #include <giet_config.h> |
---|
24 | #include <mapping_info.h> |
---|
25 | #include <irq_handler.h> |
---|
26 | #include <io.h> |
---|
27 | |
---|
28 | #if !defined(X_SIZE) |
---|
29 | # error: You must define X_SIZE in the hard_config.h file |
---|
30 | #endif |
---|
31 | |
---|
32 | #if !defined(Y_SIZE) |
---|
33 | # error: You must define Y_SIZE in the hard_config.h file |
---|
34 | #endif |
---|
35 | |
---|
36 | #if !defined(NB_PROCS_MAX) |
---|
37 | # error: You must define NB_PROCS_MAX in the hard_config.h file |
---|
38 | #endif |
---|
39 | |
---|
40 | #if !defined(SEG_BOOT_MAPPING_BASE) |
---|
41 | # error: You must define SEG_BOOT_MAPPING_BASE in the hard_config.h file |
---|
42 | #endif |
---|
43 | |
---|
44 | #if !defined(NB_TTY_CHANNELS) |
---|
45 | # error: You must define NB_TTY_CHANNELS in the hard_config.h file |
---|
46 | #endif |
---|
47 | |
---|
48 | #if (NB_TTY_CHANNELS < 1) |
---|
49 | # error: NB_TTY_CHANNELS cannot be smaller than 1! |
---|
50 | #endif |
---|
51 | |
---|
52 | #if !defined(NB_TIM_CHANNELS) |
---|
53 | # error: You must define NB_TIM_CHANNELS in the hard_config.h file |
---|
54 | #endif |
---|
55 | |
---|
56 | #if !defined(NB_NIC_CHANNELS) |
---|
57 | # error: You must define NB_NIC_CHANNELS in the hard_config.h file |
---|
58 | #endif |
---|
59 | |
---|
60 | #if !defined(NB_CMA_CHANNELS) |
---|
61 | # error: You must define NB_CMA_CHANNELS in the hard_config.h file |
---|
62 | #endif |
---|
63 | |
---|
64 | #if !defined(GIET_NO_HARD_CC) |
---|
65 | # error: You must define GIET_NO_HARD_CC in the giet_config.h file |
---|
66 | #endif |
---|
67 | |
---|
68 | #if !defined ( GIET_NIC_MAC4 ) |
---|
69 | # error: You must define GIET_NIC_MAC4 in the giet_config.h file |
---|
70 | #endif |
---|
71 | |
---|
72 | #if !defined ( GIET_NIC_MAC2 ) |
---|
73 | # error: You must define GIET_NIC_MAC2 in the giet_config.h file |
---|
74 | #endif |
---|
75 | |
---|
76 | //////////////////////////////////////////////////////////////////////////// |
---|
77 | // Extern variables |
---|
78 | //////////////////////////////////////////////////////////////////////////// |
---|
79 | |
---|
80 | // allocated in tty0.c file. |
---|
81 | extern sqt_lock_t _tty0_sqt_lock; |
---|
82 | |
---|
83 | // allocated in mwr_driver.c file. |
---|
84 | extern simple_lock_t _coproc_lock[X_SIZE*Y_SIZE]; |
---|
85 | extern unsigned int _coproc_type[X_SIZE*Y_SIZE]; |
---|
86 | extern unsigned int _coproc_info[X_SIZE*Y_SIZE]; |
---|
87 | extern unsigned int _coproc_mode[X_SIZE*Y_SIZE]; |
---|
88 | extern unsigned int _coproc_error[X_SIZE*Y_SIZE]; |
---|
89 | extern unsigned int _coproc_trdid[X_SIZE*Y_SIZE]; |
---|
90 | |
---|
91 | // allocated in tty_driver.c file. |
---|
92 | extern tty_fifo_t _tty_rx_fifo[NB_TTY_CHANNELS]; |
---|
93 | |
---|
94 | // allocated in kernel_init.c file |
---|
95 | extern static_scheduler_t* _schedulers[X_SIZE][Y_SIZE][NB_PROCS_MAX]; |
---|
96 | |
---|
97 | // allocated in kernel_init.c file |
---|
98 | extern unsigned long long _ptabs_paddr[GIET_NB_VSPACE_MAX][X_SIZE][Y_SIZE]; |
---|
99 | |
---|
100 | //////////////////////////////////////////////////////////////////////////////// |
---|
101 | // Allocator protecting exclusive access to FBF by a single application. |
---|
102 | // - The number of users in a given application should be set by a single |
---|
103 | // thread using an _atomic_test_and_set(). |
---|
104 | // - The allocator is atomically decremented by each user thread when |
---|
105 | // the thread exit. |
---|
106 | //////////////////////////////////////////////////////////////////////////////// |
---|
107 | |
---|
108 | __attribute__((section(".kdata"))) |
---|
109 | unsigned int _fbf_alloc = 0; |
---|
110 | |
---|
111 | //////////////////////////////////////////////////////////////////////////////// |
---|
112 | // Channel allocators for multi-channels peripherals |
---|
113 | // - The array _***_channel_allocator[channel] defines the number of user |
---|
114 | // threads for a dynamically allocated channel of peripheral ***. |
---|
115 | // - The array _***_channel_wti[channel] defines the WTI index and the |
---|
116 | // processor coordinates for the processor receiving the channel WTI. |
---|
117 | //////////////////////////////////////////////////////////////////////////////// |
---|
118 | |
---|
119 | #if NB_TTY_CHANNELS |
---|
120 | __attribute__((section(".kdata"))) |
---|
121 | unsigned int _tty_channel_alloc[NB_TTY_CHANNELS] = {0}; |
---|
122 | |
---|
123 | __attribute__((section(".kdata"))) |
---|
124 | unsigned int _tty_channel_wti[NB_TTY_CHANNELS]; |
---|
125 | #endif |
---|
126 | |
---|
127 | #if NB_TIM_CHANNELS |
---|
128 | __attribute__((section(".kdata"))) |
---|
129 | unsigned int _tim_channel_alloc[NB_TIM_CHANNELS] = {0}; |
---|
130 | |
---|
131 | __attribute__((section(".kdata"))) |
---|
132 | unsigned int _tim_channel_wti[NB_TIM_CHANNELS]; |
---|
133 | #endif |
---|
134 | |
---|
135 | #if NB_CMA_CHANNELS |
---|
136 | __attribute__((section(".kdata"))) |
---|
137 | unsigned int _cma_channel_alloc[NB_CMA_CHANNELS] = {0}; |
---|
138 | |
---|
139 | __attribute__((section(".kdata"))) |
---|
140 | unsigned int _cma_channel_wti[NB_CMA_CHANNELS]; |
---|
141 | #endif |
---|
142 | |
---|
143 | #if NB_NIC_CHANNELS |
---|
144 | __attribute__((section(".kdata"))) |
---|
145 | unsigned int _nic_rx_channel_alloc[NB_NIC_CHANNELS] = {0}; |
---|
146 | |
---|
147 | __attribute__((section(".kdata"))) |
---|
148 | unsigned int _nic_rx_channel_wti[NB_NIC_CHANNELS]; |
---|
149 | |
---|
150 | __attribute__((section(".kdata"))) |
---|
151 | unsigned int _nic_tx_channel_alloc[NB_NIC_CHANNELS] = {0}; |
---|
152 | |
---|
153 | __attribute__((section(".kdata"))) |
---|
154 | unsigned int _nic_tx_channel_wti[NB_NIC_CHANNELS]; |
---|
155 | #endif |
---|
156 | |
---|
157 | //////////////////////////////////////////////////////////////////////////// |
---|
158 | // NIC_RX and NIC_TX kernel chbuf arrays |
---|
159 | //////////////////////////////////////////////////////////////////////////// |
---|
160 | |
---|
161 | __attribute__((section(".kdata"))) |
---|
162 | nic_chbuf_t _nic_ker_rx_chbuf[NB_NIC_CHANNELS] __attribute__((aligned(64))); |
---|
163 | |
---|
164 | __attribute__((section(".kdata"))) |
---|
165 | nic_chbuf_t _nic_ker_tx_chbuf[NB_NIC_CHANNELS] __attribute__((aligned(64))); |
---|
166 | |
---|
167 | //////////////////////////////////////////////////////////////////////////// |
---|
168 | // FBF related chbuf |
---|
169 | // The physical address of this chbuf is required for L2 cache sync. |
---|
170 | //////////////////////////////////////////////////////////////////////////// |
---|
171 | |
---|
172 | __attribute__((section(".kdata"))) |
---|
173 | fbf_chbuf_t _fbf_ker_chbuf __attribute__((aligned(64))); |
---|
174 | |
---|
175 | __attribute__((section(".kdata"))) |
---|
176 | unsigned long long _fbf_chbuf_paddr; |
---|
177 | |
---|
178 | //////////////////////////////////////////////////////////////////////////// |
---|
179 | // Initialize the syscall vector with syscall handlers |
---|
180 | // Note: This array must be synchronised with the define in file stdio.h |
---|
181 | //////////////////////////////////////////////////////////////////////////// |
---|
182 | |
---|
183 | __attribute__((section(".kdata"))) |
---|
184 | const void * _syscall_vector[64] = |
---|
185 | { |
---|
186 | &_sys_proc_xyp, /* 0x00 */ |
---|
187 | &_get_proctime, /* 0x01 */ |
---|
188 | &_sys_procs_number, /* 0x02 */ |
---|
189 | &_sys_xy_from_ptr, /* 0x03 */ |
---|
190 | &_sys_ukn, /* 0x04 */ |
---|
191 | &_sys_vseg_get_vbase, /* 0x05 */ |
---|
192 | &_sys_vseg_get_length, /* 0x06 */ |
---|
193 | &_sys_heap_info, /* 0x07 */ |
---|
194 | &_sys_fbf_size, /* 0x08 */ |
---|
195 | &_sys_fbf_alloc, /* 0x09 */ |
---|
196 | |
---|
197 | #if NB_CMA_CHANNELS |
---|
198 | &_sys_fbf_cma_alloc, /* 0x0A */ |
---|
199 | &_sys_fbf_cma_init_buf, /* 0x0B */ |
---|
200 | &_sys_fbf_cma_start, /* 0x0C */ |
---|
201 | &_sys_fbf_cma_display, /* 0x0D */ |
---|
202 | &_sys_fbf_cma_stop, /* 0x0E */ |
---|
203 | &_sys_fbf_cma_check, /* 0x0F */ |
---|
204 | #else |
---|
205 | &_sys_ukn, /* 0x0A */ |
---|
206 | &_sys_ukn, /* 0x0B */ |
---|
207 | &_sys_ukn, /* 0x0C */ |
---|
208 | &_sys_ukn, /* 0x0D */ |
---|
209 | &_sys_ukn, /* 0x0E */ |
---|
210 | &_sys_ukn, /* 0x0F */ |
---|
211 | #endif |
---|
212 | |
---|
213 | &_sys_applications_status, /* 0x10 */ |
---|
214 | &_sys_fbf_sync_write, /* 0x11 */ |
---|
215 | &_sys_fbf_sync_read, /* 0x12 */ |
---|
216 | &_sys_ukn, /* 0x13 */ |
---|
217 | &_sys_tim_alloc, /* 0x14 */ |
---|
218 | &_sys_tim_start, /* 0x15 */ |
---|
219 | &_sys_tim_stop, /* 0x16 */ |
---|
220 | &_sys_kill_application, /* 0x17 */ |
---|
221 | &_sys_exec_application, /* 0x18 */ |
---|
222 | &_sys_ukn, /* 0x19 */ |
---|
223 | &_sys_pthread_control, /* 0x1A */ |
---|
224 | &_sys_pthread_yield, /* 0x1B */ |
---|
225 | &_sys_pthread_kill, /* 0x1C */ |
---|
226 | &_sys_pthread_create, /* 0x1D */ |
---|
227 | &_sys_pthread_join, /* 0x1E */ |
---|
228 | &_sys_pthread_exit, /* 0x1F */ |
---|
229 | |
---|
230 | &_fat_open, /* 0x20 */ |
---|
231 | &_sys_fat_read, /* 0x21 */ |
---|
232 | &_sys_fat_write, /* 0x22 */ |
---|
233 | &_fat_lseek, /* 0x23 */ |
---|
234 | &_fat_file_info, /* 0x24 */ |
---|
235 | &_fat_close, /* 0x25 */ |
---|
236 | &_fat_remove, /* 0x26 */ |
---|
237 | &_fat_rename, /* 0x27 */ |
---|
238 | &_fat_mkdir, /* 0x28 */ |
---|
239 | &_fat_opendir, /* 0x29 */ |
---|
240 | &_fat_closedir, /* 0x2A */ |
---|
241 | &_fat_readdir, /* 0x2B */ |
---|
242 | &_sys_fat_pread, /* 0x2C */ |
---|
243 | &_sys_fat_mmap, /* 0x2D */ |
---|
244 | &_sys_fat_munmap, /* 0x2E */ |
---|
245 | &_sys_fat_dump, /* 0x2F */ |
---|
246 | |
---|
247 | #if NB_NIC_CHANNELS |
---|
248 | &_sys_nic_alloc, /* 0x30 */ |
---|
249 | &_sys_nic_start, /* 0x31 */ |
---|
250 | &_sys_nic_move, /* 0x32 */ |
---|
251 | &_sys_nic_stop, /* 0x33 */ |
---|
252 | &_sys_nic_stats, /* 0x34 */ |
---|
253 | &_sys_nic_clear, /* 0x35 */ |
---|
254 | #else |
---|
255 | &_sys_ukn, /* 0x30 */ |
---|
256 | &_sys_ukn, /* 0x31 */ |
---|
257 | &_sys_ukn, /* 0x32 */ |
---|
258 | &_sys_ukn, /* 0x33 */ |
---|
259 | &_sys_ukn, /* 0x34 */ |
---|
260 | &_sys_ukn, /* 0x35 */ |
---|
261 | #endif |
---|
262 | |
---|
263 | &_sys_tty_write, /* 0x36 */ |
---|
264 | &_sys_tty_read, /* 0x37 */ |
---|
265 | &_sys_tty_alloc, /* 0x38 */ |
---|
266 | &_sys_ukn, /* 0x39 */ |
---|
267 | &_sys_ukn, /* 0x3A */ |
---|
268 | &_sys_coproc_completed, /* 0x3B */ |
---|
269 | &_sys_coproc_alloc, /* 0x3C */ |
---|
270 | &_sys_coproc_channel_init, /* 0x3D */ |
---|
271 | &_sys_coproc_run, /* 0x3E */ |
---|
272 | &_sys_coproc_release, /* 0x3F */ |
---|
273 | }; |
---|
274 | |
---|
275 | |
---|
276 | |
---|
277 | /////////////////////////////////////////////////////////////////////////////////// |
---|
278 | // File system related syscall handlers |
---|
279 | /////////////////////////////////////////////////////////////////////////////////// |
---|
280 | |
---|
281 | /////////////////////////////////////////////////////////////////////////////////// |
---|
282 | // This function is called by the _sys_fat_mmap() function. |
---|
283 | // It implements a simplistic pages allocator from the MMAP vseg of the vspace |
---|
284 | // identified by the <vspace_id> argument. The number of pages is defined by |
---|
285 | // the <count> argument. |
---|
286 | // Allocated pages are never released, and the allocator is the "psegid" field |
---|
287 | // in the vseg mapping, that is initialised to 0 by the boot code. |
---|
288 | // In order to support concurrent system calls, the allocator must be |
---|
289 | // atomically incremented. |
---|
290 | /////////////////////////////////////////////////////////////////////////////////// |
---|
291 | // Returns the buffer vbase address in case of success. |
---|
292 | // Returns 0 in case of error (no MMAP vseg or not enough space). |
---|
293 | /////////////////////////////////////////////////////////////////////////////////// |
---|
294 | static unsigned int _mmap_pages_alloc( unsigned int vspace_id, |
---|
295 | unsigned int count ) |
---|
296 | { |
---|
297 | mapping_header_t* header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
298 | mapping_vspace_t* vspace = _get_vspace_base( header ); |
---|
299 | mapping_vseg_t* vseg = _get_vseg_base( header ); |
---|
300 | |
---|
301 | // loop on the vsegs to find the MMAP vseg vbase, length, and offset |
---|
302 | unsigned int vseg_id; |
---|
303 | unsigned int vbase; |
---|
304 | unsigned int offset; |
---|
305 | unsigned int length; |
---|
306 | unsigned int found = 0; |
---|
307 | for (vseg_id = vspace[vspace_id].vseg_offset; |
---|
308 | vseg_id < (vspace[vspace_id].vseg_offset + vspace[vspace_id].vsegs); |
---|
309 | vseg_id++) |
---|
310 | { |
---|
311 | if ( vseg[vseg_id].type == VSEG_TYPE_MMAP ) |
---|
312 | { |
---|
313 | offset = _atomic_increment( &vseg[vseg_id].psegid , count ); |
---|
314 | vbase = vseg[vseg_id].vbase; |
---|
315 | length = vseg[vseg_id].length; |
---|
316 | found = 1; |
---|
317 | break; |
---|
318 | } |
---|
319 | } |
---|
320 | |
---|
321 | if ( (found == 0) || (((offset + count)<<12) > length) ) |
---|
322 | { |
---|
323 | return 0; |
---|
324 | } |
---|
325 | else |
---|
326 | { |
---|
327 | return vbase + (offset<<12); |
---|
328 | } |
---|
329 | } // end _mmap_pages_alloc() |
---|
330 | |
---|
331 | |
---|
332 | /////////////////////////////////////////////////////////////////////////////////// |
---|
333 | // This function implements the giet_fat_read() system call. |
---|
334 | /////////////////////////////////////////////////////////////////////////////////// |
---|
335 | int _sys_fat_read( unsigned int fd_id, |
---|
336 | unsigned int vaddr, |
---|
337 | unsigned int count ) |
---|
338 | { |
---|
339 | return _fat_read( fd_id, |
---|
340 | vaddr, |
---|
341 | count, |
---|
342 | 0, // no paddr extension |
---|
343 | 0, // no forced offset |
---|
344 | 0 ); // no special mode |
---|
345 | } |
---|
346 | |
---|
347 | //////////////////////////////////////////////////////////////// |
---|
348 | // This function implements the giet_fat_pread() system call. |
---|
349 | //////////////////////////////////////////////////////////////// |
---|
350 | int _sys_fat_pread( unsigned int fd_id, |
---|
351 | unsigned int vaddr, |
---|
352 | unsigned int count, |
---|
353 | unsigned int offset ) |
---|
354 | { |
---|
355 | return _fat_read( fd_id, |
---|
356 | vaddr, |
---|
357 | count, |
---|
358 | 0, // no paddr extension |
---|
359 | offset, |
---|
360 | FAT_FORCED_OFFSET ); |
---|
361 | } |
---|
362 | |
---|
363 | //////////////////////////////////////////////////////////////// |
---|
364 | // This function implements the giet_fat_write() system call. |
---|
365 | //////////////////////////////////////////////////////////////// |
---|
366 | int _sys_fat_write( unsigned int fd_id, |
---|
367 | unsigned int vaddr, |
---|
368 | unsigned int count ) |
---|
369 | { |
---|
370 | return _fat_write( fd_id, |
---|
371 | vaddr, |
---|
372 | count, |
---|
373 | 0, // no paddr extension |
---|
374 | 0 ); // no special mode |
---|
375 | } |
---|
376 | |
---|
377 | /////////////////////////////////////////////////////////////////////////////////// |
---|
378 | // This function implements the "giet_fat_mmap()" system call. |
---|
379 | // It allocates <count> contiguous pages from the MMAP vseg of the calling vspace. |
---|
380 | // It maps all these pages directly to the file_cache defined by <fd_id>. |
---|
381 | // The <offset> in the file is a number of pages. |
---|
382 | // The <prot> argument defines the access modes MAP_PROT_WRITE and MAP_PROT_EXEC. |
---|
383 | // In writable mode, the file size is extended to the (offset + count) pages. |
---|
384 | // In non writable mode, the file size must be >= (offset + count) pages. |
---|
385 | // It has the following limitations: |
---|
386 | // - it does not support MAP_PRIVATE (no copy on write). |
---|
387 | // - it does not support MAP_FIXED (no forced user buffer address). |
---|
388 | // - it does not support MAP_ANONYMOUS (only file mapping). |
---|
389 | // - the <offset> and <count> arguments must multiple of 4 Kbytes. |
---|
390 | /////////////////////////////////////////////////////////////////////////////////// |
---|
391 | // Returns memory buffer vbase in case of success. |
---|
392 | // Returns 0 on error. |
---|
393 | /////////////////////////////////////////////////////////////////////////////////// |
---|
394 | int _sys_fat_mmap( unsigned int fd_id, |
---|
395 | unsigned int count, |
---|
396 | unsigned int offset, |
---|
397 | unsigned int prot ) |
---|
398 | { |
---|
399 | // takes the FAT lock and register it in thread context |
---|
400 | static_scheduler_t* psched = _get_sched(); |
---|
401 | unsigned int ltid = _get_thread_ltid(); |
---|
402 | _spin_lock_acquire( &_fat.fat_lock ); |
---|
403 | _atomic_or( &psched->context[ltid].slot[CTX_LOCKS_ID] , LOCKS_MASK_FAT ); |
---|
404 | |
---|
405 | // check fd_id overflow |
---|
406 | if ( fd_id >= GIET_OPEN_FILES_MAX ) |
---|
407 | { |
---|
408 | _spin_lock_release( &_fat.fat_lock ); |
---|
409 | _atomic_and( &psched->context[ltid].slot[CTX_LOCKS_ID] , ~LOCKS_MASK_FAT ); |
---|
410 | |
---|
411 | _printf("\n[GIET ERROR] _sys_fat_mmap(): illegal file descriptor\n"); |
---|
412 | return 0; |
---|
413 | } |
---|
414 | |
---|
415 | // check file open |
---|
416 | if ( _fat.fd[fd_id].allocated == 0 ) |
---|
417 | { |
---|
418 | _spin_lock_release( &_fat.fat_lock ); |
---|
419 | _atomic_and( &psched->context[ltid].slot[CTX_LOCKS_ID] , ~LOCKS_MASK_FAT ); |
---|
420 | |
---|
421 | _printf("\n[GIET ERROR] _sys_fat_mmap(): file not open\n" ); |
---|
422 | return 0; |
---|
423 | } |
---|
424 | |
---|
425 | // get access modes |
---|
426 | unsigned int writable = prot & MAP_PROT_WRITE; |
---|
427 | unsigned int executable = prot & MAP_PROT_EXEC; |
---|
428 | |
---|
429 | // get inode pointer |
---|
430 | fat_inode_t* inode = _fat.fd[fd_id].inode; |
---|
431 | |
---|
432 | // check file writable |
---|
433 | if ( _fat.fd[fd_id].read_only && writable ) |
---|
434 | { |
---|
435 | _spin_lock_release( &_fat.fat_lock ); |
---|
436 | _atomic_and( &psched->context[ltid].slot[CTX_LOCKS_ID] , ~LOCKS_MASK_FAT ); |
---|
437 | |
---|
438 | _printf("\n[GIET ERROR] _sys_fat_mmap(): file <%s> is read-only\n", |
---|
439 | inode->name ); |
---|
440 | return 0; |
---|
441 | } |
---|
442 | |
---|
443 | // get vspace index and calling proc coordinates |
---|
444 | unsigned int vsid = _get_context_slot( CTX_VSID_ID ); |
---|
445 | |
---|
446 | // compute first and last cluster indexes |
---|
447 | unsigned int first_cluster = offset; |
---|
448 | unsigned int last_cluster = offset + count - 1; |
---|
449 | |
---|
450 | #if GIET_DEBUG_MMAP |
---|
451 | unsigned int procid = _get_procid(); |
---|
452 | unsigned int x_id = procid >> (Y_WIDTH + P_WIDTH); |
---|
453 | unsigned int y_id = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1); |
---|
454 | unsigned int p_id = procid & ((1<<P_WIDTH)-1); |
---|
455 | if ( _get_proctime() > GIET_DEBUG_MMAP ) |
---|
456 | _printf("\n[DEBUG MMAP] _sys_fat_mmap() : P[%d,%d,%d] enters at cycle %d\n" |
---|
457 | " for file %s / size = %x / cluster = %x / cache = %x / desc[0] = %x\n" |
---|
458 | " first_cluster = %d / last_cluster = %d\n", |
---|
459 | x_id , y_id , p_id , _get_proctime() , |
---|
460 | inode->name , inode->size , inode->cluster , |
---|
461 | (unsigned int)inode->cache , (unsigned int)inode->cache->children[0] , |
---|
462 | first_cluster , last_cluster ); |
---|
463 | #endif |
---|
464 | |
---|
465 | // get buffer vbase from MMAP vseg in calling vspace |
---|
466 | unsigned int buffer_vbase = _mmap_pages_alloc( vsid, count ); |
---|
467 | if ( buffer_vbase == 0 ) |
---|
468 | { |
---|
469 | _spin_lock_release( &_fat.fat_lock ); |
---|
470 | _atomic_and( &psched->context[ltid].slot[CTX_LOCKS_ID] , ~LOCKS_MASK_FAT ); |
---|
471 | |
---|
472 | _printf("\n[GIET ERROR] _sys_fat_mmap(): no space in MMAP vseg to map file %s\n", |
---|
473 | _fat.fd[fd_id].inode->name ); |
---|
474 | return 0; |
---|
475 | } |
---|
476 | |
---|
477 | // set flags for all pages in buffer |
---|
478 | unsigned int flags = 0; |
---|
479 | flags |= PTE_C; // cachable |
---|
480 | flags |= PTE_U; // user access |
---|
481 | flags |= PTE_L; // local access (unused) |
---|
482 | flags |= PTE_R; // remote access (unused) |
---|
483 | if ( executable ) flags |= PTE_X; |
---|
484 | if ( writable ) flags |= PTE_W; |
---|
485 | |
---|
486 | // loop on pages to be mapped |
---|
487 | unsigned int cid; |
---|
488 | unsigned int user_vaddr = buffer_vbase; |
---|
489 | for ( cid = first_cluster ; cid <= last_cluster ; cid++ ) |
---|
490 | { |
---|
491 | // get file_cache buffer vaddr |
---|
492 | unsigned char* cache_vaddr; |
---|
493 | fat_cache_desc_t* pdesc; |
---|
494 | if ( _get_file_cache_buffer( inode, |
---|
495 | cid, |
---|
496 | writable, |
---|
497 | &pdesc ) ) |
---|
498 | { |
---|
499 | _spin_lock_release( &_fat.fat_lock ); |
---|
500 | _atomic_and( &psched->context[ltid].slot[CTX_LOCKS_ID] , ~LOCKS_MASK_FAT ); |
---|
501 | |
---|
502 | _printf("\n[FAT ERROR] _sys_fat_mmap(): cannot access file <%s>\n", |
---|
503 | _fat.fd[fd_id].inode->name ); |
---|
504 | return 0; |
---|
505 | } |
---|
506 | |
---|
507 | cache_vaddr = pdesc->buffer; |
---|
508 | |
---|
509 | // compute buffer paddr |
---|
510 | unsigned long long cache_paddr; |
---|
511 | unsigned int unused; |
---|
512 | cache_paddr = _v2p_translate( (unsigned int)cache_vaddr, &unused ); |
---|
513 | |
---|
514 | // map the user_vaddr to cache_paddr |
---|
515 | // in all pages tables defined for the vspace |
---|
516 | unsigned int x_cur; |
---|
517 | unsigned int y_cur; |
---|
518 | for ( x_cur = 0 ; x_cur < X_SIZE ; x_cur++ ) |
---|
519 | { |
---|
520 | for ( y_cur = 0 ; y_cur < Y_SIZE ; y_cur++ ) |
---|
521 | { |
---|
522 | if ( _ptabs_paddr[vsid][x_cur][y_cur] ) // Page table is defined |
---|
523 | { |
---|
524 | _v2p_add_pte2( vsid, |
---|
525 | x_cur, |
---|
526 | y_cur, |
---|
527 | user_vaddr >> 12, |
---|
528 | flags, |
---|
529 | cache_paddr >> 12, |
---|
530 | 0 ); |
---|
531 | } |
---|
532 | } |
---|
533 | } |
---|
534 | |
---|
535 | #if GIET_DEBUG_MMAP |
---|
536 | if ( _get_proctime() > GIET_DEBUG_MMAP ) |
---|
537 | _printf("\n[DEBUG MMAP] _sys_fat_mmap() : P[%d,%d,%d] map cluster_id = %d\n" |
---|
538 | " user_vaddr = %x / cache_paddr = %l\n", |
---|
539 | x_id , y_id , p_id , cid , user_vaddr , cache_paddr ); |
---|
540 | #endif |
---|
541 | |
---|
542 | // increment user buffer vaddr |
---|
543 | user_vaddr += 4096; |
---|
544 | } |
---|
545 | |
---|
546 | // releases the FAT lock |
---|
547 | _spin_lock_release( &_fat.fat_lock ); |
---|
548 | _atomic_and( &psched->context[ltid].slot[CTX_LOCKS_ID] , ~LOCKS_MASK_FAT ); |
---|
549 | |
---|
550 | #if GIET_DEBUG_MMAP |
---|
551 | if ( _get_proctime() > GIET_DEBUG_MMAP ) |
---|
552 | _printf("\n[DEBUG MMAP] _sys_fat_mmap() : P[%d,%d,%d] returns buffer %x for file %s\n", |
---|
553 | x_id , y_id , p_id , buffer_vbase , inode->name ); |
---|
554 | #endif |
---|
555 | |
---|
556 | // returns pointer on mapped buffer in user space |
---|
557 | return buffer_vbase; |
---|
558 | |
---|
559 | } // end _sys_fat_mmap() |
---|
560 | |
---|
561 | |
---|
562 | ////////////////////////////////////////////////////////////////// |
---|
563 | // This function implements the giet_fat_munmap() system call. |
---|
564 | ////////////////////////////////////////////////////////////////// |
---|
565 | int _sys_fat_munmap( unsigned int vaddr, |
---|
566 | unsigned int count ) |
---|
567 | { |
---|
568 | // get vspace index |
---|
569 | unsigned int vsid = _get_context_slot( CTX_VSID_ID ); |
---|
570 | |
---|
571 | // loop on pages |
---|
572 | unsigned int page; |
---|
573 | for ( page = 0 ; page < count ; page++ ) |
---|
574 | { |
---|
575 | unsigned int vpn = (vaddr>>12) + page; |
---|
576 | |
---|
577 | // loop on all page tables defined for the vspace |
---|
578 | unsigned int x_cur; |
---|
579 | unsigned int y_cur; |
---|
580 | for ( x_cur = 0 ; x_cur < X_SIZE ; x_cur++ ) |
---|
581 | { |
---|
582 | for ( y_cur = 0 ; y_cur < Y_SIZE ; y_cur++ ) |
---|
583 | { |
---|
584 | if ( _ptabs_paddr[vsid][x_cur][y_cur] ) // Page table is defined |
---|
585 | { |
---|
586 | _v2p_del_pte2( vsid , x_cur , y_cur , vpn ); |
---|
587 | } |
---|
588 | } |
---|
589 | } |
---|
590 | } |
---|
591 | return 0; |
---|
592 | } // end _sys_fat_munmap() |
---|
593 | |
---|
594 | |
---|
595 | |
---|
596 | |
---|
597 | /////////////////////////////////////////////////////////////////////////////////// |
---|
598 | // This service function is called by the _sys_fat_dump() kernel function. |
---|
599 | // It displays on the calling thread terminal the content of a 512 bytes buffer |
---|
600 | // defined by the <buf> pointer. |
---|
601 | // The <string> , <cluster_id> and <block_id> arguments are only used |
---|
602 | // to build a meaningful title: <string> is an identifier, <cluster_id> is |
---|
603 | // the cluster index (in file or FAT), <block_id> is the block index (in cluster). |
---|
604 | /////////////////////////////////////////////////////////////////////////////////// |
---|
605 | static void _dump_block( unsigned char* buf, |
---|
606 | char* string, |
---|
607 | unsigned int cluster_id, |
---|
608 | unsigned int block_id ) |
---|
609 | { |
---|
610 | unsigned int line; |
---|
611 | unsigned int word; |
---|
612 | |
---|
613 | _user_printf("\n--- %s : cluster_id = %d / block_id = %d ---\n", |
---|
614 | string , cluster_id , block_id ); |
---|
615 | |
---|
616 | for ( line = 0 ; line < 16 ; line++ ) |
---|
617 | { |
---|
618 | // display line index |
---|
619 | _user_printf("%x : ", line ); |
---|
620 | |
---|
621 | // display 8*4 bytes hexa per line |
---|
622 | for ( word=0 ; word<8 ; word++ ) |
---|
623 | { |
---|
624 | unsigned int byte = (line<<5) + (word<<2); |
---|
625 | unsigned int hexa = (buf[byte ]<<24) | |
---|
626 | (buf[byte+1]<<16) | |
---|
627 | (buf[byte+2]<< 8) | |
---|
628 | (buf[byte+3] ); |
---|
629 | _user_printf(" %X |", hexa ); |
---|
630 | } |
---|
631 | _user_printf("\n"); |
---|
632 | } |
---|
633 | } // end _dump_block() |
---|
634 | |
---|
635 | |
---|
636 | /////////////////////////////////////////////////////////////////////////////////// |
---|
637 | // This function implements the giet_fat_dump() system call. |
---|
638 | // It analyse the <type>, <pathname> and <sector_id> arguments to select |
---|
639 | // a 512 bytes sector, and display the sector content on the calling thread TTY. |
---|
640 | // The <type> argument can take the following values : |
---|
641 | // - DUMP_BS : boot sector |
---|
642 | // - DUMP_FS : fs_info sector |
---|
643 | // - DUMP_FAT : fat sector, identified by <sector_id> |
---|
644 | // - DUMP_FILE : file sector, identified by <pathname> and <sector_id> |
---|
645 | // - DUMP_DIR : directory sector, identified by <pathname> and <sector_id> |
---|
646 | // The <sector_id> argument defines the sector index in the file or in the FAT. |
---|
647 | // For a file or a directory, or for the FAT itself, it uses the kernel File-Caches |
---|
648 | // or Fat-Cache, and the Inode-Tree. |
---|
649 | // For the boot sector, or fs_info sector, it access directly the block device, |
---|
650 | // that is loaded in the FAT descriptor block-buffer. |
---|
651 | /////////////////////////////////////////////////////////////////////////////////// |
---|
652 | // Returns 0 in case of success. |
---|
653 | // Returns 1 in case of error. |
---|
654 | /////////////////////////////////////////////////////////////////////////////////// |
---|
655 | int _sys_fat_dump( unsigned int type, |
---|
656 | char* pathname, |
---|
657 | unsigned int sector_id ) |
---|
658 | { |
---|
659 | unsigned char* buf; // pointer on 512 bytes buffer |
---|
660 | unsigned int cluster_id = sector_id >> 3; // cluster index in cache |
---|
661 | unsigned int block_id = sector_id & 0x7; // cluster index in cache |
---|
662 | unsigned int fd_id; // file/dir descriptor index |
---|
663 | |
---|
664 | if( type == DUMP_BS ) // dump the boot sector |
---|
665 | { |
---|
666 | // access block_device |
---|
667 | buf = _fat.block_buffer; |
---|
668 | if ( _fat_ioc_access( 1, // descheduling mode |
---|
669 | 1, // read |
---|
670 | 0, // boot sector lba |
---|
671 | (unsigned int)buf, |
---|
672 | 1 ) ) // one block |
---|
673 | { |
---|
674 | _printf("\n[FAT ERROR] _sys_fat_dump(): cannot access device for BS\n"); |
---|
675 | return 1; |
---|
676 | } |
---|
677 | _fat.block_buffer_lba = 0; |
---|
678 | |
---|
679 | // dump boot sector |
---|
680 | _dump_block( buf, "boot sector" , 0 , 0 ); |
---|
681 | } |
---|
682 | else if ( type == DUMP_FS ) // dump the fs_info sector |
---|
683 | { |
---|
684 | // access block_device |
---|
685 | buf = _fat.block_buffer; |
---|
686 | if ( _fat_ioc_access( 1, // descheduling mode |
---|
687 | 1, // read |
---|
688 | _fat.fs_info_lba, // fs_info sector lba |
---|
689 | (unsigned int)buf, |
---|
690 | 1 ) ) // one block |
---|
691 | { |
---|
692 | _printf("\n[FAT ERROR] _sys_fat_dump(): cannot access device for FS\n"); |
---|
693 | return 1; |
---|
694 | } |
---|
695 | _fat.block_buffer_lba = _fat.fs_info_lba; |
---|
696 | |
---|
697 | // dump fs-info sector |
---|
698 | _dump_block( buf, "fs_info sector" , 0 , 0 ); |
---|
699 | } |
---|
700 | else if ( type == DUMP_FAT ) // dump a fat sector |
---|
701 | { |
---|
702 | // get pointer on the relevant buffer descriptor in Fat-Cache |
---|
703 | fat_cache_desc_t* pdesc; |
---|
704 | if ( _get_fat_cache_buffer( cluster_id, &pdesc ) ) |
---|
705 | { |
---|
706 | _printf("\n[FAT ERROR] _sys_fat_dump(): cannot access Fat-Cache\n"); |
---|
707 | return 1; |
---|
708 | } |
---|
709 | buf = pdesc->buffer + (block_id<<9); |
---|
710 | |
---|
711 | // dump fat sector |
---|
712 | _dump_block( buf, "fat" , cluster_id , block_id ); |
---|
713 | } |
---|
714 | else if ( type == DUMP_FILE ) // dump a file sector |
---|
715 | { |
---|
716 | // open file |
---|
717 | fd_id = _fat_open( pathname , O_RDONLY ); |
---|
718 | if ( fd_id < 0 ) |
---|
719 | { |
---|
720 | _printf("\n[FAT ERROR] _sys_fat_dump(): cannot open file <%s>\n", pathname ); |
---|
721 | return 1; |
---|
722 | } |
---|
723 | fat_inode_t* inode = _fat.fd[fd_id].inode; |
---|
724 | |
---|
725 | // get pointer on the relevant buffer descriptor in File-Cache |
---|
726 | fat_cache_desc_t* pdesc; |
---|
727 | if ( _get_file_cache_buffer( inode, cluster_id, 0, &pdesc ) ) |
---|
728 | { |
---|
729 | _printf("\n[FAT ERROR] _sys_fat_dump(): cannot access file <%s>\n", pathname ); |
---|
730 | return 1; |
---|
731 | } |
---|
732 | buf = pdesc->buffer + (block_id<<9); |
---|
733 | |
---|
734 | // dump file sector |
---|
735 | _dump_block( buf, pathname , cluster_id , block_id ); |
---|
736 | |
---|
737 | // close file |
---|
738 | _fat_close( fd_id ); |
---|
739 | } |
---|
740 | else if ( type == DUMP_DIR ) // dump a directory sector |
---|
741 | { |
---|
742 | // open directory |
---|
743 | fd_id = _fat_opendir( pathname ); |
---|
744 | if ( fd_id < 0 ) |
---|
745 | { |
---|
746 | _printf("\n[FAT ERROR] _sys_fat_dump(): cannot open <%s>\n", pathname ); |
---|
747 | return 1; |
---|
748 | } |
---|
749 | fat_inode_t* inode = _fat.fd[fd_id].inode; |
---|
750 | |
---|
751 | // get pointer on the relevant buffer descriptor in File-Cache |
---|
752 | fat_cache_desc_t* pdesc; |
---|
753 | if ( _get_file_cache_buffer( inode, cluster_id, 0, &pdesc ) ) |
---|
754 | { |
---|
755 | _printf("\n[FAT ERROR] _sys_fat_dump(): cannot access <%s>\n", pathname ); |
---|
756 | return 1; |
---|
757 | } |
---|
758 | buf = pdesc->buffer + (block_id<<9); |
---|
759 | |
---|
760 | // dump directory sector |
---|
761 | _dump_block( buf, pathname , cluster_id , block_id ); |
---|
762 | |
---|
763 | // close directory |
---|
764 | _fat_closedir( fd_id ); |
---|
765 | } |
---|
766 | |
---|
767 | return 0; |
---|
768 | } // end sys_fat_dump |
---|
769 | |
---|
770 | |
---|
771 | |
---|
772 | ////////////////////////////////////////////////////////////////////////////// |
---|
773 | // Applications related syscall handlers |
---|
774 | ////////////////////////////////////////////////////////////////////////////// |
---|
775 | |
---|
776 | //////////////////////////////////////////////////////////////////////// |
---|
777 | // This function is called by the _sys_exec_application() function |
---|
778 | // to reload all data segments contained in an application.elf file. |
---|
779 | // File checking is minimal, because these segments have already |
---|
780 | // been loaded by the boot code. |
---|
781 | //////////////////////////////////////////////////////////////////////// |
---|
782 | static unsigned int _load_writable_segments( mapping_vspace_t* vspace ) |
---|
783 | { |
---|
784 | |
---|
785 | #if GIET_DEBUG_EXEC |
---|
786 | unsigned int gpid = _get_procid(); |
---|
787 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
788 | unsigned int p = gpid & ((1<<P_WIDTH)-1); |
---|
789 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
790 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
791 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
792 | _printf("\n[DEBUG EXEC] _load_writable_segments() at cycle %d\n" |
---|
793 | "P[%d,%d,%d] enters for %s\n", |
---|
794 | _get_proctime() , x , y , p , vspace->name ); |
---|
795 | #endif |
---|
796 | |
---|
797 | mapping_header_t* header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
798 | mapping_vseg_t* vseg = _get_vseg_base(header); |
---|
799 | |
---|
800 | unsigned int vseg_id; // vseg index in mapping |
---|
801 | char buf[4096]; // buffer to store one cluster |
---|
802 | unsigned int fd = 0; // file descriptor |
---|
803 | unsigned int found = 0; |
---|
804 | |
---|
805 | // first scan on vsegs in vspace to find the .elf pathname |
---|
806 | for (vseg_id = vspace->vseg_offset; |
---|
807 | vseg_id < (vspace->vseg_offset + vspace->vsegs); |
---|
808 | vseg_id++) |
---|
809 | { |
---|
810 | if( vseg[vseg_id].type == VSEG_TYPE_ELF ) |
---|
811 | { |
---|
812 | // open the .elf file associated to vspace |
---|
813 | fd = _fat_open( vseg[vseg_id].binpath , O_RDONLY ); |
---|
814 | if ( fd < 0 ) return 1; |
---|
815 | |
---|
816 | #if GIET_DEBUG_EXEC |
---|
817 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
818 | _printf("\n[DEBUG EXEC] _load_writable_segments() at cycle %d\n" |
---|
819 | "P[%d,%d,%d] open %s / fd = %d\n", |
---|
820 | _get_proctime() , x , y , p , vseg[vseg_id].binpath , fd ); |
---|
821 | #endif |
---|
822 | found = 1; |
---|
823 | break; |
---|
824 | |
---|
825 | } |
---|
826 | } |
---|
827 | |
---|
828 | // check .elf file found |
---|
829 | if ( found == 0 ) |
---|
830 | { |
---|
831 | _printf("\n[GIET ERROR] _load_writable_segments() : .elf not found\n"); |
---|
832 | return 1; |
---|
833 | } |
---|
834 | |
---|
835 | // load Elf-Header into buffer from .elf file |
---|
836 | if ( _fat_lseek( fd, 0, SEEK_SET ) < 0 ) |
---|
837 | { |
---|
838 | _printf("\n[GIET ERROR] _load_writable_segments() : cannot seek\n"); |
---|
839 | _fat_close( fd ); |
---|
840 | return 1; |
---|
841 | } |
---|
842 | if ( _fat_read( fd, (unsigned int)buf, 4096, 0, 0, 0 ) < 0 ) |
---|
843 | { |
---|
844 | _printf("\n[GIET ERROR] _load_writable_segments() : cannot read\n"); |
---|
845 | _fat_close( fd ); |
---|
846 | return 1; |
---|
847 | } |
---|
848 | |
---|
849 | #if GIET_DEBUG_EXEC |
---|
850 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
851 | _printf("\n[DEBUG EXEC] _load_writable_segments() at cycle %d\n" |
---|
852 | "P[%d,%d,%d] loaded Elf-Header\n", |
---|
853 | _get_proctime() , x , y , p ); |
---|
854 | #endif |
---|
855 | |
---|
856 | // get nsegments and Program-Header-Table offset from Elf-Header |
---|
857 | Elf32_Ehdr* elf_header_ptr = (Elf32_Ehdr*)buf; |
---|
858 | unsigned int offset = elf_header_ptr->e_phoff; |
---|
859 | unsigned int nsegments = elf_header_ptr->e_phnum; |
---|
860 | |
---|
861 | // load Program-Header-Table from .elf file |
---|
862 | if ( _fat_lseek( fd, offset, SEEK_SET ) < 0 ) |
---|
863 | { |
---|
864 | _fat_close( fd ); |
---|
865 | return 1; |
---|
866 | } |
---|
867 | if ( _fat_read( fd, (unsigned int)buf, 4096, 0, 0, 0 ) < 0 ) |
---|
868 | { |
---|
869 | _fat_close( fd ); |
---|
870 | return 1; |
---|
871 | } |
---|
872 | |
---|
873 | #if GIET_DEBUG_EXEC |
---|
874 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
875 | _printf("\n[DEBUG EXEC] _load_writable_segments() at cycle %d\n" |
---|
876 | "P[%d,%d,%d] loaded Program-Header-Table\n", |
---|
877 | _get_proctime() , x , y , p ); |
---|
878 | #endif |
---|
879 | |
---|
880 | // set Program-Header-Table pointer |
---|
881 | Elf32_Phdr* elf_pht_ptr = (Elf32_Phdr*)buf; |
---|
882 | |
---|
883 | // second scan on vsegs in vspace to load the seg_data segments : |
---|
884 | // - type == VSEG_TYPE_ELF |
---|
885 | // - non eXecutable |
---|
886 | for (vseg_id = vspace->vseg_offset; |
---|
887 | vseg_id < (vspace->vseg_offset + vspace->vsegs); |
---|
888 | vseg_id++) |
---|
889 | { |
---|
890 | if( (vseg[vseg_id].type == VSEG_TYPE_ELF) && // type ELF |
---|
891 | ((vseg[vseg_id].mode & 0x4) == 0) ) // non executable |
---|
892 | { |
---|
893 | // get vbase and pbase |
---|
894 | paddr_t pbase = vseg[vseg_id].pbase; |
---|
895 | unsigned int vbase = vseg[vseg_id].vbase; |
---|
896 | |
---|
897 | // scan segments in Progam-Header-Table to find match |
---|
898 | // No match checking as the segment was previously found |
---|
899 | unsigned int seg; |
---|
900 | for (seg = 0 ; seg < nsegments ; seg++) |
---|
901 | { |
---|
902 | if ( (elf_pht_ptr[seg].p_type == PT_LOAD) && // loadable |
---|
903 | (elf_pht_ptr[seg].p_flags & PF_W) && // writable |
---|
904 | (elf_pht_ptr[seg].p_vaddr == vbase) ) // matching |
---|
905 | { |
---|
906 | // Get segment offset and size in .elf file |
---|
907 | unsigned int seg_offset = elf_pht_ptr[seg].p_offset; |
---|
908 | unsigned int seg_size = elf_pht_ptr[seg].p_filesz; |
---|
909 | |
---|
910 | // compute destination address and extension for _fat_read() |
---|
911 | unsigned int dest = (unsigned int)pbase; |
---|
912 | unsigned int extend = (unsigned int)(pbase>>32); |
---|
913 | |
---|
914 | // load the segment |
---|
915 | if ( _fat_lseek( fd, seg_offset, SEEK_SET ) < 0 ) |
---|
916 | { |
---|
917 | _fat_close( fd ); |
---|
918 | return 1; |
---|
919 | } |
---|
920 | if ( _fat_read( fd, dest, seg_size, extend, 0, FAT_PADDR_MODE ) < 0 ) |
---|
921 | { |
---|
922 | _fat_close( fd ); |
---|
923 | return 1; |
---|
924 | } |
---|
925 | } |
---|
926 | } |
---|
927 | |
---|
928 | #if GIET_DEBUG_EXEC |
---|
929 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
930 | _printf("\n[DEBUG EXEC] _load_writable_segments() at cycle %d\n" |
---|
931 | "P[%d,%d,%d] loaded segment %x\n", |
---|
932 | _get_proctime() , x , y , p , vbase ); |
---|
933 | #endif |
---|
934 | } |
---|
935 | } // end loop on writable & loadable segments |
---|
936 | |
---|
937 | // close .elf file |
---|
938 | _fat_close( fd ); |
---|
939 | |
---|
940 | return 0; |
---|
941 | } // end load_writable_segments() |
---|
942 | |
---|
943 | |
---|
944 | |
---|
945 | /////////////////////////////////////// |
---|
946 | int _sys_exec_application( char* name ) |
---|
947 | { |
---|
948 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
949 | mapping_vspace_t * vspace = _get_vspace_base(header); |
---|
950 | mapping_thread_t * thread = _get_thread_base(header); |
---|
951 | mapping_vseg_t * vseg = _get_vseg_base(header); |
---|
952 | |
---|
953 | unsigned int vspace_id; |
---|
954 | unsigned int thread_id; |
---|
955 | |
---|
956 | #if GIET_DEBUG_EXEC |
---|
957 | unsigned int gpid = _get_procid(); |
---|
958 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
959 | unsigned int p = gpid & ((1<<P_WIDTH)-1); |
---|
960 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
961 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
962 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
963 | _printf("\n[DEBUG EXEC] _sys_exec_application() at cycle %d\n" |
---|
964 | "P[%d,%d,%d] enters for vspace %s\n", |
---|
965 | _get_proctime() , x, y, p, name ); |
---|
966 | #endif |
---|
967 | |
---|
968 | unsigned int y_size = header->y_size; |
---|
969 | |
---|
970 | // scan vspaces to find matching vspace name |
---|
971 | for (vspace_id = 0 ; vspace_id < header->vspaces ; vspace_id++) |
---|
972 | { |
---|
973 | if ( _strcmp( vspace[vspace_id].name, name ) == 0 ) // vspace found |
---|
974 | { |
---|
975 | |
---|
976 | #if GIET_DEBUG_EXEC |
---|
977 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
978 | _printf("\n[DEBUG EXEC] _sys_exec_application() at cycle %d\n" |
---|
979 | "P[%d,%d,%d] found vspace %s\n", |
---|
980 | _get_proctime() , x, y, p, name ); |
---|
981 | #endif |
---|
982 | // reload writable segments |
---|
983 | if ( _load_writable_segments( &vspace[vspace_id] ) ) |
---|
984 | { |
---|
985 | _printf("[GIET ERROR] _sys_exec_application() : " |
---|
986 | "can't load data segment for vspace %s\n", name ); |
---|
987 | return SYSCALL_CANNOT_LOAD_DATA_SEGMENT; |
---|
988 | } |
---|
989 | |
---|
990 | #if GIET_DEBUG_EXEC |
---|
991 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
992 | _printf("\n[DEBUG EXEC] _sys_exec_application() at cycle %d\n" |
---|
993 | "P[%d,%d,%d] loaded all writable segments for vspace %s\n", |
---|
994 | _get_proctime() , x, y, p, name ); |
---|
995 | #endif |
---|
996 | // scan threads in vspace with three goals : |
---|
997 | // - check all threads desactivated |
---|
998 | // - re-initialise all threads contexts |
---|
999 | // - find main thread |
---|
1000 | unsigned int main_found = 0; |
---|
1001 | unsigned int main_ltid = 0; |
---|
1002 | static_scheduler_t* main_psched = NULL; |
---|
1003 | unsigned int min = vspace[vspace_id].thread_offset; |
---|
1004 | unsigned int max = min + vspace[vspace_id].threads; |
---|
1005 | for ( thread_id = min ; thread_id < max ; thread_id++ ) |
---|
1006 | { |
---|
1007 | // get thread identifiers : [x,y,p,ltid] |
---|
1008 | unsigned int cid = thread[thread_id].clusterid; |
---|
1009 | unsigned int x = cid / y_size; |
---|
1010 | unsigned int y = cid % y_size; |
---|
1011 | unsigned int p = thread[thread_id].proclocid; |
---|
1012 | unsigned int ltid = thread[thread_id].ltid; |
---|
1013 | unsigned int vsid = thread[thread_id].stack_vseg_id; |
---|
1014 | |
---|
1015 | // get scheduler pointer |
---|
1016 | static_scheduler_t* psched = _schedulers[x][y][p]; |
---|
1017 | |
---|
1018 | // check thread non active |
---|
1019 | if ( psched->context[ltid].slot[CTX_NORUN_ID] == 0 ) // runnable !!! |
---|
1020 | { |
---|
1021 | _printf("\n[GIET ERROR] in _sys_exec_application() : " |
---|
1022 | "thread %s already active in vspace %s\n", |
---|
1023 | thread[thread_id].name, name ); |
---|
1024 | return SYSCALL_THREAD_ALREADY_ACTIVE; |
---|
1025 | } |
---|
1026 | |
---|
1027 | // initialise thread context |
---|
1028 | unsigned int ctx_epc = psched->context[ltid].slot[CTX_ENTRY_ID]; |
---|
1029 | unsigned int ctx_sp = vseg[vsid].vbase + vseg[vsid].length; |
---|
1030 | unsigned int ctx_ra = (unsigned int)&_ctx_eret; |
---|
1031 | unsigned int ctx_sr = GIET_SR_INIT_VALUE; |
---|
1032 | |
---|
1033 | psched->context[ltid].slot[CTX_EPC_ID] = ctx_epc; |
---|
1034 | psched->context[ltid].slot[CTX_RA_ID] = ctx_ra; |
---|
1035 | psched->context[ltid].slot[CTX_SR_ID] = ctx_sr; |
---|
1036 | psched->context[ltid].slot[CTX_SP_ID] = ctx_sp; |
---|
1037 | |
---|
1038 | // register information required to activate main thread |
---|
1039 | // actual activation done when threads initialisation is completed |
---|
1040 | if ( thread[thread_id].is_main ) |
---|
1041 | { |
---|
1042 | main_psched = psched; |
---|
1043 | main_ltid = ltid; |
---|
1044 | main_found = 1; |
---|
1045 | } |
---|
1046 | |
---|
1047 | #if GIET_DEBUG_EXEC |
---|
1048 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1049 | _printf("\n[DEBUG EXEC] _sys_exec_application() at cycle %d\n" |
---|
1050 | "P[%d,%d,%d] initialise thread %s in vspace %s\n", |
---|
1051 | _get_proctime() , x, y, p, thread[thread_id].name , name ); |
---|
1052 | #endif |
---|
1053 | } // end loop on threads |
---|
1054 | |
---|
1055 | // activate main thread |
---|
1056 | if ( main_found ) |
---|
1057 | { |
---|
1058 | main_psched->context[main_ltid].slot[CTX_NORUN_ID] = 0; |
---|
1059 | } |
---|
1060 | else |
---|
1061 | { |
---|
1062 | _printf("\n[GIET ERROR] in _sys_exec_application() : " |
---|
1063 | "main not found in vspace %s\n", name ); |
---|
1064 | return SYSCALL_MAIN_NOT_FOUND; |
---|
1065 | } |
---|
1066 | |
---|
1067 | _printf("\n[GIET WARNING] application %s launched : %d threads\n", |
---|
1068 | name , max-min ); |
---|
1069 | |
---|
1070 | return SYSCALL_OK; |
---|
1071 | } |
---|
1072 | } // end of loop on vspaces |
---|
1073 | |
---|
1074 | // vspace not found |
---|
1075 | _printf("\n[GIET ERROR] in _sys_exec_application() : " |
---|
1076 | "vspace %s not found\n", name ); |
---|
1077 | return SYSCALL_VSPACE_NOT_FOUND; |
---|
1078 | |
---|
1079 | } // end _sys_exec_application() |
---|
1080 | |
---|
1081 | |
---|
1082 | /////////////////////////////////////// |
---|
1083 | int _sys_kill_application( char* name ) |
---|
1084 | { |
---|
1085 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
1086 | mapping_vspace_t * vspace = _get_vspace_base(header); |
---|
1087 | mapping_thread_t * thread = _get_thread_base(header); |
---|
1088 | |
---|
1089 | unsigned int vspace_id; |
---|
1090 | unsigned int thread_id; |
---|
1091 | |
---|
1092 | #if GIET_DEBUG_EXEC |
---|
1093 | unsigned int gpid = _get_procid(); |
---|
1094 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
1095 | unsigned int p = gpid & ((1<<P_WIDTH)-1); |
---|
1096 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
1097 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1098 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1099 | _printf("\n[DEBUG EXEC] _sys_kill_application() at cycle %d\n" |
---|
1100 | "P[%d,%d,%d] enters for vspace %s\n", |
---|
1101 | _get_proctime() , x , y , p , name ); |
---|
1102 | #endif |
---|
1103 | |
---|
1104 | // shell cannot be killed |
---|
1105 | if ( _strcmp( name , "shell" ) == 0 ) |
---|
1106 | { |
---|
1107 | _printf("\n[GIET ERROR] in _sys_kill_application() : " |
---|
1108 | "%s application cannot be killed\n", name ); |
---|
1109 | return SYSCALL_APPLI_CANNOT_BE_KILLED; |
---|
1110 | } |
---|
1111 | |
---|
1112 | // scan vspaces to find matching vspace name |
---|
1113 | for (vspace_id = 0; vspace_id < header->vspaces; vspace_id++) |
---|
1114 | { |
---|
1115 | if ( _strcmp( vspace[vspace_id].name, name ) == 0 ) |
---|
1116 | { |
---|
1117 | // scan threads to send KILL signal to all threads in vspace |
---|
1118 | unsigned int y_size = header->y_size; |
---|
1119 | unsigned int min = vspace[vspace_id].thread_offset; |
---|
1120 | unsigned int max = min + vspace[vspace_id].threads; |
---|
1121 | for ( thread_id = min ; thread_id < max ; thread_id++ ) |
---|
1122 | { |
---|
1123 | unsigned int cid = thread[thread_id].clusterid; |
---|
1124 | unsigned int x = cid / y_size; |
---|
1125 | unsigned int y = cid % y_size; |
---|
1126 | unsigned int p = thread[thread_id].proclocid; |
---|
1127 | unsigned int ltid = thread[thread_id].ltid; |
---|
1128 | |
---|
1129 | // get scheduler pointer for processor running the thread |
---|
1130 | static_scheduler_t* psched = (static_scheduler_t*)_schedulers[x][y][p]; |
---|
1131 | |
---|
1132 | // set KILL signal bit |
---|
1133 | _atomic_or( &psched->context[ltid].slot[CTX_SIGS_ID] , SIGS_MASK_KILL ); |
---|
1134 | } |
---|
1135 | |
---|
1136 | _printf("\n[GIET WARNING] application %s killed / %d threads\n", |
---|
1137 | name , max-min ); |
---|
1138 | |
---|
1139 | return SYSCALL_OK; |
---|
1140 | } |
---|
1141 | } // en loop on vspaces |
---|
1142 | |
---|
1143 | _printf("\n[GIET ERROR] in _sys_kill_application() : " |
---|
1144 | "application %s not found\n", name ); |
---|
1145 | return SYSCALL_VSPACE_NOT_FOUND; |
---|
1146 | |
---|
1147 | } // end _sys_kill_application() |
---|
1148 | |
---|
1149 | |
---|
1150 | |
---|
1151 | ////////////////////////////////////////// |
---|
1152 | int _sys_applications_status( char* name ) |
---|
1153 | { |
---|
1154 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
1155 | mapping_thread_t * thread = _get_thread_base(header); |
---|
1156 | mapping_vspace_t * vspace = _get_vspace_base(header); |
---|
1157 | mapping_cluster_t * cluster = _get_cluster_base(header); |
---|
1158 | |
---|
1159 | unsigned int thread_id; // thread index in mapping |
---|
1160 | unsigned int vspace_id; // vspace index in mapping |
---|
1161 | |
---|
1162 | // scan vspaces |
---|
1163 | for( vspace_id = 0 ; vspace_id < header->vspaces ; vspace_id++ ) |
---|
1164 | { |
---|
1165 | if ( (name == NULL) || (_strcmp(vspace[vspace_id].name , name ) == 0) ) |
---|
1166 | { |
---|
1167 | _user_printf("\n--- vspace %s ---\n", vspace[vspace_id].name ); |
---|
1168 | |
---|
1169 | // scan all threads in vspace |
---|
1170 | unsigned int min = vspace[vspace_id].thread_offset ; |
---|
1171 | unsigned int max = min + vspace[vspace_id].threads ; |
---|
1172 | for ( thread_id = min ; thread_id < max ; thread_id++ ) |
---|
1173 | { |
---|
1174 | unsigned int clusterid = thread[thread_id].clusterid; |
---|
1175 | unsigned int p = thread[thread_id].proclocid; |
---|
1176 | unsigned int x = cluster[clusterid].x; |
---|
1177 | unsigned int y = cluster[clusterid].y; |
---|
1178 | unsigned int ltid = thread[thread_id].ltid; |
---|
1179 | static_scheduler_t* psched = (static_scheduler_t*)_schedulers[x][y][p]; |
---|
1180 | unsigned int norun = psched->context[ltid].slot[CTX_NORUN_ID]; |
---|
1181 | unsigned int tty = psched->context[ltid].slot[CTX_TTY_ID]; |
---|
1182 | unsigned int current = psched->current; |
---|
1183 | |
---|
1184 | if ( current == ltid ) |
---|
1185 | _user_printf(" - thread %s / P[%d,%d,%d] / ltid = %d / " |
---|
1186 | "TTY = %d / norun = %x : running\n", |
---|
1187 | thread[thread_id].name, x, y, p, ltid, tty, norun ); |
---|
1188 | else if ( norun == 0 ) |
---|
1189 | _user_printf(" - thread %s / P[%d,%d,%d] / ltid = %d / " |
---|
1190 | "TTY = %d / norun = %x : runable\n", |
---|
1191 | thread[thread_id].name, x, y, p, ltid, tty, norun); |
---|
1192 | else |
---|
1193 | _user_printf(" - thread %s / P[%d,%d,%d] / ltid = %d / " |
---|
1194 | "TTY = %d / norun = %x : blocked\n", |
---|
1195 | thread[thread_id].name, x, y, p, ltid, tty, norun); |
---|
1196 | } |
---|
1197 | } |
---|
1198 | } |
---|
1199 | _user_printf("\n"); |
---|
1200 | |
---|
1201 | return SYSCALL_OK; |
---|
1202 | } // end _sys_applications_status() |
---|
1203 | |
---|
1204 | |
---|
1205 | |
---|
1206 | ///////////////////////////////////////////////////////////////////////////// |
---|
1207 | // Threads related syscall handlers |
---|
1208 | ///////////////////////////////////////////////////////////////////////////// |
---|
1209 | |
---|
1210 | //////////////////////////////////////////////// |
---|
1211 | int _sys_pthread_create( unsigned int* buffer, |
---|
1212 | void* attr, |
---|
1213 | void* function, |
---|
1214 | void* arg ) |
---|
1215 | { |
---|
1216 | // attr argument not supported |
---|
1217 | if ( attr != NULL ) |
---|
1218 | { |
---|
1219 | _printf("\n[GIET ERROR] in _sys_pthread_create() : " |
---|
1220 | "attr argument not supported\n" ); |
---|
1221 | |
---|
1222 | return SYSCALL_PTHREAD_ARGUMENT_NOT_SUPPORTED; |
---|
1223 | } |
---|
1224 | |
---|
1225 | // get pointers in mapping |
---|
1226 | mapping_header_t* header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
1227 | mapping_thread_t* thread = _get_thread_base(header); |
---|
1228 | mapping_vspace_t* vspace = _get_vspace_base(header); |
---|
1229 | mapping_cluster_t* cluster = _get_cluster_base(header); |
---|
1230 | |
---|
1231 | // get scheduler for processor running the calling thread |
---|
1232 | static_scheduler_t* psched = (static_scheduler_t*)_get_sched(); |
---|
1233 | |
---|
1234 | // get calling thread local index in scheduler |
---|
1235 | unsigned int current = psched->current; |
---|
1236 | |
---|
1237 | // get vspace index |
---|
1238 | unsigned int vspace_id = psched->context[current].slot[CTX_VSID_ID]; |
---|
1239 | |
---|
1240 | #if GIET_DEBUG_EXEC |
---|
1241 | unsigned int gpid = _get_procid(); |
---|
1242 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
1243 | unsigned int p = gpid & ((1<<P_WIDTH)-1); |
---|
1244 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
1245 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1246 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1247 | _printf("\n[DEBUG EXEC] _sys_pthread_create() at cycle %d\n" |
---|
1248 | "P[%d,%d,%d] enters for vspace %s / entry = %x\n", |
---|
1249 | _get_proctime() , x , y , p , vspace[vspace_id].name , (unsigned int)function ); |
---|
1250 | #endif |
---|
1251 | |
---|
1252 | unsigned int thread_id; // searched thread : local index in mapping |
---|
1253 | unsigned int clusterid; // searched thread : cluster index |
---|
1254 | unsigned int lpid; // searched thread : processor local index |
---|
1255 | unsigned int ltid; // searched thread : scheduler thread index |
---|
1256 | unsigned int cx; // searched thread : X coordinate for searched thread |
---|
1257 | unsigned int cy; // searched thread : Y coordinate for searched thread |
---|
1258 | unsigned int entry; // searched thread : entry point |
---|
1259 | unsigned int norun; // searched thread : norun vector |
---|
1260 | unsigned int trdid; // searched thread : thread identifier |
---|
1261 | |
---|
1262 | // scan threads in vspace to find an inactive thread matching function |
---|
1263 | unsigned int min = vspace[vspace_id].thread_offset; |
---|
1264 | unsigned int max = min + vspace[vspace_id].threads; |
---|
1265 | unsigned int found = 0; |
---|
1266 | for ( thread_id = min ; (thread_id < max) && (found == 0) ; thread_id++ ) |
---|
1267 | { |
---|
1268 | // get thread coordinates [cx,cy,lpid] and ltid from mapping |
---|
1269 | ltid = thread[thread_id].ltid; |
---|
1270 | clusterid = thread[thread_id].clusterid; |
---|
1271 | lpid = thread[thread_id].proclocid; |
---|
1272 | cx = cluster[clusterid].x; |
---|
1273 | cy = cluster[clusterid].y; |
---|
1274 | |
---|
1275 | // get thread scheduler pointer |
---|
1276 | psched = _schedulers[cx][cy][lpid]; |
---|
1277 | |
---|
1278 | // get thread entry-point, norun-vector, and trdid from context |
---|
1279 | entry = psched->context[ltid].slot[CTX_ENTRY_ID]; |
---|
1280 | norun = psched->context[ltid].slot[CTX_NORUN_ID]; |
---|
1281 | trdid = psched->context[ltid].slot[CTX_TRDID_ID]; |
---|
1282 | |
---|
1283 | // check matching |
---|
1284 | if ( ((unsigned int)function == entry ) && |
---|
1285 | (norun & NORUN_MASK_THREAD) ) found = 1; |
---|
1286 | |
---|
1287 | } // end loop on threads |
---|
1288 | |
---|
1289 | if ( found ) // one matching inactive thread has been found |
---|
1290 | { |
---|
1291 | // set argument value in thread context |
---|
1292 | if ( arg != NULL ) psched->context[ltid].slot[CTX_A0_ID] = (unsigned int)arg; |
---|
1293 | |
---|
1294 | // activate thread |
---|
1295 | psched->context[ltid].slot[CTX_NORUN_ID] = 0; |
---|
1296 | |
---|
1297 | // return launched thead global identifier |
---|
1298 | *buffer = trdid; |
---|
1299 | |
---|
1300 | #if GIET_DEBUG_EXEC |
---|
1301 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1302 | _printf("\n[DEBUG EXEC] _sys_pthread_create() at cycle %d\n" |
---|
1303 | "P[%d,%d,%d] exit : thread %x launched in vspace %s\n", |
---|
1304 | _get_proctime() , x , y , p , trdid , vspace[vspace_id].name ); |
---|
1305 | #endif |
---|
1306 | return SYSCALL_OK; |
---|
1307 | } |
---|
1308 | else // no matching thread found |
---|
1309 | { |
---|
1310 | _printf("\n[GIET ERROR] in _sys_pthread_create() : " |
---|
1311 | "no matching thread for entry = %x in vspace %s\n", |
---|
1312 | (unsigned int)function , vspace[vspace_id].name ); |
---|
1313 | |
---|
1314 | return SYSCALL_THREAD_NOT_FOUND; |
---|
1315 | } |
---|
1316 | |
---|
1317 | } // end _sys_pthread_create() |
---|
1318 | |
---|
1319 | |
---|
1320 | /////////////////////////////////////////// |
---|
1321 | int _sys_pthread_join( unsigned int trdid, |
---|
1322 | void* ptr ) |
---|
1323 | { |
---|
1324 | // ptr argument not supported |
---|
1325 | if ( ptr != NULL ) |
---|
1326 | { |
---|
1327 | _printf("\n[GIET ERROR] in _sys_pthread_join() : " |
---|
1328 | "ptr argument not supported, must be NULL\n" ); |
---|
1329 | |
---|
1330 | return SYSCALL_PTHREAD_ARGUMENT_NOT_SUPPORTED; |
---|
1331 | } |
---|
1332 | |
---|
1333 | // get calling thread vspace |
---|
1334 | unsigned int caller_vspace = _get_context_slot( CTX_VSID_ID ); |
---|
1335 | |
---|
1336 | #if GIET_DEBUG_EXEC |
---|
1337 | unsigned int gpid = _get_procid(); |
---|
1338 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
1339 | unsigned int p = gpid & ((1<<P_WIDTH)-1); |
---|
1340 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
1341 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1342 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1343 | _printf("\n[DEBUG EXEC] _sys_pthread_join() at cycle %d\n" |
---|
1344 | "P[%d,%d,%d] enters for thread %x in vspace %d\n", |
---|
1345 | _get_proctime() , x , y , p , trdid , caller_vspace ); |
---|
1346 | #endif |
---|
1347 | |
---|
1348 | // get target thread indexes from trdid |
---|
1349 | unsigned int cx = (trdid>>24) & 0xFF; |
---|
1350 | unsigned int cy = (trdid>>16) & 0xFF; |
---|
1351 | unsigned int lpid = (trdid>>8 ) & 0xFF; |
---|
1352 | unsigned int ltid = (trdid ) & 0xFF; |
---|
1353 | |
---|
1354 | // get target thread scheduler, vspace and registered trdid |
---|
1355 | static_scheduler_t* psched = _schedulers[cx][cy][lpid]; |
---|
1356 | unsigned int target_vspace = psched->context[ltid].slot[CTX_VSID_ID]; |
---|
1357 | unsigned int registered_trdid = psched->context[ltid].slot[CTX_TRDID_ID]; |
---|
1358 | |
---|
1359 | // check trdid |
---|
1360 | if ( trdid != registered_trdid ) |
---|
1361 | { |
---|
1362 | _printf("\nerror in _sys_pthread_join() : " |
---|
1363 | "trdid = %x / registered_trdid = %x\n", |
---|
1364 | trdid , registered_trdid ); |
---|
1365 | |
---|
1366 | return SYSCALL_UNCOHERENT_THREAD_CONTEXT; |
---|
1367 | } |
---|
1368 | |
---|
1369 | // check calling thread and target thread in same vspace |
---|
1370 | if ( caller_vspace != target_vspace ) |
---|
1371 | { |
---|
1372 | _printf("\n[GIET ERROR] in _sys_pthread_join() : " |
---|
1373 | " calling thread and target thread not in same vspace\n"); |
---|
1374 | |
---|
1375 | return SYSCALL_NOT_IN_SAME_VSPACE; |
---|
1376 | } |
---|
1377 | |
---|
1378 | // get target thread state |
---|
1379 | volatile unsigned int* pnorun = &psched->context[ltid].slot[CTX_NORUN_ID]; |
---|
1380 | while (*pnorun == 0) _sys_pthread_yield(); |
---|
1381 | |
---|
1382 | #if GIET_DEBUG_EXEC |
---|
1383 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1384 | _printf("\n[DEBUG EXEC] _sys_pthread_join() at cycle %d\n" |
---|
1385 | "P[%d,%d,%d] exit for thread %x in vspace %d\n", |
---|
1386 | _get_proctime() , x , y , p , trdid , caller_vspace ); |
---|
1387 | #endif |
---|
1388 | |
---|
1389 | return SYSCALL_OK; |
---|
1390 | |
---|
1391 | } // end _sys_pthread_join() |
---|
1392 | |
---|
1393 | |
---|
1394 | //////////////////////////////////////// |
---|
1395 | int _sys_pthread_kill( pthread_t trdid, |
---|
1396 | int signal ) |
---|
1397 | { |
---|
1398 | // get calling thread vspace |
---|
1399 | unsigned int caller_vspace = _get_context_slot( CTX_VSID_ID ); |
---|
1400 | |
---|
1401 | #if GIET_DEBUG_EXEC |
---|
1402 | unsigned int gpid = _get_procid(); |
---|
1403 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
1404 | unsigned int p = gpid & ((1<<P_WIDTH)-1); |
---|
1405 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
1406 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1407 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1408 | _printf("\n[DEBUG EXEC] _sys_pthread_kill() at cycle %d\n" |
---|
1409 | "P[%d,%d,%d] enters for thread %x in vspace %d\n", |
---|
1410 | _get_proctime() , x , y , p , trdid , caller_vspace ); |
---|
1411 | #endif |
---|
1412 | |
---|
1413 | |
---|
1414 | // get and check target thread indexes from trdid |
---|
1415 | unsigned int cx = (trdid>>24) & 0xFF; |
---|
1416 | unsigned int cy = (trdid>>16) & 0xFF; |
---|
1417 | unsigned int lpid = (trdid>>8 ) & 0xFF; |
---|
1418 | unsigned int ltid = (trdid ) & 0xFF; |
---|
1419 | |
---|
1420 | // get target thread scheduler, vspace and registered trdid |
---|
1421 | static_scheduler_t* psched = _schedulers[cx][cy][lpid]; |
---|
1422 | unsigned int target_vspace = psched->context[ltid].slot[CTX_VSID_ID]; |
---|
1423 | unsigned int registered_trdid = psched->context[ltid].slot[CTX_TRDID_ID]; |
---|
1424 | |
---|
1425 | // check trdid |
---|
1426 | if ( trdid != registered_trdid ) |
---|
1427 | { |
---|
1428 | _printf("\n[GIET ERROR] in _sys_pthread_kill() : trdid = %x" |
---|
1429 | " / registered_trdid = %x\n", trdid , registered_trdid ); |
---|
1430 | return SYSCALL_UNCOHERENT_THREAD_CONTEXT; |
---|
1431 | } |
---|
1432 | |
---|
1433 | // check calling thread and target thread in same vspace |
---|
1434 | if ( caller_vspace != target_vspace ) |
---|
1435 | { |
---|
1436 | _printf("\n[GIET ERROR] in _sys_pthread_kill() : not in same vspace\n"); |
---|
1437 | return SYSCALL_NOT_IN_SAME_VSPACE; |
---|
1438 | } |
---|
1439 | |
---|
1440 | // register KILL signal in target thread context if required |
---|
1441 | if ( signal ) |
---|
1442 | { |
---|
1443 | _atomic_or( &psched->context[ltid].slot[CTX_SIGS_ID] , SIGS_MASK_KILL ); |
---|
1444 | } |
---|
1445 | |
---|
1446 | #if GIET_DEBUG_EXEC |
---|
1447 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1448 | _printf("\n[DEBUG EXEC] _sys_pthread_kill() at cycle %d\n" |
---|
1449 | "P[%d,%d,%d] exit for thread %x in vspace %d\n", |
---|
1450 | _get_proctime() , x , y , p , trdid , caller_vspace ); |
---|
1451 | #endif |
---|
1452 | |
---|
1453 | return SYSCALL_OK; |
---|
1454 | |
---|
1455 | } // end _sys_pthread_kill() |
---|
1456 | |
---|
1457 | |
---|
1458 | ///////////////////////////////////// |
---|
1459 | int _sys_pthread_exit( void* string ) |
---|
1460 | { |
---|
1461 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
1462 | mapping_vspace_t * vspace = _get_vspace_base(header); |
---|
1463 | |
---|
1464 | unsigned int ltid = _get_context_slot(CTX_LTID_ID); |
---|
1465 | unsigned int trdid = _get_context_slot(CTX_TRDID_ID); |
---|
1466 | unsigned int vsid = _get_context_slot(CTX_VSID_ID); |
---|
1467 | |
---|
1468 | // print exit message |
---|
1469 | if ( string != NULL ) |
---|
1470 | { |
---|
1471 | _printf("\n[GIET WARNING] Exit thread %x in vspace %s\n" |
---|
1472 | " Cause : %s\n\n", |
---|
1473 | trdid , vspace[vsid].name , (char*) string ); |
---|
1474 | } |
---|
1475 | |
---|
1476 | // get scheduler pointer for calling thread |
---|
1477 | static_scheduler_t* psched = (static_scheduler_t*)_get_sched(); |
---|
1478 | |
---|
1479 | // register KILL signal in calling thread context (suicid request) |
---|
1480 | _atomic_or( &psched->context[ltid].slot[CTX_SIGS_ID] , SIGS_MASK_KILL ); |
---|
1481 | |
---|
1482 | // deschedule calling thread |
---|
1483 | unsigned int save_sr; |
---|
1484 | _it_disable( &save_sr ); |
---|
1485 | |
---|
1486 | _ctx_switch(); |
---|
1487 | |
---|
1488 | return SYSCALL_OK; |
---|
1489 | |
---|
1490 | } // end _sys_pthread_exit() |
---|
1491 | |
---|
1492 | //////////////////////// |
---|
1493 | int _sys_pthread_yield() |
---|
1494 | { |
---|
1495 | unsigned int save_sr; |
---|
1496 | |
---|
1497 | _it_disable( &save_sr ); |
---|
1498 | _ctx_switch(); |
---|
1499 | _it_restore( &save_sr ); |
---|
1500 | |
---|
1501 | return SYSCALL_OK; |
---|
1502 | } |
---|
1503 | |
---|
1504 | ////////////////////////////////////////////////// |
---|
1505 | int _sys_pthread_control( unsigned int command, |
---|
1506 | char* vspace_name, |
---|
1507 | char* thread_name ) |
---|
1508 | { |
---|
1509 | |
---|
1510 | #if GIET_DEBUG_EXEC |
---|
1511 | unsigned int gpid = _get_procid(); |
---|
1512 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
1513 | unsigned int p = gpid & ((1<<P_WIDTH)-1); |
---|
1514 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
1515 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1516 | if ( _get_proctime() > GIET_DEBUG_EXEC ) |
---|
1517 | _printf("\n[DEBUG EXEC] _sys_pthread_control() at cycle %d\n" |
---|
1518 | "P[%d,%d,%d] enter for vspace %s / thread %s / command = %d\n", |
---|
1519 | _get_proctime() , x , y , p , vspace_name, thread_name, command ); |
---|
1520 | #endif |
---|
1521 | |
---|
1522 | // get pointers in mapping |
---|
1523 | mapping_header_t* header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
1524 | mapping_thread_t* thread = _get_thread_base(header); |
---|
1525 | mapping_vspace_t* vspace = _get_vspace_base(header); |
---|
1526 | mapping_cluster_t* cluster = _get_cluster_base(header); |
---|
1527 | |
---|
1528 | unsigned int found; |
---|
1529 | |
---|
1530 | // search vspace name to get vspace index: vsid |
---|
1531 | found = 0; |
---|
1532 | unsigned int vsid; |
---|
1533 | for( vsid = 0 ; vsid < header->vspaces ; vsid++ ) |
---|
1534 | { |
---|
1535 | if ( _strcmp( vspace[vsid].name, vspace_name ) == 0 ) |
---|
1536 | { |
---|
1537 | found = 1; |
---|
1538 | break; |
---|
1539 | } |
---|
1540 | } |
---|
1541 | |
---|
1542 | if ( found == 0 ) return SYSCALL_VSPACE_NOT_FOUND; |
---|
1543 | |
---|
1544 | // search thread name in vspace to get thread index: tid |
---|
1545 | found = 0; |
---|
1546 | unsigned int tid; |
---|
1547 | unsigned int min = vspace[vsid].thread_offset; |
---|
1548 | unsigned int max = min + vspace[vsid].threads; |
---|
1549 | for( tid = min ; tid < max ; tid++ ) |
---|
1550 | { |
---|
1551 | if ( _strcmp( thread[tid].name, thread_name ) == 0 ) |
---|
1552 | { |
---|
1553 | found = 1; |
---|
1554 | break; |
---|
1555 | } |
---|
1556 | } |
---|
1557 | |
---|
1558 | if ( found == 0 ) return SYSCALL_THREAD_NOT_FOUND; |
---|
1559 | |
---|
1560 | // get target thread coordinates |
---|
1561 | unsigned int cid = thread[tid].clusterid; |
---|
1562 | unsigned int cx = cluster[cid].x; |
---|
1563 | unsigned int cy = cluster[cid].y; |
---|
1564 | unsigned int cp = thread[tid].proclocid; |
---|
1565 | unsigned int ltid = thread[tid].ltid; |
---|
1566 | |
---|
1567 | // get target thread scheduler |
---|
1568 | static_scheduler_t* psched = _schedulers[cx][cy][cp]; |
---|
1569 | |
---|
1570 | // check trdid and vsid |
---|
1571 | unsigned int trdid = cx<<24 | cy<<16 | cp<<8 | ltid; |
---|
1572 | if ( (psched->context[ltid].slot[CTX_TRDID_ID] != trdid) || |
---|
1573 | (psched->context[ltid].slot[CTX_VSID_ID] != vsid) ) |
---|
1574 | { |
---|
1575 | return SYSCALL_UNCOHERENT_THREAD_CONTEXT; |
---|
1576 | } |
---|
1577 | |
---|
1578 | // execute command |
---|
1579 | if ( command == THREAD_CMD_PAUSE ) |
---|
1580 | { |
---|
1581 | _atomic_or ( &psched->context[ltid].slot[CTX_NORUN_ID], NORUN_MASK_THREAD ); |
---|
1582 | return SYSCALL_OK; |
---|
1583 | } |
---|
1584 | else if ( command == THREAD_CMD_RESUME ) |
---|
1585 | { |
---|
1586 | _atomic_and( &psched->context[ltid].slot[CTX_NORUN_ID], ~NORUN_MASK_THREAD ); |
---|
1587 | return SYSCALL_OK; |
---|
1588 | } |
---|
1589 | else if ( command == THREAD_CMD_CONTEXT ) |
---|
1590 | { |
---|
1591 | _user_printf( " - CTX_TRDID = %x\n" |
---|
1592 | " - CTX_VSID = %x\n" |
---|
1593 | " - CTX_EPC = %x\n" |
---|
1594 | " - CTX_PTAB = %x\n" |
---|
1595 | " - CTX_PTPR = %x\n" |
---|
1596 | " - CTX_SR = %x\n" |
---|
1597 | " - CTX_RA = %x\n" |
---|
1598 | " - CTX_SP = %x\n" |
---|
1599 | " - CTX_ENTRY = %x\n" |
---|
1600 | " - CTX_NORUN = %x\n" |
---|
1601 | " - CTX_SIGS = %x\n" |
---|
1602 | " - CTX_LOCKS = %x\n" |
---|
1603 | " - CTX_TTY = %x\n" |
---|
1604 | " - CTX_NIC_RX = %x\n" |
---|
1605 | " - CTX_NIC_TX = %x\n" |
---|
1606 | " - CTX_CMA_RX = %x\n" |
---|
1607 | " - CTX_CMA_TX = %x\n" |
---|
1608 | " - CTX_CMA_FB = %x\n", |
---|
1609 | psched->context[ltid].slot[CTX_TRDID_ID], |
---|
1610 | psched->context[ltid].slot[CTX_VSID_ID], |
---|
1611 | psched->context[ltid].slot[CTX_EPC_ID], |
---|
1612 | psched->context[ltid].slot[CTX_PTAB_ID], |
---|
1613 | psched->context[ltid].slot[CTX_PTPR_ID], |
---|
1614 | psched->context[ltid].slot[CTX_SR_ID], |
---|
1615 | psched->context[ltid].slot[CTX_RA_ID], |
---|
1616 | psched->context[ltid].slot[CTX_SP_ID], |
---|
1617 | psched->context[ltid].slot[CTX_ENTRY_ID], |
---|
1618 | psched->context[ltid].slot[CTX_NORUN_ID], |
---|
1619 | psched->context[ltid].slot[CTX_SIGS_ID], |
---|
1620 | psched->context[ltid].slot[CTX_LOCKS_ID], |
---|
1621 | psched->context[ltid].slot[CTX_TTY_ID], |
---|
1622 | psched->context[ltid].slot[CTX_NIC_RX_ID], |
---|
1623 | psched->context[ltid].slot[CTX_NIC_TX_ID], |
---|
1624 | psched->context[ltid].slot[CTX_CMA_RX_ID], |
---|
1625 | psched->context[ltid].slot[CTX_CMA_TX_ID], |
---|
1626 | psched->context[ltid].slot[CTX_CMA_FB_ID] ); |
---|
1627 | return SYSCALL_OK; |
---|
1628 | } |
---|
1629 | else |
---|
1630 | { |
---|
1631 | return SYSCALL_ILLEGAL_THREAD_COMMAND_TYPE; |
---|
1632 | } |
---|
1633 | |
---|
1634 | } // end _sys_pthread_control() |
---|
1635 | |
---|
1636 | |
---|
1637 | |
---|
1638 | |
---|
1639 | ////////////////////////////////////////////////////////////////////////////// |
---|
1640 | // Coprocessors related syscall handlers |
---|
1641 | ////////////////////////////////////////////////////////////////////////////// |
---|
1642 | |
---|
1643 | ////////////////////////////////////////////////// |
---|
1644 | int _sys_coproc_alloc( unsigned int cluster_xy, |
---|
1645 | unsigned int coproc_type, |
---|
1646 | unsigned int* return_info ) |
---|
1647 | { |
---|
1648 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
1649 | mapping_cluster_t * cluster = _get_cluster_base(header); |
---|
1650 | mapping_periph_t * periph = _get_periph_base(header); |
---|
1651 | |
---|
1652 | // compute cluster coordinates and cluster index in mapping |
---|
1653 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1654 | unsigned int x = (cluster_xy>>Y_WIDTH) & ((1<<X_WIDTH)-1); |
---|
1655 | unsigned int cluster_id = x * Y_SIZE + y; |
---|
1656 | |
---|
1657 | // search coprocessor in cluster |
---|
1658 | mapping_periph_t* found = NULL; |
---|
1659 | unsigned int min = cluster[cluster_id].periph_offset; |
---|
1660 | unsigned int max = min + cluster[cluster_id].periphs; |
---|
1661 | unsigned int periph_id; |
---|
1662 | for ( periph_id = min ; periph_id < max ; periph_id++ ) |
---|
1663 | { |
---|
1664 | if ( (periph[periph_id].type == PERIPH_TYPE_MWR) && |
---|
1665 | (periph[periph_id].subtype == coproc_type) ) |
---|
1666 | { |
---|
1667 | found = &periph[periph_id]; |
---|
1668 | break; |
---|
1669 | } |
---|
1670 | } |
---|
1671 | |
---|
1672 | if ( found != NULL ) |
---|
1673 | { |
---|
1674 | // get the lock |
---|
1675 | _simple_lock_acquire( &_coproc_lock[cluster_id] ); |
---|
1676 | |
---|
1677 | // register coproc characteristics in kernel arrays |
---|
1678 | _coproc_type[cluster_id] = coproc_type; |
---|
1679 | _coproc_info[cluster_id] = (found->arg0 & 0xFF) | |
---|
1680 | (found->arg1 & 0xFF)<<8 | |
---|
1681 | (found->arg2 & 0xFF)<<16 | |
---|
1682 | (found->arg3 & 0xFF)<<24 ; |
---|
1683 | |
---|
1684 | // returns coprocessor info |
---|
1685 | *return_info = _coproc_info[cluster_id]; |
---|
1686 | |
---|
1687 | #if GIET_DEBUG_COPROC |
---|
1688 | _printf("\n[DEBUG COPROC] _sys_coproc_alloc() at cycle %d\n" |
---|
1689 | "type = %d in cluster[%d,%d] / coproc_info = %x\n", |
---|
1690 | _get_proctime() , coproc_type, x , y , *return_info ); |
---|
1691 | #endif |
---|
1692 | return SYSCALL_OK; |
---|
1693 | } |
---|
1694 | else |
---|
1695 | { |
---|
1696 | _printf("\n[GIET_ERROR] in _sys_coproc_alloc(): " |
---|
1697 | "no coprocessor with type %d in cluster[%d,%d]\n", |
---|
1698 | coproc_type , x , y ); |
---|
1699 | |
---|
1700 | return SYSCALL_COPROCESSOR_NOT_FOUND; |
---|
1701 | } |
---|
1702 | } // end _sys_coproc_alloc() |
---|
1703 | |
---|
1704 | //////////////////////////////////////////////////////// |
---|
1705 | int _sys_coproc_release( unsigned int cluster_xy, |
---|
1706 | unsigned int coproc_type ) |
---|
1707 | { |
---|
1708 | // compute cluster coordinates and cluster index |
---|
1709 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1710 | unsigned int x = (cluster_xy>>Y_WIDTH) & ((1<<X_WIDTH)-1); |
---|
1711 | unsigned int cluster_id = x * Y_SIZE + y; |
---|
1712 | |
---|
1713 | // check coprocessor type |
---|
1714 | if ( _coproc_type[cluster_id] != coproc_type ) |
---|
1715 | { |
---|
1716 | _printf("\n[GIET_ERROR] in _sys_coproc_release(): " |
---|
1717 | "no coprocessor of type %d allocated in cluster[%d,%d]\n", |
---|
1718 | coproc_type, x , y ); |
---|
1719 | |
---|
1720 | return SYSCALL_COPROCESSOR_NON_ALLOCATED; |
---|
1721 | } |
---|
1722 | |
---|
1723 | unsigned int info = _coproc_info[cluster_id]; |
---|
1724 | unsigned int nb_to = info & 0xFF; |
---|
1725 | unsigned int nb_from = (info>>8) & 0xFF; |
---|
1726 | unsigned int channel; |
---|
1727 | |
---|
1728 | // stops coprocessor and communication channels |
---|
1729 | _mwr_set_coproc_register( cluster_xy , 0 , 0 ); |
---|
1730 | for ( channel = 0 ; channel < (nb_from + nb_to) ; channel++ ) |
---|
1731 | { |
---|
1732 | _mwr_set_channel_register( cluster_xy , channel , MWR_CHANNEL_RUNNING , 0 ); |
---|
1733 | } |
---|
1734 | |
---|
1735 | // release coprocessor lock |
---|
1736 | _simple_lock_release( &_coproc_lock[cluster_id] ); |
---|
1737 | |
---|
1738 | #if GIET_DEBUG_COPROC |
---|
1739 | _printf("\n[DEBUG COPROC] _sys_coproc_release() at cycle %d\n" |
---|
1740 | "type = %d in cluster[%d,%d]\n", |
---|
1741 | _get_proctime() , coproc_type , x , y ); |
---|
1742 | #endif |
---|
1743 | |
---|
1744 | return SYSCALL_OK; |
---|
1745 | } // end _sys_coproc_release() |
---|
1746 | |
---|
1747 | //////////////////////////////////////////////////////////////// |
---|
1748 | int _sys_coproc_channel_init( unsigned int cluster_xy, |
---|
1749 | unsigned int coproc_type, |
---|
1750 | unsigned int channel, |
---|
1751 | giet_coproc_channel_t* desc ) |
---|
1752 | { |
---|
1753 | // compute cluster coordinates and cluster index |
---|
1754 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1755 | unsigned int x = (cluster_xy>>Y_WIDTH) & ((1<<X_WIDTH)-1); |
---|
1756 | unsigned int cluster_id = x * Y_SIZE + y; |
---|
1757 | |
---|
1758 | // check coprocessor type |
---|
1759 | if ( _coproc_type[cluster_id] != coproc_type ) |
---|
1760 | { |
---|
1761 | _printf("\n[GIET_ERROR] in _sys_coproc_release(): " |
---|
1762 | "no coprocessor of type %d allocated in cluster[%d,%d]\n", |
---|
1763 | coproc_type, x , y ); |
---|
1764 | |
---|
1765 | return SYSCALL_COPROCESSOR_NON_ALLOCATED; |
---|
1766 | } |
---|
1767 | |
---|
1768 | // check channel mode |
---|
1769 | unsigned mode = desc->channel_mode; |
---|
1770 | if ( (mode != MODE_MWMR) && |
---|
1771 | (mode != MODE_DMA_IRQ) && |
---|
1772 | (mode != MODE_DMA_NO_IRQ) ) |
---|
1773 | { |
---|
1774 | _printf("\n[GIET_ERROR] in _sys_coproc_channel_init(): " |
---|
1775 | "illegal mode\n"); |
---|
1776 | |
---|
1777 | return SYSCALL_COPROCESSOR_ILLEGAL_MODE; |
---|
1778 | } |
---|
1779 | |
---|
1780 | // get memory buffer size |
---|
1781 | unsigned int size = desc->buffer_size; |
---|
1782 | |
---|
1783 | // physical addresses |
---|
1784 | unsigned long long buffer_paddr; |
---|
1785 | unsigned int buffer_lsb; |
---|
1786 | unsigned int buffer_msb; |
---|
1787 | unsigned long long status_paddr = 0; |
---|
1788 | unsigned int status_lsb; |
---|
1789 | unsigned int status_msb; |
---|
1790 | unsigned long long lock_paddr = 0; |
---|
1791 | unsigned int lock_lsb; |
---|
1792 | unsigned int lock_msb; |
---|
1793 | |
---|
1794 | unsigned int flags; // unused |
---|
1795 | |
---|
1796 | // compute memory buffer physical address |
---|
1797 | buffer_paddr = _v2p_translate( desc->buffer_vaddr , &flags ); |
---|
1798 | buffer_lsb = (unsigned int)buffer_paddr; |
---|
1799 | buffer_msb = (unsigned int)(buffer_paddr>>32); |
---|
1800 | |
---|
1801 | // call MWMR_DMA driver |
---|
1802 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_MODE, mode ); |
---|
1803 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_SIZE, size ); |
---|
1804 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_BUFFER_LSB, buffer_lsb ); |
---|
1805 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_BUFFER_MSB, buffer_msb ); |
---|
1806 | |
---|
1807 | if ( mode == MODE_MWMR ) |
---|
1808 | { |
---|
1809 | // compute MWMR descriptor physical address |
---|
1810 | status_paddr = _v2p_translate( desc->status_vaddr , &flags ); |
---|
1811 | status_lsb = (unsigned int)status_paddr; |
---|
1812 | status_msb = (unsigned int)(status_paddr>>32); |
---|
1813 | |
---|
1814 | // call MWMR_DMA driver |
---|
1815 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_MWMR_LSB, status_lsb ); |
---|
1816 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_MWMR_MSB, status_msb ); |
---|
1817 | |
---|
1818 | // compute lock physical address |
---|
1819 | lock_paddr = _v2p_translate( desc->lock_vaddr , &flags ); |
---|
1820 | lock_lsb = (unsigned int)lock_paddr; |
---|
1821 | lock_msb = (unsigned int)(lock_paddr>>32); |
---|
1822 | |
---|
1823 | // call MWMR_DMA driver |
---|
1824 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_LOCK_LSB, lock_lsb ); |
---|
1825 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_LOCK_MSB, lock_msb ); |
---|
1826 | } |
---|
1827 | |
---|
1828 | #if GIET_DEBUG_COPROC |
---|
1829 | _printf("\n[DEBUG COPROC] _sys_coproc_channel_init() at cycle %d\n" |
---|
1830 | "cluster[%d,%d] / channel = %d / mode = %d / buffer_size = %d\n" |
---|
1831 | "buffer_vaddr = %x / status_vaddr = %x / lock_vaddr = %x\n" |
---|
1832 | "buffer_paddr = %l / status_paddr = %l / lock_paddr = %l\n", |
---|
1833 | _get_proctime() , x , y , channel , mode , size , |
---|
1834 | desc->buffer_vaddr, desc->status_vaddr, desc->lock_vaddr, |
---|
1835 | buffer_paddr, status_paddr, lock_paddr ); |
---|
1836 | #endif |
---|
1837 | |
---|
1838 | return SYSCALL_OK; |
---|
1839 | } // end _sys_coproc_channel_init() |
---|
1840 | |
---|
1841 | ////////////////////////////////////////////// |
---|
1842 | int _sys_coproc_run( unsigned int cluster_xy, |
---|
1843 | unsigned int coproc_type ) |
---|
1844 | { |
---|
1845 | // compute cluster coordinates and cluster index |
---|
1846 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1847 | unsigned int x = (cluster_xy>>Y_WIDTH) & ((1<<X_WIDTH)-1); |
---|
1848 | unsigned int cluster_id = x * Y_SIZE + y; |
---|
1849 | |
---|
1850 | // check coprocessor type |
---|
1851 | if ( _coproc_type[cluster_id] != coproc_type ) |
---|
1852 | { |
---|
1853 | _printf("\n[GIET_ERROR] in _sys_coproc_release(): " |
---|
1854 | "no coprocessor of type %d allocated in cluster[%d,%d]\n", |
---|
1855 | coproc_type, x , y ); |
---|
1856 | |
---|
1857 | return SYSCALL_COPROCESSOR_NON_ALLOCATED; |
---|
1858 | } |
---|
1859 | |
---|
1860 | unsigned int info = _coproc_info[cluster_id]; |
---|
1861 | unsigned int nb_to = info & 0xFF; |
---|
1862 | unsigned int nb_from = (info>>8) & 0xFF; |
---|
1863 | unsigned int mode = 0xFFFFFFFF; |
---|
1864 | unsigned int channel; |
---|
1865 | |
---|
1866 | // check channels modes, and register coprocessor running mode |
---|
1867 | for ( channel = 0 ; channel < (nb_from + nb_to) ; channel++ ) |
---|
1868 | { |
---|
1869 | unsigned int temp; |
---|
1870 | temp = _mwr_get_channel_register( cluster_xy , channel , MWR_CHANNEL_MODE ); |
---|
1871 | |
---|
1872 | if ( mode == 0xFFFFFFFF ) |
---|
1873 | { |
---|
1874 | mode = temp; |
---|
1875 | } |
---|
1876 | else if ( temp != mode ) |
---|
1877 | { |
---|
1878 | _printf("\n[GIET_ERROR] in _sys_coproc_run(): " |
---|
1879 | "channels don't have same mode in coprocessor[%d,%d]\n", x , y ); |
---|
1880 | |
---|
1881 | return SYSCALL_COPROCESSOR_ILLEGAL_MODE; |
---|
1882 | } |
---|
1883 | } |
---|
1884 | _coproc_mode[cluster_id] = mode; |
---|
1885 | |
---|
1886 | // start all communication channels |
---|
1887 | for ( channel = 0 ; channel < (nb_from + nb_to) ; channel++ ) |
---|
1888 | { |
---|
1889 | _mwr_set_channel_register( cluster_xy , channel , MWR_CHANNEL_RUNNING , 1 ); |
---|
1890 | } |
---|
1891 | |
---|
1892 | ////////////////////////////////////////////////////////////////////////// |
---|
1893 | if ( (mode == MODE_MWMR) || (mode == MODE_DMA_NO_IRQ) ) // no descheduling |
---|
1894 | { |
---|
1895 | // start coprocessor |
---|
1896 | _mwr_set_coproc_register( cluster_xy , 0 , 1 ); |
---|
1897 | |
---|
1898 | #if GIET_DEBUG_COPROC |
---|
1899 | if ( mode == MODE_MWMR ) |
---|
1900 | _printf("\n[DEBUG COPROC] _sys_coproc_run() at cycle %d\n" |
---|
1901 | "type = %d / cluster[%d,%d] / MODE_MWMR\n", |
---|
1902 | _get_proctime() , coproc_type , x , y ); |
---|
1903 | else |
---|
1904 | _printf("\n[DEBUG COPROC] _sys_coproc_run() at cycle %d\n" |
---|
1905 | "type = %d / cluster[%d,%d] / MODE_DMA_NO_IRQ\n", |
---|
1906 | _get_proctime() , coproc_type , x , y ); |
---|
1907 | #endif |
---|
1908 | |
---|
1909 | return SYSCALL_OK; |
---|
1910 | } |
---|
1911 | /////////////////////////////////////////////////////////////////////////// |
---|
1912 | else // mode == MODE_DMA_IRQ => descheduling |
---|
1913 | { |
---|
1914 | // register calling thread trdid |
---|
1915 | unsigned int trdid = _get_thread_trdid(); |
---|
1916 | _coproc_trdid[cluster_id] = trdid; |
---|
1917 | |
---|
1918 | // enters critical section |
---|
1919 | unsigned int save_sr; |
---|
1920 | _it_disable( &save_sr ); |
---|
1921 | |
---|
1922 | // set NORUN_MASK_COPROC bit |
---|
1923 | static_scheduler_t* psched = _get_sched(); |
---|
1924 | unsigned int ltid = _get_thread_ltid(); |
---|
1925 | unsigned int* ptr = &psched->context[ltid].slot[CTX_NORUN_ID]; |
---|
1926 | _atomic_or( ptr , NORUN_MASK_COPROC ); |
---|
1927 | |
---|
1928 | // start coprocessor |
---|
1929 | _mwr_set_coproc_register( cluster_xy , 0 , 1 ); |
---|
1930 | |
---|
1931 | #if GIET_DEBUG_COPROC |
---|
1932 | _printf("\n[DEBUG COPROC] _sys_coproc_run() at cycle %d\n" |
---|
1933 | "thread %x starts coprocessor / type = %d / cluster[%d,%d] / MODE_DMA_IRQ\n", |
---|
1934 | _get_proctime() , trdid , coproc_type , x , y ); |
---|
1935 | #endif |
---|
1936 | |
---|
1937 | // deschedule thread |
---|
1938 | _ctx_switch(); |
---|
1939 | |
---|
1940 | #if GIET_DEBUG_COPROC |
---|
1941 | _printf("\n[DEBUG COPROC] _sys_coproc_run() at cycle %d\n" |
---|
1942 | "thread %x resume after coprocessor[%d,%d] completion\n", |
---|
1943 | _get_proctime() , trdid , x , y ); |
---|
1944 | #endif |
---|
1945 | |
---|
1946 | // restore SR |
---|
1947 | _it_restore( &save_sr ); |
---|
1948 | |
---|
1949 | // return error computed by mwr_isr() |
---|
1950 | return _coproc_error[cluster_id]; |
---|
1951 | } |
---|
1952 | } // end _sys_coproc_run() |
---|
1953 | |
---|
1954 | //////////////////////////////////////////////////// |
---|
1955 | int _sys_coproc_completed( unsigned int cluster_xy, |
---|
1956 | unsigned int coproc_type ) |
---|
1957 | { |
---|
1958 | // compute cluster coordinates and cluster index |
---|
1959 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
1960 | unsigned int x = (cluster_xy>>Y_WIDTH) & ((1<<X_WIDTH)-1); |
---|
1961 | unsigned int cluster_id = x * Y_SIZE + y; |
---|
1962 | |
---|
1963 | // check coprocessor type |
---|
1964 | if ( _coproc_type[cluster_id] != coproc_type ) |
---|
1965 | { |
---|
1966 | _printf("\n[GIET_ERROR] in _sys_coproc_release(): " |
---|
1967 | "no coprocessor of type %d allocated in cluster[%d,%d]\n", |
---|
1968 | coproc_type, x , y ); |
---|
1969 | |
---|
1970 | return SYSCALL_COPROCESSOR_NON_ALLOCATED; |
---|
1971 | } |
---|
1972 | |
---|
1973 | unsigned int mode = _coproc_mode[cluster_id]; |
---|
1974 | |
---|
1975 | // analyse possible errors |
---|
1976 | if ( mode == MODE_DMA_NO_IRQ ) |
---|
1977 | { |
---|
1978 | unsigned int info = _coproc_info[cluster_id]; |
---|
1979 | unsigned int nb_to = info & 0xFF; |
---|
1980 | unsigned int nb_from = (info>>8) & 0xFF; |
---|
1981 | unsigned int error = 0; |
---|
1982 | unsigned int channel; |
---|
1983 | unsigned int status; |
---|
1984 | |
---|
1985 | // get status for all channels, and signal reported errors |
---|
1986 | for ( channel = 0 ; channel < (nb_to +nb_from) ; channel++ ) |
---|
1987 | { |
---|
1988 | do |
---|
1989 | { |
---|
1990 | status = _mwr_get_channel_register( cluster_xy, channel, |
---|
1991 | MWR_CHANNEL_STATUS ); |
---|
1992 | if ( status == MWR_CHANNEL_ERROR_DATA ) |
---|
1993 | { |
---|
1994 | _printf("\n[GIET_ERROR] in _sys_coproc_completed(): " |
---|
1995 | "channel %d / DATA_ERROR\n", channel ); |
---|
1996 | error = 1; |
---|
1997 | } |
---|
1998 | else if ( status == MWR_CHANNEL_ERROR_LOCK ) |
---|
1999 | { |
---|
2000 | _printf("\n[GIET_ERROR] in _sys_coproc_completed()" |
---|
2001 | " / channel %d / LOCK_ERROR\n", channel ); |
---|
2002 | error = 1; |
---|
2003 | } |
---|
2004 | else if ( status == MWR_CHANNEL_ERROR_DESC ) |
---|
2005 | { |
---|
2006 | _printf("\n[GIET_ERROR] in _sys_coproc_completed()" |
---|
2007 | " / channel %d / DESC_ERROR\n", channel ); |
---|
2008 | error = 1; |
---|
2009 | } |
---|
2010 | } |
---|
2011 | while ( status == MWR_CHANNEL_BUSY ); |
---|
2012 | |
---|
2013 | // reset channel |
---|
2014 | _mwr_set_channel_register( cluster_xy, channel, MWR_CHANNEL_RUNNING , 0 ); |
---|
2015 | |
---|
2016 | } // end for channels |
---|
2017 | |
---|
2018 | if ( error ) |
---|
2019 | { |
---|
2020 | return SYSCALL_COPROCESSOR_ILLEGAL_MODE; |
---|
2021 | } |
---|
2022 | else |
---|
2023 | { |
---|
2024 | |
---|
2025 | #if GIET_DEBUG_COPROC |
---|
2026 | _printf("\n[DEBUG COPROC] _sys_coproc_completed() at cycle %d\n" |
---|
2027 | "coprocessor type = %d / cluster[%d,%d] completes operation for thread %d\n", |
---|
2028 | _get_proctime() , coproc_type , x , y , _get_thread_trdid() ); |
---|
2029 | #endif |
---|
2030 | return SYSCALL_OK; |
---|
2031 | } |
---|
2032 | } |
---|
2033 | else // mode == MODE_MWMR or MODE_DMA_IRQ |
---|
2034 | { |
---|
2035 | _printf("\n[GIET ERROR] in sys_coproc_completed(): " |
---|
2036 | "coprocessor[%d,%d] is not running in MODE_DMA_NO_IRQ\n", x , y ); |
---|
2037 | |
---|
2038 | return SYSCALL_COPROCESSOR_ILLEGAL_MODE; |
---|
2039 | } |
---|
2040 | } // end _sys_coproc_completed() |
---|
2041 | |
---|
2042 | |
---|
2043 | ////////////////////////////////////////////////////////////////////////////// |
---|
2044 | // TTY related syscall handlers |
---|
2045 | ////////////////////////////////////////////////////////////////////////////// |
---|
2046 | |
---|
2047 | ///////////////////////////////////////// |
---|
2048 | int _sys_tty_alloc( unsigned int shared ) |
---|
2049 | { |
---|
2050 | unsigned int channel = 0; // allocated TTY channel |
---|
2051 | |
---|
2052 | // get vsid for the calling thread |
---|
2053 | unsigned int vsid = _get_context_slot( CTX_VSID_ID ); |
---|
2054 | |
---|
2055 | mapping_header_t *header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
2056 | mapping_vspace_t *vspace = _get_vspace_base(header); |
---|
2057 | mapping_thread_t *thread = _get_thread_base(header); |
---|
2058 | |
---|
2059 | // compute number of users |
---|
2060 | unsigned int users; |
---|
2061 | if ( shared ) users = vspace[vsid].threads; |
---|
2062 | else users = 1; |
---|
2063 | |
---|
2064 | #if NB_TTY_CHANNELS > 1 |
---|
2065 | // get trdid for the calling thread |
---|
2066 | unsigned int trdid = _get_thread_trdid(); |
---|
2067 | |
---|
2068 | // get a TTY channel |
---|
2069 | for ( channel = 0 ; channel < NB_TTY_CHANNELS ; channel++ ) |
---|
2070 | { |
---|
2071 | unsigned int* palloc = &_tty_channel_alloc[channel]; |
---|
2072 | |
---|
2073 | if ( _atomic_test_and_set( palloc , users ) == 0 ) break; |
---|
2074 | } |
---|
2075 | if ( ( channel >= NB_TTY_CHANNELS ) ) |
---|
2076 | { |
---|
2077 | _printf("\n[GIET_ERROR] in _sys_tty_alloc() : " |
---|
2078 | "no TTY channel available for thread %x\n", trdid ); |
---|
2079 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2080 | } |
---|
2081 | |
---|
2082 | // initialise allocated TTY channel |
---|
2083 | _tty_init( channel ); |
---|
2084 | |
---|
2085 | // allocate a WTI mailbox to the calling proc if external IRQ |
---|
2086 | unsigned int wti_id; |
---|
2087 | if ( USE_PIC ) _ext_irq_alloc( ISR_TTY_RX , channel , &wti_id ); |
---|
2088 | |
---|
2089 | // register wti_id and coordinates for processor receiving WTI |
---|
2090 | unsigned int procid = _get_procid(); |
---|
2091 | unsigned int x = procid >> (Y_WIDTH + P_WIDTH); |
---|
2092 | unsigned int y = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1); |
---|
2093 | unsigned int p = procid & ((1<<P_WIDTH)-1); |
---|
2094 | _tty_channel_wti[channel] = x<<24 | y<<16 | p<<8 | wti_id; |
---|
2095 | |
---|
2096 | #else |
---|
2097 | |
---|
2098 | unsigned int* palloc = &_tty_channel_alloc[0]; |
---|
2099 | _atomic_increment( palloc, users ); |
---|
2100 | |
---|
2101 | #endif |
---|
2102 | |
---|
2103 | // update CTX_TTY_ID |
---|
2104 | if ( shared ) // for all threads in vspace |
---|
2105 | { |
---|
2106 | // scan threads in vspace |
---|
2107 | unsigned int tid; |
---|
2108 | for (tid = vspace[vsid].thread_offset; |
---|
2109 | tid < (vspace[vsid].thread_offset + vspace[vsid].threads); |
---|
2110 | tid++) |
---|
2111 | { |
---|
2112 | unsigned int y_size = header->y_size; |
---|
2113 | unsigned int cid = thread[tid].clusterid; |
---|
2114 | unsigned int x = cid / y_size; |
---|
2115 | unsigned int y = cid % y_size; |
---|
2116 | unsigned int p = thread[tid].proclocid; |
---|
2117 | unsigned int ltid = thread[tid].ltid; |
---|
2118 | static_scheduler_t* psched = (static_scheduler_t*)_schedulers[x][y][p]; |
---|
2119 | |
---|
2120 | psched->context[ltid].slot[CTX_TTY_ID] = channel; |
---|
2121 | } |
---|
2122 | } |
---|
2123 | else // for calling thread only |
---|
2124 | { |
---|
2125 | _set_context_slot( CTX_TTY_ID, channel ); |
---|
2126 | } |
---|
2127 | |
---|
2128 | return SYSCALL_OK; |
---|
2129 | } // end _sys_tty_alloc() |
---|
2130 | |
---|
2131 | ////////////////////// |
---|
2132 | int _sys_tty_release() // NOTE: not a syscall: used by _ctx_kill_thread() |
---|
2133 | { |
---|
2134 | unsigned int channel = _get_context_slot( CTX_TTY_ID ); |
---|
2135 | |
---|
2136 | if ( channel == -1 ) |
---|
2137 | { |
---|
2138 | unsigned int trdid = _get_thread_trdid(); |
---|
2139 | _printf("\n[GIET_ERROR] in _sys_tty_release() : " |
---|
2140 | "TTY channel already released for thread %x\n", trdid ); |
---|
2141 | |
---|
2142 | return SYSCALL_CHANNEL_ALREADY_ALLOCATED; |
---|
2143 | } |
---|
2144 | |
---|
2145 | // reset CTX_TTY_ID for the calling thread |
---|
2146 | _set_context_slot( CTX_TTY_ID , 0xFFFFFFFF ); |
---|
2147 | |
---|
2148 | // atomically decrement the _tty_channel_allocator[] array |
---|
2149 | _atomic_increment( &_tty_channel_alloc[channel] , -1 ); |
---|
2150 | |
---|
2151 | // release WTI mailbox if TTY channel no more used |
---|
2152 | if ( USE_PIC && (_tty_channel_alloc[channel] == 0) ) |
---|
2153 | { |
---|
2154 | _ext_irq_release( ISR_TTY_RX , channel ); |
---|
2155 | } |
---|
2156 | |
---|
2157 | return SYSCALL_OK; |
---|
2158 | } // end sys_tty_release() |
---|
2159 | |
---|
2160 | //////////////////////////////////////// |
---|
2161 | int _sys_tty_write( const char* buffer, |
---|
2162 | unsigned int length, // number of characters |
---|
2163 | unsigned int channel) // channel index |
---|
2164 | { |
---|
2165 | unsigned int nwritten; |
---|
2166 | |
---|
2167 | // compute and check tty channel |
---|
2168 | if( channel == 0xFFFFFFFF ) channel = _get_context_slot(CTX_TTY_ID); |
---|
2169 | |
---|
2170 | if( channel >= NB_TTY_CHANNELS ) |
---|
2171 | { |
---|
2172 | _printf("\n[GIET_ERROR] in _sys_tty_write() : " |
---|
2173 | "no TTY channel allocated for thread %x\n", _get_thread_trdid() ); |
---|
2174 | |
---|
2175 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2176 | } |
---|
2177 | |
---|
2178 | // write string to TTY channel |
---|
2179 | for (nwritten = 0; nwritten < length; nwritten++) |
---|
2180 | { |
---|
2181 | // check tty's status |
---|
2182 | if ( _tty_get_register( channel, TTY_STATUS ) & 0x2 ) break; |
---|
2183 | |
---|
2184 | // write one byte |
---|
2185 | if (buffer[nwritten] == '\n') |
---|
2186 | { |
---|
2187 | _tty_set_register( channel, TTY_WRITE, (unsigned int)'\r' ); |
---|
2188 | } |
---|
2189 | _tty_set_register( channel, TTY_WRITE, (unsigned int)buffer[nwritten] ); |
---|
2190 | } |
---|
2191 | |
---|
2192 | return nwritten; |
---|
2193 | } |
---|
2194 | |
---|
2195 | /////////////////////////////////////// |
---|
2196 | int _sys_tty_read( char* buffer, |
---|
2197 | unsigned int length, // unused |
---|
2198 | unsigned int channel) // channel index |
---|
2199 | { |
---|
2200 | // compute and check tty channel |
---|
2201 | if( channel == 0xFFFFFFFF ) channel = _get_context_slot(CTX_TTY_ID); |
---|
2202 | |
---|
2203 | if( channel >= NB_TTY_CHANNELS ) |
---|
2204 | { |
---|
2205 | _printf("\n[GIET_ERROR] in _sys_tty_read() : " |
---|
2206 | "no TTY channel allocated for thread %x\n", _get_thread_trdid() ); |
---|
2207 | |
---|
2208 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2209 | } |
---|
2210 | |
---|
2211 | unsigned int save_sr; |
---|
2212 | unsigned int found = 0; |
---|
2213 | |
---|
2214 | // get pointer on TTY_RX FIFO |
---|
2215 | tty_fifo_t* fifo = &_tty_rx_fifo[channel]; |
---|
2216 | |
---|
2217 | // try to read one character from FIFO |
---|
2218 | // blocked in while loop until success |
---|
2219 | while ( found == 0 ) |
---|
2220 | { |
---|
2221 | if ( fifo->sts == 0) // FIFO empty => deschedule |
---|
2222 | { |
---|
2223 | // enters critical section |
---|
2224 | _it_disable( &save_sr ); |
---|
2225 | |
---|
2226 | // set NORUN_MASK_TTY bit for calling thread |
---|
2227 | static_scheduler_t* psched = (static_scheduler_t*)_get_sched(); |
---|
2228 | unsigned int ltid = psched->current; |
---|
2229 | _atomic_or( &psched->context[ltid].slot[CTX_NORUN_ID] , NORUN_MASK_TTY ); |
---|
2230 | |
---|
2231 | // register descheduling thread trdid |
---|
2232 | fifo->trdid = _get_thread_trdid(); |
---|
2233 | |
---|
2234 | // deschedule calling thread |
---|
2235 | _ctx_switch(); |
---|
2236 | |
---|
2237 | // exit critical section |
---|
2238 | _it_restore( &save_sr ); |
---|
2239 | } |
---|
2240 | else // FIFO not empty => get one character |
---|
2241 | { |
---|
2242 | *buffer = fifo->data[fifo->ptr]; |
---|
2243 | fifo->sts = fifo->sts - 1; |
---|
2244 | fifo->ptr = (fifo->ptr + 1) % TTY_FIFO_DEPTH; |
---|
2245 | found = 1; |
---|
2246 | } |
---|
2247 | } |
---|
2248 | |
---|
2249 | return 1; |
---|
2250 | } |
---|
2251 | |
---|
2252 | |
---|
2253 | |
---|
2254 | ////////////////////////////////////////////////////////////////////////////// |
---|
2255 | // TIMER related syscall handlers |
---|
2256 | ////////////////////////////////////////////////////////////////////////////// |
---|
2257 | |
---|
2258 | //////////////////// |
---|
2259 | int _sys_tim_alloc() |
---|
2260 | { |
---|
2261 | |
---|
2262 | #if NB_TIM_CHANNELS |
---|
2263 | |
---|
2264 | unsigned int channel; // allocated TIMER channel |
---|
2265 | |
---|
2266 | unsigned int trdid = _get_thread_trdid(); |
---|
2267 | |
---|
2268 | // check no TIMER already allocated to calling thread |
---|
2269 | if ( _get_context_slot( CTX_TIM_ID ) < NB_TIM_CHANNELS ) |
---|
2270 | { |
---|
2271 | _printf("\n[GIET_ERROR] in _sys_tim_alloc() : " |
---|
2272 | "TIMER channel already allocated to thread %x\n", trdid ); |
---|
2273 | |
---|
2274 | return SYSCALL_CHANNEL_ALREADY_ALLOCATED; |
---|
2275 | } |
---|
2276 | |
---|
2277 | // get a TIMER channel |
---|
2278 | for ( channel = 0 ; channel < NB_TIM_CHANNELS ; channel++ ) |
---|
2279 | { |
---|
2280 | unsigned int* palloc = &_tim_channel_alloc[channel]; |
---|
2281 | |
---|
2282 | if ( _atomic_test_and_set( palloc , 1 ) == 0 ) break; |
---|
2283 | } |
---|
2284 | if ( channel >= NB_TIM_CHANNELS ) |
---|
2285 | { |
---|
2286 | _printf("\n[GIET_ERROR] in _sys_tim_alloc() : " |
---|
2287 | "no TIMER channel available for thread %x\n", trdid ); |
---|
2288 | |
---|
2289 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2290 | } |
---|
2291 | |
---|
2292 | // allocate a WTI mailbox to the calling proc if external IRQ |
---|
2293 | unsigned int wti_id; |
---|
2294 | if ( USE_PIC ) _ext_irq_alloc( ISR_TIMER , channel , &wti_id ); |
---|
2295 | |
---|
2296 | // register wti_id and coordinates for processor receiving WTI |
---|
2297 | unsigned int procid = _get_procid(); |
---|
2298 | unsigned int x = procid >> (Y_WIDTH + P_WIDTH); |
---|
2299 | unsigned int y = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1); |
---|
2300 | unsigned int p = procid & ((1<<P_WIDTH)-1); |
---|
2301 | _tim_channel_wti[channel] = x<<24 | y<<16 | p<<8 | wti_id; |
---|
2302 | |
---|
2303 | // update CTX_TIM_ID in thread context |
---|
2304 | _set_context_slot( CTX_TIM_ID, channel ); |
---|
2305 | |
---|
2306 | return SYSCALL_OK; |
---|
2307 | |
---|
2308 | #else |
---|
2309 | |
---|
2310 | _printf("\n[GIET ERROR] in _sys_tim_alloc(): NB_TIM_CHANNELS == 0\n"); |
---|
2311 | |
---|
2312 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2313 | |
---|
2314 | #endif |
---|
2315 | } // end _sys_tim_alloc() |
---|
2316 | |
---|
2317 | |
---|
2318 | ////////////////////// |
---|
2319 | int _sys_tim_release() // NOTE: not a syscall: used by _ctx_kill_thread() |
---|
2320 | { |
---|
2321 | |
---|
2322 | #if NB_TIM_CHANNELS |
---|
2323 | |
---|
2324 | unsigned int channel = _get_context_slot( CTX_TIM_ID ); |
---|
2325 | |
---|
2326 | if ( channel == -1 ) |
---|
2327 | { |
---|
2328 | unsigned int trdid = _get_thread_trdid(); |
---|
2329 | _printf("\n[GIET_ERROR] in _sys_tim_release(): " |
---|
2330 | "TIMER channel already released for thread %x\n", trdid ); |
---|
2331 | |
---|
2332 | return SYSCALL_CHANNEL_ALREADY_ALLOCATED; |
---|
2333 | } |
---|
2334 | |
---|
2335 | // reset CTX_TIM_ID for the calling thread |
---|
2336 | _set_context_slot( CTX_TIM_ID , 0xFFFFFFFF ); |
---|
2337 | |
---|
2338 | // reset the _tim_channel_alloc[] array |
---|
2339 | _tim_channel_alloc[channel] = 0; |
---|
2340 | |
---|
2341 | // release WTI mailbox if TTY channel no more used |
---|
2342 | if ( USE_PIC ) |
---|
2343 | { |
---|
2344 | _ext_irq_release( PERIPH_TYPE_TIM , channel ); |
---|
2345 | } |
---|
2346 | |
---|
2347 | return SYSCALL_OK; |
---|
2348 | |
---|
2349 | #else |
---|
2350 | |
---|
2351 | _printf("\n[GIET ERROR] in _sys_tim_release(): NB_TIM_CHANNELS = 0\n"); |
---|
2352 | |
---|
2353 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2354 | |
---|
2355 | #endif |
---|
2356 | } // end _sys_tim_release() |
---|
2357 | |
---|
2358 | ///////////////////////////////////////// |
---|
2359 | int _sys_tim_start( unsigned int period ) |
---|
2360 | { |
---|
2361 | |
---|
2362 | #if NB_TIM_CHANNELS |
---|
2363 | |
---|
2364 | // get timer index |
---|
2365 | unsigned int channel = _get_context_slot( CTX_TIM_ID ); |
---|
2366 | |
---|
2367 | if ( channel >= NB_TIM_CHANNELS ) |
---|
2368 | { |
---|
2369 | _printf("\n[GIET_ERROR] in _sys_tim_start(): not enough TIM channels\n"); |
---|
2370 | |
---|
2371 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2372 | } |
---|
2373 | |
---|
2374 | // start timer |
---|
2375 | _timer_start( channel, period ); |
---|
2376 | |
---|
2377 | return SYSCALL_OK; |
---|
2378 | |
---|
2379 | #else |
---|
2380 | |
---|
2381 | _printf("\n[GIET ERROR] in _sys_tim_start() : NB_TIM_CHANNELS = 0\n"); |
---|
2382 | |
---|
2383 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2384 | |
---|
2385 | #endif |
---|
2386 | } |
---|
2387 | |
---|
2388 | /////////////////// |
---|
2389 | int _sys_tim_stop() |
---|
2390 | { |
---|
2391 | |
---|
2392 | #if NB_TIM_CHANNELS |
---|
2393 | |
---|
2394 | // get timer index |
---|
2395 | unsigned int channel = _get_context_slot( CTX_TIM_ID ); |
---|
2396 | |
---|
2397 | if ( channel >= NB_TIM_CHANNELS ) |
---|
2398 | { |
---|
2399 | _printf("\n[GIET_ERROR] in _sys_tim_stop() : illegal timer index\n"); |
---|
2400 | |
---|
2401 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2402 | } |
---|
2403 | |
---|
2404 | // stop timer |
---|
2405 | _timer_stop( channel ); |
---|
2406 | |
---|
2407 | return SYSCALL_OK; |
---|
2408 | |
---|
2409 | #else |
---|
2410 | |
---|
2411 | _printf("\n[GIET ERROR] in _sys_tim_stop() : NB_TIM_CHANNELS = 0\n"); |
---|
2412 | |
---|
2413 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2414 | |
---|
2415 | #endif |
---|
2416 | } |
---|
2417 | |
---|
2418 | |
---|
2419 | ////////////////////////////////////////////////////////////////////////////// |
---|
2420 | // NIC related syscall handlers |
---|
2421 | ////////////////////////////////////////////////////////////////////////////// |
---|
2422 | |
---|
2423 | #define NIC_CONTAINER_SIZE 4096 |
---|
2424 | |
---|
2425 | #if NB_NIC_CHANNELS && NB_CMA_CHANNELS |
---|
2426 | |
---|
2427 | //////////////////////////////////////// |
---|
2428 | int _sys_nic_alloc( unsigned int is_rx, |
---|
2429 | unsigned int xmax, |
---|
2430 | unsigned int ymax ) |
---|
2431 | { |
---|
2432 | mapping_header_t *header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
2433 | mapping_vspace_t *vspace = _get_vspace_base(header); |
---|
2434 | mapping_thread_t *thread = _get_thread_base(header); |
---|
2435 | |
---|
2436 | // get calling thread trdid, vspace index, and number of threads |
---|
2437 | unsigned int trdid = _get_thread_trdid(); |
---|
2438 | unsigned int vsid = _get_context_slot( CTX_VSID_ID ); |
---|
2439 | unsigned int users = vspace[vsid].threads; |
---|
2440 | |
---|
2441 | // check xmax / ymax parameters |
---|
2442 | if ( (xmax > X_SIZE) || (ymax > Y_SIZE) ) |
---|
2443 | { |
---|
2444 | _printf("\n[GIET_ERROR] in _sys_nic_alloc() " |
---|
2445 | "xmax or ymax argument too large for thread %x\n", trdid ); |
---|
2446 | |
---|
2447 | return SYSCALL_ILLEGAL_ARGUMENT; |
---|
2448 | } |
---|
2449 | |
---|
2450 | //////////////////////////////////////////////////////// |
---|
2451 | // Step 1: get and register CMA and NIC channel index // |
---|
2452 | //////////////////////////////////////////////////////// |
---|
2453 | |
---|
2454 | unsigned int nic_channel; |
---|
2455 | unsigned int cma_channel; |
---|
2456 | unsigned int* palloc; |
---|
2457 | |
---|
2458 | // get a NIC_RX or NIC_TX channel |
---|
2459 | for ( nic_channel = 0 ; nic_channel < NB_NIC_CHANNELS ; nic_channel++ ) |
---|
2460 | { |
---|
2461 | if ( is_rx ) palloc = &_nic_rx_channel_alloc[nic_channel]; |
---|
2462 | else palloc = &_nic_tx_channel_alloc[nic_channel]; |
---|
2463 | |
---|
2464 | if ( _atomic_test_and_set( palloc , users ) == 0 ) break; |
---|
2465 | } |
---|
2466 | if ( (nic_channel >= NB_NIC_CHANNELS) ) |
---|
2467 | { |
---|
2468 | _printf("\n[GIET_ERROR] in _sys_nic_alloc() : " |
---|
2469 | "no NIC channel available for thread %x\n", trdid ); |
---|
2470 | |
---|
2471 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2472 | } |
---|
2473 | |
---|
2474 | // get a CMA channel |
---|
2475 | for ( cma_channel = 0 ; cma_channel < NB_CMA_CHANNELS ; cma_channel++ ) |
---|
2476 | { |
---|
2477 | palloc = &_cma_channel_alloc[cma_channel]; |
---|
2478 | |
---|
2479 | if ( _atomic_test_and_set( palloc , users ) == 0 ) break; |
---|
2480 | } |
---|
2481 | if ( cma_channel >= NB_CMA_CHANNELS ) |
---|
2482 | { |
---|
2483 | _printf("\n[GIET_ERROR] in _sys_nic_alloc() : " |
---|
2484 | "no CMA channel available for thread %x\n", trdid ); |
---|
2485 | if ( is_rx ) _nic_rx_channel_alloc[nic_channel] = 0; |
---|
2486 | else _nic_tx_channel_alloc[nic_channel] = 0; |
---|
2487 | |
---|
2488 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
2489 | } |
---|
2490 | |
---|
2491 | #if GIET_DEBUG_NIC |
---|
2492 | _printf("\n[DEBUG NIC] sys_nic_alloc() at cycle %d\n" |
---|
2493 | "thread %d get nic_channel = %d / cma_channel = %d\n", |
---|
2494 | _get_proctime() , trdid , nic_channel , cma_channel ); |
---|
2495 | #endif |
---|
2496 | |
---|
2497 | // register nic_index and cma_index in all threads |
---|
2498 | // contexts that are in the same vspace |
---|
2499 | unsigned int tid; |
---|
2500 | for (tid = vspace[vsid].thread_offset; |
---|
2501 | tid < (vspace[vsid].thread_offset + vspace[vsid].threads); |
---|
2502 | tid++) |
---|
2503 | { |
---|
2504 | unsigned int y_size = header->y_size; |
---|
2505 | unsigned int cid = thread[tid].clusterid; |
---|
2506 | unsigned int x = cid / y_size; |
---|
2507 | unsigned int y = cid % y_size; |
---|
2508 | unsigned int p = thread[tid].proclocid; |
---|
2509 | unsigned int ltid = thread[tid].ltid; |
---|
2510 | static_scheduler_t* psched = (static_scheduler_t*)_schedulers[x][y][p]; |
---|
2511 | |
---|
2512 | if ( is_rx ) |
---|
2513 | { |
---|
2514 | if ( (psched->context[ltid].slot[CTX_NIC_RX_ID] < NB_NIC_CHANNELS) || |
---|
2515 | (psched->context[ltid].slot[CTX_CMA_RX_ID] < NB_CMA_CHANNELS) ) |
---|
2516 | { |
---|
2517 | _printf("\n[GIET_ERROR] in _sys_nic_alloc() : " |
---|
2518 | "NIC_RX or CMA_RX channel already allocated for thread %x\n", trdid ); |
---|
2519 | _nic_rx_channel_alloc[nic_channel] = 0; |
---|
2520 | _cma_channel_alloc[cma_channel] = 0; |
---|
2521 | |
---|
2522 | return SYSCALL_CHANNEL_ALREADY_ALLOCATED; |
---|
2523 | } |
---|
2524 | else |
---|
2525 | { |
---|
2526 | psched->context[ltid].slot[CTX_NIC_RX_ID] = nic_channel; |
---|
2527 | psched->context[ltid].slot[CTX_CMA_RX_ID] = cma_channel; |
---|
2528 | } |
---|
2529 | } |
---|
2530 | else // is_tx |
---|
2531 | { |
---|
2532 | if ( (psched->context[ltid].slot[CTX_NIC_TX_ID] < NB_NIC_CHANNELS) || |
---|
2533 | (psched->context[ltid].slot[CTX_CMA_TX_ID] < NB_CMA_CHANNELS) ) |
---|
2534 | { |
---|
2535 | _printf("\n[GIET_ERROR] in _sys_nic_alloc() : " |
---|
2536 | "NIC_TX or CMA_TX channel already allocated for thread %x\n", trdid ); |
---|
2537 | _nic_tx_channel_alloc[nic_channel] = 0; |
---|
2538 | _cma_channel_alloc[cma_channel] = 0; |
---|
2539 | |
---|
2540 | return SYSCALL_CHANNEL_ALREADY_ALLOCATED; |
---|
2541 | } |
---|
2542 | else |
---|
2543 | { |
---|
2544 | psched->context[ltid].slot[CTX_NIC_TX_ID] = nic_channel; |
---|
2545 | psched->context[ltid].slot[CTX_CMA_TX_ID] = cma_channel; |
---|
2546 | } |
---|
2547 | } |
---|
2548 | } // end loop on threads |
---|
2549 | |
---|
2550 | ///////////////////////////////////////////////////////////////////////////////// |
---|
2551 | // Step 2: loop on all the clusters // |
---|
2552 | // Allocate the kernel containers and status, compute the container and the // |
---|
2553 | // status physical addresses, fill and synchronize the kernel CHBUF descriptor // |
---|
2554 | ///////////////////////////////////////////////////////////////////////////////// |
---|
2555 | |
---|
2556 | // physical addresses to be registered in the CMA registers |
---|
2557 | unsigned long long nic_chbuf_pbase; // NIC chbuf physical address |
---|
2558 | unsigned long long ker_chbuf_pbase; // kernel chbuf physical address |
---|
2559 | |
---|
2560 | // allocate one kernel container and one status variable per cluster in the |
---|
2561 | // (xmax / ymax) mesh |
---|
2562 | unsigned int cx; // cluster X coordinate |
---|
2563 | unsigned int cy; // cluster Y coordinate |
---|
2564 | unsigned int index; // container index in chbuf |
---|
2565 | unsigned int vaddr; // virtual address |
---|
2566 | unsigned long long cont_paddr; // container physical address |
---|
2567 | unsigned long long sts_paddr; // container status physical address |
---|
2568 | |
---|
2569 | unsigned int flags; // for _v2p_translate() |
---|
2570 | |
---|
2571 | for ( cx = 0 ; cx < xmax ; cx++ ) |
---|
2572 | { |
---|
2573 | for ( cy = 0 ; cy < ymax ; cy++ ) |
---|
2574 | { |
---|
2575 | // compute index in chbuf |
---|
2576 | index = (cx * ymax) + cy; |
---|
2577 | |
---|
2578 | // allocate the kernel container |
---|
2579 | vaddr = (unsigned int)_remote_malloc( NIC_CONTAINER_SIZE, cx, cy ); |
---|
2580 | |
---|
2581 | if ( vaddr == 0 ) // not enough kernel heap memory in cluster[cx,cy] |
---|
2582 | { |
---|
2583 | _printf("\n[GIET_ERROR] in _sys_nic_alloc() : " |
---|
2584 | "not enough kernel heap in cluster[%d,%d]\n", cx, cy ); |
---|
2585 | |
---|
2586 | return SYSCALL_OUT_OF_KERNEL_HEAP_MEMORY; |
---|
2587 | } |
---|
2588 | |
---|
2589 | // compute container physical address |
---|
2590 | cont_paddr = _v2p_translate( vaddr , &flags ); |
---|
2591 | |
---|
2592 | // checking container address alignment |
---|
2593 | if ( cont_paddr & 0x3F ) |
---|
2594 | { |
---|
2595 | _printf("\n[GIET ERROR] in _sys_nic_alloc() : " |
---|
2596 | "container address in cluster[%d,%d] not aligned\n", cx, cy); |
---|
2597 | |
---|
2598 | return SYSCALL_ADDRESS_NON_ALIGNED; |
---|
2599 | } |
---|
2600 | |
---|
2601 | #if GIET_DEBUG_NIC |
---|
2602 | _printf("\n[DEBUG NIC] _sys_nic_alloc() at cycle %d\n" |
---|
2603 | "thread %x allocates a container in cluster[%d,%d] / vaddr = %x / paddr = %l\n", |
---|
2604 | -get_proctime() , trdid , cx , cy , vaddr, cont_paddr ); |
---|
2605 | #endif |
---|
2606 | |
---|
2607 | // allocate the kernel container status |
---|
2608 | // it occupies 64 bytes but only last bit is useful (1 for full and 0 for empty) |
---|
2609 | vaddr = (unsigned int)_remote_malloc( 64, cx, cy ); |
---|
2610 | |
---|
2611 | if ( vaddr == 0 ) // not enough kernel heap memory in cluster[cx,cy] |
---|
2612 | { |
---|
2613 | _printf("\n[GIET_ERROR] in _sys_nic_alloc() : " |
---|
2614 | "not enough kernel heap in cluster[%d,%d]\n", cx, cy ); |
---|
2615 | |
---|
2616 | return SYSCALL_OUT_OF_KERNEL_HEAP_MEMORY; |
---|
2617 | } |
---|
2618 | |
---|
2619 | // compute status physical address |
---|
2620 | sts_paddr = _v2p_translate( vaddr , &flags ); |
---|
2621 | |
---|
2622 | // checking status address alignment |
---|
2623 | if ( sts_paddr & 0x3F ) |
---|
2624 | { |
---|
2625 | _printf("\n[GIET ERROR] in _sys_nic_alloc() : " |
---|
2626 | "status address in cluster[%d,%d] not aligned\n", cx, cy); |
---|
2627 | |
---|
2628 | return SYSCALL_ADDRESS_NON_ALIGNED; |
---|
2629 | } |
---|
2630 | |
---|
2631 | // initialize chbuf entry |
---|
2632 | // The buffer descriptor has the following structure: |
---|
2633 | // - the 26 LSB bits contain bits[6:31] of the buffer physical address |
---|
2634 | // - the 26 following bits contain bits[6:31] of the physical address where the |
---|
2635 | // buffer status is located |
---|
2636 | // - the 12 MSB bits contain the common address extension of the buffer and its |
---|
2637 | // status |
---|
2638 | if ( is_rx ) |
---|
2639 | _nic_ker_rx_chbuf[nic_channel].buf_desc[index] = |
---|
2640 | (unsigned long long) |
---|
2641 | ((sts_paddr & 0xFFFFFFFFULL) >> 6) + |
---|
2642 | (((cont_paddr & 0xFFFFFFFFFFFULL) >> 6) << 26); |
---|
2643 | else |
---|
2644 | _nic_ker_tx_chbuf[nic_channel].buf_desc[index] = |
---|
2645 | (unsigned long long) |
---|
2646 | ((sts_paddr & 0xFFFFFFC0ULL) >> 6) + |
---|
2647 | (((cont_paddr & 0xFFFFFFFFFC0ULL) >> 6) << 26); |
---|
2648 | |
---|
2649 | #if GIET_DEBUG_NIC |
---|
2650 | _printf("\n[DEBUG NIC] _sys_nic_alloc() at cycle %d\n" |
---|
2651 | "thread %x allocates a status in cluster[%d,%d] / vaddr = %x / paddr = %l\n" |
---|
2652 | " descriptor = %l\n", |
---|
2653 | _get_proctime() , trdid , cx , cy , vaddr, sts_paddr, |
---|
2654 | (unsigned long long)((sts_paddr & 0xFFFFFFFFULL) >> 6) + |
---|
2655 | (((cont_paddr & 0xFFFFFFFFFFFULL) >> 6) << 26) ); |
---|
2656 | #endif |
---|
2657 | } |
---|
2658 | } |
---|
2659 | |
---|
2660 | // complete kernel chbuf initialisation |
---|
2661 | if ( is_rx ) |
---|
2662 | { |
---|
2663 | _nic_ker_rx_chbuf[nic_channel].xmax = xmax; |
---|
2664 | _nic_ker_rx_chbuf[nic_channel].ymax = ymax; |
---|
2665 | } |
---|
2666 | else |
---|
2667 | { |
---|
2668 | _nic_ker_tx_chbuf[nic_channel].xmax = xmax; |
---|
2669 | _nic_ker_tx_chbuf[nic_channel].ymax = ymax; |
---|
2670 | } |
---|
2671 | |
---|
2672 | // compute the kernel chbuf descriptor physical address |
---|
2673 | if ( is_rx ) vaddr = (unsigned int)( &_nic_ker_rx_chbuf[nic_channel] ); |
---|
2674 | else vaddr = (unsigned int)( &_nic_ker_tx_chbuf[nic_channel] ); |
---|
2675 | |
---|
2676 | ker_chbuf_pbase = _v2p_translate( vaddr , &flags ); |
---|
2677 | |
---|
2678 | #if GIET_DEBUG_NIC |
---|
2679 | _printf("\n[DEBUG NIC] _sys_nic_alloc() at cycle %d\n" |
---|
2680 | "thread %x initialise kernel chbuf / vaddr = %x / paddr = %l\n", |
---|
2681 | _get_proctime() , trdid , vaddr , ker_chbuf_pbase ); |
---|
2682 | #endif |
---|
2683 | |
---|
2684 | // sync the kernel chbuf in L2 after write in L2 |
---|
2685 | _mmc_sync( ker_chbuf_pbase, sizeof( nic_chbuf_t ) ); |
---|
2686 | |
---|
2687 | /////////////////////////////////////////////////////////////// |
---|
2688 | // Step 3: compute the NIC chbuf descriptor physical address // |
---|
2689 | /////////////////////////////////////////////////////////////// |
---|
2690 | |
---|
2691 | unsigned int offset; |
---|
2692 | if ( is_rx ) offset = 0x4100; |
---|
2693 | else offset = 0x4110; |
---|
2694 | nic_chbuf_pbase = (((unsigned long long)((X_IO << Y_WIDTH) + Y_IO))<<32) | |
---|
2695 | (SEG_NIC_BASE + (nic_channel<<15) + offset); |
---|
2696 | |
---|
2697 | #if GIET_DEBUG_NIC |
---|
2698 | _printf("\n[DEBUG NIC] _sys_nic_alloc() at cycle %d\n" |
---|
2699 | "thread %x get NIC chbuf paddr = %l\n", |
---|
2700 | _get_proctime() , trdid , nic_chbuf_pbase ); |
---|
2701 | #endif |
---|
2702 | |
---|
2703 | //////////////////////////////////////////////////////////////////////////////// |
---|
2704 | // Step 4: initialize CMA registers defining the source & destination chbufs // |
---|
2705 | //////////////////////////////////////////////////////////////////////////////// |
---|
2706 | |
---|
2707 | if ( is_rx ) // NIC to kernel |
---|
2708 | { |
---|
2709 | _cma_set_register( cma_channel, CHBUF_SRC_DESC , (unsigned int)(nic_chbuf_pbase) ); |
---|
2710 | _cma_set_register( cma_channel, CHBUF_SRC_EXT , (unsigned int)(nic_chbuf_pbase>>32) ); |
---|
2711 | _cma_set_register( cma_channel, CHBUF_SRC_NBUFS, 2 ); |
---|
2712 | _cma_set_register( cma_channel, CHBUF_DST_DESC , (unsigned int)(ker_chbuf_pbase) ); |
---|
2713 | _cma_set_register( cma_channel, CHBUF_DST_EXT , (unsigned int)(ker_chbuf_pbase>>32) ); |
---|
2714 | _cma_set_register( cma_channel, CHBUF_DST_NBUFS, xmax * ymax ); |
---|
2715 | } |
---|
2716 | else // kernel to NIC |
---|
2717 | { |
---|
2718 | _cma_set_register( cma_channel, CHBUF_SRC_DESC , (unsigned int)(ker_chbuf_pbase) ); |
---|
2719 | _cma_set_register( cma_channel, CHBUF_SRC_EXT , (unsigned int)(ker_chbuf_pbase>>32) ); |
---|
2720 | _cma_set_register( cma_channel, CHBUF_SRC_NBUFS, xmax * ymax ); |
---|
2721 | _cma_set_register( cma_channel, CHBUF_DST_DESC , (unsigned int)(nic_chbuf_pbase) ); |
---|
2722 | _cma_set_register( cma_channel, CHBUF_DST_EXT , (unsigned int)(nic_chbuf_pbase>>32) ); |
---|
2723 | _cma_set_register( cma_channel, CHBUF_DST_NBUFS, 2 ); |
---|
2724 | } |
---|
2725 | |
---|
2726 | #if GIET_DEBUG_NIC |
---|
2727 | _printf("\n[DEBUG NIC] _sys_nic_alloc() at cycle %d\n" |
---|
2728 | "thread %x exit\n", |
---|
2729 | _get_proctime() , trdid ); |
---|
2730 | #endif |
---|
2731 | |
---|
2732 | return SYSCALL_OK; |
---|
2733 | } // end _sys_nic_alloc() |
---|
2734 | |
---|
2735 | |
---|
2736 | ////////////////////////////////////////// |
---|
2737 | int _sys_nic_release( unsigned int is_rx ) // NOTE: not a syscall: used by _ctx_kill_thread() |
---|
2738 | { |
---|
2739 | unsigned int trdid = _get_thread_trdid(); |
---|
2740 | |
---|
2741 | unsigned int nic_channel; |
---|
2742 | unsigned int cma_channel; |
---|
2743 | |
---|
2744 | // update the kernel tables |
---|
2745 | if ( is_rx ) |
---|
2746 | { |
---|
2747 | nic_channel = _get_context_slot( CTX_NIC_RX_ID ); |
---|
2748 | cma_channel = _get_context_slot( CTX_CMA_RX_ID ); |
---|
2749 | |
---|
2750 | if ( (nic_channel >= NB_NIC_CHANNELS) ) |
---|
2751 | { |
---|
2752 | _printf("\n[GIET ERROR] in _sys_nic_release() : " |
---|
2753 | "NIC_RX channel already released for thread %x\n", trdid ); |
---|
2754 | |
---|
2755 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2756 | } |
---|
2757 | if ( (cma_channel >= NB_CMA_CHANNELS) ) |
---|
2758 | { |
---|
2759 | _printf("\n[GIET ERROR] in _sys_nic_release() : " |
---|
2760 | "CMA_RX channel already released for thread %x\n", trdid ); |
---|
2761 | |
---|
2762 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2763 | } |
---|
2764 | |
---|
2765 | // atomically decrement the NIC and CMA channel allocators |
---|
2766 | _atomic_increment( &_nic_rx_channel_alloc[nic_channel] , -1 ); |
---|
2767 | _atomic_increment( &_cma_channel_alloc[cma_channel] , -1 ); |
---|
2768 | |
---|
2769 | // stop the NIC and CMA peripherals channels if no more users |
---|
2770 | if ( (_nic_rx_channel_alloc[nic_channel] == 0) && |
---|
2771 | (_cma_channel_alloc[cma_channel] == 0) ) _sys_nic_stop( 1 ); |
---|
2772 | |
---|
2773 | // reset the calling thread context slots |
---|
2774 | _set_context_slot( CTX_NIC_RX_ID , 0xFFFFFFFF ); |
---|
2775 | _set_context_slot( CTX_CMA_RX_ID , 0xFFFFFFFF ); |
---|
2776 | } |
---|
2777 | else |
---|
2778 | { |
---|
2779 | nic_channel = _get_context_slot( CTX_NIC_TX_ID ); |
---|
2780 | cma_channel = _get_context_slot( CTX_CMA_TX_ID ); |
---|
2781 | |
---|
2782 | if ( (nic_channel >= NB_NIC_CHANNELS) ) |
---|
2783 | { |
---|
2784 | _printf("\n[GIET ERROR] in _sys_nic_release() : " |
---|
2785 | "NIC_TX channel already released for thread %x\n", trdid ); |
---|
2786 | |
---|
2787 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2788 | } |
---|
2789 | if ( (cma_channel >= NB_CMA_CHANNELS) ) |
---|
2790 | { |
---|
2791 | _printf("\n[GIET ERROR] in _sys_nic_release() : " |
---|
2792 | "CMA_TX channel already released for thread %x\n", trdid ); |
---|
2793 | |
---|
2794 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2795 | } |
---|
2796 | |
---|
2797 | // atomically decrement the NIC and CMA channel allocators |
---|
2798 | _atomic_increment( &_nic_tx_channel_alloc[nic_channel] , -1 ); |
---|
2799 | _atomic_increment( &_cma_channel_alloc[cma_channel] , -1 ); |
---|
2800 | |
---|
2801 | // stop the NIC and CMA peripherals channels if no more users |
---|
2802 | if ( (_nic_tx_channel_alloc[nic_channel] == 0) && |
---|
2803 | (_cma_channel_alloc[cma_channel] == 0) ) _sys_nic_stop( 0 ); |
---|
2804 | |
---|
2805 | // reset the calling thread context slots |
---|
2806 | _set_context_slot( CTX_NIC_TX_ID , 0xFFFFFFFF ); |
---|
2807 | _set_context_slot( CTX_CMA_TX_ID , 0xFFFFFFFF ); |
---|
2808 | } |
---|
2809 | |
---|
2810 | return SYSCALL_OK; |
---|
2811 | } // end sys_nic_release() |
---|
2812 | |
---|
2813 | |
---|
2814 | //////////////////////////////////////// |
---|
2815 | int _sys_nic_start( unsigned int is_rx ) |
---|
2816 | { |
---|
2817 | unsigned int trdid = _get_context_slot( CTX_TRDID_ID ); |
---|
2818 | |
---|
2819 | unsigned int nic_channel; |
---|
2820 | unsigned int cma_channel; |
---|
2821 | |
---|
2822 | // get NIC channel index and CMA channel index from thread context |
---|
2823 | if ( is_rx ) |
---|
2824 | { |
---|
2825 | nic_channel = _get_context_slot( CTX_NIC_RX_ID ); |
---|
2826 | cma_channel = _get_context_slot( CTX_CMA_RX_ID ); |
---|
2827 | } |
---|
2828 | else |
---|
2829 | { |
---|
2830 | nic_channel = _get_context_slot( CTX_NIC_TX_ID ); |
---|
2831 | cma_channel = _get_context_slot( CTX_CMA_TX_ID ); |
---|
2832 | } |
---|
2833 | |
---|
2834 | #if GIET_DEBUG_NIC |
---|
2835 | _printf("\n[DEBUG NIC] _sys_nic_start() at cycle %d\n" |
---|
2836 | "thread %x enter / NIC channel = %d / CMA channel = %d\n", |
---|
2837 | _get_proctime() , trdid , nic_channel, cma_channel ); |
---|
2838 | #endif |
---|
2839 | |
---|
2840 | // check NIC and CMA channels index |
---|
2841 | if ( nic_channel >= NB_NIC_CHANNELS ) |
---|
2842 | { |
---|
2843 | _printf("\n[GIET_ERROR] in _sys_nic_start() : " |
---|
2844 | "illegal NIC channel for thread %x\n", trdid ); |
---|
2845 | return -1111; |
---|
2846 | } |
---|
2847 | if ( cma_channel >= NB_CMA_CHANNELS ) |
---|
2848 | { |
---|
2849 | _printf("\n[GIET_ERROR] in _sys_nic_start() : " |
---|
2850 | "illegal CMA channel for thread %x\n", trdid ); |
---|
2851 | return -1111; |
---|
2852 | } |
---|
2853 | |
---|
2854 | // start CMA transfer |
---|
2855 | _cma_set_register( cma_channel, CHBUF_BUF_SIZE , NIC_CONTAINER_SIZE ); |
---|
2856 | _cma_set_register( cma_channel, CHBUF_PERIOD , 0 ); // OUT_OF_ORDER |
---|
2857 | _cma_set_register( cma_channel, CHBUF_RUN , MODE_NORMAL ); |
---|
2858 | |
---|
2859 | // activates NIC channel |
---|
2860 | _nic_channel_start( nic_channel, is_rx, GIET_NIC_MAC4, GIET_NIC_MAC2 ); |
---|
2861 | |
---|
2862 | #if GIET_DEBUG_NIC |
---|
2863 | _printf("\n[DEBUG NIC] _sys_nic_start() at cycle %d\n" |
---|
2864 | "thread %d exit\n", |
---|
2865 | _get_proctime() , trdid ); |
---|
2866 | #endif |
---|
2867 | |
---|
2868 | return SYSCALL_OK; |
---|
2869 | } // end _sys_nic_start() |
---|
2870 | |
---|
2871 | |
---|
2872 | ////////////////////////////////////// |
---|
2873 | int _sys_nic_move( unsigned int is_rx, |
---|
2874 | void* buffer ) |
---|
2875 | { |
---|
2876 | unsigned int trdid = _get_context_slot( CTX_TRDID_ID ); |
---|
2877 | |
---|
2878 | unsigned int channel; |
---|
2879 | |
---|
2880 | #if GIET_DEBUG_NIC |
---|
2881 | _printf("\n[DEBUG NIC] _sys_nic_move() at cycle %d\n", |
---|
2882 | "thread %x enters\n", |
---|
2883 | _get_proctime() , trdid ); |
---|
2884 | #endif |
---|
2885 | |
---|
2886 | // get NIC channel index from thread context |
---|
2887 | if ( is_rx ) channel = _get_context_slot( CTX_NIC_RX_ID ); |
---|
2888 | else channel = _get_context_slot( CTX_NIC_TX_ID ); |
---|
2889 | |
---|
2890 | // check NIC channel index |
---|
2891 | if ( channel >= NB_NIC_CHANNELS ) |
---|
2892 | { |
---|
2893 | _printf("\n[GIET_ERROR] in _sys_nic_move() : " |
---|
2894 | "NIC channel non allocated for thread %x\n", trdid ); |
---|
2895 | |
---|
2896 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
2897 | } |
---|
2898 | |
---|
2899 | // get kernel chbuf virtual address |
---|
2900 | nic_chbuf_t* ker_chbuf; |
---|
2901 | if ( is_rx ) ker_chbuf = &_nic_ker_rx_chbuf[channel]; |
---|
2902 | else ker_chbuf = &_nic_ker_tx_chbuf[channel]; |
---|
2903 | |
---|
2904 | // get xmax / ymax parameters |
---|
2905 | unsigned int xmax = ker_chbuf->xmax; |
---|
2906 | unsigned int ymax = ker_chbuf->ymax; |
---|
2907 | |
---|
2908 | // get cluster coordinates for the processor running the calling thread |
---|
2909 | unsigned int procid = _get_procid(); |
---|
2910 | unsigned int cx = procid >> (Y_WIDTH + P_WIDTH); |
---|
2911 | unsigned int cy = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1); |
---|
2912 | |
---|
2913 | // check processor coordinates / (xmax,ymax) |
---|
2914 | if ( (cx >= xmax) || (cy >= ymax) ) |
---|
2915 | { |
---|
2916 | _printf("\n[GIET_ERROR] in _sys_nic_move(): " |
---|
2917 | "processor coordinates [%d,%d] larger than (xmax,ymax) = [%d,%d]\n", |
---|
2918 | cx , cy , xmax , ymax ); |
---|
2919 | |
---|
2920 | return SYSCALL_ILLEGAL_ARGUMENT; |
---|
2921 | } |
---|
2922 | |
---|
2923 | unsigned long long usr_buf_paddr; // user buffer physical address |
---|
2924 | unsigned long long ker_buf_paddr; // kernel buffer physical address |
---|
2925 | unsigned long long ker_sts_paddr; // kernel buffer status physical address |
---|
2926 | unsigned long long ker_buf_desc; // kernel buffer descriptor |
---|
2927 | unsigned int ker_sts; // kernel buffer status (full or empty) |
---|
2928 | unsigned int index; // kernel buffer index in chbuf |
---|
2929 | unsigned int flags; // for _v2P_translate |
---|
2930 | |
---|
2931 | // Compute user buffer physical address and check access rights |
---|
2932 | usr_buf_paddr = _v2p_translate( (unsigned int)buffer , &flags ); |
---|
2933 | |
---|
2934 | if ( (flags & PTE_U) == 0 ) |
---|
2935 | { |
---|
2936 | _printf("\n[GIET ERROR] in _sys_nic_tx_move() : " |
---|
2937 | "buffer address non user accessible\n"); |
---|
2938 | |
---|
2939 | return SYSCALL_ADDRESS_NON_USER_ACCESSIBLE; |
---|
2940 | } |
---|
2941 | |
---|
2942 | #if GIET_DEBUG_NIC |
---|
2943 | _printf("\n[DEBUG NIC] _sys_nic_move() at cycle %d\n" |
---|
2944 | "thread %x get user buffer : paddr = %l\n", |
---|
2945 | _get_proctime() , trdid , usr_buf_paddr ); |
---|
2946 | #endif |
---|
2947 | |
---|
2948 | // compute buffer index, buffer descriptor paddr and buffer status paddr |
---|
2949 | index = (ymax * cx) + cy; |
---|
2950 | ker_buf_desc = ker_chbuf->buf_desc[index]; |
---|
2951 | ker_sts_paddr = ((ker_buf_desc & 0xFFF0000000000000ULL) >> 20) + |
---|
2952 | ((ker_buf_desc & 0x3FFFFFFULL) << 6); |
---|
2953 | |
---|
2954 | #if GIET_DEBUG_NIC |
---|
2955 | _printf("\n[DEBUG NIC] _sys_nic_move() at cycle %d\n" |
---|
2956 | "thread %x get ker_buf_desc %d / paddr = %l\n", |
---|
2957 | _get_proctime(), trdid , index , ker_buf_desc ); |
---|
2958 | #endif |
---|
2959 | |
---|
2960 | // poll local kernel container status until success |
---|
2961 | while ( 1 ) |
---|
2962 | { |
---|
2963 | // inval buffer descriptor in L2 before read in L2 |
---|
2964 | _mmc_inval( ker_sts_paddr, 4 ); |
---|
2965 | ker_sts = _physical_read( ker_sts_paddr ); |
---|
2966 | |
---|
2967 | #if GIET_DEBUG_NIC |
---|
2968 | _printf("\n[DEBUG NIC] _sys_nic_move() at cycle %d\n" |
---|
2969 | "thread %x get status %d / paddr = %l / status = %x\n", |
---|
2970 | _get_proctime() , trdid , index , ker_sts_paddr, ker_sts ); |
---|
2971 | #endif |
---|
2972 | |
---|
2973 | // test buffer status and break if found |
---|
2974 | if ( ( is_rx != 0 ) && ( ker_sts == 0x1 ) ) break; |
---|
2975 | if ( ( is_rx == 0 ) && ( ker_sts == 0 ) ) break; |
---|
2976 | } |
---|
2977 | |
---|
2978 | // compute kernel buffer physical address |
---|
2979 | ker_buf_paddr = (ker_buf_desc & 0xFFFFFFFFFC000000ULL) >> 20; |
---|
2980 | |
---|
2981 | // move one container |
---|
2982 | if ( is_rx ) // RX transfer |
---|
2983 | { |
---|
2984 | // inval kernel buffer in L2 before read in L2 |
---|
2985 | _mmc_inval( ker_buf_paddr, NIC_CONTAINER_SIZE ); |
---|
2986 | |
---|
2987 | // transfer data from kernel buffer to user buffer |
---|
2988 | _physical_memcpy( usr_buf_paddr, |
---|
2989 | ker_buf_paddr, |
---|
2990 | NIC_CONTAINER_SIZE ); |
---|
2991 | #if GIET_DEBUG_NIC |
---|
2992 | _printf("\n[DEBUG NIC] _sys_nic_move() at cycle %d\n" |
---|
2993 | "thread %x transfer kernel buffer %l to user buffer %l\n", |
---|
2994 | _get_proctime() , trdid , ker_buf_paddr , usr_buf_paddr ); |
---|
2995 | #endif |
---|
2996 | |
---|
2997 | } |
---|
2998 | else // TX transfer |
---|
2999 | { |
---|
3000 | // transfer data from user buffer to kernel buffer |
---|
3001 | _physical_memcpy( ker_buf_paddr, |
---|
3002 | usr_buf_paddr, |
---|
3003 | NIC_CONTAINER_SIZE ); |
---|
3004 | |
---|
3005 | // sync kernel buffer in L2 after write in L2 |
---|
3006 | _mmc_sync( ker_buf_paddr, NIC_CONTAINER_SIZE ); |
---|
3007 | |
---|
3008 | #if GIET_DEBUG_NIC |
---|
3009 | _printf("\n[DEBUG NIC] _sys_nic_move() at cycle %d\n" |
---|
3010 | "thread %x transfer user buffer %l to kernel buffer %l\n", |
---|
3011 | _get_proctime() , trdid , usr_buf_paddr , ker_buf_paddr ); |
---|
3012 | #endif |
---|
3013 | |
---|
3014 | } |
---|
3015 | |
---|
3016 | // update kernel chbuf status |
---|
3017 | if ( is_rx ) _physical_write ( ker_sts_paddr, 0 ); |
---|
3018 | else _physical_write ( ker_sts_paddr, 0x1 ); |
---|
3019 | |
---|
3020 | // sync kernel chbuf in L2 after write in L2 |
---|
3021 | _mmc_sync( ker_sts_paddr, 4 ); |
---|
3022 | |
---|
3023 | #if GIET_DEBUG_NIC |
---|
3024 | _printf("\n[DEBUG NIC] _sys_nic_move() at cycle %d\n" |
---|
3025 | "thread %x exit\n", |
---|
3026 | _get_proctime() , trdid ); |
---|
3027 | #endif |
---|
3028 | |
---|
3029 | return SYSCALL_OK; |
---|
3030 | } // end _sys_nic_move() |
---|
3031 | |
---|
3032 | |
---|
3033 | /////////////////////////////////////// |
---|
3034 | int _sys_nic_stop( unsigned int is_rx ) |
---|
3035 | { |
---|
3036 | unsigned int trdid = _get_context_slot( CTX_TRDID_ID ); |
---|
3037 | |
---|
3038 | unsigned int nic_channel; |
---|
3039 | unsigned int cma_channel; |
---|
3040 | |
---|
3041 | // get NIC channel index and CMA channel index |
---|
3042 | if ( is_rx ) |
---|
3043 | { |
---|
3044 | nic_channel = _get_context_slot( CTX_NIC_RX_ID ); |
---|
3045 | cma_channel = _get_context_slot( CTX_CMA_RX_ID ); |
---|
3046 | } |
---|
3047 | else |
---|
3048 | { |
---|
3049 | nic_channel = _get_context_slot( CTX_NIC_TX_ID ); |
---|
3050 | cma_channel = _get_context_slot( CTX_CMA_TX_ID ); |
---|
3051 | } |
---|
3052 | |
---|
3053 | // check NIC and CMA channels index |
---|
3054 | if ( nic_channel >= NB_NIC_CHANNELS ) |
---|
3055 | { |
---|
3056 | _printf("\n[GIET_ERROR] in _sys_nic_stop() : " |
---|
3057 | "NIC channel non allocated for thread %x\n", trdid ); |
---|
3058 | |
---|
3059 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3060 | } |
---|
3061 | if ( cma_channel >= NB_CMA_CHANNELS ) |
---|
3062 | { |
---|
3063 | _printf("\n[GIET_ERROR] in _sys_nic_stop() : " |
---|
3064 | "CMA channel non allocated for thread %x\n", trdid ); |
---|
3065 | |
---|
3066 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3067 | } |
---|
3068 | |
---|
3069 | // desactivates the CMA channel |
---|
3070 | _cma_set_register( cma_channel, CHBUF_RUN , MODE_IDLE ); |
---|
3071 | |
---|
3072 | // wait until CMA channel IDLE |
---|
3073 | unsigned int volatile status; |
---|
3074 | do |
---|
3075 | { |
---|
3076 | status = _cma_get_register( cma_channel, CHBUF_STATUS ); |
---|
3077 | } |
---|
3078 | while ( status ); |
---|
3079 | |
---|
3080 | // desactivates the NIC channel |
---|
3081 | _nic_channel_stop( nic_channel, is_rx ); |
---|
3082 | |
---|
3083 | return SYSCALL_OK; |
---|
3084 | } // end _sys_nic_stop() |
---|
3085 | |
---|
3086 | //////////////////////////////////////// |
---|
3087 | int _sys_nic_clear( unsigned int is_rx ) |
---|
3088 | { |
---|
3089 | unsigned int trdid = _get_context_slot( CTX_TRDID_ID ); |
---|
3090 | |
---|
3091 | unsigned int channel; |
---|
3092 | |
---|
3093 | // get NIC channel |
---|
3094 | if ( is_rx ) channel = _get_context_slot( CTX_NIC_RX_ID ); |
---|
3095 | else channel = _get_context_slot( CTX_NIC_TX_ID ); |
---|
3096 | |
---|
3097 | if ( channel >= NB_NIC_CHANNELS ) |
---|
3098 | { |
---|
3099 | _printf("\n[GIET_ERROR] in _sys_nic_clear() : " |
---|
3100 | "NIC channel non allocated for thread %x\n", trdid ); |
---|
3101 | |
---|
3102 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3103 | } |
---|
3104 | |
---|
3105 | if ( is_rx ) |
---|
3106 | { |
---|
3107 | _nic_set_global_register( NIC_G_NPKT_RX_G2S_RECEIVED , 0 ); |
---|
3108 | _nic_set_global_register( NIC_G_NPKT_RX_DES_TOO_SMALL , 0 ); |
---|
3109 | _nic_set_global_register( NIC_G_NPKT_RX_DES_TOO_BIG , 0 ); |
---|
3110 | _nic_set_global_register( NIC_G_NPKT_RX_DES_MFIFO_FULL , 0 ); |
---|
3111 | _nic_set_global_register( NIC_G_NPKT_RX_DES_CRC_FAIL , 0 ); |
---|
3112 | _nic_set_global_register( NIC_G_NPKT_RX_DISPATCH_RECEIVED , 0 ); |
---|
3113 | _nic_set_global_register( NIC_G_NPKT_RX_DISPATCH_BROADCAST , 0 ); |
---|
3114 | _nic_set_global_register( NIC_G_NPKT_RX_DISPATCH_DST_FAIL , 0 ); |
---|
3115 | _nic_set_global_register( NIC_G_NPKT_RX_DISPATCH_CH_FULL , 0 ); |
---|
3116 | } |
---|
3117 | else |
---|
3118 | { |
---|
3119 | _nic_set_global_register( NIC_G_NPKT_TX_DISPATCH_RECEIVED , 0 ); |
---|
3120 | _nic_set_global_register( NIC_G_NPKT_TX_DISPATCH_TRANSMIT , 0 ); |
---|
3121 | _nic_set_global_register( NIC_G_NPKT_TX_DISPATCH_TOO_BIG , 0 ); |
---|
3122 | _nic_set_global_register( NIC_G_NPKT_TX_DISPATCH_TOO_SMALL , 0 ); |
---|
3123 | _nic_set_global_register( NIC_G_NPKT_TX_DISPATCH_SRC_FAIL , 0 ); |
---|
3124 | _nic_set_global_register( NIC_G_NPKT_TX_DISPATCH_BYPASS , 0 ); |
---|
3125 | _nic_set_global_register( NIC_G_NPKT_TX_DISPATCH_BROADCAST , 0 ); |
---|
3126 | } |
---|
3127 | return SYSCALL_OK; |
---|
3128 | } // en _sys_nic_clear() |
---|
3129 | |
---|
3130 | //////////////////////////////////////// |
---|
3131 | int _sys_nic_stats( unsigned int is_rx ) |
---|
3132 | { |
---|
3133 | unsigned int trdid = _get_context_slot( CTX_TRDID_ID ); |
---|
3134 | |
---|
3135 | unsigned int nic_channel; |
---|
3136 | |
---|
3137 | // get NIC channel |
---|
3138 | if ( is_rx ) nic_channel = _get_context_slot( CTX_NIC_RX_ID ); |
---|
3139 | else nic_channel = _get_context_slot( CTX_NIC_TX_ID ); |
---|
3140 | |
---|
3141 | if ( nic_channel >= NB_NIC_CHANNELS ) |
---|
3142 | { |
---|
3143 | _printf("\n[GIET_ERROR] in _sys_nic_stats() : " |
---|
3144 | "NIC channel non allocated for thread %x\n", trdid ); |
---|
3145 | |
---|
3146 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3147 | } |
---|
3148 | |
---|
3149 | if ( is_rx ) |
---|
3150 | { |
---|
3151 | unsigned int received = _nic_get_global_register( NIC_G_NPKT_RX_G2S_RECEIVED ); |
---|
3152 | unsigned int too_small = _nic_get_global_register( NIC_G_NPKT_RX_DES_TOO_SMALL ); |
---|
3153 | unsigned int too_big = _nic_get_global_register( NIC_G_NPKT_RX_DES_TOO_BIG ); |
---|
3154 | unsigned int fifo_full = _nic_get_global_register( NIC_G_NPKT_RX_DES_MFIFO_FULL ); |
---|
3155 | unsigned int crc_fail = _nic_get_global_register( NIC_G_NPKT_RX_DES_CRC_FAIL ); |
---|
3156 | unsigned int broadcast = _nic_get_global_register( NIC_G_NPKT_RX_DISPATCH_BROADCAST ); |
---|
3157 | unsigned int dst_fail = _nic_get_global_register( NIC_G_NPKT_RX_DISPATCH_DST_FAIL ); |
---|
3158 | unsigned int ch_full = _nic_get_global_register( NIC_G_NPKT_RX_DISPATCH_CH_FULL ); |
---|
3159 | |
---|
3160 | _printf("\n### Network Controller RX Statistics ###\n" |
---|
3161 | "- packets received : %d\n" |
---|
3162 | "- too small : %d\n" |
---|
3163 | "- too big : %d\n" |
---|
3164 | "- fifo full : %d\n" |
---|
3165 | "- crc fail : %d\n" |
---|
3166 | "- dst mac fail : %d\n" |
---|
3167 | "- channel full : %d\n" |
---|
3168 | "- broadcast : %d\n", |
---|
3169 | received, |
---|
3170 | too_small, |
---|
3171 | too_big, |
---|
3172 | fifo_full, |
---|
3173 | crc_fail, |
---|
3174 | dst_fail, |
---|
3175 | ch_full, |
---|
3176 | broadcast ); |
---|
3177 | } |
---|
3178 | else |
---|
3179 | { |
---|
3180 | unsigned int received = _nic_get_global_register( NIC_G_NPKT_TX_DISPATCH_RECEIVED ); |
---|
3181 | unsigned int too_big = _nic_get_global_register( NIC_G_NPKT_TX_DISPATCH_TOO_BIG ); |
---|
3182 | unsigned int too_small = _nic_get_global_register( NIC_G_NPKT_TX_DISPATCH_TOO_SMALL ); |
---|
3183 | unsigned int src_fail = _nic_get_global_register( NIC_G_NPKT_TX_DISPATCH_SRC_FAIL ); |
---|
3184 | unsigned int bypass = _nic_get_global_register( NIC_G_NPKT_TX_DISPATCH_BYPASS ); |
---|
3185 | unsigned int broadcast = _nic_get_global_register( NIC_G_NPKT_TX_DISPATCH_BROADCAST ); |
---|
3186 | |
---|
3187 | _printf("\n### Network Controller TX Statistics ###\n" |
---|
3188 | "- packets received : %d\n" |
---|
3189 | "- too small : %d\n" |
---|
3190 | "- too big : %d\n" |
---|
3191 | "- src mac fail : %d\n" |
---|
3192 | "- bypass : %d\n" |
---|
3193 | "- broadcast : %d\n", |
---|
3194 | received, |
---|
3195 | too_big, |
---|
3196 | too_small, |
---|
3197 | src_fail, |
---|
3198 | bypass, |
---|
3199 | broadcast ); |
---|
3200 | } |
---|
3201 | return SYSCALL_OK; |
---|
3202 | } // end _sys_nic_stats() |
---|
3203 | |
---|
3204 | #endif // if NB_NIC_CHANNELS && NB_CMA_CHANNELS |
---|
3205 | |
---|
3206 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
3207 | // FBF related syscall handlers |
---|
3208 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
3209 | |
---|
3210 | ////////////////////////////////////// |
---|
3211 | int _sys_fbf_size( unsigned int* width, |
---|
3212 | unsigned int* height ) |
---|
3213 | { |
---|
3214 | if ( USE_FBF == 0 ) |
---|
3215 | { |
---|
3216 | *width = 0; |
---|
3217 | *height = 0; |
---|
3218 | } |
---|
3219 | else |
---|
3220 | { |
---|
3221 | *width = FBUF_X_SIZE; |
---|
3222 | *height = FBUF_Y_SIZE; |
---|
3223 | } |
---|
3224 | |
---|
3225 | return SYSCALL_OK; |
---|
3226 | } |
---|
3227 | |
---|
3228 | //////////////////// |
---|
3229 | int _sys_fbf_alloc() |
---|
3230 | { |
---|
3231 | mapping_header_t *header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
3232 | mapping_vspace_t *vspace = _get_vspace_base(header); |
---|
3233 | mapping_thread_t *thread = _get_thread_base(header); |
---|
3234 | |
---|
3235 | // compute number of users |
---|
3236 | unsigned int vsid = _get_context_slot(CTX_VSID_ID); |
---|
3237 | unsigned int users = vspace[vsid].threads; |
---|
3238 | |
---|
3239 | // access FBF allocator |
---|
3240 | // register it in all threads contexts |
---|
3241 | if ( _atomic_test_and_set( &_fbf_alloc , users ) == 0 ) // FBF available |
---|
3242 | { |
---|
3243 | unsigned int min = vspace[vsid].thread_offset; |
---|
3244 | unsigned int max = min + users; |
---|
3245 | unsigned int tid; |
---|
3246 | for ( tid = min ; tid < max ; tid++ ) |
---|
3247 | { |
---|
3248 | unsigned int y_size = header->y_size; |
---|
3249 | unsigned int cid = thread[tid].clusterid; |
---|
3250 | unsigned int x = cid / y_size; |
---|
3251 | unsigned int y = cid % y_size; |
---|
3252 | unsigned int p = thread[tid].proclocid; |
---|
3253 | unsigned int ltid = thread[tid].ltid; |
---|
3254 | static_scheduler_t* psched = (static_scheduler_t*)_schedulers[x][y][p]; |
---|
3255 | _atomic_or( &psched->context[ltid].slot[CTX_LOCKS_ID] , LOCKS_MASK_FBF ); |
---|
3256 | } |
---|
3257 | return SYSCALL_OK; |
---|
3258 | } |
---|
3259 | else // FBF already allocated |
---|
3260 | { |
---|
3261 | return SYSCALL_SHARED_PERIPHERAL_BUSY; |
---|
3262 | } |
---|
3263 | } |
---|
3264 | |
---|
3265 | ////////////////////// |
---|
3266 | int _sys_fbf_release() // not a syscall: used by _ctx_kill_thread() |
---|
3267 | { |
---|
3268 | // get calling thread scheduler, ltid and trdid |
---|
3269 | static_scheduler_t* psched = _get_sched(); |
---|
3270 | unsigned int ltid = _get_thread_ltid(); |
---|
3271 | unsigned int trdid = _get_thread_trdid(); |
---|
3272 | |
---|
3273 | if ( (psched->context[ltid].slot[CTX_LOCKS_ID] & LOCKS_MASK_FBF) == 0 ) |
---|
3274 | { |
---|
3275 | _printf("\n[GIET ERROR] in _sys_fbf_release() : " |
---|
3276 | "FBF not allocated to thread %x\n", trdid ); |
---|
3277 | |
---|
3278 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3279 | } |
---|
3280 | |
---|
3281 | // decrement FBF allocator |
---|
3282 | // reset the calling thread context |
---|
3283 | _atomic_increment( &_fbf_alloc , 0xFFFFFFFF ); |
---|
3284 | _atomic_and( &psched->context[ltid].slot[CTX_LOCKS_ID] , ~LOCKS_MASK_FBF ); |
---|
3285 | |
---|
3286 | return SYSCALL_OK; |
---|
3287 | } |
---|
3288 | |
---|
3289 | ///////////////////////////////////////////// |
---|
3290 | int _sys_fbf_sync_write( unsigned int offset, |
---|
3291 | void* buffer, |
---|
3292 | unsigned int length ) |
---|
3293 | { |
---|
3294 | // get calling thread scheduler, ltid and trdid |
---|
3295 | static_scheduler_t* psched = _get_sched(); |
---|
3296 | unsigned int ltid = _get_thread_ltid(); |
---|
3297 | unsigned int trdid = _get_thread_trdid(); |
---|
3298 | |
---|
3299 | if ( (psched->context[ltid].slot[CTX_LOCKS_ID] & LOCKS_MASK_FBF) == 0 ) |
---|
3300 | { |
---|
3301 | _printf("\n[GIET ERROR] in _sys_fbf_release() : " |
---|
3302 | "FBF not allocated to thread %x\n", trdid ); |
---|
3303 | |
---|
3304 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3305 | } |
---|
3306 | |
---|
3307 | char* fbf_address = (char *)SEG_FBF_BASE + offset; |
---|
3308 | memcpy( fbf_address, buffer, length); |
---|
3309 | |
---|
3310 | return SYSCALL_OK; |
---|
3311 | } |
---|
3312 | |
---|
3313 | ///////////////////////////////////////////// |
---|
3314 | int _sys_fbf_sync_read( unsigned int offset, |
---|
3315 | void* buffer, |
---|
3316 | unsigned int length ) |
---|
3317 | { |
---|
3318 | // get calling thread scheduler, ltid and trdid |
---|
3319 | static_scheduler_t* psched = _get_sched(); |
---|
3320 | unsigned int ltid = _get_thread_ltid(); |
---|
3321 | unsigned int trdid = _get_thread_trdid(); |
---|
3322 | |
---|
3323 | if ( (psched->context[ltid].slot[CTX_LOCKS_ID] & LOCKS_MASK_FBF) == 0 ) |
---|
3324 | { |
---|
3325 | _printf("\n[GIET ERROR] in _sys_fbf_release() : " |
---|
3326 | "FBF not allocated to thread %x\n", trdid ); |
---|
3327 | |
---|
3328 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3329 | } |
---|
3330 | |
---|
3331 | char* fbf_address = (char *)SEG_FBF_BASE + offset; |
---|
3332 | memcpy( buffer, fbf_address, length); |
---|
3333 | |
---|
3334 | return SYSCALL_OK; |
---|
3335 | } |
---|
3336 | |
---|
3337 | #if NB_CMA_CHANNELS |
---|
3338 | |
---|
3339 | //////////////////////////////////////////// |
---|
3340 | int _sys_fbf_cma_alloc( unsigned int nbufs ) |
---|
3341 | { |
---|
3342 | // compute trdid and vsid for the calling thread |
---|
3343 | unsigned int vsid = _get_context_slot( CTX_VSID_ID ); |
---|
3344 | unsigned int trdid = _get_thread_trdid(); |
---|
3345 | |
---|
3346 | if ( _get_context_slot( CTX_CMA_FB_ID ) < NB_CMA_CHANNELS ) |
---|
3347 | { |
---|
3348 | _printf("\n[GIET ERROR] in _sys_fbf_cma_alloc() : " |
---|
3349 | "CMA channel already allocated for thread %x\n", trdid ); |
---|
3350 | return SYSCALL_CHANNEL_ALREADY_ALLOCATED; |
---|
3351 | } |
---|
3352 | |
---|
3353 | // compute number of threads in vspace from mapping |
---|
3354 | mapping_header_t *header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
3355 | mapping_vspace_t *vspace = _get_vspace_base(header); |
---|
3356 | mapping_thread_t *thread = _get_thread_base(header); |
---|
3357 | unsigned int first = vspace[vsid].thread_offset; |
---|
3358 | unsigned int threads = vspace[vsid].threads; |
---|
3359 | |
---|
3360 | // get a CMA channel |
---|
3361 | unsigned int channel; |
---|
3362 | for ( channel = 0 ; channel < NB_CMA_CHANNELS ; channel++ ) |
---|
3363 | { |
---|
3364 | unsigned int* palloc = &_cma_channel_alloc[channel]; |
---|
3365 | if ( _atomic_test_and_set( palloc , threads ) == 0 ) break; |
---|
3366 | } |
---|
3367 | |
---|
3368 | if ( channel >= NB_CMA_CHANNELS ) |
---|
3369 | { |
---|
3370 | _printf("\n[GIET ERROR] in _sys_fbf_cma_alloc() : no CMA channel available\n"); |
---|
3371 | return SYSCALL_NO_CHANNEL_AVAILABLE; |
---|
3372 | } |
---|
3373 | |
---|
3374 | // check nbufs argument |
---|
3375 | if ( nbufs > 256 ) |
---|
3376 | { |
---|
3377 | _printf("\n[GIET ERROR] in _sys_fbf_cma_alloc() : nbufs larger than 256\n"); |
---|
3378 | return SYSCALL_ILLEGAL_ARGUMENT; |
---|
3379 | } |
---|
3380 | |
---|
3381 | // loop on all threads to register channel in thread contexts |
---|
3382 | unsigned int tid; |
---|
3383 | for ( tid = first ; tid < (first + threads) ; tid++ ) |
---|
3384 | { |
---|
3385 | unsigned int y_size = header->y_size; |
---|
3386 | unsigned int cid = thread[tid].clusterid; |
---|
3387 | unsigned int x = cid / y_size; |
---|
3388 | unsigned int y = cid % y_size; |
---|
3389 | unsigned int p = thread[tid].proclocid; |
---|
3390 | unsigned int ltid = thread[tid].ltid; |
---|
3391 | static_scheduler_t* psched = (static_scheduler_t*)_schedulers[x][y][p]; |
---|
3392 | psched->context[ltid].slot[CTX_CMA_FB_ID] = channel; |
---|
3393 | } |
---|
3394 | |
---|
3395 | unsigned int vaddr; |
---|
3396 | unsigned int flags; |
---|
3397 | |
---|
3398 | // compute frame buffer physical addresses |
---|
3399 | vaddr = (unsigned int)SEG_FBF_BASE; |
---|
3400 | unsigned long long fbf_buf_paddr = _v2p_translate( vaddr , &flags ); |
---|
3401 | |
---|
3402 | // initialize the FBF chbuf |
---|
3403 | // we don't register a status address in the fbf_desc, because |
---|
3404 | // the CMA does not test the status for the frame buffer (no synchro) |
---|
3405 | _fbf_ker_chbuf.nbufs = nbufs; |
---|
3406 | _fbf_ker_chbuf.fbf_desc = (((fbf_buf_paddr & 0xFFFFFFFFFFFULL) >> 6 ) << 26); |
---|
3407 | |
---|
3408 | // register FBF chbuf physical address |
---|
3409 | vaddr = (unsigned int)(&_fbf_ker_chbuf); |
---|
3410 | _fbf_chbuf_paddr = _v2p_translate( vaddr , &flags ); |
---|
3411 | |
---|
3412 | #if GIET_DEBUG_FBF_CMA |
---|
3413 | _printf("\n[FBF_CMA DEBUG] _sys_fbf_cma_alloc()\n" |
---|
3414 | " - channel = %d\n" |
---|
3415 | " - vaddr(_ker_fbf_chbuf) = %x\n" |
---|
3416 | " - paddr(_ker_fbf_chbuf) = %l\n" |
---|
3417 | " - nbufs = %d\n" |
---|
3418 | " - fbf_desc = %l\n", |
---|
3419 | channel , vaddr , _fbf_chbuf_paddr , nbufs , _fbf_ker_chbuf.fbf_desc ); |
---|
3420 | #endif |
---|
3421 | |
---|
3422 | return SYSCALL_OK; |
---|
3423 | } // end sys_fbf_cma_alloc() |
---|
3424 | |
---|
3425 | ////////////////////////// |
---|
3426 | int _sys_fbf_cma_release() // Not a syscall : used by _ctx_kill_thread() |
---|
3427 | { |
---|
3428 | unsigned int channel = _get_context_slot( CTX_CMA_FB_ID ); |
---|
3429 | unsigned int trdid = _get_thread_trdid(); |
---|
3430 | |
---|
3431 | if ( channel >= NB_CMA_CHANNELS ) |
---|
3432 | { |
---|
3433 | _printf("\n[GIET_ERROR] in _sys_fbf_cma_release() : " |
---|
3434 | "CMA_FB channel already released for thread %x\n", trdid ); |
---|
3435 | |
---|
3436 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3437 | } |
---|
3438 | |
---|
3439 | if ( _cma_channel_alloc[channel] == 1 ) // the calling thread is the last user |
---|
3440 | { |
---|
3441 | // stop the CMA transfer |
---|
3442 | _sys_fbf_cma_stop(); |
---|
3443 | |
---|
3444 | // reset the CMA channel allocator |
---|
3445 | _cma_channel_alloc[channel] = 0; |
---|
3446 | } |
---|
3447 | else // not the last user |
---|
3448 | { |
---|
3449 | // atomically decrement the CMA channel allocator |
---|
3450 | _atomic_increment( &_cma_channel_alloc[channel] , -1 ); |
---|
3451 | } |
---|
3452 | |
---|
3453 | // reset CTX_CMA_FB_ID slot in calling thread context |
---|
3454 | _set_context_slot( CTX_CMA_FB_ID, 0xFFFFFFFF ); |
---|
3455 | |
---|
3456 | return SYSCALL_OK; |
---|
3457 | } // end _sys_fbf_cma_release() |
---|
3458 | |
---|
3459 | /////////////////////////////////////////////////// |
---|
3460 | int _sys_fbf_cma_init_buf( unsigned int index, |
---|
3461 | void* buf_vaddr, |
---|
3462 | void* sts_vaddr ) |
---|
3463 | { |
---|
3464 | unsigned int vaddr; // virtual address |
---|
3465 | unsigned int flags; // for _v2p_translate() |
---|
3466 | unsigned long long buf_paddr; // user buffer physical address |
---|
3467 | unsigned long long sts_paddr; // user status physical address |
---|
3468 | |
---|
3469 | // get calling thread scheduler, ltid and trdid |
---|
3470 | static_scheduler_t* psched = _get_sched(); |
---|
3471 | unsigned int ltid = _get_thread_ltid(); |
---|
3472 | unsigned int trdid = _get_thread_trdid(); |
---|
3473 | |
---|
3474 | // check FBF allocated |
---|
3475 | if ( (psched->context[ltid].slot[CTX_LOCKS_ID] & LOCKS_MASK_FBF) == 0 ) |
---|
3476 | { |
---|
3477 | _printf("\n[GIET ERROR] in _sys_fbf_cma_init_buf() : " |
---|
3478 | "FBF not allocated to thread %x\n", trdid ); |
---|
3479 | |
---|
3480 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3481 | } |
---|
3482 | |
---|
3483 | // get channel index |
---|
3484 | unsigned int channel = _get_context_slot( CTX_CMA_FB_ID ); |
---|
3485 | |
---|
3486 | if ( channel >= NB_CMA_CHANNELS ) |
---|
3487 | { |
---|
3488 | _printf("\n[GIET ERROR] in _sys_fbf_cma_init_buf() : " |
---|
3489 | "CMA channel non allocated to thread %x\n", trdid ); |
---|
3490 | |
---|
3491 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3492 | } |
---|
3493 | |
---|
3494 | #if GIET_DEBUG_FBF_CMA |
---|
3495 | _printf("\n[FBF_CMA DEBUG] _sys_fbf_cma_init_buf()\n" |
---|
3496 | " - channel = %d / index = %d\n" |
---|
3497 | " - buf vaddr = %x\n" |
---|
3498 | " - sts vaddr = %x\n", |
---|
3499 | channel, index, |
---|
3500 | (unsigned int)buf_vaddr, |
---|
3501 | (unsigned int)sts_vaddr ); |
---|
3502 | #endif |
---|
3503 | |
---|
3504 | // checking index argument |
---|
3505 | if ( index >= _fbf_ker_chbuf.nbufs ) |
---|
3506 | { |
---|
3507 | _printf("\n[GIET ERROR] in _sys_fbf_cma_init_buf() : " |
---|
3508 | "user buffer index too large %x\n", trdid ); |
---|
3509 | |
---|
3510 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3511 | } |
---|
3512 | |
---|
3513 | // checking user buffer and status addresses alignment |
---|
3514 | if ( ((unsigned int)buf_vaddr & 0x3F) || ((unsigned int)sts_vaddr & 0x3F) ) |
---|
3515 | { |
---|
3516 | _printf("\n[GIET ERROR] in _sys_fbf_cma_init_buf() : " |
---|
3517 | "user buffer or status not aligned for thread %x\n", trdid ); |
---|
3518 | |
---|
3519 | return SYSCALL_ADDRESS_NON_ALIGNED; |
---|
3520 | } |
---|
3521 | |
---|
3522 | // Compute user buffer and status physical addresses |
---|
3523 | vaddr = (unsigned int)buf_vaddr; |
---|
3524 | buf_paddr = _v2p_translate( vaddr , &flags ); |
---|
3525 | if ((flags & PTE_U) == 0) |
---|
3526 | { |
---|
3527 | _printf("\n[GIET ERROR] in _sys_fbf_cma_init_buf() : " |
---|
3528 | "buffer not in user space for thread %x\n", trdid ); |
---|
3529 | |
---|
3530 | return SYSCALL_ADDRESS_NON_USER_ACCESSIBLE; |
---|
3531 | } |
---|
3532 | |
---|
3533 | vaddr = (unsigned int)sts_vaddr; |
---|
3534 | sts_paddr = _v2p_translate( vaddr , &flags ); |
---|
3535 | if ((flags & PTE_U) == 0) |
---|
3536 | { |
---|
3537 | _printf("\n[GIET ERROR] in _sys_fbf_cma_init_buf() : " |
---|
3538 | "status not in user space for thread %x\n", trdid); |
---|
3539 | |
---|
3540 | return SYSCALL_ADDRESS_NON_USER_ACCESSIBLE; |
---|
3541 | } |
---|
3542 | |
---|
3543 | // check user buffer and user status in same cluster |
---|
3544 | if ( (buf_paddr & 0xFF00000000ULL) != (sts_paddr & 0xFF00000000ULL) ) |
---|
3545 | { |
---|
3546 | _printf("\n[GIET ERROR] in _sys_fbf_cma_init_buf() : " |
---|
3547 | "user status and buffer not in same cluster for thread %x\n", trdid); |
---|
3548 | |
---|
3549 | return SYSCALL_ADDRESS_NON_USER_ACCESSIBLE; |
---|
3550 | } |
---|
3551 | |
---|
3552 | // initialize _fbf_ker_chbuf.usr_desc[index] |
---|
3553 | _fbf_ker_chbuf.usr_desc[index] = ((sts_paddr & 0xFFFFFFFFULL) >> 6) + |
---|
3554 | (((buf_paddr & 0xFFFFFFFFFFULL) >> 6 ) << 26); |
---|
3555 | |
---|
3556 | #if GIET_DEBUG_FBF_CMA |
---|
3557 | _printf(" - buf paddr = %l\n" |
---|
3558 | " - sts paddr = %l\n" |
---|
3559 | " - usr_desc[%d] = %l\n", |
---|
3560 | buf_paddr, |
---|
3561 | sts_paddr, |
---|
3562 | index , _fbf_ker_chbuf.usr_desc[index] ); |
---|
3563 | #endif |
---|
3564 | |
---|
3565 | return SYSCALL_OK; |
---|
3566 | |
---|
3567 | } // end sys_fbf_cma_init_buf() |
---|
3568 | |
---|
3569 | //////////////////////// |
---|
3570 | int _sys_fbf_cma_start() |
---|
3571 | { |
---|
3572 | // get calling thread scheduler, ltid and trdid |
---|
3573 | static_scheduler_t* psched = _get_sched(); |
---|
3574 | unsigned int ltid = _get_thread_ltid(); |
---|
3575 | unsigned int trdid = _get_thread_trdid(); |
---|
3576 | |
---|
3577 | // check FBF allocated |
---|
3578 | if ( (psched->context[ltid].slot[CTX_LOCKS_ID] & LOCKS_MASK_FBF) == 0 ) |
---|
3579 | { |
---|
3580 | _printf("\n[GIET ERROR] in _sys_fbf_release() : " |
---|
3581 | "FBF not allocated to thread %x\n", trdid ); |
---|
3582 | |
---|
3583 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3584 | } |
---|
3585 | |
---|
3586 | // get CMA channel index |
---|
3587 | unsigned int channel = _get_context_slot( CTX_CMA_FB_ID ); |
---|
3588 | |
---|
3589 | if ( channel >= NB_CMA_CHANNELS ) |
---|
3590 | { |
---|
3591 | _printf("\n[GIET ERROR] in _fbf_cma_start() : " |
---|
3592 | "CMA channel non allocated\n"); |
---|
3593 | |
---|
3594 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3595 | } |
---|
3596 | |
---|
3597 | // check buffers initialization |
---|
3598 | if ( _fbf_ker_chbuf.nbufs == 0 ) |
---|
3599 | { |
---|
3600 | _printf("\n[GIET ERROR] in _sys_fbf_cma_start(): " |
---|
3601 | "FBF chbuf not initialized for thread %x\n", trdid ); |
---|
3602 | |
---|
3603 | return SYSCALL_MISSING_INITIALISATION; |
---|
3604 | } |
---|
3605 | |
---|
3606 | // synchronize FBF chbuf that will be read by CMA peripheral |
---|
3607 | if ( USE_IOB ) |
---|
3608 | { |
---|
3609 | // SYNC request for fbf_chbuf descriptor |
---|
3610 | _mmc_sync( _fbf_chbuf_paddr , sizeof( fbf_chbuf_t ) ); |
---|
3611 | } |
---|
3612 | |
---|
3613 | // start CMA transfer |
---|
3614 | unsigned long long paddr = _fbf_chbuf_paddr; |
---|
3615 | unsigned int dst_chbuf_paddr_lsb = (unsigned int)(paddr & 0xFFFFFFFF); |
---|
3616 | unsigned int dst_chbuf_paddr_ext = (unsigned int)(paddr >> 32); |
---|
3617 | unsigned int src_chbuf_paddr_lsb = dst_chbuf_paddr_lsb + 8; |
---|
3618 | unsigned int src_chbuf_paddr_ext = dst_chbuf_paddr_ext; |
---|
3619 | |
---|
3620 | #if GIET_DEBUG_FBF_CMA |
---|
3621 | _printf("\n[FBF_CMA DEBUG] _sys_fbf_cma_start()\n" |
---|
3622 | " - src_chbuf_paddr_lsb = %x\n" |
---|
3623 | " - src_chbuf_paddr_ext = %x\n" |
---|
3624 | " - src_chbuf_nbufs = %d\n" |
---|
3625 | " - dst_chbuf_paddr_lsb = %x\n" |
---|
3626 | " - dst_chbuf_paddr_ext = %x\n" |
---|
3627 | " - dst_chbuf_nbufs = 1 \n" |
---|
3628 | " - buffer_size = %d\n", |
---|
3629 | src_chbuf_paddr_lsb, |
---|
3630 | src_chbuf_paddr_ext, |
---|
3631 | _fbf_ker_chbuf.nbufs, |
---|
3632 | dst_chbuf_paddr_lsb, |
---|
3633 | dst_chbuf_paddr_ext, |
---|
3634 | FBUF_X_SIZE * FBUF_Y_SIZE ); |
---|
3635 | #endif |
---|
3636 | |
---|
3637 | _cma_set_register( channel, CHBUF_SRC_DESC , src_chbuf_paddr_lsb ); |
---|
3638 | _cma_set_register( channel, CHBUF_SRC_EXT , src_chbuf_paddr_ext ); |
---|
3639 | _cma_set_register( channel, CHBUF_SRC_NBUFS, _fbf_ker_chbuf.nbufs ); |
---|
3640 | _cma_set_register( channel, CHBUF_DST_DESC , dst_chbuf_paddr_lsb ); |
---|
3641 | _cma_set_register( channel, CHBUF_DST_EXT , dst_chbuf_paddr_ext ); |
---|
3642 | _cma_set_register( channel, CHBUF_DST_NBUFS, 1 ); |
---|
3643 | _cma_set_register( channel, CHBUF_BUF_SIZE , FBUF_X_SIZE*FBUF_Y_SIZE ); |
---|
3644 | _cma_set_register( channel, CHBUF_PERIOD , 1000 ); |
---|
3645 | _cma_set_register( channel, CHBUF_RUN , MODE_NO_DST_SYNC ); |
---|
3646 | |
---|
3647 | return SYSCALL_OK; |
---|
3648 | |
---|
3649 | } // end _sys_fbf_cma_start() |
---|
3650 | |
---|
3651 | //////////////////////////////////////////// |
---|
3652 | int _sys_fbf_cma_check( unsigned int index ) |
---|
3653 | { |
---|
3654 | // get calling thread scheduler, ltid and trdid |
---|
3655 | static_scheduler_t* psched = _get_sched(); |
---|
3656 | unsigned int ltid = _get_thread_ltid(); |
---|
3657 | unsigned int trdid = _get_thread_trdid(); |
---|
3658 | |
---|
3659 | // check FBF allocated |
---|
3660 | if ( (psched->context[ltid].slot[CTX_LOCKS_ID] & LOCKS_MASK_FBF) == 0 ) |
---|
3661 | { |
---|
3662 | _printf("\n[GIET ERROR] in _sys_fbf_cma_check() : " |
---|
3663 | "FBF not allocated to thread %x\n", trdid ); |
---|
3664 | |
---|
3665 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3666 | } |
---|
3667 | |
---|
3668 | // get channel index |
---|
3669 | unsigned int channel = _get_context_slot( CTX_CMA_FB_ID ); |
---|
3670 | |
---|
3671 | if ( channel >= NB_CMA_CHANNELS ) |
---|
3672 | { |
---|
3673 | _printf("\n[GIET ERROR] in _sys_fbf_cma_check() : " |
---|
3674 | "CMA channel non allocated to thread %x\n", trdid ); |
---|
3675 | |
---|
3676 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3677 | } |
---|
3678 | |
---|
3679 | // check buffer index |
---|
3680 | if ( index >= _fbf_ker_chbuf.nbufs ) |
---|
3681 | { |
---|
3682 | _printf("\n[GIET ERROR] in _sys_fbf_cma_check() : " |
---|
3683 | "buffer index too large for thread %x\n", trdid ); |
---|
3684 | |
---|
3685 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3686 | } |
---|
3687 | |
---|
3688 | // compute user buffer status physical addresses |
---|
3689 | unsigned long long usr_sts_paddr; |
---|
3690 | fbf_chbuf_t* pdesc = &_fbf_ker_chbuf; |
---|
3691 | usr_sts_paddr = ((pdesc->usr_desc[index] & 0xFFF0000000000000ULL) >> 20) + |
---|
3692 | ((pdesc->usr_desc[index] & 0x3FFFFFFULL) << 6); |
---|
3693 | |
---|
3694 | #if GIET_DEBUG_FBF_CMA |
---|
3695 | _printf("\n[FBF_CMA DEBUG] enters _sys_fbf_cma_check()\n" |
---|
3696 | " - cma channel = %d\n" |
---|
3697 | " - buffer index = %d\n" |
---|
3698 | " - usr_desc value = %l\n" |
---|
3699 | " - fbf_desc value = %l\n" |
---|
3700 | " - usr status paddr = %l\n", |
---|
3701 | channel, |
---|
3702 | index, |
---|
3703 | _fbf_ker_chbuf.usr_desc[index], |
---|
3704 | _fbf_ker_chbuf.fbf_desc, |
---|
3705 | usr_sts_paddr ); |
---|
3706 | #endif |
---|
3707 | |
---|
3708 | // waiting user buffer released by the CMA component) |
---|
3709 | unsigned int full; |
---|
3710 | do |
---|
3711 | { |
---|
3712 | // INVAL L2 cache copy of user buffer status |
---|
3713 | // because it is modified in RAM by the CMA component |
---|
3714 | _mmc_inval( usr_sts_paddr , 4 ); |
---|
3715 | |
---|
3716 | full = _physical_read( usr_sts_paddr ); |
---|
3717 | } |
---|
3718 | while ( full ); |
---|
3719 | |
---|
3720 | return SYSCALL_OK; |
---|
3721 | |
---|
3722 | } // end _sys_fbf_cma_check() |
---|
3723 | |
---|
3724 | ////////////////////////////////////////////// |
---|
3725 | int _sys_fbf_cma_display( unsigned int index ) |
---|
3726 | { |
---|
3727 | // get calling thread scheduler, ltid and trdid |
---|
3728 | static_scheduler_t* psched = _get_sched(); |
---|
3729 | unsigned int ltid = _get_thread_ltid(); |
---|
3730 | unsigned int trdid = _get_thread_trdid(); |
---|
3731 | |
---|
3732 | // check FBF allocated |
---|
3733 | if ( (psched->context[ltid].slot[CTX_LOCKS_ID] & LOCKS_MASK_FBF) == 0 ) |
---|
3734 | { |
---|
3735 | _printf("\n[GIET ERROR] in _sys_fbf_cma_display() : " |
---|
3736 | "FBF not allocated to thread %x\n", trdid ); |
---|
3737 | |
---|
3738 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3739 | } |
---|
3740 | |
---|
3741 | // get channel index |
---|
3742 | unsigned int channel = _get_context_slot( CTX_CMA_FB_ID ); |
---|
3743 | |
---|
3744 | if ( channel >= NB_CMA_CHANNELS ) |
---|
3745 | { |
---|
3746 | _printf("\n[GIET ERROR] in _sys_fbf_cma_display() : " |
---|
3747 | "CMA channel non allocated to thread %x\n", trdid ); |
---|
3748 | |
---|
3749 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3750 | } |
---|
3751 | |
---|
3752 | // check buffer index |
---|
3753 | if ( index >= _fbf_ker_chbuf.nbufs ) |
---|
3754 | { |
---|
3755 | _printf("\n[GIET ERROR] in _sys_fbf_cma_display() : " |
---|
3756 | "buffer index too large for thread %x\n", trdid ); |
---|
3757 | |
---|
3758 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3759 | } |
---|
3760 | |
---|
3761 | // compute user buffer and status physical addresses |
---|
3762 | unsigned long long usr_sts_paddr; |
---|
3763 | unsigned long long usr_buf_paddr; |
---|
3764 | |
---|
3765 | fbf_chbuf_t* pdesc = &_fbf_ker_chbuf; |
---|
3766 | |
---|
3767 | usr_sts_paddr = ((pdesc->usr_desc[index] & 0xFFF0000000000000ULL) >> 20) + |
---|
3768 | ((pdesc->usr_desc[index] & 0x3FFFFFFULL) << 6); |
---|
3769 | |
---|
3770 | usr_buf_paddr = ((pdesc->usr_desc[index] & 0xFFFFFFFFFC000000ULL) >> 20); |
---|
3771 | |
---|
3772 | #if GIET_DEBUG_FBF_CMA |
---|
3773 | _printf("\n[FBF_CMA DEBUG] enters _sys_fbf_cma_display()\n" |
---|
3774 | " - cma channel = %d\n" |
---|
3775 | " - buffer index = %d\n" |
---|
3776 | " - usr buffer paddr = %l\n" |
---|
3777 | " - usr status paddr = %l\n", |
---|
3778 | channel, |
---|
3779 | index, |
---|
3780 | usr_buf_paddr, |
---|
3781 | usr_sts_paddr ); |
---|
3782 | #endif |
---|
3783 | |
---|
3784 | // SYNC request, because this buffer will be read from XRAM by the CMA component |
---|
3785 | _mmc_sync( usr_buf_paddr , FBUF_X_SIZE * FBUF_Y_SIZE ); |
---|
3786 | |
---|
3787 | // set user buffer status |
---|
3788 | _physical_write( usr_sts_paddr, 0x1 ); |
---|
3789 | |
---|
3790 | // SYNC request, because this status will be read from XRAM by the CMA component |
---|
3791 | _mmc_sync( usr_sts_paddr, 4 ); |
---|
3792 | |
---|
3793 | return SYSCALL_OK; |
---|
3794 | |
---|
3795 | } // end _sys_fbf_cma_display() |
---|
3796 | |
---|
3797 | /////////////////////// |
---|
3798 | int _sys_fbf_cma_stop() |
---|
3799 | { |
---|
3800 | // get channel index |
---|
3801 | unsigned int channel = _get_context_slot( CTX_CMA_FB_ID ); |
---|
3802 | |
---|
3803 | if ( channel >= NB_CMA_CHANNELS ) |
---|
3804 | { |
---|
3805 | _printf("\n[GIET ERROR] in _sys_fbf_cma_stop() : CMA channel non allocated\n"); |
---|
3806 | |
---|
3807 | return SYSCALL_CHANNEL_NON_ALLOCATED; |
---|
3808 | } |
---|
3809 | |
---|
3810 | // Desactivate CMA channel |
---|
3811 | _cma_set_register( channel, CHBUF_RUN, MODE_IDLE ); |
---|
3812 | |
---|
3813 | return SYSCALL_OK; |
---|
3814 | |
---|
3815 | } // end _sys_fbf_cma_stop() |
---|
3816 | |
---|
3817 | #endif // if NB_CMA_CHANNELS |
---|
3818 | |
---|
3819 | |
---|
3820 | ////////////////////////////////////////////////////////////////////////////// |
---|
3821 | // Miscelaneous syscall handlers |
---|
3822 | ////////////////////////////////////////////////////////////////////////////// |
---|
3823 | |
---|
3824 | /////////////// |
---|
3825 | int _sys_ukn() |
---|
3826 | { |
---|
3827 | _printf("\n[GIET ERROR] Undefined System Call / EPC = %x\n", _get_epc() ); |
---|
3828 | |
---|
3829 | return SYSCALL_UNDEFINED_SYSTEM_CALL; |
---|
3830 | } |
---|
3831 | |
---|
3832 | //////////////////////////////////// |
---|
3833 | int _sys_proc_xyp( unsigned int* x, |
---|
3834 | unsigned int* y, |
---|
3835 | unsigned int* p ) |
---|
3836 | { |
---|
3837 | unsigned int gpid = _get_procid(); // global processor index from CPO register |
---|
3838 | |
---|
3839 | *x = (gpid >> (Y_WIDTH + P_WIDTH)) & ((1<<X_WIDTH)-1); |
---|
3840 | *y = (gpid >> P_WIDTH) & ((1<<Y_WIDTH)-1); |
---|
3841 | *p = gpid & ((1<<P_WIDTH)-1); |
---|
3842 | |
---|
3843 | return SYSCALL_OK; |
---|
3844 | } |
---|
3845 | |
---|
3846 | //////////////////////////////////////////// |
---|
3847 | int _sys_procs_number( unsigned int* x_size, |
---|
3848 | unsigned int* y_size, |
---|
3849 | unsigned int* nprocs ) |
---|
3850 | { |
---|
3851 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
3852 | mapping_cluster_t * cluster = _get_cluster_base(header); |
---|
3853 | |
---|
3854 | unsigned int x; |
---|
3855 | unsigned int y; |
---|
3856 | unsigned int okmin = 1; |
---|
3857 | unsigned int okmax = 1; |
---|
3858 | |
---|
3859 | // compute max values |
---|
3860 | unsigned int xmax = header->x_size; |
---|
3861 | unsigned int ymax = header->y_size; |
---|
3862 | unsigned int procs = cluster[0].procs; |
---|
3863 | |
---|
3864 | // check the (ymax-1) lower rows |
---|
3865 | for ( y = 0 ; y < ymax-1 ; y++ ) |
---|
3866 | { |
---|
3867 | for ( x = 0 ; x < xmax ; x++ ) |
---|
3868 | { |
---|
3869 | if (cluster[x*ymax+y].procs != procs ) okmin = 0; |
---|
3870 | } |
---|
3871 | } |
---|
3872 | |
---|
3873 | // check the upper row |
---|
3874 | for ( x = 0 ; x < xmax ; x++ ) |
---|
3875 | { |
---|
3876 | if (cluster[x*ymax+ymax-1].procs != procs ) okmax = 0; |
---|
3877 | } |
---|
3878 | |
---|
3879 | // return values |
---|
3880 | if ( okmin && okmax ) |
---|
3881 | { |
---|
3882 | *x_size = xmax; |
---|
3883 | *y_size = ymax; |
---|
3884 | *nprocs = procs; |
---|
3885 | } |
---|
3886 | else if ( okmin ) |
---|
3887 | { |
---|
3888 | *x_size = xmax; |
---|
3889 | *y_size = ymax-1; |
---|
3890 | *nprocs = procs; |
---|
3891 | } |
---|
3892 | else |
---|
3893 | { |
---|
3894 | *x_size = 0; |
---|
3895 | *y_size = 0; |
---|
3896 | *nprocs = 0; |
---|
3897 | } |
---|
3898 | return SYSCALL_OK; |
---|
3899 | } |
---|
3900 | |
---|
3901 | /////////////////////////////////////////////////////// |
---|
3902 | int _sys_vseg_get_vbase( char* vspace_name, |
---|
3903 | char* vseg_name, |
---|
3904 | unsigned int* vbase ) |
---|
3905 | { |
---|
3906 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
3907 | mapping_vspace_t * vspace = _get_vspace_base(header); |
---|
3908 | mapping_vseg_t * vseg = _get_vseg_base(header); |
---|
3909 | |
---|
3910 | unsigned int vspace_id; |
---|
3911 | unsigned int vseg_id; |
---|
3912 | |
---|
3913 | // scan vspaces |
---|
3914 | for (vspace_id = 0; vspace_id < header->vspaces; vspace_id++) |
---|
3915 | { |
---|
3916 | if (_strncmp( vspace[vspace_id].name, vspace_name, 31) == 0) |
---|
3917 | { |
---|
3918 | // scan vsegs |
---|
3919 | for (vseg_id = vspace[vspace_id].vseg_offset; |
---|
3920 | vseg_id < (vspace[vspace_id].vseg_offset + vspace[vspace_id].vsegs); |
---|
3921 | vseg_id++) |
---|
3922 | { |
---|
3923 | if (_strncmp(vseg[vseg_id].name, vseg_name, 31) == 0) |
---|
3924 | { |
---|
3925 | *vbase = vseg[vseg_id].vbase; |
---|
3926 | return SYSCALL_OK; |
---|
3927 | } |
---|
3928 | } |
---|
3929 | } |
---|
3930 | } |
---|
3931 | return SYSCALL_VSEG_NOT_FOUND; |
---|
3932 | } |
---|
3933 | |
---|
3934 | ///////////////////////////////////////////////////////// |
---|
3935 | int _sys_vseg_get_length( char* vspace_name, |
---|
3936 | char* vseg_name, |
---|
3937 | unsigned int* length ) |
---|
3938 | { |
---|
3939 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
3940 | mapping_vspace_t * vspace = _get_vspace_base(header); |
---|
3941 | mapping_vseg_t * vseg = _get_vseg_base(header); |
---|
3942 | |
---|
3943 | unsigned int vspace_id; |
---|
3944 | unsigned int vseg_id; |
---|
3945 | |
---|
3946 | // scan vspaces |
---|
3947 | for (vspace_id = 0; vspace_id < header->vspaces; vspace_id++) |
---|
3948 | { |
---|
3949 | if (_strncmp( vspace[vspace_id].name, vspace_name, 31) == 0) |
---|
3950 | { |
---|
3951 | // scan vsegs |
---|
3952 | for (vseg_id = vspace[vspace_id].vseg_offset; |
---|
3953 | vseg_id < (vspace[vspace_id].vseg_offset + vspace[vspace_id].vsegs); |
---|
3954 | vseg_id++) |
---|
3955 | { |
---|
3956 | if (_strncmp(vseg[vseg_id].name, vseg_name, 31) == 0) |
---|
3957 | { |
---|
3958 | *length = vseg[vseg_id].length; |
---|
3959 | return SYSCALL_OK; |
---|
3960 | } |
---|
3961 | } |
---|
3962 | } |
---|
3963 | } |
---|
3964 | return SYSCALL_VSEG_NOT_FOUND; |
---|
3965 | } |
---|
3966 | |
---|
3967 | //////////////////////////////////////// |
---|
3968 | int _sys_xy_from_ptr( void* ptr, |
---|
3969 | unsigned int* x, |
---|
3970 | unsigned int* y ) |
---|
3971 | { |
---|
3972 | unsigned int flags; |
---|
3973 | unsigned long long paddr = _v2p_translate( (unsigned int)ptr , &flags ); |
---|
3974 | |
---|
3975 | *x = (paddr>> (32 + Y_WIDTH)) & ((1 << X_WIDTH) - 1); |
---|
3976 | *y = (paddr>>32) & ((1 << Y_WIDTH) - 1); |
---|
3977 | |
---|
3978 | return SYSCALL_OK; |
---|
3979 | } |
---|
3980 | |
---|
3981 | ///////////////////////////////////////// |
---|
3982 | int _sys_heap_info( unsigned int* vaddr, |
---|
3983 | unsigned int* length, |
---|
3984 | unsigned int x, |
---|
3985 | unsigned int y ) |
---|
3986 | { |
---|
3987 | // checking parameters |
---|
3988 | if ( (x >= X_SIZE) || (y >= Y_SIZE) ) |
---|
3989 | { |
---|
3990 | *vaddr = 0; |
---|
3991 | *length = 0; |
---|
3992 | _printf("\n[GIET ERROR] in _sys_heap_info() : " |
---|
3993 | "illegal (%d,%d) coordinates\n", x , y ); |
---|
3994 | return SYSCALL_ILLEGAL_CLUSTER_COORDINATES; |
---|
3995 | } |
---|
3996 | |
---|
3997 | mapping_header_t * header = (mapping_header_t *)SEG_BOOT_MAPPING_BASE; |
---|
3998 | mapping_thread_t * thread = _get_thread_base(header); |
---|
3999 | mapping_vseg_t * vseg = _get_vseg_base(header); |
---|
4000 | mapping_vspace_t * vspace = _get_vspace_base(header); |
---|
4001 | |
---|
4002 | unsigned int thread_id; |
---|
4003 | unsigned int vspace_id; |
---|
4004 | unsigned int vseg_id = 0xFFFFFFFF; |
---|
4005 | |
---|
4006 | // get calling thread vspace index |
---|
4007 | vspace_id = _get_context_slot(CTX_VSID_ID); |
---|
4008 | |
---|
4009 | // scan all threads in vspace to find one in clyster[x,y] |
---|
4010 | unsigned int min = vspace[vspace_id].thread_offset ; |
---|
4011 | unsigned int max = min + vspace[vspace_id].threads ; |
---|
4012 | for ( thread_id = min ; thread_id < max ; thread_id++ ) |
---|
4013 | { |
---|
4014 | if ( thread[thread_id].clusterid == (x * Y_SIZE + y) ) |
---|
4015 | { |
---|
4016 | vseg_id = thread[thread_id].heap_vseg_id; |
---|
4017 | break; |
---|
4018 | } |
---|
4019 | } |
---|
4020 | |
---|
4021 | // analysing the vseg_id |
---|
4022 | if ( vseg_id != 0xFFFFFFFF ) |
---|
4023 | { |
---|
4024 | *vaddr = vseg[vseg_id].vbase; |
---|
4025 | *length = vseg[vseg_id].length; |
---|
4026 | } |
---|
4027 | else |
---|
4028 | { |
---|
4029 | *vaddr = 0; |
---|
4030 | *length = 0; |
---|
4031 | _printf("error in _sys_heap_info() : no heap in cluster (%d,%d)\n", x , y ); |
---|
4032 | } |
---|
4033 | return SYSCALL_OK; |
---|
4034 | } // end _sys_heap_info() |
---|
4035 | |
---|
4036 | |
---|
4037 | // Local Variables: |
---|
4038 | // tab-width: 4 |
---|
4039 | // c-basic-offset: 4 |
---|
4040 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
4041 | // indent-tabs-mode: nil |
---|
4042 | // End: |
---|
4043 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
4044 | |
---|