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 | |
---|
23 | extern 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 | |
---|
33 | typedef 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 | |
---|
55 | typedef 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 | |
---|
80 | typedef 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 | |
---|
94 | int _sys_coproc_register_set( unsigned int cluster_xy, |
---|
95 | unsigned int reg_index, |
---|
96 | unsigned int value ); |
---|
97 | |
---|
98 | int _sys_coproc_register_get( unsigned int cluster_xy, |
---|
99 | unsigned int reg_index, |
---|
100 | unsigned int* buffer ); |
---|
101 | |
---|
102 | int _sys_coproc_alloc( unsigned int coproc_type, |
---|
103 | unsigned int* coproc_info ); |
---|
104 | |
---|
105 | int _sys_coproc_release( unsigned int coproc_reg_index ); |
---|
106 | |
---|
107 | int _sys_coproc_channel_init( unsigned int channel, |
---|
108 | giet_coproc_channel_t* desc ); |
---|
109 | |
---|
110 | int _sys_coproc_run( unsigned int coproc_reg_index ); |
---|
111 | |
---|
112 | int _sys_coproc_completed(); |
---|
113 | |
---|
114 | /////////////////////////////////////////////////////////////////////////////// |
---|
115 | // TTY related syscall handlers |
---|
116 | /////////////////////////////////////////////////////////////////////////////// |
---|
117 | |
---|
118 | int _sys_tty_alloc( unsigned int shared ); |
---|
119 | |
---|
120 | int _sys_tty_write( const char* buffer, |
---|
121 | unsigned int length, |
---|
122 | unsigned int channel ); |
---|
123 | |
---|
124 | int _sys_tty_read( char* buffer, |
---|
125 | unsigned int length, |
---|
126 | unsigned int channel ); |
---|
127 | |
---|
128 | ////////////////////////////////////////////////////////////////////////////// |
---|
129 | // TIM related syscall handlers |
---|
130 | ////////////////////////////////////////////////////////////////////////////// |
---|
131 | |
---|
132 | int _sys_tim_alloc(); |
---|
133 | |
---|
134 | int _sys_tim_start( unsigned int period ); |
---|
135 | |
---|
136 | int _sys_tim_stop(); |
---|
137 | |
---|
138 | ////////////////////////////////////////////////////////////////////////////// |
---|
139 | // NIC related syscall handlers |
---|
140 | ////////////////////////////////////////////////////////////////////////////// |
---|
141 | |
---|
142 | int _sys_nic_alloc( unsigned int is_rx, |
---|
143 | unsigned int xmax, |
---|
144 | unsigned int ymax ); |
---|
145 | |
---|
146 | |
---|
147 | int _sys_nic_start( unsigned int is_rx, |
---|
148 | unsigned int channel ); |
---|
149 | |
---|
150 | int _sys_nic_move( unsigned int is_rx, |
---|
151 | unsigned int channel, |
---|
152 | void* buffer ); |
---|
153 | |
---|
154 | int _sys_nic_stop( unsigned int is_rx, |
---|
155 | unsigned int channel ); |
---|
156 | |
---|
157 | int _sys_nic_clear( unsigned int is_rx, |
---|
158 | unsigned int channel ); |
---|
159 | |
---|
160 | int _sys_nic_stats( unsigned int is_rx, |
---|
161 | unsigned int channel ); |
---|
162 | |
---|
163 | ////////////////////////////////////////////////////////////////////////////// |
---|
164 | // FBF related syscall handlers |
---|
165 | ////////////////////////////////////////////////////////////////////////////// |
---|
166 | |
---|
167 | int _sys_fbf_sync_write( unsigned int offset, |
---|
168 | void* buffer, |
---|
169 | unsigned int length ); |
---|
170 | |
---|
171 | int _sys_fbf_sync_read( unsigned int offset, |
---|
172 | void* buffer, |
---|
173 | unsigned int length ); |
---|
174 | |
---|
175 | int _sys_fbf_cma_alloc(); |
---|
176 | |
---|
177 | int _sys_fbf_cma_init_buf(void* buf0_vbase, |
---|
178 | void* buf1_vbase, |
---|
179 | void* sts0_vaddr, |
---|
180 | void* sts1_vaddr ); |
---|
181 | |
---|
182 | int _sys_fbf_cma_start( unsigned int length ); |
---|
183 | |
---|
184 | int _sys_fbf_cma_display( unsigned int buffer_index ); |
---|
185 | |
---|
186 | int _sys_fbf_cma_stop(); |
---|
187 | |
---|
188 | ////////////////////////////////////////////////////////////////////////////// |
---|
189 | // Miscelaneous syscall handlers |
---|
190 | ////////////////////////////////////////////////////////////////////////////// |
---|
191 | |
---|
192 | int _sys_ukn(); |
---|
193 | |
---|
194 | int _sys_proc_xyp( unsigned int* x, |
---|
195 | unsigned int* y, |
---|
196 | unsigned int* p ); |
---|
197 | |
---|
198 | int _sys_task_exit( char* string ); |
---|
199 | |
---|
200 | int _sys_kill_application( char* name ); |
---|
201 | |
---|
202 | int _sys_exec_application( char* name ); |
---|
203 | |
---|
204 | int _sys_context_switch(); |
---|
205 | |
---|
206 | int _sys_local_task_id(); |
---|
207 | |
---|
208 | int _sys_global_task_id(); |
---|
209 | |
---|
210 | int _sys_thread_id(); |
---|
211 | |
---|
212 | int _sys_procs_number( unsigned int* x_size, |
---|
213 | unsigned int* y_size, |
---|
214 | unsigned int* nprocs ); |
---|
215 | |
---|
216 | int _sys_vseg_get_vbase( char* vspace_name, |
---|
217 | char* vseg_name, |
---|
218 | unsigned int* vbase ); |
---|
219 | |
---|
220 | int _sys_vseg_get_length( char* vspace_name, |
---|
221 | char* vseg_name, |
---|
222 | unsigned int* length ); |
---|
223 | |
---|
224 | int _sys_xy_from_ptr( void* ptr, |
---|
225 | unsigned int* x, |
---|
226 | unsigned int* y ); |
---|
227 | |
---|
228 | int _sys_heap_info( unsigned int* vaddr, |
---|
229 | unsigned int* length, |
---|
230 | unsigned int x, |
---|
231 | unsigned int y ); |
---|
232 | |
---|
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 | |
---|