1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
| AIDA64 for Android v1.96 Report
<<< System >>>
Manufacturer: XiaoPeng Xpeng Motors
Model: G9
Brand: XPENG
Board: msmnile
Device: au8155_xp
Hardware: qcom
Platform: msmnile
Product: au8155_xp
Installed RAM: 16 GB
Total Memory: 15,11 GB
Available Memory: 6345 MB
Internal Storage Total Space: 144,25 GB
Internal Storage Free Space: 141,09 GB
Bluetooth Version: 5.0
Device Features: android.hardware.audio.low_latency
android.hardware.audio.output
android.hardware.audio.pro
android.hardware.bluetooth
android.hardware.bluetooth_le
android.hardware.camera
android.hardware.camera.any
android.hardware.camera.autofocus
android.hardware.camera.capability.manual_post_processing
android.hardware.camera.capability.manual_sensor
android.hardware.camera.capability.raw
android.hardware.camera.front
android.hardware.camera.level.full
android.hardware.ethernet
android.hardware.faketouch
android.hardware.location
android.hardware.location.gps
android.hardware.microphone
android.hardware.opengles.aep
android.hardware.ram.normal
android.hardware.screen.landscape
android.hardware.telephony
android.hardware.telephony.cdma
android.hardware.telephony.gsm
android.hardware.touchscreen
android.hardware.touchscreen.multitouch
android.hardware.touchscreen.multitouch.distinct
android.hardware.touchscreen.multitouch.jazzhand
android.hardware.type.automotive
android.hardware.usb.accessory
android.hardware.usb.host
android.hardware.vulkan.compute
android.hardware.vulkan.level
android.hardware.vulkan.version
android.hardware.wifi
android.hardware.wifi.aware
android.hardware.wifi.passpoint
android.hardware.wifi.rtt
android.software.activities_on_secondary_displays
android.software.adoptable_storage
android.software.app_widgets
android.software.autofill
android.software.cant_save_state
android.software.connectionservice
android.software.cts
android.software.device_admin
android.software.device_id_attestation
android.software.home_screen
android.software.input_methods
android.software.ipsec_tunnels
android.software.live_wallpaper
android.software.managed_users
android.software.midi
android.software.secure_lock_screen
android.software.verified_boot
android.software.voice_recognizers
android.software.webview
<<< CPU >>>
SoC Model: Qualcomm Snapdragon 855/860
Core Architecture: 4x Qualcomm Kryo 485 Silver @ 1785 MHz
4x Qualcomm Kryo 485 Gold @ 2419 MHz
Manufacturing Process: 7 nm
Instruction Set: 64-bit ARMv8-A
CPU Revision: r13p14
CPU Cores: 8
CPU Clock Range: 300 - 2419 MHz
Core 1 Clock: 1785 MHz
Core 2 Clock: 1785 MHz
Core 3 Clock: 1785 MHz
Core 4 Clock: 1785 MHz
Core 5 Clock: 2131 MHz
Core 6 Clock: 2131 MHz
Core 7 Clock: 2131 MHz
Core 8 Clock: 2419 MHz
CPU Utilization: 40 %
L3 Cache: 2 MB
Scaling Governor: schedutil
Supported ABIs: arm64-v8a, armeabi-v7a, armeabi
Supported 32-bit ABIs: armeabi-v7a, armeabi
Supported 64-bit ABIs: arm64-v8a
AES: Supported
ASIMD/NEON: Supported
PMULL: Supported
SHA1: Supported
SHA2: Supported
<<< Display >>>
Screen Resolution: 4800 × 1200
xdpi / ydpi: 320 / 321 dpi
GPU Vendor: Qualcomm
GPU Renderer: Adreno (TM) 640
Current GPU Clock: 700 MHz
GPU Clock Range: 427 - 700 MHz
GPU Utilization: 63 %
Scaling Governor: msm-adreno-tz
Refresh Rate: 60 Hz
Default Orientation: Landscape
OpenGL ES Version: 3.2
GPU Version: OpenGL ES 3.2 V@0474.0 (GIT@177f1d2, I694d3bfe33, 1646686089) (Date:03/07/22)
OpenGL ES Extensions: GL_OES_EGL_image
GL_OES_EGL_image_external
GL_OES_EGL_sync
GL_OES_vertex_half_float
GL_OES_framebuffer_object
GL_OES_rgb8_rgba8
GL_OES_compressed_ETC1_RGB8_texture
GL_AMD_compressed_ATC_texture
GL_KHR_texture_compression_astc_ldr
GL_KHR_texture_compression_astc_hdr
GL_OES_texture_compression_astc
GL_OES_texture_npot
GL_EXT_texture_filter_anisotropic
GL_EXT_texture_format_BGRA8888
GL_EXT_read_format_bgra
GL_OES_texture_3D
GL_EXT_color_buffer_float
GL_EXT_color_buffer_half_float
GL_QCOM_alpha_test
GL_OES_depth24
GL_OES_packed_depth_stencil
GL_OES_depth_texture
GL_OES_depth_texture_cube_map
GL_EXT_sRGB
GL_OES_texture_float
GL_OES_texture_float_linear
GL_OES_texture_half_float
GL_OES_texture_half_float_linear
GL_EXT_texture_type_2_10_10_10_REV
GL_EXT_texture_sRGB_decode
GL_EXT_texture_format_sRGB_override
GL_OES_element_index_uint
GL_EXT_copy_image
GL_EXT_geometry_shader
GL_EXT_tessellation_shader
GL_OES_texture_stencil8
GL_EXT_shader_io_blocks
GL_OES_shader_image_atomic
GL_OES_sample_variables
GL_EXT_texture_border_clamp
GL_EXT_EGL_image_external_wrap_modes
GL_EXT_multisampled_render_to_texture
GL_EXT_multisampled_render_to_texture2
GL_OES_shader_multisample_interpolation
GL_EXT_texture_cube_map_array
GL_EXT_draw_buffers_indexed
GL_EXT_gpu_shader5
GL_EXT_robustness
GL_EXT_texture_buffer
GL_EXT_shader_framebuffer_fetch
GL_ARM_shader_framebuffer_fetch_depth_stencil
GL_OES_texture_storage_multisample_2d_array
GL_OES_sample_shading
GL_OES_get_program_binary
GL_EXT_debug_label
GL_KHR_blend_equation_advanced
GL_KHR_blend_equation_advanced_coherent
GL_QCOM_tiled_rendering
GL_ANDROID_extension_pack_es31a
GL_EXT_primitive_bounding_box
GL_OES_standard_derivatives
GL_OES_vertex_array_object
GL_EXT_disjoint_timer_query
GL_KHR_debug
GL_EXT_YUV_target
GL_EXT_sRGB_write_control
GL_EXT_texture_norm16
GL_EXT_discard_framebuffer
GL_OES_surfaceless_context
GL_OVR_multiview
GL_OVR_multiview2
GL_EXT_texture_sRGB_R8
GL_KHR_no_error
GL_EXT_debug_marker
GL_OES_EGL_image_external_essl3
GL_OVR_multiview_multisampled_render_to_texture
GL_EXT_buffer_storage
GL_EXT_external_buffer
GL_EXT_blit_framebuffer_params
GL_EXT_clip_cull_distance
GL_EXT_protected_textures
GL_EXT_shader_non_constant_global_initializers
GL_QCOM_texture_foveated
GL_QCOM_texture_foveated_subsampled_layout
GL_QCOM_shader_framebuffer_fetch_noncoherent
GL_QCOM_shader_framebuffer_fetch_rate
GL_EXT_memory_object
GL_EXT_memory_object_fd
GL_EXT_EGL_image_array
GL_NV_shader_noperspective_interpolation
GL_KHR_robust_buffer_access_behavior
GL_EXT_EGL_image_storage
GL_EXT_blend_func_extended
GL_EXT_clip_control
GL_OES_texture_view
GL_EXT_fragment_invocation_density
GL_QCOM_validate_shader_binary
<<< Network >>>
<< Telephony >>
Phone Type: None
<< Wi-Fi >>
State: Enabled
SSID: xxxxxxxxxxxx
BSSID: xx:xx:xx:xx:xx:xx
Hidden SSID: Yes
IPv4 Address: xxx.xxx.xxx.xxx
IPv6 Address: xxxx::xxxx:xxxx:xxxx:xxxx
Signal Strength: -68 dBm (Good)
Link Speed: 1 Mbps
Frequency: 2412 MHz
Gateway: xxx.xxx.xxx.xxx
Netmask: xxx.xxx.xxx.xxx
DNS1: xxx.xxx.xxx.xxx
DNS2: xxx.xxx.xxx.xxx
DHCP Lease Duration: 24 hours
5 GHz Band: Supported
Wi-Fi Aware: Supported
Wi-Fi Direct: Not Supported
<<< Battery >>>
Power Source: Battery
Level: 100 %
Status: Not Charging
Health: Good
Remaining Charge Time: 0 minutes
<<< Android >>>
Android Version: 10 (Quince Tart)
API Level: 29
Android Security Patch Level: 2020-10-05
Rooted Device: No
Android ID: 381bb91bc13ed72a
Build ID: XMARTQ7EUE38E5_V1.0.0_20230914000706.11_REV01_USER_Release
Codename: REL
Fingerprint: XPENG/au8155_xp/au8155_xp:10/QD4A.200805.003/eng.root.20230914.001743:user/test-keys
ID: QD4A.200805.003
Incremental: eng.root.20230914.001743
Java Runtime Version: Android Runtime 0.9
Java VM Version: ART 2.1.0
Java VM Heap Size: 512 MB
Kernel Architecture: aarch64
Kernel Version: 4.14.170-perf+ (root@1f9def529925) (Android (6052599 based on r353983c1) clang version 9.0.3 (https://android.googlesource.com/toolchain/clang 745b335211bb9eadfa6aa6301f84715cee4b37c5) (https://android.googlesource.com/toolchain/llvm 31c3f8c4ae6cc980405a3b90e7e88db00249eba5) (based on LLVM 9.0.3svn)) #2 SMP PREEMPT Thu Sep 14 01:52:44 HKT 2023
Tags: test-keys
Type: user
Google Play Services Version: < Not Present >
Huawei Mobile Services Version: < Not Present >
OpenSSL Version: OpenSSL 1.1.0 (compatible; BoringSSL)
ZLib Version: 1.2.11
ICU CLDR Version: 34.0
ICU Library Version: 63.2
ICU Unicode Version: 11.0
Android Language: English (Netherlands)
Configured Time Zone: Central European Standard Time (UTC+01:00)
UpTime: 1 day, 22:02:41
<<< Devices >>>
<< Front-Facing Camera >>
Resolution: 2,1 MP (1920 × 1080)
Video Resolution: 2,1 MP (1920 × 1088)
Focus Modes: fixed
Video Snapshot: Not Supported
Video Stabilization: Not Supported
Zoom: Not Supported
Smooth Zoom: Not Supported
Auto Exposure Locking: Not Supported
Auto White Balance Locking: Not Supported
<< Front-Facing Camera >>
Resolution: 2,1 MP (1920 × 1080)
Video Resolution: 1,4 MP (1920 × 736)
Focus Modes: fixed
Video Snapshot: Not Supported
Video Stabilization: Not Supported
Zoom: Not Supported
Smooth Zoom: Not Supported
Auto Exposure Locking: Not Supported
Auto White Balance Locking: Not Supported
<< Front-Facing Camera >>
Resolution: 2,1 MP (1920 × 1080)
Video Resolution: 2,1 MP (1920 × 1088)
Focus Modes: fixed
Video Snapshot: Not Supported
Video Stabilization: Not Supported
Zoom: Not Supported
Smooth Zoom: Not Supported
Auto Exposure Locking: Not Supported
Auto White Balance Locking: Not Supported
<< Front-Facing Camera >>
Resolution: 2,1 MP (1920 × 1080)
Video Resolution: 2,1 MP (1920 × 1088)
Focus Modes: fixed
Video Snapshot: Not Supported
Video Stabilization: Not Supported
Zoom: Not Supported
Smooth Zoom: Not Supported
Auto Exposure Locking: Not Supported
Auto White Balance Locking: Not Supported
<< Front-Facing Camera >>
Resolution: 2,1 MP (1920 × 1080)
Video Resolution: 2,1 MP (1920 × 1088)
Focus Modes: fixed
Video Snapshot: Not Supported
Video Stabilization: Not Supported
Zoom: Not Supported
Smooth Zoom: Not Supported
Auto Exposure Locking: Not Supported
Auto White Balance Locking: Not Supported
<< USB Device - Linux 4.14.170-perf+ xhci-hcd xHCI Host Controller >>
Manufacturer: Linux 4.14.170-perf+ xhci-hcd
Product: xHCI Host Controller
Serial: xhci-hcd.0.auto
Device ID: 1D6B-0002
Device Class: 09 / 00 (Hi-Speed Hub with single TT)
Device Protocol: 01
Revision: 0414
Supported USB Version: 2.00
Current Speed: 480 Mbps
<< USB Device - QTIL Audio Dongle >>
Product: QTIL Audio Dongle
Serial: ABCDEF0123456789
Device ID: 0A12-1004
Device Class: 00 / 00
Device Protocol: 00
Revision: 3994
Supported USB Version: 2.00
Current Speed: 12 Mbps
Maximum Power: 96 mA
<< USB Device - Linux 4.14.170-perf+ xhci-hcd xHCI Host Controller >>
Manufacturer: Linux 4.14.170-perf+ xhci-hcd
Product: xHCI Host Controller
Serial: xhci-hcd.0.auto
Device ID: 1D6B-0003
Device Class: 09 / 00 (Hub)
Device Protocol: 03
Revision: 0414
Supported USB Version: 3.10
Current Speed: 10000 Mbps
<< OpenCL Device - QUALCOMM Adreno(TM) >>
Device Name: QUALCOMM Adreno(TM)
Device Type: GPU
Device Vendor: QUALCOMM
Device Vendor ID: 0xBF4D3C4B
Device Version: OpenCL 2.0 Adreno(TM) 640
Device Profile: Full
Driver Version: OpenCL 2.0 QUALCOMM build: commit #177f1d2 changeid #I694d3bfe33 Date: 03/07/22 Mon Local Branch: Remote Branch: Compiler E031.37.08.01
OpenCL C Version: OpenCL C 2.0 Adreno(TM) 640
Clock Rate: 1 MHz
Compute Units: 2
Address Space Size: 64-bit
Max 2D Image Size: 16384 × 16384
Max 3D Image Size: 16384 × 16384 × 2048
Max Image Array Size: 2048
Max Image Buffer Size: 134217728
Max Samplers: 16
Max Work-Item Size: 1024 × 1024 × 1024
Max Work-Group Size: 1024
Max Global Variable Size: 64 KB
Preferred Global Variables Total Size: 1 MB
Max Argument Size: 1 KB
Max Constant Buffer Size: 64 KB
Max Constant Arguments: 8
Max Pipe Arguments: 16
Max Printf Buffer Size: 1 MB
Native ISA Vector Widths: char1, short1, int1, half1, float1
Preferred Native Vector Widths: char1, short1, int1, long1, half1, float1
Profiling Timer Resolution: 1000 ns
OpenCL Library: /system/vendor/lib64/libOpenCL.so
Global Memory: 7922830 KB
Global Memory Cache: 128 KB (Read/Write, 64-byte line)
Local Memory: 32 KB
Max Memory Object Allocation Size: 1 GB
Memory Base Address Alignment: 1024-bit
Min Data Type Alignment: 128 bytes
Image Row Pitch Alignment: 64 pixels
Image Base Address Alignment: 64 pixels
Preferred Platform Atomic Alignment: 128 bytes
Command-Queue Out Of Order Execution: Enabled
Command-Queue Profiling: Enabled
Compiler Available: Yes
Error Correction: Not Supported
Images: Supported
Kernel Execution: Supported
Linker Available: Yes
Little-Endian Device: Yes
Native Kernel Execution: Not Supported
SVM Atomics: Supported
SVM Coarse Grain Buffer: Supported
SVM Fine Grain Buffer: Supported
SVM Fine Grain System: Not Supported
Unified Memory: Yes
OpenCL Extensions: cl_khr_3d_image_writes
cl_img_egl_image
cl_khr_byte_addressable_store
cl_khr_depth_images
cl_khr_egl_event
cl_khr_egl_image
cl_khr_fp16
cl_khr_gl_sharing
cl_khr_global_int32_base_atomics
cl_khr_global_int32_extended_atomics
cl_khr_local_int32_base_atomics
cl_khr_local_int32_extended_atomics
cl_khr_image2d_from_buffer
cl_khr_mipmap_image
cl_khr_srgb_image_writes
cl_khr_subgroups
cl_qcom_create_buffer_from_image
cl_qcom_ext_host_ptr
cl_qcom_ion_host_ptr
cl_qcom_perf_hint
cl_qcom_other_image
cl_qcom_subgroup_shuffle
cl_qcom_vector_image_ops
cl_qcom_extract_image_plane
cl_qcom_android_native_buffer_host_ptr
cl_qcom_protected_context
cl_qcom_priority_hint
cl_qcom_compressed_yuv_image_read
cl_qcom_compressed_image
cl_qcom_ext_host_ptr_iocoherent
cl_qcom_accelerated_image_ops
cl_qcom_ml_ops
<< Vulkan Device - Adreno (TM) 640 >>
Device Name: Adreno (TM) 640
Device Type: Integrated GPU
Device UUID: xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx-xx
Device ID: xxxxxxxx-xxxxxxxx
Memory Size: 3524892 KB
Max 1D Image Size: 16384
Max 2D Image Size: 16384 x 16384
Max 3D Image Size: 2048 x 2048 x 2048
Max Cube Image Size: 16384 x 16384
Max Image Layers: 2048
Max Texel Buffer Elements: 134217728
Max Uniform Buffer Range: 65536
Max Storage Buffer Range: 536870912
Max Push Constants Size: 128 bytes
Max Memory Allocation Count: 4096
Max Sampler Allocation Count: 4000
Buffer Image Granularity: 1 bytes
Max Bound Descriptor Sets: 4
Max Per-Stage Descriptor Samplers: 256
Max Per-Stage Descriptor Uniform Buffers: 96
Max Per-Stage Descriptor Storage Buffers: 72
Max Per-Stage Descriptor Sampled Images: 256
Max Per-Stage Descriptor Storage Images: 64
Max Per-Stage Descriptor Input Attachments: 8
Max Per-Stage Resources: 608
Max Descriptor Set Samplers: 256
Max Descriptor Set Uniform Buffers: 96
Max Descriptor Set Dynamic Uniform Buffers: 32
Max Descriptor Set Storage Buffers: 72
Max Descriptor Set Dynamic Storage Buffers: 16
Max Descriptor Set Sampled Images: 256
Max Descriptor Set Storage Images: 64
Max Descriptor Set Input Attachments: 8
Max Vertex Input Attributes: 32
Max Vertex Input Bindings: 32
MaxVertex Input Attribute Offset: 4096
Max Vertex Input Binding Stride: 2048
Max Vertex Output Components: 128
Max Tesselation Generation Level: 64
Max Tesselation Patch Size: 32
Max Tesselation Control Per-Vertex Input Components: 128
Max Tesselation Control Per-Vertex Output Components: 128
Max Tesselation Control Per-Patch Output Components: 120
Max Tesselation Control Total Output Components: 4096
Max Tesselation Evaluation Input Components: 128
Max Tesselation Evaluation Output Components: 128
Max Geometry Shader Invocations: 32
Max Geometry Input Components: 128
Max Geometry Output Components: 128
Max Geometry Output Vertices: 1024
Max Geometry Total Output Components: 131072
Max Fragment Input Components: 112
Max Fragment Output Attachments: 8
Max Fragment DualSrc Attachments: 1
Max Fragment Combined Output Resources: 72
Max Compute Shared Memory Size: 32 KB
Max Compute Work Group Count: X: 65535, Y: 65535, Z: 65535
Max Compute Work Group Invocations: 1024
Max Compute Work Group Size: X: 1024, Y: 1024, Z: 64
Subpixel Precision Bits: 8
Subtexel Precision Bits: 8
Mipmap Precision Bits: 8
Max Draw Indexed Index Value: 4294967295
Max Draw Indirect Count: 4294967295
Max Sampler LOD Bias: 15,996094
Max Sampler Anisotropy: 16,000000
Max Viewports: 1
Max Viewport Size: 16384 x 16384
Viewport Bounds Range: -32768,000000 ... 32767,000000
Viewport Subpixel Bits: 8
Min Memory Map Alignment: 64 bytes
Min Texel Buffer Offset Alignment: 64 bytes
Min Uniform Buffer Offset Alignment: 64 bytes
Min Storage Buffer Offset Alignment: 64 bytes
Min / Max Texel Offset: -16 / 15
Min / Max Texel Gather Offset: -32 / 31
Min / Max Interpolation Offset: -0,500000 / 0,437500
Subpixel Interpolation Offset Bits: 4
Max Framebuffer Size: 16384 x 16384
Max Framebuffer Layers: 2048
Framebuffer Color Sample Counts: 0x00000007
Framebuffer Depth Sample Counts: 0x00000007
Framebuffer Stencil Sample Counts: 0x00000007
Framebuffer No Attachments Sample Counts: 0x00000007
Max Color Attachments: 8
Sampled Image Color Sample Counts: 0x00000007
Sampled Image Integer Sample Counts: 0x00000007
Sampled Image Depth Sample Counts: 0x00000007
Sampled Image Stencil Sample Counts: 0x00000007
Storage Image Sample Counts: 0x00000001
Max Sample Mask Words: 1
Timestamp Period: 52,083332 ns
Max Clip Distances: 8
Max Cull Distances: 8
Max Combined Clip and Cull Distances: 8
Discrete Queue Priorities: 3
Point Size Range: 1,000000 ... 4092,000000
Line Width Range: 1,000000 ... 1,000000
Point Size Granularity: 0,062500
Optimal Buffer Copy Offset Alignment: 64 bytes
Optimal Buffer Copy Row Pitch Alignment: 64 bytes
Non-Coherent Atom Size: 1 bytes
API Version: 1.1.128
Vulkan Library: /system/lib64/libvulkan.so
Alpha To One: Supported
Anisotropic Filtering: Supported
ASTC LDR Texture Compression: Supported
BC Texture Compression: Not Supported
Depth Bias Clamping: Supported
Depth Bounds Tests: Supported
Depth Clamping: Supported
Draw Indirect First Instance: Supported
Dual Source Blend Operations: Supported
ETC2 and EAC Texture Compression: Supported
Fragment Stores and Atomics: Supported
Full Draw Index Uint32: Supported
Geometry Shader: Supported
Image Cube Array: Supported
Independent Blend: Supported
Inherited Queries: Supported
Large Points: Supported
Logic Operations: Not Supported
Multi-Draw Indirect: Supported
Multi Viewport: Not Supported
Occlusion Query Precise: Supported
Pipeline Statistics Query: Supported
Point and Wireframe Fill Modes: Supported
Robust Buffer Access: Supported
Sample Rate Shading: Supported
Shader Clip Distance: Supported
Shader Cull Distance: Supported
Shader Float64: Not Supported
Shader Image Gather Extended: Supported
Shader Int16: Supported
Shader Int64: Not Supported
Shader Resource Min LOD: Not Supported
Shader Resource Residency: Not Supported
Shader Sampled Image Array Dynamic Indexing: Supported
Shader Storage Buffer Array Dynamic Indexing: Supported
Shader Storage Image Array Dynamic Indexing: Supported
Shader Storage Image Extended Formats: Supported
Shader Storage Image Multisample: Not Supported
Shader Storage Image Read Without Format: Supported
Shader Storage Image Write Without Format: Supported
Shader Tesselation and Geometry Point Size: Not Supported
Shader Uniform Buffer Array Dynamic Indexing: Supported
Sparse Binding: Not Supported
Sparse Residency 2 Samples: Not Supported
Sparse Residency 4 Samples: Not Supported
Sparse Residency 8 Samples: Not Supported
Sparse Residency 16 Samples: Not Supported
Sparse Residency Aliased: Not Supported
Sparse Residency Aligned Mip Size: No
Sparse Residency Buffer: Not Supported
Sparse Residency Image 2D: Not Supported
Sparse Residency Image 3D: Not Supported
Sparse Residency Non-Resident Strict: No
Sparse Residency Standard 2D Block Shape: No
Sparse Residency Standard 2D Multisample Block Shape: No
Sparse Residency Standard 3D Block Shape: No
Standard Sample Locations: Yes
Strict Line Rasterization: Yes
Tesselation Shader: Supported
Timestamps on All Graphics and Compute Queues: Supported
Variable Multisample Rate: Not Supported
Vertex Pipeline Stores and Atomics: Supported
Wide Lines: Not Supported
Device Extensions: VK_KHR_incremental_present
VK_EXT_hdr_metadata
VK_KHR_shared_presentable_image
VK_GOOGLE_display_timing
VK_KHR_external_memory
VK_EXT_pipeline_creation_feedback
VK_KHR_shader_float16_int8
VK_KHR_get_memory_requirements2
VK_EXT_fragment_density_map
VK_KHR_external_semaphore_fd
VK_KHR_external_memory_fd
VK_KHR_maintenance1
VK_KHR_maintenance2
VK_KHR_maintenance3
VK_EXT_queue_family_foreign
VK_KHR_bind_memory2
VK_KHR_external_semaphore
VK_EXT_scalar_block_layout
VK_KHR_sampler_ycbcr_conversion
VK_KHR_variable_pointers
VK_KHR_push_descriptor
VK_KHR_device_group
VK_KHR_relaxed_block_layout
VK_KHR_external_fence
VK_EXT_host_query_reset
VK_EXT_index_type_uint8
VK_KHR_multiview
VK_KHR_storage_buffer_storage_class
VK_EXT_separate_stencil_usage
VK_KHR_image_format_list
VK_EXT_sampler_filter_minmax
VK_QCOM_render_pass_transform
VK_KHR_create_renderpass2
VK_KHR_depth_stencil_resolve
VK_KHR_shader_float_controls
VK_EXT_global_priority
VK_KHR_shader_draw_parameters
VK_KHR_vulkan_memory_model
VK_EXT_line_rasterization
VK_KHR_descriptor_update_template
VK_KHR_draw_indirect_count
VK_KHR_driver_properties
VK_ANDROID_external_memory_android_hardware_buffer
VK_KHR_dedicated_allocation
VK_KHR_swapchain
VK_KHR_sampler_mirror_clamp_to_edge
VK_KHR_external_fence_fd
Instance Extensions: VK_KHR_surface
VK_KHR_android_surface
VK_EXT_swapchain_colorspace
VK_KHR_get_surface_capabilities2
VK_EXT_debug_report
VK_KHR_get_physical_device_properties2
VK_KHR_external_semaphore_capabilities
VK_KHR_external_memory_capabilities
VK_KHR_device_group_creation
VK_KHR_external_fence_capabilities
<< PCI Devices >>
B00-D00-F00: 17CB-0108
B01-D00-F00: 17CB-1101
No CUDA devices found.
<<< Thermal >>>
aoss0-usr: 19,3°C
cpu-0-0-usr: 23,1°C
cpu-0-1-usr: 22,7°C
cpu-0-2-usr: 21,2°C
cpu-0-3-usr: 19,3°C
cpuss-0-usr: 24,3°C
cpuss-1-usr: 23,1°C
cpu-1-0-usr: 20,8°C
cpu-1-1-usr: 21,6°C
cpu-1-2-usr: 20,8°C
cpu-1-3-usr: 25,4°C
cpu-1-4-usr: 18,9°C
cpu-1-5-usr: 22,4°C
cpu-1-6-usr: 22,4°C
cpu-1-7-usr: 24,7°C
gpuss-0-usr: 16,2°C
aoss-1-usr: 18,3°C
cwlan-usr: 17,2°C
video-usr: 19,5°C
ddr-usr: 18,3°C
q6-hvx-usr: 17,6°C
camera-usr: 15,6°C
cmpss-usr: 20,7°C
npu-usr: 18,7°C
mdm-vec-usr: 17,2°C
mdm-scl-usr: 16,8°C
gpuss-1-usr: 17,6°C
gpuss-max-step: 18,0°C
apc-0-max-step: 25,4°C
apc-1-max-step: 25,8°C
lmh-dcvs-01: 75,0°C
lmh-dcvs-00: 75,0°C
npu-step: 18,7°C
cpu-0-0-step: 23,1°C
cpu-0-1-step: 23,5°C
cpu-0-2-step: 22,4°C
cpu-0-3-step: 20,0°C
cpu-1-0-step: 19,3°C
cpu-1-1-step: 22,4°C
cpu-1-2-step: 22,0°C
cpu-1-3-step: 21,6°C
cpu-1-4-step: 17,3°C
cpu-1-5-step: 22,7°C
cpu-1-6-step: 24,3°C
cpu-1-7-step: 25,8°C
q6-hvx-step: 18,0°C
pm8150_2_tz: 18,5°C
xo-therm: 125,0°C
pa-therm1: 16,6°C
pa-therm2: 18,0°C
ufs-therm: 15,2°C
soc-therm: 16,2°C
<<< Sensors >>>
No sensors found.
<<< Apps >>>
AIDA64: com.finalwire.aida64(v1.96)
Spotify: com.spotify.music(v4.3.2.0)
TuneIn Radio: tunein.player(v31.5.3)
<<< Codecs >>>
OMX.qcom.video.decoder.avc: video/avc
OMX.qti.video.decoder.h263sw: video/3gpp
OMX.qcom.video.decoder.hevc: video/hevc
OMX.qcom.video.decoder.mpeg2: video/mpeg2
OMX.qti.video.decoder.mpeg4sw: video/mp4v-es
OMX.qti.video.decoder.vc1sw: video/x-ms-wmv
OMX.qcom.video.decoder.vp8: video/x-vnd.on2.vp8
OMX.qcom.video.decoder.vp9: video/x-vnd.on2.vp9
OMX.qcom.video.encoder.avc: video/avc
OMX.qcom.video.encoder.h263sw: video/3gpp
OMX.qcom.video.encoder.hevc: video/hevc
OMX.qcom.video.encoder.hevc.cq: video/hevc
OMX.qcom.video.encoder.mpeg4sw: video/mp4v-es
OMX.qcom.video.encoder.vp8: video/x-vnd.on2.vp8
OMX.google.aac.decoder: audio/mp4a-latm
OMX.google.amrnb.decoder: audio/3gpp
OMX.google.amrwb.decoder: audio/amr-wb
OMX.google.g711.alaw.decoder: audio/g711-alaw
OMX.google.g711.mlaw.decoder: audio/g711-mlaw
OMX.google.gsm.decoder: audio/gsm
OMX.google.mp3.decoder: audio/mpeg
OMX.google.opus.decoder: audio/opus
OMX.google.raw.decoder: audio/raw
OMX.google.vorbis.decoder: audio/vorbis
OMX.google.aac.encoder: audio/mp4a-latm
OMX.google.amrnb.encoder: audio/3gpp
OMX.google.amrwb.encoder: audio/amr-wb
OMX.google.flac.encoder: audio/flac
c2.android.aac.decoder: audio/mp4a-latm
c2.android.aac.encoder: audio/mp4a-latm
c2.android.amrnb.decoder: audio/3gpp
c2.android.amrnb.encoder: audio/3gpp
c2.android.amrwb.decoder: audio/amr-wb
c2.android.amrwb.encoder: audio/amr-wb
c2.android.flac.decoder: audio/flac
OMX.google.flac.decoder: audio/flac
c2.android.flac.encoder: audio/flac
c2.android.g711.alaw.decoder: audio/g711-alaw
c2.android.g711.mlaw.decoder: audio/g711-mlaw
c2.android.mp3.decoder: audio/mpeg
c2.android.opus.decoder: audio/opus
c2.android.opus.encoder: audio/opus
c2.android.raw.decoder: audio/raw
c2.android.vorbis.decoder: audio/vorbis
c2.xpeng.eac3.decoder: audio/eac3
c2.xpeng.eac3.joc.decoder: audio/eac3-joc
c2.android.av1.decoder: video/av01
c2.android.avc.decoder: video/avc
OMX.google.h264.decoder: video/avc
c2.android.avc.encoder: video/avc
OMX.google.h264.encoder: video/avc
c2.android.h263.decoder: video/3gpp
OMX.google.h263.decoder: video/3gpp
c2.android.h263.encoder: video/3gpp
OMX.google.h263.encoder: video/3gpp
c2.android.hevc.decoder: video/hevc
OMX.google.hevc.decoder: video/hevc
c2.android.hevc.encoder: video/hevc
c2.android.mpeg4.decoder: video/mp4v-es
OMX.google.mpeg4.decoder: video/mp4v-es
c2.android.mpeg4.encoder: video/mp4v-es
OMX.google.mpeg4.encoder: video/mp4v-es
c2.android.vp8.decoder: video/x-vnd.on2.vp8
OMX.google.vp8.decoder: video/x-vnd.on2.vp8
c2.android.vp8.encoder: video/x-vnd.on2.vp8
OMX.google.vp8.encoder: video/x-vnd.on2.vp8
c2.android.vp9.decoder: video/x-vnd.on2.vp9
OMX.google.vp9.decoder: video/x-vnd.on2.vp9
c2.android.vp9.encoder: video/x-vnd.on2.vp9
OMX.google.vp9.encoder: video/x-vnd.on2.vp9
<<< Directories >>>
Data: /data
Root: /system
Java Home: /system
Download/Cache Content: /data/cache
<< External Storage >>
Primary External Storage: /storage/emulated/0
External Files #1: /storage/emulated/0/Android/data/com.finalwire.aida64/files
Alarms: /storage/emulated/0/Alarms
DCIM: /storage/emulated/0/DCIM
Downloads: /storage/emulated/0/Download
Movies: /storage/emulated/0/Movies
Music: /storage/emulated/0/Music
Notifications: /storage/emulated/0/Notifications
Pictures: /storage/emulated/0/Pictures
Podcasts: /storage/emulated/0/Podcasts
Ringtones: /storage/emulated/0/Ringtones
<< Mount Points >>
/: Device: /dev/block/dm-8
File System: ext4
Read-Only
/dev: Device: tmpfs
File System: tmpfs
Read-Write
/dev/pts: Device: devpts
File System: devpts
Read-Write
/dev/blkio: Device: none
File System: cgroup
Read-Write
/dev/cg2_bpf: Device: none
File System: cgroup2
Read-Write
/dev/cpuctl: Device: none
File System: cgroup
Read-Write
/dev/cpuset: Device: none
File System: cgroup
Read-Write
/dev/memcg: Device: none
File System: cgroup
Read-Write
/dev/stune: Device: none
File System: cgroup
Read-Write
/dev/usb-ffs/adb: Device: adb
File System: functionfs
Read-Write
/proc: Device: proc
File System: proc
Read-Write
/sys: Device: sysfs
File System: sysfs
Read-Write
/sys/fs/selinux: Device: selinuxfs
File System: selinuxfs
Read-Write
/sys/kernel/debug: Device: debugfs
File System: debugfs
Read-Write
/sys/kernel/debug/tracing: Device: tracefs
File System: tracefs
Read-Write
/sys/fs/bpf: Device: bpf
File System: bpf
Read-Write
/sys/fs/pstore: Device: pstore
File System: pstore
Read-Write
/mnt: Device: tmpfs
File System: tmpfs
Read-Write
/mnt/vendor/persist: Device: /dev/block/bootdevice/by-name/persist
File System: ext4
Read-Write
/mnt/xp_resource: Device: /dev/block/bootdevice/by-name/xp_resource_b
File System: ext4
Read-Only
/mnt/vmap: Device: /dev/block/bootdevice/by-name/vmap
File System: ext4
Read-Write
/mnt/vendor/private: Device: /dev/block/bootdevice/by-name/private
File System: ext4
Read-Write
/mnt/vendor/private_bak: Device: /dev/block/bootdevice/by-name/private_bak
File System: ext4
Read-Write
/mnt/vendor/xp_data: Device: /dev/block/bootdevice/by-name/xp_data
File System: ext4
Read-Write
/mnt/runtime/default/emulated: Device: /data/media
File System: sdcardfs
Read-Write
/mnt/runtime/read/emulated: Device: /data/media
File System: sdcardfs
Read-Write
/mnt/runtime/write/emulated: Device: /data/media
File System: sdcardfs
Read-Write
/mnt/runtime/full/emulated: Device: /data/media
File System: sdcardfs
Read-Write
/apex: Device: tmpfs
File System: tmpfs
Read-Write
/apex/com.android.tzdata@299900000: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.tzdata: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.runtime@1: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.runtime: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.conscrypt@299900000: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.conscrypt: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.media@290000000: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.media: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.media.swcodec@290000000: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.media.swcodec: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.resolv@299900000: Device: /dev/block/dm-8
File System: ext4
Read-Only
/apex/com.android.resolv: Device: /dev/block/dm-8
File System: ext4
Read-Only
/vendor: Device: /dev/block/dm-9
File System: ext4
Read-Only
/vendor/firmware_mnt: Device: /dev/block/bootdevice/by-name/modem_b
File System: vfat
Read-Only
/vendor/dsp: Device: /dev/block/bootdevice/by-name/dsp_b
File System: ext4
Read-Only
/vendor/bt_firmware: Device: /dev/block/bootdevice/by-name/bluetooth_b
File System: vfat
Read-Only
/product: Device: /dev/block/dm-6
File System: ext4
Read-Only
/odm: Device: /dev/block/dm-7
File System: ext4
Read-Only
/acct: Device: none
File System: cgroup
Read-Write
/metadata: Device: /dev/block/bootdevice/by-name/metadata
File System: ext4
Read-Write
/data: Device: /dev/block/bootdevice/by-name/userdata
File System: f2fs
Read-Write
/config: Device: none
File System: configfs
Read-Write
/storage: Device: tmpfs
File System: tmpfs
Read-Write
/storage/emulated: Device: /data/media
File System: sdcardfs
Read-Write
/storage/self: Device: tmpfs
File System: tmpfs
Read-Write
<<< System Files >>>
Buddy Info: /proc/buddyinfo
Build Properties: /system/build.prop
Character & Block Devices: /proc/devices
Command Line: /proc/cmdline
CPU Information: /proc/cpuinfo
Default Properties: /default.prop
Execution Domains: /proc/execdomains
File Systems: /proc/filesystems
Frame Buffer Devices: /proc/fb
Hosts: /system/etc/hosts
Interrupts: /proc/interrupts
Input Devices: /proc/bus/input/devices
I/O Ports: /proc/ioports
Kernel Version: /proc/version
Load Average: /proc/loadavg
Locked Files: /proc/locks
Memory Information: /proc/meminfo
Memory Map: /proc/iomem
Misc Drivers: /proc/misc
Partitions: /proc/partitions
PCI Devices: /proc/bus/pci/devices
Statistics: /proc/stat
Swap Spaces: /proc/swaps
Vold Fstab: /system/etc/vold.fstab
<<< /proc/cpuinfo >>>
Processor : AArch64 Processor rev 14 (aarch64)
processor : 0
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x805
CPU revision : 14
processor : 1
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x805
CPU revision : 14
processor : 2
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x805
CPU revision : 14
processor : 3
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x805
CPU revision : 14
processor : 4
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x804
CPU revision : 14
processor : 5
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x804
CPU revision : 14
processor : 6
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x804
CPU revision : 14
processor : 7
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp
CPU implementer : 0x51
CPU architecture: 8
CPU variant : 0xd
CPU part : 0x804
CPU revision : 14
Hardware : Qualcomm Technologies, Inc SA8155P
<<< /proc/meminfo >>>
MemTotal: 15845660 kB
MemFree: 1425944 kB
MemAvailable: 6262376 kB
Buffers: 1096 kB
Cached: 5051232 kB
SwapCached: 0 kB
Active: 6334952 kB
Inactive: 4331732 kB
Active(anon): 5619504 kB
Inactive(anon): 80052 kB
Active(file): 715448 kB
Inactive(file): 4251680 kB
Unevictable: 0 kB
Mlocked: 0 kB
SwapTotal: 2097148 kB
SwapFree: 2097148 kB
Dirty: 80 kB
Writeback: 0 kB
AnonPages: 5614500 kB
Mapped: 2986948 kB
Shmem: 85196 kB
KReclaimable: 390760 kB
Slab: 301436 kB
SReclaimable: 99616 kB
SUnreclaim: 201820 kB
KernelStack: 59280 kB
PageTables: 92996 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 10019976 kB
Committed_AS: 136814916 kB
VmallocTotal: 263061440 kB
VmallocUsed: 97940 kB
VmallocChunk: 0 kB
CmaTotal: 139264 kB
CmaFree: 184 kB |