Jump to content

geraldog

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by geraldog

  1. I think you can build it yourself in bullseye. https://gimx.fr/wiki/index.php?title=Development_on_Linux Sure, it doesn't list Armbian Bullseye, but it seems to be just a case of hunting out dependencies, checking out from git, building and setting up permissions.
  2. Hi @ilsalgo ! This guide should help you: https://www.howtogeek.com/116742/how-to-create-a-separate-home-partition-after-installing-ubuntu/
  3. Thanks @balbes150 I'll look into it. By the way I checked out kernel 5.7.0-rc3 and indeed panfrost is behaving more politely. I'm still blacklisting panfrost though.
  4. Thanks for the great work @balbes150 ! Will download from the github repo and test it.
  5. $cd Amlogic_s905-kernel-master $mv .config .some_traces_but_working $make defconfig $/scripts/diffconfig .config .some_traces_but_working > .config.diff $cat .config.diff | grep STANDALONE STANDALONE y -> n $cat .config.diff | grep PREVENT_FIRMWARE_BUILD PREVENT_FIRMWARE_BUILD y -> n Default kernel won't even try to load firmware from /lib/firmware via FW_LOADER after mounting rootfs with these options set! https://github.com/150balbes/Amlogic_s905-kernel/blob/master/arch/arm64/boot/dts/amlogic/meson-gx-p23x-q20x.dtsi &uart_A { status = "okay"; pinctrl-0 = <&uart_a_pins>, <&uart_a_cts_rts_pins>; pinctrl-names = "default"; uart-has-rtscts; bluetooth { compatible = "brcm,bcm43438-bt"; shutdown-gpios = <&gpio GPIOX_17 GPIO_ACTIVE_HIGH>; max-speed = <2000000>; clocks = <&wifi32k>; clock-names = "lpo"; }; }; It may reolace the compatible but it will make a royal mess when loading module hci_uart with both enable-gpios and shutdown-gpios assigned to the same GPIO.
  6. By the way if any of you try this fix, remember to comment out the relevant &uart_A section in meson-gx-p23x-q20x.dtsi otherwise you may have problems!
  7. I'm glad to announce I have WiFi and Bluetooth working with kernel 5.7.0-rc1 pulled from @balbes150 git repository! The box in question is a H96 Pro+ 3GB/32GB (S912). First we must build the kernel with the following options: # CONFIG_STANDALONE is not set # CONFIG_PREVENT_FIRMWARE_BUILD is not set # # Firmware loader # CONFIG_FW_LOADER=y CONFIG_EXTRA_FIRMWARE="" Now me must copy the firmware files to /lib/firmware. You can obtain the firmware for example from here: https://github.com/chewitt/qca-firmware Rename fbtfw11.tlv to rampatch_00230302.bin Also rename tfbtnv11.bin to nvm_00230302.bin. Now create a new meson-gxm-q200-h96proplus.dts file in the arch/arm64/boot/dts directory and add a Makefile rule to it. DTB should be as follows: // SPDX-License-Identifier: (GPL-2.0+ OR MIT) /* * Copyright (c) 2016 Endless Computers, Inc. * Author: Carlo Caione <carlo@endlessm.com> */ /dts-v1/; #include <dt-bindings/input/input.h> #include "meson-gxm.dtsi" #include "meson-gx-p23x-q20x.dtsi" / { compatible = "amlogic,q200", "amlogic,s912", "amlogic,meson-gxm"; model = "Amlogic Meson GXM (S912) Q200 Development Board"; adc-keys { compatible = "adc-keys"; io-channels = <&saradc 0>; io-channel-names = "buttons"; keyup-threshold-microvolt = <1710000>; button-function { label = "Update"; linux,code = <KEY_VENDOR>; press-threshold-microvolt = <10000>; }; }; gpio-keys-polled { compatible = "gpio-keys-polled"; #address-cells = <1>; #size-cells = <0>; poll-interval = <100>; button@0 { label = "power"; linux,code = <KEY_POWER>; gpios = <&gpio_ao GPIOAO_2 GPIO_ACTIVE_LOW>; }; }; }; /* Q200 has exclusive choice between internal or external PHY */ &ethmac { pinctrl-0 = <&eth_pins>; pinctrl-names = "default"; /* Select external PHY by default */ phy-handle = <&external_phy>; amlogic,tx-delay-ns = <2>; /* External PHY is in RGMII */ phy-mode = "rgmii"; }; &external_mdio { external_phy: ethernet-phy@0 { /* Realtek RTL8211F (0x001cc916) */ reg = <0>; max-speed = <1000>; /* External PHY reset is shared with internal PHY Led signal */ reset-assert-us = <10000>; reset-deassert-us = <30000>; reset-gpios = <&gpio GPIOZ_14 GPIO_ACTIVE_LOW>; interrupt-parent = <&gpio_intc>; /* MAC_INTR on GPIOZ_15 */ interrupts = <25 IRQ_TYPE_LEVEL_LOW>; }; }; &uart_A { status = "okay"; pinctrl-0 = <&uart_a_pins>, <&uart_a_cts_rts_pins>; pinctrl-names = "default"; uart-has-rtscts; bluetooth { compatible = "qcom,qca9377-bt"; enable-gpios = <&gpio GPIOX_17 GPIO_ACTIVE_HIGH>; max-speed = <2000000>; clocks = <&wifi32k>; clock-names = "lpo"; }; }; Build the kernel and enjoy!
  8. I was able to reinstate sound via HDMI after a kernel update by running amixer -c0 sset 'AIU HDMI CTRL SRC' I2S There it is, in case it helps anybody out.
  9. I can confirm that high temperature issues I ran with @balbes150 kernel from git repository are related to Panfrost. Blacklisting Panfrost also makes you able to reboot as @balbes150 pointed out. Still working on bluetooth
  10. Panfrost support still sucks at this point But it's moving fast!
  11. Try to recompile the kernel with CONFIG_SND_VIRMIDI=m If you need help please ask!
  12. @balbes150 I'm recompiling your kernel to see if I can get Bluetooth working on boards that use QCA9377 It should be a simple DTB update + compiling firmware into the kernel
  13. Perhaps it would be wise to state in the guide that you need to tell dpkg to hold kernel updates if you want to use apt update/upgrade
  14. Thanks and much respect to you my friend! Would you care to explain how to get sound working again after a kernel upgrade? Also, like I said, there is something seriously wrong with Panfrost. I know this comes from upstream and there's likely little you can do to solve it, but could it be that the overheating I'm experiencing in the new Kernel could be related to Panfrost? Also, I got WiFi working like I said with your new kernel, and I'd like to help other people have this benefit too. What is the correct way to add foreign firmware to the kernel?
  15. I can now confirm WIFI working on Armbian running on my H96 Pro+ 3G/32GB with kernel 5.7.0-rc1 pulled from balbes150 git repository!!! I had to recompile the kernel with those options as I stated earlier, the trick was to include both firmware-5.bin and firnware-sdio-5.bin from here: https://github.com/erstrom/ath10k-firmware/tree/master/QCA9377/hw1.0/untested It still complains about not finding the board sdio revision, but it's working! [ 11.724917] ath10k_sdio mmc2:0001:1: qca9377 hw1.1 sdio target 0x05020001 chip_id 0x00000000 sub 0000:0000 [ 11.741825] ath10k_sdio mmc2:0001:1: kconfig debug 0 debugfs 0 tracing 0 dfs 0 testmode 0 [ 11.742212] ath10k_sdio mmc2:0001:1: firmware ver WLAN.TF.1.1.1-00061-QCATFSWPZ-1 api 5 features ignore-otp crc32 7746e551 [ 11.911249] ath10k_sdio mmc2:0001:1: failed to fetch board data for bus=sdio,vendor=0271,device=0701,subsystem-vendor=0000,subsystem-device=0000 from ath10k/QCA9377/hw1.0/board-2.bin [ 11.911275] ath10k_sdio mmc2:0001:1: board_file api 1 bmi_id N/A crc32 544289f7 [ 13.132544] ath10k_sdio mmc2:0001:1: htt-ver 3.32 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1 The problem with this new kernel, besides all the problems with HIGH TEMP, illegible graphics and inability to reboot is that I got now sound $ dmesg | grep sound [ 2.930837] No soundcards found. [ 33.761309] platform sound: deferred probe pending But certainly high hopes y'all! I'll try bluetooth next as per this thread: https://www.mail-archive.com/search?l=ath10k@lists.infradead.org&q=subject:"QCA9377"&o=newest&f=1
  16. Also I just finished running that ultimate errand! Trying to activate wireless and bluetooth for these boxes! Mine is a H96 Pro+ like I mentioned. 3G/32GB S912 I recompiled balbes150 "s905" kernel from github, actually version 5.7.0-rc1 Setting: # CONFIG_STANDALONE is not set # CONFIG_PREVENT_FIRMWARE_BUILD is not set CONFIG_FW_LOADER=y CONFIG_EXTRA_FIRMWARE="ath10k/QCA9377/hw1.0/board.bin ath10k/QCA9377/hw1.0/board-2.bin ath10k/QCA9377/hw1.0/firmware-6.bin" CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware" I got these files from a nonfree package of RPi I didn't try firmware-5.bin though, maybe that would work? Still got: ath10k_sdio mmc2:0001:1: Failed to find firmware-N.bin (N between 2 and 6) from ath10k/QCA9377/hw1.0: -2 ath10k_sdio mmc2:0001:1: could not fetch firmware files (-2)
  17. Hello again, balbes150! First off, a BIG thank you for your unvaluable work! The ARMBIAN project certainly deserves a donation! I'm here to report on the Armbian_20.05.3_Arm-64_bullseye_current_5.7.0-rc2_20200425.img. Let me tell you, I did not flash the image to a SD Card. Instead I only updated the kernel, within a live system that was previously running kernel 5.5.0-rc6. That's probably why sound did not work But there were a few other problems that I'd like to report. [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.7.0-rc2-arm-64 (root@vbox) (gcc version 8.3.0 (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)), GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 2.32.0.20190321) #20.05.3 SMP PREEMPT Sat Apr 25 13:17:40 MSK 2020 [ 0.000000] Machine model: Amlogic Meson GXM (S912) Q200 Development Board [ 0.000000] efi: UEFI not found. [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000a3400000, size 256 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] On node 0 totalpages: 740096 [ 0.000000] DMA zone: 4032 pages used for memmap [ 0.000000] DMA zone: 0 pages reserved [ 0.000000] DMA zone: 248576 pages, LIFO batch:63 [ 0.000000] DMA32 zone: 7680 pages used for memmap [ 0.000000] DMA32 zone: 491520 pages, LIFO batch:63 [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv0.2 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: Trusted OS migration not required [ 0.000000] percpu: Embedded 22 pages/cpu s51160 r8192 d30760 u90112 [ 0.000000] pcpu-alloc: s51160 r8192 d30760 u90112 alloc=22*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 728384 [ 0.000000] Kernel command line: root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 mac=78:c2:c0:9a:ff:49 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: mapped [mem 0x3bfff000-0x3ffff000] (64MB) [ 0.000000] Memory: 2530692K/2960384K available (16124K kernel code, 1514K rwdata, 6980K rodata, 3904K init, 944K bss, 167548K reserved, 262144K cma-reserved) [ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x84/0x158 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] irq_meson_gpio: 110 to 8 gpio interrupt mux initialized [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000421] Console: colour dummy device 80x25 [ 0.000748] printk: console [tty0] enabled [ 0.000795] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000817] pid_max: default: 32768 minimum: 301 [ 0.000974] LSM: Security Framework initializing [ 0.001037] SELinux: Initializing. [ 0.001171] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.001202] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.002884] rcu: Hierarchical SRCU implementation. [ 0.005587] EFI services will not be available. [ 0.006093] smp: Bringing up secondary CPUs ... [ 0.006638] Detected VIPT I-cache on CPU1 [ 0.006696] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.007292] Detected VIPT I-cache on CPU2 [ 0.007339] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.007875] Detected VIPT I-cache on CPU3 [ 0.007918] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.008514] Detected VIPT I-cache on CPU4 [ 0.008574] CPU4: Booted secondary processor 0x0000000100 [0x410fd034] [ 0.009163] Detected VIPT I-cache on CPU5 [ 0.009190] CPU5: Booted secondary processor 0x0000000101 [0x410fd034] [ 0.009722] Detected VIPT I-cache on CPU6 [ 0.009748] CPU6: Booted secondary processor 0x0000000102 [0x410fd034] [ 0.010271] Detected VIPT I-cache on CPU7 [ 0.010297] CPU7: Booted secondary processor 0x0000000103 [0x410fd034] [ 0.010387] smp: Brought up 1 node, 8 CPUs [ 0.010520] SMP: Total of 8 processors activated. [ 0.010533] CPU features: detected: 32-bit EL0 Support [ 0.010545] CPU features: detected: CRC32 instructions [ 0.024663] CPU: All CPU(s) started at EL2 [ 0.024735] alternatives: patching kernel code [ 0.026511] devtmpfs: initialized [ 0.033268] Registered cp15_barrier emulation handler [ 0.033308] Registered setend emulation handler [ 0.033326] KASLR disabled due to lack of seed [ 0.033729] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.033775] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) [ 0.041984] xor: measuring software checksum speed [ 0.080080] 8regs : 1977.000 MB/sec [ 0.120113] 32regs : 2269.000 MB/sec [ 0.160149] arm64_neon: 1986.000 MB/sec [ 0.160162] xor: using function: 32regs (2269.000 MB/sec) [ 0.160230] pinctrl core: initialized pinctrl subsystem [ 0.161054] thermal_sys: Registered thermal governor 'step_wise' [ 0.161410] DMI not present or invalid. [ 0.162027] NET: Registered protocol family 16 [ 0.164099] DMA: preallocated 256 KiB pool for atomic allocations [ 0.164156] audit: initializing netlink subsys (disabled) [ 0.164410] audit: type=2000 audit(0.164:1): state=initialized audit_enabled=0 res=1 [ 0.165812] cpuidle: using governor ladder [ 0.165957] cpuidle: using governor menu [ 0.166319] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.166493] ASID allocator initialised with 65536 entries [ 0.167329] Serial: AMBA PL011 UART driver [ 0.184237] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.184266] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.184280] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.184293] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.189694] cryptd: max_cpu_qlen set to 1000 [ 0.264369] raid6: neonx8 gen() 1790 MB/s [ 0.332412] raid6: neonx8 xor() 1337 MB/s [ 0.400480] raid6: neonx4 gen() 1839 MB/s [ 0.468546] raid6: neonx4 xor() 1325 MB/s [ 0.536613] raid6: neonx2 gen() 1753 MB/s [ 0.604675] raid6: neonx2 xor() 1214 MB/s [ 0.672748] raid6: neonx1 gen() 1530 MB/s [ 0.740813] raid6: neonx1 xor() 1040 MB/s [ 0.808878] raid6: int64x8 gen() 1240 MB/s [ 0.876965] raid6: int64x8 xor() 652 MB/s [ 0.945011] raid6: int64x4 gen() 1391 MB/s [ 1.013063] raid6: int64x4 xor() 707 MB/s [ 1.081123] raid6: int64x2 gen() 1182 MB/s [ 1.149188] raid6: int64x2 xor() 624 MB/s [ 1.217246] raid6: int64x1 gen() 879 MB/s [ 1.285317] raid6: int64x1 xor() 457 MB/s [ 1.285330] raid6: using algorithm neonx4 gen() 1839 MB/s [ 1.285343] raid6: .... xor() 1325 MB/s, rmw enabled [ 1.285356] raid6: using neon recovery algorithm [ 1.285982] ACPI: Interpreter disabled. [ 1.287367] iommu: Default domain type: Translated [ 1.287715] vgaarb: loaded [ 1.288441] SCSI subsystem initialized [ 1.288639] libata version 3.00 loaded. [ 1.288907] usbcore: registered new interface driver usbfs [ 1.288964] usbcore: registered new interface driver hub [ 1.289055] usbcore: registered new device driver usb [ 1.289571] pps_core: LinuxPPS API ver. 1 registered [ 1.289586] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.289624] PTP clock support registered [ 1.289657] EDAC MC: Ver: 3.0.0 [ 1.290731] FPGA manager framework [ 1.290860] Advanced Linux Sound Architecture Driver Initialized. [ 1.291503] NetLabel: Initializing [ 1.291519] NetLabel: domain hash size = 128 [ 1.291530] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.291600] NetLabel: unlabeled traffic allowed by default [ 1.292185] clocksource: Switched to clocksource arch_sys_counter [ 1.292513] VFS: Disk quotas dquot_6.6.0 [ 1.292591] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.292737] FS-Cache: Loaded [ 1.293201] pnp: PnP ACPI: disabled [ 1.299761] NET: Registered protocol family 2 [ 1.300406] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) [ 1.300489] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 1.300750] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) [ 1.301225] TCP: Hash tables configured (established 32768 bind 32768) [ 1.301428] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 1.301536] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 1.301887] NET: Registered protocol family 1 [ 1.302364] RPC: Registered named UNIX socket transport module. [ 1.302384] RPC: Registered udp transport module. [ 1.302396] RPC: Registered tcp transport module. [ 1.302408] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.302427] NET: Registered protocol family 44 [ 1.302451] PCI: CLS 0 bytes, default 64 [ 1.302687] Trying to unpack rootfs image as initramfs... [ 1.850590] Freeing initrd memory: 10068K [ 1.851791] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 2.077722] Initialise system trusted keyrings [ 2.077993] workingset: timestamp_bits=46 max_order=20 bucket_order=0 [ 2.084793] zbud: loaded [ 2.086476] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 2.086822] FS-Cache: Netfs 'nfs' registered for caching [ 2.087579] NFS: Registering the id_resolver key type [ 2.087623] Key type id_resolver registered [ 2.087635] Key type id_legacy registered [ 2.087655] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 2.087670] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 2.089264] FS-Cache: Netfs 'cifs' registered for caching [ 2.089669] Key type cifs.spnego registered [ 2.089696] Key type cifs.idmap registered [ 2.089727] ntfs: driver 2.1.32 [Flags: R/W]. [ 2.090454] JFS: nTxBlock = 8192, nTxLock = 65536 [ 2.096322] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled [ 2.098455] ocfs2: Registered cluster interface o2cb [ 2.098736] OCFS2 User DLM kernel interface loaded [ 2.100992] gfs2: GFS2 installed [ 2.125775] NET: Registered protocol family 38 [ 2.125814] Key type asymmetric registered [ 2.125827] Asymmetric key parser 'x509' registered [ 2.125840] Asymmetric key parser 'pkcs8' registered [ 2.125908] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 2.126107] io scheduler mq-deadline registered [ 2.126124] io scheduler kyber registered [ 2.126366] io scheduler bfq registered [ 2.143966] soc soc0: Amlogic Meson GXM (S912) Revision 22:a (82:2) Detected [ 2.149032] Serial: 8250/16550 driver, 5 ports, IRQ sharing enabled [ 2.151263] Serial: AMBA driver [ 2.151708] c11084c0.serial: ttyAML6 at MMIO 0xc11084c0 (irq = 12, base_baud = 1500000) is a meson_uart [ 2.151910] serial serial0: tty port ttyAML6 registered [ 2.152193] c81004c0.serial: ttyAML0 at MMIO 0xc81004c0 (irq = 15, base_baud = 1500000) is a meson_uart [ 3.146468] printk: console [ttyAML0] enabled [ 3.167120] brd: module loaded [ 3.178895] loop: module loaded [ 3.184571] libphy: Fixed MDIO Bus: probed [ 3.185966] meson8b-dwmac c9410000.ethernet: IRQ eth_wake_irq not found [ 3.189651] meson8b-dwmac c9410000.ethernet: IRQ eth_lpi not found [ 3.195857] meson8b-dwmac c9410000.ethernet: PTP uses main clock [ 3.201699] meson8b-dwmac c9410000.ethernet: no reset control found [ 3.208536] meson8b-dwmac c9410000.ethernet: User ID: 0x11, Synopsys ID: 0x37 [ 3.214994] meson8b-dwmac c9410000.ethernet: DWMAC1000 [ 3.220152] meson8b-dwmac c9410000.ethernet: DMA HW capability register supported [ 3.227567] meson8b-dwmac c9410000.ethernet: RX Checksum Offload Engine supported [ 3.234983] meson8b-dwmac c9410000.ethernet: COE Type 2 [ 3.240158] meson8b-dwmac c9410000.ethernet: TX Checksum insertion supported [ 3.247144] meson8b-dwmac c9410000.ethernet: Wake-Up On Lan supported [ 3.253559] meson8b-dwmac c9410000.ethernet: Normal descriptors [ 3.259393] meson8b-dwmac c9410000.ethernet: Ring mode enabled [ 3.265171] meson8b-dwmac c9410000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 3.273598] libphy: stmmac: probed [ 3.278139] VFIO - User Level meta-driver version: 0.3 [ 3.284738] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.288042] ehci-pci: EHCI PCI platform driver [ 3.292515] ehci-platform: EHCI generic platform driver [ 3.297865] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 3.303747] ohci-pci: OHCI PCI platform driver [ 3.308203] ohci-platform: OHCI generic platform driver [ 3.314186] usbcore: registered new interface driver usb-storage [ 3.319521] mousedev: PS/2 mouse device common for all mice [ 3.325937] i2c /dev entries driver [ 3.332118] sdhci: Secure Digital Host Controller Interface driver [ 3.334360] sdhci: Copyright(c) Pierre Ossman [ 3.338677] Synopsys Designware Multimedia Card Interface Driver [ 3.346491] meson-gx-mmc d0072000.mmc: Got CD GPIO [ 3.377487] meson-gx-mmc d0074000.mmc: allocated mmc-pwrseq [ 3.404964] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.405945] ledtrig-cpu: registered to indicate activity on CPUs [ 3.411642] meson-sm: secure-monitor enabled [ 3.415751] gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 3.416211] mmc0: new high speed SDHC card at address 0001 [ 3.423173] gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 3.429196] mmcblk0: mmc0:0001 USD00 29.0 GiB [ 3.442721] mmcblk0: p1 p2 [ 3.452958] hid: raw HID events driver (C) Jiri Kosina [ 3.453255] usbcore: registered new interface driver usbhid [ 3.458023] usbhid: USB HID core driver [ 3.462780] platform-mhu c883c404.mailbox: Platform MHU Mailbox registered [ 3.473915] no UART detected at 0x1 [ 3.479858] NET: Registered protocol family 17 [ 3.480201] Key type dns_resolver registered [ 3.483576] registered taskstats version 1 [ 3.486994] Loading compiled-in X.509 certificates [ 3.491921] zswap: loaded using pool lzo/zbud [ 3.496537] Key type ._fscrypt registered [ 3.500007] Key type .fscrypt registered [ 3.503893] Key type fscrypt-provisioning registered [ 3.510001] Btrfs loaded, crc32c=crc32c-generic [ 3.531759] mmc1: new HS200 MMC card at address 0001 [ 3.532634] mmcblk1: mmc1:0001 032GE4 29.1 GiB [ 3.535891] mmcblk1boot0: mmc1:0001 032GE4 partition 1 4.00 MiB [ 3.541814] mmcblk1boot1: mmc1:0001 032GE4 partition 2 4.00 MiB [ 3.543483] Key type encrypted registered [ 3.547589] mmcblk1rpmb: mmc1:0001 032GE4 partition 3 4.00 MiB, chardev (241:0) [ 3.573719] meson-drm d0100000.vpu: Queued 3 outputs on vpu [ 3.574119] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 3.608260] meson-dw-hdmi c883a000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) [ 3.613024] meson-dw-hdmi c883a000.hdmi-tx: registered DesignWare HDMI I2C bus driver [ 3.621204] meson-drm d0100000.vpu: bound c883a000.hdmi-tx (ops meson_dw_hdmi_ops) [ 3.628331] [drm] Initialized meson 1.0.0 20161109 for d0100000.vpu on minor 0 [ 3.710700] random: fast init done [ 3.744324] [drm] kms: can't enable cloning when we probably wanted to. [ 3.896314] meson-dw-hdmi c883a000.hdmi-tx: HDMI infoframe: Auxiliary Video Information (AVI), version 2, length 13 [ 3.896323] meson-dw-hdmi c883a000.hdmi-tx: colorspace: YCbCr 4:2:2 [ 3.896328] meson-dw-hdmi c883a000.hdmi-tx: scan mode: Underscan [ 3.896332] meson-dw-hdmi c883a000.hdmi-tx: colorimetry: ITU709 [ 3.896337] meson-dw-hdmi c883a000.hdmi-tx: picture aspect: 16:9 [ 3.896342] meson-dw-hdmi c883a000.hdmi-tx: active aspect: Same as Picture [ 3.896347] meson-dw-hdmi c883a000.hdmi-tx: itc: No Data [ 3.896352] meson-dw-hdmi c883a000.hdmi-tx: extended colorimetry: xvYCC 709 [ 3.896357] meson-dw-hdmi c883a000.hdmi-tx: quantization range: Default [ 3.896362] meson-dw-hdmi c883a000.hdmi-tx: nups: Unknown Non-uniform Scaling [ 3.896366] meson-dw-hdmi c883a000.hdmi-tx: video code: 16 [ 3.896371] meson-dw-hdmi c883a000.hdmi-tx: ycc quantization range: Limited [ 3.896376] meson-dw-hdmi c883a000.hdmi-tx: hdmi content type: Graphics [ 3.896380] meson-dw-hdmi c883a000.hdmi-tx: pixel repeat: 0 [ 3.896386] meson-dw-hdmi c883a000.hdmi-tx: bar top 0, bottom 0, left 0, right 0 [ 3.896410] meson-dw-hdmi c883a000.hdmi-tx: HDMI infoframe: Source Product Description (SPD), version 1, length 25 [ 3.896415] meson-dw-hdmi c883a000.hdmi-tx: vendor: DW [ 3.896419] meson-dw-hdmi c883a000.hdmi-tx: product: HDMI [ 3.896425] meson-dw-hdmi c883a000.hdmi-tx: source device information: PC General (0x9) [ 3.959135] Console: switching to colour frame buffer device 240x67 [ 4.125076] meson-drm d0100000.vpu: fb0: mesondrmfb frame buffer device [ 4.132853] libphy: mdio_mux: probed [ 4.143492] libphy: mdio_mux: probed [ 4.196435] phy phy-d0078080.phy.3: unsupported PHY mode 5 [ 4.199640] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 4.201898] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 4.209618] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228f664 hci version 0x100 quirks 0x0000000002010010 [ 4.218830] xhci-hcd xhci-hcd.0.auto: irq 34, io mem 0xc9000000 [ 4.225038] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.07 [ 4.232848] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.239997] usb usb1: Product: xHCI Host Controller [ 4.244830] usb usb1: Manufacturer: Linux 5.7.0-rc2-arm-64 xhci-hcd [ 4.251035] usb usb1: SerialNumber: xhci-hcd.0.auto [ 4.256461] hub 1-0:1.0: USB hub found [ 4.259589] hub 1-0:1.0: 3 ports detected [ 4.263941] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 4.268996] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 [ 4.276578] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed [ 4.283535] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 4.292194] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.07 [ 4.300965] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.308713] usb usb2: Product: xHCI Host Controller [ 4.314896] usb usb2: Manufacturer: Linux 5.7.0-rc2-arm-64 xhci-hcd [ 4.321722] usb usb2: SerialNumber: xhci-hcd.0.auto [ 4.328462] hub 2-0:1.0: USB hub found [ 4.334705] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19) [ 4.344893] meson-gx-mmc d0070000.mmc: allocated mmc-pwrseq [ 4.378053] scpi_protocol scpi: SCP Protocol legacy pre-1.0 firmware [ 4.406053] printk: console [netcon0] enabled [ 4.411704] mmc2: queuing unknown CIS tuple 0x01 (3 bytes) [ 4.418843] netconsole: network logging started [ 4.432544] ALSA device list: [ 4.435809] mmc2: queuing unknown CIS tuple 0x1a (5 bytes) [ 4.438730] No soundcards found. [ 4.449333] mmc2: queuing unknown CIS tuple 0x1b (8 bytes) [ 4.457857] mmc2: queuing unknown CIS tuple 0x14 (0 bytes) [ 4.459469] Freeing unused kernel memory: 3904K [ 4.467090] mmc2: queuing unknown CIS tuple 0x80 (1 bytes) [ 4.469869] Run /init as init process [ 4.475705] mmc2: queuing unknown CIS tuple 0x81 (1 bytes) [ 4.481362] with arguments: [ 4.481367] /init [ 4.487173] with environment: [ 4.487177] HOME=/ [ 4.487180] TERM=linux [ 4.487183] mac=78:c2:c0:9a:ff:49 [ 4.487269] mmc2: queuing unknown CIS tuple 0x82 (1 bytes) [ 4.493195] mmc2: new high speed SDIO card at address 0001 [ 4.596295] usb 1-2: new high-speed USB device number 2 using xhci-hcd [ 4.636611] usb 1-2: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.17 [ 4.652966] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 4.662823] usb 1-2: Product: 4-Port USB 2.0 Hub [ 4.668658] usb 1-2: Manufacturer: Generic [ 4.732550] hub 1-2:1.0: USB hub found [ 4.739971] hub 1-2:1.0: 4 ports detected [ 4.889200] input: adc-keys as /devices/platform/adc-keys/input/input0 [ 4.897308] input: gpio-keys-polled as /devices/platform/gpio-keys-polled/input/input1 [ 4.928311] usb 1-3: new high-speed USB device number 3 using xhci-hcd [ 4.954063] usb 1-3: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.36 [ 4.964902] usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 4.972996] usb 1-3: Product: USB2.0 Hub [ 5.021967] hub 1-3:1.0: USB hub found [ 5.033057] hub 1-3:1.0: 4 ports detected [ 5.100617] usb 1-2.1: new high-speed USB device number 4 using xhci-hcd [ 5.198010] usb 1-2.1: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.17 [ 5.216277] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 5.230093] usb 1-2.1: Product: 4-Port USB 2.0 Hub [ 5.242133] usb 1-2.1: Manufacturer: Generic [ 5.310088] hub 1-2.1:1.0: USB hub found [ 5.331033] hub 1-2.1:1.0: 4 ports detected [ 5.464612] usb 1-2.3: new low-speed USB device number 5 using xhci-hcd [ 5.629150] usb 1-2.3: New USB device found, idVendor=275d, idProduct=0ba6, bcdDevice= 1.00 [ 5.647642] usb 1-2.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 5.658354] usb 1-2.3: Product: USB OPTICAL MOUSE [ 5.708598] usb 1-2.1.1: new high-speed USB device number 6 using xhci-hcd [ 5.782823] input: USB OPTICAL MOUSE as /devices/platform/soc/soc:usb@c9000000/c9000000.dwc3/xhci-hcd.0.auto/usb1/1-2/1-2.3/1-2.3:1.0/0003:275D:0BA6.0001/input/input2 [ 5.850024] usb 1-2.1.1: New USB device found, idVendor=1058, idProduct=25fb, bcdDevice=30.04 [ 5.857528] hid-generic 0003:275D:0BA6.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-xhci-hcd.0.auto-2.3/input0 [ 5.864867] usb 1-2.1.1: New USB device strings: Mfr=2, Product=3, SerialNumber=1 [ 5.886433] usb 1-2.1.1: Product: easystore 25FB [ 5.893154] usb 1-2.1.1: Manufacturer: Western Digital [ 5.899855] usb 1-2.1.1: SerialNumber: 3753475858355243 [ 5.908524] usb-storage 1-2.1.1:1.0: USB Mass Storage device detected [ 5.914848] scsi host0: usb-storage 1-2.1.1:1.0 [ 5.984361] usb 1-2.4: new low-speed USB device number 7 using xhci-hcd [ 6.111265] usb 1-2.4: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02 [ 6.136209] usb 1-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 6.147865] usb 1-2.4: Product: USB Keyboard [ 6.157809] usb 1-2.4: Manufacturer: Logitech [ 6.184526] usb 1-2.1.2: new high-speed USB device number 8 using xhci-hcd [ 6.285455] input: Logitech USB Keyboard as /devices/platform/soc/soc:usb@c9000000/c9000000.dwc3/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.0/0003:046D:C31C.0002/input/input3 [ 6.286367] usb 1-2.1.2: New USB device found, idVendor=1058, idProduct=10b8, bcdDevice=10.12 [ 6.374641] usb 1-2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=5 [ 6.382031] usb 1-2.1.2: Product: Elements 10B8 [ 6.387003] usb 1-2.1.2: Manufacturer: Western Digital [ 6.391958] usb 1-2.1.2: SerialNumber: 575846314139353530465A4C [ 6.399994] usb-storage 1-2.1.2:1.0: USB Mass Storage device detected [ 6.430191] scsi host1: usb-storage 1-2.1.2:1.0 [ 6.430907] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-2.4/input0 [ 6.463573] input: Logitech USB Keyboard Consumer Control as /devices/platform/soc/soc:usb@c9000000/c9000000.dwc3/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.1/0003:046D:C31C.0003/input/input4 [ 6.516475] usb 1-2.1.3: new high-speed USB device number 9 using xhci-hcd [ 6.544879] input: Logitech USB Keyboard System Control as /devices/platform/soc/soc:usb@c9000000/c9000000.dwc3/xhci-hcd.0.auto/usb1/1-2/1-2.4/1-2.4:1.1/0003:046D:C31C.0003/input/input5 [ 6.614970] hid-generic 0003:046D:C31C.0003: input,hiddev0,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-xhci-hcd.0.auto-2.4/input1 [ 6.616386] usb 1-2.1.3: New USB device found, idVendor=0480, idProduct=0900, bcdDevice= 3.15 [ 6.712226] cpufreq: __target_index: Failed to change cpu frequency: -5 [ 6.717993] usb 1-2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 6.804202] cpufreq: __target_index: Failed to change cpu frequency: -5 [ 6.818843] usb 1-2.1.3: Product: External USB 3.0 [ 6.904239] cpufreq: __target_index: Failed to change cpu frequency: -5 [ 6.918342] usb 1-2.1.3: Manufacturer: TOSHIBA [ 7.024206] cpufreq: __target_index: Failed to change cpu frequency: -5 [ 7.039981] usb 1-2.1.3: SerialNumber: 20180913010213F [ 7.128233] cpufreq: __target_index: Failed to change cpu frequency: -5 [ 7.148546] scsi 0:0:0:0: Direct-Access WD easystore 25FB 3004 PQ: 0 ANSI: 6 [ 7.148715] usb-storage 1-2.1.3:1.0: USB Mass Storage device detected [ 7.149045] scsi host2: usb-storage 1-2.1.3:1.0 [ 7.171793] usbcore: registered new interface driver uas [ 7.179272] scsi 0:0:0:1: Enclosure WD SES Device 3004 PQ: 0 ANSI: 6 [ 7.202851] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 7.204285] sd 0:0:0:0: [sda] Spinning up disk... [ 7.210889] sd 0:0:0:1: Attached scsi generic sg1 type 13 [ 7.456345] ------------[ cut here ]------------ [ 7.475373] WARNING: CPU: 0 PID: 297 at kernel/time/hrtimer.c:928 hrtimer_forward+0x8c/0xc8 [ 7.480256] thermal thermal_zone0: failed to read out thermal zone (-62) [ 7.495958] Modules linked in: uas gpio_keys_polled adc_keys [ 7.495991] CPU: 0 PID: 297 Comm: kworker/0:2 Not tainted 5.7.0-rc2-arm-64 #20.05.3 [ 7.553110] Hardware name: Amlogic Meson GXM (S912) Q200 Development Board (DT) [ 7.573175] Workqueue: events dbs_work_handler [ 7.591515] pstate: 20000085 (nzCv daIf -PAN -UAO) [ 7.609772] pc : hrtimer_forward+0x8c/0xc8 [ 7.627947] lr : txdone_hrtimer+0xf4/0x118 [ 7.645999] sp : ffff800010003e20 [ 7.663928] x29: ffff800010003e20 x28: ffff0000b797e200 [ 7.681481] x27: ffff800011df5bc0 x26: 0000000000000000 [ 7.698541] x25: 0000000000000001 x24: 0000000000000001 [ 7.715240] x23: ffff0000a28233e8 x22: 00000000000000f8 [ 7.731571] x21: ffff0000a28233b8 x20: ffff0000a28232c0 [ 7.747768] x19: 00000000000f4240 x18: ffff0000a300a700 [ 7.763946] x17: 0000000000000000 x16: 00000000ffffffff [ 7.780106] x15: 0000012bcbb37c94 x14: 00000000000003b8 [ 7.796145] x13: 00000000000003b3 x12: 0000000000000000 [ 7.812045] x11: 0000000000000000 x10: 0000000000000040 [ 7.827770] x9 : ffff800012b277e8 x8 : ffff800012b277e0 [ 7.843367] x7 : 0000000000001816 x6 : 000000002aa76f82 [ 7.858885] x5 : 00ffffffffffffff x4 : 00000001bc2e6915 [ 7.874298] x3 : 0000000000000001 x2 : 00000000000f4240 [ 7.889732] x1 : 00000001bc2e812b x0 : ffff0000a28233e8 [ 7.905071] Call trace: [ 7.919864] hrtimer_forward+0x8c/0xc8 [ 7.934244] __hrtimer_run_queues+0x11c/0x1b0 [ 7.948562] hrtimer_interrupt+0xe8/0x248 [ 7.962791] arch_timer_handler_phys+0x30/0x40 [ 7.977061] handle_percpu_devid_irq+0x84/0x148 [ 7.991308] generic_handle_irq+0x30/0x48 [ 8.005450] __handle_domain_irq+0x64/0xc0 [ 8.019515] gic_handle_irq+0x54/0xa8 [ 8.033228] el1_irq+0xcc/0x180 [ 8.046420] __msecs_to_jiffies+0x0/0x28 [ 8.059118] scpi_send_message+0x178/0x298 [ 8.071305] scpi_dvfs_set_idx+0x44/0x68 [ 8.082937] scpi_dvfs_set_rate+0x6c/0x80 [ 8.094147] clk_change_rate+0x14c/0x2a0 [ 8.105163] clk_core_set_rate_nolock+0x1c4/0x1f0 [ 8.116086] clk_set_rate+0x38/0xa8 [ 8.126816] scpi_cpufreq_set_target+0x48/0xb0 [ 8.137497] __cpufreq_driver_target+0x2c4/0x680 [ 8.148067] od_dbs_update+0xbc/0x1a0 [ 8.158511] dbs_work_handler+0x40/0x78 [ 8.168844] process_one_work+0x1e8/0x360 [ 8.179062] worker_thread+0x44/0x490 [ 8.189149] kthread+0x150/0x158 [ 8.199032] ret_from_fork+0x10/0x1c [ 8.208745] ---[ end trace 08915fc8ec85b3ec ]--- [ 8.221934] scsi 1:0:0:0: Direct-Access WD Elements 10B8 1012 PQ: 0 ANSI: 6 [ 8.223146] scsi 2:0:0:0: Direct-Access TOSHIBA External USB 3.0 5438 PQ: 0 ANSI: 6 [ 8.224584] . [ 8.245723] sd 2:0:0:0: Attached scsi generic sg2 type 0 [ 8.247326] sd 2:0:0:0: [sdb] 3907029164 512-byte logical blocks: (2.00 TB/1.82 TiB) [ 8.251162] sd 1:0:0:0: [sdc] 2930210816 512-byte logical blocks: (1.50 TB/1.36 TiB) [ 8.251389] sd 1:0:0:0: Attached scsi generic sg3 type 0 [ 8.253518] sd 2:0:0:0: [sdb] Write Protect is off [ 8.260667] sd 1:0:0:0: [sdc] Write Protect is off [ 8.267922] sd 2:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 8.273197] sd 1:0:0:0: [sdc] Mode Sense: 47 00 10 08 [ 8.278396] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 8.283059] sd 1:0:0:0: [sdc] No Caching mode page found [ 8.296921] sd 1:0:0:0: [sdc] Assuming drive cache: write through [ 8.557091] EXT4-fs (mmcblk0p2): mounted filesystem with writeback data mode. Opts: data=writeback [ 9.248431] . [ 9.620514] systemd[1]: System time before build time, advancing clock. [ 9.922245] NET: Registered protocol family 10 [ 10.006730] Segment Routing with IPv6 [ 10.081739] systemd[1]: systemd 245.5-1 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) [ 10.110986] systemd[1]: Detected architecture arm64. [ 10.179046] systemd[1]: Set hostname to <arm>. [ 10.272276] . [ 10.928248] sdb: sdb1 [ 10.947085] sd 2:0:0:0: [sdb] Attached SCSI disk [ 10.993302] systemd[1]: /lib/systemd/system/dbus.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/dbus/system_bus_socket → /run/dbus/system_bus_socket; please update the unit file accordingly. [ 11.296484] . [ 11.303876] random: systemd: uninitialized urandom read (16 bytes read) [ 11.319381] systemd[1]: Created slice system-getty.slice. [ 11.330329] random: systemd: uninitialized urandom read (16 bytes read) [ 11.338330] systemd[1]: Created slice system-modprobe.slice. [ 11.349781] random: systemd: uninitialized urandom read (16 bytes read) [ 11.357982] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 11.372871] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 11.386813] systemd[1]: Created slice User and Session Slice. [ 11.399519] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 11.414308] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 11.428792] systemd[1]: Condition check resulted in Arbitrary Executable File Formats File System Automount Point being skipped. [ 11.441101] systemd[1]: Reached target Local Encrypted Volumes. [ 11.454365] systemd[1]: Reached target Remote File Systems. [ 11.467307] systemd[1]: Reached target Slices. [ 11.480147] systemd[1]: Reached target Swap. [ 11.492924] systemd[1]: Reached target System Time Set. [ 11.506718] systemd[1]: Listening on Syslog Socket. [ 11.520759] systemd[1]: Listening on fsck to fsckd communication Socket. [ 11.535483] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 11.550811] systemd[1]: Listening on Journal Audit Socket. [ 11.564931] systemd[1]: Listening on Journal Socket (/dev/log). [ 11.579428] systemd[1]: Listening on Journal Socket. [ 11.593756] systemd[1]: Listening on udev Control Socket. [ 11.607597] systemd[1]: Listening on udev Kernel Socket. [ 11.627199] systemd[1]: Mounting Huge Pages File System... [ 11.644032] systemd[1]: Mounting POSIX Message Queue File System... [ 11.661503] systemd[1]: Mounting Kernel Debug File System... [ 11.673842] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 11.689180] systemd[1]: Starting Restore / save the current clock... [ 11.708693] systemd[1]: Starting Set the console keyboard layout... [ 11.726174] systemd[1]: Starting Create list of static device nodes for the current kernel... [ 11.741859] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped. [ 11.755011] systemd[1]: Started Nameserver information manager. [ 11.768794] systemd[1]: Reached target Network (Pre). [ 11.799621] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 11.810067] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 11.825120] systemd[1]: Starting Journal Service... [ 11.851214] systemd[1]: Starting Load Kernel Modules... [ 11.871266] systemd[1]: Starting Remount Root and Kernel File Systems... [ 11.889131] systemd[1]: Starting udev Coldplug all Devices... [ 11.907412] systemd[1]: Mounted Huge Pages File System. [ 11.914257] EXT4-fs (mmcblk0p2): re-mounted. Opts: commit=600,errors=remount-ro [ 11.930928] systemd[1]: Mounted POSIX Message Queue File System. [ 11.943722] systemd[1]: Mounted Kernel Debug File System. [ 11.957764] systemd[1]: Finished Restore / save the current clock. [ 11.972279] systemd[1]: Finished Create list of static device nodes for the current kernel. [ 11.991724] systemd[1]: Finished Load Kernel Modules. [ 12.007029] systemd[1]: Finished Remount Root and Kernel File Systems. [ 12.021889] systemd[1]: Condition check resulted in FUSE Control File System being skipped. [ 12.035406] systemd[1]: Mounting Kernel Configuration File System... [ 12.058038] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ 12.068102] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 12.084837] systemd[1]: Starting Load/Save Random Seed... [ 12.101806] systemd[1]: Starting Apply Kernel Variables... [ 12.119072] systemd[1]: Starting Create System Users... [ 12.139200] systemd[1]: Mounted Kernel Configuration File System. [ 12.180125] systemd[1]: Finished Set the console keyboard layout. [ 12.225047] systemd[1]: Finished Apply Kernel Variables. [ 12.240975] systemd[1]: Finished Create System Users. [ 12.258195] systemd[1]: Starting Create Static Device Nodes in /dev... [ 12.320227] . [ 12.334106] systemd[1]: Finished udev Coldplug all Devices. [ 12.354205] systemd[1]: Finished Create Static Device Nodes in /dev. [ 12.367478] systemd[1]: Reached target Local File Systems (Pre). [ 12.385830] systemd[1]: Mounting /tmp... [ 12.403220] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 12.421368] systemd[1]: Starting udev Kernel Device Manager... [ 12.437437] systemd[1]: Mounted /tmp. [ 12.452126] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 12.731457] systemd[1]: Started udev Kernel Device Manager. [ 12.953218] systemd[1]: Started Journal Service. [ 13.127163] debugfs: Directory 'c1105400.audio-controller' with parent 'GX-HDMI-SPDIF' already present! [ 13.138907] debugfs: Directory 'c1105400.audio-controller' with parent 'GX-HDMI-SPDIF' already present! [ 13.151164] gx-sound-card sound: snd-soc-dummy-dai <-> I2S FIFO mapping ok [ 13.155821] systemd-journald[474]: Received client request to flush runtime journal. [ 13.171577] gx-sound-card sound: snd-soc-dummy-dai <-> SPDIF FIFO mapping ok [ 13.181880] gx-sound-card sound: multicodec <-> I2S Encoder mapping ok [ 13.190480] gx-sound-card sound: dit-hifi <-> SPDIF Encoder mapping ok [ 13.199069] gx-sound-card sound: i2s-hifi <-> CODEC CTRL HDMI OUT mapping ok [ 13.208125] gx-sound-card sound: t9015-hifi <-> ACODEC CTRL ACODEC OUT mapping ok [ 13.208986] Registered IR keymap rc-empty [ 13.217644] gx-sound-card sound: ASoC: no DMI vendor name! [ 13.225253] rc rc0: meson-ir as /devices/platform/soc/c8100000.bus/c8100580.ir/rc/rc0 [ 13.242559] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter [ 13.253970] input: meson-ir as /devices/platform/soc/c8100000.bus/c8100580.ir/rc/rc0/input6 [ 13.254783] panfrost d00c0000.gpu: clock rate = 666666666 [ 13.264790] meson-ir c8100580.ir: receiver initialized [ 13.271877] panfrost d00c0000.gpu: supply mali not found, using dummy regulator [ 13.288791] panfrost d00c0000.gpu: mali-t820 id 0x820 major 0x1 minor 0x0 status 0x0 [ 13.289501] mc: Linux media interface: v0.10 [ 13.298380] panfrost d00c0000.gpu: features: 00000000,101e76ff, issues: 00000000,24040400 [ 13.298392] panfrost d00c0000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xff JS:0x7 [ 13.298397] panfrost d00c0000.gpu: shader_present=0x7 l2_present=0x1 [ 13.299405] panfrost d00c0000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 [ 13.303819] panfrost d00c0000.gpu: GPU Fault 0x00000088 (SHAREABILITY_FAULT) at 0x0000000100000010 [ 13.303828] panfrost d00c0000.gpu: There were multiple GPU faults - some have not been reported [ 13.314007] Unable to handle kernel NULL pointer dereference at virtual address 00000000000000f5 [ 13.325864] sdc: sdc1 [ 13.333744] Mem abort info: [ 13.333751] ESR = 0x96000004 [ 13.333763] EC = 0x25: DABT (current EL), IL = 32 bits [ 13.344196] . [ 13.354778] sd 1:0:0:0: [sdc] Attached SCSI disk [ 13.363354] SET = 0, FnV = 0 [ 13.363358] EA = 0, S1PTW = 0 [ 13.363360] Data abort info: [ 13.363362] ISV = 0, ISS = 0x00000004 [ 13.363364] CM = 0, WnR = 0 [ 13.363371] user pgtable: 4k pages, 48-bit VAs, pgdp=00000000a1627000 [ 13.363379] [00000000000000f5] pgd=0000000000000000 [ 13.466958] Internal error: Oops: 96000004 [#1] PREEMPT SMP [ 13.469474] videodev: Linux video capture interface: v2.00 [ 13.471948] Modules linked in: videodev(+) ecdh_generic mc ecc panfrost(+) crct10dif_ce(+) rfkill meson_ir rc_core ao_cec snd_soc_spdif_tx snd_soc_simple_amplifier gpu_sched meson_rng dw_hdmi_cec display_connector ip_tables x_tables ipv6 nf_defrag_ipv6 uas gpio_keys_polled adc_keys [ 13.508697] CPU: 0 PID: 509 Comm: systemd-udevd Tainted: G W 5.7.0-rc2-arm-64 #20.05.3 [ 13.517830] Hardware name: Amlogic Meson GXM (S912) Q200 Development Board (DT) [ 13.525079] pstate: 60000005 (nZCv daif -PAN -UAO) [ 13.530521] pc : dev_pm_opp_put_regulators+0x14/0xb0 [ 13.535961] lr : panfrost_devfreq_init+0x8c/0x1e0 [panfrost] [ 13.541357] sp : ffff80001056b8b0 [ 13.546650] x29: ffff80001056b8b0 x28: 00000000000001ce [ 13.551932] x27: ffff800012b297d0 x26: ffff80000a1cf750 [ 13.557164] x25: ffff80000a1cf580 x24: 0000000000000039 [ 13.562370] x23: ffff80000a1cf1d8 x22: ffff800012b11908 [ 13.567557] x21: ffff0000a08b9880 x20: ffffffffffffffed [ 13.572688] x19: ffff0000a325e410 x18: 0000000000000010 [ 13.577885] x17: 0000000000000000 x16: 0000000000000000 [ 13.583148] x15: 0000000000aaaaaa x14: 0720072007200720 [ 13.588408] x13: 0000000000000001 x12: 0000000000000008 [ 13.593669] x11: 0000000000000007 x10: 0101010101010101 [ 13.598930] x9 : fffffffffffffffd x8 : 7f7f7f7f7f7f7f7f [ 13.604191] x7 : fefefeff646c606d x6 : 00000000000000ff [ 13.609453] x5 : ffff0000a1448000 x4 : ffff0000a19ea880 [ 13.614714] x3 : ffff800012bf9d10 x2 : 0000000000000000 [ 13.619976] x1 : 0000000000000000 x0 : ffffffffffffffed [ 13.625236] Call trace: [ 13.629890] dev_pm_opp_put_regulators+0x14/0xb0 [ 13.634542] panfrost_devfreq_init+0x8c/0x1e0 [panfrost] [ 13.639214] panfrost_probe+0x108/0x1b8 [panfrost] [ 13.643894] platform_drv_probe+0x54/0xa8 [ 13.648554] really_probe+0xdc/0x440 [ 13.653168] driver_probe_device+0xe0/0x138 [ 13.657755] device_driver_attach+0x74/0x80 [ 13.662320] __driver_attach+0xa4/0x170 [ 13.666813] bus_for_each_dev+0x74/0xc8 [ 13.671251] driver_attach+0x24/0x30 [ 13.675601] bus_add_driver+0x19c/0x238 [ 13.679874] driver_register+0x64/0x120 [ 13.684134] __platform_driver_register+0x48/0x58 [ 13.688390] panfrost_driver_init+0x24/0x1000 [panfrost] [ 13.692672] do_one_initcall+0x74/0x1c0 [ 13.696856] do_init_module+0x54/0x210 [ 13.700962] load_module+0x1ca8/0x2010 [ 13.705023] __do_sys_finit_module+0xb4/0x118 [ 13.708204] thermal thermal_zone0: failed to read out thermal zone (-110) [ 13.709016] __arm64_sys_finit_module+0x20/0x30 [ 13.720310] el0_svc_common.constprop.3+0x9c/0x1d8 [ 13.725054] do_el0_svc+0x24/0x90 [ 13.728924] el0_sync_handler+0x150/0x2c0 [ 13.732736] el0_sync+0x158/0x180 [ 13.736540] Code: a9bd7bfd 910003fd a90153f3 aa0003f4 (f9408400) [ 13.741611] ---[ end trace 08915fc8ec85b3ed ]--- [ 13.793737] [drm] kms: can't enable cloning when we probably wanted to. [ 13.874083] Bluetooth: Core ver 2.22 [ 13.878280] Bluetooth: Starting self testing [ 13.899374] Bluetooth: ECDH test passed in 16670 usecs [ 13.906525] Bluetooth: SMP test passed in 2779 usecs [ 13.910765] Bluetooth: Finished self testing [ 13.915089] NET: Registered protocol family 31 [ 13.919281] Bluetooth: HCI device and connection manager initialized [ 13.924924] Bluetooth: HCI socket layer initialized [ 13.929804] Bluetooth: L2CAP socket layer initialized [ 13.934804] Bluetooth: SCO socket layer initialized [ 13.980234] random: crng init done [ 13.985625] random: 7 urandom warning(s) missed due to ratelimiting [ 14.258037] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 14.299013] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 14.368234] . [ 14.494406] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid [ 14.603949] Bluetooth: HCI UART driver ver 2.3 [ 14.609010] Bluetooth: HCI UART protocol H4 registered [ 14.613989] Bluetooth: HCI UART protocol BCSP registered [ 14.619229] Bluetooth: HCI UART protocol LL registered [ 14.624318] Bluetooth: HCI UART protocol ATH3K registered [ 14.624458] Bluetooth: HCI UART protocol Three-wire (H5) registered [ 14.624784] Bluetooth: HCI UART protocol Intel registered [ 14.625018] Bluetooth: HCI UART protocol Broadcom registered [ 14.625060] Bluetooth: HCI UART protocol QCA registered [ 14.625063] Bluetooth: HCI UART protocol AG6XX registered [ 14.625104] Bluetooth: HCI UART protocol Marvell registered [ 14.625404] hci_uart_bcm serial0-0: supply vbat not found, using dummy regulator [ 14.625501] hci_uart_bcm serial0-0: supply vddio not found, using dummy regulator [ 14.643033] systemd-journald[474]: File /var/log/journal/957bec6bcd604faba980975d73790c61/system.journal corrupted or uncleanly shut down, renaming and replacing. [ 14.658379] meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. [ 14.867363] Bluetooth: hci0: BCM: failed to write update baudrate (-56) [ 14.874490] Bluetooth: hci0: Failed to set baudrate [ 14.889369] ath10k_sdio mmc2:0001:1: Failed to find firmware-N.bin (N between 2 and 6) from ath10k/QCA9377/hw1.0: -2 [ 14.902060] ath10k_sdio mmc2:0001:1: could not fetch firmware files (-2) [ 14.955053] mmc2: queuing unknown CIS tuple 0x01 (3 bytes) [ 14.969955] mmc2: queuing unknown CIS tuple 0x1a (5 bytes) [ 14.978985] mmc2: queuing unknown CIS tuple 0x1b (8 bytes) [ 14.984534] mmc2: queuing unknown CIS tuple 0x14 (0 bytes) [ 14.990666] ath10k_sdio mmc2:0001:1: could not probe fw (-2) [ 15.059878] Bluetooth: hci0: BCM: Read verbose config info failed (-56) [ 15.392262] ..ready [ 16.518097] sd 0:0:0:0: [sda] Very big device. Trying to use READ CAPACITY(16). [ 16.532160] sd 0:0:0:0: [sda] 15628052480 512-byte logical blocks: (8.00 TB/7.28 TiB) [ 16.540970] sd 0:0:0:0: [sda] 4096-byte physical blocks [ 16.548199] sd 0:0:0:0: [sda] Write Protect is off [ 16.554747] sd 0:0:0:0: [sda] Mode Sense: 47 00 10 08 [ 16.561698] sd 0:0:0:0: [sda] No Caching mode page found [ 16.568094] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 16.649429] systemd-journald[474]: Failed to read journal file /var/log/journal/957bec6bcd604faba980975d73790c61/user-1000.journal for rotation, trying to move it out of the way: Device or resource busy [ 16.705711] meson8b-dwmac c9410000.ethernet eth0: PHY [0.2009087f:00] driver [RTL8211F Gigabit Ethernet] (irq=36) [ 16.728956] zram: Added device: zram0 [ 16.737412] zram: Added device: zram1 [ 16.738204] zram: Added device: zram2 [ 16.744449] meson8b-dwmac c9410000.ethernet eth0: No Safety Features support found [ 16.768527] meson8b-dwmac c9410000.ethernet eth0: PTP not supported by HW [ 16.777031] zram1: detected capacity change from 0 to 1073741824 [ 16.784761] meson8b-dwmac c9410000.ethernet eth0: configuring for phy/rgmii link mode [ 16.881198] Adding 1048572k swap on /dev/zram1. Priority:5 extents:1 across:1048572k SSFS [ 17.076508] zram0: detected capacity change from 0 to 52428800 [ 17.283175] EXT4-fs (zram0): mounted filesystem without journal. Opts: discard [ 17.292381] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) [ 18.140065] sda: sda1 [ 18.157381] sd 0:0:0:0: [sda] Attached SCSI disk [ 18.388725] meson8b-dwmac c9410000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx [ 18.409021] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 22.473638] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 22.478162] Bluetooth: BNEP filters: protocol multicast [ 22.483161] Bluetooth: BNEP socket layer initialized [ 31.590407] fuse: init (API version 7.31) You can see I got a kernel trace (luckily no panic!) but that had already happened with the old kernel. Maybe my processor on the H96 Pro+ is a little flaky? Could be a hardware issue. The second time I booted the kernel I didn't got the trace. But what in fact happened is that the CPU temp was running HIGH. Usually it idles at 63 C, a bit high but normal as these boxes don't have active ventilation. It was idling at 70 C with the new Kernel! Also, I noticed the new kernel comes with Panfrost. The graphics was horrible on this particular box with Panfrost! Very illegible!! I tried a Youtube 1080p video though and it didn't seem to stutter as much as with the old kernel, so maybe we'll see good things as Panfrost develops. Those were the two issues I noticed, balbes150. A third (minor) one is that systemd was unable to reboot, it stuck there and wouldn't reboot as normal so I had to manually disconnect power. So there it is! Feel free to ask me for more information!
  18. Hi @balbes150 ! Thank you for your prompt reply and thank you for this wonderful release!! I managed to boot the display using an HDMI->VGA adapter and an old CRT monitor. So I won't even ask how to build a DTB that supports AV... What's bothering me now is I don't have wifi. When I try to modprobe the modules you have indicated, I get module not found in the /lib/modules/5.0.2-aml-s905 directory. Why's that? Thanks.
  19. OK, I managed to ssh into the S912 box. I tried running a /boot/hdmi.sh script to set the mode to 576cvbs (although what I need is 480cvbs) but no luck. I don't have a /dev/fb0 so hdmi.sh fails. How can I get the display to work (AV) ? Help please!
  20. Hi all! I tried to install this release on both a MXQ PRO 4K (S905w?) and a H96 PRO PLUS (S912). After the double reboot I get no video signal from the boxes. I tried multiple dtbs and nothing. Could it be because I'm using AV? Maybe it will work with HDMI? Thank you!
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines