Seeed-Studio / seeed-linux-dtoverlays

Device Tree Overlays for Seeed boards
Other
82 stars 54 forks source link

[reTerminal DM] Build error with kernel 6.6.20-1+rpt1 #92

Closed matsujirushi closed 6 months ago

matsujirushi commented 6 months ago

Reprocedure

  1. Flash 2024-03-12-raspios-bookworm-arm64.img to reTerminal DM.
  2. Install reTerminal drivers after flashing new Raspbian OS (here)
    git clone https://github.com/Seeed-Studio/seeed-linux-dtoverlays
    cd seeed-linux-dtoverlays
    sudo ./scripts/reTerminal.sh --device reTerminal-plus

Error message

make -j4 KERNELRELEASE=6.6.20+rpt-rpi-v8 all KVERSION=6.6.20+rpt-rpi-v8....(bad exit status: 2)
Error! Bad return status for module build on kernel: 6.6.20+rpt-rpi-v8 (aarch64)
Consult /var/lib/dkms/ch34x/0.1/build/make.log for more information.
Can't compile with this kernel, aborting
Please try to compile with the option --compat-kernel
DKMS make.log for ch34x-0.1 for kernel 6.6.20+rpt-rpi-v8 (aarch64)
Fri 15 Mar 13:15:26 JST 2024
make -C /lib/modules/6.6.20+rpt-rpi-v8/build M=/var/lib/dkms/ch34x/0.1/build modules
make[1]: Entering directory '/usr/src/linux-headers-6.6.20+rpt-rpi-v8'
  CC [M]  /var/lib/dkms/ch34x/0.1/build/ch343.o
/var/lib/dkms/ch34x/0.1/build/ch343.c:1811:18: error: initialization of ‘ssize_t (*)(struct tty_struct *, const u8 *, size_t)’ {aka ‘long int (*)(struct tty_struct *, const unsigned char *, long unsigned int)’} from incompatible pointer type ‘int (*)(struct tty_struct *, const u8 *, size_t)’ {aka ‘int (*)(struct tty_struct *, const unsigned char *, long unsigned int)’} [-Werror=incompatible-pointer-types]
 1811 |         .write = ch343_tty_write,
      |                  ^~~~~~~~~~~~~~~
/var/lib/dkms/ch34x/0.1/build/ch343.c:1811:18: note: (near initialization for ‘ch343_ops.write’)
cc1: some warnings being treated as errors
make[3]: *** [/usr/src/linux-headers-6.6.20+rpt-common-rpi/scripts/Makefile.build:248: /var/lib/dkms/ch34x/0.1/build/ch343.o] Error 1
make[2]: *** [/usr/src/linux-headers-6.6.20+rpt-common-rpi/Makefile:1938: /var/lib/dkms/ch34x/0.1/build] Error 2
make[1]: *** [/usr/src/linux-headers-6.6.20+rpt-common-rpi/Makefile:246: __sub-make] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-6.6.20+rpt-rpi-v8'
make: *** [Makefile:13: all] Error 2

seeed-linux-dtoverlays

commit 78ed7e7d2e3df8b6369a38ae655242b3fef737c8 (HEAD -> master, origin/master, origin/HEAD)
Merge: 4ff45a3 d6a2043
Author: bigbearishappy <953308023@qq.com>
Date:   Thu Mar 14 10:35:00 2024 +0000

    Merge remote-tracking branch 'upstream/master'
kustere commented 6 months ago

yup have the same issue. Was trying to reinstall after latest update to 6.2.20 and after update display no longer turns on for the ReTerminal DM. Keen to know of a fix.

kustere commented 6 months ago

It appears to be the wrong variable type on Line 731 to ch343.c

According to this: https://github.com/WCHSoftGroup/ch343ser_linux/blob/main/driver/ch343.c

the line 731 should be static ssize_t ch343_tty_write(struct tty_struct *tty, const u8 *buf, size_t count);

instead of the current: static int ch343_tty_write(struct tty_struct *tty, const u8 *buf, size_t count)

therefore ssize_t rather than int

I am no c coder just doing some basic pattern matching here. Not sure if there is additional items as I notice also that the number of lines in the original linked above is different to the one in this library.

kustere commented 6 months ago

Although I was able to get the scripts to compile and run this still does not fix the screen issue on the reTerminal DM running 6.2.20 kernel :(

bigbearishappy commented 6 months ago

Fix commit is here.

bigbearishappy commented 6 months ago

Although I was able to get the scripts to compile and run this still does not fix the screen issue on the reTerminal DM running 6.2.20 kernel :(

Can you provide the detail of your problem and open a new issue? Thank you~

matsujirushi commented 6 months ago

Hi @bigbearishappy ,

I have tried the latest drivers. The build error is fixed, but screen is not displayed. It appears that there is an error in the backlight.

Are you able to display screen there?

dmesg

[    2.813589] OF: /lcd_backlight: #pwm-cells = 3 found 2
[    2.813630] of_pwm_get(): can't parse "pwms" property
[    2.813643] pwm-backlight lcd_backlight: unable to request PWM
[    2.813654] pwm-backlight: probe of lcd_backlight failed with error -22

dmesg.txt

matsujirushi commented 6 months ago

Info.

pwm-bcm2835 supports PWM polarity https://github.com/raspberrypi/linux/commit/81b875892022181d1d8f9a04416403b307b66754

Testing

With the following modifications, the LCD is now displayed.

image

bigbearishappy commented 6 months ago

Info.

pwm-bcm2835 supports PWM polarity raspberrypi/linux@81b8758

Testing

With the following modifications, the LCD is now displayed.

image

Actually, I don't try it. Can you push your fix of this problem to us?

matsujirushi commented 6 months ago

Hi @bigbearishappy ,

I think you need to determine the kernel version in the install script and switch the device tree overlay. Since reTerminal.sh is complicated, I would like to see this part addressed there.

bigbearishappy commented 6 months ago

Hi @bigbearishappy ,

I think you need to determine the kernel version in the install script and switch the device tree overlay. Since reTerminal.sh is complicated, I would like to see this part addressed there.

I think we can have a try on passing a parameter to the dtoverlay of reTerminal-plus. Just like the code in here. And then config the dtoverlay with different raspbian OS version in reTerminal.sh.

TB-archIT commented 6 months ago

Stucking with the same error here...

dmesg | grep lcd
[    0.040372] OF: /lcd_backlight: #pwm-cells = 3 found 2
[    2.597359] OF: /lcd_backlight: #pwm-cells = 3 found 2
[    2.597408] pwm-backlight lcd_backlight: unable to request PWM
[    2.597419] pwm-backlight: probe of lcd_backlight failed with error -22

Is there something for testing already?

matsujirushi commented 6 months ago

Hi @TB-archIT ,

Is there something for testing already?

Try manually rewriting reTerminal-plus-overlay.dts and re-running reTerminal.sh. See here.

TB-archIT commented 6 months ago

Thx, is working again.

kustere commented 6 months ago

this seems to fix the ability to connect remotely to the display via RealVNC but does not power on the backlight for me so the actual physical display still remains black. I can see that the touchscreen is still active though as I can see the mouse move through the VNC session now.

Here is the output from dmesg:

``` kustere@eggpi:~ $ dmesg [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd083] [ 0.000000] Linux version 6.6.20+rpt-rpi-v8 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT Debian 1:6.6.20-1+rpt1 (2024-03-07) [ 0.000000] KASLR enabled [ 0.000000] random: crng init done [ 0.000000] Machine model: Raspberry Pi Compute Module 4 Rev 1.1 [ 0.000000] efi: UEFI not found. [ 0.000000] Reserved memory: created CMA memory pool at 0x000000000dc00000, size 512 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000000dc00000..0x000000002dbfffff (524288 KiB) map reusable linux,cma [ 0.000000] OF: reserved mem: 0x000000003ef642c0..0x000000003ef646bf (1 KiB) nomap non-reusable nvram@1 [ 0.000000] OF: reserved mem: 0x000000003ef64700..0x000000003ef6489d (0 KiB) nomap non-reusable nvram@0 [ 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-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, zone DMA32: 19456 pages in unavailable ranges [ 0.000000] On node 0, zone Normal: 16384 pages in unavailable ranges [ 0.000000] percpu: Embedded 30 pages/cpu s85672 r8192 d29016 u122880 [ 0.000000] pcpu-alloc: s85672 r8192 d29016 u122880 alloc=30*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: Spectre-v2 [ 0.000000] CPU features: detected: Spectre-v3a [ 0.000000] CPU features: detected: Spectre-v4 [ 0.000000] CPU features: detected: Spectre-BHB [ 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: ARM erratum 1742098 [ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923 [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: coherent_pool=1M 8250.nr_uarts=1 snd_bcm2835.enable_headphones=0 snd_bcm2835.enable_hdmi=1 snd_bcm2835.enable_hdmi=0 snd_bcm2835.enable_hdmi=0 snd_bcm2835.enable_hdmi=0 smsc95xx.macaddr=E4:5F:01:F3:B4:CB vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000 console=tty1 root=PARTUUID=3632e9ab-02 rootfstype=ext4 fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles systemd.unified_cgroup_hierarchy=false apparmor=1 security=apparmor cfg80211.ieee80211_regdom=AU logo.nologo vt.global_cursor_default=0 console=tty3 loglevel=0 [ 0.000000] Unknown kernel command line parameters "splash", will be passed to user space. [ 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] Built 1 zonelists, mobility grouping on. Total pages: 2028848 [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.000000] software IO TLB: area num 4. [ 0.000000] software IO TLB: mapped [mem 0x0000000037400000-0x000000003b400000] (64MB) [ 0.000000] Memory: 7451552K/8245248K available (13376K kernel code, 2210K rwdata, 4260K rodata, 4864K init, 1083K bss, 269408K reserved, 524288K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] ftrace: allocating 43116 entries in 169 pages [ 0.000000] ftrace: allocated 169 pages with 4 groups [ 0.000000] trace event string verifier disabled [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU event tracing is enabled. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 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] Root IRQ handler: gic_handle_irq [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 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.000000] sched_clock: 56 bits at 54MHz, resolution 18ns, wraps every 4398046511102ns [ 0.000324] Console: colour dummy device 80x25 [ 0.000339] printk: console [tty1] enabled [ 0.000438] Calibrating delay loop (skipped), value calculated using timer frequency.. 108.00 BogoMIPS (lpj=216000) [ 0.000455] pid_max: default: 32768 minimum: 301 [ 0.000529] LSM: initializing lsm=capability,apparmor,integrity [ 0.000632] AppArmor: AppArmor initialized [ 0.000844] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.000932] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.001767] cgroup: Disabling memory control group subsystem [ 0.003296] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.003398] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.003513] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.003756] rcu: Hierarchical SRCU implementation. [ 0.003764] rcu: Max phase no-delay instances is 1000. [ 0.005910] EFI services will not be available. [ 0.006216] smp: Bringing up secondary CPUs ... [ 0.006793] Detected PIPT I-cache on CPU1 [ 0.006911] CPU1: Booted secondary processor 0x0000000001 [0x410fd083] [ 0.007557] Detected PIPT I-cache on CPU2 [ 0.007646] CPU2: Booted secondary processor 0x0000000002 [0x410fd083] [ 0.008326] Detected PIPT I-cache on CPU3 [ 0.008420] CPU3: Booted secondary processor 0x0000000003 [0x410fd083] [ 0.008513] smp: Brought up 1 node, 4 CPUs [ 0.008530] SMP: Total of 4 processors activated. [ 0.008539] CPU features: detected: 32-bit EL0 Support [ 0.008544] CPU features: detected: 32-bit EL1 Support [ 0.008553] CPU features: detected: CRC32 instructions [ 0.008652] CPU: All CPU(s) started at EL2 [ 0.008668] alternatives: applying system-wide alternatives [ 0.011113] devtmpfs: initialized [ 0.022014] Enabled cp15_barrier support [ 0.022044] Enabled setend support [ 0.022199] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.022221] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.033967] pinctrl core: initialized pinctrl subsystem [ 0.034488] DMI not present or invalid. [ 0.034965] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.036862] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations [ 0.037119] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.037543] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.037590] audit: initializing netlink subsys (disabled) [ 0.037762] audit: type=2000 audit(0.036:1): state=initialized audit_enabled=0 res=1 [ 0.038267] thermal_sys: Registered thermal governor 'step_wise' [ 0.038317] cpuidle: using governor menu [ 0.038582] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.038693] ASID allocator initialised with 32768 entries [ 0.039790] Serial: AMBA PL011 UART driver [ 0.048508] platform fe101000.cprman: Fixed dependency cycle(s) with /soc/dsi@7e700000 [ 0.049103] bcm2835-mbox fe00b880.mailbox: mailbox enabled [ 0.051686] platform fe101000.cprman: Fixed dependency cycle(s) with /soc/dsi@7e700000 [ 0.051766] platform fe700000.dsi: Fixed dependency cycle(s) with /soc/cprman@7e101000 [ 0.064115] raspberrypi-firmware soc:firmware: Attached to firmware from 2024-02-29T12:24:53, variant start [ 0.068126] raspberrypi-firmware soc:firmware: Firmware hash is f4e2138c2adc8f3a92a3a65939e458f11d7298ba [ 0.078945] Modules: 2G module region forced by RANDOMIZE_MODULE_REGION_FULL [ 0.078960] Modules: 0 pages in range for non-PLT usage [ 0.078966] Modules: 517792 pages in range for PLT usage [ 0.082152] bcm2835-dma fe007000.dma-controller: DMA legacy API manager, dmachans=0x1 [ 0.083894] iommu: Default domain type: Translated [ 0.083904] iommu: DMA domain TLB invalidation policy: strict mode [ 0.084246] SCSI subsystem initialized [ 0.084410] usbcore: registered new interface driver usbfs [ 0.084445] usbcore: registered new interface driver hub [ 0.084490] usbcore: registered new device driver usb [ 0.086148] pps_core: LinuxPPS API ver. 1 registered [ 0.086160] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti [ 0.086177] PTP clock support registered [ 0.087183] vgaarb: loaded [ 0.087652] clocksource: Switched to clocksource arch_sys_counter [ 1.179459] VFS: Disk quotas dquot_6.6.0 [ 1.179515] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.179620] FS-Cache: Loaded [ 1.179897] CacheFiles: Loaded [ 1.180333] AppArmor: AppArmor Filesystem Enabled [ 1.187629] NET: Registered PF_INET protocol family [ 1.188358] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 1.197010] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 1.197103] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.197129] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 1.197480] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) [ 1.199978] TCP: Hash tables configured (established 65536 bind 65536) [ 1.200466] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear) [ 1.200767] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 1.200858] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 1.201116] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.201676] RPC: Registered named UNIX socket transport module. [ 1.201688] RPC: Registered udp transport module. [ 1.201694] RPC: Registered tcp transport module. [ 1.201700] RPC: Registered tcp-with-tls transport module. [ 1.201706] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.201732] PCI: CLS 0 bytes, default 64 [ 1.202290] kvm [1]: IPA Size Limit: 44 bits [ 1.202452] Trying to unpack rootfs image as initramfs... [ 1.203500] kvm [1]: vgic interrupt IRQ9 [ 1.203543] kvm [1]: Hyp mode initialized successfully [ 1.205094] Initialise system trusted keyrings [ 1.205386] workingset: timestamp_bits=46 max_order=21 bucket_order=0 [ 1.205443] zbud: loaded [ 1.206118] NFS: Registering the id_resolver key type [ 1.206148] Key type id_resolver registered [ 1.206155] Key type id_legacy registered [ 1.206177] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.206186] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 1.206829] Key type asymmetric registered [ 1.206845] Asymmetric key parser 'x509' registered [ 1.206895] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 1.207077] io scheduler mq-deadline registered [ 1.207090] io scheduler kyber registered [ 1.207131] io scheduler bfq registered [ 1.216507] irq_brcmstb_l2: registered L2 intc (/soc/interrupt-controller@7ef00100, parent irq: 23) [ 1.229155] brcm-pcie fd500000.pcie: host bridge /scb/pcie@7d500000 ranges: [ 1.229196] brcm-pcie fd500000.pcie: No bus range found for /scb/pcie@7d500000, using [bus 00-ff] [ 1.229240] brcm-pcie fd500000.pcie: MEM 0x0600000000..0x063fffffff -> 0x00c0000000 [ 1.229277] brcm-pcie fd500000.pcie: IB MEM 0x0000000000..0x01ffffffff -> 0x0400000000 [ 1.230500] brcm-pcie fd500000.pcie: PCI host bridge to bus 0000:00 [ 1.230525] pci_bus 0000:00: root bus resource [bus 00-ff] [ 1.230541] pci_bus 0000:00: root bus resource [mem 0x600000000-0x63fffffff] (bus address [0xc0000000-0xffffffff]) [ 1.230588] pci 0000:00:00.0: [14e4:2711] type 01 class 0x060400 [ 1.230678] pci 0000:00:00.0: PME# supported from D0 D3hot [ 1.235187] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 1.235401] pci_bus 0000:01: supply vpcie3v3 not found, using dummy regulator [ 1.235559] pci_bus 0000:01: supply vpcie3v3aux not found, using dummy regulator [ 1.235616] pci_bus 0000:01: supply vpcie12v not found, using dummy regulator [ 1.667720] brcm-pcie fd500000.pcie: link down [ 1.668045] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 1.668082] pci 0000:00:00.0: PCI bridge to [bus 01] [ 1.668587] pcieport 0000:00:00.0: PME: Signaling with IRQ 27 [ 1.668981] pcieport 0000:00:00.0: AER: enabled with IRQ 27 [ 1.669443] pci_bus 0000:01: busn_res: [bus 01] is released [ 1.670198] pci_bus 0000:00: busn_res: [bus 00-ff] is released [ 1.676760] Serial: 8250/16550 driver, 1 ports, IRQ sharing enabled [ 1.679152] iproc-rng200 fe104000.rng: hwrng registered [ 1.679482] vc-mem: phys_addr:0x00000000 mem_base=0x3ec00000 mem_size:0x40000000(1024 MiB) [ 1.691111] brd: module loaded [ 1.697860] loop: module loaded [ 1.698504] Loading iSCSI transport class v2.0-870. [ 1.702926] bcmgenet fd580000.ethernet: GENET 5.0 EPHY: 0x0000 [ 1.946065] Freeing initrd memory: 16724K [ 2.111733] unimac-mdio unimac-mdio.-19: Broadcom UniMAC MDIO bus [ 2.112774] usbcore: registered new device driver r8152-cfgselector [ 2.112811] usbcore: registered new interface driver r8152 [ 2.112844] usbcore: registered new interface driver lan78xx [ 2.112879] usbcore: registered new interface driver smsc95xx [ 2.138520] xhci-hcd fe9c0000.xhci: xHCI Host Controller [ 2.138549] xhci-hcd fe9c0000.xhci: new USB bus registered, assigned bus number 1 [ 2.138753] xhci-hcd fe9c0000.xhci: USB3 root hub has no ports [ 2.138765] xhci-hcd fe9c0000.xhci: hcc params 0x0220fe65 hci version 0x110 quirks 0x0000000000000010 [ 2.138826] xhci-hcd fe9c0000.xhci: irq 30, io mem 0xfe9c0000 [ 2.139139] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06 [ 2.139156] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.139168] usb usb1: Product: xHCI Host Controller [ 2.139177] usb usb1: Manufacturer: Linux 6.6.20+rpt-rpi-v8 xhci-hcd [ 2.139186] usb usb1: SerialNumber: fe9c0000.xhci [ 2.139722] hub 1-0:1.0: USB hub found [ 2.139776] hub 1-0:1.0: 1 port detected [ 2.140230] dwc_otg: version 3.00a 10-AUG-2012 (platform bus) [ 2.140374] dwc_otg: FIQ enabled [ 2.140381] dwc_otg: NAK holdoff enabled [ 2.140387] dwc_otg: FIQ split-transaction FSM enabled [ 2.140397] Module dwc_common_port init [ 2.141085] usbcore: registered new interface driver uas [ 2.141134] usbcore: registered new interface driver usb-storage [ 2.141636] mousedev: PS/2 mouse device common for all mice [ 2.144964] sdhci: Secure Digital Host Controller Interface driver [ 2.144977] sdhci: Copyright(c) Pierre Ossman [ 2.145229] sdhci-pltfm: SDHCI platform and OF driver helper [ 2.146131] ledtrig-cpu: registered to indicate activity on CPUs [ 2.146340] hid: raw HID events driver (C) Jiri Kosina [ 2.146425] usbcore: registered new interface driver usbhid [ 2.146433] usbhid: USB HID core driver [ 2.146572] bcm2835_vchiq fe00b840.mailbox: there is not valid maps for state default [ 2.152115] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available [ 2.152646] NET: Registered PF_PACKET protocol family [ 2.152726] Key type dns_resolver registered [ 2.176352] registered taskstats version 1 [ 2.176540] Loading compiled-in X.509 certificates [ 2.185809] Key type .fscrypt registered [ 2.185826] Key type fscrypt-provisioning registered [ 2.185918] AppArmor: AppArmor sha1 policy hashing enabled [ 2.193201] uart-pl011 fe201000.serial: there is not valid maps for state default [ 2.193570] uart-pl011 fe201000.serial: cts_event_workaround enabled [ 2.193898] fe201000.serial: ttyAMA1 at MMIO 0xfe201000 (irq = 36, base_baud = 0) is a PL011 rev2 [ 2.194124] serial serial0: tty port ttyAMA1 registered [ 2.195823] bcm2835-aux-uart fe215040.serial: there is not valid maps for state default [ 2.196927] fe215040.serial: ttyS0 at MMIO 0xfe215040 (irq = 37, base_baud = 62500000) is a 16550 [ 2.197897] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer [ 2.198140] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver [ 2.199018] mmc-bcm2835 fe300000.mmcnr: mmc_debug:0 mmc_debug2:0 [ 2.199035] mmc-bcm2835 fe300000.mmcnr: DMA channel allocated [ 2.226968] of_cfs_init [ 2.227064] of_cfs_init: OK [ 2.227248] clk: Disabling unused clocks [ 2.264790] mmc0: SDHCI controller on fe340000.mmc [fe340000.mmc] using ADMA [ 2.274163] Freeing unused kernel memory: 4864K [ 2.274404] Run /init as init process [ 2.274412] with arguments: [ 2.274417] /init [ 2.274422] splash [ 2.274428] with environment: [ 2.274433] HOME=/ [ 2.274438] TERM=linux [ 2.314648] mmc1: new high speed SDIO card at address 0001 [ 2.323512] mmc0: new DDR MMC card at address 0001 [ 2.324400] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB [ 2.326684] mmcblk0: p1 p2 [ 2.327167] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB [ 2.327578] mmcblk0boot0: mmc0:0001 BJTD4R 4.00 MiB [ 2.329500] mmcblk0boot1: mmc0:0001 BJTD4R 4.00 MiB [ 2.331089] mmcblk0rpmb: mmc0:0001 BJTD4R 4.00 MiB, chardev (243:0) [ 2.395740] usb 1-1: new high-speed USB device number 2 using xhci-hcd [ 2.544149] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= b.b3 [ 2.544181] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 2.587307] hub 1-1:1.0: USB hub found [ 2.587400] hub 1-1:1.0: 4 ports detected [ 2.943737] usb 1-1.3: new full-speed USB device number 3 using xhci-hcd [ 2.954896] i2c i2c-3: Failed to register i2c client pcf8563 at 0x51 (-16) [ 2.954920] i2c i2c-3: of_i2c: Failure registering /soc/i2c@7e205600/pcf8563@51 [ 2.954943] i2c i2c-3: Failed to create I2C device for /soc/i2c@7e205600/pcf8563@51 [ 2.970487] brcmstb-i2c fef04500.i2c: @97500hz registered in polling mode [ 2.981927] brcmstb-i2c fef09500.i2c: @97500hz registered in polling mode [ 3.014527] [drm] Initialized v3d 1.0.0 20180419 for fec00000.v3d on minor 0 [ 3.045674] usb 1-1.3: New USB device found, idVendor=1a86, idProduct=55d2, bcdDevice= 4.45 [ 3.045705] usb 1-1.3: New USB device strings: Mfr=0, Product=2, SerialNumber=3 [ 3.045718] usb 1-1.3: Product: USB Dual_Serial [ 3.045728] usb 1-1.3: SerialNumber: 563E083528 [ 3.050446] i2c i2c-22: Added multiplexed i2c bus 0 [ 3.051061] i2c i2c-22: Added multiplexed i2c bus 10 [ 3.167720] pca953x 1-0021: supply vcc not found, using dummy regulator [ 3.177481] pca953x 1-0021: using no AI [ 3.178661] mcp230xx 1-0038: error -EIO: can't write IOCON 56 [ 3.178769] mcp230xx: probe of 1-0038 failed with error -5 [ 3.185164] pca953x 1-0038: supply vcc not found, using dummy regulator [ 3.186721] pca953x 1-0038: using no AI [ 3.187081] pca953x 1-0038: failed writing register [ 3.190599] pca953x: probe of 1-0038 failed with error -5 [ 3.259801] usb 1-1.4: new high-speed USB device number 4 using xhci-hcd [ 3.360097] usb 1-1.4: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= b.b3 [ 3.360128] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 3.419328] hub 1-1.4:1.0: USB hub found [ 3.419408] hub 1-1.4:1.0: 4 ports detected [ 3.496477] EXT4-fs (mmcblk0p2): mounted filesystem 4aa56689-dcb4-4759-90e6-179beae559ac ro with ordered data mode. Quota mode: none. [ 3.894591] systemd[1]: System time before build time, advancing clock. [ 4.055146] NET: Registered PF_INET6 protocol family [ 4.056436] Segment Routing with IPv6 [ 4.056470] In-situ OAM (IOAM) with IPv6 [ 4.108529] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.108567] systemd[1]: Detected architecture arm64. [ 4.138054] systemd[1]: Hostname set to . [ 4.862613] systemd[1]: Queued start job for default target graphical.target. [ 4.935370] systemd[1]: Created slice system-getty.slice - Slice /system/getty. [ 4.938478] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe. [ 4.941257] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck. [ 4.943451] systemd[1]: Created slice user.slice - User and Session Slice. [ 4.943953] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch. [ 4.944801] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point. [ 4.944946] systemd[1]: Expecting device dev-disk-by\x2dpartuuid-3632e9ab\x2d01.device - /dev/disk/by-partuuid/3632e9ab-01... [ 4.945131] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes. [ 4.945349] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups. [ 4.945506] systemd[1]: Reached target slices.target - Slice Units. [ 4.945640] systemd[1]: Reached target swap.target - Swaps. [ 4.945805] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes. [ 4.946525] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket. [ 4.946860] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe. [ 4.948034] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket. [ 4.948676] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log). [ 4.949308] systemd[1]: Listening on systemd-journald.socket - Journal Socket. [ 4.950084] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. [ 4.950593] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. [ 4.951320] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages). [ 4.956706] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System... [ 4.962545] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System... [ 4.968775] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System... [ 4.969407] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab). [ 4.976735] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock... [ 4.983289] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout... [ 4.990189] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes... [ 4.996213] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... [ 5.002461] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... [ 5.008666] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm... [ 5.014654] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... [ 5.021199] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse... [ 5.028470] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... [ 5.029315] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root). [ 5.044556] systemd[1]: Starting systemd-journald.service - Journal Service... [ 5.057644] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... [ 5.069324] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems... [ 5.076676] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices... [ 5.086467] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System. [ 5.088223] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System. [ 5.089775] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System. [ 5.093062] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock. [ 5.103807] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes. [ 5.106524] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 5.107984] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. [ 5.109802] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 5.111072] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm. [ 5.112946] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 5.114104] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. [ 5.116754] systemd[1]: modprobe@loop.service: Deactivated successfully. [ 5.121541] i2c_dev: i2c /dev entries driver [ 5.124524] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. [ 5.128404] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com [ 5.142967] fuse: init (API version 7.39) [ 5.160472] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System... [ 5.166232] systemd[1]: modprobe@dm_mod.service: Deactivated successfully. [ 5.170617] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. [ 5.171765] EXT4-fs (mmcblk0p2): re-mounted 4aa56689-dcb4-4759-90e6-179beae559ac r/w. Quota mode: none. [ 5.181816] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 5.182987] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse. [ 5.185449] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules. [ 5.188844] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems. [ 5.190442] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System. [ 5.199339] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System... [ 5.199627] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes). [ 5.200056] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). [ 5.209353] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed... [ 5.209828] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. [ 5.218299] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables... [ 5.227220] systemd[1]: Starting systemd-sysusers.service - Create System Users... [ 5.239421] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System. [ 5.316107] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed. [ 5.317526] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes). [ 5.333372] systemd[1]: Finished systemd-sysusers.service - Create System Users. [ 5.368556] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev... [ 5.369559] systemd[1]: Started systemd-journald.service - Journal Service. [ 5.428394] systemd-journald[272]: Received client request to flush runtime journal. [ 5.433721] systemd-journald[272]: File /var/log/journal/0ea0d6209e9c46b3ae1d65288f15693c/system.journal corrupted or uncleanly shut down, renaming and replacing. [ 6.567777] rpi-gpiomem fe200000.gpiomem: window base 0xfe200000 size 0x00001000 [ 6.569959] mc: Linux media interface: v0.10 [ 6.571179] rpi-gpiomem fe200000.gpiomem: initialised 1 regions as /dev/gpiomem [ 6.605252] snd_bcm2835: module is from the staging directory, the quality is unknown, you have been warned. [ 6.641881] vc_sm_cma: module is from the staging directory, the quality is unknown, you have been warned. [ 6.647965] bcm2835_vc_sm_cma_probe: Videocore shared memory driver [ 6.648000] [vc_sm_connected_init]: start [ 6.654109] videodev: Linux video capture interface: v2.00 [ 6.710551] [vc_sm_connected_init]: installed successfully [ 6.718539] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned. [ 6.729268] bcm2835_v4l2: module is from the staging directory, the quality is unknown, you have been warned. [ 6.742696] bcm2835_isp: module is from the staging directory, the quality is unknown, you have been warned. [ 6.757545] bcm2835_codec: module is from the staging directory, the quality is unknown, you have been warned. [ 6.760311] rpivid_hevc: module is from the staging directory, the quality is unknown, you have been warned. [ 6.765351] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video13 [ 6.772504] bcm2835-codec bcm2835-codec: Device registered as /dev/video10 [ 6.772553] bcm2835-codec bcm2835-codec: Loaded V4L2 decode [ 6.779985] bcm2835-codec bcm2835-codec: Device registered as /dev/video11 [ 6.780029] bcm2835-codec bcm2835-codec: Loaded V4L2 encode [ 6.783845] rpivid feb10000.codec: Device registered as /dev/video19 [ 6.786935] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video14 [ 6.791415] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video15 [ 6.798387] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video16 [ 6.798424] bcm2835-isp bcm2835-isp: Register output node 0 with media controller [ 6.798440] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller [ 6.798452] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller [ 6.798463] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller [ 6.801177] ili9881d: loading out-of-tree module taints kernel. [ 6.803271] bcm2835-codec bcm2835-codec: Device registered as /dev/video12 [ 6.803313] bcm2835-codec bcm2835-codec: Loaded V4L2 isp [ 6.805558] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video20 [ 6.806056] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video21 [ 6.806257] bcm2835-codec bcm2835-codec: Device registered as /dev/video18 [ 6.806288] bcm2835-codec bcm2835-codec: Loaded V4L2 image_fx [ 6.807230] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video22 [ 6.822027] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video23 [ 6.822074] bcm2835-isp bcm2835-isp: Register output node 0 with media controller [ 6.822090] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller [ 6.822102] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller [ 6.822114] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller [ 6.826674] bcm2835-codec bcm2835-codec: Device registered as /dev/video31 [ 6.826725] bcm2835-codec bcm2835-codec: Loaded V4L2 encode_image [ 6.845968] bcm2835-isp bcm2835-isp: Loaded V4L2 bcm2835-isp [ 6.944465] ili9881d-dsi fe700000.dsi.0: supply power not found, using dummy regulator [ 6.946795] vc4-drm gpu: bound fe400000.hvs (ops vc4_hvs_ops [vc4]) [ 6.978293] Registered IR keymap rc-cec [ 6.987781] CAN device driver interface [ 7.015275] rc rc0: vc4-hdmi-0 as /devices/platform/soc/fef00700.hdmi/rc/rc0 [ 7.023227] at24 3-0057: supply vcc not found, using dummy regulator [ 7.023716] spi_master spi0: will run message pump with realtime priority [ 7.023789] input: vc4-hdmi-0 as /devices/platform/soc/fef00700.hdmi/rc/rc0/input23 [ 7.035713] mcp251xfd spi0.0 can0: MCP2518FD rev0.0 (-RX_INT -PLL -MAB_NO_WARN +CRC_REG +CRC_RX +CRC_TX +ECC -HD o:40.00MHz c:40.00MHz m:20.00MHz rs:17.00MHz es:16.66MHz rf:17.00MHz ef:16.66MHz) successfully initialized. [ 7.043778] at24 3-0057: 32768 byte 24c256 EEPROM, writable, 1 bytes/write [ 7.050053] at24 3-0050: supply vcc not found, using dummy regulator [ 7.065245] at24 3-0050: 4096 byte 24c32 EEPROM, writable, 1 bytes/write [ 7.067106] input: vc4-hdmi-0 HDMI Jack as /devices/platform/soc/fef00700.hdmi/sound/card0/input24 [ 7.068761] vc4-drm gpu: bound fef00700.hdmi (ops vc4_hdmi_ops [vc4]) [ 7.083266] Registered IR keymap rc-cec [ 7.083494] rc rc1: vc4-hdmi-1 as /devices/platform/soc/fef05700.hdmi/rc/rc1 [ 7.083859] input: vc4-hdmi-1 as /devices/platform/soc/fef05700.hdmi/rc/rc1/input25 [ 7.096392] input: vc4-hdmi-1 HDMI Jack as /devices/platform/soc/fef05700.hdmi/sound/card1/input26 [ 7.096879] vc4-drm gpu: bound fef05700.hdmi (ops vc4_hdmi_ops [vc4]) [ 7.098049] vc4-drm gpu: bound fe700000.dsi (ops vc4_dsi_ops [vc4]) [ 7.116618] vc4-drm gpu: bound fe004000.txp (ops vc4_txp_ops [vc4]) [ 7.122231] vc4-drm gpu: bound fe206000.pixelvalve (ops vc4_crtc_ops [vc4]) [ 7.122668] vc4-drm gpu: bound fe207000.pixelvalve (ops vc4_crtc_ops [vc4]) [ 7.139759] audit: type=1400 audit(1710924472.079:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=455 comm="apparmor_parser" [ 7.139798] audit: type=1400 audit(1710924472.079:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=455 comm="apparmor_parser" [ 7.139818] audit: type=1400 audit(1710924472.083:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=453 comm="apparmor_parser" [ 7.146583] vc4-drm gpu: bound fe20a000.pixelvalve (ops vc4_crtc_ops [vc4]) [ 7.147149] vc4-drm gpu: bound fe216000.pixelvalve (ops vc4_crtc_ops [vc4]) [ 7.151261] vc4-drm gpu: bound fec12000.pixelvalve (ops vc4_crtc_ops [vc4]) [ 7.169002] audit: type=1400 audit(1710924472.111:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/aarch64-linux-gnu/lightdm/lightdm-guest-session" pid=451 comm="apparmor_parser" [ 7.169040] audit: type=1400 audit(1710924472.111:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/aarch64-linux-gnu/lightdm/lightdm-guest-session//chromium" pid=451 comm="apparmor_parser" [ 7.191630] audit: type=1400 audit(1710924472.131:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=457 comm="apparmor_parser" [ 7.195600] audit: type=1400 audit(1710924472.135:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=457 comm="apparmor_parser" [ 7.195721] audit: type=1400 audit(1710924472.139:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=457 comm="apparmor_parser" [ 7.195778] audit: type=1400 audit(1710924472.139:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=457 comm="apparmor_parser" [ 7.197299] audit: type=1400 audit(1710924472.139:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=478 comm="apparmor_parser" [ 7.233150] [drm] Initialized vc4 0.0.0 20140616 for gpu on minor 1 [ 7.233539] tlv320aic3x 1-0018: supply IOVDD not found, using dummy regulator [ 7.233798] tlv320aic3x 1-0018: supply DVDD not found, using dummy regulator [ 7.233863] tlv320aic3x 1-0018: supply AVDD not found, using dummy regulator [ 7.233940] tlv320aic3x 1-0018: supply DRVDD not found, using dummy regulator [ 7.234009] tlv320aic3x 1-0018: Invalid supply voltage(s) AVDD: -22, DVDD: -22 [ 7.264803] rtc-pcf8563w 3-0051: timer-frequency: 2, default-timeout: 120, min-hw-heartbeat-ms: 2000 [ 7.264833] rtc-pcf8563w 3-0051: pcf8563_watchdog_init: watchdog1 is attached [ 7.272952] rtc-pcf8563w 3-0051: registered as rtc0 [ 7.274201] rtc-pcf8563w 3-0051: setting system clock to 2024-03-20T08:48:11 UTC (1710924491) [ 7.407942] mipi_dsi: Initialize kernel module [ 7.407956] mipi_dsi: (i2c_md_init) Add I2C driver [ 7.408101] mipi_dsi: Probe I2C driver [ 7.408106] mipi_dsi: (i2c_md_probe) Start [ 7.408185] mipi_dsi 1-0045: I2C read id failed: -5 [ 7.408379] mipi_dsi: (i2c_md_init) Register MIPI-DSI driver [ 7.461910] usb_ch343 1-1.3:1.0: ttyCH343USB0: usb to uart device [ 7.464228] usb_ch343 1-1.3:1.2: ttyCH343USB1: usb to uart device [ 7.478242] Console: switching to colour frame buffer device 100x80 [ 7.483379] Bluetooth: Core ver 2.22 [ 7.483482] NET: Registered PF_BLUETOOTH protocol family [ 7.483489] Bluetooth: HCI device and connection manager initialized [ 7.483510] Bluetooth: HCI socket layer initialized [ 7.483521] Bluetooth: L2CAP socket layer initialized [ 7.483539] Bluetooth: SCO socket layer initialized [ 7.489081] vc4-drm gpu: [drm] fb0: vc4drmfb frame buffer device [ 7.513310] usbcore: registered new interface driver usb_ch343 [ 7.513333] ch34x: USB serial driver for ch342/ch343/ch344/ch347/ch9101/ch9102/ch9103/ch9104, etc. [ 7.513339] ch34x: V1.5 On 2023.03 [ 7.525834] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 7.555272] Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf' [ 7.560127] Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328' [ 7.561120] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 7.562066] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' [ 7.580107] Bluetooth: HCI UART driver ver 2.3 [ 7.580137] Bluetooth: HCI UART protocol H4 registered [ 7.580280] Bluetooth: HCI UART protocol Three-wire (H5) registered [ 7.580921] Bluetooth: HCI UART protocol Broadcom registered [ 7.582169] hci_uart_bcm serial0-0: supply vbat not found, using dummy regulator [ 7.582481] hci_uart_bcm serial0-0: supply vddio not found, using dummy regulator [ 7.682824] Goodix-TS 10-005d: supply AVDD28 not found, using dummy regulator [ 7.699958] uart-pl011 fe201000.serial: no DMA platform data [ 7.724329] Goodix-TS 10-005d: supply VDDIO not found, using dummy regulator [ 7.768064] lis3lv02d_i2c 1-0019: supply Vdd not found, using dummy regulator [ 7.768320] lis3lv02d_i2c 1-0019: supply Vdd_IO not found, using dummy regulator [ 7.788902] lis331dlh_i2c: unknown sensor type 0x87 [ 7.829403] Goodix-TS 10-005d: ID 9271, version: 1070 [ 7.829593] Goodix-TS 10-005d: Direct firmware load for goodix_9271_cfg.bin failed with error -2 [ 7.833643] lis3lv02d_i2c: probe of 1-0019 failed with error -22 [ 7.919984] input: 10-005d Goodix Capacitive TouchScreen as /devices/platform/soc/fe205000.i2c/i2c-22/i2c-10/10-005d/input/input28 [ 7.942896] Bluetooth: hci0: BCM: chip id 107 [ 7.943284] Bluetooth: hci0: BCM: features 0x2f [ 7.944472] Bluetooth: hci0: BCM4345C0 [ 7.944500] Bluetooth: hci0: BCM4345C0 (003.001.025) build 0000 [ 7.947334] Bluetooth: hci0: BCM4345C0 'brcm/BCM4345C0.raspberrypi,4-compute-module.hcd' Patch [ 8.328045] brcmfmac: F1 signature read @0x18000000=0x15264345 [ 8.371518] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6 [ 8.378423] usbcore: registered new interface driver brcmfmac [ 8.626213] brcmfmac_wcc: brcmf_wcc_attach: executing [ 8.636198] brcmfmac: brcmf_c_process_txcap_blob: no txcap_blob available (err=-2) [ 8.636871] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/6 wl0: Apr 15 2021 03:03:20 version 7.45.234 (4ca95bb CY) FWID 01-996384e2 [ 8.688703] Bluetooth: hci0: BCM: features 0x2f [ 8.690096] Bluetooth: hci0: BCM43455 37.4MHz Raspberry Pi 3+-0190 [ 8.690124] Bluetooth: hci0: BCM4345C0 (003.001.025) build 0382 [ 10.432917] Adding 102396k swap on /var/swap. Priority:-2 extents:1 across:102396k SS [ 11.148511] alsactl[826]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set [ 11.842336] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 11.842364] Bluetooth: BNEP filters: protocol multicast [ 11.842387] Bluetooth: BNEP socket layer initialized [ 11.865716] Bluetooth: MGMT ver 1.22 [ 11.896890] NET: Registered PF_ALG protocol family [ 12.355738] Bluetooth: hci0: Bad flag given (0x1) vs supported (0x0) [ 12.532604] bcmgenet fd580000.ethernet: configuring instance for external RGMII (RX delay) [ 12.534144] bcmgenet fd580000.ethernet eth0: Link is Down [ 12.562282] brcmfmac: brcmf_cfg80211_set_power_mgmt: power save enabled [ 16.610654] bcmgenet fd580000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off [ 17.426528] Bluetooth: RFCOMM TTY layer initialized [ 17.426553] Bluetooth: RFCOMM socket layer initialized [ 17.426571] Bluetooth: RFCOMM ver 1.11 [ 18.404704] platform gpio_keys: deferred probe pending [ 18.404730] platform leds: deferred probe pending [ 19.627376] warning: `ThreadPoolForeg' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211 [ 21.810477] kauditd_printk_skb: 17 callbacks suppressed [ 21.810499] audit: type=1400 audit(1710924506.031:29): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=1921 comm="apparmor_parser" [ 24.809385] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 24.816476] Bridge firewalling registered [ 25.648459] Initializing XFRM netlink socket [ 26.776795] hassio: port 1(veth93f1cf2) entered blocking state [ 26.776825] hassio: port 1(veth93f1cf2) entered disabled state [ 26.776867] veth93f1cf2: entered allmulticast mode [ 26.777029] veth93f1cf2: entered promiscuous mode [ 26.777353] hassio: port 1(veth93f1cf2) entered blocking state [ 26.777373] hassio: port 1(veth93f1cf2) entered forwarding state [ 26.779712] hassio: port 1(veth93f1cf2) entered disabled state [ 27.492972] eth0: renamed from veth0efb646 [ 27.511008] hassio: port 1(veth93f1cf2) entered blocking state [ 27.511028] hassio: port 1(veth93f1cf2) entered forwarding state [ 29.347450] docker0: port 1(veth957d86e) entered blocking state [ 29.347473] docker0: port 1(veth957d86e) entered disabled state [ 29.347511] veth957d86e: entered allmulticast mode [ 29.352226] veth957d86e: entered promiscuous mode [ 29.437421] hassio: port 2(vethccdfb76) entered blocking state [ 29.437557] hassio: port 2(vethccdfb76) entered disabled state [ 29.437601] vethccdfb76: entered allmulticast mode [ 29.438151] vethccdfb76: entered promiscuous mode [ 29.439210] hassio: port 2(vethccdfb76) entered blocking state [ 29.439230] hassio: port 2(vethccdfb76) entered forwarding state [ 29.932741] eth0: renamed from veth0751636 [ 29.955630] hassio: port 2(vethccdfb76) entered disabled state [ 29.957039] docker0: port 1(veth957d86e) entered blocking state [ 29.957056] docker0: port 1(veth957d86e) entered forwarding state [ 30.020844] eth1: renamed from vethabf0357 [ 30.049433] hassio: port 2(vethccdfb76) entered blocking state [ 30.049455] hassio: port 2(vethccdfb76) entered forwarding state [ 36.619608] audit: type=1400 audit(1710924520.839:30): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="402f1039_eufy_security_ws" pid=3009 comm="apparmor_parser" [ 36.619633] audit: type=1400 audit(1710924520.839:31): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="402f1039_eufy_security_ws//node" pid=3009 comm="apparmor_parser" [ 36.635928] audit: type=1400 audit(1710924520.855:32): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="hassio-supervisor" pid=3011 comm="apparmor_parser" [ 36.635954] audit: type=1400 audit(1710924520.855:33): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="hassio-supervisor///usr/bin/gdbus" pid=3011 comm="apparmor_parser" [ 36.635961] audit: type=1400 audit(1710924520.855:34): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="hassio-supervisor///usr/bin/git" pid=3011 comm="apparmor_parser" [ 41.450009] hassio: port 3(veth174ac7d) entered blocking state [ 41.450033] hassio: port 3(veth174ac7d) entered disabled state [ 41.450075] veth174ac7d: entered allmulticast mode [ 41.450239] veth174ac7d: entered promiscuous mode [ 41.844438] eth0: renamed from veth88a7e11 [ 41.868653] hassio: port 3(veth174ac7d) entered blocking state [ 41.868673] hassio: port 3(veth174ac7d) entered forwarding state [ 42.281292] hassio: port 4(veth4f37d9d) entered blocking state [ 42.281308] hassio: port 4(veth4f37d9d) entered disabled state [ 42.281342] veth4f37d9d: entered allmulticast mode [ 42.281478] veth4f37d9d: entered promiscuous mode [ 42.281702] hassio: port 4(veth4f37d9d) entered blocking state [ 42.281712] hassio: port 4(veth4f37d9d) entered forwarding state [ 42.451781] hassio: port 4(veth4f37d9d) entered disabled state [ 42.644608] eth0: renamed from vethf43d6fc [ 42.660524] hassio: port 4(veth4f37d9d) entered blocking state [ 42.660544] hassio: port 4(veth4f37d9d) entered forwarding state [ 44.888546] hassio: port 5(veth7a3c19d) entered blocking state [ 44.888563] hassio: port 5(veth7a3c19d) entered disabled state [ 44.888600] veth7a3c19d: entered allmulticast mode [ 44.888785] veth7a3c19d: entered promiscuous mode [ 45.373327] eth0: renamed from vethd0b0e16 [ 45.392981] hassio: port 5(veth7a3c19d) entered blocking state [ 45.393001] hassio: port 5(veth7a3c19d) entered forwarding state [ 50.468980] hassio: port 6(vethb05b94e) entered blocking state [ 50.468999] hassio: port 6(vethb05b94e) entered disabled state [ 50.469036] vethb05b94e: entered allmulticast mode [ 50.469206] vethb05b94e: entered promiscuous mode [ 51.120729] eth0: renamed from veth11d51f8 [ 51.148393] hassio: port 6(vethb05b94e) entered blocking state [ 51.148414] hassio: port 6(vethb05b94e) entered forwarding state [ 81.720150] hassio: port 7(veth44261d5) entered blocking state [ 81.720166] hassio: port 7(veth44261d5) entered disabled state [ 81.720202] veth44261d5: entered allmulticast mode [ 81.720360] veth44261d5: entered promiscuous mode [ 81.720584] hassio: port 7(veth44261d5) entered blocking state [ 81.720594] hassio: port 7(veth44261d5) entered forwarding state [ 81.721561] hassio: port 7(veth44261d5) entered disabled state [ 82.144265] eth0: renamed from veth9f6ac6f [ 82.172961] hassio: port 7(veth44261d5) entered blocking state [ 82.172986] hassio: port 7(veth44261d5) entered forwarding state [ 83.278702] hassio: port 8(veth4ed34e7) entered blocking state [ 83.278725] hassio: port 8(veth4ed34e7) entered disabled state [ 83.278772] veth4ed34e7: entered allmulticast mode [ 83.278963] veth4ed34e7: entered promiscuous mode [ 83.874659] eth0: renamed from veth3e5c97c [ 83.893028] hassio: port 8(veth4ed34e7) entered blocking state [ 83.893049] hassio: port 8(veth4ed34e7) entered forwarding state [ 84.587848] hassio: port 9(veth8e8e9d4) entered blocking state [ 84.587866] hassio: port 9(veth8e8e9d4) entered disabled state [ 84.587902] veth8e8e9d4: entered allmulticast mode [ 84.588190] veth8e8e9d4: entered promiscuous mode [ 85.356022] eth0: renamed from veth78f0919 [ 85.393954] hassio: port 9(veth8e8e9d4) entered blocking state [ 85.393981] hassio: port 9(veth8e8e9d4) entered forwarding state [ 86.725083] hassio: port 10(vethb0167e4) entered blocking state [ 86.725111] hassio: port 10(vethb0167e4) entered disabled state [ 86.725160] vethb0167e4: entered allmulticast mode [ 86.725362] vethb0167e4: entered promiscuous mode [ 87.522752] eth0: renamed from veth645ec07 [ 87.546271] hassio: port 10(vethb0167e4) entered blocking state [ 87.546295] hassio: port 10(vethb0167e4) entered forwarding state [ 88.891802] hassio: port 11(veth37a4202) entered blocking state [ 88.891830] hassio: port 11(veth37a4202) entered disabled state [ 88.891870] veth37a4202: entered allmulticast mode [ 88.892099] veth37a4202: entered promiscuous mode [ 90.300835] eth0: renamed from vethdee39f5 [ 90.320975] hassio: port 11(veth37a4202) entered blocking state [ 90.321015] hassio: port 11(veth37a4202) entered forwarding state ```
TB-archIT commented 6 months ago

I have also a following problem that worked with the old kernel before and now not anymore...

My application (java running with xorg) does starting, but rotation of the screen does not work. display is in portrait but landscape is needed.

Tried both ways of https://wiki.seeedstudio.com/Incorrect_screen_orientation_on_RPiOS_Bullseye/#raspberry-pi-os-bookworm None of them does work. Before one of both does work (I don't know whether ;-))

TB-archIT commented 6 months ago

I'm quite irritated now... Whereas the link above describing a physical resolution with 1280x720 my reTerminal DM says...

xrandr
Screen 0: minimum 320 x 200, current 800 x 1280, maximum 7680 x 7680
HDMI-1 disconnected primary (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
DSI-1 connected 800x1280+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   800x1280      60.00*+
matsujirushi commented 6 months ago

Hi @kustere ,

[    7.407942] mipi_dsi: Initialize kernel module
[    7.407956] mipi_dsi: (i2c_md_init) Add I2C driver
[    7.408101] mipi_dsi: Probe I2C driver
[    7.408106] mipi_dsi: (i2c_md_probe) Start
[    7.408185] mipi_dsi 1-0045: I2C read id failed: -5
[    7.408379] mipi_dsi: (i2c_md_init) Register MIPI-DSI driver

mipi_dsi driver is for reTerminal. (NOT reTerminal DM) Please check your config.txt file.

matsujirushi commented 6 months ago

Hi @TB-archIT , I don't know much about it, but I suspect the distribution may be affecting it. This may be helpful. https://github.com/matsujirushi/seeed-linux-dtoverlays/blob/82d72b11814ef59748014a889d6065a27e067193/scripts/reTerminal2.sh#L222

bigbearishappy commented 6 months ago

I'm quite irritated now... Whereas the link above describing a physical resolution with 1280x720 my reTerminal DM says...

xrandr
Screen 0: minimum 320 x 200, current 800 x 1280, maximum 7680 x 7680
HDMI-1 disconnected primary (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
DSI-1 connected 800x1280+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   800x1280      60.00*+

Actually, 720x1280 is the lcd resolution for reTerminal while 800x1280 is for reTerminal DM. You can have a try to append:

[output:DSI-1]
mode = 800x1280@60
transform = 270

to ~/.config/wayfire.ini

kustere commented 6 months ago

Hi @kustere ,

[    7.407942] mipi_dsi: Initialize kernel module
[    7.407956] mipi_dsi: (i2c_md_init) Add I2C driver
[    7.408101] mipi_dsi: Probe I2C driver
[    7.408106] mipi_dsi: (i2c_md_probe) Start
[    7.408185] mipi_dsi 1-0045: I2C read id failed: -5
[    7.408379] mipi_dsi: (i2c_md_init) Register MIPI-DSI driver

mipi_dsi driver is for reTerminal. (NOT reTerminal DM) Please check your config.txt file.

Thanks. For some reason there was multiple lines in config.txt with dtoverlay=reTerminal,tp_rotate=0 in there so I removed the duplicates and commented out the last one leaving in the dtoverlay=reTerminal-plus at the end of the file and now the display is working perfectly.

Thanks for the help troubleshooting.

matsujirushi commented 6 months ago

Create new issue and close this issue.