Control: tags -1 + patch > linux-config-5.10/sid, and the symptoms 977694 and 979187 are reproduced. > My impression is that raspi4 USB-MSD boot failure can be fixed by properly > changing .config. I will investigate what are required changes to the config.
I identified changes in .config enabling boot of raspi 4B from USB MSD. The following script built a debian kernel package that can boot from (not buggy) USB MSD. Build was done on raspi 4B. #!/bin/bash set -x apt-get source linux/sid cd linux-5.10.9 fakeroot make -f debian/rules.gen setup_arm64_none_arm64 cat >>debian/build/build_arm64_none_arm64/.config <<'EOF' CONFIG_RESET_RASPBERRYPI=y CONFIG_ARM_RASPBERRYPI_CPUFREQ=y CONFIG_SENSORS_RASPBERRYPI_HWMON=y EOF yes | make -C debian/build/build_arm64_none_arm64 oldconfig yes | fakeroot /usr/bin/make -j 12 -f debian/rules.gen binary-arch_arm64_none_arm64 I believe CONFIG_RESET_RASPBERRYPI=y CONFIG_ARM_RASPBERRYPI_CPUFREQ=y CONFIG_SENSORS_RASPBERRYPI_HWMON=y fix 977694. On the other hand, the other issue 979187 remains. I will report the situation of 979187 in a separete email. Best regards, Ryutaroh Matsumoto
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd083] [ 0.000000] Linux version 5.10.0-2-arm64 (debian-ker...@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.1) #1 SMP Debian 5.10.9-1 (2021-01-20) [ 0.000000] Machine model: Raspberry Pi 4 Model B Rev 1.4 [ 0.000000] efi: UEFI not found. [ 0.000000] Reserved memory: created CMA memory pool at 0x0000000037000000, size 64 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000001ffffffff] [ 0.000000] NUMA: NODE_DATA [mem 0x1ff019b00-0x1ff01bfff] [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000000000000-0x000000003fffffff] [ 0.000000] DMA32 [mem 0x0000000040000000-0x00000000ffffffff] [ 0.000000] Normal [mem 0x0000000100000000-0x00000001ffffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x000000003b2fffff] [ 0.000000] node 0: [mem 0x0000000040000000-0x00000000fbffffff] [ 0.000000] node 0: [mem 0x0000000100000000-0x00000001ffffffff] [ 0.000000] Zeroed struct page in unavailable ranges: 256 pages [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000001ffffffff] [ 0.000000] On node 0 totalpages: 2061056 [ 0.000000] DMA zone: 3788 pages used for memmap [ 0.000000] DMA zone: 0 pages reserved [ 0.000000] DMA zone: 242432 pages, LIFO batch:63 [ 0.000000] DMA32 zone: 12288 pages used for memmap [ 0.000000] DMA32 zone: 770048 pages, LIFO batch:63 [ 0.000000] Normal zone: 16384 pages used for memmap [ 0.000000] Normal zone: 1048576 pages, LIFO batch:63 [ 0.000000] percpu: Embedded 33 pages/cpu s95192 r8192 d31784 u135168 [ 0.000000] pcpu-alloc: s95192 r8192 d31784 u135168 alloc=33*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Detected PIPT I-cache on CPU0 [ 0.000000] CPU features: detected: EL2 vector hardening [ 0.000000] CPU features: kernel page table isolation forced ON by KASLR [ 0.000000] CPU features: detected: Kernel page table isolation (KPTI) [ 0.000000] CPU features: detected: Spectre-v2 [ 0.000000] CPU features: detected: Spectre-v4 [ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 2028596 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: dma.dmachans=0x37f5 bcm2709.boardrev=0xd03114 bcm2709.serial=0x488d2af3 bcm2709.uart_clock=48000000 bcm2709.disk_led_gpio=42 bcm2709.disk_led_active_low=0 smsc95xx.macaddr=DC:A6:32:BB:99:D9 vc_mem.mem_base=0x3eb00000 vc_mem.mem_size=0x3ff00000 root=LABEL=RASPIROOT rw fsck.repair=yes net.ifnames=0 rootwait [ 0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) [ 0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] software IO TLB: mapped [mem 0x0000000033000000-0x0000000037000000] (64MB) [ 0.000000] Memory: 4911236K/8244224K available (11648K kernel code, 2420K rwdata, 6852K rodata, 5312K init, 588K bss, 282316K reserved, 65536K cma-reserved) [ 0.000000] random: get_random_u64 called from __kmem_cache_create+0x3c/0x590 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] ftrace: allocating 37908 entries in 149 pages [ 0.000000] ftrace: allocated 149 pages with 4 groups [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4. [ 0.000000] Rude variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] arch_timer: cp15 timer(s) running at 54.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xc743ce346, max_idle_ns: 440795203123 ns [ 0.000006] sched_clock: 56 bits at 54MHz, resolution 18ns, wraps every 4398046511102ns [ 0.000180] Console: colour dummy device 80x25 [ 0.000605] printk: console [tty0] enabled [ 0.000727] Calibrating delay loop (skipped), value calculated using timer frequency.. 108.00 BogoMIPS (lpj=216000) [ 0.000756] pid_max: default: 32768 minimum: 301 [ 0.000915] LSM: Security Framework initializing [ 0.000966] Yama: disabled by default; enable with sysctl kernel.yama.* [ 0.001104] AppArmor: AppArmor initialized [ 0.001125] TOMOYO Linux initialized [ 0.001308] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.001421] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.003930] rcu: Hierarchical SRCU implementation. [ 0.006050] EFI services will not be available. [ 0.006599] smp: Bringing up secondary CPUs ... [ 0.007281] Detected PIPT I-cache on CPU1 [ 0.007355] CPU1: Booted secondary processor 0x0000000001 [0x410fd083] [ 0.008189] Detected PIPT I-cache on CPU2 [ 0.008234] CPU2: Booted secondary processor 0x0000000002 [0x410fd083] [ 0.009053] Detected PIPT I-cache on CPU3 [ 0.009100] CPU3: Booted secondary processor 0x0000000003 [0x410fd083] [ 0.009211] smp: Brought up 1 node, 4 CPUs [ 0.009274] SMP: Total of 4 processors activated. [ 0.009289] CPU features: detected: 32-bit EL0 Support [ 0.009303] CPU features: detected: CRC32 instructions [ 0.009318] CPU features: detected: 32-bit EL1 Support [ 0.032034] CPU: All CPU(s) started at EL2 [ 0.032131] alternatives: patching kernel code [ 0.167788] node 0 deferred pages initialised in 132ms [ 0.170232] devtmpfs: initialized [ 0.177327] Registered cp15_barrier emulation handler [ 0.177368] Registered setend emulation handler [ 0.177397] KASLR enabled [ 0.177732] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.177832] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.179897] pinctrl core: initialized pinctrl subsystem [ 0.180717] DMI not present or invalid. [ 0.181439] NET: Registered protocol family 16 [ 0.183134] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations [ 0.183389] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.183906] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.183965] audit: initializing netlink subsys (disabled) [ 0.184253] audit: type=2000 audit(0.180:1): state=initialized audit_enabled=0 res=1 [ 0.185498] thermal_sys: Registered thermal governor 'fair_share' [ 0.185507] thermal_sys: Registered thermal governor 'bang_bang' [ 0.185526] thermal_sys: Registered thermal governor 'step_wise' [ 0.185540] thermal_sys: Registered thermal governor 'user_space' [ 0.185553] thermal_sys: Registered thermal governor 'power_allocator' [ 0.185955] cpuidle: using governor ladder [ 0.186142] cpuidle: using governor menu [ 0.186396] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.186528] ASID allocator initialised with 32768 entries [ 0.186952] Serial: AMBA PL011 UART driver [ 0.213789] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.213825] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.213841] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.213856] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.874566] ACPI: Interpreter disabled. [ 0.874857] iommu: Default domain type: Translated [ 0.875182] vgaarb: loaded [ 0.875531] EDAC MC: Ver: 3.0.0 [ 0.877082] NetLabel: Initializing [ 0.877102] NetLabel: domain hash size = 128 [ 0.877114] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.877195] NetLabel: unlabeled traffic allowed by default [ 0.877730] clocksource: Switched to clocksource arch_sys_counter [ 0.949030] VFS: Disk quotas dquot_6.6.0 [ 0.949144] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.950009] AppArmor: AppArmor Filesystem Enabled [ 0.950994] simple-framebuffer 3e196000.framebuffer: framebuffer at 0x3e196000, 0x960000 bytes, mapped to 0x(____ptrval____) [ 0.951022] simple-framebuffer 3e196000.framebuffer: format=a8r8g8b8, mode=1920x1280x32, linelength=7680 [ 0.976736] Console: switching to colour frame buffer device 240x80 [ 1.001885] simple-framebuffer 3e196000.framebuffer: fb0: simplefb registered! [ 1.002088] pnp: PnP ACPI: disabled [ 1.011327] NET: Registered protocol family 2 [ 1.012330] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 1.013013] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 1.014428] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) [ 1.015303] TCP: Hash tables configured (established 65536 bind 65536) [ 1.015865] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 1.016210] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 1.016666] NET: Registered protocol family 1 [ 1.016776] NET: Registered protocol family 44 [ 1.016867] PCI: CLS 0 bytes, default 64 [ 1.017192] Trying to unpack rootfs image as initramfs... [ 3.165892] Freeing initrd memory: 29164K [ 3.167241] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available [ 3.167541] kvm [1]: IPA Size Limit: 44 bits [ 3.169122] kvm [1]: vgic interrupt IRQ9 [ 3.169379] kvm [1]: Hyp mode initialized successfully [ 3.171228] Initialise system trusted keyrings [ 3.171364] Key type blacklist registered [ 3.171713] workingset: timestamp_bits=42 max_order=21 bucket_order=0 [ 3.177881] zbud: loaded [ 3.178765] integrity: Platform Keyring initialized [ 3.178866] Key type asymmetric registered [ 3.178944] Asymmetric key parser 'x509' registered [ 3.179065] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 3.179441] io scheduler mq-deadline registered [ 3.186013] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 3.186864] brcm-pcie fd500000.pcie: host bridge /scb/pcie@7d500000 ranges: [ 3.187000] brcm-pcie fd500000.pcie: No bus range found for /scb/pcie@7d500000, using [bus 00-ff] [ 3.187175] brcm-pcie fd500000.pcie: MEM 0x0600000000..0x0603ffffff -> 0x00f8000000 [ 3.187335] brcm-pcie fd500000.pcie: IB MEM 0x0000000000..0x00bfffffff -> 0x0400000000 [ 3.251809] brcm-pcie fd500000.pcie: link up, 5.0 GT/s PCIe x1 (SSC) [ 3.252123] brcm-pcie fd500000.pcie: PCI host bridge to bus 0000:00 [ 3.252241] pci_bus 0000:00: root bus resource [bus 00-ff] [ 3.252345] pci_bus 0000:00: root bus resource [mem 0x600000000-0x603ffffff] (bus address [0xf8000000-0xfbffffff]) [ 3.252557] pci 0000:00:00.0: [14e4:2711] type 01 class 0x060400 [ 3.252739] pci 0000:00:00.0: PME# supported from D0 D3hot [ 3.255410] pci 0000:01:00.0: [1106:3483] type 00 class 0x0c0330 [ 3.255544] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit] [ 3.255766] pci 0000:01:00.0: PME# supported from D0 D3hot [ 3.267880] pci 0000:00:00.0: BAR 14: assigned [mem 0x600000000-0x6000fffff] [ 3.268015] pci 0000:01:00.0: BAR 0: assigned [mem 0x600000000-0x600000fff 64bit] [ 3.268158] pci 0000:00:00.0: PCI bridge to [bus 01] [ 3.268251] pci 0000:00:00.0: bridge window [mem 0x600000000-0x6000fffff] [ 3.268549] pcieport 0000:00:00.0: enabling device (0000 -> 0002) [ 3.268803] pcieport 0000:00:00.0: PME: Signaling with IRQ 50 [ 3.269240] pcieport 0000:00:00.0: AER: enabled with IRQ 50 [ 3.280321] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 3.282573] fe215040.serial: ttyS1 at MMIO 0xfe215040 (irq = 26, base_baud = 33402922) is a 16550 [ 4.338695] printk: console [ttyS1] enabled [ 4.344174] Serial: AMBA driver [ 4.347790] msm_serial: driver initialized [ 4.353200] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 4.360254] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver [ 4.374507] mousedev: PS/2 mouse device common for all mice [ 4.387223] brcmstb-i2c fef04500.i2c: @97500hz registered in polling mode [ 4.400448] brcmstb-i2c fef09500.i2c: @97500hz registered in polling mode [ 4.414805] ledtrig-cpu: registered to indicate activity on CPUs [ 4.427354] bcm2835-mbox fe00b880.mailbox: mailbox enabled [ 4.440521] NET: Registered protocol family 10 [ 4.490889] Segment Routing with IPv6 [ 4.500738] mip6: Mobile IPv6 [ 4.509687] NET: Registered protocol family 17 [ 4.520332] mpls_gso: MPLS GSO support [ 4.530622] registered taskstats version 1 [ 4.540767] Loading compiled-in X.509 certificates [ 4.702222] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1' [ 4.717277] Loaded X.509 cert 'Debian Secure Boot Signer 2020: 00b55eb3b9' [ 4.730525] zswap: loaded using pool lzo/zbud [ 4.741605] Key type ._fscrypt registered [ 4.751771] Key type .fscrypt registered [ 4.761789] Key type fscrypt-provisioning registered [ 4.773034] AppArmor: AppArmor sha1 policy hashing enabled [ 4.790329] fe201000.serial: ttyAMA0 at MMIO 0xfe201000 (irq = 24, base_baud = 0) is a PL011 rev2 [ 4.805774] serial serial0: tty port ttyAMA0 registered [ 4.820093] raspberrypi-firmware soc:firmware: Attached to firmware from 2021-01-07T18:27:29 [ 5.009712] Freeing unused kernel memory: 5312K [ 5.136291] Checked W+X mappings: passed, no W+X pages found [ 5.148172] Run /init as init process [ 5.157881] with arguments: [ 5.157887] /init [ 5.157892] with environment: [ 5.157898] HOME=/ [ 5.157903] TERM=linux [ 5.478620] phy_generic: module verification failed: signature and/or required key missing - tainting kernel [ 5.499005] sdhci: Secure Digital Host Controller Interface driver [ 5.511558] sdhci: Copyright(c) Pierre Ossman [ 5.531983] usb_phy_generic phy: supply vcc not found, using dummy regulator [ 5.569926] sdhci-pltfm: SDHCI platform and OF driver helper [ 5.577393] libphy: Fixed MDIO Bus: probed [ 5.591486] usbcore: registered new interface driver usbfs [ 5.603979] usbcore: registered new interface driver hub [ 5.616011] sdhci-iproc fe300000.sdhci: allocated mmc-pwrseq [ 5.616657] bcmgenet fd580000.ethernet: GENET 5.0 EPHY: 0x0000 [ 5.629992] usbcore: registered new device driver usb [ 5.665821] mmc0: SDHCI controller on fe300000.sdhci [fe300000.sdhci] using PIO [ 5.677811] mmc1: SDHCI controller on fe340000.emmc2 [fe340000.emmc2] using ADMA [ 5.692715] dwc2 fe980000.usb: supply vusb_d not found, using dummy regulator [ 5.707607] dwc2 fe980000.usb: supply vusb_a not found, using dummy regulator [ 5.721759] libphy: bcmgenet MII bus: probed [ 5.722288] mmc0: queuing unknown CIS tuple 0x80 (2 bytes) [ 5.739930] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 5.745427] mmc0: queuing unknown CIS tuple 0x80 (3 bytes) [ 5.755229] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1 [ 5.768473] mmc0: queuing unknown CIS tuple 0x80 (3 bytes) [ 5.780957] xhci_hcd 0000:01:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000000000000890 [ 5.797101] mmc0: queuing unknown CIS tuple 0x80 (7 bytes) [ 5.808405] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 5.820903] mmc0: queuing unknown CIS tuple 0x80 (3 bytes) [ 5.822525] unimac-mdio unimac-mdio.-19: Broadcom UniMAC MDIO bus [ 5.829180] dwc2 fe980000.usb: EPs: 8, dedicated fifos, 4080 entries in SPRAM [ 5.833950] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 5.845246] mmc1: new ultra high speed DDR50 SDHC card at address 0007 [ 5.846433] mmcblk1: mmc1:0007 SD32G 29.0 GiB [ 5.858180] usb usb1: Product: xHCI Host Controller [ 5.858190] usb usb1: Manufacturer: Linux 5.10.0-2-arm64 xhci-hcd [ 5.869719] random: fast init done [ 5.876012] mmcblk1: p1 [ 5.885287] usb usb1: SerialNumber: 0000:01:00.0 [ 5.911129] mmc0: new high speed SDIO card at address 0001 [ 5.921181] hub 1-0:1.0: USB hub found [ 5.983822] hub 1-0:1.0: 1 port detected [ 5.994845] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 6.006422] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2 [ 6.020267] xhci_hcd 0000:01:00.0: Host supports USB 3.0 SuperSpeed [ 6.033239] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 6.047994] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 6.061600] usb usb2: Product: xHCI Host Controller [ 6.072794] usb usb2: Manufacturer: Linux 5.10.0-2-arm64 xhci-hcd [ 6.085201] usb usb2: SerialNumber: 0000:01:00.0 [ 6.096895] hub 2-0:1.0: USB hub found [ 6.107182] hub 2-0:1.0: 4 ports detected [ 6.237734] raid6: neonx8 gen() 1751 MB/s [ 6.313725] raid6: neonx8 xor() 1277 MB/s [ 6.389724] raid6: neonx4 gen() 1822 MB/s [ 6.465725] raid6: neonx4 xor() 1347 MB/s [ 6.541731] raid6: neonx2 gen() 1566 MB/s [ 6.617719] raid6: neonx2 xor() 1209 MB/s [ 6.693720] raid6: neonx1 gen() 1181 MB/s [ 6.769721] raid6: neonx1 xor() 942 MB/s [ 6.845729] raid6: int64x8 gen() 1000 MB/s [ 6.921725] raid6: int64x8 xor() 569 MB/s [ 6.997720] raid6: int64x4 gen() 1018 MB/s [ 7.073731] raid6: int64x4 xor() 573 MB/s [ 7.149720] raid6: int64x2 gen() 949 MB/s [ 7.225725] raid6: int64x2 xor() 514 MB/s [ 7.301752] raid6: int64x1 gen() 730 MB/s [ 7.377720] raid6: int64x1 xor() 383 MB/s [ 7.387471] raid6: using algorithm neonx4 gen() 1822 MB/s [ 7.398389] raid6: .... xor() 1347 MB/s, rmw enabled [ 7.408863] raid6: using neon recovery algorithm [ 7.420755] xor: measuring software checksum speed [ 7.434994] 8regs : 2522 MB/sec [ 7.448142] 32regs : 2903 MB/sec [ 7.461607] arm64_neon : 2628 MB/sec [ 7.471319] xor: using function: 32regs (2903 MB/sec) [ 7.549755] usb 1-1: new high-speed USB device number 2 using xhci_hcd [ 7.565169] Btrfs loaded, crc32c=crc32c-generic [ 7.716367] usb 1-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.21 [ 7.730081] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 7.742635] usb 1-1: Product: USB2.0 Hub [ 7.753602] hub 1-1:1.0: USB hub found [ 7.762895] hub 1-1:1.0: 4 ports detected [ 7.842060] usb 2-2: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd [ 7.880223] usb 2-2: New USB device found, idVendor=0411, idProduct=0311, bcdDevice= 1.48 [ 7.893679] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 7.906064] usb 2-2: Product: SSD-PUT/N [ 7.915033] usb 2-2: Manufacturer: BUFFALO [ 7.924214] usb 2-2: SerialNumber: 0020578510118491 [ 7.951151] SCSI subsystem initialized [ 7.964845] usbcore: registered new interface driver usb-storage [ 7.984356] scsi host0: uas [ 7.992902] usbcore: registered new interface driver uas [ 8.003983] scsi 0:0:0:0: Direct-Access BUFFALO SSD-PUT/N 2210 PQ: 0 ANSI: 6 [ 8.030194] sd 0:0:0:0: [sda] 2000409264 512-byte logical blocks: (1.02 TB/954 GiB) [ 8.043413] sd 0:0:0:0: [sda] Write Protect is off [ 8.053431] sd 0:0:0:0: [sda] Mode Sense: 2f 00 00 00 [ 8.053836] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 8.069068] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes [ 8.095211] sda: sda1 sda2 sda3 [ 8.108144] sd 0:0:0:0: [sda] Attached SCSI disk [ 8.121804] usb 1-1.3: new low-speed USB device number 3 using xhci_hcd [ 8.244313] usb 1-1.3: New USB device found, idVendor=15ca, idProduct=00c3, bcdDevice= 5.12 [ 8.258128] usb 1-1.3: New USB device strings: Mfr=0, Product=2, SerialNumber=0 [ 8.270801] usb 1-1.3: Product: USB Optical Mouse [ 8.295810] hid: raw HID events driver (C) Jiri Kosina [ 8.314753] usbcore: registered new interface driver usbhid [ 8.325557] usbhid: USB HID core driver [ 8.341814] input: USB Optical Mouse as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:15CA:00C3.0001/input/input0 [ 8.362991] hid-generic 0003:15CA:00C3.0001: input,hidraw0: USB HID v1.10 Mouse [USB Optical Mouse] on usb-0000:01:00.0-1.3/input0 [ 8.381789] usb 1-1.4: new low-speed USB device number 4 using xhci_hcd [ 8.501737] usb 1-1.4: New USB device found, idVendor=1a2c, idProduct=4324, bcdDevice= 1.10 [ 8.515643] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 8.528444] usb 1-1.4: Product: USB Keyboard [ 8.538104] usb 1-1.4: Manufacturer: SEM [ 8.556472] input: SEM USB Keyboard as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:1A2C:4324.0002/input/input1 [ 8.634292] hid-generic 0003:1A2C:4324.0002: input,hidraw1: USB HID v1.10 Keyboard [SEM USB Keyboard] on usb-0000:01:00.0-1.4/input0 [ 8.658659] input: SEM USB Keyboard Consumer Control as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:1A2C:4324.0003/input/input2 [ 8.741967] input: SEM USB Keyboard System Control as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:1A2C:4324.0003/input/input3 [ 8.765015] hid-generic 0003:1A2C:4324.0003: input,hidraw2: USB HID v1.10 Device [SEM USB Keyboard] on usb-0000:01:00.0-1.4/input1 [ 38.024001] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) [ 38.211040] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist. [ 38.365179] systemd[1]: System time before build time, advancing clock. [ 38.407634] systemd[1]: Inserted module 'autofs4' [ 38.452669] systemd[1]: systemd 247.2-5 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) [ 38.489363] systemd[1]: Detected architecture arm64. [ 38.518597] systemd[1]: Set hostname to <raspi48gb>. [ 38.536617] systemd[1]: Initializing machine ID from D-Bus machine ID. [ 39.014443] systemd[1]: Queued start job for default target Graphical Interface. [ 39.029963] random: systemd: uninitialized urandom read (16 bytes read) [ 39.047314] systemd[1]: Created slice system-getty.slice. [ 39.077927] random: systemd: uninitialized urandom read (16 bytes read) [ 39.093019] systemd[1]: Created slice system-modprobe.slice. [ 39.121891] random: systemd: uninitialized urandom read (16 bytes read) [ 39.137404] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 39.167383] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 39.199157] systemd[1]: Created slice User and Session Slice. [ 39.230275] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 39.262172] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 39.294771] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 39.330069] systemd[1]: Reached target Local Encrypted Volumes. [ 39.362002] systemd[1]: Reached target Paths. [ 39.389921] systemd[1]: Reached target Remote File Systems. [ 39.417895] systemd[1]: Reached target Slices. [ 39.448336] systemd[1]: Listening on Syslog Socket. [ 39.478489] systemd[1]: Listening on fsck to fsckd communication Socket. [ 39.510184] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 39.542718] systemd[1]: Listening on Journal Audit Socket. [ 39.570388] systemd[1]: Listening on Journal Socket (/dev/log). [ 39.602562] systemd[1]: Listening on Journal Socket. [ 39.630724] systemd[1]: Listening on udev Control Socket. [ 39.658387] systemd[1]: Listening on udev Kernel Socket. [ 39.690413] systemd[1]: Mounting Huge Pages File System... [ 39.722384] systemd[1]: Mounting POSIX Message Queue File System... [ 39.758544] systemd[1]: Mounting Kernel Debug File System... [ 39.790967] systemd[1]: Mounting Kernel Trace File System... [ 39.827151] systemd[1]: Starting Restore / save the current clock... [ 39.863217] systemd[1]: Starting Set the console keyboard layout... [ 39.899517] systemd[1]: Starting Create list of static device nodes for the current kernel... [ 39.938769] systemd[1]: Starting Load Kernel Module configfs... [ 39.974874] systemd[1]: Starting Load Kernel Module drm... [ 40.007687] systemd[1]: Starting Load Kernel Module fuse... [ 40.031187] fuse: init (API version 7.32) [ 40.043680] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 40.060588] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 40.085130] systemd[1]: Starting Journal Service... [ 40.125136] systemd[1]: Starting Load Kernel Modules... [ 40.162940] systemd[1]: Starting Remount Root and Kernel File Systems... [ 40.203414] systemd[1]: Starting Coldplug All udev Devices... [ 40.216898] EXT4-fs (sda2): re-mounted. Opts: discard [ 40.260544] systemd[1]: Mounted Huge Pages File System. [ 40.294666] systemd[1]: Mounted POSIX Message Queue File System. [ 40.326689] systemd[1]: Mounted Kernel Debug File System. [ 40.354770] systemd[1]: Mounted Kernel Trace File System. [ 40.382441] systemd[1]: Started Journal Service. [ 41.312884] vchiq: module is from the staging directory, the quality is unknown, you have been warned. [ 41.343876] iproc-rng200 fe104000.rng: hwrng registered [ 41.359462] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer [ 41.425155] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 41.481267] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 41.493422] cfg80211: Loaded X.509 cert 'b...@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf' [ 41.507147] cfg80211: Loaded X.509 cert 'romain.per...@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328' [ 41.523498] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 41.534865] platform regulatory.0: firmware: direct-loading firmware regulatory.db [ 41.547063] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s [ 41.551911] mc: Linux media interface: v0.10 [ 41.587927] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6 [ 41.603003] usbcore: registered new interface driver brcmfmac [ 41.612682] brcmfmac mmc0:0001:1: firmware: direct-loading firmware brcm/brcmfmac43455-sdio.bin [ 41.617280] videodev: Linux video capture interface: v2.00 [ 41.619316] snd_bcm2835: module is from the staging directory, the quality is unknown, you have been warned. [ 41.624966] brcmfmac mmc0:0001:1: firmware: direct-loading firmware brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.txt [ 41.627668] alg: No test for fips(ansi_cprng) (fips_ansi_cprng) [ 41.674199] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned. [ 41.677404] bcm2835_v4l2: module is from the staging directory, the quality is unknown, you have been warned. [ 41.700303] random: crng init done [ 41.700310] random: 7 urandom warning(s) missed due to ratelimiting [ 41.721816] bcm2835_audio bcm2835_audio: card created with 8 channels [ 41.775112] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6 [ 41.787599] brcmfmac mmc0:0001:1: firmware: failed to load brcm/brcmfmac43455-sdio.clm_blob (-2) [ 41.802067] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware [ 41.802115] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available [ 41.842787] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/6 wl0: Mar 1 2015 07:29:38 version 7.45.18 (r538002) FWID 01-6a2c8ad4 [ 41.843686] cryptd: max_cpu_qlen set to 1000 [ 42.154659] Bluetooth: Core ver 2.22 [ 42.161122] NET: Registered protocol family 31 [ 42.168491] Bluetooth: HCI device and connection manager initialized [ 42.168526] Bluetooth: HCI socket layer initialized [ 42.187535] Bluetooth: L2CAP socket layer initialized [ 42.197752] Bluetooth: SCO socket layer initialized [ 42.221468] Bluetooth: HCI UART driver ver 2.3 [ 42.229250] Bluetooth: HCI UART protocol H4 registered [ 42.238484] Bluetooth: HCI UART protocol LL registered [ 42.247318] Bluetooth: HCI UART protocol ATH3K registered [ 42.256490] Bluetooth: HCI UART protocol Three-wire (H5) registered [ 42.266175] Bluetooth: HCI UART protocol Intel registered [ 42.274930] Bluetooth: HCI UART protocol Broadcom registered [ 42.283874] Bluetooth: HCI UART protocol QCA registered [ 42.292704] Bluetooth: HCI UART protocol AG6XX registered [ 42.301768] Bluetooth: HCI UART protocol Marvell registered [ 42.310164] hci_uart_bcm serial0-0: supply vbat not found, using dummy regulator [ 42.320516] hci_uart_bcm serial0-0: supply vddio not found, using dummy regulator [ 42.449901] uart-pl011 fe201000.serial: no DMA platform data [ 42.698336] Bluetooth: hci0: BCM: chip id 107 [ 42.705557] Bluetooth: hci0: BCM: features 0x2f [ 42.714147] Bluetooth: hci0: BCM4345C0 [ 42.720457] Bluetooth: hci0: BCM4345C0 (003.001.025) build 0000 [ 42.729027] bluetooth hci0: firmware: failed to load brcm/BCM4345C0.hcd (-2) [ 42.738767] bluetooth hci0: firmware: failed to load brcm/BCM.hcd (-2) [ 42.747913] Bluetooth: hci0: BCM: firmware Patch file not found, tried: [ 42.757164] Bluetooth: hci0: BCM: 'brcm/BCM4345C0.hcd' [ 42.764884] Bluetooth: hci0: BCM: 'brcm/BCM.hcd' [ 130.290505] bcmgenet fd580000.ethernet: configuring instance for external RGMII (RX delay) [ 130.302276] bcmgenet fd580000.ethernet eth0: Link is Down [ 139.269674] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready