Closed hvdkamer closed 3 years ago
I think it's just that we don't have a chromium build for arm64 yet.
My mistake, it looks like GL should work in Debian's "chromium" package that we currently use on the 64bit image.
Does it work any differently whether you launch chromium with --use-gl=desktop
or --use-gl=egl
?
You could also try going to chrome://flags
, enabling Override software rendering list
and then launching chromium with:
GALLIUM_DRIVER=llvmpipe LIBGL_ALWAYS_SOFTWARE=true chromium
(and another time with --use-gl=egl
, just in case) to see if the problem is our driver. If you still see the problem with software rendering, the cause might be something else.
Oops, below was written and I didn't see your second response. Will try your suggestions and report back. However that will be tomorrow because at the moment I don't have access to the hardware...
Most arm64 packages in the Raspberry Pi OS are coming from Debian. I'm pretty sure I tested both Firefox -- default in both Raspberry Pi OS 32 and 64 bit version -- and Chromium (available in Debian Buster for arm64). But I did a lot of tests, so may be I screwed this one up. That however doesn't matter! Firefox is the default and I definitely tested both images:
hvdkamer@obelix:~/werk/downloads$ ls -l 2021-05-07-raspios-buster-arm* -rw-r--r-- 1 hvdkamer hvdkamer 3737124864 mei 7 18:14 2021-05-07-raspios-buster-arm64.img -rw-r--r-- 1 hvdkamer hvdkamer 1055240912 jun 13 17:30 2021-05-07-raspios-buster-arm64.zip -rw-r--r-- 1 hvdkamer hvdkamer 102 jun 13 17:29 2021-05-07-raspios-buster-arm64.zip.sha256 -rw-r--r-- 1 hvdkamer hvdkamer 3980394496 mei 7 17:07 2021-05-07-raspios-buster-armhf.img -rw-r--r-- 1 hvdkamer hvdkamer 1237837307 jun 13 18:57 2021-05-07-raspios-buster-armhf.zip
Because it isn't working in the 32 bits version as well, you may ignore the 64 bit version. I know that one is still in beta. If it was only in that version I wouldn't have made the forum post in the first place...
Sorry, I missed that the issue was also in 32-bit. On the 32-bit image you'd need to launch it with chromium-browser
instead of chromium
for the tests.
We don't pre-install firefox in any of our images, and certainly don't support it.
But yes, it does sound like one for the people working on gl support, I just wanted to make sure it wasn't a packaging issue on my end.
If you still see the problem with software rendering, the cause might be something else.
Just to be sure, I said that this game depends on hardware acceleration. If you disable that it shows a popup that the game couldn't be started. So testing with software rendering can't be done :-).
We don't pre-install firefox in any of our images, and certainly don't support it.
Hmm, I used the 2021-05-07-raspios-buster-arm(hf|64).zip and I'm almost certain that Firefox was installed. And that I had to install Chromium. But again it doesn't matter because the default browser didn't work also :-). I just installed the other to be thorough. Again all four combinations had the same problem.
@naushir possibly a bug or missing feature in 3d mes support - one for Igalia?
Ok, got access to the hardware. Tests done with the 32 bit version. Indeed Chromium is the default browser, my bad. Debian uses Firefox as default browser in Gnome. As said, I tested a lot.
The --use-gl=desktop
doesn't resolve the issue. Same for the --use-gl=egl
. There is a difference in messages in the console though. Attached the output of both. As said, I won't test software rendering options because this game depends on hardware rendering. It says so when you disable the hardware acceleration.
@itoral and @txenoo, any thoughts?
I could reproduce it with the buster Raspbery OS packages. But we can confirm that is working with a recent mesa version.
It seems to work with desktop or egl chromium renderer.
I'll try to bisect it to check what fixed the rendering.
Ping @XECDesign we might want a mesa bump to fix webgl rendering errors (once it's been identified).
Hope it's something that can be backported to 19.3.2
@XECDesign it seems that can be easily backported to 19.3.2, it was directly backported to 20.0 20.1
This commit fixes the rendering:
commit e3ecf48dda2ddabfbabdad83e19d280d0edb8246
Author: Jose Maria Casanova Crespo <jmcasanova@igalia.com>
Date: Thu May 7 03:37:22 2020 +0200
v3d: Fix swizzle in DXT3 and DXT5 formats
Swizzles were ignoring the W component of the format DXT3_RGBA and
DXT5_RGBA.
This fixes 15 piglit tests:
spec/!opengl 1.1/copyteximage 2d
spec/!opengl 1.2/copyteximage 3d
spec/arb_texture_compression/fbo-generatemipmap-formats/gl_compressed_rgba
spec/arb_texture_compression/fbo-generatemipmap-formats/gl_compressed_rgba npot
spec/arb_texture_compression/texwrap formats bordercolor-swizzled/gl_compressed_rgba, swizzled, border color only
spec/arb_texture_compression/texwrap formats bordercolor/gl_compressed_rgba, border color only
spec/arb_texture_cube_map/copyteximage cube
spec/arb_texture_cube_map/copyteximage cube samples=2
spec/arb_texture_cube_map/copyteximage cube samples=4
spec/arb_texture_rectangle/copyteximage rect
spec/arb_texture_rectangle/copyteximage rect samples=2
spec/arb_texture_rectangle/copyteximage rect samples=4
spec/ext_texture_array/copyteximage 2d_array
spec/ext_texture_array/copyteximage 2d_array samples=2
spec/ext_texture_array/copyteximage 2d_array samples=4
Fixes: 469bbd8387d1 "broadcom/vc5: Move the formats table to per-V3D-version compile."
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4934>
But I would cherry-pick the complete series including also:
commit 905edc376dd1ace6ac2af0fc351606210a0141a1
Author: Jose Maria Casanova Crespo <jmcasanova@igalia.com>
Date: Thu May 7 03:50:16 2020 +0200
v3d: Include supported DXT formats to enable s3tc/dxt extensions
DXT1_RGBA and sRGB variants of DXT[135] formats are enabled as
valid format on V3D.
Once all S3TC formats supported by V3C are enabled the following
extensions become exposed by gallium.
* GL_ANGLE_texture_compression_dxt3
* GL_ANGLE_texture_compression_dxt5,
* GL_EXT_texture_compression_dxt1
* GL_EXT_texture_compression_s3tc
* GL_S3_s3tc
* GL_EXT_texture_compression_s3tc_srgb
This enables 206 passing piglit test related to gl_compressed.*s3tc_dxt
Cc: 20.0 20.1 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4934>
Many applications assume the support of s3tc is basic enough to assume that the driver support it. So it would be better to have it enabled. Many games started to work after landing both patches like Quake4 https://youtu.be/zZaNC2WlYeA
@XECDesign it seems that can be easily backported to 19.3.2, it was directly backported to 20.0 20.1
I've just confirmed that both commits apply perfectly over 19.3.2: And the render is fixed.
I've heard no complaints from internal testing and it seems to work for me, so the fix should be in the repo now. Many thanks, @txenoo.
@hvdkamer can you upgrade through apt and test if this issue is resolved? Please close if it is.
After upgrading on the 32 bit version the game works as expected! Thanks for looking into this and of course solving it this quickly.
Is this the right place for my bug report? I was pointed her in this forum post about feedback on the 64 bit version. If this is wrong, I have an excuse :-)
Describe the bug The web based Elvenar game depends on functional hardware acceleration in modern browsers. Tested the lasted May 7th version of Raspberry Pi OS, both 32 and 64 bit. In those both Chromium and Firefox (ESR) is used to start the game. In all four combinations the images of the interface are show, but the game area itself remains a dark brown.
To reproduce Create or use an existing account on the Elvenar game, choose Winyandor and wait until the game is loaded.
Expected behaviour A game area with all the buildings and other created stuff.
Actual behaviour Only a dark brown background is showing. You can click in this area and see the reponses of the buildings etc. But it isn't shown. If wanted I can create a screenshot of a working game on Debian in Chromium or Firefox. The game is working on a variety of x86_64 hardware with both Intel and AMD graphic cards.
System System Information
Raspberry Pi 4 Model B Rev 1.4 PRETTY_NAME="Raspbian GNU/Linux 10 (buster)" NAME="Raspbian GNU/Linux" VERSION_ID="10" VERSION="10 (buster)"
Raspberry Pi reference 2021-05-07 Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, dcfd74d7d1fa293065ac6d565711e9ff891fe2b8, stage4
Linux raspberrypi 5.10.17-v7l+ #1421 SMP Thu May 27 14:00:13 BST 2021 armv7l GNU/Linux Revision : d03114 Serial : 10000000250194ad Model : Raspberry Pi 4 Model B Rev 1.4 Throttled flag : throttled=0x0 Camera : supported=0 detected=0
Videocore information
May 27 2021 14:02:15 Copyright (c) 2012 Broadcom version 7d9a298cda813f747b51fe17e1e417e7bf5ca94d (clean) (release) (start)
alloc failures: 0 compactions: 0 legacy block fails: 0
Filesystem information
Filesystem 1K-blocks Used Available Use% Mounted on /dev/root 122603860 3341340 114227924 3% / devtmpfs 3900044 0 3900044 0% /dev tmpfs 4032140 0 4032140 0% /dev/shm tmpfs 4032140 8768 4023372 1% /run tmpfs 5120 4 5116 1% /run/lock tmpfs 4032140 0 4032140 0% /sys/fs/cgroup /dev/mmcblk0p1 258095 48788 209307 19% /boot tmpfs 806428 4 806424 1% /run/user/1000
Filename Type Size Used Priority /var/swap file 102396 0 -2
Package version information
raspberrypi-ui-mods: Installed: 1.20201210+nmu1 raspberrypi-sys-mods: Installed: 20210310 openbox: Installed: 3.6.1-8+rpt5 lxpanel: Installed: 0.10.0-2+rpt15 pcmanfm: Installed: 1.3.1-1+rpt27 rpd-plym-splash: Installed: 0.26
Networking Information
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet x.x.x.x netmask x.x.x.x broadcast x.x.x.x inet6 y.y.y.y.y.y.y.y prefixlen 64 scopeid 0x0
inet6 2a02:a460:1338:y::y.y.y.y prefixlen 128 scopeid 0x0
inet6 y::y.y.y.y prefixlen 64 scopeid 0x20
ether m.m.m.m txqueuelen 1000 (Ethernet)
RX packets 35 bytes 3974 (3.8 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 56 bytes 7159 (6.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet x.x.x.x netmask x.x.x.x inet6 ::1 prefixlen 128 scopeid 0x10
loop txqueuelen 1000 (Local Loopback)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 ether m.m.m.m txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
USB Information
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/4p, 5000M /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/1p, 480M | Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M | Port 3: Dev 3, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M | Port 3: Dev 3, If 1, Class=Human Interface Device, Driver=usbhid, 1.5M | Port 4: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
config.txt
arm_freq=1500 audio_pwm_mode=514 config_hdmi_boost=5 core_freq=500 core_freq_min=200 disable_commandline_tags=2 disable_l2cache=1 disable_overscan=1 display_hdmi_rotate=-1 display_lcd_rotate=-1 dvfs=2 enable_gic=1 force_eeprom_read=1 force_pwm_open=1 framebuffer_ignore_alpha=1 framebuffer_swap=1 gpu_freq=500 gpu_freq_min=250 init_uart_clock=0x2dc6c00 lcd_framerate=60 mask_gpu_interrupt0=1024 mask_gpu_interrupt1=0x10000 max_framebuffers=2 over_voltage_avs=-20000 pause_burst_frames=1 program_serial_random=1 total_mem=8192 hdmi_force_cec_address:0=65535 hdmi_force_cec_address:1=65535 hdmi_pixel_freq_limit:0=0x11e1a300 hdmi_pixel_freq_limit:1=0x11e1a300 device_tree=- overlay_prefix=overlays/ hdmi_cvt:0= hdmi_cvt:1= hdmi_edid_filename:0= hdmi_edid_filename:1= hdmi_timings:0= hdmi_timings:1=
cmdline.txt
coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_compat_alsa=0 snd_bcm2835.enable_hdmi=1 video=HDMI-A-1:1920x1080M@60 smsc95xx.macaddr=DC:A6:32:E7:FE:A5 vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000 console=ttyS0,115200 console=tty1 root=PARTUUID=0ce58e3c-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles
raspi-gpio settings
BANK0 (GPIO 0 to 27): GPIO 0: level=1 fsel=0 func=INPUT pull=UP GPIO 1: level=1 fsel=0 func=INPUT pull=UP GPIO 2: level=1 fsel=0 func=INPUT pull=UP GPIO 3: level=1 fsel=0 func=INPUT pull=UP GPIO 4: level=1 fsel=0 func=INPUT pull=UP GPIO 5: level=1 fsel=0 func=INPUT pull=UP GPIO 6: level=1 fsel=0 func=INPUT pull=UP GPIO 7: level=1 fsel=0 func=INPUT pull=UP GPIO 8: level=1 fsel=0 func=INPUT pull=UP GPIO 9: level=0 fsel=0 func=INPUT pull=DOWN GPIO 10: level=0 fsel=0 func=INPUT pull=DOWN GPIO 11: level=0 fsel=0 func=INPUT pull=DOWN GPIO 12: level=0 fsel=0 func=INPUT pull=DOWN GPIO 13: level=0 fsel=0 func=INPUT pull=DOWN GPIO 14: level=1 fsel=0 func=INPUT pull=NONE GPIO 15: level=1 fsel=0 func=INPUT pull=UP GPIO 16: level=0 fsel=0 func=INPUT pull=DOWN GPIO 17: level=0 fsel=0 func=INPUT pull=DOWN GPIO 18: level=0 fsel=0 func=INPUT pull=DOWN GPIO 19: level=0 fsel=0 func=INPUT pull=DOWN GPIO 20: level=0 fsel=0 func=INPUT pull=DOWN GPIO 21: level=0 fsel=0 func=INPUT pull=DOWN GPIO 22: level=0 fsel=0 func=INPUT pull=DOWN GPIO 23: level=0 fsel=0 func=INPUT pull=DOWN GPIO 24: level=0 fsel=0 func=INPUT pull=DOWN GPIO 25: level=0 fsel=0 func=INPUT pull=DOWN GPIO 26: level=0 fsel=0 func=INPUT pull=DOWN GPIO 27: level=0 fsel=0 func=INPUT pull=DOWN BANK1 (GPIO 28 to 45): GPIO 28: level=1 fsel=2 alt=5 func=RGMII_MDIO pull=UP GPIO 29: level=0 fsel=2 alt=5 func=RGMII_MDC pull=DOWN GPIO 30: level=0 fsel=7 alt=3 func=CTS0 pull=UP GPIO 31: level=0 fsel=7 alt=3 func=RTS0 pull=NONE GPIO 32: level=1 fsel=7 alt=3 func=TXD0 pull=NONE GPIO 33: level=1 fsel=7 alt=3 func=RXD0 pull=UP GPIO 34: level=1 fsel=7 alt=3 func=SD1_CLK pull=NONE GPIO 35: level=1 fsel=7 alt=3 func=SD1_CMD pull=UP GPIO 36: level=1 fsel=7 alt=3 func=SD1_DAT0 pull=UP GPIO 37: level=1 fsel=7 alt=3 func=SD1_DAT1 pull=UP GPIO 38: level=1 fsel=7 alt=3 func=SD1_DAT2 pull=UP GPIO 39: level=1 fsel=7 alt=3 func=SD1_DAT3 pull=UP GPIO 40: level=0 fsel=4 alt=0 func=PWM1_0 pull=NONE GPIO 41: level=0 fsel=4 alt=0 func=PWM1_1 pull=NONE GPIO 42: level=0 fsel=1 func=OUTPUT pull=UP GPIO 43: level=1 fsel=0 func=INPUT pull=UP GPIO 44: level=1 fsel=0 func=INPUT pull=UP GPIO 45: level=1 fsel=0 func=INPUT pull=UP BANK2 (GPIO 46 to 53): GPIO 46: level=0 fsel=0 func=INPUT pull=UP GPIO 47: level=0 fsel=0 func=INPUT pull=UP GPIO 48: level=0 fsel=0 func=INPUT pull=DOWN GPIO 49: level=0 fsel=0 func=INPUT pull=DOWN GPIO 50: level=0 fsel=0 func=INPUT pull=DOWN GPIO 51: level=0 fsel=0 func=INPUT pull=DOWN GPIO 52: level=0 fsel=0 func=INPUT pull=DOWN GPIO 53: level=0 fsel=0 func=INPUT pull=DOWN
vcdbg log messages
005199.418: arasan: arasan_emmc_open 005359.501: brfs: File read: /mfs/sd/config.txt 005360.297: brfs: File read: 1783 bytes 005453.358: brfs: File read: /mfs/sd/config.txt 005469.666: brfs: File read: 1783 bytes 005963.468: gpioman: gpioman_get_pin_num: pin DISPLAY_DSI_PORT not defined 005965.968: *** Restart logging 006007.033: hdmi: HDMI:hdmi_get_state is deprecated, use hdmi_get_display_state instead 006007.049: HDMI0: hdmi_pixel_encoding: 300000000 006007.060: HDMI1: hdmi_pixel_encoding: 300000000 006012.004: dtb_file 'bcm2711-rpi-4-b.dtb' 006017.166: brfs: File read: /mfs/sd/bcm2711-rpi-4-b.dtb 006017.180: Loading 'bcm2711-rpi-4-b.dtb' to 0x100 size 0xbfc2 006029.703: brfs: File read: 49090 bytes 006040.492: brfs: File read: /mfs/sd/overlays/overlay_map.dtb 006104.399: brfs: File read: 1523 bytes 006106.569: brfs: File read: /mfs/sd/config.txt 006107.081: dtparam: audio=on 006116.945: brfs: File read: 1783 bytes 006128.802: brfs: File read: /mfs/sd/overlays/vc4-fkms-v3d.dtbo 006145.955: Loaded overlay 'vc4-fkms-v3d' 006185.730: brfs: File read: 1446 bytes 006187.427: brfs: File read: /mfs/sd/cmdline.txt 006187.473: Read command line from file 'cmdline.txt': 006187.487: 'console=serial0,115200 console=tty1 root=PARTUUID=0ce58e3c-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles' 007418.964: brfs: File read: 166 bytes 008757.198: brfs: File read: /mfs/sd/kernel7l.img 008757.239: Loading 'kernel7l.img' to 0x8000 size 0x662680 008757.286: Device tree loaded to 0x2eff3a00 (size 0xc5f6) 008764.563: gpioman: gpioman_get_pin_num: pin SDCARD_CONTROL_POWER not defined 013868.486: vchiq_core: vchiq_init_state: slot_zero = 0xded80000, is_master = 1 013871.969: hdmi: HDMI:hdmi_get_state is deprecated, use hdmi_get_display_state instead 013879.557: TV service:host side not connected, dropping notification 0x00000002, 0x00000001, 0x00000010 018096.603: TV service:host side not connected, dropping notification 0x00000008, 0x00000004, 0x00000000 023888.638: TV service:host side not connected, dropping notification 0x00000008, 0x00000004, 0x00000000
dmesg log
[ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.10.17-v7l+ (dom@buildbot) (arm-linux-gnueabihf-gcc-8 (Ubuntu/Linaro 8.4.0-3ubuntu1) 8.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #1421 SMP Thu May 27 14:00:13 BST 2021 [ 0.000000] CPU: ARMv7 Processor [410fd083] revision 3 (ARMv7), cr=30c5383d [ 0.000000] CPU: div instructions available: patching division code [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] OF: fdt: Machine model: Raspberry Pi 4 Model B Rev 1.4 [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] Reserved memory: created CMA memory pool at 0x000000001ec00000, size 256 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000000000000-0x000000002fffffff] [ 0.000000] Normal empty [ 0.000000] HighMem [mem 0x0000000030000000-0x00000001ffffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x000000003b3fffff] [ 0.000000] node 0: [mem 0x0000000040000000-0x00000000fbffffff] [ 0.000000] node 0: [mem 0x0000000100000000-0x00000001ffffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000001ffffffff] [ 0.000000] On node 0 totalpages: 2061312 [ 0.000000] DMA zone: 2304 pages used for memmap [ 0.000000] DMA zone: 0 pages reserved [ 0.000000] DMA zone: 196608 pages, LIFO batch:63 [ 0.000000] HighMem zone: 1864704 pages, LIFO batch:63 [ 0.000000] percpu: Embedded 20 pages/cpu s50700 r8192 d23028 u81920 [ 0.000000] pcpu-alloc: s50700 r8192 d23028 u81920 alloc=20*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 2059008 [ 0.000000] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_compat_alsa=0 snd_bcm2835.enable_hdmi=1 video=HDMI-A-1:1920x1080M@60 smsc95xx.macaddr=m.m.m.m vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000 console=ttyS0,115200 console=tty1 root=PARTUUID=0ce58e3c-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles [ 0.000000] Kernel parameter elevator= does not have any effect anymore. Please use sysfs to set IO scheduler for individual devices. [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: mapped [mem 0x0000000014c00000-0x0000000018c00000] (64MB) [ 0.000000] Memory: 7800088K/8245248K available (10240K kernel code, 1358K rwdata, 3160K rodata, 2048K init, 890K bss, 183016K reserved, 262144K cma-reserved, 7458816K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] ftrace: allocating 33942 entries in 67 pages [ 0.000000] ftrace: allocated 67 pages with 3 groups [ 0.000000] rcu: Hierarchical RCU implementation. [ 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 10 jiffies. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] random: get_random_bytes called from start_kernel+0x3c8/0x59c with crng_init=0 [ 0.000010] sched_clock: 32 bits at 1000kHz, resolution 1000ns, wraps every 2147483647500ns [ 0.000028] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275 ns [ 0.000094] bcm2835: system timer (irq = 25) [ 0.000748] arch_timer: cp15 timer(s) running at 54.00MHz (phys). [ 0.000766] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xc743ce346, max_idle_ns: 440795203123 ns [ 0.000784] sched_clock: 56 bits at 54MHz, resolution 18ns, wraps every 4398046511102ns [ 0.000799] Switching to timer-based delay loop, resolution 18ns [ 0.001063] Console: colour dummy device 80x30 [ 0.001132] printk: console [tty1] enabled [ 0.001186] Calibrating delay loop (skipped), value calculated using timer frequency.. 108.00 BogoMIPS (lpj=540000) [ 0.001220] pid_max: default: 32768 minimum: 301 [ 0.001396] LSM: Security Framework initializing [ 0.001591] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.001617] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.003269] Disabling memory control group subsystem [ 0.003397] CPU: Testing write buffer coherency: ok [ 0.003886] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.005107] Setting up static identity map for 0x200000 - 0x20003c [ 0.005312] rcu: Hierarchical SRCU implementation. [ 0.006255] smp: Bringing up secondary CPUs ... [ 0.007485] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.008896] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002 [ 0.010229] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003 [ 0.010385] smp: Brought up 1 node, 4 CPUs [ 0.010407] SMP: Total of 4 processors activated (432.00 BogoMIPS). [ 0.010423] CPU: All CPU(s) started in HYP mode. [ 0.010436] CPU: Virtualization extensions available. [ 0.011407] devtmpfs: initialized [ 0.025703] VFP support v0.3: implementor 41 architecture 3 part 40 variant 8 rev 0 [ 0.025947] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.025977] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.033331] pinctrl core: initialized pinctrl subsystem [ 0.034468] NET: Registered protocol family 16 [ 0.038687] DMA: preallocated 1024 KiB pool for atomic coherent allocations [ 0.039484] audit: initializing netlink subsys (disabled) [ 0.039745] audit: type=2000 audit(0.030:1): state=initialized audit_enabled=0 res=1 [ 0.040328] thermal_sys: Registered thermal governor 'step_wise' [ 0.041163] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.041180] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.041596] Serial: AMBA PL011 UART driver [ 0.073842] bcm2835-mbox fe00b880.mailbox: mailbox enabled [ 0.090888] raspberrypi-firmware soc:firmware: Attached to firmware from 2021-05-27T14:02:15, variant start [ 0.100900] raspberrypi-firmware soc:firmware: Firmware hash is 7d9a298cda813f747b51fe17e1e417e7bf5ca94d [ 0.145729] bcm2835-dma fe007000.dma: DMA legacy API manager, dmachans=0x1 [ 0.149956] vgaarb: loaded [ 0.150416] SCSI subsystem initialized [ 0.150648] usbcore: registered new interface driver usbfs [ 0.150707] usbcore: registered new interface driver hub [ 0.150779] usbcore: registered new device driver usb [ 0.151489] usb_phy_generic phy: supply vcc not found, using dummy regulator [ 0.153561] clocksource: Switched to clocksource arch_sys_counter [ 1.153969] VFS: Disk quotas dquot_6.6.0 [ 1.154077] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 1.154264] FS-Cache: Loaded [ 1.154470] CacheFiles: Loaded [ 1.155544] simple-framebuffer 3e402000.framebuffer: framebuffer at 0x3e402000, 0x7f8000 bytes, mapped to 0x(ptrval) [ 1.155565] simple-framebuffer 3e402000.framebuffer: format=a8r8g8b8, mode=1920x1080x32, linelength=7680 [ 1.156063] Console: switching to colour frame buffer device 240x67 [ 1.166677] simple-framebuffer 3e402000.framebuffer: fb0: simplefb registered! [ 1.177209] NET: Registered protocol family 2 [ 1.178064] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 1.178108] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 1.178269] TCP bind hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 1.178345] TCP: Hash tables configured (established 8192 bind 8192) [ 1.178520] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.178558] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.178829] NET: Registered protocol family 1 [ 1.179581] RPC: Registered named UNIX socket transport module. [ 1.179597] RPC: Registered udp transport module. [ 1.179612] RPC: Registered tcp transport module. [ 1.179627] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.179650] PCI: CLS 0 bytes, default 64 [ 1.182749] Initialise system trusted keyrings [ 1.182997] workingset: timestamp_bits=14 max_order=21 bucket_order=7 [ 1.191748] zbud: loaded [ 1.193731] FS-Cache: Netfs 'nfs' registered for caching [ 1.194494] NFS: Registering the id_resolver key type [ 1.194535] Key type id_resolver registered [ 1.194551] Key type id_legacy registered [ 1.194693] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.195765] Key type asymmetric registered [ 1.195782] Asymmetric key parser 'x509' registered [ 1.195976] bounce: pool size: 64 pages [ 1.196024] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 1.196245] io scheduler mq-deadline registered [ 1.196262] io scheduler kyber registered [ 1.200846] brcm-pcie fd500000.pcie: host bridge /scb/pcie@7d500000 ranges: [ 1.200880] brcm-pcie fd500000.pcie: No bus range found for /scb/pcie@7d500000, using [bus 00-ff] [ 1.200961] brcm-pcie fd500000.pcie: MEM 0x0600000000..0x063fffffff -> 0x00c0000000 [ 1.201048] brcm-pcie fd500000.pcie: IB MEM 0x0000000000..0x00bfffffff -> 0x0400000000 [ 1.285668] brcm-pcie fd500000.pcie: link up, 5.0 GT/s PCIe x1 (SSC) [ 1.286066] brcm-pcie fd500000.pcie: PCI host bridge to bus 0000:00 [ 1.286087] pci_bus 0000:00: root bus resource [bus 00-ff] [ 1.286109] pci_bus 0000:00: root bus resource [mem 0x600000000-0x63fffffff] (bus address [0xc0000000-0xffffffff]) [ 1.286200] pci 0000:00:00.0: [14e4:2711] type 01 class 0x060400 [ 1.286446] pci 0000:00:00.0: PME# supported from D0 D3hot [ 1.289968] PCI: bus0: Fast back to back transfers disabled [ 1.290307] pci 0000:01:00.0: [1106:3483] type 00 class 0x0c0330 [ 1.290434] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit] [ 1.290869] pci 0000:01:00.0: PME# supported from D0 D3hot [ 1.294388] PCI: bus1: Fast back to back transfers disabled [ 1.294454] pci 0000:00:00.0: BAR 8: assigned [mem 0x600000000-0x6000fffff] [ 1.294478] pci 0000:01:00.0: BAR 0: assigned [mem 0x600000000-0x600000fff 64bit] [ 1.294561] pci 0000:00:00.0: PCI bridge to [bus 01] [ 1.294586] pci 0000:00:00.0: bridge window [mem 0x600000000-0x6000fffff] [ 1.295020] pcieport 0000:00:00.0: enabling device (0140 -> 0142) [ 1.295255] pcieport 0000:00:00.0: PME: Signaling with IRQ 62 [ 1.303896] iproc-rng200 fe104000.rng: hwrng registered [ 1.304211] vc-mem: phys_addr:0x00000000 mem_base=0x3ec00000 mem_size:0x40000000(1024 MiB) [ 1.305103] gpiomem-bcm2835 fe200000.gpiomem: Initialised: Registers at 0xfe200000 [ 1.317620] brd: module loaded [ 1.330309] loop: module loaded [ 1.332046] Loading iSCSI transport class v2.0-870. [ 1.334619] libphy: Fixed MDIO Bus: probed [ 1.336343] bcmgenet fd580000.ethernet: GENET 5.0 EPHY: 0x0000 [ 1.353606] libphy: bcmgenet MII bus: probed [ 1.443710] unimac-mdio unimac-mdio.-19: Broadcom UniMAC MDIO bus [ 1.444935] usbcore: registered new interface driver r8152 [ 1.445009] usbcore: registered new interface driver lan78xx [ 1.445071] usbcore: registered new interface driver smsc95xx [ 1.497227] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 1.497264] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1 [ 1.500497] xhci_hcd 0000:01:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000030000000890 [ 1.501808] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 1.501828] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.501845] usb usb1: Product: xHCI Host Controller [ 1.501862] usb usb1: Manufacturer: Linux 5.10.17-v7l+ xhci-hcd [ 1.501878] usb usb1: SerialNumber: 0000:01:00.0 [ 1.502649] hub 1-0:1.0: USB hub found [ 1.502767] hub 1-0:1.0: 1 port detected [ 1.503447] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 1.503486] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2 [ 1.503514] xhci_hcd 0000:01:00.0: Host supports USB 3.0 SuperSpeed [ 1.504063] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 1.504081] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.504099] usb usb2: Product: xHCI Host Controller [ 1.504116] usb usb2: Manufacturer: Linux 5.10.17-v7l+ xhci-hcd [ 1.504132] usb usb2: SerialNumber: 0000:01:00.0 [ 1.504850] hub 2-0:1.0: USB hub found [ 1.504926] hub 2-0:1.0: 4 ports detected [ 1.506630] dwc_otg: version 3.00a 10-AUG-2012 (platform bus) [ 1.506943] dwc_otg: FIQ enabled [ 1.506958] dwc_otg: NAK holdoff enabled [ 1.506972] dwc_otg: FIQ split-transaction FSM enabled [ 1.506990] Module dwc_common_port init [ 1.507441] usbcore: registered new interface driver uas [ 1.507548] usbcore: registered new interface driver usb-storage [ 1.507745] mousedev: PS/2 mouse device common for all mice [ 1.509499] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer [ 1.513074] sdhci: Secure Digital Host Controller Interface driver [ 1.513091] sdhci: Copyright(c) Pierre Ossman [ 1.513850] mmc-bcm2835 fe300000.mmcnr: could not get clk, deferring probe [ 1.514508] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.518707] ledtrig-cpu: registered to indicate activity on CPUs [ 1.519069] hid: raw HID events driver (C) Jiri Kosina [ 1.519269] usbcore: registered new interface driver usbhid [ 1.519284] usbhid: USB HID core driver [ 1.525318] Initializing XFRM netlink socket [ 1.525362] NET: Registered protocol family 17 [ 1.525489] Key type dns_resolver registered [ 1.525951] Registering SWP/SWPB emulation handler [ 1.526142] registered taskstats version 1 [ 1.526170] Loading compiled-in X.509 certificates [ 1.527051] Key type ._fscrypt registered [ 1.527069] Key type .fscrypt registered [ 1.527085] Key type fscrypt-provisioning registered [ 1.538807] uart-pl011 fe201000.serial: there is not valid maps for state default [ 1.539116] uart-pl011 fe201000.serial: cts_event_workaround enabled [ 1.539215] fe201000.serial: ttyAMA0 at MMIO 0xfe201000 (irq = 36, base_baud = 0) is a PL011 rev2 [ 1.546022] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver [ 1.547103] mmc-bcm2835 fe300000.mmcnr: mmc_debug:0 mmc_debug2:0 [ 1.547121] mmc-bcm2835 fe300000.mmcnr: DMA channel allocated [ 1.577543] of_cfs_init [ 1.577819] of_cfs_init: OK [ 1.596730] mmc1: queuing unknown CIS tuple 0x80 (2 bytes) [ 1.598418] mmc1: queuing unknown CIS tuple 0x80 (3 bytes) [ 1.600102] mmc1: queuing unknown CIS tuple 0x80 (3 bytes) [ 1.603132] mmc1: queuing unknown CIS tuple 0x80 (7 bytes) [ 1.604853] mmc1: queuing unknown CIS tuple 0x80 (3 bytes) [ 1.612992] mmc0: SDHCI controller on fe340000.emmc2 [fe340000.emmc2] using ADMA [ 1.614033] Waiting for root device PARTUUID=0ce58e3c-02... [ 1.653573] random: fast init done [ 1.690357] mmc1: new high speed SDIO card at address 0001 [ 1.721270] mmc0: new ultra high speed DDR50 SDXC card at address e624 [ 1.722231] mmcblk0: mmc0:e624 SD128 119 GiB [ 1.724277] mmcblk0: p1 p2 [ 1.742693] EXT4-fs (mmcblk0p2): INFO: recovery required on readonly filesystem [ 1.742711] EXT4-fs (mmcblk0p2): write access will be enabled during recovery [ 1.863624] usb 1-1: new high-speed USB device number 2 using xhci_hcd [ 1.953955] EXT4-fs (mmcblk0p2): recovery complete [ 1.955976] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null) [ 1.956078] VFS: Mounted root (ext4 filesystem) readonly on device 179:2. [ 1.956862] devtmpfs: mounted [ 1.965889] Freeing unused kernel memory: 2048K [ 1.966221] Run /sbin/init as init process [ 1.966235] with arguments: [ 1.966250] /sbin/init [ 1.966264] splash [ 1.966278] with environment: [ 1.966292] HOME=/ [ 1.966306] TERM=linux [ 2.066331] usb 1-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.21 [ 2.066353] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 2.066372] usb 1-1: Product: USB2.0 Hub [ 2.069028] hub 1-1:1.0: USB hub found [ 2.069367] hub 1-1:1.0: 4 ports detected [ 2.360129] systemd[1]: System time before build time, advancing clock. [ 2.423658] usb 1-1.3: new low-speed USB device number 3 using xhci_hcd [ 2.467159] NET: Registered protocol family 10 [ 2.468657] Segment Routing with IPv6 [ 2.530383] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ 2.532010] systemd[1]: Detected architecture arm. [ 2.582587] usb 1-1.3: New USB device found, idVendor=1c4f, idProduct=0002, bcdDevice= 3.30 [ 2.582611] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.582628] usb 1-1.3: Product: USB Keyboard [ 2.582645] usb 1-1.3: Manufacturer: SIGMACHIP [ 2.594306] input: SIGMACHIP USB Keyboard 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:1C4F:0002.0001/input/input0 [ 2.635488] systemd[1]: Set hostname to.
[ 2.674465] hid-generic 0003:1C4F:0002.0001: input,hidraw0: USB HID v1.10 Keyboard [SIGMACHIP USB Keyboard] on usb-0000:01:00.0-1.3/input0
[ 2.682632] input: SIGMACHIP 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.3/1-1.3:1.1/0003:1C4F:0002.0002/input/input1
[ 2.744250] input: SIGMACHIP 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.3/1-1.3:1.1/0003:1C4F:0002.0002/input/input2
[ 2.744677] hid-generic 0003:1C4F:0002.0002: input,hidraw1: USB HID v1.10 Device [SIGMACHIP USB Keyboard] on usb-0000:01:00.0-1.3/input1
[ 2.843718] usb 1-1.4: new low-speed USB device number 4 using xhci_hcd
[ 2.982955] usb 1-1.4: New USB device found, idVendor=045e, idProduct=0084, bcdDevice= 0.00
[ 2.982982] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.983001] usb 1-1.4: Product: Basic Optical Mouse
[ 2.983018] usb 1-1.4: Manufacturer: Microsoft
[ 2.994592] input: Microsoft Basic Optical Mouse 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:045E:0084.0003/input/input3
[ 2.995125] hid-generic 0003:045E:0084.0003: input,hidraw2: USB HID v1.10 Mouse [Microsoft Basic Optical Mouse] on usb-0000:01:00.0-1.4/input0
[ 3.306939] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.318297] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.319078] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.319436] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.319813] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 3.320247] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.320964] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 3.323257] systemd[1]: Created slice User and Session Slice.
[ 3.324417] systemd[1]: Listening on Journal Audit Socket.
[ 3.325126] systemd[1]: Listening on Syslog Socket.
[ 3.533058] i2c /dev entries driver
[ 4.098912] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[ 4.217692] systemd-journald[107]: Received request to flush runtime journal from PID 1
[ 4.841250] rpivid-mem feb00000.hevc-decoder: rpivid-hevcmem initialised: Registers at 0xfeb00000 length 0x00010000
[ 4.859833] rpivid-mem feb10000.rpivid-local-intc: rpivid-intcmem initialised: Registers at 0xfeb10000 length 0x00001000
[ 4.864084] rpivid-mem feb20000.h264-decoder: rpivid-h264mem initialised: Registers at 0xfeb20000 length 0x00010000
[ 4.864797] rpivid-mem feb30000.vp9-decoder: rpivid-vp9mem initialised: Registers at 0xfeb30000 length 0x00010000
[ 4.965162] vc_sm_cma: module is from the staging directory, the quality is unknown, you have been warned.
[ 4.967464] bcm2835_vc_sm_cma_probe: Videocore shared memory driver
[ 4.981069] mc: Linux media interface: v0.10 [ 4.995168] snd_bcm2835: module is from the staging directory, the quality is unknown, you have been warned. [ 5.021336] videodev: Linux video capture interface: v2.00 [ 5.024358] [vc_sm_connected_init]: installed successfully [ 5.057027] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned. [ 5.079552] bcm2835_v4l2: module is from the staging directory, the quality is unknown, you have been warned. [ 5.081402] bcm2835_codec: module is from the staging directory, the quality is unknown, you have been warned. [ 5.084171] bcm2835_isp: module is from the staging directory, the quality is unknown, you have been warned. [ 5.102036] bcm2835_audio bcm2835_audio: card created with 4 channels [ 5.111588] bcm2835-codec bcm2835-codec: Device registered as /dev/video10 [ 5.111638] bcm2835-codec bcm2835-codec: Loaded V4L2 decode [ 5.131392] bcm2835-codec bcm2835-codec: Device registered as /dev/video11 [ 5.131445] bcm2835-codec bcm2835-codec: Loaded V4L2 encode [ 5.140831] bcm2835_audio bcm2835_audio: card created with 4 channels [ 5.142642] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video13 [ 5.143124] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video14 [ 5.143584] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video15 [ 5.143929] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video16 [ 5.143960] bcm2835-isp bcm2835-isp: Register output node 0 with media controller [ 5.143988] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller [ 5.144011] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller [ 5.144047] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller [ 5.144248] bcm2835-isp bcm2835-isp: Loaded V4L2 bcm2835-isp [ 5.152805] bcm2835-codec bcm2835-codec: Device registered as /dev/video12 [ 5.152856] bcm2835-codec bcm2835-codec: Loaded V4L2 isp [ 5.355081] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 5.479391] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 5.530836] vc4-drm gpu: bound fe600000.firmwarekms (ops vc4_fkms_ops [vc4]) [ 5.530867] checking generic (3e402000 7f8000) vs hw (0 ffffffffffffffff) [ 5.530885] fb0: switching to vc4drmfb from simple [ 5.553400] brcmfmac: F1 signature read @0x18000000=0x15264345 [ 5.561194] Console: switching to colour dummy device 80x30 [ 5.564525] [drm] Initialized vc4 0.0.0 20140616 for gpu on minor 0 [ 5.569070] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6 [ 5.570924] usbcore: registered new interface driver brcmfmac [ 5.653212] brcmfmac mmc1:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.txt failed with error -2 [ 5.766910] Console: switching to colour frame buffer device 240x67 [ 5.793721] vc4-drm gpu: [drm] fb0: vc4drmfb frame buffer device [ 5.806169] [drm] Initialized v3d 1.0.0 20180419 for fec00000.v3d on minor 1 [ 5.928661] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6 [ 5.939174] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/6 wl0: Jan 4 2021 19:56:29 version 7.45.229 (617f1f5 CY) FWID 01-2dbd9d2e [ 7.550423] 8021q: 802.1Q VLAN Support v1.8 [ 7.725894] uart-pl011 fe201000.serial: no DMA platform data [ 7.747307] random: crng init done [ 7.747336] random: 7 urandom warning(s) missed due to ratelimiting [ 8.083837] Adding 102396k swap on /var/swap. Priority:-2 extents:1 across:102396k SSFS [ 8.138890] brcmfmac: brcmf_cfg80211_set_power_mgmt: power save enabled [ 8.555914] bcmgenet fd580000.ethernet: configuring instance for external RGMII (RX delay) [ 8.556424] bcmgenet fd580000.ethernet eth0: Link is Down [ 10.195163] broken atomic modeset userspace detected, disabling atomic [ 12.713841] bcmgenet fd580000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 12.713885] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 12.909288] fuse: init (API version 7.32) [ 14.315818] ICMPv6: process `dhcpcd' is using deprecated sysctl (syscall) net.ipv6.neigh.eth0.retrans_time - use net.ipv6.neigh.eth0.retrans_time_ms instead [ 14.740600] Bluetooth: Core ver 2.22 [ 14.740672] NET: Registered protocol family 31 [ 14.740678] Bluetooth: HCI device and connection manager initialized [ 14.740695] Bluetooth: HCI socket layer initialized [ 14.740706] Bluetooth: L2CAP socket layer initialized [ 14.740724] Bluetooth: SCO socket layer initialized [ 14.751840] Bluetooth: HCI UART driver ver 2.3 [ 14.751854] Bluetooth: HCI UART protocol H4 registered [ 14.751924] Bluetooth: HCI UART protocol Three-wire (H5) registered [ 14.752091] Bluetooth: HCI UART protocol Broadcom registered [ 14.999336] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 14.999347] Bluetooth: BNEP filters: protocol multicast [ 14.999363] Bluetooth: BNEP socket layer initialized [ 15.058570] Bluetooth: RFCOMM TTY layer initialized [ 15.058590] Bluetooth: RFCOMM socket layer initialized [ 15.058613] Bluetooth: RFCOMM ver 1.11 [ 101.806545] v3d fec00000.v3d: MMU error from client L2T (0) at 0x10e1000, pte invalid