source: soft/giet_vm/giet_kernel/sys_handler.h @ 688

Last change on this file since 688 was 688, checked in by alain, 9 years ago

Introduces the _sys_tasks_status() function used by the geit_tasks_status() syscall.

  • Property svn:executable set to *
File size: 8.7 KB
Line 
1///////////////////////////////////////////////////////////////////////////////
2// File     : sys_handler.h
3// Date     : 01/04/2012
4// Author   : alain greiner
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////
7// The sys_handler.c and sys_handler.h files are part of the GIET-VM kernel.
8// It define the syscall_vector[] (at the end of this file), as well as the
9// associated syscall handlers.
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _SYS_HANDLER_H
13#define _SYS_HANDLER_H
14
15#include "giet_config.h"
16#include "kernel_locks.h"
17#include "stdio.h"
18
19///////////////////////////////////////////////////////////////////////////////
20//     Syscall Vector Table (indexed by syscall index)
21///////////////////////////////////////////////////////////////////////////////
22
23extern const void * _syscall_vector[64];
24
25///////////////////////////////////////////////////////////////////////////////
26// This structure is used by the CMA component to store the status of the
27// frame buffer (full or empty). The useful information is contained in the
28// "status" integer (1 for full and 0 for empty).
29// This structure must be aligned on a cache line (64 bytes) to simplify
30// the software L2/L3 cache coherence when the IO bridge is used.
31///////////////////////////////////////////////////////////////////////////////
32
33typedef struct buffer_status_s
34{
35    unsigned int status;
36    unsigned int padding[15];
37} buffer_status_t;
38
39///////////////////////////////////////////////////////////////////////////////
40// This structure is used by the CMA component to move a stream
41// of images from two user buffers to the frame buffer in kernel space.
42// It contains two chbuf arrays:
43// - The SRC chbuf contains two buffers (buf0 & buf1), in user space.
44// - The DST cbuf contains one single buffer (fbf), that is the frame buffer.
45// Each buffer is described with a 64 bits buffer descriptor:
46// - the 26 LSB bits contain bits[6:31] of the buffer physical address
47// - the 26 following bits contain bits[6:31] of the physical address where the
48//   buffer status is located
49// - the 12 MSB bits contain the common address extension of the buffer and its
50//   status
51// The length field define the buffer size (bytes)
52// This structure must be 64 bytes aligned.
53///////////////////////////////////////////////////////////////////////////////
54
55typedef struct fbf_chbuf_s
56{
57    unsigned long long  buf0_desc;     // first user buffer descriptor
58    unsigned long long  buf1_desc;     // second user buffer descriptor
59    unsigned long long  fbf_desc;      // frame buffer descriptor
60    unsigned int        length;        // buffer length (bytes)
61    unsigned int        padding[9];    // padding for 64 bytes alignment
62} fbf_chbuf_t;   
63
64///////////////////////////////////////////////////////////////////////////////
65// This structure is used by the CMA component to move a stream of containers
66// between the NIC chbuf containing 2 buffers, and a kernel chbuf
67// containing up to (X_SIZE * Y_SIZE) buffers (one buffer per cluster).
68// The same structure is used for both TX or RX transfers.
69// The number of distributed containers can be smaller than (X_SIZE * YSIZE).
70// The actual number of buffers used in the chbuf is defined by (xmax * ymax).
71// Each buffer is described with a 64 bits buffer descriptor:
72// - the 26 LSB bits contain bits[6:31] of the buffer physical address
73// - the 26 following bits contain bits[6:31] of the physical address where the
74//   buffer status is located
75// - the 12 MSB bits contain the common address extension of the buffer and its
76//   status
77// This structure must be 64 bytes aligned.
78///////////////////////////////////////////////////////////////////////////////
79
80typedef struct ker_chbuf_s
81{
82    unsigned long long   buf_desc[X_SIZE*Y_SIZE]; // kernel chbuf descriptor
83    unsigned int         xmax;                        // nb clusters in a row
84    unsigned int         ymax;                        // nb clusters in a column
85} ker_chbuf_t;
86
87
88
89
90///////////////////////////////////////////////////////////////////////////////
91//    Coprocessors related syscall handlers
92///////////////////////////////////////////////////////////////////////////////
93
94int _sys_coproc_register_set( unsigned int cluster_xy,
95                              unsigned int reg_index,
96                              unsigned int value );
97
98int _sys_coproc_register_get( unsigned int  cluster_xy,
99                              unsigned int  reg_index,
100                              unsigned int* buffer );
101
102int _sys_coproc_alloc( unsigned int   coproc_type,
103                       unsigned int*  coproc_info );
104
105int _sys_coproc_release( unsigned int coproc_reg_index );
106
107int _sys_coproc_channel_init( unsigned int            channel,
108                              giet_coproc_channel_t*  desc );
109
110int _sys_coproc_run( unsigned int coproc_reg_index );
111
112int _sys_coproc_completed();
113
114///////////////////////////////////////////////////////////////////////////////
115//    TTY related syscall handlers
116///////////////////////////////////////////////////////////////////////////////
117
118int _sys_tty_alloc( unsigned int shared );
119
120int _sys_tty_write( const char*  buffer,
121                    unsigned int length,
122                    unsigned int channel );
123
124int _sys_tty_read(  char*        buffer,
125                    unsigned int length,
126                    unsigned int channel );
127
128//////////////////////////////////////////////////////////////////////////////
129//    TIM related syscall handlers
130//////////////////////////////////////////////////////////////////////////////
131
132int _sys_tim_alloc();
133
134int _sys_tim_start( unsigned int period );
135
136int _sys_tim_stop();
137
138//////////////////////////////////////////////////////////////////////////////
139//    NIC related syscall handlers
140//////////////////////////////////////////////////////////////////////////////
141
142int _sys_nic_alloc( unsigned int is_rx,
143                    unsigned int xmax,
144                    unsigned int ymax );
145
146
147int _sys_nic_start( unsigned int is_rx,
148                    unsigned int channel );
149
150int _sys_nic_move( unsigned int is_rx,
151                   unsigned int channel,
152                   void*        buffer );
153
154int _sys_nic_stop( unsigned int is_rx,
155                   unsigned int channel );
156
157int _sys_nic_clear( unsigned int is_rx,
158                    unsigned int channel );
159
160int _sys_nic_stats( unsigned int is_rx,
161                    unsigned int channel );
162
163//////////////////////////////////////////////////////////////////////////////
164//    FBF related syscall handlers
165//////////////////////////////////////////////////////////////////////////////
166
167int _sys_fbf_sync_write( unsigned int offset,
168                         void*        buffer,
169                         unsigned int length );
170
171int _sys_fbf_sync_read(  unsigned int offset,
172                         void*        buffer,
173                         unsigned int length );
174
175int _sys_fbf_cma_alloc();
176
177int _sys_fbf_cma_init_buf(void*        buf0_vbase, 
178                          void*        buf1_vbase, 
179                          void*        sts0_vaddr,
180                          void*        sts1_vaddr );
181
182int _sys_fbf_cma_start( unsigned int length );
183
184int _sys_fbf_cma_display( unsigned int buffer_index );
185
186int _sys_fbf_cma_stop();
187
188//////////////////////////////////////////////////////////////////////////////
189//    Miscelaneous syscall handlers
190//////////////////////////////////////////////////////////////////////////////
191
192int _sys_ukn();
193
194int _sys_proc_xyp( unsigned int* x,
195                   unsigned int* y,
196                   unsigned int* p );
197
198int _sys_task_exit( char* string );
199
200int _sys_kill_application( char* name );
201
202int _sys_exec_application( char* name );
203
204int _sys_context_switch();
205
206int _sys_local_task_id();
207
208int _sys_global_task_id();
209
210int _sys_thread_id();
211
212int _sys_procs_number( unsigned int* x_size,
213                       unsigned int* y_size, 
214                       unsigned int* nprocs );
215
216int _sys_vseg_get_vbase( char*         vspace_name,
217                         char*         vseg_name,
218                         unsigned int* vbase );
219
220int _sys_vseg_get_length( char*         vspace_name, 
221                          char*         vseg_name,
222                          unsigned int* length );
223
224int _sys_xy_from_ptr( void*          ptr,
225                      unsigned int*  x,
226                      unsigned int*  y );
227
228int _sys_heap_info( unsigned int* vaddr, 
229                    unsigned int* length,
230                    unsigned int  x,
231                    unsigned int  y ); 
232
233int _sys_tasks_status();
234
235#endif
236
237// Local Variables:
238// tab-width: 4
239// c-basic-offset: 4
240// c-file-offsets:((innamespace . 0)(inline-open . 0))
241// indent-tabs-mode: nil
242// End:
243// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
244
Note: See TracBrowser for help on using the repository browser.