-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfor-roger
More file actions
2535 lines (2316 loc) · 143 KB
/
Copy pathfor-roger
File metadata and controls
2535 lines (2316 loc) · 143 KB
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
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1566101/sk-am62a-lp-v4l2_decode-vidioc_qbuf-failed
https://github.com/TexasInstruments/edgeai-tiovx-apps
########################### 跑不起来的
root@am62axx-evm:~# cd /opt/edgeai-tiovx-apps/
root@am62axx-evm:/opt/edgeai-tiovx-apps# ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
APP: Init ... !!!
164.707108 s: MEM: Init ... !!!
164.707212 s: MEM: Initialized DMA HEAP (fd=5) !!!
164.707453 s: MEM: Init ... Done !!!
164.707475 s: IPC: Init ... !!!
164.724360 s: IPC: Init ... Done !!!
REMOTE_SERVICE: Init ... !!!
REMOTE_SERVICE: Init ... Done !!!
164.734009 s: GTC Frequency = 200 MHz
APP: Init ... Done !!!
164.738384 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_ERROR
164.738432 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_WARNING
164.738443 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_INFO
164.740719 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-0
164.740900 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-1
164.741012 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-2
164.741137 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-3
164.741153 s: VX_ZONE_INFO: [tivxInitLocal:126] Initialization Done !!!
164.741169 s: VX_ZONE_INFO: Globally Disabled VX_ZONE_INFO
Input #0, h264, from '/opt/edgeai-test-data/videos/video0_1280_768.h264':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x768, 25 fps, 60 tbr, 1200k tbn
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
[TIOVX_MODULES][ERROR] 519: v4l2_decode_enqueue_buf: [V4L2_DECODE] VIDIOC_QBUF failed
^C[TIOVX_MODULES][ERROR] 546: v4l2_decode_dqueue_buf: [V4L2_DECODE[ 164.502886] kauditd_printk_skb: 5 callbacks suppressed
] POLL failed
[ 164.502898] audit: type=1701 audit(172.032:18): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=630 comm="edgeai-tiovx-ap" exe="/opt/edgeai-tiovx-apps/bin/Release/edgeai-tiovx-apps-main" sig=11 res=1
[ 164.547521] audit: type=1334 audit(172.072:19): prog-id=19 op=LOAD
[ 164.553787] audit: type=1334 audit(172.080:20): prog-id=20 op=LOAD
[ 164.560013] audit: type=1334 audit(172.084:21): prog-id=21 op=LOAD
gSegmentation fault (core dumped)
root@am62axx-evm:/opt/edgeai-tiovx-apps# g[ 165.884608] audit: type=1334 audit(173.412:22): prog-id=21 op=UNLOAD
[ 165.891003] audit: type=1334 audit(173.412:23): prog-id=20 op=UNLOAD
[ 165.897415] audit: type=1334 audit(173.412:24): prog-id=19 op=UNLOAD
root@am62axx-evm:/opt/edgeai-tiovx-apps#
root@am62axx-evm:/opt/edgeai-tiovx-apps# grep -H . /sys/class/video4linux/video
video0/ video1/ video2/
root@am62axx-evm:/opt/edgeai-tiovx-apps# grep -H . /sys/class/video4linux/video*/name
/sys/class/video4linux/video0/name:e5010
/sys/class/video4linux/video1/name:C&M Wave5 VPU decoder
/sys/class/video4linux/video2/name:C&M Wave5 VPU encoder
#################################### 能跑起来的
root@am62axx-evm:~# grep -H . /sys/class/video4linux/video*/name
/sys/class/video4linux/video0/name:C&M Wave5 VPU decoder
/sys/class/video4linux/video1/name:C&M Wave5 VPU encoder
/sys/class/video4linux/video2/name:e5010
root@am62axx-evm:~# cd /opt/edgeai-tiovx-apps/
root@am62axx-evm:/opt/edgeai-tiovx-apps# ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
APP: Init ... !!!
438.579871 s: MEM: Init ... !!!
438.579972 s: MEM: Initialized DMA HEAP (fd=5) !!!
438.580212 s: MEM: Init ... Done !!!
438.580234 s: IPC: Init ... !!!
438.597354 s: IPC: Init ... Done !!!
REMOTE_SERVICE: Init ... !!!
REMOTE_SERVICE: Init ... Done !!!
438.608184 s: GTC Frequency = 200 MHz
APP: Init ... Done !!!
438.612462 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_ERROR
438.612497 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_WARNING
438.612508 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_INFO
438.614832 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-0
438.614992 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-1
438.615118 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-2
438.615249 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-3
438.615267 s: VX_ZONE_INFO: [tivxInitLocal:126] Initialization Done !!!
438.615283 s: VX_ZONE_INFO: Globally Disabled VX_ZONE_INFO
Input #0, h264, from '/opt/edgeai-test-data/videos/video0_1280_768.h264':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x768, 25 fps, 60 tbr, 1200k tbn
^Z
[1]+ Stopped(SIGTSTP) ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
root@am62axx-evm:/opt/edgeai-tiovx-apps#
############### 修改的yaml
root@am62axx-evm:/opt/edgeai-tiovx-apps# vi configs/linux/object_detection.yaml
title: Object Detection
inputs:
input0:
source: VIDEO
width: 1280
height: 768
device: /dev/video1
video_path: /opt/edgeai-test-data/videos/video0_1280_768.h264
models:
model0:
model_path: /opt/model_zoo/TFL-OD-2020-ssdLite-mobDet-DSP-coco-320x320
viz-threshold: 0.6
model1:
model_path: /opt/model_zoo/ONR-OD-8200-yolox-nano-lite-mmdet-coco-416x416
viz-threshold: 0.6
outputs:
output0:
sink: LINUX_DISPLAY
width: 1920
height: 1080
output1:
sink: H264_ENCODE
width: 1920
height: 1088
output_path: /opt/edgeai-test-data/output/output_video0.h264
output2:
sink: IMG_DIR
width: 1920
height: 1080
output_path: /opt/edgeai-test-data/output/
flows:
flow0:
pipeline: [input0,model1,output0]
mosaic:
- [320,150,1280,720]
################## 报错
terminate called after throwing an instance of '[ 107.322530] kauditd_printk_skb: 5 callbacks suppressed
YAML::ParserException'
what(): yaml-cpp: error at line 7, co[ 107.322540] audit: type=1701 audit(114.736:18): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=630 comm="edgeai-tiovx-ap" exe="/opt/edgeai-tiovx-apps/bin/Release/edgeai-tiovx-apps-main" sig=6 res=1
lumn 1: illegal tab when looking for indentation
[ 107.357472] audit: type=1334 audit(114.772:19): prog-id=19 op=LOAD
[ 107.364375] audit: type=1334 audit(114.776:20): prog-id=20 op=LOAD
[ 107.370609] audit: type=1334 audit(114.784:21): prog-id=21 op=LOAD
Aborted (core dumped)
root@am62axx-evm:/opt/edgeai-tiovx-apps# [ 108.172592] audit: type=1334 audit(115.588:22): prog-id=21 op=UNLOAD
[ 108.178982] audit: type=1334 audit(115.588:23): prog-id=20 op=UNLOAD
[ 108.185348] audit: type=1334 audit(115.588:24): prog-id=19 op=UNLOAD
^C
##### 解析
int32_t parse_input_node(InputInfo *input_info, const YAML::Node &input_node)
{
const std::string source = input_node["source"].as<std::string>();
if("RTOS_CAM" == source)
{
input_info->source = RTOS_CAM;
}
else if("LINUX_CAM" == source)
{
input_info->source = LINUX_CAM;
}
else if("VIDEO" == source)
{
input_info->source = VIDEO;
}
else if("RAW_IMG" == source)
{
input_info->source = RAW_IMG;
}
else
{
TIOVX_APPS_ERROR("Invalid source '%s' specified.\n", source.c_str());
return -1;
}
sprintf(input_info->source_name, source.data());
input_info->width = input_node["width"].as<uint32_t>();
input_info->height = input_node["height"].as<uint32_t>();
/* Set default values. */
input_info->sensor_name[0] = '\0';
input_info->channel_mask = 0;
input_info->device[0] = '\0';
input_info->subdev[0] = '\0';
input_info->format[0] = '\0';
input_info->loop = true;
input_info->framerate = 1.0;
input_info->num_raw_img = 0;
input_info->ldc_enabled = false;
input_info->num_channels = 1;
/* Parse necessary information for RTOS_CAM. */
if (input_info->source == RTOS_CAM)
{
/* Parse sensor-name. */
if (input_node["sensor-name"])
{
sprintf(input_info->sensor_name,
input_node["sensor-name"].as<std::string>().data());
}
else
{
TIOVX_APPS_ERROR("Please specify sensor-name for %s.\n",
input_info->name);
return -1;
}
/* Parse channel-mask. */
if (input_node["channel-mask"])
{
const std::string channel_mask_str = input_node["channel-mask"].as<std::string>();
uint32_t channel_mask = std::stoi(channel_mask_str, 0, 2);
input_info->channel_mask = channel_mask;
input_info->num_channels = 0;
while(channel_mask > 0)
{
if(channel_mask & 0x1)
{
input_info->num_channels++;
}
channel_mask = channel_mask >> 1;
}
}
else
{
TIOVX_APPS_ERROR("Please specify channel-mask for %s.\n",
input_info->name);
return -1;
}
}
else if (input_info->source == LINUX_CAM)
{
/* Parse sensor-name. */
if (input_node["sensor-name"])
{
sprintf(input_info->sensor_name,
input_node["sensor-name"].as<std::string>().data());
}
else
{
TIOVX_APPS_ERROR("Please specify sensor-name for %s.\n",
input_info->name);
return -1;
}
/* Parse device. */
if (input_node["device"])
{
sprintf(input_info->device,
input_node["device"].as<std::string>().data());
}
else
{
TIOVX_APPS_ERROR("Please specify device for %s.\n",
input_info->name);
return -1;
}
/* Parse subdev. */
if (input_node["subdev"])
{
sprintf(input_info->subdev,
input_node["subdev"].as<std::string>().data());
}
else
{
TIOVX_APPS_ERROR("Please specify subdev for %s.\n",
input_info->name);
return -1;
}
}
else if (input_info->source == VIDEO)
{
/* Get video path */
if (input_node["video_path"])
{
std::string video_path = input_node["video_path"].as<std::string>();
if (!std::filesystem::exists(video_path))
{
TIOVX_APPS_ERROR("%s does not exist.\n", video_path.c_str());
return -1;
}
sprintf(input_info->video_path, video_path.data());
}
else
{
TIOVX_APPS_ERROR("Please specify video_path for %s.\n",
input_info->name);
return -1;
}
}
else if (input_info->source == RAW_IMG)
{
if (input_node["framerate"])
{
input_info->framerate = input_node["framerate"].as<float>();
}
/* Get images */
if (input_node["image_path"])
{
std::string image_path = input_node["image_path"].as<std::string>();
if (!std::filesystem::exists(image_path))
{
TIOVX_APPS_ERROR("%s does not exist.\n", image_path.c_str());
return -1;
}
if(std::filesystem::is_directory(image_path))
{
for(const auto &filename : std::filesystem::directory_iterator(image_path))
{
std::string path(filename.path());
sprintf(input_info->raw_img_paths[input_info->num_raw_img],
path.data());
input_info->num_raw_img++;
}
char temp[MAX_CHAR_ARRAY_SIZE];
for(uint32_t i = 1; i < input_info->num_raw_img; i++)
{
for(uint32_t j = 0; j < input_info->num_raw_img-i; j++)
{
if(strcmp(input_info->raw_img_paths[j],input_info->raw_img_paths[j+1]) > 0)
{
strcpy(temp, input_info->raw_img_paths[j]);
strcpy(input_info->raw_img_paths[j], input_info->raw_img_paths[j+1]);
strcpy(input_info->raw_img_paths[j+1], temp);
}
}
}
}
else
{
sprintf(input_info->raw_img_paths[0], image_path.data());
input_info->num_raw_img = 1;
}
}
else
{
TIOVX_APPS_ERROR("Please specify image_path for %s.\n",
input_info->name);
return -1;
}
/* Parse format. */
if (input_node["format"])
{
std::string format = input_node["format"].as<std::string>();
transform(format.begin(), format.end(), format.begin(), ::toupper);
sprintf(input_info->format,format.data());
}
else
{
TIOVX_APPS_ERROR("Please specify format for %s.\n",
input_info->name);
return -1;
}
}
/* Parse ldc */
if (input_node["ldc"])
{
input_info->ldc_enabled = input_node["ldc"].as<bool>();
}
/* Parse loop. */
if (input_node["loop"])
{
input_info->loop = input_node["loop"].as<bool>();
}
return 0;
}
##############
root@am62axx-evm:/opt/edgeai-tiovx-apps# mount --bind /dev/video1
mount: /dev/video1: mount failed: Invalid argument.
root@am62axx-evm:/opt/edgeai-tiovx-apps# mount -bind /dev/video1
mount: invalid option -- 'b'
Try 'mount --help' for more information.
root@am62axx-evm:/opt/edgeai-tiovx-apps# ls /dev/video*
/dev/video0 /dev/video1 /dev/video2
root@am62axx-evm:/opt/edgeai-tiovx-apps# mount -o -bind /dev/video1 /dev/video0
mount: /dev/video0: /dev/video1 is not a block device.
dmesg(1) may have more information after failed mount system call.
######################
root@am62axx-evm:/opt/edgeai-tiovx-apps# ps | grep edgeai
700 root 492m T ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
736 root 492m S ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
748 root 3496 S grep edgeai
root@am62axx-evm:/opt/edgeai-tiovx-apps# kill -9 700
root@am62axx-evm:/opt/edgeai-tiovx-apps# [ 1561.388204] vdec 30210000.video-codec: wave5_vpu_firmware_command_queue_error_check: result not ready: 0x800
[1]+ Killed ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
root@am62axx-evm:/opt/edgeai-tiovx-apps# ps | grep edgeai
736 root 492m S ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
751 root 3496 S grep edgeai
root@am62axx-evm:/opt/edgeai-tiovx-apps# kill -9 736
root@am62axx-evm:/opt/edgeai-tiovx-apps# [ 1579.440508] vdec 30210000.video-codec: wave5_vpu_firmware_command_queue_error_check: result not ready: 0x800
[2]+ Killed ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
#############
root@am62axx-evm:/opt/edgeai-tiovx-apps# ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
APP: Init ... !!!
2163.922908 s: MEM: Init ... !!!
2163.923006 s: MEM: Initialized DMA HEAP (fd=5) !!!
2163.923211 s: MEM: Init ... Done !!!
2163.923232 s: IPC: Init ... !!!
2163.940356 s: IPC: Init ... Done !!!
REMOTE_SERVICE: Init ... !!!
REMOTE_SERVICE: Init ... Done !!!
2163.945394 s: GTC Frequency = 200 MHz
APP: Init ... Done !!!
2163.945551 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_ERROR
2163.945574 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_WARNING
2163.945585 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_INFO
2163.946563 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-0
2163.946837 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-1
2163.947091 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-2
2163.947368 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-3
2163.947406 s: VX_ZONE_INFO: [tivxInitLocal:126] Initialization Done !!!
2163.947429 s: VX_ZONE_INFO: Globally Disabled VX_ZONE_INFO
Input #0, h264, from '/opt/edgeai-test-data/videos/video0_1280_768.h264':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x768, 25 fps, 60 tbr, 1200k tbn
^Z
[1]+ Stopped(SIGTSTP) ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
root@am62axx-evm:/opt/edgeai-tiovx-apps# jobs
[1]+ Stopped(SIGTSTP) ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
root@am62axx-evm:/opt/edgeai-tiovx-apps# dmesg | tail -n 50
[ 1840.290312] vdec 30210000.video-codec: wave5_vpu_firmware_command_queue_error_check: result not ready: 0x800
##################
root@am62axx-evm:~# timeout -s INT 15s gst-launch-1.0 -e filesrc location=/opt/edgeai-test-data/videos/video0_1280_768.h264 ! h264parse ! v4l2h264dec ! fakesync=false
timeout: can't execute 'gst-launch-1.0': No such file or directory
####################
grep -H . /sys/class/video4linux/video*/name
/sys/class/video4linux/video0/name:e5010
/sys/class/video4linux/video1/name:C&M Wave5 VPU decoder
/sys/class/video4linux/video2/name:C&M Wave5 VPU encoder
root@am62axx-evm:~#
root@am62axx-evm:~# mount -o bind /dev/video1 /dev/video0
root@am62axx-evm:~# dmesg -T -w > /tmp/dmesg.log & echo $! > /tmp/dmesg.pid
[1] 693
root@am62axx-evm:~# cd /opt/edgeai-tiovx-apps/
root@am62axx-evm:/opt/edgeai-tiovx-apps# timeout -s INT 20s ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
APP: Init ... !!!
59110.968707 s: MEM: Init ... !!!
59110.972375 s: MEM: Initialized DMA HEAP (fd=5) !!!
59110.979720 s: MEM: Init ... Done !!!
59110.986841 s: IPC: Init ... !!!
59111.003704 s: IPC: Init ... Done !!!
REMOTE_SERVICE: Init ... !!!
REMOTE_SERVICE: Init ... Done !!!
59111.019141 s: GTC Frequency = 200 MHz
APP: Init ... Done !!!
59111.035210 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_ERROR
59111.035275 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_WARNING
59111.035286 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_INFO
59111.094979 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-0
59111.095224 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-1
59111.095359 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-2
59111.095484 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-3
59111.095501 s: VX_ZONE_INFO: [tivxInitLocal:126] Initialization Done !!!
59111.095519 s: VX_ZONE_INFO: Globally Disabled VX_ZONE_INFO
Input #0, h264, from '/opt/edgeai-test-data/videos/video0_1280_768.h264':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x768, 25 fps, 60 tbr, 1200k tbn
^C
^Z
[2]+ Stopped(SIGTSTP) timeout -s INT 20s ./bin/Release/edgeai-tiovx-apps-main configs/linux/object_detection.yaml
root@am62axx-evm:/opt/edgeai-tiovx-apps# kill "$(cat /tmp/dmesg.pid)"
root@am62axx-evm:/opt/edgeai-tiovx-apps# tail -n 200 /tmp/dmesg.log
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 93
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs"
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): LEB size: 253952 bytes (248 KiB), min./max. I/O unit sizes: 4096 bytes/4096 bytes
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): FS size: 473366528 bytes (451 MiB, 1864 LEBs), max 1876 LEBs, journal size 23617536 bytes (22 MiB, 93 LEBs)
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): reserved for root: 4952683 bytes (4836 KiB)
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): media format: w5/r0 (latest is w5/r0), UUID 08136E56-F579-4D9C-A2D1-072FC5629857, small LPT model
[Thu Jan 1 00:00:28 1970] VFS: Mounted root (ubifs filesystem) on device 0:22.
[Thu Jan 1 00:00:28 1970] devtmpfs: mounted
[Thu Jan 1 00:00:28 1970] Freeing unused kernel memory: 2496K
[Thu Jan 1 00:00:28 1970] Run /sbin/init as init process
[Thu Jan 1 00:00:28 1970] with arguments:
[Thu Jan 1 00:00:28 1970] /sbin/init
[Thu Jan 1 00:00:28 1970] with environment:
[Thu Jan 1 00:00:28 1970] HOME=/
[Thu Jan 1 00:00:28 1970] TERM=linux
[Thu Jan 1 00:00:31 1970] systemd[1]: System time before build time, advancing clock.
[Thu Jan 1 00:00:32 1970] NET: Registered PF_INET6 protocol family
[Thu Jan 1 00:00:32 1970] Segment Routing with IPv6
[Thu Jan 1 00:00:32 1970] In-situ OAM (IOAM) with IPv6
[Thu Jan 1 00:00:33 1970] systemd[1]: systemd 255.13^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[Thu Jan 1 00:00:33 1970] systemd[1]: Detected architecture arm64.
[Thu Jan 1 00:00:33 1970] systemd[1]: Hostname set to <am62axx-evm>.
[Thu Jan 1 00:00:36 1970] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
[Thu Jan 1 00:00:36 1970] systemd[1]: Queued start job for default target Multi-User System.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice Slice /system/getty.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice Slice /system/modprobe.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice Slice /system/serial-getty.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice User and Session Slice.
[Thu Jan 1 00:00:36 1970] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[Thu Jan 1 00:00:36 1970] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[Thu Jan 1 00:00:36 1970] systemd[1]: Expecting device /dev/ttyS2...
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Path Units.
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Remote File Systems.
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Slice Units.
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Swaps.
[Thu Jan 1 00:00:36 1970] systemd[1]: Listening on Process Core Dump Socket.
[Thu Jan 1 00:00:36 1970] systemd[1]: Listening on initctl Compatibility Named Pipe.
[Thu Jan 1 00:00:36 1970] systemd[1]: Listening on Journal Audit Socket.
[Thu Jan 1 00:00:36 1970] systemd[1]: Listening on Journal Socket (/dev/log).
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on Journal Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on Network Service Netlink Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on udev Control Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on udev Kernel Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on User Database Manager Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting Huge Pages File System...
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting POSIX Message Queue File System...
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting Kernel Debug File System...
[Thu Jan 1 00:00:37 1970] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting Temporary Directory /tmp...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Create List of Static Device Nodes...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Load Kernel Module configfs...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Load Kernel Module drm...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Load Kernel Module fuse...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Start psplash boot splash screen...
[Thu Jan 1 00:00:37 1970] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Journal Service...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Load Kernel Modules...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Generate network units from Kernel command line...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Remount Root and Kernel File Systems...
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Coldplug All udev Devices...
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Huge Pages File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted POSIX Message Queue File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Kernel Debug File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Temporary Directory /tmp.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Create List of Static Device Nodes.
[Thu Jan 1 00:00:38 1970] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Load Kernel Module configfs.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Generate network units from Kernel command line.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Remount Root and Kernel File Systems.
[Thu Jan 1 00:00:38 1970] systemd[1]: Reached target Preparation for Network.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounting Kernel Configuration File System...
[Thu Jan 1 00:00:38 1970] platform 2b300050.target-module: deferred probe pending
[Thu Jan 1 00:00:38 1970] cryptodev: loading out-of-tree module taints kernel.
[Thu Jan 1 00:00:38 1970] cryptodev: driver 1.14 loaded.
[Thu Jan 1 00:00:38 1970] fuse: init (API version 7.39)
[Thu Jan 1 00:00:38 1970] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[Thu Jan 1 00:00:38 1970] systemd-journald[120]: Collecting audit messages is enabled.
[Thu Jan 1 00:00:38 1970] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Load Kernel Module fuse.
[Thu Jan 1 00:00:38 1970] systemd[1]: psplash-start.service: Main process exited, code=exited, status=255/EXCEPTION
[Thu Jan 1 00:00:38 1970] systemd[1]: psplash-start.service: Failed with result 'exit-code'.
[Thu Jan 1 00:00:38 1970] systemd[1]: Failed to start Start psplash boot splash screen.
[Thu Jan 1 00:00:38 1970] systemd[1]: Dependency failed for Start psplash-systemd progress communication helper.
[Thu Jan 1 00:00:38 1970] systemd[1]: psplash-systemd.service: Job psplash-systemd.service/start failed with result 'dependency'.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Load Kernel Modules.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Kernel Configuration File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounting FUSE Control File System...
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Apply Kernel Variables...
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted FUSE Control File System.
[Thu Jan 1 00:00:39 1970] systemd[1]: Started Journal Service.
[Thu Jan 1 00:00:39 1970] systemd-journald[120]: Received client request to flush runtime journal.
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.252:2): prog-id=6 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.260:3): prog-id=7 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.268:4): prog-id=8 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.708:5): prog-id=9 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.716:6): prog-id=10 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487101.064:7): prog-id=11 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487101.136:8): prog-id=11 op=UNLOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487101.160:9): prog-id=12 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487101.200:10): prog-id=12 op=UNLOAD
[Thu Jan 1 00:00:41 1970] audit: type=1334 audit(1728487101.292:11): prog-id=13 op=LOAD
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.tiboot3' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.tispl' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.u-boot' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.env' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.env.backup' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:42 1970] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fca100
[Thu Jan 1 00:00:42 1970] omap-mailbox 29010000.mailbox: omap mailbox rev 0x66fca100
[Thu Jan 1 00:00:42 1970] omap-mailbox 29020000.mailbox: omap mailbox rev 0x66fca100
[Thu Jan 1 00:00:42 1970] omap-mailbox 29030000.mailbox: no available mbox devices found
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.kernel' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.dtb' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:42 1970] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:43 1970] tps6598x 0-003f: Unable to find the interrupt, switching to polling
[Thu Jan 1 00:00:43 1970] sii902x 1-003b: supply iovcc not found, using dummy regulator
[Thu Jan 1 00:00:43 1970] sii902x 1-003b: supply cvcc12 not found, using dummy regulator
[Thu Jan 1 00:00:43 1970] i2c i2c-1: Added multiplexed i2c bus 3
[Thu Jan 1 00:00:44 1970] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
[Thu Jan 1 00:00:44 1970] k3-dsp-rproc 7e000000.dsp: assigned reserved memory node c7x-dma-memory@99800000
[Thu Jan 1 00:00:44 1970] k3-dsp-rproc 7e000000.dsp: configured DSP for remoteproc mode
[Thu Jan 1 00:00:44 1970] k3-dsp-rproc 7e000000.dsp: local reset is deasserted for device
[Thu Jan 1 00:00:44 1970] remoteproc remoteproc0: 7e000000.dsp is available
[Thu Jan 1 00:00:44 1970] Console: switching to colour frame buffer device 240x67
[Thu Jan 1 00:00:44 1970] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
[Thu Jan 1 00:00:44 1970] platform 79000000.r5f: configured R5F for remoteproc mode
[Thu Jan 1 00:00:44 1970] platform 79000000.r5f: assigned reserved memory node r5f-dma-memory@9b800000
[Thu Jan 1 00:00:44 1970] remoteproc remoteproc1: 79000000.r5f is available
[Thu Jan 1 00:00:44 1970] mc: Linux media interface: v0.10
[Thu Jan 1 00:00:44 1970] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[Thu Jan 1 00:00:44 1970] platform 78000000.r5f: configured R5F for IPC-only mode
[Thu Jan 1 00:00:44 1970] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9c800000
[Thu Jan 1 00:00:44 1970] remoteproc remoteproc2: 78000000.r5f is available
[Thu Jan 1 00:00:44 1970] remoteproc remoteproc2: attaching to 78000000.r5f
[Thu Jan 1 00:00:44 1970] rproc-virtio rproc-virtio.8.auto: assigned reserved memory node r5f-dma-memory@9c800000
[Thu Jan 1 00:00:44 1970] virtio_rpmsg_bus virtio0: rpmsg host is online
[Thu Jan 1 00:00:44 1970] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
[Thu Jan 1 00:00:44 1970] rproc-virtio rproc-virtio.8.auto: registered virtio0 (type 7)
[Thu Jan 1 00:00:44 1970] remoteproc remoteproc2: remote processor 78000000.r5f is now attached
[Thu Jan 1 00:00:44 1970] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
[Thu Jan 1 00:00:44 1970] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:44 UTC (44)
[Thu Jan 1 00:00:44 1970] systemd-journald[120]: Time jumped backwards, rotating.
[Thu Jan 1 00:00:45 1970] remoteproc remoteproc1: powering up 79000000.r5f
[Thu Jan 1 00:00:45 1970] remoteproc remoteproc1: Booting fw image am62a-mcu-r5f0_0-fw, size 53172
[Thu Jan 1 00:00:45 1970] rproc-virtio rproc-virtio.9.auto: assigned reserved memory node r5f-dma-memory@9b800000
[Thu Jan 1 00:00:45 1970] virtio_rpmsg_bus virtio1: rpmsg host is online
[Thu Jan 1 00:00:45 1970] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
[Thu Jan 1 00:00:45 1970] rproc-virtio rproc-virtio.9.auto: registered virtio1 (type 7)
[Thu Jan 1 00:00:45 1970] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
[Thu Jan 1 00:00:45 1970] remoteproc remoteproc1: remote processor 79000000.r5f is now up
[Thu Jan 1 00:00:46 1970] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[Thu Jan 1 00:00:46 1970] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[Thu Jan 1 00:00:46 1970] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[Thu Jan 1 00:00:46 1970] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[Thu Jan 1 00:00:46 1970] cfg80211: failed to load regulatory.db
[Thu Jan 1 00:00:46 1970] videodev: Linux video capture interface: v2.00
[Thu Jan 1 00:00:47 1970] mtdblock: MTD device 'ospi_nand.dtb' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:48 1970] e5010 fd20000.jpeg-encoder: Device registered as /dev/video0
[Thu Jan 1 00:00:48 1970] mtdblock: MTD device 'ospi_nand.env.backup' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:48 1970] vdec 30210000.video-codec: error -ENXIO: IRQ index 0 not found
[Thu Jan 1 00:00:48 1970] vdec 30210000.video-codec: failed to get irq resource, falling back to polling
[Thu Jan 1 00:00:48 1970] vdec 30210000.video-codec: OPP table not found in device tree
[Thu Jan 1 00:00:48 1970] mtdblock: MTD device 'ospi_nand.u-boot' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:49 1970] mtdblock: MTD device 'ospi_nand.tiboot3' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:50 1970] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[Thu Jan 1 00:00:50 1970] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[Thu Jan 1 00:00:50 1970] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:50 1970] mtdblock: MTD device 'ospi_nand.kernel' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:52 1970] vdec 30210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
[Thu Jan 1 00:00:52 1970] vdec 30210000.video-codec: Product Code: 0x521c
[Thu Jan 1 00:00:52 1970] vdec 30210000.video-codec: Firmware Revision: 334314
[Thu Jan 1 00:00:53 1970] mtdblock: MTD device 'ospi_nand.env' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:53 1970] mtdblock: MTD device 'ospi_nand.tispl' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:55 1970] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:57 1970] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[Thu Jan 1 00:00:57 1970] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[Thu Jan 1 00:00:58 1970] EXT4-fs (mmcblk1p2): mounting ext3 file system using the ext4 subsystem
[Thu Jan 1 00:00:58 1970] EXT4-fs (mmcblk1p2): mounted filesystem 54efb1d1-9ee3-469f-9ea4-b968ac69f78f r/w with ordered data mode. Quota mode: none.
[Thu Jan 1 00:01:01 1970] remoteproc remoteproc0: powering up 7e000000.dsp
[Thu Jan 1 00:01:02 1970] remoteproc remoteproc0: Booting fw image am62a-c71_0-fw, size 10719312
[Thu Jan 1 00:01:02 1970] k3-dsp-rproc 7e000000.dsp: booting DSP core using boot addr = 0x99a00000
[Thu Jan 1 00:01:02 1970] rproc-virtio rproc-virtio.10.auto: assigned reserved memory node c7x-dma-memory@99800000
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: rpmsg host is online
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xd
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0x15
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xe
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: msg received with no recipient
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio0: msg received with no recipient
[Thu Jan 1 00:01:02 1970] rproc-virtio rproc-virtio.10.auto: registered virtio2 (type 7)
[Thu Jan 1 00:01:02 1970] remoteproc remoteproc0: remote processor 7e000000.dsp is now up
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.u-boot' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.tiboot3' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.env.backup' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.dtb' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.tispl' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.kernel' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:03:35 1970] mtdblock: MTD device 'ospi_nand.env' is NAND, please consider using UBI block devices instead.
[1]- Terminated dmesg -T -w > /tmp/dmesg.log (wd: ~)
(wd now: /opt/edgeai-tiovx-apps)
root@am62axx-evm:/opt/edgeai-tiovx-apps#
##################
https://e2echina.ti.com/support/machine-translation/mt-processors/f/mt-processors-forum/1025512/am67a-gstreamer-v4l2h265dec-cpu
#################
root@am62axx-evm:~#
root@am62axx-evm:~# grep -H . /sys/class/video4linux/video*/name
/sys/class/video4linux/video0/name:e5010
/sys/class/video4linux/video1/name:C&M Wave5 VPU decoder
/sys/class/video4linux/video2/name:C&M Wave5 VPU encoder
root@am62axx-evm:~# mount -o bind /dev/video1 /dev/video0
root@am62axx-evm:~# dmesg -T -w > /tmp/dmesg.log & echo $! > /tmp/dmesg.pid
[1] 662
root@am62axx-evm:~# timeout -s INT -k 5s 20s ./bin/Release/edgeai-tiovx-apps-main -v configs/linux/object_detection.yaml
timeout: can't execute './bin/Release/edgeai-tiovx-apps-main': No such file or directory
root@am62axx-evm:~# cd /opt/edgeai-tiovx-apps/
root@am62axx-evm:/opt/edgeai-tiovx-apps# timeout -s INT -k 5s 20s ./bin/Release/edgeai-tiovx-apps-main -v configs/linux/object_detection.yaml
APP: Init ... !!!
60534.967154 s: MEM: Init ... !!!
60534.970808 s: MEM: Initialized DMA HEAP (fd=5) !!!
60534.978158 s: MEM: Init ... Done !!!
60534.985312 s: IPC: Init ... !!!
60535.002884 s: IPC: Init ... Done !!!
REMOTE_SERVICE: Init ... !!!
REMOTE_SERVICE: Init ... Done !!!
60535.018252 s: GTC Frequency = 200 MHz
APP: Init ... Done !!!
60535.034345 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_ERROR
60535.034384 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_WARNING
60535.034400 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_INFO
60535.094151 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-0
60535.094365 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-1
60535.094481 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-2
60535.094612 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-3
60535.094629 s: VX_ZONE_INFO: [tivxInitLocal:126] Initialization Done !!!
60535.094647 s: VX_ZONE_INFO: Globally Disabled VX_ZONE_INFO
Input #0, h264, from '/opt/edgeai-test-data/videos/video0_1280_768.h264':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x768, 25 fps, 60 tbr, 1200k tbn
[ 228.338339] vdec 30210000.video-codec: wave5_vpu_firmware_command_queue_error_check: result not ready: 0x800
Killed
root@am62axx-evm:/opt/edgeai-tiovx-apps# kill "$(cat /tmp/dmesg.pid)"
root@am62axx-evm:/opt/edgeai-tiovx-apps# tail -n 50 /tmp/dmesg.log
[Thu Jan 1 00:00:44 1970] remoteproc remoteproc1: Booting fw image am62a-mcu-r5f0_0-fw, size 53172
[Thu Jan 1 00:00:45 1970] rproc-virtio rproc-virtio.9.auto: assigned reserved memory node r5f-dma-memory@9b800000
[Thu Jan 1 00:00:45 1970] virtio_rpmsg_bus virtio1: rpmsg host is online
[Thu Jan 1 00:00:45 1970] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
[Thu Jan 1 00:00:45 1970] rproc-virtio rproc-virtio.9.auto: registered virtio1 (type 7)
[Thu Jan 1 00:00:45 1970] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
[Thu Jan 1 00:00:45 1970] remoteproc remoteproc1: remote processor 79000000.r5f is now up
[Thu Jan 1 00:00:46 1970] videodev: Linux video capture interface: v2.00
[Thu Jan 1 00:00:46 1970] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[Thu Jan 1 00:00:46 1970] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[Thu Jan 1 00:00:46 1970] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[Thu Jan 1 00:00:46 1970] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[Thu Jan 1 00:00:46 1970] cfg80211: failed to load regulatory.db
[Thu Jan 1 00:00:47 1970] mtdblock: MTD device 'ospi_nand.dtb' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:48 1970] e5010 fd20000.jpeg-encoder: Device registered as /dev/video0
[Thu Jan 1 00:00:48 1970] mtdblock: MTD device 'ospi_nand.env.backup' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:48 1970] vdec 30210000.video-codec: error -ENXIO: IRQ index 0 not found
[Thu Jan 1 00:00:48 1970] vdec 30210000.video-codec: failed to get irq resource, falling back to polling
[Thu Jan 1 00:00:48 1970] vdec 30210000.video-codec: OPP table not found in device tree
[Thu Jan 1 00:00:48 1970] mtdblock: MTD device 'ospi_nand.u-boot' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:49 1970] mtdblock: MTD device 'ospi_nand.tiboot3' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:50 1970] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[Thu Jan 1 00:00:50 1970] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[Thu Jan 1 00:00:50 1970] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:51 1970] mtdblock: MTD device 'ospi_nand.kernel' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:52 1970] vdec 30210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
[Thu Jan 1 00:00:52 1970] vdec 30210000.video-codec: Product Code: 0x521c
[Thu Jan 1 00:00:52 1970] vdec 30210000.video-codec: Firmware Revision: 334314
[Thu Jan 1 00:00:53 1970] mtdblock: MTD device 'ospi_nand.env' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:54 1970] mtdblock: MTD device 'ospi_nand.tispl' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:55 1970] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
[Thu Jan 1 00:00:57 1970] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[Thu Jan 1 00:00:57 1970] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[Thu Jan 1 00:00:58 1970] EXT4-fs (mmcblk1p2): mounting ext3 file system using the ext4 subsystem
[Thu Jan 1 00:00:58 1970] EXT4-fs (mmcblk1p2): mounted filesystem 54efb1d1-9ee3-469f-9ea4-b968ac69f78f r/w with ordered data mode. Quota mode: none.
[Thu Jan 1 00:01:02 1970] remoteproc remoteproc0: powering up 7e000000.dsp
[Thu Jan 1 00:01:02 1970] remoteproc remoteproc0: Booting fw image am62a-c71_0-fw, size 10719312
[Thu Jan 1 00:01:02 1970] k3-dsp-rproc 7e000000.dsp: booting DSP core using boot addr = 0x99a00000
[Thu Jan 1 00:01:02 1970] rproc-virtio rproc-virtio.10.auto: assigned reserved memory node c7x-dma-memory@99800000
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: rpmsg host is online
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xd
[Thu Jan 1 00:01:02 1970] rproc-virtio rproc-virtio.10.auto: registered virtio2 (type 7)
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
[Thu Jan 1 00:01:02 1970] remoteproc remoteproc0: remote processor 7e000000.dsp is now up
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0x15
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio0: msg received with no recipient
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xe
[Thu Jan 1 00:01:02 1970] virtio_rpmsg_bus virtio2: msg received with no recipient
[Thu Jan 1 00:04:07 1970] vdec 30210000.video-codec: wave5_vpu_firmware_command_queue_error_check: result not ready: 0x800
[1]+ Terminated dmesg -T -w > /tmp/dmesg.log (wd: ~)
(wd now: /opt/edgeai-tiovx-apps)
################
root@am62axx-evm:~# fuser -v /dev/video0 /dev/video1
fuser: invalid option -- 'v'
BusyBox v1.36.1 () multi-call binary.
Usage: fuser [-msk46] [-SIGNAL] FILE or PORT/PROTO
root@am62axx-evm:~# fuser -h
fuser: invalid option -- 'h'
BusyBox v1.36.1 () multi-call binary.
Usage: fuser [-msk46] [-SIGNAL] FILE or PORT/PROTO
root@am62axx-evm:~# fuser /dev/video0
root@am62axx-evm:~# fuser /dev/video1
root@am62axx-evm:~#
root@am62axx-evm:~# ls /sys/bus/platform/drivers | grep -i wave5
root@am62axx-evm:~# ls /sys/bus/platform/drivers | grep wave5
root@am62axx-evm:~# ls /sys/bus/platform/drivers | grep video
root@am62axx-evm:~# ls /sys/bus/platform/drivers
ARM-CCI davinci-mcasp j721e-pcie mt6358-regulator pata_platform sdhci-am654 ti-sysc
ahci davinci_gpio k3-chipinfo mt6359-regulator pci-host-generic sdhci-arasan ti-syscon-gate-clk
alarmtimer davinci_mdio k3-dsp-rproc mt6360-regulator phy-am654 serial8250 ti-udma
am65-cpsw-nuss display-connector k3-j72xx-soc-thermal mt6397 phy-gmii-sel simple-framebuffer ti_opp_supply
am65-cpts dw-pcie k3-ringacc mt6397-regulator physmap-flash simple-pm-bus ti_sci_pm_domains
arm-scmi dwc3 k3_r5_rproc of_fixed_clk pinctrl-single snd-soc-dummy tidss
arm-smmu dwc3-am62 keystone-dwc3 of_fixed_factor_clk psci-cpuidle snps-udc-plat tps65219-gpio
arm-smmu-v3 dwc3-of-simple keystone-pcie of_serial psci-cpuidle-domain soc-audio tps65219-pmic
arm_smc_wdt e5010 leds-gpio ohci-platform pwm-clock sram tps6594-esm
armv8-pmu ehci-platform leds-syscon omap-elm pwm-regulator syscon tps6594-pfsm
asoc-simple-card extcon-usb-gpio leds_pwm omap-gpmc pwrseq_emmc syscon-poweroff tps6594-pinctrl
axp20x-regulator fsl-linflexuart max77620-gpio omap-mailbox pwrseq_simple syscon-reboot tps6594-regulator
basic-mmio-gpio fsl-lpuart max77620-pmic omap2-nand rcpm syscon-reboot-mode tps6594-rtc
bd718xx-pmic gpio-clk max77686-rtc omap8250 reg-dummy ti-cpufreq unimac-mdio
bd9571mwv-regulator gpio-keys mcrc64 omap_hwspinlock reg-fixed-voltage ti-msgmgr usb-conn-gpio
bdc gpio-regulator mdio-gpio omap_i2c rk808-regulator ti-sci usb_phy_generic
cadence-qspi gpio-syscon mdio-mux-mmioreg omap_rng rproc-virtio ti-sci-clk vdec
cdns-sierra-phy hdmi-audio-codec mdio-mux-multiplexer omap_timer rtc-ti-k3 ti-sci-inta virtio-mmio
cdns-torrent-phy hi6421_pmic mmio-mux optee rti-wdt ti-sci-intr wiz
cpufreq-dt hi6421v530-regulator mt6357-regulator pata_of_platform saul-crypto ti-sci-reset xhci-hcd
root@am62axx-evm:~#
####################################
root@am62axx-evm:~# readlink -f /sys/class/video4linux/video1/device
/sys/devices/platform/bus@f0000/30210000.video-codec
root@am62axx-evm:~# echo 30210000.video-codec > /sys/bus/platform/drivers/wave5-vpu/unbind
-sh: /sys/bus/platform/drivers/wave5-vpu/unbind: No such file or directory
root@am62axx-evm:~# echo 30210000.video-codec > /sys/bus/platform/drivers/vdec/unbind
[ 1230.809068] vdec 30210000.video-codec: Runtime PM usage count underflow!
root@am62axx-evm:~# sleep 1
root@am62axx-evm:~# echo 30210000.video-codec > /sys/bus/platform/drivers/vdec/bind
[ 1285.922146] vdec 30210000.video-codec: error -ENXIO: IRQ index 0 not found
[ 1285.929061] vdec 30210000.video-codec: failed to get irq resource, falling back to polling
[ 1285.937555] vdec 30210000.video-codec: OPP table not found in device tree
[ 1285.947247] vdec 30210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
[ 1285.955259] vdec 30210000.video-codec: Product Code: 0x521c
[ 1285.961313] vdec 30210000.video-codec: Firmware Revision: 334314
root@am62axx-evm:~# grep -H . /sys/class/video4linux/video*/nam
grep: /sys/class/video4linux/video*/nam: No such file or directory
root@am62axx-evm:~# grep -H . /sys/class/video4linux/video*/name
/sys/class/video4linux/video0/name:e5010
/sys/class/video4linux/video1/name:C&M Wave5 VPU decoder
/sys/class/video4linux/video2/name:C&M Wave5 VPU encoder
root@am62axx-evm:~# mount -o bind /dev/video1 /dev/video0
root@am62axx-evm:~# ps | grep edgea
711 root 3496 S grep edgea
root@am62axx-evm:~# dmesg -T -w > /tmp/dmesg.log & echo $! > /tmp/dmesg.pid
[1] 712
root@am62axx-evm:~# cd /opt/edgeai-tiovx-apps/
root@am62axx-evm:/opt/edgeai-tiovx-apps# timeout -s INT -k 5s 20s ./bin/Release/edgeai-tiovx-apps-main -v configs/linux/object_detection.yaml
APP: Init ... !!!
62675.267237 s: MEM: Init ... !!!
62675.270898 s: MEM: Initialized DMA HEAP (fd=5) !!!
62675.278244 s: MEM: Init ... Done !!!
62675.285369 s: IPC: Init ... !!!
_rpmsg_char_find_ctrldev: could not find the matching rpmsg_ctrl device for virtio2.rpmsg_chrdev.-1.13
62675.301411 s: IPC: ERROR: Unable to create TX channels for CPU [c7x_1] !!!
62675.301426 s: IPC: Init ... Done !!!
APP: ERROR: IPC init failed !!!
REMOTE_SERVICE: Init ... !!!
_rpmsg_char_find_ctrldev: could not find the matching rpmsg_ctrl device for virtio0.rpmsg_chrdev.-1.21
_rpmsg_char_find_ctrldev: could not find the matching rpmsg_ctrl device for virtio2.rpmsg_chrdev.-1.21
REMOTE_SERVICE: Init ... Done !!!
62675.314535 s: GTC Frequency = 200 MHz
APP: Init ... Done !!!
62675.330602 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_ERROR
62675.330635 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_WARNING
62675.330646 s: VX_ZONE_INFO: Globally Enabled VX_ZONE_INFO
62675.390462 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-0
62675.390708 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-1
62675.390832 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-2
62675.390924 s: VX_ZONE_INFO: [tivxPlatformCreateTargetId:134] Added target MPU-3
62675.390940 s: VX_ZONE_INFO: [tivxInitLocal:126] Initialization Done !!!
62675.390957 s: VX_ZONE_INFO: Globally Disabled VX_ZONE_INFO
Input #0, h264, from '/opt/edgeai-test-data/videos/video0_1280_768.h264':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x768, 25 fps, 60 tbr, 1200k tbn
[ 1397.834058] vdec 30210000.video-codec: wave5_vpu_firmware_command_queue_error_check: result not ready: 0x800
Killed
root@am62axx-evm:/opt/edgeai-tiovx-apps# kill "$(cat /tmp/dmesg.pid)"
root@am62axx-evm:/opt/edgeai-tiovx-apps# tail -n 200 /tmp/dmesg.log
[Thu Jan 1 00:00:28 1970] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128
[Thu Jan 1 00:00:28 1970] ubi0: max/mean erase counter: 5/3, WL threshold: 4096, image sequence number: 524359524
[Thu Jan 1 00:00:28 1970] ubi0: available PEBs: 0, total reserved PEBs: 1920, PEBs reserved for bad PEB handling: 40
[Thu Jan 1 00:00:28 1970] ubi0: background thread "ubi_bgt0d" started, PID 86
[Thu Jan 1 00:00:28 1970] clk: Disabling unused clocks
[Thu Jan 1 00:00:28 1970] ALSA device list:
[Thu Jan 1 00:00:28 1970] No soundcards found.
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): Mounting in unauthenticated mode
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 88
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs"
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): LEB size: 253952 bytes (248 KiB), min./max. I/O unit sizes: 4096 bytes/4096 bytes
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): FS size: 473366528 bytes (451 MiB, 1864 LEBs), max 1876 LEBs, journal size 23617536 bytes (22 MiB, 93 LEBs)
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): reserved for root: 4952683 bytes (4836 KiB)
[Thu Jan 1 00:00:28 1970] UBIFS (ubi0:0): media format: w5/r0 (latest is w5/r0), UUID 08136E56-F579-4D9C-A2D1-072FC5629857, small LPT model
[Thu Jan 1 00:00:28 1970] VFS: Mounted root (ubifs filesystem) on device 0:22.
[Thu Jan 1 00:00:28 1970] devtmpfs: mounted
[Thu Jan 1 00:00:28 1970] Freeing unused kernel memory: 2496K
[Thu Jan 1 00:00:28 1970] Run /sbin/init as init process
[Thu Jan 1 00:00:28 1970] with arguments:
[Thu Jan 1 00:00:28 1970] /sbin/init
[Thu Jan 1 00:00:28 1970] with environment:
[Thu Jan 1 00:00:28 1970] HOME=/
[Thu Jan 1 00:00:28 1970] TERM=linux
[Thu Jan 1 00:00:31 1970] systemd[1]: System time before build time, advancing clock.
[Thu Jan 1 00:00:32 1970] NET: Registered PF_INET6 protocol family
[Thu Jan 1 00:00:32 1970] Segment Routing with IPv6
[Thu Jan 1 00:00:32 1970] In-situ OAM (IOAM) with IPv6
[Thu Jan 1 00:00:33 1970] systemd[1]: systemd 255.13^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BP F_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[Thu Jan 1 00:00:33 1970] systemd[1]: Detected architecture arm64.
[Thu Jan 1 00:00:33 1970] systemd[1]: Hostname set to <am62axx-evm>.
[Thu Jan 1 00:00:36 1970] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journa l. Please update your unit file, and consider removing the setting altogether.
[Thu Jan 1 00:00:36 1970] systemd[1]: Queued start job for default target Multi-User System.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice Slice /system/getty.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice Slice /system/modprobe.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice Slice /system/serial-getty.
[Thu Jan 1 00:00:36 1970] systemd[1]: Created slice User and Session Slice.
[Thu Jan 1 00:00:36 1970] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[Thu Jan 1 00:00:36 1970] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[Thu Jan 1 00:00:36 1970] systemd[1]: Expecting device /dev/ttyS2...
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Path Units.
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Remote File Systems.
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Slice Units.
[Thu Jan 1 00:00:36 1970] systemd[1]: Reached target Swaps.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on Process Core Dump Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on initctl Compatibility Named Pipe.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on Journal Audit Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on Journal Socket (/dev/log).
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on Journal Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on Network Service Netlink Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on udev Control Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on udev Kernel Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Listening on User Database Manager Socket.
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting Huge Pages File System...
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting POSIX Message Queue File System...
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting Kernel Debug File System...
[Thu Jan 1 00:00:37 1970] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[Thu Jan 1 00:00:37 1970] systemd[1]: Mounting Temporary Directory /tmp...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Create List of Static Device Nodes...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Load Kernel Module configfs...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Load Kernel Module drm...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Load Kernel Module fuse...
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Start psplash boot splash screen...
[Thu Jan 1 00:00:37 1970] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[Thu Jan 1 00:00:37 1970] systemd[1]: Starting Journal Service...
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Load Kernel Modules...
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Generate network units from Kernel command line...
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Remount Root and Kernel File Systems...
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Coldplug All udev Devices...
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Huge Pages File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted POSIX Message Queue File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Kernel Debug File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Temporary Directory /tmp.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Create List of Static Device Nodes.
[Thu Jan 1 00:00:38 1970] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Load Kernel Module configfs.
[Thu Jan 1 00:00:38 1970] platform 2b300050.target-module: deferred probe pending
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Generate network units from Kernel command line.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Remount Root and Kernel File Systems.
[Thu Jan 1 00:00:38 1970] systemd[1]: Reached target Preparation for Network.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounting Kernel Configuration File System...
[Thu Jan 1 00:00:38 1970] fuse: init (API version 7.39)
[Thu Jan 1 00:00:38 1970] cryptodev: loading out-of-tree module taints kernel.
[Thu Jan 1 00:00:38 1970] cryptodev: driver 1.14 loaded.
[Thu Jan 1 00:00:38 1970] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[Thu Jan 1 00:00:38 1970] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[Thu Jan 1 00:00:38 1970] systemd-journald[115]: Collecting audit messages is enabled.
[Thu Jan 1 00:00:38 1970] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Load Kernel Module fuse.
[Thu Jan 1 00:00:38 1970] systemd[1]: psplash-start.service: Main process exited, code=exited, status=255/EXCEPTION
[Thu Jan 1 00:00:38 1970] systemd[1]: psplash-start.service: Failed with result 'exit-code'.
[Thu Jan 1 00:00:38 1970] systemd[1]: Failed to start Start psplash boot splash screen.
[Thu Jan 1 00:00:38 1970] systemd[1]: Dependency failed for Start psplash-systemd progress communication helper.
[Thu Jan 1 00:00:38 1970] systemd[1]: psplash-systemd.service: Job psplash-systemd.service/start failed with result 'dependency'.
[Thu Jan 1 00:00:38 1970] systemd[1]: Finished Load Kernel Modules.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounted Kernel Configuration File System.
[Thu Jan 1 00:00:38 1970] systemd[1]: Mounting FUSE Control File System...
[Thu Jan 1 00:00:39 1970] systemd[1]: Starting Apply Kernel Variables...
[Thu Jan 1 00:00:39 1970] systemd[1]: Mounted FUSE Control File System.
[Thu Jan 1 00:00:39 1970] systemd[1]: Started Journal Service.
[Thu Jan 1 00:00:39 1970] systemd-journald[115]: Received client request to flush runtime journal.
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.236:2): prog-id=6 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.248:3): prog-id=7 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.256:4): prog-id=8 op=LOAD
[Thu Jan 1 00:00:40 1970] audit: type=1334 audit(1728487100.696:5): prog-id=9 op=LOAD