Tool/software:
I am in the process of using several makefiles to create the bootloaders, and u-boot so that i can flash the entire project to the eMMC through DFU. Due to internal constraints, we are not able to use the SDK out of the box because we need to compile custom packages for our applications during the build process.
As our Kernel boots, we get this error, with a print of registers:
ERROR: Unhandled External Abort received on 0x80000000 from S-EL1
ERROR: exception reason=1 syndrome=0x92000010
Unhandled Exception from EL1
We suspect the problem lies in our signing process of the boot loaders, but we are not sure.
Below is the output from uboot
Thanks
U-Boot SPL 2021.01-00006-g5dbd18e5c9 (Mar 31 2025 - 17:00:10 +0000) SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.7--v09.00.07 (Kool Koala)') SPL initial stack usage: 13368 bytes Trying to boot from MMC1 Warning: Did not detect image signing certificate. Skipping authentication to prevent boot failure. This will fail on Security Enforcing(HS-SE) devices Warning: Did not detect image signing certificate. Skipping authentication to prevent boot failure. This will fail on Security Enforcing(HS-SE) devices Warning: Did not detect image signing certificate. Skipping authentication to prevent boot failure. This will fail on Security Enforcing(HS-SE) devices Authentication passed Authentication passed Loading Environment from MMC... OK init_env from device 9 not supported! Starting ATF on ARM64 core... NOTICE: BL31: v2.7(release):v2.7.0-360-gd53ad586f-dirty NOTICE: BL31: Built : 17:02:42, Mar 31 2025 I/TC: I/TC: OP-TEE version: 3.19.0-15-gd6c5d0037 (gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)) #1 Mon Mar 31 17:03:46 UTC 2025 aarch64 I/TC: WARNING: This OP-TEE configuration might be insecure! I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html I/TC: Primary CPU initializing I/TC: SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.7--v09.00.07 (Kool Koala)') I/TC: HUK Initialized I/TC: Activated SA2UL device I/TC: Enabled firewalls for SA2UL TRNG device I/TC: SA2UL TRNG initialized I/TC: SA2UL Drivers initialized I/TC: Primary CPU switching to normal world boot U-Boot SPL 2021.01-00006-g5dbd18e5c9 (Mar 31 2025 - 17:03:56 +0000) SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.7--v09.00.07 (Kool Koala)') Trying to boot from MMC1 Warning: Did not detect image signing certificate. Skipping authentication to prevent boot failure. This will fail on Security Enforcing(HS-SE) devices Warning: Did not detect image signing certificate. Skipping authentication to prevent boot failure. This will fail on Security Enforcing(HS-SE) devices U-Boot 2021.01-00006-g5dbd18e5c9 (Mar 31 2025 - 17:03:56 +0000) SoC: AM62X SR1.0 HS-FS Model: Texas Instruments AM625 SK EEPROM not available at 0x50, trying to read at 0x51 Reading on-board EEPROM at 0x51 failed 1 DRAM: 1 GiB MMC: mmc@fa10000: 0, mmc@fa00000: 1, mmc@fa20000: 2 Loading Environment from MMC... OK In: serial@2800000 Out: serial@2800000 Err: serial@2800000 EEPROM not available at 0x50, trying to read at 0x51 Reading on-board EEPROM at 0x51 failed 1 Net: eth0: ethernet@8000000port@1 Hit any key to stop autoboot: 2 1 0 switch to partitions #0, OK mmc0(part 0) is current device SD/MMC found on device 0 Failed to load 'boot.scr' ** Unrecognized filesystem type ** 20724224 bytes read in 115 ms (171.9 MiB/s) 43503 bytes read in 6 ms (6.9 MiB/s) ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Loading Device Tree to 000000008fef2000, end 000000008fffffff ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.1.33+ (evan@eru) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 SMP PREEMPT Fri Mar 28 20:27:58 UTC 2025 [ 0.000000] Machine model: Texas Instruments AM6202 [ 0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '') [ 0.000000] printk: bootconsole [ns16550a0] enabled [ 0.000000] efi: UEFI not found. [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000b8000000, size 128 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB [ 0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB [ 0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB [ 0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000080000000-0x00000000bfffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000080000000-0x000000009c7fffff] [ 0.000000] node 0: [mem 0x000000009c800000-0x000000009e6fffff] [ 0.000000] node 0: [mem 0x000000009e700000-0x000000009e77ffff] [ 0.000000] node 0: [mem 0x000000009e780000-0x000000009fffffff] [ 0.000000] node 0: [mem 0x00000000a0000000-0x00000000bfffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: Trusted OS migration not required [ 0.000000] psci: SMC Calling Convention v1.2 [ 0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 258048 [ 0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=3026c643-867c-49b3-95e2-a0e748e36700 rw rootfstype=ext4 rootwait [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 818548K/1048576K available (12544K kernel code, 1294K rwdata, 4072K rodata, 2176K init, 498K bss, 98956K reserved, 131072K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 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=2. [ 0.000000] Trampoline 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=2 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 256 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GICv3: GICv3 features: 16 PPIs [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000 [ 0.000000] ITS [mem 0x01820000-0x0182ffff] [ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS [ 0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19 [ 0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0) [ 0.000000] ITS: using cache flushing for cmd queue [ 0.000000] GICv3: using LPI property table @0x0000000080030000 [ 0.000000] GIC: using cache flushing for LPI property table [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns [ 0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns [ 0.008524] Console: colour dummy device 80x25 [ 0.013116] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000) [ 0.023799] pid_max: default: 32768 minimum: 301 [ 0.028573] LSM: Security Framework initializing [ 0.033416] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.040994] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.050790] cblist_init_generic: Setting adjustable number of callback queues. [ 0.058254] cblist_init_generic: Setting shift to 1 and lim to 1. [ 0.064553] cblist_init_generic: Setting shift to 1 and lim to 1. [ 0.070950] rcu: Hierarchical SRCU implementation. [ 0.075856] rcu: Max phase no-delay instances is 1000. [ 0.081469] Platform MSI: msi-controller@1820000 domain created [ 0.087767] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created [ 0.097533] EFI services will not be available. [ 0.102381] smp: Bringing up secondary CPUs ... I/TC: Secondary CPU 1 initializing I/TC: Secondary CPU 1 switching to normal world boot [ 0.115695] Detected VIPT I-cache on CPU1 [ 0.115815] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000 [ 0.115834] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000 [ 0.115894] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.116002] smp: Brought up 1 node, 2 CPUs [ 0.145386] SMP: Total of 2 processors activated. [ 0.150198] CPU features: detected: 32-bit EL0 Support [ 0.155467] CPU features: detected: CRC32 instructions [ 0.160781] CPU: All CPU(s) started at EL2 [ 0.164967] alternatives: applying system-wide alternatives [ 0.172230] devtmpfs: initialized [ 0.182675] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.192702] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.204387] pinctrl core: initialized pinctrl subsystem [ 0.210429] DMI not present or invalid. [ 0.215059] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.222267] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.229591] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.237591] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.245774] audit: initializing netlink subsys (disabled) [ 0.251559] audit: type=2000 audit(0.160:1): state=initialized audit_enabled=0 res=1 [ 0.252123] thermal_sys: Registered thermal governor 'step_wise' [ 0.259485] thermal_sys: Registered thermal governor 'power_allocator' [ 0.265813] cpuidle: using governor menu [ 0.276710] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.283714] ASID allocator initialised with 65536 entries [ 0.302330] KASLR disabled due to lack of seed [ 0.314154] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.321126] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page [ 0.327538] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages [ 0.334477] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page [ 0.340884] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.347823] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page [ 0.354230] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages [ 0.361168] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page [ 0.369464] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected [ 0.379575] iommu: Default domain type: Translated [ 0.384583] iommu: DMA domain TLB invalidation policy: strict mode [ 0.391285] SCSI subsystem initialized [ 0.395526] usbcore: registered new interface driver usbfs [ 0.401185] usbcore: registered new interface driver hub [ 0.406643] usbcore: registered new device driver usb [ 0.412358] pps_core: LinuxPPS API ver. 1 registered [ 0.417438] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.426789] PTP clock support registered [ 0.430920] EDAC MC: Ver: 3.0.0 [ 0.435093] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100 [ 0.442270] FPGA manager framework [ 0.445854] Advanced Linux Sound Architecture Driver Initialized. [ 0.453074] clocksource: Switched to clocksource arch_sys_counter [ 0.459588] VFS: Disk quotas dquot_6.6.0 [ 0.463646] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.476716] NET: Registered PF_INET protocol family [ 0.481957] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.490623] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [ 0.499250] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.507186] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.515167] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear) [ 0.522821] TCP: Hash tables configured (established 8192 bind 8192) [ 0.529498] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.536301] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.543698] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.550030] RPC: Registered named UNIX socket transport module. [ 0.556114] RPC: Registered udp transport module. [ 0.560925] RPC: Registered tcp transport module. [ 0.565733] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.572326] NET: Registered PF_XDP protocol family [ 0.577245] PCI: CLS 0 bytes, default 64 [ 0.581918] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 0.591890] Initialise system trusted keyrings [ 0.596756] workingset: timestamp_bits=46 max_order=18 bucket_order=0 [ 0.609169] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.615888] NFS: Registering the id_resolver key type [ 0.621154] Key type id_resolver registered [ 0.625433] Key type id_legacy registered [ 0.629596] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.636453] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 0.644243] 9p: Installing v9fs 9p2000 file system support [ 0.683977] Key type asymmetric registered [ 0.688169] Asymmetric key parser 'x509' registered [ 0.693210] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 0.700981] io scheduler mq-deadline registered [ 0.705620] io scheduler kyber registered [ 0.712734] pinctrl-single 4084000.pinctrl: 34 pins, size 136 [ 0.719388] pinctrl-single f4000.pinctrl: 171 pins, size 684 [ 0.726273] pinctrl-single a40000.pinctrl: 512 pins, size 2048 [ 0.739928] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.754007] loop: module loaded [ 0.758536] megasas: 07.719.03.00-rc1 [ 0.766490] tun: Universal TUN/TAP device driver, 1.6 [ 0.772401] thunder_xcv, ver 1.0 [ 0.775746] thunder_bgx, ver 1.0 [ 0.779076] nicpf, ver 1.0 [ 0.782235] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version [ 0.789623] hns3: Copyright (c) 2017 Huawei Corporation. [ 0.795115] hclge is initializing [ 0.798527] e1000: Intel(R) PRO/1000 Network Driver [ 0.803518] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 0.809460] e1000e: Intel(R) PRO/1000 Network Driver [ 0.814539] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 0.820622] igb: Intel(R) Gigabit Ethernet Network Driver [ 0.826141] igb: Copyright (c) 2007-2014 Intel Corporation. [ 0.831870] igbvf: Intel(R) Gigabit Virtual Function Network Driver [ 0.838278] igbvf: Copyright (c) 2009 - 2012 Intel Corporation. [ 0.844463] sky2: driver version 1.30 [ 0.848927] VFIO - User Level meta-driver version: 0.3 [ 0.855411] usbcore: registered new interface driver usb-storage [ 0.862366] i2c_dev: i2c /dev entries driver [ 0.868846] sdhci: Secure Digital Host Controller Interface driver [ 0.875219] sdhci: Copyright(c) Pierre Ossman [ 0.880154] Synopsys Designware Multimedia Card Interface Driver [ 0.886715] sdhci-pltfm: SDHCI platform and OF driver helper [ 0.893499] ledtrig-cpu: registered to indicate activity on CPUs [ 0.899853] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping .... [ 0.906813] usbcore: registered new interface driver usbhid [ 0.912520] usbhid: USB HID core driver [ 0.917780] optee: probing for conduit method. [ 0.922372] optee: revision 3.19 (d6c5d003) [ 0.922724] optee: dynamic shared memory is enabled [ 0.932407] optee: initialized driver [ 0.937984] Initializing XFRM netlink socket [ 0.942418] NET: Registered PF_PACKET protocol family [ 0.947728] 9pnet: Installing 9P2000 support [ 0.952163] Key type dns_resolver registered [ 0.956970] registered taskstats version 1 [ 0.961192] Loading compiled-in X.509 certificates [ 0.975172] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.0.7--v09.00.07 (Kool Koala)') [ 1.034992] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz [ 1.042217] omap_i2c 20010000.i2c: bus 1 rev0.12 at 400 kHz [ 1.049165] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz [ 1.055136] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created [ 1.063494] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created [ 1.072736] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created [ 1.082674] ti-udma 485c0100.dma-controller: Number of rings: 82 [ 1.090904] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18) [ 1.102110] ti-udma 485c0000.dma-controller: Number of rings: 150 [ 1.112192] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15) [ 1.122541] printk: console [ttyS2] disabled [ 1.127003] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 239, base_baud = 3000000) is a 8250 [ 1.135901] printk: console [ttyS2] enabled [ 1.135901] printk: console [ttyS2] enabled [ 1.144356] printk: bootconsole [ns16550a0] disabled [ 1.144356] printk: bootconsole [ns16550a0] disabled [ 1.155622] 2850000.serial: ttyS0 at MMIO 0x2850000 (irq = 241, base_baud = 3000000) is a 8250 [ 1.165772] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode [ 1.209089] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000 [ 1.218517] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown [ 1.226367] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver unknown [ 1.234246] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006 [ 1.247204] am65-cpsw-nuss 8000000.ethernet: Use random MAC address [ 1.253473] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5 [ 1.260605] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512 [ 1.267120] pps pps0: new PPS source ptp0 [ 1.271455] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1 [ 1.281841] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19 [ 1.291035] platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/tps6598x@3f/connector [ 1.302007] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 1.307523] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 1.315328] xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports [ 1.321331] xhci-hcd xhci-hcd.0.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010 [ 1.330764] xhci-hcd xhci-hcd.0.auto: irq 245, io mem 0x31000000 [ 1.337575] hub 1-0:1.0: USB hub found [ 1.341406] hub 1-0:1.0: 1 port detected [ 1.347466] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.353007] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.360795] xhci-hcd xhci-hcd.1.auto: USB3 root hub has no ports [ 1.366806] xhci-hcd xhci-hcd.1.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010 [ 1.376260] xhci-hcd xhci-hcd.1.auto: irq 246, io mem 0x31100000 [ 1.382987] hub 2-0:1.0: USB hub found [ 1.386770] hub 2-0:1.0: 1 port detected [ 1.394379] mmc0: CQHCI version 5.10 [ 1.400910] pca953x 1-0022: supply vcc not found, using dummy regulator [ 1.407918] pca953x 1-0022: using AI [ 1.433133] pca953x 1-0022: failed writing register [ 1.438042] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit [ 1.445465] pca953x: probe of 1-0022 failed with error -121 [ 1.453379] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present! [ 1.463899] input: gpio-keys as /devices/platform/gpio-keys/input/input0 [ 1.481726] ALSA device list: [ 1.484708] No soundcards found. [ 1.488803] Waiting for root device PARTUUID=3026c643-867c-49b3-95e2-a0e748e36700... [ 1.529087] mmc0: Command Queue Engine enabled [ 1.533564] mmc0: new HS200 MMC card at address 0001 [ 1.544240] mmcblk0: mmc0:0001 DG4016 14.7 GiB [ 1.552841] mmcblk0: p1 p2 p3 p4 [ 1.557356] mmcblk0boot0: mmc0:0001 DG4016 4.00 MiB [ 1.563614] mmcblk0boot1: mmc0:0001 DG4016 4.00 MiB [ 1.569744] mmcblk0rpmb: mmc0:0001 DG4016 4.00 MiB, chardev (240:0) [ 1.649308] EXT4-fs (mmcblk0p1): recovery complete [ 1.654731] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Quota mode: none. [ 1.663463] VFS: Mounted root (ext4 filesystem) on device 179:1. [ 1.670547] devtmpfs: mounted [ 1.675222] Freeing unused kernel memory: 2176K [ 1.679975] Run /sbin/init as init process [ 1.815842] systemd[1]: System time before build time, advancing clock. [ 1.888957] NET: Registered PF_INET6 protocol family [ 1.895772] Segment Routing with IPv6 [ 1.899523] In-situ OAM (IOAM) with IPv6 [ 1.934192] systemd[1]: systemd 249.11-0ubuntu3.12 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 1.966134] systemd[1]: Detected architecture arm64. Welcome to Ubuntu 22.04.4 LTS! [ 1.981886] systemd[1]: Hostname set to <hivemini000>. [ 3.213079] random: crng init done [ 3.499270] systemd[1]: Queued start job for default target Graphical Interface. [ 3.531598] systemd[1]: Created slice Slice /system/modprobe. [ OK ] Created slice Slice /system/modprobe. [ 3.555056] systemd[1]: Created slice Slice /system/serial-getty. [ OK ] Created slice Slice /system/serial-getty. [ 3.579010] systemd[1]: Created slice Slice /system/systemd-fsck. [ OK ] Created slice Slice /system/systemd-fsck. [ 3.606343] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 3.632127] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password ‚ts to Console Directory Watch. [ 3.657638] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password R‚uests to Wall Directory Watch. [ 3.681699] systemd[1]: Condition check resulted in Arbitrary Executable File Formats File System Automount Point being skipped. [ 3.693666] systemd[1]: Reached target Local Encrypted Volumes. [ OK ] Reached target Local Encrypted Volumes. [ 3.717645] systemd[1]: Reached target User and Group Name Lookups. [ OK ] Reached target User and Group Name Lookups. [ 3.741608] systemd[1]: Reached target Slice Units. [ OK ] Reached target Slice Units. [ 3.765440] systemd[1]: Reached target Swaps. [ OK ] Reached target Swaps. [ 3.788975] systemd[1]: Reached target Local Verity Protected Volumes. [ OK ] Reached target Local Verity Protected Volumes. [ 3.877001] systemd[1]: Listening on RPCbind Server Activation Socket. [ OK ] Listening on RPCbind Server Activation Socket. [ 3.902930] systemd[1]: Listening on Syslog Socket. [ OK ] Listening on Syslog Socket. [ 3.926630] systemd[1]: Listening on fsck to fsckd communication Socket. [ OK ] Listening on fsck to fsckd communication Socket. [ 3.953346] systemd[1]: Listening on initctl Compatibility Named Pipe. [ OK ] Listening on initctl Compatibility Named Pipe. [ 3.979747] systemd[1]: Listening on Journal Audit Socket. [ OK ] Listening on Journal Audit Socket. [ 3.997935] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 4.026891] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 4.055620] systemd[1]: Listening on Network Service Netlink Socket. [ OK ] Listening on Network Service Netlink Socket. [ 4.081998] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 4.107946] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 4.169624] systemd[1]: Mounting Huge Pages File System... Mounting Huge Pages File System... [ 4.203096] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 4.253603] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System... [ 4.274535] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 4.300778] systemd[1]: Starting Journal Service... Starting Journal Service... [ 4.352108] systemd[1]: Starting Set the console keyboard layout... Starting Set the console keyboard layout... [ 4.374112] systemd[1]: Starting Create List of Static Device Nodes... Starting Create List of Static Device Nodes... [ 4.409917] systemd[1]: Starting Load Kernel Module configfs... Starting Load Kernel Module configfs... [ 4.458121] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm... [ 4.487419] systemd[1]: Starting Load Kernel Module efi_pstore... Starting Load Kernel Module efi_pstore... [ 4.515475] systemd[1]: Starting Load Kernel Module fuse... Starting Load Kernel Module fuse... [ 4.551699] fuse: init (API version 7.37) [ 4.565928] systemd[1]: Started Nameserver information manager. [ OK ] Started Nameserver information manager. [ 4.596975] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules... [ 4.634489] at24 1-0056: supply vcc not found, using dummy regulator [ 4.643348] at24 1-0056: 512 byte 24c04 EEPROM, writable, 16 bytes/write [ 4.650999] systemd[1]: Starting Generate network units from Kernel command line... Starting Generate network ‚ts from Kernel command line... [ 4.683013] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems... [ 4.723123] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices... [ 4.751530] systemd[1]: Started Journal Service. [ OK ] Started Journal Service. [ OK ] Mounted Huge Pages File System. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Kernel Debug File System. [ OK ] Finished Set the console keyboard layout. [ OK ] Finished Create List of Static Device Nodes. [ OK ] Finished Load Kernel Module configfs. [ OK ] Finished Load Kernel Module drm. [ OK ] Finished Load Kernel Module efi_pstore. [ OK ] Finished Load Kernel Module fuse. [ OK ] Finished Load Kernel Modules. [ OK ] Finished Generate network units from Kernel command line. [ OK ] Finished Remount Root and Kernel File Systems. [ OK ] Reached target Preparation for Network. Mounting FUSE Control File System... Mounting Kernel Configuration File System... Starting Flush Journal to Persistent Storage... Starting Load/Save Random Seed... [ 5.156438] systemd-journald[145]: Received client request to flush runtime journal. Starting Apply Kernel Variables... Starting Create System Users... [ 5.209513] systemd-journald[145]: File /var/log/journal/5dbfb12414a3456d9014d88183e338b1/system.journal corrupted or uncleanly shut down, renaming and replacing. [ OK ] Mounted FUSE Control File System. [ OK ] Mounted Kernel Configuration File System. [ OK ] Finished Load/Save Random Seed. [ OK ] Finished Apply Kernel Variables. [ OK ] Finished Flush Journal to Persistent Storage. [ OK ] Finished Create System Users. Starting Create Static Device Nodes in /dev... [ OK ] Finished Coldplug All udev Devices. [ OK ] Finished Create Static Device Nodes in /dev. [ OK ] Reached target Preparation for Local File Systems. Starting Rule-based Manage‚for Device Events and Files... [ OK ] Started Rule-based Manager for Device Events and Files. Starting Network Configuration... [ OK ] Started Network Configuration. [ OK ] Found device /dev/ttyS2. ERROR: Unhandled External Abort received on 0x80000000 from S-EL1 ERROR: exception reason=1 syndrome=0x92000010 Unhandled Exception from EL1 x0 = 0xffff000004942d00 x1 = 0x0000000000000000 x2 = 0xffff80000857db20 x3 = 0x6660606860606060 x4 = 0xffff80000990d03c x5 = 0xc0c03000195b5c50 x6 = 0x505c5b1900b0c0c0 x7 = 0x0000000000000000 x8 = 0x0101010101010101 x9 = 0x0000000000000001 x10 = 0x0000000004928500 x11 = 0x0101010101010101 x12 = 0x65726f632e737375 x13 = 0x0000000000000002 x14 = 0x0000000000000001 x15 = 0x0000000000000000 x16 = 0xffff0000014a0000 x17 = 0x0000000000010000 x18 = 0x0000000000034462 x19 = 0xffff00000496dd00 x20 = 0xffff000004942f00 x21 = 0xffff000004942fd0 x22 = 0xffff00000496c000 x23 = 0xffff000004942d00 x24 = 0xffff000004942f80 x25 = 0x0000000000000002 x26 = 0xffff800008f4f540 x27 = 0xffff00000496db80 x28 = 0x0000000000000040 x29 = 0xffff8000098335c0 x30 = 0xffff800008578740 scr_el3 = 0x000000000000073d sctlr_el3 = 0x0000000030cd183f cptr_el3 = 0x0000000000000000 tcr_el3 = 0x0000000080803520 daif = 0x00000000000002c0 mair_el3 = 0x00000000004404ff spsr_el3 = 0x0000000020000005 elr_el3 = 0xffff80000857db78 ttbr0_el3 = 0x000000009e78e800 esr_el3 = 0x0000000092000010 far_el3 = 0xffff80000990d03c spsr_el1 = 0x0000000060000005 elr_el1 = 0xffff800008c195e0 spsr_abt = 0x0000000000000000 spsr_und = 0x0000000000000000 spsr_irq = 0x0000000000000000 spsr_fiq = 0x0000000000000000 sctlr_el1 = 0x0000000034d4d91d actlr_el1 = 0x0000000000000000 cpacr_el1 = 0x0000000000300000 csselr_el1 = 0x0000000000000000 sp_el1 = 0xffff8000098335c0 esr_el1 = 0x0000000056000000 ttbr0_el1 = 0x0000000084a91000 ttbr1_el1 = 0x00be000083051000 mair_el1 = 0x000000040044ffff amair_el1 = 0x0000000000000000 tcr_el1 = 0x00000072b5d03590 tpidr_el1 = 0xffff80002ec97000 tpidr_el0 = 0x0000ffff86fda580 tpidrro_el0 = 0x0000000000000000 par_el1 = 0x0000000000000000 mpidr_el1 = 0x0000000080000000 afsr0_el1 = 0x0000000000000000 afsr1_el1 = 0x0000000000000000 contextidr_el1 = 0x0000000000000000 vbar_el1 = 0xffff800008010800 cntp_ctl_el0 = 0x0000000000000005 cntp_cval_el0 = 0x000000008d456935 cntv_ctl_el0 = 0x0000000000000000 cntv_cval_el0 = 0x0000000000000000 cntkctl_el1 = 0x00000000000000d6 sp_el0 = 0x000000009e78b400 isr_el1 = 0x0000000000000040 dacr32_el2 = 0x0000000000000000 ifsr32_el2 = 0x0000000000000000 cpuectlr_el1 = 0x0000000000000040 cpumerrsr_el1 = 0x0000000012000380 l2merrsr_el1 = 0x0000000012007010 cpuactlr_el1 = 0x00001000090ca000