1 /*
2 * Copyright (c) 2019, The Linux Foundation. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above
10 * copyright notice, this list of conditions and the following
11 * disclaimer in the documentation and/or other materials provided
12 * with the distribution.
13 * * Neither the name of The Linux Foundation nor the names of its
14 * contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29 #ifndef _REMOTECTL_STUB_H
30 #define _REMOTECTL_STUB_H
31 #include "remotectl.h"
32 #ifndef _QAIC_ENV_H
33 #define _QAIC_ENV_H
34
35 #ifdef __GNUC__
36 #ifdef __clang__
37 #pragma GCC diagnostic ignored "-Wunknown-pragmas"
38 #else
39 #pragma GCC diagnostic ignored "-Wpragmas"
40 #endif
41 #pragma GCC diagnostic ignored "-Wuninitialized"
42 #pragma GCC diagnostic ignored "-Wunused-parameter"
43 #pragma GCC diagnostic ignored "-Wunused-function"
44 #endif
45
46 #ifndef _ATTRIBUTE_UNUSED
47
48 #ifdef _WIN32
49 #define _ATTRIBUTE_UNUSED
50 #else
51 #define _ATTRIBUTE_UNUSED __attribute__ ((unused))
52 #endif
53
54 #endif // _ATTRIBUTE_UNUSED
55
56 #ifndef __QAIC_REMOTE
57 #define __QAIC_REMOTE(ff) ff
58 #endif //__QAIC_REMOTE
59
60 #ifndef __QAIC_HEADER
61 #define __QAIC_HEADER(ff) ff
62 #endif //__QAIC_HEADER
63
64 #ifndef __QAIC_HEADER_EXPORT
65 #define __QAIC_HEADER_EXPORT
66 #endif // __QAIC_HEADER_EXPORT
67
68 #ifndef __QAIC_HEADER_ATTRIBUTE
69 #define __QAIC_HEADER_ATTRIBUTE
70 #endif // __QAIC_HEADER_ATTRIBUTE
71
72 #ifndef __QAIC_IMPL
73 #define __QAIC_IMPL(ff) ff
74 #endif //__QAIC_IMPL
75
76 #ifndef __QAIC_IMPL_EXPORT
77 #define __QAIC_IMPL_EXPORT
78 #endif // __QAIC_IMPL_EXPORT
79
80 #ifndef __QAIC_IMPL_ATTRIBUTE
81 #define __QAIC_IMPL_ATTRIBUTE
82 #endif // __QAIC_IMPL_ATTRIBUTE
83
84 #ifndef __QAIC_STUB
85 #define __QAIC_STUB(ff) ff
86 #endif //__QAIC_STUB
87
88 #ifndef __QAIC_STUB_EXPORT
89 #define __QAIC_STUB_EXPORT
90 #endif // __QAIC_STUB_EXPORT
91
92 #ifndef __QAIC_STUB_ATTRIBUTE
93 #define __QAIC_STUB_ATTRIBUTE
94 #endif // __QAIC_STUB_ATTRIBUTE
95
96 #ifndef __QAIC_SKEL
97 #define __QAIC_SKEL(ff) ff
98 #endif //__QAIC_SKEL__
99
100 #ifndef __QAIC_SKEL_EXPORT
101 #define __QAIC_SKEL_EXPORT
102 #endif // __QAIC_SKEL_EXPORT
103
104 #ifndef __QAIC_SKEL_ATTRIBUTE
105 #define __QAIC_SKEL_ATTRIBUTE
106 #endif // __QAIC_SKEL_ATTRIBUTE
107
108 #ifdef __QAIC_DEBUG__
109 #ifndef __QAIC_DBG_PRINTF__
110 #include <stdio.h>
111 #define __QAIC_DBG_PRINTF__( ee ) do { printf ee ; } while(0)
112 #endif
113 #else
114 #define __QAIC_DBG_PRINTF__( ee ) (void)0
115 #endif
116
117
118 #define _OFFSET(src, sof) ((void*)(((char*)(src)) + (sof)))
119
120 #define _COPY(dst, dof, src, sof, sz) \
121 do {\
122 struct __copy { \
123 char ar[sz]; \
124 };\
125 *(struct __copy*)_OFFSET(dst, dof) = *(struct __copy*)_OFFSET(src, sof);\
126 } while (0)
127
128 #define _COPYIF(dst, dof, src, sof, sz) \
129 do {\
130 if(_OFFSET(dst, dof) != _OFFSET(src, sof)) {\
131 _COPY(dst, dof, src, sof, sz); \
132 } \
133 } while (0)
134
135 _ATTRIBUTE_UNUSED
_qaic_memmove(void * dst,void * src,int size)136 static __inline void _qaic_memmove(void* dst, void* src, int size) {
137 int i;
138 for(i = 0; i < size; ++i) {
139 ((char*)dst)[i] = ((char*)src)[i];
140 }
141 }
142
143 #define _MEMMOVEIF(dst, src, sz) \
144 do {\
145 if(dst != src) {\
146 _qaic_memmove(dst, src, sz);\
147 } \
148 } while (0)
149
150
151 #define _ASSIGN(dst, src, sof) \
152 do {\
153 dst = OFFSET(src, sof); \
154 } while (0)
155
156 #define _STD_STRLEN_IF(str) (str == 0 ? 0 : strlen(str))
157
158 #include "AEEStdErr.h"
159
160 #define _TRY(ee, func) \
161 do { \
162 if (AEE_SUCCESS != ((ee) = func)) {\
163 __QAIC_DBG_PRINTF__((__FILE__ ":%d:error:%d:%s\n", __LINE__, (int)(ee),#func));\
164 goto ee##bail;\
165 } \
166 } while (0)
167
168 #define _CATCH(exception) exception##bail: if (exception != AEE_SUCCESS)
169
170 #define _ASSERT(nErr, ff) _TRY(nErr, 0 == (ff) ? AEE_EBADPARM : AEE_SUCCESS)
171
172 #ifdef __QAIC_DEBUG__
173 #define _ALLOCATE(nErr, pal, size, alignment, pv) _TRY(nErr, _allocator_alloc(pal, __FILE_LINE__, size, alignment, (void**)&pv))
174 #else
175 #define _ALLOCATE(nErr, pal, size, alignment, pv) _TRY(nErr, _allocator_alloc(pal, 0, size, alignment, (void**)&pv))
176 #endif
177
178
179 #endif // _QAIC_ENV_H
180
181 #include "remote.h"
182 #include <string.h>
183 #ifndef _ALLOCATOR_H
184 #define _ALLOCATOR_H
185
186 #include <stdlib.h>
187 #include <stdint.h>
188
189 typedef struct _heap _heap;
190 struct _heap {
191 _heap* pPrev;
192 const char* loc;
193 uint64_t buf;
194 };
195
196 typedef struct _allocator {
197 _heap* pheap;
198 uint8_t* stack;
199 uint8_t* stackEnd;
200 int nSize;
201 } _allocator;
202
203 _ATTRIBUTE_UNUSED
_heap_alloc(_heap ** ppa,const char * loc,int size,void ** ppbuf)204 static __inline int _heap_alloc(_heap** ppa, const char* loc, int size, void** ppbuf) {
205 _heap* pn = 0;
206 pn = malloc(size + sizeof(_heap) - sizeof(uint64_t));
207 if(pn != 0) {
208 pn->pPrev = *ppa;
209 pn->loc = loc;
210 *ppa = pn;
211 *ppbuf = (void*)&(pn->buf);
212 return 0;
213 } else {
214 return -1;
215 }
216 }
217 #define _ALIGN_SIZE(x, y) (((x) + (y-1)) & ~(y-1))
218
219 _ATTRIBUTE_UNUSED
_allocator_alloc(_allocator * me,const char * loc,int size,unsigned int al,void ** ppbuf)220 static __inline int _allocator_alloc(_allocator* me,
221 const char* loc,
222 int size,
223 unsigned int al,
224 void** ppbuf) {
225 if(size < 0) {
226 return -1;
227 } else if (size == 0) {
228 *ppbuf = 0;
229 return 0;
230 }
231 if((_ALIGN_SIZE((uintptr_t)me->stackEnd, al) + size) < (uintptr_t)me->stack + me->nSize) {
232 *ppbuf = (uint8_t*)_ALIGN_SIZE((uintptr_t)me->stackEnd, al);
233 me->stackEnd = (uint8_t*)_ALIGN_SIZE((uintptr_t)me->stackEnd, al) + size;
234 return 0;
235 } else {
236 return _heap_alloc(&me->pheap, loc, size, ppbuf);
237 }
238 }
239
240 _ATTRIBUTE_UNUSED
_allocator_deinit(_allocator * me)241 static __inline void _allocator_deinit(_allocator* me) {
242 _heap* pa = me->pheap;
243 while(pa != 0) {
244 _heap* pn = pa;
245 const char* loc = pn->loc;
246 (void)loc;
247 pa = pn->pPrev;
248 free(pn);
249 }
250 }
251
252 _ATTRIBUTE_UNUSED
_allocator_init(_allocator * me,uint8_t * stack,int stackSize)253 static __inline void _allocator_init(_allocator* me, uint8_t* stack, int stackSize) {
254 me->stack = stack;
255 me->stackEnd = stack + stackSize;
256 me->nSize = stackSize;
257 me->pheap = 0;
258 }
259
260
261 #endif // _ALLOCATOR_H
262
263 #ifndef SLIM_H
264 #define SLIM_H
265
266 #include <stdint.h>
267
268 //a C data structure for the idl types that can be used to implement
269 //static and dynamic language bindings fairly efficiently.
270 //
271 //the goal is to have a minimal ROM and RAM footprint and without
272 //doing too many allocations. A good way to package these things seemed
273 //like the module boundary, so all the idls within one module can share
274 //all the type references.
275
276
277 #define PARAMETER_IN 0x0
278 #define PARAMETER_OUT 0x1
279 #define PARAMETER_INOUT 0x2
280 #define PARAMETER_ROUT 0x3
281 #define PARAMETER_INROUT 0x4
282
283 //the types that we get from idl
284 #define TYPE_OBJECT 0x0
285 #define TYPE_INTERFACE 0x1
286 #define TYPE_PRIMITIVE 0x2
287 #define TYPE_ENUM 0x3
288 #define TYPE_STRING 0x4
289 #define TYPE_WSTRING 0x5
290 #define TYPE_STRUCTURE 0x6
291 #define TYPE_UNION 0x7
292 #define TYPE_ARRAY 0x8
293 #define TYPE_SEQUENCE 0x9
294
295 //these require the pack/unpack to recurse
296 //so it's a hint to those languages that can optimize in cases where
297 //recursion isn't necessary.
298 #define TYPE_COMPLEX_STRUCTURE (0x10 | TYPE_STRUCTURE)
299 #define TYPE_COMPLEX_UNION (0x10 | TYPE_UNION)
300 #define TYPE_COMPLEX_ARRAY (0x10 | TYPE_ARRAY)
301 #define TYPE_COMPLEX_SEQUENCE (0x10 | TYPE_SEQUENCE)
302
303
304 typedef struct Type Type;
305
306 #define INHERIT_TYPE\
307 int32_t nativeSize; /*in the simple case its the same as wire size and alignment*/\
308 union {\
309 struct {\
310 const uintptr_t p1;\
311 const uintptr_t p2;\
312 } _cast;\
313 struct {\
314 uint32_t iid;\
315 uint32_t bNotNil;\
316 } object;\
317 struct {\
318 const Type *arrayType;\
319 int32_t nItems;\
320 } array;\
321 struct {\
322 const Type *seqType;\
323 int32_t nMaxLen;\
324 } seqSimple; \
325 struct {\
326 uint32_t bFloating;\
327 uint32_t bSigned;\
328 } prim; \
329 const SequenceType* seqComplex;\
330 const UnionType *unionType;\
331 const StructType *structType;\
332 int32_t stringMaxLen;\
333 uint8_t bInterfaceNotNil;\
334 } param;\
335 uint8_t type;\
336 uint8_t nativeAlignment\
337
338 typedef struct UnionType UnionType;
339 typedef struct StructType StructType;
340 typedef struct SequenceType SequenceType;
341 struct Type {
342 INHERIT_TYPE;
343 };
344
345 struct SequenceType {
346 const Type * seqType;
347 uint32_t nMaxLen;
348 uint32_t inSize;
349 uint32_t routSizePrimIn;
350 uint32_t routSizePrimROut;
351 };
352
353 //byte offset from the start of the case values for
354 //this unions case value array. it MUST be aligned
355 //at the alignment requrements for the descriptor
356 //
357 //if negative it means that the unions cases are
358 //simple enumerators, so the value read from the descriptor
359 //can be used directly to find the correct case
360 typedef union CaseValuePtr CaseValuePtr;
361 union CaseValuePtr {
362 const uint8_t* value8s;
363 const uint16_t* value16s;
364 const uint32_t* value32s;
365 const uint64_t* value64s;
366 };
367
368 //these are only used in complex cases
369 //so I pulled them out of the type definition as references to make
370 //the type smaller
371 struct UnionType {
372 const Type *descriptor;
373 uint32_t nCases;
374 const CaseValuePtr caseValues;
375 const Type * const *cases;
376 int32_t inSize;
377 int32_t routSizePrimIn;
378 int32_t routSizePrimROut;
379 uint8_t inAlignment;
380 uint8_t routAlignmentPrimIn;
381 uint8_t routAlignmentPrimROut;
382 uint8_t inCaseAlignment;
383 uint8_t routCaseAlignmentPrimIn;
384 uint8_t routCaseAlignmentPrimROut;
385 uint8_t nativeCaseAlignment;
386 uint8_t bDefaultCase;
387 };
388
389 struct StructType {
390 uint32_t nMembers;
391 const Type * const *members;
392 int32_t inSize;
393 int32_t routSizePrimIn;
394 int32_t routSizePrimROut;
395 uint8_t inAlignment;
396 uint8_t routAlignmentPrimIn;
397 uint8_t routAlignmentPrimROut;
398 };
399
400 typedef struct Parameter Parameter;
401 struct Parameter {
402 INHERIT_TYPE;
403 uint8_t mode;
404 uint8_t bNotNil;
405 };
406
407 #define SLIM_IFPTR32(is32,is64) (sizeof(uintptr_t) == 4 ? (is32) : (is64))
408 #define SLIM_SCALARS_IS_DYNAMIC(u) (((u) & 0x00ffffff) == 0x00ffffff)
409
410 typedef struct Method Method;
411 struct Method {
412 uint32_t uScalars; //no method index
413 int32_t primInSize;
414 int32_t primROutSize;
415 int maxArgs;
416 int numParams;
417 const Parameter * const *params;
418 uint8_t primInAlignment;
419 uint8_t primROutAlignment;
420 };
421
422 typedef struct Interface Interface;
423
424 struct Interface {
425 int nMethods;
426 const Method * const *methodArray;
427 int nIIds;
428 const uint32_t *iids;
429 const uint16_t* methodStringArray;
430 const uint16_t* methodStrings;
431 const char* strings;
432 };
433
434
435 #endif //SLIM_H
436
437
438 #ifndef _REMOTECTL_SLIM_H
439 #define _REMOTECTL_SLIM_H
440 #include "remote.h"
441 #include <stdint.h>
442
443 #ifndef __QAIC_SLIM
444 #define __QAIC_SLIM(ff) ff
445 #endif
446 #ifndef __QAIC_SLIM_EXPORT
447 #define __QAIC_SLIM_EXPORT
448 #endif
449
450 static const Type types[2];
451 static const Type types[2] = {{0x1,{{(const uintptr_t)0,(const uintptr_t)0}}, 2,0x1},{0x4,{{(const uintptr_t)0,(const uintptr_t)0}}, 2,0x4}};
452 static const Parameter parameters[6] = {{SLIM_IFPTR32(0x8,0x10),{{(const uintptr_t)0x0,0}}, 4,SLIM_IFPTR32(0x4,0x8),0,0},{0x4,{{(const uintptr_t)0,(const uintptr_t)1}}, 2,0x4,3,0},{SLIM_IFPTR32(0x8,0x10),{{(const uintptr_t)&(types[0]),(const uintptr_t)0x0}}, 9,SLIM_IFPTR32(0x4,0x8),3,0},{0x4,{{(const uintptr_t)0,(const uintptr_t)1}}, 2,0x4,0,0},{0x4,{{(const uintptr_t)0,(const uintptr_t)0}}, 2,0x4,0,0},{SLIM_IFPTR32(0x8,0x10),{{(const uintptr_t)&(types[1]),(const uintptr_t)0x0}}, 9,SLIM_IFPTR32(0x4,0x8),0,0}};
453 static const Parameter* const parameterArrays[11] = {(&(parameters[0])),(&(parameters[1])),(&(parameters[2])),(&(parameters[1])),(&(parameters[3])),(&(parameters[2])),(&(parameters[1])),(&(parameters[3])),(&(parameters[5])),(&(parameters[4])),(&(parameters[4]))};
454 static const Method methods[4] = {{REMOTE_SCALARS_MAKEX(0,0,0x2,0x2,0x0,0x0),0x8,0x8,6,4,(&(parameterArrays[0])),0x4,0x4},{REMOTE_SCALARS_MAKEX(0,0,0x1,0x2,0x0,0x0),0x8,0x4,5,3,(&(parameterArrays[4])),0x4,0x4},{REMOTE_SCALARS_MAKEX(0,0,0x1,0x0,0x0,0x0),0x8,0x0,2,2,(&(parameterArrays[9])),0x4,0x0},{REMOTE_SCALARS_MAKEX(0,0,0x2,0x0,0x0,0x0),0x8,0x0,3,2,(&(parameterArrays[7])),0x4,0x0}};
455 static const Method* const methodArrays[4] = {&(methods[0]),&(methods[1]),&(methods[2]),&(methods[3])};
456 static const char strings[83] = "set_param\0grow_heap\0phyAddr\0dlerror\0params\0handle\0reqID\0nSize\0close\0nErr\0name\0open\0";
457 static const uint16_t methodStrings[15] = {78,73,43,28,68,62,43,28,68,0,50,36,10,20,56};
458 static const uint16_t methodStringsArrays[4] = {0,5,12,9};
459 __QAIC_SLIM_EXPORT const Interface __QAIC_SLIM(remotectl_slim) = {4,&(methodArrays[0]),0,0,&(methodStringsArrays [0]),methodStrings,strings};
460 #endif //_REMOTECTL_SLIM_H
461 #ifdef __cplusplus
462 extern "C" {
463 #endif
464
465 #ifndef _const_remotectl_handle
466 #define _const_remotectl_handle ((remote_handle)-1)
467 #endif //_const_remotectl_handle
468
_remotectl_pls_dtor(void * data)469 static void _remotectl_pls_dtor(void* data) {
470 remote_handle* ph = (remote_handle*)data;
471 if(_const_remotectl_handle != *ph) {
472 (void)__QAIC_REMOTE(remote_handle_close)(*ph);
473 *ph = _const_remotectl_handle;
474 }
475 }
476
_remotectl_pls_ctor(void * ctx,void * data)477 static int _remotectl_pls_ctor(void* ctx, void* data) {
478 remote_handle* ph = (remote_handle*)data;
479 *ph = _const_remotectl_handle;
480 if(*ph == (remote_handle)-1) {
481 return __QAIC_REMOTE(remote_handle_open)((const char*)ctx, ph);
482 }
483 return 0;
484 }
485
486 #if (defined __qdsp6__) || (defined __hexagon__)
487 #pragma weak adsp_pls_add_lookup
488 extern int adsp_pls_add_lookup(uint32_t type, uint32_t key, int size, int (*ctor)(void* ctx, void* data), void* ctx, void (*dtor)(void* ctx), void** ppo);
489 #pragma weak HAP_pls_add_lookup
490 extern int HAP_pls_add_lookup(uint32_t type, uint32_t key, int size, int (*ctor)(void* ctx, void* data), void* ctx, void (*dtor)(void* ctx), void** ppo);
491
_remotectl_handle(void)492 __QAIC_STUB_EXPORT remote_handle _remotectl_handle(void) {
493 remote_handle* ph;
494 if(adsp_pls_add_lookup) {
495 if(0 == adsp_pls_add_lookup((uint32_t)_remotectl_handle, 0, sizeof(*ph), _remotectl_pls_ctor, "remotectl", _remotectl_pls_dtor, (void**)&ph)) {
496 return *ph;
497 }
498 return (remote_handle)-1;
499 } else if(HAP_pls_add_lookup) {
500 if(0 == HAP_pls_add_lookup((uint32_t)_remotectl_handle, 0, sizeof(*ph), _remotectl_pls_ctor, "remotectl", _remotectl_pls_dtor, (void**)&ph)) {
501 return *ph;
502 }
503 return (remote_handle)-1;
504 }
505 return(remote_handle)-1;
506 }
507
508 #else //__qdsp6__ || __hexagon__
509
510 uint32_t _remotectl_atomic_CompareAndExchange(uint32_t * volatile puDest, uint32_t uExchange, uint32_t uCompare);
511
512 #ifdef _WIN32
513 #include "Windows.h"
_remotectl_atomic_CompareAndExchange(uint32_t * volatile puDest,uint32_t uExchange,uint32_t uCompare)514 uint32_t _remotectl_atomic_CompareAndExchange(uint32_t * volatile puDest, uint32_t uExchange, uint32_t uCompare) {
515 return (uint32_t)InterlockedCompareExchange((volatile LONG*)puDest, (LONG)uExchange, (LONG)uCompare);
516 }
517 #elif __GNUC__
_remotectl_atomic_CompareAndExchange(uint32_t * volatile puDest,uint32_t uExchange,uint32_t uCompare)518 uint32_t _remotectl_atomic_CompareAndExchange(uint32_t * volatile puDest, uint32_t uExchange, uint32_t uCompare) {
519 return __sync_val_compare_and_swap(puDest, uCompare, uExchange);
520 }
521 #endif //_WIN32
522
523
_remotectl_handle(void)524 __QAIC_STUB_EXPORT remote_handle _remotectl_handle(void) {
525 static remote_handle handle = _const_remotectl_handle;
526 if((remote_handle)-1 != handle) {
527 return handle;
528 } else {
529 remote_handle tmp;
530 int nErr = _remotectl_pls_ctor("remotectl", (void*)&tmp);
531 if(nErr) {
532 return (remote_handle)-1;
533 }
534 if(((remote_handle)-1 != handle) || ((remote_handle)-1 != (remote_handle)_remotectl_atomic_CompareAndExchange((uint32_t*)&handle, (uint32_t)tmp, (uint32_t)-1))) {
535 _remotectl_pls_dtor(&tmp);
536 }
537 return handle;
538 }
539 }
540
541 #endif //__qdsp6__
542
__QAIC_STUB(remotectl_skel_invoke)543 __QAIC_STUB_EXPORT int __QAIC_STUB(remotectl_skel_invoke)(uint32_t _sc, remote_arg* _pra) __QAIC_STUB_ATTRIBUTE {
544 return __QAIC_REMOTE(remote_handle_invoke)(_remotectl_handle(), _sc, _pra);
545 }
546
547 #ifdef __cplusplus
548 }
549 #endif
550
551
552 #ifdef __cplusplus
553 extern "C" {
554 #endif
555 extern int remote_register_dma_handle(int, uint32_t);
_stub_method(remote_handle _handle,uint32_t _mid,char * _in0[1],uint32_t _rout1[1],char * _rout2[1],uint32_t _rout2Len[1],uint32_t _rout3[1])556 static __inline int _stub_method(remote_handle _handle, uint32_t _mid, char* _in0[1], uint32_t _rout1[1], char* _rout2[1], uint32_t _rout2Len[1], uint32_t _rout3[1]) {
557 uint32_t _in0Len[1];
558 int _numIn[1];
559 remote_arg _pra[4];
560 uint32_t _primIn[2];
561 uint32_t _primROut[2];
562 remote_arg* _praIn;
563 remote_arg* _praROut;
564 int _nErr = 0;
565 _numIn[0] = 1;
566 _pra[0].buf.pv = (void*)_primIn;
567 _pra[0].buf.nLen = sizeof(_primIn);
568 _pra[(_numIn[0] + 1)].buf.pv = (void*)_primROut;
569 _pra[(_numIn[0] + 1)].buf.nLen = sizeof(_primROut);
570 _in0Len[0] = (1 + strlen(_in0[0]));
571 _COPY(_primIn, 0, _in0Len, 0, 4);
572 _praIn = (_pra + 1);
573 _praIn[0].buf.pv = _in0[0];
574 _praIn[0].buf.nLen = (1 * _in0Len[0]);
575 _COPY(_primIn, 4, _rout2Len, 0, 4);
576 _praROut = (_praIn + _numIn[0] + 1);
577 _praROut[0].buf.pv = _rout2[0];
578 _praROut[0].buf.nLen = (1 * _rout2Len[0]);
579 _TRY(_nErr, __QAIC_REMOTE(remote_handle_invoke)(_handle, REMOTE_SCALARS_MAKEX(0, _mid, 2, 2, 0, 0), _pra));
580 _COPY(_rout1, 0, _primROut, 0, 4);
581 _COPY(_rout3, 0, _primROut, 4, 4);
582 _CATCH(_nErr) {}
583 return _nErr;
584 }
__QAIC_STUB(remotectl_open)585 __QAIC_STUB_EXPORT int __QAIC_STUB(remotectl_open)(const char* name, int* handle, char* dlerror, int dlerrorLen, int* nErr) __QAIC_STUB_ATTRIBUTE {
586 uint32_t _mid = 0;
587 return _stub_method(_remotectl_handle(), _mid, (char**)&name, (uint32_t*)handle, (char**)&dlerror, (uint32_t*)&dlerrorLen, (uint32_t*)nErr);
588 }
_stub_method_1(remote_handle _handle,uint32_t _mid,uint32_t _in0[1],char * _rout1[1],uint32_t _rout1Len[1],uint32_t _rout2[1])589 static __inline int _stub_method_1(remote_handle _handle, uint32_t _mid, uint32_t _in0[1], char* _rout1[1], uint32_t _rout1Len[1], uint32_t _rout2[1]) {
590 int _numIn[1];
591 remote_arg _pra[3];
592 uint32_t _primIn[2];
593 uint32_t _primROut[1];
594 remote_arg* _praIn;
595 remote_arg* _praROut;
596 int _nErr = 0;
597 _numIn[0] = 0;
598 _pra[0].buf.pv = (void*)_primIn;
599 _pra[0].buf.nLen = sizeof(_primIn);
600 _pra[(_numIn[0] + 1)].buf.pv = (void*)_primROut;
601 _pra[(_numIn[0] + 1)].buf.nLen = sizeof(_primROut);
602 _COPY(_primIn, 0, _in0, 0, 4);
603 _COPY(_primIn, 4, _rout1Len, 0, 4);
604 _praIn = (_pra + 1);
605 _praROut = (_praIn + _numIn[0] + 1);
606 _praROut[0].buf.pv = _rout1[0];
607 _praROut[0].buf.nLen = (1 * _rout1Len[0]);
608 _TRY(_nErr, __QAIC_REMOTE(remote_handle_invoke)(_handle, REMOTE_SCALARS_MAKEX(0, _mid, 1, 2, 0, 0), _pra));
609 _COPY(_rout2, 0, _primROut, 0, 4);
610 _CATCH(_nErr) {}
611 return _nErr;
612 }
__QAIC_STUB(remotectl_close)613 __QAIC_STUB_EXPORT int __QAIC_STUB(remotectl_close)(int handle, char* dlerror, int dlerrorLen, int* nErr) __QAIC_STUB_ATTRIBUTE {
614 uint32_t _mid = 1;
615 return _stub_method_1(_remotectl_handle(), _mid, (uint32_t*)&handle, (char**)&dlerror, (uint32_t*)&dlerrorLen, (uint32_t*)nErr);
616 }
_stub_method_2(remote_handle _handle,uint32_t _mid,uint32_t _in0[1],uint32_t _in1[1])617 static __inline int _stub_method_2(remote_handle _handle, uint32_t _mid, uint32_t _in0[1], uint32_t _in1[1]) {
618 remote_arg _pra[1];
619 uint32_t _primIn[2];
620 int _nErr = 0;
621 _pra[0].buf.pv = (void*)_primIn;
622 _pra[0].buf.nLen = sizeof(_primIn);
623 _COPY(_primIn, 0, _in0, 0, 4);
624 _COPY(_primIn, 4, _in1, 0, 4);
625 _TRY(_nErr, __QAIC_REMOTE(remote_handle_invoke)(_handle, REMOTE_SCALARS_MAKEX(0, _mid, 1, 0, 0, 0), _pra));
626 _CATCH(_nErr) {}
627 return _nErr;
628 }
__QAIC_STUB(remotectl_grow_heap)629 __QAIC_STUB_EXPORT int __QAIC_STUB(remotectl_grow_heap)(uint32 phyAddr, uint32 nSize) __QAIC_STUB_ATTRIBUTE {
630 uint32_t _mid = 2;
631 return _stub_method_2(_remotectl_handle(), _mid, (uint32_t*)&phyAddr, (uint32_t*)&nSize);
632 }
_stub_method_3(remote_handle _handle,uint32_t _mid,uint32_t _in0[1],char * _in1[1],uint32_t _in1Len[1])633 static __inline int _stub_method_3(remote_handle _handle, uint32_t _mid, uint32_t _in0[1], char* _in1[1], uint32_t _in1Len[1]) {
634 remote_arg _pra[2];
635 uint32_t _primIn[2];
636 remote_arg* _praIn;
637 int _nErr = 0;
638 _pra[0].buf.pv = (void*)_primIn;
639 _pra[0].buf.nLen = sizeof(_primIn);
640 _COPY(_primIn, 0, _in0, 0, 4);
641 _COPY(_primIn, 4, _in1Len, 0, 4);
642 _praIn = (_pra + 1);
643 _praIn[0].buf.pv = _in1[0];
644 _praIn[0].buf.nLen = (4 * _in1Len[0]);
645 _TRY(_nErr, __QAIC_REMOTE(remote_handle_invoke)(_handle, REMOTE_SCALARS_MAKEX(0, _mid, 2, 0, 0, 0), _pra));
646 _CATCH(_nErr) {}
647 return _nErr;
648 }
__QAIC_STUB(remotectl_set_param)649 __QAIC_STUB_EXPORT int __QAIC_STUB(remotectl_set_param)(int reqID, const uint32* params, int paramsLen) __QAIC_STUB_ATTRIBUTE {
650 uint32_t _mid = 3;
651 return _stub_method_3(_remotectl_handle(), _mid, (uint32_t*)&reqID, (char**)¶ms, (uint32_t*)¶msLen);
652 }
653 #ifdef __cplusplus
654 }
655 #endif
656 #endif //_REMOTECTL_STUB_H
657