eveapps-core 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/data/build_matrix.json +17 -0
  2. package/data/commands.json +8752 -0
  3. package/data/feature_graph.json +2446 -0
  4. package/data/registers.json +3312 -0
  5. package/data/samples.json +685 -0
  6. package/dist/context.d.ts +12 -0
  7. package/dist/context.js +33 -0
  8. package/dist/context.js.map +1 -0
  9. package/dist/data/build_matrix.json +17 -0
  10. package/dist/data/commands.json +8750 -0
  11. package/dist/data/data/build_matrix.json +17 -0
  12. package/dist/data/data/commands.json +8752 -0
  13. package/dist/data/data/feature_graph.json +2446 -0
  14. package/dist/data/data/registers.json +3312 -0
  15. package/dist/data/data/samples.json +685 -0
  16. package/dist/data/data/source_index.json +79 -0
  17. package/dist/data/feature_graph.json +2444 -0
  18. package/dist/data/registers.json +3312 -0
  19. package/dist/data/samples.json +685 -0
  20. package/dist/data/source_index.json +79 -0
  21. package/dist/index.d.ts +11 -0
  22. package/dist/index.js +12 -0
  23. package/dist/index.js.map +1 -0
  24. package/dist/lib/loadIndex.d.ts +14 -0
  25. package/dist/lib/loadIndex.js +27 -0
  26. package/dist/lib/loadIndex.js.map +1 -0
  27. package/dist/lib/normalize.d.ts +2 -0
  28. package/dist/lib/normalize.js +10 -0
  29. package/dist/lib/normalize.js.map +1 -0
  30. package/dist/lib/rank.d.ts +5 -0
  31. package/dist/lib/rank.js +38 -0
  32. package/dist/lib/rank.js.map +1 -0
  33. package/dist/lib/workspace.d.ts +4 -0
  34. package/dist/lib/workspace.js +5 -0
  35. package/dist/lib/workspace.js.map +1 -0
  36. package/dist/router/analyzeQuery.d.ts +9 -0
  37. package/dist/router/analyzeQuery.js +12 -0
  38. package/dist/router/analyzeQuery.js.map +1 -0
  39. package/dist/router/index.d.ts +5 -0
  40. package/dist/router/index.js +6 -0
  41. package/dist/router/index.js.map +1 -0
  42. package/dist/router/mergeResults.d.ts +2 -0
  43. package/dist/router/mergeResults.js +12 -0
  44. package/dist/router/mergeResults.js.map +1 -0
  45. package/dist/router/retrieveAnswer.d.ts +3 -0
  46. package/dist/router/retrieveAnswer.js +40 -0
  47. package/dist/router/retrieveAnswer.js.map +1 -0
  48. package/dist/router/routeQuery.d.ts +3 -0
  49. package/dist/router/routeQuery.js +33 -0
  50. package/dist/router/routeQuery.js.map +1 -0
  51. package/dist/router/types.d.ts +12 -0
  52. package/dist/router/types.js +2 -0
  53. package/dist/router/types.js.map +1 -0
  54. package/dist/search/searchCore.d.ts +3 -0
  55. package/dist/search/searchCore.js +64 -0
  56. package/dist/search/searchCore.js.map +1 -0
  57. package/dist/search/searchEveApps.d.ts +2 -0
  58. package/dist/search/searchEveApps.js +107 -0
  59. package/dist/search/searchEveApps.js.map +1 -0
  60. package/dist/search/searchSourceFiles.d.ts +6 -0
  61. package/dist/search/searchSourceFiles.js +49 -0
  62. package/dist/search/searchSourceFiles.js.map +1 -0
  63. package/dist/server.d.ts +1 -0
  64. package/dist/server.js +229 -0
  65. package/dist/server.js.map +1 -0
  66. package/dist/src/context.d.ts +12 -0
  67. package/dist/src/context.js +71 -0
  68. package/dist/src/context.js.map +1 -0
  69. package/dist/src/index.d.ts +10 -0
  70. package/dist/src/index.js +11 -0
  71. package/dist/src/index.js.map +1 -0
  72. package/dist/src/lib/loadIndex.d.ts +14 -0
  73. package/dist/src/lib/loadIndex.js +27 -0
  74. package/dist/src/lib/loadIndex.js.map +1 -0
  75. package/dist/src/lib/normalize.d.ts +2 -0
  76. package/dist/src/lib/normalize.js +10 -0
  77. package/dist/src/lib/normalize.js.map +1 -0
  78. package/dist/src/lib/rank.d.ts +5 -0
  79. package/dist/src/lib/rank.js +38 -0
  80. package/dist/src/lib/rank.js.map +1 -0
  81. package/dist/src/lib/workspace.d.ts +4 -0
  82. package/dist/src/lib/workspace.js +5 -0
  83. package/dist/src/lib/workspace.js.map +1 -0
  84. package/dist/src/router/analyzeQuery.d.ts +9 -0
  85. package/dist/src/router/analyzeQuery.js +12 -0
  86. package/dist/src/router/analyzeQuery.js.map +1 -0
  87. package/dist/src/router/index.d.ts +5 -0
  88. package/dist/src/router/index.js +6 -0
  89. package/dist/src/router/index.js.map +1 -0
  90. package/dist/src/router/mergeResults.d.ts +2 -0
  91. package/dist/src/router/mergeResults.js +12 -0
  92. package/dist/src/router/mergeResults.js.map +1 -0
  93. package/dist/src/router/retrieveAnswer.d.ts +3 -0
  94. package/dist/src/router/retrieveAnswer.js +64 -0
  95. package/dist/src/router/retrieveAnswer.js.map +1 -0
  96. package/dist/src/router/routeQuery.d.ts +3 -0
  97. package/dist/src/router/routeQuery.js +33 -0
  98. package/dist/src/router/routeQuery.js.map +1 -0
  99. package/dist/src/router/types.d.ts +12 -0
  100. package/dist/src/router/types.js +2 -0
  101. package/dist/src/router/types.js.map +1 -0
  102. package/dist/src/search/searchCore.d.ts +3 -0
  103. package/dist/src/search/searchCore.js +64 -0
  104. package/dist/src/search/searchCore.js.map +1 -0
  105. package/dist/src/search/searchEveApps.d.ts +2 -0
  106. package/dist/src/search/searchEveApps.js +107 -0
  107. package/dist/src/search/searchEveApps.js.map +1 -0
  108. package/dist/src/search/searchSourceFiles.d.ts +6 -0
  109. package/dist/src/search/searchSourceFiles.js +49 -0
  110. package/dist/src/search/searchSourceFiles.js.map +1 -0
  111. package/dist/src/server.d.ts +1 -0
  112. package/dist/src/server.js +214 -0
  113. package/dist/src/server.js.map +1 -0
  114. package/dist/src/tools/explainEveSymbol.d.ts +56 -0
  115. package/dist/src/tools/explainEveSymbol.js +54 -0
  116. package/dist/src/tools/explainEveSymbol.js.map +1 -0
  117. package/dist/src/tools/findRelevantSample.d.ts +34 -0
  118. package/dist/src/tools/findRelevantSample.js +33 -0
  119. package/dist/src/tools/findRelevantSample.js.map +1 -0
  120. package/dist/src/tools/generateBuildCommand.d.ts +34 -0
  121. package/dist/src/tools/generateBuildCommand.js +54 -0
  122. package/dist/src/tools/generateBuildCommand.js.map +1 -0
  123. package/dist/src/tools/generateScreenScaffold.d.ts +32 -0
  124. package/dist/src/tools/generateScreenScaffold.js +73 -0
  125. package/dist/src/tools/generateScreenScaffold.js.map +1 -0
  126. package/dist/src/tools/traceFeatureToCommands.d.ts +36 -0
  127. package/dist/src/tools/traceFeatureToCommands.js +84 -0
  128. package/dist/src/tools/traceFeatureToCommands.js.map +1 -0
  129. package/dist/src/tools/validateBt820Code.d.ts +28 -0
  130. package/dist/src/tools/validateBt820Code.js +45 -0
  131. package/dist/src/tools/validateBt820Code.js.map +1 -0
  132. package/dist/src/types.d.ts +44 -0
  133. package/dist/src/types.js +2 -0
  134. package/dist/src/types.js.map +1 -0
  135. package/dist/tools/explainEveSymbol.d.ts +56 -0
  136. package/dist/tools/explainEveSymbol.js +54 -0
  137. package/dist/tools/explainEveSymbol.js.map +1 -0
  138. package/dist/tools/findRelevantSample.d.ts +34 -0
  139. package/dist/tools/findRelevantSample.js +33 -0
  140. package/dist/tools/findRelevantSample.js.map +1 -0
  141. package/dist/tools/generateBuildCommand.d.ts +34 -0
  142. package/dist/tools/generateBuildCommand.js +54 -0
  143. package/dist/tools/generateBuildCommand.js.map +1 -0
  144. package/dist/tools/generateScreenScaffold.d.ts +32 -0
  145. package/dist/tools/generateScreenScaffold.js +73 -0
  146. package/dist/tools/generateScreenScaffold.js.map +1 -0
  147. package/dist/tools/readSourceFile.d.ts +15 -0
  148. package/dist/tools/readSourceFile.js +26 -0
  149. package/dist/tools/readSourceFile.js.map +1 -0
  150. package/dist/tools/traceFeatureToCommands.d.ts +36 -0
  151. package/dist/tools/traceFeatureToCommands.js +84 -0
  152. package/dist/tools/traceFeatureToCommands.js.map +1 -0
  153. package/dist/tools/validateBt820Code.d.ts +28 -0
  154. package/dist/tools/validateBt820Code.js +45 -0
  155. package/dist/tools/validateBt820Code.js.map +1 -0
  156. package/dist/tsconfig.tsbuildinfo +1 -0
  157. package/dist/types.d.ts +44 -0
  158. package/dist/types.js +2 -0
  159. package/dist/types.js.map +1 -0
  160. package/package.json +27 -0
@@ -0,0 +1,3312 @@
1
+ [
2
+ {
3
+ "name": "CMD_ANIMDRAW",
4
+ "kind": "command_constant",
5
+ "value": "4294967119UL /**< 0xFFFFFF4FUL */",
6
+ "summary": "/@{",
7
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
8
+ "related_features": [
9
+ "animation",
10
+ "coprocessor"
11
+ ]
12
+ },
13
+ {
14
+ "name": "CMD_ANIMFRAME",
15
+ "kind": "command_constant",
16
+ "value": "4294967134UL /**< 0xFFFFFF5EUL */",
17
+ "summary": "< 0xFFFFFF4FUL",
18
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
19
+ "related_features": [
20
+ "animation",
21
+ "coprocessor"
22
+ ]
23
+ },
24
+ {
25
+ "name": "CMD_ANIMSTART",
26
+ "kind": "command_constant",
27
+ "value": "4294967135UL /**< 0xFFFFFF5FUL */",
28
+ "summary": "< 0xFFFFFF5EUL",
29
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
30
+ "related_features": [
31
+ "animation",
32
+ "coprocessor"
33
+ ]
34
+ },
35
+ {
36
+ "name": "CMD_ANIMSTOP",
37
+ "kind": "command_constant",
38
+ "value": "4294967117UL /**< 0xFFFFFF4DUL */",
39
+ "summary": "< 0xFFFFFF5FUL",
40
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
41
+ "related_features": [
42
+ "animation",
43
+ "coprocessor"
44
+ ]
45
+ },
46
+ {
47
+ "name": "CMD_ANIMXY",
48
+ "kind": "command_constant",
49
+ "value": "4294967118UL /**< 0xFFFFFF4EUL */",
50
+ "summary": "< 0xFFFFFF4DUL",
51
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
52
+ "related_features": [
53
+ "animation",
54
+ "coprocessor"
55
+ ]
56
+ },
57
+ {
58
+ "name": "CMD_APPEND",
59
+ "kind": "command_constant",
60
+ "value": "4294967068UL /**< 0xFFFFFF1CUL */",
61
+ "summary": "< 0xFFFFFF4EUL",
62
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
63
+ "related_features": [
64
+ "coprocessor"
65
+ ]
66
+ },
67
+ {
68
+ "name": "CMD_APPENDF",
69
+ "kind": "command_constant",
70
+ "value": "4294967122UL /**< 0xFFFFFF52UL */",
71
+ "summary": "< 0xFFFFFF1CUL",
72
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
73
+ "related_features": [
74
+ "coprocessor"
75
+ ]
76
+ },
77
+ {
78
+ "name": "CMD_ARC",
79
+ "kind": "command_constant",
80
+ "value": "4294967175UL /**< 0xFFFFFF87UL */",
81
+ "summary": "< 0xFFFFFF52UL",
82
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
83
+ "related_features": [
84
+ "coprocessor"
85
+ ]
86
+ },
87
+ {
88
+ "name": "CMD_BGCOLOR",
89
+ "kind": "command_constant",
90
+ "value": "4294967047UL /**< 0xFFFFFF07UL */",
91
+ "summary": "< 0xFFFFFF87UL",
92
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
93
+ "related_features": [
94
+ "coprocessor"
95
+ ]
96
+ },
97
+ {
98
+ "name": "CMD_BITMAP_TRANSFORM",
99
+ "kind": "command_constant",
100
+ "value": "4294967071UL /**< 0xFFFFFF1FUL */",
101
+ "summary": "< 0xFFFFFF07UL",
102
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
103
+ "related_features": [
104
+ "bitmap",
105
+ "coprocessor",
106
+ "image"
107
+ ]
108
+ },
109
+ {
110
+ "name": "CMD_BUTTON",
111
+ "kind": "command_constant",
112
+ "value": "4294967051UL /**< 0xFFFFFF0BUL */",
113
+ "summary": "< 0xFFFFFF1FUL",
114
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
115
+ "related_features": [
116
+ "coprocessor"
117
+ ]
118
+ },
119
+ {
120
+ "name": "CMD_CALIBRATE",
121
+ "kind": "command_constant",
122
+ "value": "4294967059UL /**< 0xFFFFFF13UL */",
123
+ "summary": "< 0xFFFFFF0BUL",
124
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
125
+ "related_features": [
126
+ "coprocessor"
127
+ ]
128
+ },
129
+ {
130
+ "name": "CMD_CALIBRATESUB",
131
+ "kind": "command_constant",
132
+ "value": "4294967126UL /**< 0xFFFFFF56UL */",
133
+ "summary": "< 0xFFFFFF13UL",
134
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
135
+ "related_features": [
136
+ "coprocessor"
137
+ ]
138
+ },
139
+ {
140
+ "name": "CMD_CALLLIST",
141
+ "kind": "command_constant",
142
+ "value": "4294967131UL /**< 0xFFFFFF5BUL */",
143
+ "summary": "< 0xFFFFFF56UL",
144
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
145
+ "related_features": [
146
+ "coprocessor"
147
+ ]
148
+ },
149
+ {
150
+ "name": "CMD_CGRADIENT",
151
+ "kind": "command_constant",
152
+ "value": "4294967178UL /**< 0xFFFFFF8AUL */",
153
+ "summary": "< 0xFFFFFF5BUL",
154
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
155
+ "related_features": [
156
+ "coprocessor"
157
+ ]
158
+ },
159
+ {
160
+ "name": "CMD_CLOCK",
161
+ "kind": "command_constant",
162
+ "value": "4294967058UL /**< 0xFFFFFF12UL */",
163
+ "summary": "< 0xFFFFFF8AUL",
164
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
165
+ "related_features": [
166
+ "coprocessor"
167
+ ]
168
+ },
169
+ {
170
+ "name": "CMD_COLDSTART",
171
+ "kind": "command_constant",
172
+ "value": "4294967086UL /**< 0xFFFFFF2EUL */",
173
+ "summary": "< 0xFFFFFF12UL",
174
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
175
+ "related_features": [
176
+ "coprocessor"
177
+ ]
178
+ },
179
+ {
180
+ "name": "CMD_COPYLIST",
181
+ "kind": "command_constant",
182
+ "value": "4294967176UL /**< 0xFFFFFF88UL */",
183
+ "summary": "< 0xFFFFFF2EUL",
184
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
185
+ "related_features": [
186
+ "coprocessor"
187
+ ]
188
+ },
189
+ {
190
+ "name": "CMD_DDRSHUTDOWN",
191
+ "kind": "command_constant",
192
+ "value": "4294967141UL /**< 0xFFFFFF65UL */",
193
+ "summary": "< 0xFFFFFF88UL",
194
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
195
+ "related_features": [
196
+ "coprocessor"
197
+ ]
198
+ },
199
+ {
200
+ "name": "CMD_DDRSTARTUP",
201
+ "kind": "command_constant",
202
+ "value": "4294967142UL /**< 0xFFFFFF66UL */",
203
+ "summary": "< 0xFFFFFF65UL",
204
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
205
+ "related_features": [
206
+ "coprocessor"
207
+ ]
208
+ },
209
+ {
210
+ "name": "CMD_DIAL",
211
+ "kind": "command_constant",
212
+ "value": "4294967081UL /**< 0xFFFFFF29UL */",
213
+ "summary": "< 0xFFFFFF66UL",
214
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
215
+ "related_features": [
216
+ "coprocessor"
217
+ ]
218
+ },
219
+ {
220
+ "name": "CMD_DLSTART",
221
+ "kind": "command_constant",
222
+ "value": "4294967040UL /**< 0xFFFFFF00UL */",
223
+ "summary": "< 0xFFFFFF29UL",
224
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
225
+ "related_features": [
226
+ "coprocessor"
227
+ ]
228
+ },
229
+ {
230
+ "name": "CMD_ENABLEREGION",
231
+ "kind": "command_constant",
232
+ "value": "4294967166UL /**< 0xFFFFFF7EUL */",
233
+ "summary": "< 0xFFFFFF00UL",
234
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
235
+ "related_features": [
236
+ "coprocessor"
237
+ ]
238
+ },
239
+ {
240
+ "name": "CMD_ENDLIST",
241
+ "kind": "command_constant",
242
+ "value": "4294967133UL /**< 0xFFFFFF5DUL */",
243
+ "summary": "< 0xFFFFFF7EUL",
244
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
245
+ "related_features": [
246
+ "coprocessor"
247
+ ]
248
+ },
249
+ {
250
+ "name": "CMD_FENCE",
251
+ "kind": "command_constant",
252
+ "value": "4294967144UL /**< 0xFFFFFF68UL */",
253
+ "summary": "< 0xFFFFFF5DUL",
254
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
255
+ "related_features": [
256
+ "coprocessor"
257
+ ]
258
+ },
259
+ {
260
+ "name": "CMD_FGCOLOR",
261
+ "kind": "command_constant",
262
+ "value": "4294967048UL /**< 0xFFFFFF08UL */",
263
+ "summary": "< 0xFFFFFF68UL",
264
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
265
+ "related_features": [
266
+ "coprocessor"
267
+ ]
268
+ },
269
+ {
270
+ "name": "CMD_FILLWIDTH",
271
+ "kind": "command_constant",
272
+ "value": "4294967121UL /**< 0xFFFFFF51UL */",
273
+ "summary": "< 0xFFFFFF08UL",
274
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
275
+ "related_features": [
276
+ "coprocessor"
277
+ ]
278
+ },
279
+ {
280
+ "name": "CMD_FLASHATTACH",
281
+ "kind": "command_constant",
282
+ "value": "4294967107UL /**< 0xFFFFFF43UL */",
283
+ "summary": "< 0xFFFFFF51UL",
284
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
285
+ "related_features": [
286
+ "coprocessor",
287
+ "flash",
288
+ "interface"
289
+ ]
290
+ },
291
+ {
292
+ "name": "CMD_FLASHDETACH",
293
+ "kind": "command_constant",
294
+ "value": "4294967106UL /**< 0xFFFFFF42UL */",
295
+ "summary": "< 0xFFFFFF43UL",
296
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
297
+ "related_features": [
298
+ "coprocessor",
299
+ "flash",
300
+ "interface"
301
+ ]
302
+ },
303
+ {
304
+ "name": "CMD_FLASHERASE",
305
+ "kind": "command_constant",
306
+ "value": "4294967102UL /**< 0xFFFFFF3EUL */",
307
+ "summary": "< 0xFFFFFF42UL",
308
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
309
+ "related_features": [
310
+ "coprocessor",
311
+ "flash",
312
+ "interface"
313
+ ]
314
+ },
315
+ {
316
+ "name": "CMD_FLASHFAST",
317
+ "kind": "command_constant",
318
+ "value": "4294967108UL /**< 0xFFFFFF44UL */",
319
+ "summary": "< 0xFFFFFF3EUL",
320
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
321
+ "related_features": [
322
+ "coprocessor",
323
+ "flash",
324
+ "interface"
325
+ ]
326
+ },
327
+ {
328
+ "name": "CMD_FLASHPROGRAM",
329
+ "kind": "command_constant",
330
+ "value": "4294967140UL /**< 0xFFFFFF64UL */",
331
+ "summary": "< 0xFFFFFF44UL",
332
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
333
+ "related_features": [
334
+ "coprocessor",
335
+ "flash",
336
+ "interface"
337
+ ]
338
+ },
339
+ {
340
+ "name": "CMD_FLASHREAD",
341
+ "kind": "command_constant",
342
+ "value": "4294967104UL /**< 0xFFFFFF40UL */",
343
+ "summary": "< 0xFFFFFF64UL",
344
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
345
+ "related_features": [
346
+ "coprocessor",
347
+ "flash",
348
+ "interface"
349
+ ]
350
+ },
351
+ {
352
+ "name": "CMD_FLASHSOURCE",
353
+ "kind": "command_constant",
354
+ "value": "4294967112UL /**< 0xFFFFFF48UL */",
355
+ "summary": "< 0xFFFFFF40UL",
356
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
357
+ "related_features": [
358
+ "coprocessor",
359
+ "flash",
360
+ "interface"
361
+ ]
362
+ },
363
+ {
364
+ "name": "CMD_FLASHSPIDESEL",
365
+ "kind": "command_constant",
366
+ "value": "4294967109UL /**< 0xFFFFFF45UL */",
367
+ "summary": "< 0xFFFFFF48UL",
368
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
369
+ "related_features": [
370
+ "coprocessor",
371
+ "flash",
372
+ "interface"
373
+ ]
374
+ },
375
+ {
376
+ "name": "CMD_FLASHSPIRX",
377
+ "kind": "command_constant",
378
+ "value": "4294967111UL /**< 0xFFFFFF47UL */",
379
+ "summary": "< 0xFFFFFF45UL",
380
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
381
+ "related_features": [
382
+ "coprocessor",
383
+ "flash",
384
+ "interface"
385
+ ]
386
+ },
387
+ {
388
+ "name": "CMD_FLASHSPITX",
389
+ "kind": "command_constant",
390
+ "value": "4294967110UL /**< 0xFFFFFF46UL */",
391
+ "summary": "< 0xFFFFFF47UL",
392
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
393
+ "related_features": [
394
+ "coprocessor",
395
+ "flash",
396
+ "interface"
397
+ ]
398
+ },
399
+ {
400
+ "name": "CMD_FLASHUPDATE",
401
+ "kind": "command_constant",
402
+ "value": "4294967105UL /**< 0xFFFFFF41UL */",
403
+ "summary": "< 0xFFFFFF46UL",
404
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
405
+ "related_features": [
406
+ "coprocessor",
407
+ "flash",
408
+ "interface"
409
+ ]
410
+ },
411
+ {
412
+ "name": "CMD_FLASHWRITE",
413
+ "kind": "command_constant",
414
+ "value": "4294967103UL /**< 0xFFFFFF3FUL */",
415
+ "summary": "< 0xFFFFFF41UL",
416
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
417
+ "related_features": [
418
+ "coprocessor",
419
+ "flash",
420
+ "interface"
421
+ ]
422
+ },
423
+ {
424
+ "name": "CMD_FSDIR",
425
+ "kind": "command_constant",
426
+ "value": "4294967182UL /**< 0xFFFFFF8EUL */",
427
+ "summary": "< 0xFFFFFF3FUL",
428
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
429
+ "related_features": [
430
+ "coprocessor",
431
+ "interface",
432
+ "sd_card"
433
+ ]
434
+ },
435
+ {
436
+ "name": "CMD_FSOPTION",
437
+ "kind": "command_constant",
438
+ "value": "4294967149UL /**< 0xFFFFFF6DUL */",
439
+ "summary": "< 0xFFFFFF8EUL",
440
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
441
+ "related_features": [
442
+ "coprocessor",
443
+ "interface",
444
+ "sd_card"
445
+ ]
446
+ },
447
+ {
448
+ "name": "CMD_FSREAD",
449
+ "kind": "command_constant",
450
+ "value": "4294967153UL /**< 0xFFFFFF71UL */",
451
+ "summary": "< 0xFFFFFF6DUL",
452
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
453
+ "related_features": [
454
+ "coprocessor",
455
+ "interface",
456
+ "sd_card"
457
+ ]
458
+ },
459
+ {
460
+ "name": "CMD_FSSIZE",
461
+ "kind": "command_constant",
462
+ "value": "4294967168UL /**< 0xFFFFFF80UL */",
463
+ "summary": "< 0xFFFFFF71UL",
464
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
465
+ "related_features": [
466
+ "coprocessor",
467
+ "interface",
468
+ "sd_card"
469
+ ]
470
+ },
471
+ {
472
+ "name": "CMD_FSSOURCE",
473
+ "kind": "command_constant",
474
+ "value": "4294967167UL /**< 0xFFFFFF7FUL */",
475
+ "summary": "< 0xFFFFFF80UL",
476
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
477
+ "related_features": [
478
+ "coprocessor",
479
+ "interface",
480
+ "sd_card"
481
+ ]
482
+ },
483
+ {
484
+ "name": "CMD_GAUGE",
485
+ "kind": "command_constant",
486
+ "value": "4294967057UL /**< 0xFFFFFF11UL */",
487
+ "summary": "< 0xFFFFFF7FUL",
488
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
489
+ "related_features": [
490
+ "coprocessor"
491
+ ]
492
+ },
493
+ {
494
+ "name": "CMD_GETIMAGE",
495
+ "kind": "command_constant",
496
+ "value": "4294967128UL /**< 0xFFFFFF58UL */",
497
+ "summary": "< 0xFFFFFF11UL",
498
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
499
+ "related_features": [
500
+ "bitmap",
501
+ "coprocessor",
502
+ "image"
503
+ ]
504
+ },
505
+ {
506
+ "name": "CMD_GETMATRIX",
507
+ "kind": "command_constant",
508
+ "value": "4294967087UL /**< 0xFFFFFF2FUL */",
509
+ "summary": "< 0xFFFFFF58UL",
510
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
511
+ "related_features": [
512
+ "coprocessor"
513
+ ]
514
+ },
515
+ {
516
+ "name": "CMD_GETPROPS",
517
+ "kind": "command_constant",
518
+ "value": "4294967074UL /**< 0xFFFFFF22UL */",
519
+ "summary": "< 0xFFFFFF2FUL",
520
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
521
+ "related_features": [
522
+ "coprocessor"
523
+ ]
524
+ },
525
+ {
526
+ "name": "CMD_GETPTR",
527
+ "kind": "command_constant",
528
+ "value": "4294967072UL /**< 0xFFFFFF20UL */",
529
+ "summary": "< 0xFFFFFF22UL",
530
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
531
+ "related_features": [
532
+ "coprocessor"
533
+ ]
534
+ },
535
+ {
536
+ "name": "CMD_GLOW",
537
+ "kind": "command_constant",
538
+ "value": "4294967179UL /**< 0xFFFFFF8BUL */",
539
+ "summary": "< 0xFFFFFF20UL",
540
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
541
+ "related_features": [
542
+ "coprocessor"
543
+ ]
544
+ },
545
+ {
546
+ "name": "CMD_GRADCOLOR",
547
+ "kind": "command_constant",
548
+ "value": "4294967088UL /**< 0xFFFFFF30UL */",
549
+ "summary": "< 0xFFFFFF8BUL",
550
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
551
+ "related_features": [
552
+ "coprocessor"
553
+ ]
554
+ },
555
+ {
556
+ "name": "CMD_GRADIENT",
557
+ "kind": "command_constant",
558
+ "value": "4294967049UL /**< 0xFFFFFF09UL */",
559
+ "summary": "< 0xFFFFFF30UL",
560
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
561
+ "related_features": [
562
+ "coprocessor"
563
+ ]
564
+ },
565
+ {
566
+ "name": "CMD_GRADIENTA",
567
+ "kind": "command_constant",
568
+ "value": "4294967120UL /**< 0xFFFFFF50UL */",
569
+ "summary": "< 0xFFFFFF09UL",
570
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
571
+ "related_features": [
572
+ "coprocessor"
573
+ ]
574
+ },
575
+ {
576
+ "name": "CMD_GRAPHICSFINISH",
577
+ "kind": "command_constant",
578
+ "value": "4294967147UL /**< 0xFFFFFF6BUL */",
579
+ "summary": "< 0xFFFFFF50UL",
580
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
581
+ "related_features": [
582
+ "coprocessor"
583
+ ]
584
+ },
585
+ {
586
+ "name": "CMD_I2SSTARTUP",
587
+ "kind": "command_constant",
588
+ "value": "4294967145UL /**< 0xFFFFFF69UL */",
589
+ "summary": "< 0xFFFFFF6BUL",
590
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
591
+ "related_features": [
592
+ "audio",
593
+ "coprocessor"
594
+ ]
595
+ },
596
+ {
597
+ "name": "CMD_INFLATE",
598
+ "kind": "command_constant",
599
+ "value": "4294967114UL /**< 0xFFFFFF4AUL */",
600
+ "summary": "< 0xFFFFFF69UL",
601
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
602
+ "related_features": [
603
+ "coprocessor"
604
+ ]
605
+ },
606
+ {
607
+ "name": "CMD_INTERRUPT",
608
+ "kind": "command_constant",
609
+ "value": "4294967042UL /**< 0xFFFFFF02UL */",
610
+ "summary": "< 0xFFFFFF4AUL",
611
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
612
+ "related_features": [
613
+ "coprocessor"
614
+ ]
615
+ },
616
+ {
617
+ "name": "CMD_KEYS",
618
+ "kind": "command_constant",
619
+ "value": "4294967052UL /**< 0xFFFFFF0CUL */",
620
+ "summary": "< 0xFFFFFF02UL",
621
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
622
+ "related_features": [
623
+ "coprocessor"
624
+ ]
625
+ },
626
+ {
627
+ "name": "CMD_LOADASSET",
628
+ "kind": "command_constant",
629
+ "value": "4294967169UL /**< 0xFFFFFF81UL */",
630
+ "summary": "< 0xFFFFFF0CUL",
631
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
632
+ "related_features": [
633
+ "coprocessor"
634
+ ]
635
+ },
636
+ {
637
+ "name": "CMD_LOADIDENTITY",
638
+ "kind": "command_constant",
639
+ "value": "4294967075UL /**< 0xFFFFFF23UL */",
640
+ "summary": "< 0xFFFFFF81UL",
641
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
642
+ "related_features": [
643
+ "coprocessor"
644
+ ]
645
+ },
646
+ {
647
+ "name": "CMD_LOADIMAGE",
648
+ "kind": "command_constant",
649
+ "value": "4294967073UL /**< 0xFFFFFF21UL */",
650
+ "summary": "< 0xFFFFFF23UL",
651
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
652
+ "related_features": [
653
+ "bitmap",
654
+ "coprocessor",
655
+ "image"
656
+ ]
657
+ },
658
+ {
659
+ "name": "CMD_LOADPATCH",
660
+ "kind": "command_constant",
661
+ "value": "4294967170UL /**< 0xFFFFFF82UL */",
662
+ "summary": "< 0xFFFFFF21UL",
663
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
664
+ "related_features": [
665
+ "coprocessor"
666
+ ]
667
+ },
668
+ {
669
+ "name": "CMD_LOADWAV",
670
+ "kind": "command_constant",
671
+ "value": "4294967173UL /**< 0xFFFFFF85UL */",
672
+ "summary": "< 0xFFFFFF82UL",
673
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
674
+ "related_features": [
675
+ "audio",
676
+ "coprocessor"
677
+ ]
678
+ },
679
+ {
680
+ "name": "CMD_LOGO",
681
+ "kind": "command_constant",
682
+ "value": "4294967085UL /**< 0xFFFFFF2DUL */",
683
+ "summary": "< 0xFFFFFF85UL",
684
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
685
+ "related_features": [
686
+ "coprocessor"
687
+ ]
688
+ },
689
+ {
690
+ "name": "CMD_MEDIAFIFO",
691
+ "kind": "command_constant",
692
+ "value": "4294967092UL /**< 0xFFFFFF34UL */",
693
+ "summary": "< 0xFFFFFF2DUL",
694
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
695
+ "related_features": [
696
+ "coprocessor"
697
+ ]
698
+ },
699
+ {
700
+ "name": "CMD_MEMCPY",
701
+ "kind": "command_constant",
702
+ "value": "4294967067UL /**< 0xFFFFFF1BUL */",
703
+ "summary": "< 0xFFFFFF34UL",
704
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
705
+ "related_features": [
706
+ "coprocessor"
707
+ ]
708
+ },
709
+ {
710
+ "name": "CMD_MEMCRC",
711
+ "kind": "command_constant",
712
+ "value": "4294967062UL /**< 0xFFFFFF16UL */",
713
+ "summary": "< 0xFFFFFF1BUL",
714
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
715
+ "related_features": [
716
+ "coprocessor"
717
+ ]
718
+ },
719
+ {
720
+ "name": "CMD_MEMSET",
721
+ "kind": "command_constant",
722
+ "value": "4294967065UL /**< 0xFFFFFF19UL */",
723
+ "summary": "< 0xFFFFFF16UL",
724
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
725
+ "related_features": [
726
+ "coprocessor"
727
+ ]
728
+ },
729
+ {
730
+ "name": "CMD_MEMWRITE",
731
+ "kind": "command_constant",
732
+ "value": "4294967064UL /**< 0xFFFFFF18UL */",
733
+ "summary": "< 0xFFFFFF19UL",
734
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
735
+ "related_features": [
736
+ "coprocessor"
737
+ ]
738
+ },
739
+ {
740
+ "name": "CMD_MEMZERO",
741
+ "kind": "command_constant",
742
+ "value": "4294967066UL /**< 0xFFFFFF1AUL */",
743
+ "summary": "< 0xFFFFFF18UL",
744
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
745
+ "related_features": [
746
+ "coprocessor"
747
+ ]
748
+ },
749
+ {
750
+ "name": "CMD_NEWLIST",
751
+ "kind": "command_constant",
752
+ "value": "4294967132UL /**< 0xFFFFFF5CUL */",
753
+ "summary": "< 0xFFFFFF1AUL",
754
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
755
+ "related_features": [
756
+ "coprocessor"
757
+ ]
758
+ },
759
+ {
760
+ "name": "CMD_NOP",
761
+ "kind": "command_constant",
762
+ "value": "4294967123UL /**< 0xFFFFFF53UL */",
763
+ "summary": "< 0xFFFFFF5CUL",
764
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
765
+ "related_features": [
766
+ "coprocessor"
767
+ ]
768
+ },
769
+ {
770
+ "name": "CMD_NUMBER",
771
+ "kind": "command_constant",
772
+ "value": "4294967082UL /**< 0xFFFFFF2AUL */",
773
+ "summary": "< 0xFFFFFF53UL",
774
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
775
+ "related_features": [
776
+ "coprocessor"
777
+ ]
778
+ },
779
+ {
780
+ "name": "CMD_PLAYVIDEO",
781
+ "kind": "command_constant",
782
+ "value": "4294967093UL /**< 0xFFFFFF35UL */",
783
+ "summary": "< 0xFFFFFF2AUL",
784
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
785
+ "related_features": [
786
+ "coprocessor",
787
+ "video"
788
+ ]
789
+ },
790
+ {
791
+ "name": "CMD_PLAYWAV",
792
+ "kind": "command_constant",
793
+ "value": "4294967161UL /**< 0xFFFFFF79UL */",
794
+ "summary": "< 0xFFFFFF35UL",
795
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
796
+ "related_features": [
797
+ "audio",
798
+ "coprocessor"
799
+ ]
800
+ },
801
+ {
802
+ "name": "CMD_PROGRESS",
803
+ "kind": "command_constant",
804
+ "value": "4294967053UL /**< 0xFFFFFF0DUL */",
805
+ "summary": "< 0xFFFFFF79UL",
806
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
807
+ "related_features": [
808
+ "coprocessor"
809
+ ]
810
+ },
811
+ {
812
+ "name": "CMD_REGREAD",
813
+ "kind": "command_constant",
814
+ "value": "4294967063UL /**< 0xFFFFFF17UL */",
815
+ "summary": "< 0xFFFFFF0DUL",
816
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
817
+ "related_features": [
818
+ "coprocessor"
819
+ ]
820
+ },
821
+ {
822
+ "name": "CMD_REGWRITE",
823
+ "kind": "command_constant",
824
+ "value": "4294967174UL /**< 0xFFFFFF86UL */",
825
+ "summary": "< 0xFFFFFF17UL",
826
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
827
+ "related_features": [
828
+ "coprocessor"
829
+ ]
830
+ },
831
+ {
832
+ "name": "CMD_RENDERTARGET",
833
+ "kind": "command_constant",
834
+ "value": "4294967181UL /**< 0xFFFFFF8DUL */",
835
+ "summary": "< 0xFFFFFF86UL",
836
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
837
+ "related_features": [
838
+ "coprocessor"
839
+ ]
840
+ },
841
+ {
842
+ "name": "CMD_RESETFONTS",
843
+ "kind": "command_constant",
844
+ "value": "4294967116UL /**< 0xFFFFFF4CUL */",
845
+ "summary": "< 0xFFFFFF8DUL",
846
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
847
+ "related_features": [
848
+ "coprocessor",
849
+ "font",
850
+ "text"
851
+ ]
852
+ },
853
+ {
854
+ "name": "CMD_RESTORECONTEXT",
855
+ "kind": "command_constant",
856
+ "value": "4294967165UL /**< 0xFFFFFF7DUL */",
857
+ "summary": "< 0xFFFFFF4CUL",
858
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
859
+ "related_features": [
860
+ "coprocessor"
861
+ ]
862
+ },
863
+ {
864
+ "name": "CMD_RESULT",
865
+ "kind": "command_constant",
866
+ "value": "4294967177UL /**< 0xFFFFFF89UL */",
867
+ "summary": "< 0xFFFFFF7DUL",
868
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
869
+ "related_features": [
870
+ "coprocessor"
871
+ ]
872
+ },
873
+ {
874
+ "name": "CMD_RETURN",
875
+ "kind": "command_constant",
876
+ "value": "4294967130UL /**< 0xFFFFFF5AUL */",
877
+ "summary": "< 0xFFFFFF89UL",
878
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
879
+ "related_features": [
880
+ "coprocessor"
881
+ ]
882
+ },
883
+ {
884
+ "name": "CMD_ROMFONT",
885
+ "kind": "command_constant",
886
+ "value": "4294967097UL /**< 0xFFFFFF39UL */",
887
+ "summary": "< 0xFFFFFF5AUL",
888
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
889
+ "related_features": [
890
+ "coprocessor",
891
+ "font",
892
+ "text"
893
+ ]
894
+ },
895
+ {
896
+ "name": "CMD_ROTATE",
897
+ "kind": "command_constant",
898
+ "value": "4294967078UL /**< 0xFFFFFF26UL */",
899
+ "summary": "< 0xFFFFFF39UL",
900
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
901
+ "related_features": [
902
+ "coprocessor"
903
+ ]
904
+ },
905
+ {
906
+ "name": "CMD_ROTATEAROUND",
907
+ "kind": "command_constant",
908
+ "value": "4294967115UL /**< 0xFFFFFF4BUL */",
909
+ "summary": "< 0xFFFFFF26UL",
910
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
911
+ "related_features": [
912
+ "coprocessor"
913
+ ]
914
+ },
915
+ {
916
+ "name": "CMD_RUNANIM",
917
+ "kind": "command_constant",
918
+ "value": "4294967136UL /**< 0xFFFFFF60UL */",
919
+ "summary": "< 0xFFFFFF4BUL",
920
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
921
+ "related_features": [
922
+ "animation",
923
+ "coprocessor"
924
+ ]
925
+ },
926
+ {
927
+ "name": "CMD_SAVECONTEXT",
928
+ "kind": "command_constant",
929
+ "value": "4294967164UL /**< 0xFFFFFF7CUL */",
930
+ "summary": "< 0xFFFFFF60UL",
931
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
932
+ "related_features": [
933
+ "coprocessor"
934
+ ]
935
+ },
936
+ {
937
+ "name": "CMD_SCALE",
938
+ "kind": "command_constant",
939
+ "value": "4294967077UL /**< 0xFFFFFF25UL */",
940
+ "summary": "< 0xFFFFFF7CUL",
941
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
942
+ "related_features": [
943
+ "coprocessor"
944
+ ]
945
+ },
946
+ {
947
+ "name": "CMD_SCREENSAVER",
948
+ "kind": "command_constant",
949
+ "value": "4294967083UL /**< 0xFFFFFF2BUL */",
950
+ "summary": "< 0xFFFFFF25UL",
951
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
952
+ "related_features": [
953
+ "coprocessor"
954
+ ]
955
+ },
956
+ {
957
+ "name": "CMD_SCROLLBAR",
958
+ "kind": "command_constant",
959
+ "value": "4294967055UL /**< 0xFFFFFF0FUL */",
960
+ "summary": "< 0xFFFFFF2BUL",
961
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
962
+ "related_features": [
963
+ "coprocessor"
964
+ ]
965
+ },
966
+ {
967
+ "name": "CMD_SDATTACH",
968
+ "kind": "command_constant",
969
+ "value": "4294967150UL /**< 0xFFFFFF6EUL */",
970
+ "summary": "< 0xFFFFFF0FUL",
971
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
972
+ "related_features": [
973
+ "coprocessor"
974
+ ]
975
+ },
976
+ {
977
+ "name": "CMD_SDBLOCKREAD",
978
+ "kind": "command_constant",
979
+ "value": "4294967151UL /**< 0xFFFFFF6FUL */",
980
+ "summary": "< 0xFFFFFF6EUL",
981
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
982
+ "related_features": [
983
+ "coprocessor"
984
+ ]
985
+ },
986
+ {
987
+ "name": "CMD_SETBASE",
988
+ "kind": "command_constant",
989
+ "value": "4294967091UL /**< 0xFFFFFF33UL */",
990
+ "summary": "< 0xFFFFFF6FUL",
991
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
992
+ "related_features": [
993
+ "coprocessor"
994
+ ]
995
+ },
996
+ {
997
+ "name": "CMD_SETBITMAP",
998
+ "kind": "command_constant",
999
+ "value": "4294967101UL /**< 0xFFFFFF3DUL */",
1000
+ "summary": "< 0xFFFFFF33UL",
1001
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1002
+ "related_features": [
1003
+ "bitmap",
1004
+ "coprocessor",
1005
+ "image"
1006
+ ]
1007
+ },
1008
+ {
1009
+ "name": "CMD_SETFONT",
1010
+ "kind": "command_constant",
1011
+ "value": "4294967094UL /**< 0xFFFFFF36UL */",
1012
+ "summary": "< 0xFFFFFF3DUL",
1013
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1014
+ "related_features": [
1015
+ "coprocessor",
1016
+ "font",
1017
+ "text"
1018
+ ]
1019
+ },
1020
+ {
1021
+ "name": "CMD_SETMATRIX",
1022
+ "kind": "command_constant",
1023
+ "value": "4294967079UL /**< 0xFFFFFF27UL */",
1024
+ "summary": "< 0xFFFFFF36UL",
1025
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1026
+ "related_features": [
1027
+ "coprocessor"
1028
+ ]
1029
+ },
1030
+ {
1031
+ "name": "CMD_SETROTATE",
1032
+ "kind": "command_constant",
1033
+ "value": "4294967089UL /**< 0xFFFFFF31UL */",
1034
+ "summary": "< 0xFFFFFF27UL",
1035
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1036
+ "related_features": [
1037
+ "coprocessor"
1038
+ ]
1039
+ },
1040
+ {
1041
+ "name": "CMD_SETSCRATCH",
1042
+ "kind": "command_constant",
1043
+ "value": "4294967095UL /**< 0xFFFFFF37UL */",
1044
+ "summary": "< 0xFFFFFF31UL",
1045
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1046
+ "related_features": [
1047
+ "coprocessor"
1048
+ ]
1049
+ },
1050
+ {
1051
+ "name": "CMD_SKETCH",
1052
+ "kind": "command_constant",
1053
+ "value": "4294967084UL /**< 0xFFFFFF2CUL */",
1054
+ "summary": "< 0xFFFFFF37UL",
1055
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1056
+ "related_features": [
1057
+ "coprocessor"
1058
+ ]
1059
+ },
1060
+ {
1061
+ "name": "CMD_SKIPCOND",
1062
+ "kind": "command_constant",
1063
+ "value": "4294967180UL /**< 0xFFFFFF8CUL */",
1064
+ "summary": "< 0xFFFFFF2CUL",
1065
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1066
+ "related_features": [
1067
+ "coprocessor"
1068
+ ]
1069
+ },
1070
+ {
1071
+ "name": "CMD_SLIDER",
1072
+ "kind": "command_constant",
1073
+ "value": "4294967054UL /**< 0xFFFFFF0EUL */",
1074
+ "summary": "< 0xFFFFFF8CUL",
1075
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1076
+ "related_features": [
1077
+ "coprocessor"
1078
+ ]
1079
+ },
1080
+ {
1081
+ "name": "CMD_SNAPSHOT",
1082
+ "kind": "command_constant",
1083
+ "value": "4294967069UL /**< 0xFFFFFF1DUL */",
1084
+ "summary": "< 0xFFFFFF0EUL",
1085
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1086
+ "related_features": [
1087
+ "coprocessor"
1088
+ ]
1089
+ },
1090
+ {
1091
+ "name": "CMD_SPINNER",
1092
+ "kind": "command_constant",
1093
+ "value": "4294967060UL /**< 0xFFFFFF14UL */",
1094
+ "summary": "< 0xFFFFFF1DUL",
1095
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1096
+ "related_features": [
1097
+ "coprocessor"
1098
+ ]
1099
+ },
1100
+ {
1101
+ "name": "CMD_STOP",
1102
+ "kind": "command_constant",
1103
+ "value": "4294967061UL /**< 0xFFFFFF15UL */",
1104
+ "summary": "< 0xFFFFFF14UL",
1105
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1106
+ "related_features": [
1107
+ "coprocessor"
1108
+ ]
1109
+ },
1110
+ {
1111
+ "name": "CMD_SWAP",
1112
+ "kind": "command_constant",
1113
+ "value": "4294967041UL /**< 0xFFFFFF01UL */",
1114
+ "summary": "< 0xFFFFFF15UL",
1115
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1116
+ "related_features": [
1117
+ "coprocessor"
1118
+ ]
1119
+ },
1120
+ {
1121
+ "name": "CMD_SYNC",
1122
+ "kind": "command_constant",
1123
+ "value": "4294967100UL /**< 0xFFFFFF3CUL */",
1124
+ "summary": "< 0xFFFFFF01UL",
1125
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1126
+ "related_features": [
1127
+ "coprocessor"
1128
+ ]
1129
+ },
1130
+ {
1131
+ "name": "CMD_TESTCARD",
1132
+ "kind": "command_constant",
1133
+ "value": "4294967127UL /**< 0xFFFFFF57UL */",
1134
+ "summary": "< 0xFFFFFF3CUL",
1135
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1136
+ "related_features": [
1137
+ "coprocessor"
1138
+ ]
1139
+ },
1140
+ {
1141
+ "name": "CMD_TEXT",
1142
+ "kind": "command_constant",
1143
+ "value": "4294967050UL /**< 0xFFFFFF0AUL */",
1144
+ "summary": "< 0xFFFFFF57UL",
1145
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1146
+ "related_features": [
1147
+ "coprocessor"
1148
+ ]
1149
+ },
1150
+ {
1151
+ "name": "CMD_TEXTDIM",
1152
+ "kind": "command_constant",
1153
+ "value": "4294967172UL /**< 0xFFFFFF84UL */",
1154
+ "summary": "< 0xFFFFFF0AUL",
1155
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1156
+ "related_features": [
1157
+ "coprocessor"
1158
+ ]
1159
+ },
1160
+ {
1161
+ "name": "CMD_TOGGLE",
1162
+ "kind": "command_constant",
1163
+ "value": "4294967056UL /**< 0xFFFFFF10UL */",
1164
+ "summary": "< 0xFFFFFF84UL",
1165
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1166
+ "related_features": [
1167
+ "coprocessor"
1168
+ ]
1169
+ },
1170
+ {
1171
+ "name": "CMD_TRACK",
1172
+ "kind": "command_constant",
1173
+ "value": "4294967080UL /**< 0xFFFFFF28UL */",
1174
+ "summary": "< 0xFFFFFF10UL",
1175
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1176
+ "related_features": [
1177
+ "coprocessor"
1178
+ ]
1179
+ },
1180
+ {
1181
+ "name": "CMD_TRANSLATE",
1182
+ "kind": "command_constant",
1183
+ "value": "4294967076UL /**< 0xFFFFFF24UL */",
1184
+ "summary": "< 0xFFFFFF28UL",
1185
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1186
+ "related_features": [
1187
+ "coprocessor"
1188
+ ]
1189
+ },
1190
+ {
1191
+ "name": "CMD_VIDEOFRAME",
1192
+ "kind": "command_constant",
1193
+ "value": "4294967099UL /**< 0xFFFFFF3BUL */",
1194
+ "summary": "< 0xFFFFFF24UL",
1195
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1196
+ "related_features": [
1197
+ "coprocessor",
1198
+ "video"
1199
+ ]
1200
+ },
1201
+ {
1202
+ "name": "CMD_VIDEOSTART",
1203
+ "kind": "command_constant",
1204
+ "value": "4294967098UL /**< 0xFFFFFF3AUL */",
1205
+ "summary": "< 0xFFFFFF3BUL",
1206
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1207
+ "related_features": [
1208
+ "coprocessor",
1209
+ "video"
1210
+ ]
1211
+ },
1212
+ {
1213
+ "name": "CMD_WAIT",
1214
+ "kind": "command_constant",
1215
+ "value": "4294967129UL /**< 0xFFFFFF59UL */",
1216
+ "summary": "< 0xFFFFFF3AUL",
1217
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1218
+ "related_features": [
1219
+ "coprocessor"
1220
+ ]
1221
+ },
1222
+ {
1223
+ "name": "CMD_WAITCHANGE",
1224
+ "kind": "command_constant",
1225
+ "value": "4294967143UL /**< 0xFFFFFF67UL */",
1226
+ "summary": "< 0xFFFFFF59UL",
1227
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1228
+ "related_features": [
1229
+ "coprocessor"
1230
+ ]
1231
+ },
1232
+ {
1233
+ "name": "CMD_WAITCOND",
1234
+ "kind": "command_constant",
1235
+ "value": "4294967160UL /**< 0xFFFFFF78UL */",
1236
+ "summary": "< 0xFFFFFF67UL",
1237
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1238
+ "related_features": [
1239
+ "coprocessor"
1240
+ ]
1241
+ },
1242
+ {
1243
+ "name": "CMD_WATCHDOG",
1244
+ "kind": "command_constant",
1245
+ "value": "4294967171UL /**< 0xFFFFFF83UL */",
1246
+ "summary": "< 0xFFFFFF78UL",
1247
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1248
+ "related_features": [
1249
+ "coprocessor"
1250
+ ]
1251
+ },
1252
+ {
1253
+ "name": "EVE_CMD_FIFO_ALIGNMENT_MASK",
1254
+ "kind": "constant",
1255
+ "value": "(EVE_CMD_FIFO_SIZE - ((4) - 1))",
1256
+ "summary": "< 16kB coprocessor FIFO size",
1257
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1258
+ "related_features": [
1259
+ "coprocessor"
1260
+ ]
1261
+ },
1262
+ {
1263
+ "name": "EVE_CMD_FIFO_COUNT",
1264
+ "kind": "constant",
1265
+ "value": "(EVE_CMD_FIFO_SIZE / 4)",
1266
+ "summary": "< 16kB coprocessor FIFO size",
1267
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1268
+ "related_features": [
1269
+ "coprocessor"
1270
+ ]
1271
+ },
1272
+ {
1273
+ "name": "EVE_CMD_FIFO_MASK",
1274
+ "kind": "constant",
1275
+ "value": "(EVE_CMD_FIFO_SIZE - 1)",
1276
+ "summary": "< 16kB coprocessor FIFO size",
1277
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1278
+ "related_features": [
1279
+ "coprocessor"
1280
+ ]
1281
+ },
1282
+ {
1283
+ "name": "EVE_CMD_FIFO_SIZE",
1284
+ "kind": "constant",
1285
+ "value": "((16) * 1024UL) /**< 16kB coprocessor FIFO size */",
1286
+ "summary": "< 16kB Display List buffer size",
1287
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1288
+ "related_features": [
1289
+ "coprocessor"
1290
+ ]
1291
+ },
1292
+ {
1293
+ "name": "EVE_CMD_FIFO_SPACE",
1294
+ "kind": "constant",
1295
+ "value": "(EVE_CMD_FIFO_SIZE - 4)",
1296
+ "summary": "< 16kB coprocessor FIFO size",
1297
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1298
+ "related_features": [
1299
+ "coprocessor"
1300
+ ]
1301
+ },
1302
+ {
1303
+ "name": "EVE_DL_SIZE",
1304
+ "kind": "constant",
1305
+ "value": "(16 * 1024UL) /**< 16kB Display List buffer size */",
1306
+ "summary": "Definitions used for BT820 coprocessor command buffer",
1307
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1308
+ "related_features": []
1309
+ },
1310
+ {
1311
+ "name": "EVE_GPU_DEFS__H",
1312
+ "kind": "constant",
1313
+ "value": "/*********************",
1314
+ "summary": "@file EVE_GpuDefs.h",
1315
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1316
+ "related_features": []
1317
+ },
1318
+ {
1319
+ "name": "OPT_1BIT",
1320
+ "kind": "option_flag",
1321
+ "value": "0UL /**< 0x0 */",
1322
+ "summary": "< 0x0",
1323
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1324
+ "related_features": []
1325
+ },
1326
+ {
1327
+ "name": "OPT_3D",
1328
+ "kind": "option_flag",
1329
+ "value": "0UL /**< 0x0 */",
1330
+ "summary": "/@{",
1331
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1332
+ "related_features": []
1333
+ },
1334
+ {
1335
+ "name": "OPT_4BIT",
1336
+ "kind": "option_flag",
1337
+ "value": "2UL /**< 0x2 */",
1338
+ "summary": "< 0x2",
1339
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1340
+ "related_features": []
1341
+ },
1342
+ {
1343
+ "name": "OPT_BASELINE",
1344
+ "kind": "option_flag",
1345
+ "value": "32768UL /**< 0x8000 */",
1346
+ "summary": "< 0x4000",
1347
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1348
+ "related_features": []
1349
+ },
1350
+ {
1351
+ "name": "OPT_CASESENSITIVE",
1352
+ "kind": "option_flag",
1353
+ "value": "2UL /**< 0x2 */",
1354
+ "summary": "< 0x2",
1355
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1356
+ "related_features": []
1357
+ },
1358
+ {
1359
+ "name": "OPT_CENTER",
1360
+ "kind": "option_flag",
1361
+ "value": "1536UL /**< 0x600 */",
1362
+ "summary": "< 0x400",
1363
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1364
+ "related_features": []
1365
+ },
1366
+ {
1367
+ "name": "OPT_CENTERX",
1368
+ "kind": "option_flag",
1369
+ "value": "512UL /**< 0x200 */",
1370
+ "summary": "< 0x200",
1371
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1372
+ "related_features": []
1373
+ },
1374
+ {
1375
+ "name": "OPT_CENTERY",
1376
+ "kind": "option_flag",
1377
+ "value": "1024UL /**< 0x400 */",
1378
+ "summary": "< 0x200",
1379
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1380
+ "related_features": []
1381
+ },
1382
+ {
1383
+ "name": "OPT_COMPLETEREG",
1384
+ "kind": "option_flag",
1385
+ "value": "4096UL /**< 0x1000 */",
1386
+ "summary": "< 0x800",
1387
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1388
+ "related_features": []
1389
+ },
1390
+ {
1391
+ "name": "OPT_DIRECT",
1392
+ "kind": "option_flag",
1393
+ "value": "2048UL /**< 0x800 */",
1394
+ "summary": "< 0x800",
1395
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1396
+ "related_features": []
1397
+ },
1398
+ {
1399
+ "name": "OPT_DIRSEP_UNIX",
1400
+ "kind": "option_flag",
1401
+ "value": "8UL /**< 0x8 */",
1402
+ "summary": "< 0x8",
1403
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1404
+ "related_features": []
1405
+ },
1406
+ {
1407
+ "name": "OPT_DIRSEP_WIN",
1408
+ "kind": "option_flag",
1409
+ "value": "4UL /**< 0x4 */",
1410
+ "summary": "< 0x2",
1411
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1412
+ "related_features": []
1413
+ },
1414
+ {
1415
+ "name": "OPT_DITHER",
1416
+ "kind": "option_flag",
1417
+ "value": "256UL /**< 0x100 */",
1418
+ "summary": "< 0x100",
1419
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1420
+ "related_features": []
1421
+ },
1422
+ {
1423
+ "name": "OPT_FILL",
1424
+ "kind": "option_flag",
1425
+ "value": "8192UL /**< 0x2000 */",
1426
+ "summary": "< 0x1000",
1427
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1428
+ "related_features": []
1429
+ },
1430
+ {
1431
+ "name": "OPT_FLASH",
1432
+ "kind": "option_flag",
1433
+ "value": "64UL /**< 0x40 */",
1434
+ "summary": "< 0x20",
1435
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1436
+ "related_features": [
1437
+ "flash",
1438
+ "interface"
1439
+ ]
1440
+ },
1441
+ {
1442
+ "name": "OPT_FLAT",
1443
+ "kind": "option_flag",
1444
+ "value": "256UL /**< 0x100 */",
1445
+ "summary": "< 0x80",
1446
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1447
+ "related_features": []
1448
+ },
1449
+ {
1450
+ "name": "OPT_FORMAT",
1451
+ "kind": "option_flag",
1452
+ "value": "4096UL /**< 0x1000 */",
1453
+ "summary": "< 0x1000",
1454
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1455
+ "related_features": []
1456
+ },
1457
+ {
1458
+ "name": "OPT_FS",
1459
+ "kind": "option_flag",
1460
+ "value": "8192UL /**< 0x2000 */",
1461
+ "summary": "< 0x2000",
1462
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1463
+ "related_features": [
1464
+ "interface",
1465
+ "sd_card"
1466
+ ]
1467
+ },
1468
+ {
1469
+ "name": "OPT_FULLSCREEN",
1470
+ "kind": "option_flag",
1471
+ "value": "8UL /**< 0x8 */",
1472
+ "summary": "< 0x8",
1473
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1474
+ "related_features": []
1475
+ },
1476
+ {
1477
+ "name": "OPT_FULLSPEED",
1478
+ "kind": "option_flag",
1479
+ "value": "0UL /**< 0x0 */",
1480
+ "summary": "< 0x0",
1481
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1482
+ "related_features": []
1483
+ },
1484
+ {
1485
+ "name": "OPT_HALFSPEED",
1486
+ "kind": "option_flag",
1487
+ "value": "4UL /**< 0x4 */",
1488
+ "summary": "< 0x4",
1489
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1490
+ "related_features": []
1491
+ },
1492
+ {
1493
+ "name": "OPT_IS_MMC",
1494
+ "kind": "option_flag",
1495
+ "value": "16UL /**< 0x10 */",
1496
+ "summary": "< 0x10",
1497
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1498
+ "related_features": []
1499
+ },
1500
+ {
1501
+ "name": "OPT_IS_SD",
1502
+ "kind": "option_flag",
1503
+ "value": "32UL /**< 0x20 */",
1504
+ "summary": "< 0x20",
1505
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1506
+ "related_features": []
1507
+ },
1508
+ {
1509
+ "name": "OPT_MEDIAFIFO",
1510
+ "kind": "option_flag",
1511
+ "value": "16UL /**< 0x10 */",
1512
+ "summary": "< 0x8",
1513
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1514
+ "related_features": []
1515
+ },
1516
+ {
1517
+ "name": "OPT_MONO",
1518
+ "kind": "option_flag",
1519
+ "value": "1UL /**< 0x1 */",
1520
+ "summary": "< 0x0",
1521
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1522
+ "related_features": []
1523
+ },
1524
+ {
1525
+ "name": "OPT_NOBACK",
1526
+ "kind": "option_flag",
1527
+ "value": "4096UL /**< 0x1000 */",
1528
+ "summary": "< 0x1000",
1529
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1530
+ "related_features": []
1531
+ },
1532
+ {
1533
+ "name": "OPT_NODL",
1534
+ "kind": "option_flag",
1535
+ "value": "2UL /**< 0x2 */",
1536
+ "summary": "< 0x1",
1537
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1538
+ "related_features": []
1539
+ },
1540
+ {
1541
+ "name": "OPT_NOHANDS",
1542
+ "kind": "option_flag",
1543
+ "value": "49152UL /**< 0xC000 */",
1544
+ "summary": "< 0x8000",
1545
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1546
+ "related_features": []
1547
+ },
1548
+ {
1549
+ "name": "OPT_NOHM",
1550
+ "kind": "option_flag",
1551
+ "value": "16384UL /**< 0x4000 */",
1552
+ "summary": "< 0x2000",
1553
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1554
+ "related_features": []
1555
+ },
1556
+ {
1557
+ "name": "OPT_NOPOINTER",
1558
+ "kind": "option_flag",
1559
+ "value": "16384UL /**< 0x4000 */",
1560
+ "summary": "< 0x4000",
1561
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1562
+ "related_features": []
1563
+ },
1564
+ {
1565
+ "name": "OPT_NOSECS",
1566
+ "kind": "option_flag",
1567
+ "value": "32768UL /**< 0x8000 */",
1568
+ "summary": "< 0x8000",
1569
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1570
+ "related_features": []
1571
+ },
1572
+ {
1573
+ "name": "OPT_NOTICKS",
1574
+ "kind": "option_flag",
1575
+ "value": "8192UL /**< 0x2000 */",
1576
+ "summary": "< 0x2000",
1577
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1578
+ "related_features": []
1579
+ },
1580
+ {
1581
+ "name": "OPT_OVERLAY",
1582
+ "kind": "option_flag",
1583
+ "value": "128UL /**< 0x80 */",
1584
+ "summary": "< 0x40",
1585
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1586
+ "related_features": []
1587
+ },
1588
+ {
1589
+ "name": "OPT_QUARTERSPEED",
1590
+ "kind": "option_flag",
1591
+ "value": "8UL /**< 0x8 */",
1592
+ "summary": "< 0x4",
1593
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1594
+ "related_features": []
1595
+ },
1596
+ {
1597
+ "name": "OPT_RGB565",
1598
+ "kind": "option_flag",
1599
+ "value": "0UL /**< 0x0 */",
1600
+ "summary": "< 0x0",
1601
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1602
+ "related_features": []
1603
+ },
1604
+ {
1605
+ "name": "OPT_RIGHTX",
1606
+ "kind": "option_flag",
1607
+ "value": "2048UL /**< 0x800 */",
1608
+ "summary": "< 0x600",
1609
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1610
+ "related_features": []
1611
+ },
1612
+ {
1613
+ "name": "OPT_SFNLOWER",
1614
+ "kind": "option_flag",
1615
+ "value": "1UL /**< 0x1 */",
1616
+ "summary": "< 0x1",
1617
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1618
+ "related_features": []
1619
+ },
1620
+ {
1621
+ "name": "OPT_SIGNED",
1622
+ "kind": "option_flag",
1623
+ "value": "256UL /**< 0x100 */",
1624
+ "summary": "< 0x100",
1625
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1626
+ "related_features": []
1627
+ },
1628
+ {
1629
+ "name": "OPT_SOUND",
1630
+ "kind": "option_flag",
1631
+ "value": "32UL /**< 0x20 */",
1632
+ "summary": "< 0x10",
1633
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1634
+ "related_features": [
1635
+ "audio"
1636
+ ]
1637
+ },
1638
+ {
1639
+ "name": "OPT_TRUECOLOR",
1640
+ "kind": "option_flag",
1641
+ "value": "512UL /**< 0x200 */",
1642
+ "summary": "< 0x100",
1643
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1644
+ "related_features": []
1645
+ },
1646
+ {
1647
+ "name": "OPT_YCBCR",
1648
+ "kind": "option_flag",
1649
+ "value": "1024UL /**< 0x400 */",
1650
+ "summary": "< 0x400",
1651
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1652
+ "related_features": []
1653
+ },
1654
+ {
1655
+ "name": "RAM_CMD",
1656
+ "kind": "memory_region",
1657
+ "value": "(BASE + 0x0000)",
1658
+ "summary": "/@{",
1659
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1660
+ "related_features": [
1661
+ "coprocessor"
1662
+ ]
1663
+ },
1664
+ {
1665
+ "name": "RAM_DL",
1666
+ "kind": "memory_region",
1667
+ "value": "(BASE + 0x8000)",
1668
+ "summary": "/@{",
1669
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1670
+ "related_features": []
1671
+ },
1672
+ {
1673
+ "name": "RAM_G",
1674
+ "kind": "memory_region",
1675
+ "value": "0UL",
1676
+ "summary": "/@{",
1677
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1678
+ "related_features": []
1679
+ },
1680
+ {
1681
+ "name": "RAM_REPORT",
1682
+ "kind": "memory_region",
1683
+ "value": "(BASE + 0x4800)",
1684
+ "summary": "/@{",
1685
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1686
+ "related_features": []
1687
+ },
1688
+ {
1689
+ "name": "REG_ANIM_ACTIVE",
1690
+ "kind": "register",
1691
+ "value": "(REG_CORE_R2 + 0x002C)",
1692
+ "summary": "/@{",
1693
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1694
+ "related_features": [
1695
+ "animation"
1696
+ ]
1697
+ },
1698
+ {
1699
+ "name": "REG_AUD_PWM",
1700
+ "kind": "register",
1701
+ "value": "(REG_CORE_R1 + 0x013C)",
1702
+ "summary": "Constant REG_AUD_PWM",
1703
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1704
+ "related_features": [
1705
+ "audio"
1706
+ ]
1707
+ },
1708
+ {
1709
+ "name": "REG_BOOT_CFG",
1710
+ "kind": "register",
1711
+ "value": "(REG_CORE_R1 + 0x0628)",
1712
+ "summary": "Constant REG_BOOT_CFG",
1713
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1714
+ "related_features": []
1715
+ },
1716
+ {
1717
+ "name": "REG_BOOT_STATUS",
1718
+ "kind": "register",
1719
+ "value": "(REG_SYS + 0x004C) /**< to confirm whether it is normal running after start up */",
1720
+ "summary": "Constant REG_BOOT_STATUS",
1721
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1722
+ "related_features": []
1723
+ },
1724
+ {
1725
+ "name": "REG_CHIP_ID",
1726
+ "kind": "register",
1727
+ "value": "(REG_SYS + 0x0048)",
1728
+ "summary": "/@{",
1729
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1730
+ "related_features": []
1731
+ },
1732
+ {
1733
+ "name": "REG_CLOCK",
1734
+ "kind": "register",
1735
+ "value": "(REG_CORE_R1 + 0x0008)",
1736
+ "summary": "/@{",
1737
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1738
+ "related_features": []
1739
+ },
1740
+ {
1741
+ "name": "REG_CMD_DL",
1742
+ "kind": "register",
1743
+ "value": "(REG_CORE_R1 + 0x0154)",
1744
+ "summary": "/@{",
1745
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1746
+ "related_features": [
1747
+ "coprocessor"
1748
+ ]
1749
+ },
1750
+ {
1751
+ "name": "REG_CMD_READ",
1752
+ "kind": "register",
1753
+ "value": "(REG_CORE_R1 + 0x014C)",
1754
+ "summary": "/@{",
1755
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1756
+ "related_features": [
1757
+ "coprocessor"
1758
+ ]
1759
+ },
1760
+ {
1761
+ "name": "REG_CMD_WRITE",
1762
+ "kind": "register",
1763
+ "value": "(REG_CORE_R1 + 0x0150)",
1764
+ "summary": "/@{",
1765
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1766
+ "related_features": [
1767
+ "coprocessor"
1768
+ ]
1769
+ },
1770
+ {
1771
+ "name": "REG_CMDB_SPACE",
1772
+ "kind": "register",
1773
+ "value": "(REG_CORE_R1 + 0x0594)",
1774
+ "summary": "/@{",
1775
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1776
+ "related_features": [
1777
+ "coprocessor"
1778
+ ]
1779
+ },
1780
+ {
1781
+ "name": "REG_CMDB_WRITE",
1782
+ "kind": "register",
1783
+ "value": "(BASE + 0x10000)",
1784
+ "summary": "/@{",
1785
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1786
+ "related_features": [
1787
+ "coprocessor"
1788
+ ]
1789
+ },
1790
+ {
1791
+ "name": "REG_CORE_R1",
1792
+ "kind": "register",
1793
+ "value": "(BASE + 0x6000)",
1794
+ "summary": "/@{",
1795
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1796
+ "related_features": [
1797
+ "display",
1798
+ "graphics"
1799
+ ]
1800
+ },
1801
+ {
1802
+ "name": "REG_CORE_R2",
1803
+ "kind": "register",
1804
+ "value": "(BASE + 0x4000)",
1805
+ "summary": "/@{",
1806
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1807
+ "related_features": [
1808
+ "display",
1809
+ "graphics"
1810
+ ]
1811
+ },
1812
+ {
1813
+ "name": "REG_CPURESET",
1814
+ "kind": "register",
1815
+ "value": "(REG_CORE_R1 + 0x0088)",
1816
+ "summary": "/@{",
1817
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1818
+ "related_features": []
1819
+ },
1820
+ {
1821
+ "name": "REG_CTOUCH_EXTENDED",
1822
+ "kind": "register",
1823
+ "value": "(REG_CORE_R1 + 0x015C)",
1824
+ "summary": "/@{",
1825
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1826
+ "related_features": [
1827
+ "input",
1828
+ "tag",
1829
+ "touch"
1830
+ ]
1831
+ },
1832
+ {
1833
+ "name": "REG_CTOUCH_TOUCH0_XY",
1834
+ "kind": "register",
1835
+ "value": "(REG_CORE_R1 + 0x0160)",
1836
+ "summary": "/@{",
1837
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1838
+ "related_features": [
1839
+ "input",
1840
+ "tag",
1841
+ "touch"
1842
+ ]
1843
+ },
1844
+ {
1845
+ "name": "REG_CTOUCH_TOUCH4_XY",
1846
+ "kind": "register",
1847
+ "value": "(REG_CORE_R1 + 0x0170)",
1848
+ "summary": "/@{",
1849
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1850
+ "related_features": [
1851
+ "input",
1852
+ "tag",
1853
+ "touch"
1854
+ ]
1855
+ },
1856
+ {
1857
+ "name": "REG_CTOUCH_TOUCHA_XY",
1858
+ "kind": "register",
1859
+ "value": "(REG_CORE_R1 + 0x0164)",
1860
+ "summary": "/@{",
1861
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1862
+ "related_features": [
1863
+ "input",
1864
+ "tag",
1865
+ "touch"
1866
+ ]
1867
+ },
1868
+ {
1869
+ "name": "REG_CTOUCH_TOUCHB_XY",
1870
+ "kind": "register",
1871
+ "value": "(REG_CORE_R1 + 0x0168)",
1872
+ "summary": "/@{",
1873
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1874
+ "related_features": [
1875
+ "input",
1876
+ "tag",
1877
+ "touch"
1878
+ ]
1879
+ },
1880
+ {
1881
+ "name": "REG_CTOUCH_TOUCHC_XY",
1882
+ "kind": "register",
1883
+ "value": "(REG_CORE_R1 + 0x016C)",
1884
+ "summary": "/@{",
1885
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1886
+ "related_features": [
1887
+ "input",
1888
+ "tag",
1889
+ "touch"
1890
+ ]
1891
+ },
1892
+ {
1893
+ "name": "REG_DDR_TYPE",
1894
+ "kind": "register",
1895
+ "value": "(REG_SYS + 0x0054)",
1896
+ "summary": "< to confirm whether it is normal running after start up",
1897
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1898
+ "related_features": []
1899
+ },
1900
+ {
1901
+ "name": "REG_DISP",
1902
+ "kind": "register",
1903
+ "value": "(REG_CORE_R1 + 0x00E4)",
1904
+ "summary": "/@{",
1905
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1906
+ "related_features": []
1907
+ },
1908
+ {
1909
+ "name": "REG_DLSWAP",
1910
+ "kind": "register",
1911
+ "value": "(REG_CORE_R1 + 0x00B4)",
1912
+ "summary": "Constant REG_DLSWAP",
1913
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1914
+ "related_features": []
1915
+ },
1916
+ {
1917
+ "name": "REG_EXTENT_X0",
1918
+ "kind": "register",
1919
+ "value": "(REG_CORE_R2 + 0x003C)",
1920
+ "summary": "Constant REG_EXTENT_X0",
1921
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1922
+ "related_features": []
1923
+ },
1924
+ {
1925
+ "name": "REG_EXTENT_X1",
1926
+ "kind": "register",
1927
+ "value": "(REG_CORE_R2 + 0x0044)",
1928
+ "summary": "Constant REG_EXTENT_X1",
1929
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1930
+ "related_features": []
1931
+ },
1932
+ {
1933
+ "name": "REG_EXTENT_Y0",
1934
+ "kind": "register",
1935
+ "value": "(REG_CORE_R2 + 0x0040)",
1936
+ "summary": "Constant REG_EXTENT_Y0",
1937
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1938
+ "related_features": []
1939
+ },
1940
+ {
1941
+ "name": "REG_EXTENT_Y1",
1942
+ "kind": "register",
1943
+ "value": "(REG_CORE_R2 + 0x0048)",
1944
+ "summary": "Constant REG_EXTENT_Y1",
1945
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1946
+ "related_features": []
1947
+ },
1948
+ {
1949
+ "name": "REG_FLASH_SIZE",
1950
+ "kind": "register",
1951
+ "value": "(REG_CORE_R2 + 0x0024)",
1952
+ "summary": "/@{",
1953
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1954
+ "related_features": [
1955
+ "flash",
1956
+ "interface"
1957
+ ]
1958
+ },
1959
+ {
1960
+ "name": "REG_FLASH_STATUS",
1961
+ "kind": "register",
1962
+ "value": "(REG_CORE_R1 + 0x05D4)",
1963
+ "summary": "/@{",
1964
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1965
+ "related_features": [
1966
+ "flash",
1967
+ "interface"
1968
+ ]
1969
+ },
1970
+ {
1971
+ "name": "REG_FRAMES",
1972
+ "kind": "register",
1973
+ "value": "(REG_CORE_R1 + 0x0004)",
1974
+ "summary": "/@{",
1975
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1976
+ "related_features": []
1977
+ },
1978
+ {
1979
+ "name": "REG_FREQUENCY",
1980
+ "kind": "register",
1981
+ "value": "(REG_CORE_R1 + 0x000C)",
1982
+ "summary": "/@{",
1983
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1984
+ "related_features": []
1985
+ },
1986
+ {
1987
+ "name": "REG_GPIO",
1988
+ "kind": "register",
1989
+ "value": "(REG_CORE_R1 + 0x00E0)",
1990
+ "summary": "/@{",
1991
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
1992
+ "related_features": []
1993
+ },
1994
+ {
1995
+ "name": "REG_GPIO_DIR",
1996
+ "kind": "register",
1997
+ "value": "(REG_CORE_R1 + 0x00DC)",
1998
+ "summary": "/@{",
1999
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2000
+ "related_features": []
2001
+ },
2002
+ {
2003
+ "name": "REG_HCYCLE",
2004
+ "kind": "register",
2005
+ "value": "(REG_CORE_R1 + 0x008C)",
2006
+ "summary": "Constant REG_HCYCLE",
2007
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2008
+ "related_features": [
2009
+ "display",
2010
+ "graphics"
2011
+ ]
2012
+ },
2013
+ {
2014
+ "name": "REG_HOFFSET",
2015
+ "kind": "register",
2016
+ "value": "(REG_CORE_R1 + 0x0090)",
2017
+ "summary": "Constant REG_HOFFSET",
2018
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2019
+ "related_features": [
2020
+ "display",
2021
+ "graphics"
2022
+ ]
2023
+ },
2024
+ {
2025
+ "name": "REG_HSIZE",
2026
+ "kind": "register",
2027
+ "value": "(REG_CORE_R1 + 0x0094)",
2028
+ "summary": "Constant REG_HSIZE",
2029
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2030
+ "related_features": [
2031
+ "display",
2032
+ "graphics"
2033
+ ]
2034
+ },
2035
+ {
2036
+ "name": "REG_HSYNC0",
2037
+ "kind": "register",
2038
+ "value": "(REG_CORE_R1 + 0x0098)",
2039
+ "summary": "Constant REG_HSYNC0",
2040
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2041
+ "related_features": [
2042
+ "display",
2043
+ "graphics"
2044
+ ]
2045
+ },
2046
+ {
2047
+ "name": "REG_HSYNC1",
2048
+ "kind": "register",
2049
+ "value": "(REG_CORE_R1 + 0x009C)",
2050
+ "summary": "Constant REG_HSYNC1",
2051
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2052
+ "related_features": [
2053
+ "display",
2054
+ "graphics"
2055
+ ]
2056
+ },
2057
+ {
2058
+ "name": "REG_I2S",
2059
+ "kind": "register",
2060
+ "value": "(BASE + 0x800800)",
2061
+ "summary": "Constant REG_I2S",
2062
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2063
+ "related_features": [
2064
+ "audio"
2065
+ ]
2066
+ },
2067
+ {
2068
+ "name": "REG_I2S_CFG",
2069
+ "kind": "register",
2070
+ "value": "(REG_I2S + 0x0000)",
2071
+ "summary": "/@{",
2072
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2073
+ "related_features": [
2074
+ "audio"
2075
+ ]
2076
+ },
2077
+ {
2078
+ "name": "REG_I2S_CTL",
2079
+ "kind": "register",
2080
+ "value": "(REG_I2S + 0x0004)",
2081
+ "summary": "/@{",
2082
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2083
+ "related_features": [
2084
+ "audio"
2085
+ ]
2086
+ },
2087
+ {
2088
+ "name": "REG_I2S_EN",
2089
+ "kind": "register",
2090
+ "value": "(REG_CORE_R1 + 0x0714)",
2091
+ "summary": "Constant REG_I2S_EN",
2092
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2093
+ "related_features": [
2094
+ "audio"
2095
+ ]
2096
+ },
2097
+ {
2098
+ "name": "REG_I2S_FREQ",
2099
+ "kind": "register",
2100
+ "value": "(REG_CORE_R1 + 0x0718)",
2101
+ "summary": "Constant REG_I2S_FREQ",
2102
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2103
+ "related_features": [
2104
+ "audio"
2105
+ ]
2106
+ },
2107
+ {
2108
+ "name": "REG_I2S_PAD_CFG",
2109
+ "kind": "register",
2110
+ "value": "(REG_I2S + 0x0014)",
2111
+ "summary": "/@{",
2112
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2113
+ "related_features": [
2114
+ "audio"
2115
+ ]
2116
+ },
2117
+ {
2118
+ "name": "REG_I2S_STAT",
2119
+ "kind": "register",
2120
+ "value": "(REG_I2S + 0x0010)",
2121
+ "summary": "/@{",
2122
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2123
+ "related_features": [
2124
+ "audio"
2125
+ ]
2126
+ },
2127
+ {
2128
+ "name": "REG_ID",
2129
+ "kind": "register",
2130
+ "value": "(REG_CORE_R1 + 0x0000)",
2131
+ "summary": "/@{",
2132
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2133
+ "related_features": []
2134
+ },
2135
+ {
2136
+ "name": "REG_INT_EN",
2137
+ "kind": "register",
2138
+ "value": "(REG_CORE_R1 + 0x0104)",
2139
+ "summary": "Constant REG_INT_EN",
2140
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2141
+ "related_features": []
2142
+ },
2143
+ {
2144
+ "name": "REG_INT_FLAGS",
2145
+ "kind": "register",
2146
+ "value": "(REG_CORE_R1 + 0x0100)",
2147
+ "summary": "Constant REG_INT_FLAGS",
2148
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2149
+ "related_features": []
2150
+ },
2151
+ {
2152
+ "name": "REG_INT_MASK",
2153
+ "kind": "register",
2154
+ "value": "(REG_CORE_R1 + 0x0108)",
2155
+ "summary": "Constant REG_INT_MASK",
2156
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2157
+ "related_features": []
2158
+ },
2159
+ {
2160
+ "name": "REG_LVDSRX",
2161
+ "kind": "register",
2162
+ "value": "(BASE + 0x800500)",
2163
+ "summary": "Constant REG_LVDSRX",
2164
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2165
+ "related_features": [
2166
+ "lvds"
2167
+ ]
2168
+ },
2169
+ {
2170
+ "name": "REG_LVDSRX_CORE_CAPTURE",
2171
+ "kind": "register",
2172
+ "value": "(REG_CORE_R1 + 0x0674)",
2173
+ "summary": "/@{",
2174
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2175
+ "related_features": [
2176
+ "display",
2177
+ "graphics",
2178
+ "lvds"
2179
+ ]
2180
+ },
2181
+ {
2182
+ "name": "REG_LVDSRX_CORE_DEST",
2183
+ "kind": "register",
2184
+ "value": "(REG_CORE_R1 + 0x067C)",
2185
+ "summary": "/@{",
2186
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2187
+ "related_features": [
2188
+ "display",
2189
+ "graphics",
2190
+ "lvds"
2191
+ ]
2192
+ },
2193
+ {
2194
+ "name": "REG_LVDSRX_CORE_DITHER",
2195
+ "kind": "register",
2196
+ "value": "(REG_CORE_R1 + 0x0684)",
2197
+ "summary": "/@{",
2198
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2199
+ "related_features": [
2200
+ "display",
2201
+ "graphics",
2202
+ "lvds"
2203
+ ]
2204
+ },
2205
+ {
2206
+ "name": "REG_LVDSRX_CORE_ENABLE",
2207
+ "kind": "register",
2208
+ "value": "(REG_CORE_R1 + 0x0670)",
2209
+ "summary": "/@{",
2210
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2211
+ "related_features": [
2212
+ "display",
2213
+ "graphics",
2214
+ "lvds"
2215
+ ]
2216
+ },
2217
+ {
2218
+ "name": "REG_LVDSRX_CORE_FORMAT",
2219
+ "kind": "register",
2220
+ "value": "(REG_CORE_R1 + 0x0680)",
2221
+ "summary": "/@{",
2222
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2223
+ "related_features": [
2224
+ "display",
2225
+ "graphics",
2226
+ "lvds"
2227
+ ]
2228
+ },
2229
+ {
2230
+ "name": "REG_LVDSRX_CORE_FRAMES",
2231
+ "kind": "register",
2232
+ "value": "(REG_CORE_R1 + 0x0698)",
2233
+ "summary": "/@{",
2234
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2235
+ "related_features": [
2236
+ "display",
2237
+ "graphics",
2238
+ "lvds"
2239
+ ]
2240
+ },
2241
+ {
2242
+ "name": "REG_LVDSRX_CORE_SETUP",
2243
+ "kind": "register",
2244
+ "value": "(REG_CORE_R1 + 0x0678)",
2245
+ "summary": "/@{",
2246
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2247
+ "related_features": [
2248
+ "display",
2249
+ "graphics",
2250
+ "lvds"
2251
+ ]
2252
+ },
2253
+ {
2254
+ "name": "REG_LVDSRX_CTRL",
2255
+ "kind": "register",
2256
+ "value": "(REG_LVDSRX + 0x0004)",
2257
+ "summary": "/@{",
2258
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2259
+ "related_features": [
2260
+ "lvds"
2261
+ ]
2262
+ },
2263
+ {
2264
+ "name": "REG_LVDSRX_SETUP",
2265
+ "kind": "register",
2266
+ "value": "(REG_LVDSRX + 0x0000)",
2267
+ "summary": "/@{",
2268
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2269
+ "related_features": [
2270
+ "lvds"
2271
+ ]
2272
+ },
2273
+ {
2274
+ "name": "REG_LVDSRX_STAT",
2275
+ "kind": "register",
2276
+ "value": "(REG_LVDSRX + 0x0008)",
2277
+ "summary": "/@{",
2278
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2279
+ "related_features": [
2280
+ "lvds"
2281
+ ]
2282
+ },
2283
+ {
2284
+ "name": "REG_LVDSTX",
2285
+ "kind": "register",
2286
+ "value": "(BASE + 0x800300)",
2287
+ "summary": "/@{",
2288
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2289
+ "related_features": [
2290
+ "lvds"
2291
+ ]
2292
+ },
2293
+ {
2294
+ "name": "REG_LVDSTX_CTRL_CH0",
2295
+ "kind": "register",
2296
+ "value": "(REG_LVDSTX + 0x0014)",
2297
+ "summary": "/@{",
2298
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2299
+ "related_features": [
2300
+ "lvds"
2301
+ ]
2302
+ },
2303
+ {
2304
+ "name": "REG_LVDSTX_CTRL_CH1",
2305
+ "kind": "register",
2306
+ "value": "(REG_LVDSTX + 0x0018)",
2307
+ "summary": "/@{",
2308
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2309
+ "related_features": [
2310
+ "lvds"
2311
+ ]
2312
+ },
2313
+ {
2314
+ "name": "REG_LVDSTX_EN",
2315
+ "kind": "register",
2316
+ "value": "(REG_LVDSTX + 0x0000)",
2317
+ "summary": "/@{",
2318
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2319
+ "related_features": [
2320
+ "lvds"
2321
+ ]
2322
+ },
2323
+ {
2324
+ "name": "REG_LVDSTX_ERR_STAT",
2325
+ "kind": "register",
2326
+ "value": "(REG_LVDSTX + 0x0020)",
2327
+ "summary": "/@{",
2328
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2329
+ "related_features": [
2330
+ "lvds"
2331
+ ]
2332
+ },
2333
+ {
2334
+ "name": "REG_LVDSTX_PLLCFG",
2335
+ "kind": "register",
2336
+ "value": "(REG_LVDSTX + 0x0004)",
2337
+ "summary": "/@{",
2338
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2339
+ "related_features": [
2340
+ "lvds"
2341
+ ]
2342
+ },
2343
+ {
2344
+ "name": "REG_LVDSTX_STAT",
2345
+ "kind": "register",
2346
+ "value": "(REG_LVDSTX + 0x001C)",
2347
+ "summary": "/@{",
2348
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2349
+ "related_features": [
2350
+ "lvds"
2351
+ ]
2352
+ },
2353
+ {
2354
+ "name": "REG_MACRO_0",
2355
+ "kind": "register",
2356
+ "value": "(REG_CORE_R1 + 0x0130)",
2357
+ "summary": "Constant REG_MACRO_0",
2358
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2359
+ "related_features": []
2360
+ },
2361
+ {
2362
+ "name": "REG_MACRO_1",
2363
+ "kind": "register",
2364
+ "value": "(REG_CORE_R1 + 0x0134)",
2365
+ "summary": "Constant REG_MACRO_1",
2366
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2367
+ "related_features": []
2368
+ },
2369
+ {
2370
+ "name": "REG_MEDIAFIFO_READ",
2371
+ "kind": "register",
2372
+ "value": "(REG_CORE_R2 + 0x0014)",
2373
+ "summary": "/@{",
2374
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2375
+ "related_features": []
2376
+ },
2377
+ {
2378
+ "name": "REG_MEDIAFIFO_WRITE",
2379
+ "kind": "register",
2380
+ "value": "(REG_CORE_R2 + 0x0018)",
2381
+ "summary": "/@{",
2382
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2383
+ "related_features": []
2384
+ },
2385
+ {
2386
+ "name": "REG_OBJECT_COMPLETE",
2387
+ "kind": "register",
2388
+ "value": "(REG_CORE_R2 + 0x0038)",
2389
+ "summary": "Constant REG_OBJECT_COMPLETE",
2390
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2391
+ "related_features": []
2392
+ },
2393
+ {
2394
+ "name": "REG_PCLK_POL",
2395
+ "kind": "register",
2396
+ "value": "(REG_CORE_R1 + 0x00B8)",
2397
+ "summary": "Constant REG_PCLK_POL",
2398
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2399
+ "related_features": []
2400
+ },
2401
+ {
2402
+ "name": "REG_PIN_DRV_0",
2403
+ "kind": "register",
2404
+ "value": "(REG_SYS + 0x0008)",
2405
+ "summary": "/@{",
2406
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2407
+ "related_features": []
2408
+ },
2409
+ {
2410
+ "name": "REG_PIN_DRV_1",
2411
+ "kind": "register",
2412
+ "value": "(REG_SYS + 0x000C)",
2413
+ "summary": "/@{",
2414
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2415
+ "related_features": []
2416
+ },
2417
+ {
2418
+ "name": "REG_PIN_DRV_2",
2419
+ "kind": "register",
2420
+ "value": "(REG_SYS + 0x0064)",
2421
+ "summary": "< to confirm whether it is normal running after start up",
2422
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2423
+ "related_features": []
2424
+ },
2425
+ {
2426
+ "name": "REG_PIN_SLEW_0",
2427
+ "kind": "register",
2428
+ "value": "(REG_SYS + 0x0010)",
2429
+ "summary": "/@{",
2430
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2431
+ "related_features": []
2432
+ },
2433
+ {
2434
+ "name": "REG_PIN_SLEW_1",
2435
+ "kind": "register",
2436
+ "value": "(REG_SYS + 0x0068)",
2437
+ "summary": "< to confirm whether it is normal running after start up",
2438
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2439
+ "related_features": []
2440
+ },
2441
+ {
2442
+ "name": "REG_PIN_TYPE_0",
2443
+ "kind": "register",
2444
+ "value": "(REG_SYS + 0x0014)",
2445
+ "summary": "/@{",
2446
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2447
+ "related_features": []
2448
+ },
2449
+ {
2450
+ "name": "REG_PIN_TYPE_1",
2451
+ "kind": "register",
2452
+ "value": "(REG_SYS + 0x0018)",
2453
+ "summary": "/@{",
2454
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2455
+ "related_features": []
2456
+ },
2457
+ {
2458
+ "name": "REG_PIN_TYPE_2",
2459
+ "kind": "register",
2460
+ "value": "(REG_SYS + 0x006C)",
2461
+ "summary": "< to confirm whether it is normal running after start up",
2462
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2463
+ "related_features": []
2464
+ },
2465
+ {
2466
+ "name": "REG_PLAY",
2467
+ "kind": "register",
2468
+ "value": "(REG_CORE_R1 + 0x00D8)",
2469
+ "summary": "/@{",
2470
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2471
+ "related_features": []
2472
+ },
2473
+ {
2474
+ "name": "REG_PLAY_CONTROL",
2475
+ "kind": "register",
2476
+ "value": "(REG_CORE_R2 + 0x0050)",
2477
+ "summary": "Constant REG_PLAY_CONTROL",
2478
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2479
+ "related_features": []
2480
+ },
2481
+ {
2482
+ "name": "REG_PLAYBACK_FORMAT",
2483
+ "kind": "register",
2484
+ "value": "(REG_CORE_R1 + 0x011C)",
2485
+ "summary": "Constant REG_PLAYBACK_FORMAT",
2486
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2487
+ "related_features": [
2488
+ "audio"
2489
+ ]
2490
+ },
2491
+ {
2492
+ "name": "REG_PLAYBACK_FREQ",
2493
+ "kind": "register",
2494
+ "value": "(REG_CORE_R1 + 0x0118)",
2495
+ "summary": "Constant REG_PLAYBACK_FREQ",
2496
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2497
+ "related_features": [
2498
+ "audio"
2499
+ ]
2500
+ },
2501
+ {
2502
+ "name": "REG_PLAYBACK_LENGTH",
2503
+ "kind": "register",
2504
+ "value": "(REG_CORE_R1 + 0x0110)",
2505
+ "summary": "/@{",
2506
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2507
+ "related_features": [
2508
+ "audio"
2509
+ ]
2510
+ },
2511
+ {
2512
+ "name": "REG_PLAYBACK_LOOP",
2513
+ "kind": "register",
2514
+ "value": "(REG_CORE_R1 + 0x0120)",
2515
+ "summary": "Constant REG_PLAYBACK_LOOP",
2516
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2517
+ "related_features": [
2518
+ "audio"
2519
+ ]
2520
+ },
2521
+ {
2522
+ "name": "REG_PLAYBACK_PAUSE",
2523
+ "kind": "register",
2524
+ "value": "(REG_CORE_R1 + 0x05D0)",
2525
+ "summary": "Constant REG_PLAYBACK_PAUSE",
2526
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2527
+ "related_features": [
2528
+ "audio"
2529
+ ]
2530
+ },
2531
+ {
2532
+ "name": "REG_PLAYBACK_PLAY",
2533
+ "kind": "register",
2534
+ "value": "(REG_CORE_R1 + 0x0124)",
2535
+ "summary": "Constant REG_PLAYBACK_PLAY",
2536
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2537
+ "related_features": [
2538
+ "audio"
2539
+ ]
2540
+ },
2541
+ {
2542
+ "name": "REG_PLAYBACK_READPTR",
2543
+ "kind": "register",
2544
+ "value": "(REG_CORE_R1 + 0x0114)",
2545
+ "summary": "/@{",
2546
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2547
+ "related_features": [
2548
+ "audio"
2549
+ ]
2550
+ },
2551
+ {
2552
+ "name": "REG_PLAYBACK_START",
2553
+ "kind": "register",
2554
+ "value": "(REG_CORE_R1 + 0x010C)",
2555
+ "summary": "/@{",
2556
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2557
+ "related_features": [
2558
+ "audio"
2559
+ ]
2560
+ },
2561
+ {
2562
+ "name": "REG_PWM_DUTY",
2563
+ "kind": "register",
2564
+ "value": "(REG_CORE_R1 + 0x012C)",
2565
+ "summary": "Constant REG_PWM_DUTY",
2566
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2567
+ "related_features": []
2568
+ },
2569
+ {
2570
+ "name": "REG_PWM_HZ",
2571
+ "kind": "register",
2572
+ "value": "(REG_CORE_R1 + 0x0128)",
2573
+ "summary": "Constant REG_PWM_HZ",
2574
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2575
+ "related_features": []
2576
+ },
2577
+ {
2578
+ "name": "REG_RE_ACTIVE",
2579
+ "kind": "register",
2580
+ "value": "(REG_CORE_R1 + 0x0028)",
2581
+ "summary": "/@{",
2582
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2583
+ "related_features": [
2584
+ "display",
2585
+ "graphics"
2586
+ ]
2587
+ },
2588
+ {
2589
+ "name": "REG_RE_DEST",
2590
+ "kind": "register",
2591
+ "value": "(REG_CORE_R1 + 0x0010)",
2592
+ "summary": "/@{",
2593
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2594
+ "related_features": [
2595
+ "display",
2596
+ "graphics"
2597
+ ]
2598
+ },
2599
+ {
2600
+ "name": "REG_RE_DITHER",
2601
+ "kind": "register",
2602
+ "value": "(REG_CORE_R1 + 0x0024)",
2603
+ "summary": "/@{",
2604
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2605
+ "related_features": [
2606
+ "display",
2607
+ "graphics"
2608
+ ]
2609
+ },
2610
+ {
2611
+ "name": "REG_RE_FORMAT",
2612
+ "kind": "register",
2613
+ "value": "(REG_CORE_R1 + 0x0014)",
2614
+ "summary": "/@{",
2615
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2616
+ "related_features": [
2617
+ "display",
2618
+ "graphics"
2619
+ ]
2620
+ },
2621
+ {
2622
+ "name": "REG_RE_H",
2623
+ "kind": "register",
2624
+ "value": "(REG_CORE_R1 + 0x0020)",
2625
+ "summary": "/@{",
2626
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2627
+ "related_features": [
2628
+ "display",
2629
+ "graphics"
2630
+ ]
2631
+ },
2632
+ {
2633
+ "name": "REG_RE_RENDERS",
2634
+ "kind": "register",
2635
+ "value": "(REG_CORE_R1 + 0x002C)",
2636
+ "summary": "/@{",
2637
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2638
+ "related_features": [
2639
+ "display",
2640
+ "graphics"
2641
+ ]
2642
+ },
2643
+ {
2644
+ "name": "REG_RE_ROTATE",
2645
+ "kind": "register",
2646
+ "value": "(REG_CORE_R1 + 0x0018)",
2647
+ "summary": "/@{",
2648
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2649
+ "related_features": [
2650
+ "display",
2651
+ "graphics"
2652
+ ]
2653
+ },
2654
+ {
2655
+ "name": "REG_RE_W",
2656
+ "kind": "register",
2657
+ "value": "(REG_CORE_R1 + 0x001C)",
2658
+ "summary": "/@{",
2659
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2660
+ "related_features": [
2661
+ "display",
2662
+ "graphics"
2663
+ ]
2664
+ },
2665
+ {
2666
+ "name": "REG_SC0_PTR0",
2667
+ "kind": "register",
2668
+ "value": "(REG_CORE_R1 + 0x003C)",
2669
+ "summary": "/@{",
2670
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2671
+ "related_features": []
2672
+ },
2673
+ {
2674
+ "name": "REG_SC0_PTR1",
2675
+ "kind": "register",
2676
+ "value": "(REG_CORE_R1 + 0x0040)",
2677
+ "summary": "/@{",
2678
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2679
+ "related_features": []
2680
+ },
2681
+ {
2682
+ "name": "REG_SC0_PTR2",
2683
+ "kind": "register",
2684
+ "value": "(REG_CORE_R1 + 0x0044)",
2685
+ "summary": "/@{",
2686
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2687
+ "related_features": []
2688
+ },
2689
+ {
2690
+ "name": "REG_SC0_PTR3",
2691
+ "kind": "register",
2692
+ "value": "(REG_CORE_R1 + 0x0048)",
2693
+ "summary": "/@{",
2694
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2695
+ "related_features": []
2696
+ },
2697
+ {
2698
+ "name": "REG_SC0_RESET",
2699
+ "kind": "register",
2700
+ "value": "(REG_CORE_R1 + 0x0034)",
2701
+ "summary": "/@{",
2702
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2703
+ "related_features": []
2704
+ },
2705
+ {
2706
+ "name": "REG_SC0_SIZE",
2707
+ "kind": "register",
2708
+ "value": "(REG_CORE_R1 + 0x0038)",
2709
+ "summary": "/@{",
2710
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2711
+ "related_features": []
2712
+ },
2713
+ {
2714
+ "name": "REG_SC1_PTR0",
2715
+ "kind": "register",
2716
+ "value": "(REG_CORE_R1 + 0x0054)",
2717
+ "summary": "Constant REG_SC1_PTR0",
2718
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2719
+ "related_features": []
2720
+ },
2721
+ {
2722
+ "name": "REG_SC1_PTR1",
2723
+ "kind": "register",
2724
+ "value": "(REG_CORE_R1 + 0x0058)",
2725
+ "summary": "Constant REG_SC1_PTR1",
2726
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2727
+ "related_features": []
2728
+ },
2729
+ {
2730
+ "name": "REG_SC1_PTR2",
2731
+ "kind": "register",
2732
+ "value": "(REG_CORE_R1 + 0x005C)",
2733
+ "summary": "Constant REG_SC1_PTR2",
2734
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2735
+ "related_features": []
2736
+ },
2737
+ {
2738
+ "name": "REG_SC1_PTR3",
2739
+ "kind": "register",
2740
+ "value": "(REG_CORE_R1 + 0x0060)",
2741
+ "summary": "Constant REG_SC1_PTR3",
2742
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2743
+ "related_features": []
2744
+ },
2745
+ {
2746
+ "name": "REG_SC1_RESET",
2747
+ "kind": "register",
2748
+ "value": "(REG_CORE_R1 + 0x004C)",
2749
+ "summary": "/@{",
2750
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2751
+ "related_features": []
2752
+ },
2753
+ {
2754
+ "name": "REG_SC1_SIZE",
2755
+ "kind": "register",
2756
+ "value": "(REG_CORE_R1 + 0x0050)",
2757
+ "summary": "/@{",
2758
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2759
+ "related_features": []
2760
+ },
2761
+ {
2762
+ "name": "REG_SC2_ADDR",
2763
+ "kind": "register",
2764
+ "value": "(REG_CORE_R1 + 0x0784)",
2765
+ "summary": "Constant REG_SC2_ADDR",
2766
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2767
+ "related_features": []
2768
+ },
2769
+ {
2770
+ "name": "REG_SC2_PTR0",
2771
+ "kind": "register",
2772
+ "value": "(REG_CORE_R1 + 0x006C)",
2773
+ "summary": "Constant REG_SC2_PTR0",
2774
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2775
+ "related_features": []
2776
+ },
2777
+ {
2778
+ "name": "REG_SC2_PTR1",
2779
+ "kind": "register",
2780
+ "value": "(REG_CORE_R1 + 0x0070)",
2781
+ "summary": "Constant REG_SC2_PTR1",
2782
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2783
+ "related_features": []
2784
+ },
2785
+ {
2786
+ "name": "REG_SC2_PTR2",
2787
+ "kind": "register",
2788
+ "value": "(REG_CORE_R1 + 0x0074)",
2789
+ "summary": "Constant REG_SC2_PTR2",
2790
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2791
+ "related_features": []
2792
+ },
2793
+ {
2794
+ "name": "REG_SC2_PTR3",
2795
+ "kind": "register",
2796
+ "value": "(REG_CORE_R1 + 0x0078)",
2797
+ "summary": "Constant REG_SC2_PTR3",
2798
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2799
+ "related_features": []
2800
+ },
2801
+ {
2802
+ "name": "REG_SC2_RESET",
2803
+ "kind": "register",
2804
+ "value": "(REG_CORE_R1 + 0x0064)",
2805
+ "summary": "Constant REG_SC2_RESET",
2806
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2807
+ "related_features": []
2808
+ },
2809
+ {
2810
+ "name": "REG_SC2_SIZE",
2811
+ "kind": "register",
2812
+ "value": "(REG_CORE_R1 + 0x0068)",
2813
+ "summary": "Constant REG_SC2_SIZE",
2814
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2815
+ "related_features": []
2816
+ },
2817
+ {
2818
+ "name": "REG_SC2_STATUS",
2819
+ "kind": "register",
2820
+ "value": "(REG_CORE_R1 + 0x0780)",
2821
+ "summary": "Constant REG_SC2_STATUS",
2822
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2823
+ "related_features": []
2824
+ },
2825
+ {
2826
+ "name": "REG_SO_EN",
2827
+ "kind": "register",
2828
+ "value": "(REG_CORE_R1 + 0x0600)",
2829
+ "summary": "Constant REG_SO_EN",
2830
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2831
+ "related_features": [
2832
+ "display",
2833
+ "graphics"
2834
+ ]
2835
+ },
2836
+ {
2837
+ "name": "REG_SO_FORMAT",
2838
+ "kind": "register",
2839
+ "value": "(REG_CORE_R1 + 0x05FC)",
2840
+ "summary": "Constant REG_SO_FORMAT",
2841
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2842
+ "related_features": [
2843
+ "display",
2844
+ "graphics"
2845
+ ]
2846
+ },
2847
+ {
2848
+ "name": "REG_SO_MODE",
2849
+ "kind": "register",
2850
+ "value": "(REG_CORE_R1 + 0x05F4)",
2851
+ "summary": "Constant REG_SO_MODE",
2852
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2853
+ "related_features": [
2854
+ "display",
2855
+ "graphics"
2856
+ ]
2857
+ },
2858
+ {
2859
+ "name": "REG_SO_SOURCE",
2860
+ "kind": "register",
2861
+ "value": "(REG_CORE_R1 + 0x05F8)",
2862
+ "summary": "Constant REG_SO_SOURCE",
2863
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2864
+ "related_features": [
2865
+ "display",
2866
+ "graphics"
2867
+ ]
2868
+ },
2869
+ {
2870
+ "name": "REG_SOUND",
2871
+ "kind": "register",
2872
+ "value": "(REG_CORE_R1 + 0x00D4)",
2873
+ "summary": "/@{",
2874
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2875
+ "related_features": [
2876
+ "audio"
2877
+ ]
2878
+ },
2879
+ {
2880
+ "name": "REG_SYS",
2881
+ "kind": "register",
2882
+ "value": "(BASE + 0x800400)",
2883
+ "summary": "/@{",
2884
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2885
+ "related_features": []
2886
+ },
2887
+ {
2888
+ "name": "REG_SYS_CFG",
2889
+ "kind": "register",
2890
+ "value": "(REG_SYS + 0x0020)",
2891
+ "summary": "/@{",
2892
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2893
+ "related_features": []
2894
+ },
2895
+ {
2896
+ "name": "REG_SYS_STAT",
2897
+ "kind": "register",
2898
+ "value": "(REG_SYS + 0x0024)",
2899
+ "summary": "/@{",
2900
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2901
+ "related_features": []
2902
+ },
2903
+ {
2904
+ "name": "REG_TAG",
2905
+ "kind": "register",
2906
+ "value": "(REG_CORE_R1 + 0x00C4)",
2907
+ "summary": "Constant REG_TAG",
2908
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2909
+ "related_features": [
2910
+ "input",
2911
+ "tag",
2912
+ "touch"
2913
+ ]
2914
+ },
2915
+ {
2916
+ "name": "REG_TAG_X",
2917
+ "kind": "register",
2918
+ "value": "(REG_CORE_R1 + 0x00BC)",
2919
+ "summary": "Constant REG_TAG_X",
2920
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2921
+ "related_features": [
2922
+ "input",
2923
+ "tag",
2924
+ "touch"
2925
+ ]
2926
+ },
2927
+ {
2928
+ "name": "REG_TAG_Y",
2929
+ "kind": "register",
2930
+ "value": "(REG_CORE_R1 + 0x00C0)",
2931
+ "summary": "Constant REG_TAG_Y",
2932
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2933
+ "related_features": [
2934
+ "input",
2935
+ "tag",
2936
+ "touch"
2937
+ ]
2938
+ },
2939
+ {
2940
+ "name": "REG_TOUCH_CONFIG",
2941
+ "kind": "register",
2942
+ "value": "(REG_CORE_R1 + 0x01B4)",
2943
+ "summary": "Constant REG_TOUCH_CONFIG",
2944
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2945
+ "related_features": [
2946
+ "input",
2947
+ "tag",
2948
+ "touch"
2949
+ ]
2950
+ },
2951
+ {
2952
+ "name": "REG_TOUCH_RAW_XY",
2953
+ "kind": "register",
2954
+ "value": "(REG_CORE_R1 + 0x0164)",
2955
+ "summary": "/@{",
2956
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2957
+ "related_features": [
2958
+ "input",
2959
+ "tag",
2960
+ "touch"
2961
+ ]
2962
+ },
2963
+ {
2964
+ "name": "REG_TOUCH_SCREEN_XY",
2965
+ "kind": "register",
2966
+ "value": "(REG_CORE_R1 + 0x0160)",
2967
+ "summary": "/@{",
2968
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2969
+ "related_features": [
2970
+ "input",
2971
+ "tag",
2972
+ "touch"
2973
+ ]
2974
+ },
2975
+ {
2976
+ "name": "REG_TOUCH_TAG",
2977
+ "kind": "register",
2978
+ "value": "(REG_CORE_R1 + 0x0178)",
2979
+ "summary": "Constant REG_TOUCH_TAG",
2980
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2981
+ "related_features": [
2982
+ "input",
2983
+ "tag",
2984
+ "touch"
2985
+ ]
2986
+ },
2987
+ {
2988
+ "name": "REG_TOUCH_TAG1",
2989
+ "kind": "register",
2990
+ "value": "(REG_CORE_R1 + 0x0180)",
2991
+ "summary": "Constant REG_TOUCH_TAG1",
2992
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
2993
+ "related_features": [
2994
+ "input",
2995
+ "tag",
2996
+ "touch"
2997
+ ]
2998
+ },
2999
+ {
3000
+ "name": "REG_TOUCH_TAG1_XY",
3001
+ "kind": "register",
3002
+ "value": "(REG_CORE_R1 + 0x017C)",
3003
+ "summary": "Constant REG_TOUCH_TAG1_XY",
3004
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3005
+ "related_features": [
3006
+ "input",
3007
+ "tag",
3008
+ "touch"
3009
+ ]
3010
+ },
3011
+ {
3012
+ "name": "REG_TOUCH_TAG2",
3013
+ "kind": "register",
3014
+ "value": "(REG_CORE_R1 + 0x0188)",
3015
+ "summary": "Constant REG_TOUCH_TAG2",
3016
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3017
+ "related_features": [
3018
+ "input",
3019
+ "tag",
3020
+ "touch"
3021
+ ]
3022
+ },
3023
+ {
3024
+ "name": "REG_TOUCH_TAG2_XY",
3025
+ "kind": "register",
3026
+ "value": "(REG_CORE_R1 + 0x0184)",
3027
+ "summary": "Constant REG_TOUCH_TAG2_XY",
3028
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3029
+ "related_features": [
3030
+ "input",
3031
+ "tag",
3032
+ "touch"
3033
+ ]
3034
+ },
3035
+ {
3036
+ "name": "REG_TOUCH_TAG3",
3037
+ "kind": "register",
3038
+ "value": "(REG_CORE_R1 + 0x0190)",
3039
+ "summary": "Constant REG_TOUCH_TAG3",
3040
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3041
+ "related_features": [
3042
+ "input",
3043
+ "tag",
3044
+ "touch"
3045
+ ]
3046
+ },
3047
+ {
3048
+ "name": "REG_TOUCH_TAG3_XY",
3049
+ "kind": "register",
3050
+ "value": "(REG_CORE_R1 + 0x018C)",
3051
+ "summary": "Constant REG_TOUCH_TAG3_XY",
3052
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3053
+ "related_features": [
3054
+ "input",
3055
+ "tag",
3056
+ "touch"
3057
+ ]
3058
+ },
3059
+ {
3060
+ "name": "REG_TOUCH_TAG4",
3061
+ "kind": "register",
3062
+ "value": "(REG_CORE_R1 + 0x0198)",
3063
+ "summary": "Constant REG_TOUCH_TAG4",
3064
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3065
+ "related_features": [
3066
+ "input",
3067
+ "tag",
3068
+ "touch"
3069
+ ]
3070
+ },
3071
+ {
3072
+ "name": "REG_TOUCH_TAG4_XY",
3073
+ "kind": "register",
3074
+ "value": "(REG_CORE_R1 + 0x0194)",
3075
+ "summary": "Constant REG_TOUCH_TAG4_XY",
3076
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3077
+ "related_features": [
3078
+ "input",
3079
+ "tag",
3080
+ "touch"
3081
+ ]
3082
+ },
3083
+ {
3084
+ "name": "REG_TOUCH_TAG_XY",
3085
+ "kind": "register",
3086
+ "value": "(REG_CORE_R1 + 0x0174)",
3087
+ "summary": "Constant REG_TOUCH_TAG_XY",
3088
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3089
+ "related_features": [
3090
+ "input",
3091
+ "tag",
3092
+ "touch"
3093
+ ]
3094
+ },
3095
+ {
3096
+ "name": "REG_TOUCH_TRANSFORM_A",
3097
+ "kind": "register",
3098
+ "value": "(REG_CORE_R1 + 0x019C)",
3099
+ "summary": "Constant REG_TOUCH_TRANSFORM_A",
3100
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3101
+ "related_features": [
3102
+ "input",
3103
+ "tag",
3104
+ "touch"
3105
+ ]
3106
+ },
3107
+ {
3108
+ "name": "REG_TOUCH_TRANSFORM_B",
3109
+ "kind": "register",
3110
+ "value": "(REG_CORE_R1 + 0x01A0)",
3111
+ "summary": "Constant REG_TOUCH_TRANSFORM_B",
3112
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3113
+ "related_features": [
3114
+ "input",
3115
+ "tag",
3116
+ "touch"
3117
+ ]
3118
+ },
3119
+ {
3120
+ "name": "REG_TOUCH_TRANSFORM_C",
3121
+ "kind": "register",
3122
+ "value": "(REG_CORE_R1 + 0x01A4)",
3123
+ "summary": "Constant REG_TOUCH_TRANSFORM_C",
3124
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3125
+ "related_features": [
3126
+ "input",
3127
+ "tag",
3128
+ "touch"
3129
+ ]
3130
+ },
3131
+ {
3132
+ "name": "REG_TOUCH_TRANSFORM_D",
3133
+ "kind": "register",
3134
+ "value": "(REG_CORE_R1 + 0x01A8)",
3135
+ "summary": "Constant REG_TOUCH_TRANSFORM_D",
3136
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3137
+ "related_features": [
3138
+ "input",
3139
+ "tag",
3140
+ "touch"
3141
+ ]
3142
+ },
3143
+ {
3144
+ "name": "REG_TOUCH_TRANSFORM_E",
3145
+ "kind": "register",
3146
+ "value": "(REG_CORE_R1 + 0x01AC)",
3147
+ "summary": "Constant REG_TOUCH_TRANSFORM_E",
3148
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3149
+ "related_features": [
3150
+ "input",
3151
+ "tag",
3152
+ "touch"
3153
+ ]
3154
+ },
3155
+ {
3156
+ "name": "REG_TOUCH_TRANSFORM_F",
3157
+ "kind": "register",
3158
+ "value": "(REG_CORE_R1 + 0x01B0)",
3159
+ "summary": "Constant REG_TOUCH_TRANSFORM_F",
3160
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3161
+ "related_features": [
3162
+ "input",
3163
+ "tag",
3164
+ "touch"
3165
+ ]
3166
+ },
3167
+ {
3168
+ "name": "REG_TRACKER",
3169
+ "kind": "register",
3170
+ "value": "(REG_CORE_R2 + 0x0000)",
3171
+ "summary": "/@{",
3172
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3173
+ "related_features": [
3174
+ "input",
3175
+ "tag",
3176
+ "touch"
3177
+ ]
3178
+ },
3179
+ {
3180
+ "name": "REG_TRACKER_1",
3181
+ "kind": "register",
3182
+ "value": "(REG_CORE_R2 + 0x0004)",
3183
+ "summary": "/@{",
3184
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3185
+ "related_features": [
3186
+ "input",
3187
+ "tag",
3188
+ "touch"
3189
+ ]
3190
+ },
3191
+ {
3192
+ "name": "REG_TRACKER_2",
3193
+ "kind": "register",
3194
+ "value": "(REG_CORE_R2 + 0x0008)",
3195
+ "summary": "/@{",
3196
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3197
+ "related_features": [
3198
+ "input",
3199
+ "tag",
3200
+ "touch"
3201
+ ]
3202
+ },
3203
+ {
3204
+ "name": "REG_TRACKER_3",
3205
+ "kind": "register",
3206
+ "value": "(REG_CORE_R2 + 0x000C)",
3207
+ "summary": "/@{",
3208
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3209
+ "related_features": [
3210
+ "input",
3211
+ "tag",
3212
+ "touch"
3213
+ ]
3214
+ },
3215
+ {
3216
+ "name": "REG_TRACKER_4",
3217
+ "kind": "register",
3218
+ "value": "(REG_CORE_R2 + 0x0010)",
3219
+ "summary": "/@{",
3220
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3221
+ "related_features": [
3222
+ "input",
3223
+ "tag",
3224
+ "touch"
3225
+ ]
3226
+ },
3227
+ {
3228
+ "name": "REG_VCYCLE",
3229
+ "kind": "register",
3230
+ "value": "(REG_CORE_R1 + 0x00A0)",
3231
+ "summary": "Constant REG_VCYCLE",
3232
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3233
+ "related_features": [
3234
+ "display",
3235
+ "graphics"
3236
+ ]
3237
+ },
3238
+ {
3239
+ "name": "REG_VOFFSET",
3240
+ "kind": "register",
3241
+ "value": "(REG_CORE_R1 + 0x00A4)",
3242
+ "summary": "Constant REG_VOFFSET",
3243
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3244
+ "related_features": [
3245
+ "display",
3246
+ "graphics"
3247
+ ]
3248
+ },
3249
+ {
3250
+ "name": "REG_VOL_L_PB",
3251
+ "kind": "register",
3252
+ "value": "(REG_CORE_R1 + 0x00C8)",
3253
+ "summary": "/@{",
3254
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3255
+ "related_features": [
3256
+ "audio"
3257
+ ]
3258
+ },
3259
+ {
3260
+ "name": "REG_VOL_R_PB",
3261
+ "kind": "register",
3262
+ "value": "(REG_CORE_R1 + 0x00CC)",
3263
+ "summary": "/@{",
3264
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3265
+ "related_features": [
3266
+ "audio"
3267
+ ]
3268
+ },
3269
+ {
3270
+ "name": "REG_VOL_SOUND",
3271
+ "kind": "register",
3272
+ "value": "(REG_CORE_R1 + 0x00D0)",
3273
+ "summary": "/@{",
3274
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3275
+ "related_features": [
3276
+ "audio"
3277
+ ]
3278
+ },
3279
+ {
3280
+ "name": "REG_VSIZE",
3281
+ "kind": "register",
3282
+ "value": "(REG_CORE_R1 + 0x00A8)",
3283
+ "summary": "Constant REG_VSIZE",
3284
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3285
+ "related_features": [
3286
+ "display",
3287
+ "graphics"
3288
+ ]
3289
+ },
3290
+ {
3291
+ "name": "REG_VSYNC0",
3292
+ "kind": "register",
3293
+ "value": "(REG_CORE_R1 + 0x00AC)",
3294
+ "summary": "Constant REG_VSYNC0",
3295
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3296
+ "related_features": [
3297
+ "display",
3298
+ "graphics"
3299
+ ]
3300
+ },
3301
+ {
3302
+ "name": "REG_VSYNC1",
3303
+ "kind": "register",
3304
+ "value": "(REG_CORE_R1 + 0x00B0)",
3305
+ "summary": "Constant REG_VSYNC1",
3306
+ "source_file": "common/eve_hal/EVE_GpuDefs.h",
3307
+ "related_features": [
3308
+ "display",
3309
+ "graphics"
3310
+ ]
3311
+ }
3312
+ ]