1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197 | /* GATE PROJECT LICENSE:
+----------------------------------------------------------------------------+
| Copyright(c) 2018-2025, Stefan Meislinger <sm@opengate.at> |
| All rights reserved. |
| |
| Redistribution and use in source and binary forms, with or without |
| modification, are permitted provided that the following conditions are met:|
| |
| 1. Redistributions of source code must retain the above copyright notice, |
| this list of conditions and the following disclaimer. |
| 2. Redistributions in binary form must reproduce the above copyright |
| notice, this list of conditions and the following disclaimer in the |
| documentation and/or other materials provided with the distribution. |
| |
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"|
| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| ARE DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| THE POSSIBILITY OF SUCH DAMAGE. |
+----------------------------------------------------------------------------+
*/
#include "gate/platforms.h"
#include "gate/results.h"
#if defined(GATE_SYS_EFI)
#include "gate/platform/efi/efi_gate.h"
#include "gate/strings.h"
gate_result_t gate_platform_init(void)
{
return GATE_RESULT_OK;
}
void gate_platform_exit(int exit_code)
{
gate_platform_efi_exit(exit_code);
}
void gate_platform_atexit(void(*func)(void))
{
/* TODO */
}
gate_result_t gate_platform_lock()
{
return GATE_RESULT_OK;
}
gate_result_t gate_platform_unlock()
{
return GATE_RESULT_OK;
}
static gate_int32_t efi_last_error = 0;
gate_int32_t gate_platform_get_last_error()
{
return efi_last_error;
}
gate_result_t gate_platform_set_last_error(gate_int32_t platform_error_code)
{
efi_last_error = platform_error_code;
return GATE_RESULT_OK;
}
gate_result_t gate_platform_print_error(gate_int32_t platform_error_code, char* buffer, gate_size_t buffer_len)
{
gate_result_t result = gate_platform_efi_translate_status(platform_error_code);
char const* error_text = NULL;
if ((buffer != NULL) && (buffer_len != 0))
{
error_text = gate_result_text(result);
gate_str_print_text(buffer, buffer_len, error_text, gate_str_length(error_text));
}
return result;
}
gate_bool_t gate_platform_stream_valid(gate_platform_stream_t strm)
{
return false;
}
void gate_platform_stream_set_invalid(gate_platform_stream_t* ptr_strm)
{
*ptr_strm = (gate_platform_stream_t)(gate_intptr_t)(-1);
}
gate_result_t gate_platform_stream_open(char const* path, int open_flags, int native_flags, gate_platform_stream_t* strm)
{
return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_platform_stream_read(gate_platform_stream_t strm, char* buffer, gate_size_t bufferlength, gate_size_t* returned)
{
return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_platform_stream_write(gate_platform_stream_t strm, char const* buffer, gate_size_t bufferlength, gate_size_t* written)
{
return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_platform_stream_seek(gate_platform_stream_t strm, gate_int64_t position, int origin, gate_int64_t* final_position)
{
return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_platform_stream_close(gate_platform_stream_t* strm)
{
return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_platform_set_signal_handler(int sig,
gate_platform_signal_handler_t new_handler,
gate_platform_signal_handler_t* ptr_old_handler)
{
(void)sig;
(void)new_handler;
(void)ptr_old_handler;
return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_platform_raise_signal(int sig)
{
(void)sig;
return GATE_RESULT_NOTSUPPORTED;
}
int gate_platform_convert_gate_signal(int gate_platform_signal)
{
return gate_platform_signal;
}
int gate_platform_convert_native_signal(int native_signal)
{
return native_signal;
}
gate_result_t gate_platform_semaphore_create(gate_platform_semaphore_t* ptr_sem, unsigned int count)
{
unsigned volatile* sem;
if (!ptr_sem || (count == 0))
{
return GATE_RESULT_INVALIDARG;
}
sem = (unsigned volatile*)ptr_sem;
*sem = count;
return GATE_RESULT_OK;
}
gate_result_t gate_platform_semaphore_acquire(gate_platform_semaphore_t* ptr_sem, gate_uint32_t const* ptr_timeout_ms)
{
unsigned volatile* sem = (unsigned volatile*)ptr_sem;
unsigned value;<--- Unused variable: value
if (!sem)
{
return GATE_RESULT_INVALIDARG;
}
do
{
if (*sem > 0)
{
--(*sem);
return GATE_RESULT_OK;
}
/* TODO wait */
} while (0);
return GATE_RESULT_TIMEOUT;
}
gate_result_t gate_platform_semaphore_release(gate_platform_semaphore_t* ptr_sem)
{
unsigned volatile* sem = (unsigned volatile*)ptr_sem;
if (!sem)
{
return GATE_RESULT_INVALIDARG;
}
++(*sem);
return GATE_RESULT_OK;
}
gate_result_t gate_platform_semaphore_destroy(gate_platform_semaphore_t* ptr_sem)
{
unsigned volatile* sem = (unsigned volatile*)ptr_sem;
if (!sem)
{
return GATE_RESULT_INVALIDARG;
}
*sem = 0xffff;
return GATE_RESULT_OK;
}
gate_bool_t gate_platform_yield()
{
/* TODO */
return false;
}
#endif /* GATE_SYS_EFI */
|