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

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

Introduce the "shared" argument in the _sys_tty_alloc() function.

  • Property svn:executable set to *
File size: 8.7 KB
RevLine 
[519]1///////////////////////////////////////////////////////////////////////////////
[258]2// File     : sys_handler.h
3// Date     : 01/04/2012
[519]4// Author   : alain greiner
[258]5// Copyright (c) UPMC-LIP6
[519]6///////////////////////////////////////////////////////////////////////////////
7// The sys_handler.c and sys_handler.h files are part of the GIET-VM kernel.
[440]8// It define the syscall_vector[] (at the end of this file), as well as the
9// associated syscall handlers.
[519]10///////////////////////////////////////////////////////////////////////////////
[258]11
12#ifndef _SYS_HANDLER_H
13#define _SYS_HANDLER_H
14
[459]15#include "giet_config.h"
[494]16#include "kernel_locks.h"
[519]17#include "stdio.h"
[440]18
[505]19///////////////////////////////////////////////////////////////////////////////
[258]20//     Syscall Vector Table (indexed by syscall index)
[505]21///////////////////////////////////////////////////////////////////////////////
[258]22
23extern const void * _syscall_vector[64];
24
[505]25///////////////////////////////////////////////////////////////////////////////
[614]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
[478]30// the software L2/L3 cache coherence when the IO bridge is used.
[505]31///////////////////////////////////////////////////////////////////////////////
[478]32
[614]33typedef struct buffer_status_s
[478]34{
[614]35    unsigned int status;
36    unsigned int padding[15];
37} buffer_status_t;
38
[505]39///////////////////////////////////////////////////////////////////////////////
[459]40// This structure is used by the CMA component to move a stream
[478]41// of images from two user buffers to the frame buffer in kernel space.
[459]42// It contains two chbuf arrays:
[478]43// - The SRC chbuf contains two buffers (buf0 & buf1), in user space.
[440]44// - The DST cbuf contains one single buffer (fbf), that is the frame buffer.
[614]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)
[494]52// This structure must be 64 bytes aligned.
[505]53///////////////////////////////////////////////////////////////////////////////
[440]54
55typedef struct fbf_chbuf_s
56{
[614]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
[440]62} fbf_chbuf_t;   
63
[505]64///////////////////////////////////////////////////////////////////////////////
[478]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
[494]67// containing up to (X_SIZE * Y_SIZE) buffers (one buffer per cluster).
[449]68// The same structure is used for both TX or RX transfers.
[494]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).
[614]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
[494]77// This structure must be 64 bytes aligned.
[505]78///////////////////////////////////////////////////////////////////////////////
[449]79
[614]80typedef struct ker_chbuf_s
[449]81{
[614]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;
[449]86
[519]87
88
89
[505]90///////////////////////////////////////////////////////////////////////////////
[519]91//    Coprocessors related syscall handlers
92///////////////////////////////////////////////////////////////////////////////
93
[670]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
[519]102int _sys_coproc_alloc( unsigned int   coproc_type,
[556]103                       unsigned int*  coproc_info );
[519]104
[556]105int _sys_coproc_release( unsigned int coproc_reg_index );
[519]106
[556]107int _sys_coproc_channel_init( unsigned int            channel,
[519]108                              giet_coproc_channel_t*  desc );
109
[556]110int _sys_coproc_run( unsigned int coproc_reg_index );
[519]111
[556]112int _sys_coproc_completed();
[519]113
114///////////////////////////////////////////////////////////////////////////////
[440]115//    TTY related syscall handlers
[505]116///////////////////////////////////////////////////////////////////////////////
[258]117
[670]118int _sys_tty_alloc( unsigned int shared );
[294]119
[440]120int _sys_tty_write( const char*  buffer,
121                    unsigned int length,
122                    unsigned int channel );
[428]123
[440]124int _sys_tty_read(  char*        buffer,
125                    unsigned int length,
126                    unsigned int channel );
[294]127
[440]128//////////////////////////////////////////////////////////////////////////////
129//    TIM related syscall handlers
130//////////////////////////////////////////////////////////////////////////////
[294]131
[440]132int _sys_tim_alloc();
[258]133
[440]134int _sys_tim_start( unsigned int period );
[258]135
[440]136int _sys_tim_stop();
[258]137
[440]138//////////////////////////////////////////////////////////////////////////////
139//    NIC related syscall handlers
140//////////////////////////////////////////////////////////////////////////////
[294]141
[494]142int _sys_nic_alloc( unsigned int is_rx,
143                    unsigned int xmax,
144                    unsigned int ymax );
[396]145
[494]146
[489]147int _sys_nic_start( unsigned int is_rx,
148                    unsigned int channel );
[396]149
[449]150int _sys_nic_move( unsigned int is_rx,
[489]151                   unsigned int channel,
[449]152                   void*        buffer );
[440]153
[489]154int _sys_nic_stop( unsigned int is_rx,
155                   unsigned int channel );
[449]156
[489]157int _sys_nic_clear( unsigned int is_rx,
158                    unsigned int channel );
[459]159
[489]160int _sys_nic_stats( unsigned int is_rx,
161                    unsigned int channel );
[459]162
[440]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
[614]177int _sys_fbf_cma_init_buf(void*        buf0_vbase, 
178                          void*        buf1_vbase, 
179                          void*        sts0_vaddr,
180                          void*        sts1_vaddr );
[440]181
[614]182int _sys_fbf_cma_start( unsigned int length );
183
[440]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
[629]200int _sys_kill_application( char* name );
201
202int _sys_exec_application( char* name );
203
[528]204int _sys_context_switch();
[440]205
206int _sys_local_task_id();
207
208int _sys_global_task_id();
209
210int _sys_thread_id();
211
[494]212int _sys_procs_number( unsigned int* x_size,
213                       unsigned int* y_size, 
214                       unsigned int* nprocs );
[440]215
[516]216int _sys_vseg_get_vbase( char*         vspace_name,
217                         char*         vseg_name,
[440]218                         unsigned int* vbase );
219
[516]220int _sys_vseg_get_length( char*         vspace_name, 
221                          char*         vseg_name,
[440]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
[258]233#endif
234
235// Local Variables:
236// tab-width: 4
237// c-basic-offset: 4
238// c-file-offsets:((innamespace . 0)(inline-open . 0))
239// indent-tabs-mode: nil
240// End:
241// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
242
Note: See TracBrowser for help on using the repository browser.