forked from limingth/arceos
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathemulog2.log
1076 lines (1071 loc) · 48.6 KB
/
emulog2.log
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
c[?7l[2J[0mSeaBIOS (version rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org)
iPXE (http://ipxe.org) 00:03.0 CA00 PCI2.10 PnP PMM+7EFD0D70+7EF30D70 CA00
Press Ctrl-B to configure iPXE (PCI 00:03.0)...
Booting from ROM..c[?7l[2J[ 0.000000] Linux version 6.10.0 (dbydd@dbyddlaptop) (gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #6 SMP PREEMPT_DYNAMIC Fri Jul 19 10:59:53 HKT 2024
|| Command line: root=/dev/root ro rootfstype=9p rootflags=trans=virtio console=ttyS0 init=/bin/sh
|| BIOS-provided physical RAM map:
|| BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
|| BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
|| BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
|| BIOS-e820: [mem 0x0000000000100000-0x000000007ffdffff] usable
|| BIOS-e820: [mem 0x000000007ffe0000-0x000000007fffffff] reserved
|| BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
|| BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved
|| NX (Execute Disable) protection: active
|| APIC: Static calls initialized
|| SMBIOS 2.8 present.
|| DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014
|| DMI: Memory slots populated: 1/1
|| tsc: Fast TSC calibration using PIT
|| tsc: Detected 2419.220 MHz processor
|| last_pfn = 0x7ffe0 max_arch_pfn = 0x400000000
|| MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
|| x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
|| found SMP MP-table at [mem 0x000f5460-0x000f546f]
|| ACPI: Early table checksum verification disabled
|| ACPI: RSDP 0x00000000000F5280 000014 (v00 BOCHS )
|| ACPI: RSDT 0x000000007FFE1CBA 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)
|| ACPI: FACP 0x000000007FFE1B6E 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001)
|| ACPI: DSDT 0x000000007FFE0040 001B2E (v01 BOCHS BXPC 00000001 BXPC 00000001)
|| ACPI: FACS 0x000000007FFE0000 000040
|| ACPI: APIC 0x000000007FFE1BE2 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)
|| ACPI: HPET 0x000000007FFE1C5A 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
|| ACPI: WAET 0x000000007FFE1C92 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
|| ACPI: Reserving FACP table memory at [mem 0x7ffe1b6e-0x7ffe1be1]
|| ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1b6d]
|| ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f]
|| ACPI: Reserving APIC table memory at [mem 0x7ffe1be2-0x7ffe1c59]
|| ACPI: Reserving HPET table memory at [mem 0x7ffe1c5a-0x7ffe1c91]
|| ACPI: Reserving WAET table memory at [mem 0x7ffe1c92-0x7ffe1cb9]
|| No NUMA configuration found
|| Faking a node at [mem 0x0000000000000000-0x000000007ffdffff]
|| NODE_DATA(0) allocated [mem 0x7ffdc000-0x7ffdffff]
|| Zone ranges:
|| DMA [mem 0x0000000000001000-0x0000000000ffffff]
|| DMA32 [mem 0x0000000001000000-0x000000007ffdffff]
|| Normal empty
|| Movable zone start for each node
|| Early memory node ranges
|| node 0: [mem 0x0000000000001000-0x000000000009efff]
|| node 0: [mem 0x0000000000100000-0x000000007ffdffff]
|| Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdffff]
|| On node 0, zone DMA: 1 pages in unavailable ranges
|| On node 0, zone DMA: 97 pages in unavailable ranges
|| On node 0, zone DMA32: 32 pages in unavailable ranges
|| ACPI: PM-Timer IO Port: 0x608
|| ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
|| IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
|| ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|| ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
|| ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
|| ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
|| ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
|| ACPI: Using ACPI (MADT) for SMP configuration information
|| ACPI: HPET id: 0x8086a201 base: 0xfed00000
|| CPU topo: Max. logical packages: 1
|| CPU topo: Max. logical dies: 1
|| CPU topo: Max. dies per package: 1
|| CPU topo: Max. threads per core: 1
|| CPU topo: Num. cores per package: 1
|| CPU topo: Num. threads per package: 1
|| CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs
|| PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
|| PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
|| PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]
|| PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]
|| [mem 0x80000000-0xfffbffff] available for PCI devices
|| Booting paravirtualized kernel on bare hardware
|| clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
|| setup_percpu: NR_CPUS:64 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
|| percpu: Embedded 58 pages/cpu s199384 r8192 d29992 u2097152
|| Kernel command line: root=/dev/root ro rootfstype=9p rootflags=trans=virtio console=ttyS0 init=/bin/sh
|| Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
|| Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
|| Fallback order for Node 0: 0
|| Built 1 zonelists, mobility grouping on. Total pages: 524158
|| Policy zone: DMA32
|| mem auto-init: stack:off, heap alloc:off, heap free:off
|| Memory: 2018576K/2096632K available (18432K kernel code, 3068K rwdata, 7568K rodata, 2828K init, 2660K bss, 77796K reserved, 0K cma-reserved)
|| SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
|| Dynamic Preempt: voluntary
|| rcu: Preemptible hierarchical RCU implementation.
|| rcu: RCU event tracing is enabled.
|| rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=1.
|| Trampoline variant of Tasks RCU enabled.
|| Tracing variant of Tasks RCU enabled.
|| rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
|| rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
|| RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
|| RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1.
|| NR_IRQS: 4352, nr_irqs: 256, preallocated irqs: 16
|| rcu: srcu_init: Setting srcu_struct sizes based on contention.
|| Console: colour VGA+ 80x25
|| printk: legacy console [ttyS0] enabled
|| ACPI: Core revision 20240322
|| clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
|| APIC: Switch to symmetric I/O mode setup
|| ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
|| clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df23fdaa4, max_idle_ns: 440795278047 ns
|| Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.44 BogoMIPS (lpj=2419220)
|| Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127
|| Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0
|| Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
|| Spectre V2 : Mitigation: Retpolines
|| Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
|| Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
|| x86/fpu: x87 FPU will use FXSAVE
|| Freeing SMP alternatives memory: 52K
|| pid_max: default: 32768 minimum: 301
|| LSM: initializing lsm=capability,selinux,bpf
|| SELinux: Initializing.
|| LSM support for eBPF active
|| Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
|| Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
|| smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1)
|| Performance Events: PMU not available due to virtualization, using software events only.
|| signal: max sigframe size: 1440
|| rcu: Hierarchical SRCU implementation.
|| rcu: Max phase no-delay instances is 400.
|| smp: Bringing up secondary CPUs ...
|| smp: Brought up 1 node, 1 CPU
|| smpboot: Total of 1 processors activated (4838.44 BogoMIPS)
|| devtmpfs: initialized
|| clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
|| futex hash table entries: 256 (order: 2, 16384 bytes, linear)
|| PM: RTC time: 05:40:41, date: 2024-07-19
|| NET: Registered PF_NETLINK/PF_ROUTE protocol family
|| audit: initializing netlink subsys (disabled)
|| audit: type=2000 audit(1721367640.528:1): state=initialized audit_enabled=0 res=1
|| thermal_sys: Registered thermal governor 'step_wise'
|| thermal_sys: Registered thermal governor 'user_space'
|| cpuidle: using governor menu
|| PCI: Using configuration type 1 for base access
|| kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
|| HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
|| HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
|| Demotion targets for Node 0: null
|| ACPI: Added _OSI(Module Device)
|| ACPI: Added _OSI(Processor Device)
|| ACPI: Added _OSI(3.0 _SCP Extensions)
|| ACPI: Added _OSI(Processor Aggregator Device)
|| ACPI: 1 ACPI AML tables successfully acquired and loaded
|| ACPI: Interpreter enabled
|| ACPI: PM: (supports S0 S3 S4 S5)
|| ACPI: Using IOAPIC for interrupt routing
|| PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
|| PCI: Using E820 reservations for host bridge windows
|| ACPI: Enabled 2 GPEs in block 00 to 0F
|| ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
|| acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
|| acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
|| acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
|| PCI host bridge to bus 0000:00
|| pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
|| pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
|| pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
|| pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window]
|| pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window]
|| pci_bus 0000:00: root bus resource [bus 00-ff]
|| pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
|| pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
|| pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
|| pci 0000:00:01.1: BAR 4 [io 0xc0a0-0xc0af]
|| pci 0000:00:01.1: BAR 0 [io 0x01f0-0x01f7]: legacy IDE quirk
|| pci 0000:00:01.1: BAR 1 [io 0x03f6]: legacy IDE quirk
|| pci 0000:00:01.1: BAR 2 [io 0x0170-0x0177]: legacy IDE quirk
|| pci 0000:00:01.1: BAR 3 [io 0x0376]: legacy IDE quirk
|| pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 conventional PCI endpoint
|| pci 0000:00:01.2: BAR 4 [io 0xc080-0xc09f]
|| pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
|| pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
|| pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
|| pci 0000:00:02.0: [1234:1111] type 00 class 0x030000 conventional PCI endpoint
|| pci 0000:00:02.0: BAR 0 [mem 0xfd000000-0xfdffffff pref]
|| pci 0000:00:02.0: BAR 2 [mem 0xfebf4000-0xfebf4fff]
|| pci 0000:00:02.0: ROM [mem 0xfebe0000-0xfebeffff pref]
|| pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
|| pci 0000:00:03.0: [8086:100e] type 00 class 0x020000 conventional PCI endpoint
|| pci 0000:00:03.0: BAR 0 [mem 0xfebc0000-0xfebdffff]
|| pci 0000:00:03.0: BAR 1 [io 0xc000-0xc03f]
|| pci 0000:00:03.0: ROM [mem 0xfeb80000-0xfebbffff pref]
|| pci 0000:00:04.0: [1b36:000d] type 00 class 0x0c0330 conventional PCI endpoint
|| pci 0000:00:04.0: BAR 0 [mem 0xfebf0000-0xfebf3fff 64bit]
|| pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200 conventional PCI endpoint
|| pci 0000:00:05.0: BAR 0 [io 0xc040-0xc07f]
|| pci 0000:00:05.0: BAR 1 [mem 0xfebf5000-0xfebf5fff]
|| pci 0000:00:05.0: BAR 4 [mem 0xfe000000-0xfe003fff 64bit pref]
|| ACPI: PCI: Interrupt link LNKA configured for IRQ 10
|| ACPI: PCI: Interrupt link LNKB configured for IRQ 10
|| ACPI: PCI: Interrupt link LNKC configured for IRQ 11
|| ACPI: PCI: Interrupt link LNKD configured for IRQ 11
|| ACPI: PCI: Interrupt link LNKS configured for IRQ 9
|| iommu: Default domain type: Translated
|| iommu: DMA domain TLB invalidation policy: lazy mode
|| SCSI subsystem initialized
|| ACPI: bus type USB registered
|| usbcore: registered new interface driver usbfs
|| usbcore: registered new interface driver hub
|| usbcore: registered new device driver usb
|| pps_core: LinuxPPS API ver. 1 registered
|| pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
|| PTP clock support registered
|| Advanced Linux Sound Architecture Driver Initialized.
|| NetLabel: Initializing
|| NetLabel: domain hash size = 128
|| NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
|| NetLabel: unlabeled traffic allowed by default
|| PCI: Using ACPI for IRQ routing
|| pci 0000:00:02.0: vgaarb: setting as boot VGA device
|| pci 0000:00:02.0: vgaarb: bridge control possible
|| pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
|| vgaarb: loaded
|| hpet: 3 channels of 0 reserved for per-cpu timers
|| hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
|| hpet0: 3 comparators, 64-bit 100.000000 MHz counter
|| clocksource: Switched to clocksource tsc-early
|| VFS: Disk quotas dquot_6.6.0
|| VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
|| pnp: PnP ACPI init
|| pnp: PnP ACPI: found 6 devices
|| clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
|| NET: Registered PF_INET protocol family
|| IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
|| tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
|| Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
|| TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
|| TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
|| TCP: Hash tables configured (established 16384 bind 16384)
|| UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
|| UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
|| NET: Registered PF_UNIX/PF_LOCAL protocol family
|| RPC: Registered named UNIX socket transport module.
|| RPC: Registered udp transport module.
|| RPC: Registered tcp transport module.
|| RPC: Registered tcp-with-tls transport module.
|| RPC: Registered tcp NFSv4.1 backchannel transport module.
|| pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
|| pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
|| pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
|| pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window]
|| pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window]
|| pci 0000:00:01.0: PIIX3: Enabling Passive Release
|| pci 0000:00:00.0: Limiting direct PCI/PCI transfers
|| ACPI: \_SB_.LNKD: Enabled at IRQ 11
|| pci 0000:00:01.2: quirk_usb_early_handoff+0x0/0x7a0 took 370455 usecs
|| pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x7a0 took 210470 usecs
|| PCI: CLS 0 bytes, default 64
|| Initialise system trusted keyrings
|| workingset: timestamp_bits=56 max_order=19 bucket_order=0
|| NFS: Registering the id_resolver key type
|| Key type id_resolver registered
|| Key type id_legacy registered
|| 9p: Installing v9fs 9p2000 file system support
|| Key type asymmetric registered
|| Asymmetric key parser 'x509' registered
|| Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
|| io scheduler mq-deadline registered
|| io scheduler kyber registered
|| input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
|| ACPI: button: Power Button [PWRF]
|| ACPI: \_SB_.LNKA: Enabled at IRQ 10
|| Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
|| 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
|| Non-volatile memory driver v1.3
|| Linux agpgart interface v0.103
|| ACPI: bus type drm_connector registered
|| loop: module loaded
|| scsi host0: ata_piix
|| scsi host1: ata_piix
|| ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc0a0 irq 14 lpm-pol 0
|| ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc0a8 irq 15 lpm-pol 0
|| e100: Intel(R) PRO/100 Network Driver
|| e100: Copyright(c) 1999-2006 Intel Corporation
|| e1000: Intel(R) PRO/1000 Network Driver
|| e1000: Copyright (c) 1999-2006 Intel Corporation.
|| ACPI: \_SB_.LNKC: Enabled at IRQ 11
|| ata2: found unknown device (class 0)
|| ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
|| scsi 1:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
|| sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
|| cdrom: Uniform CD-ROM driver Revision: 3.20
|| sr 1:0:0:0: Attached scsi generic sg0 type 5
|| e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
|| e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
|| e1000e: Intel(R) PRO/1000 Network Driver
|| e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
|| sky2: driver version 1.30
|| uhci_hcd 0000:00:01.2: UHCI Host Controller
|| uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
|| uhci_hcd 0000:00:01.2: detected 2 ports
|| uhci_hcd 0000:00:01.2: irq 11, io port 0x0000c080
|| usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.10
|| usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|| usb usb1: Product: UHCI Host Controller
|| usb usb1: Manufacturer: Linux 6.10.0 uhci_hcd
|| usb usb1: SerialNumber: 0000:00:01.2
|| hub 1-0:1.0: USB hub found
|| hub 1-0:1.0: 2 ports detected
|| xhci_hcd 0000:00:04.0: xHCI Host Controller
|| xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
|| xhci_hcd 0000:00:04.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
|| xhci_hcd 0000:00:04.0: xHCI Host Controller
|| xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 3
|| xhci_hcd 0000:00:04.0: Host supports USB 3.0 SuperSpeed
|| usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
|| usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|| usb usb2: Product: xHCI Host Controller
|| usb usb2: Manufacturer: Linux 6.10.0 xhci-hcd
|| usb usb2: SerialNumber: 0000:00:04.0
|| hub 2-0:1.0: USB hub found
|| hub 2-0:1.0: 4 ports detected
|| usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
|| usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
|| usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|| usb usb3: Product: xHCI Host Controller
|| usb usb3: Manufacturer: Linux 6.10.0 xhci-hcd
|| usb usb3: SerialNumber: 0000:00:04.0
|| hub 3-0:1.0: USB hub found
|| hub 3-0:1.0: 4 ports detected
|| usbcore: registered new interface driver usblp
|| usbcore: registered new interface driver cdc_wdm
|| usbcore: registered new interface driver usbtmc
|| usbcore: registered new interface driver usb-storage
|| usbcore: registered new interface driver usbtest
|| i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
|| serio: i8042 KBD port at 0x60,0x64 irq 1
|| serio: i8042 AUX port at 0x60,0x64 irq 12
|| mousedev: PS/2 mouse device common for all mice
|| usbcore: registered new interface driver synaptics_usb
|| rtc_cmos 00:05: RTC can wake from S4
|| input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
|| rtc_cmos 00:05: registered as rtc0
|| rtc_cmos 00:05: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
|| fail to initialize ptp_kvm
|| device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
|| amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
|| hid: raw HID events driver (C) Jiri Kosina
|| usbcore: registered new interface driver usbhid
|| usbhid: USB HID core driver
|| Initializing XFRM netlink socket
|| NET: Registered PF_INET6 protocol family
|| Segment Routing with IPv6
|| In-situ OAM (IOAM) with IPv6
|| sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
|| NET: Registered PF_PACKET protocol family
|| 9pnet: Installing 9P2000 support
|| Key type dns_resolver registered
|| IPI shorthand broadcast: enabled
|| sched_clock: Marking stable (2580181518, 24717809)->(2610917431, -6018104)
|| registered taskstats version 1
|| Loading compiled-in X.509 certificates
|| Demotion targets for Node 0: null
|| PM: Magic number: 0:96:669
|| printk: legacy console [netcon0] enabled
|| netconsole: network logging started
|| cfg80211: Loading compiled-in X.509 certificates for regulatory database
|| kworker/u4:0 (48) used greatest stack depth: 14512 bytes left
|| Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
|| Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
|| ALSA device list:
|| No soundcards found.
|| platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
|| cfg80211: failed to load regulatory.db
|| tsc: Refined TSC clocksource calibration: 2419.185 MHz
|| clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df0309918, max_idle_ns: 440795278046 ns
|| clocksource: Switched to clocksource tsc
|| input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3
|| md: Waiting for all devices to be available before autodetect
|| md: If you don't use raid, use raid=noautodetect
|| md: Autodetecting RAID arrays.
|| md: autorun ...
|| md: ... autorun DONE.
|| VFS: Mounted root (9p filesystem) readonly on device 0:19.
|| devtmpfs: mounted
|| Freeing unused kernel image (initmem) memory: 2828K
|| Write protecting the kernel read-only data: 26624k
|| Freeing unused kernel image (rodata/data gap) memory: 624K
|| x86/mm: Checked W+X mappings: passed, no W+X pages found.
|| Run /bin/sh as init process
/bin/sh: 0: can't access tty; job control turned off
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 2401
|| usb 2-2: new full-speed USB device number 2 using xhci_hcd
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fc7000
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1002e01
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1000680
|| xhci_hcd 0000:00:04.0: 400000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f9ed40
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 40
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021 //setup
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1004401 //reset device
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fc7000
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1002c01//address device
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1000680
|| xhci_hcd 0000:00:04.0: 120000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840//setup
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f23a00
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 12
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 6000680
|| xhci_hcd 0000:00:04.0: a0000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f2ab20
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: a
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1013801
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fc8091
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1014001
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 6000680
|| xhci_hcd 0000:00:04.0: a0000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f2ab20
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: a
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1013801
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fc80c1
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1014001
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 6000680
|| xhci_hcd 0000:00:04.0: a0000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f2ab20
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: a
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1013801
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fc80f1
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1014001
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 2000680
|| xhci_hcd 0000:00:04.0: 90000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f2ab20
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 9
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 2000680
|| xhci_hcd 0000:00:04.0: 3b0000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f9ed80
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 3b
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 3000680
|| xhci_hcd 0000:00:04.0: ff0000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fba400
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: ff
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 3020680
|| xhci_hcd 0000:00:04.0: ff0409
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fba400
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: ff
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 3010680
|| xhci_hcd 0000:00:04.0: ff0409
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fba400
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: ff
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 3030680
|| xhci_hcd 0000:00:04.0: ff0409
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fba400
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: ff
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| usb 2-2: New USB device found, idVendor=3151, idProduct=3020, bcdDevice= 0.02
|| usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|| usb 2-2: Product: Wireless Device
|| usb 2-2: Manufacturer: YICHIP
|| usb 2-2: SerialNumber: b120300001
|| xhci_hcd 0000:00:04.0: slot ctx=================================================================
|| xhci_hcd 0000:00:04.0: slot_ctx:devinfo: 28100000
|| xhci_hcd 0000:00:04.0: slot_ctx:devinfo2: 60000
|| xhci_hcd 0000:00:04.0: slot_ctx:ttinfo: 0
|| xhci_hcd 0000:00:04.0: slot_ctx:dev_state: 0
|| xhci_hcd 0000:00:04.0: ctrl ctx=================================================================
|| xhci_hcd 0000:00:04.0: ctrl_ctx:add_flags: 29
|| xhci_hcd 0000:00:04.0: ctrl_ctx:drop_flags: 0
|| xhci_hcd 0000:00:04.0: ctrl_ctx:rsvd 0: 0
|| xhci_hcd 0000:00:04.0: ctrl_ctx:rsvd 1: 0
|| xhci_hcd 0000:00:04.0: ctrl_ctx:rsvd 2: 0
|| xhci_hcd 0000:00:04.0: ctrl_ctx:rsvd 3: 0
|| xhci_hcd 0000:00:04.0: ctrl_ctx:rsvd 4: 0
|| xhci_hcd 0000:00:04.0: ctrl_ctx:rsvd 5: 0
|| xhci_hcd 0000:00:04.0: endpoint 0=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 1fc8031
|| xhci_hcd 0000:00:04.0: ep_info2_32: 400026
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 1fc8031
|| xhci_hcd 0000:00:04.0: endpoint 1=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 2=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 1fcc001
|| xhci_hcd 0000:00:04.0: ep_info2_32: 40003e
|| xhci_hcd 0000:00:04.0: ep_info1_32: 40000
|| xhci_hcd 0000:00:04.0: tx_info_32: 400040
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 1fcc001
|| xhci_hcd 0000:00:04.0: endpoint 3=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 4=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 1fce001
|| xhci_hcd 0000:00:04.0: ep_info2_32: 40003e
|| xhci_hcd 0000:00:04.0: ep_info1_32: 40000
|| xhci_hcd 0000:00:04.0: tx_info_32: 400040
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 1fce001
|| xhci_hcd 0000:00:04.0: endpoint 5=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 6=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 7=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 8=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 9=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 10=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 11=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 12=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 13=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 14=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 15=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 16=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 17=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 18=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 19=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 20=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 21=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 22=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 23=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 24=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 25=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 26=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 27=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 28=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 29=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 30=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: endpoint 31=================================================================
|| xhci_hcd 0000:00:04.0: deque_32: 0
|| xhci_hcd 0000:00:04.0: ep_info2_32: 0
|| xhci_hcd 0000:00:04.0: ep_info1_32: 0
|| xhci_hcd 0000:00:04.0: tx_info_32: 0
|| xhci_hcd 0000:00:04.0: deque_ptr_64: 0
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fc7000
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1003001
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1033c01
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd1000
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1003001
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1053c01
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd1000
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1003001
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 10900
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 11021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 3030680
|| xhci_hcd 0000:00:04.0: ff0409
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fba500
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: ff
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: a21
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 11021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 22000681
|| xhci_hcd 0000:00:04.0: 3f0000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd0280
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 3f
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 2000921
|| xhci_hcd 0000:00:04.0: 10000
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 20840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd3100
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1
|| xhci_hcd 0000:00:04.0: c01
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 11021
|| input: YICHIP Wireless Device as /devices/pci0000:00/0000:00:04.0/usb2/2-2/2-2:1.0/0003:3151:3020.0001/input/input4
|| xhci_hcd 0000:00:04.0: submit interrupt in urb
|| xhci_hcd 0000:00:04.0: interrupt!
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd3000
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 424
|| hid-generic 0003:3151:3020.0001: input,hidraw0: USB HID v2.00 Keyboard [YICHIP Wireless Device] on usb-0000:00:04.0-2/input0
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 3030680
|| xhci_hcd 0000:00:04.0: ff0409
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd9100
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: ff
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: a21
|| xhci_hcd 0000:00:04.0: 1
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 11021
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 22000681
|| xhci_hcd 0000:00:04.0: a30001
|| xhci_hcd 0000:00:04.0: 8
|| xhci_hcd 0000:00:04.0: 30840
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1f9de40
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: a3
|| xhci_hcd 0000:00:04.0: 10c05
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 1021
|| input: YICHIP Wireless Device Mouse as /devices/pci0000:00/0000:00:04.0/usb2/2-2/2-2:1.1/0003:3151:3020.0002/input/input5
|| input: YICHIP Wireless Device System Control as /devices/pci0000:00/0000:00:04.0/usb2/2-2/2-2:1.1/0003:3151:3020.0002/input/input6
|| xhci_hcd 0000:00:04.0: submit interrupt in urb
|| xhci_hcd 0000:00:04.0: interrupt!
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd3180
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 20
|| xhci_hcd 0000:00:04.0: 424
|| input: YICHIP Wireless Device Consumer Control as /devices/pci0000:00/0000:00:04.0/usb2/2-2/2-2:1.1/0003:3151:3020.0002/input/input7
|| hid-generic 0003:3151:3020.0002: input,hiddev96,hidraw1: USB HID v2.00 Mouse [YICHIP Wireless Device] on usb-0000:00:04.0-2/input1
|| xhci_hcd 0000:00:04.0: submit interrupt in urb
|| xhci_hcd 0000:00:04.0: interrupt!
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd3180
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 20
|| xhci_hcd 0000:00:04.0: 424
|| xhci_hcd 0000:00:04.0: submit interrupt in urb
|| xhci_hcd 0000:00:04.0: interrupt!
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd3180
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 20
|| xhci_hcd 0000:00:04.0: 424
|| xhci_hcd 0000:00:04.0: submit interrupt in urb
|| xhci_hcd 0000:00:04.0: interrupt!
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd3180
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 20
|| xhci_hcd 0000:00:04.0: 424
|| xhci_hcd 0000:00:04.0: submit interrupt in urb
|| xhci_hcd 0000:00:04.0: interrupt!
|| xhci_hcd 0000:00:04.0: dump trb:
|| xhci_hcd 0000:00:04.0: 1fd3180
|| xhci_hcd 0000:00:04.0: 0
|| xhci_hcd 0000:00:04.0: 20
|| xhci_hcd 0000:00:04.0: 424
|| xhci_hcd 0000:00:04.0: submit interrupt in urb