Search the Community
Showing results for 'Hash Sum mismatch'.
-
You want to remove the hash tag from the lines you want and add it to the lines you don't want (that character comments out those lines). What you want to end up with is an uEnv.txt file that looks like this (obviously with the dtb file appropriate for your device): LINUX=/vmlinuz INITRD=/uInitrd # aml s9xxx FDT=/dtb/amlogic/meson-sm1-sei610.dtb #FTD=/dtb/amlogic/meson-sm1-sei610.dtb APPEND=root=LABEL=ROOT_EMMC rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 Notice how I removed the other sections for the other chips that you are not working with (as by default some of these other lines are active and would otherwise need to be commented out). Also note that in addition to uncommenting (i.e. removing the hash tag) from the dtb line you want, you also need to do that for the APPEND line. Also, if the first dtb file you try doesn't work, you should try all of the others for your soc, until you either find one that works or exhaust the set of provided dtbs. Quite often there isn't an exact match for your box, and you need to find the one that works the best by trial and error (or if you can find a post in these forums that leverages the experience of someone else with the same box). As long as you are following the other steps (i.e. enabling multiboot via a method appropriate for your Amlogic device - usually, but not always pressing a hidden reset button while powering the device) you should at least get armbian booting.
-
research Need your help - what else beside Etcher
legogris replied to Tido's topic in General chit chat
So, this is how it works (and advance apologies if I misread the conversation and you're talking about something else): First off, if you want to talk semantics, sha1 is technically a cryptographic hash function, not a checksum algorithm. One could even argue that it's overkill for this use-case and that an algortithm made for checksums, such as CRC, is more appropriate (less secure but by far enough to detect random write or read errors, but more performant). The data on the card is read, bit-by-bit (well, on a lover level the reads are buffered for performance reasons, but it makes no practical difference otherwise). The data is then put through the sha1 hash function, which produces a 160-bit hash. A single bit being changed produces a completely different hash. The odds of the hashes matching up in case every single bit doesn't is 1 in ~10^18. For practical purposes, low enough odds to be practically impossible. When we're at those odds, you might as well start thinking about the probability that the read during your verification steps gives you the expected output due to a read error exactly matching the inverse of the write error during the write, RAM errors and cosmic radiation. If you're concerned about well-funded adversaries with a huge dedicated compute cluster deliberately giving you a fake image with the same matching hash, then you might want to look at more cryptographically secure hash functions - in which case replace the `sha1sum` command above with the slower but more secure `sha512sum` (512 bits, or 1 in 10^154). The chances of a collision are small enough that on average, with all the worlds current computing power, we'd be talking millions of years. The number of atoms in the entire universe is believed to be around 10^80. Pick two random atoms in the known universe and the odds of those being the same atom is still vastly higher than SHA-2 producing the same hash after a write error. TLDR; For your purposes, if the checksum validates, so does the written data (given that the checksum verification here is made between data read back from the written card vs the source file and not just between the source file and a website). Etcher did CRC32 until 2018, and is now on SHA512. Looking at the source, usbimager actually reads back the source and the target into memory and does a memcmp (straight-up byte-by-byte comparison): https://gitlab.com/bztsrc/usbimager/-/blob/master/src/main_libui.c#L147 These are all valid approaches, only caveat with the last one being that you need to be able to fit 2x the image size into RAM during the validation -
NanoPi Neo Plus2 479mb Ram available out of 1GB
5kft replied to nikolatesluh's topic in Allwinner A64, H5 and H6
@nikolatesluh. I agree with sfx2000 - can you capture the u-boot process from the serial console and provide it on this thread? Did it show this problem under Ubuntu Core? I've never seen this happen on any of my NEO Plus2s. I just updated to a latest top-of-tree build, and it still shows 1GB RAM, e.g., [ 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: 872848K/1048576K available (10942K kernel code, 728K rwdata, 2812K rodata, 768K init, 292K bss, 44656K reserved, 131072K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. ... total used free shared buff/cache available Mem: 1013188 109144 786436 2980 117608 829460 Swap: 506592 0 506592 -
research Need your help - what else beside Etcher
legogris replied to Tido's topic in General chit chat
Yes - if those two commands return the same output, it means the data in img file and on the sdcard have the same sha1 hash (and therefore contain the exact same bytes). -
Summary: with your extlinux.conf added, I can boot Armbian Ubuntu deskop on my Cubox! Steps taken: Base / Recheck: Download the standard Armbian Ubuntu image Armbian_20.02.7_Cubox-i_bionic_current_5.4.28_desktop.7z, unpack, write to SD card, do NOT add the extlinux.conf, boot it... same behaviour: only the first splash screen, then nothing. So that confirms earlier behavior & my original post. SD card back into my (Ubuntu) laptop, and copy the file: sander@witte2004:~$ cd /media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04 sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04$ ll total 100 drwxr-xr-x 22 root root 4096 mrt 28 18:02 ./ drwxr-x---+ 3 root root 4096 apr 7 14:08 ../ drwxr-xr-x 2 root root 4096 mrt 9 20:17 bin/ drwxr-xr-x 3 root root 4096 mrt 28 18:19 boot/ drwxr-xr-x 2 root root 4096 mrt 28 18:02 dev/ drwxr-xr-x 118 root root 4096 mrt 28 18:15 etc/ drwxr-xr-x 2 root root 4096 apr 24 2018 home/ drwxr-xr-x 17 root root 4096 mrt 28 18:02 lib/ drwx------ 2 root root 16384 mrt 28 18:15 lost+found/ drwxr-xr-x 2 root root 4096 mrt 9 19:54 media/ drwxr-xr-x 2 root root 4096 mrt 9 19:54 mnt/ drwxr-xr-x 2 root root 4096 mrt 9 19:54 opt/ drwxr-xr-x 2 root root 4096 apr 24 2018 proc/ drwx------ 2 root root 4096 mrt 28 18:13 root/ drwxr-xr-x 3 root root 4096 mrt 28 18:18 run/ drwxr-xr-x 2 root root 4096 mrt 28 18:14 sbin/ drwxrwxr-x 2 root root 4096 mrt 28 18:02 selinux/ drwxr-xr-x 2 root root 4096 mrt 9 19:54 srv/ drwxr-xr-x 2 root root 4096 apr 24 2018 sys/ drwxrwxrwt 2 root root 4096 mrt 28 18:14 tmp/ drwxr-xr-x 10 root root 4096 mrt 9 19:55 usr/ drwxr-xr-x 11 root root 4096 mrt 9 19:55 var/ sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04$ cd boot/ sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot$ mkdir extlinux mkdir: cannot create directory ‘extlinux’: Permission denied sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot$ sudo mkdir extlinux [sudo] password for sander: sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot$ cd extlinux/ sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot/extlinux$ ll ~/Downloads/extlinux.conf -rw-r--r-- 1 sander sander 810 apr 7 14:08 /home/sander/Downloads/extlinux.conf sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot/extlinux$ cp ~/Downloads/extlinux.conf . cp: cannot create regular file './extlinux.conf': Permission denied sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot/extlinux$ sudo cp ~/Downloads/extlinux.conf . sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot/extlinux$ ll total 12 drwxr-xr-x 2 root root 4096 apr 7 14:09 ./ drwxr-xr-x 4 root root 4096 apr 7 14:09 ../ -rw-r--r-- 1 root root 810 apr 7 14:09 extlinux.conf sander@witte2004:/media/sander/d0456b88-9549-4375-b5ce-5fdaa9d79e04/boot/extlinux$ Afther that: SD card back into the Cubox, turn on Cubox, splash screen with some extra lines .... black screen ... no signal ... wait ... hey ... more text and a login prompt!!! Login with root/1234, change password, add user, ... X screen! Remote ssh session ... works too! sander@192.168.1.2's password: ____ _ _ ____ __ __ ___ _ _ / ___| _| |__ _____ __ (_)___ \ ___\ \/ / / (_) || | | | | | | | '_ \ / _ \ \/ / | | __) / _ \\ / / /| | || |_ | |__| |_| | |_) | (_) > < | |/ __/ __// \ / / | |__ _| \____\__,_|_.__/ \___/_/\_\ |_|_____\___/_/\_\/_/ |_| |_| Welcome to Armbian Bionic with Linux 5.4.28-imx6 System load: 2.40 1.46 0.65 Up time: 5 min Memory usage: 41 % of 490MB IP: 192.168.1.2 CPU temp: 52°C Usage of /: 65% of 3.4G sander@cubox-i:~$ In case you need the dmesg: sander@cubox-i:~$ dmesg [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.4.28-imx6 (root@builder) (gcc version 8.3.0 (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36))) #20.02.7 SMP Sat Mar 28 16:20:25 CET 2020 [ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] OF: fdt: Machine model: SolidRun Cubox-i Solo/DualLite [ 0.000000] Memory policy: Data cache writeback [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 256 MiB at 0x20000000 [ 0.000000] On node 0 totalpages: 131072 [ 0.000000] Normal zone: 1152 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 131072 pages, LIFO batch:31 [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] percpu: Embedded 19 pages/cpu s45772 r8192 d23860 u77824 [ 0.000000] pcpu-alloc: s45772 r8192 d23860 u77824 alloc=19*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 129920 [ 0.000000] Kernel command line: loglevel=7 coherent_pool=2M cma=256M console=ttymxc0,115200n8 console=tty1 rootwait rootfstype=ext4 root=PARTUUID=4461ca21-01 fbcon=nodefer rd.dm=0 rd.luks=0 rd.lvm=0 raid=noautodetect [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 218856K/524288K available (8563K kernel code, 1394K rwdata, 4792K rodata, 2048K init, 513K bss, 43288K reserved, 262144K cma-reserved, 0K highmem) [ 0.000000] random: get_random_u32 called from __kmem_cache_create+0x2c/0x418 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] ftrace: allocating 41219 entries in 81 pages [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=2. [ 0.000000] Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] GIC physical location is 0xa01000 [ 0.000000] L2C-310 erratum 769419 enabled [ 0.000000] L2C-310 enabling early BRESP for Cortex-A9 [ 0.000000] L2C-310 full line of zeros enabled for Cortex-A9 [ 0.000000] L2C-310 ID prefetch enabled, offset 16 lines [ 0.000000] L2C-310 dynamic clock gating enabled, standby mode enabled [ 0.000000] L2C-310 cache controller enabled, 16 ways, 512 kB [ 0.000000] L2C-310: CACHE_ID 0x410000c8, AUX_CTRL 0x76450001 [ 0.000000] Switching to timer-based delay loop, resolution 333ns [ 0.000008] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns [ 0.000030] clocksource: mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns [ 0.003245] Console: colour dummy device 80x30 [ 0.003716] printk: console [tty1] enabled [ 0.003799] Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=3000) [ 0.003836] pid_max: default: 32768 minimum: 301 [ 0.004215] LSM: Security Framework initializing [ 0.004368] Yama: becoming mindful. [ 0.004440] SELinux: Initializing. [ 0.004590] *** VALIDATE SELinux *** [ 0.004708] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.004745] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.004904] *** VALIDATE tmpfs *** [ 0.005866] *** VALIDATE proc *** [ 0.006311] *** VALIDATE cgroup1 *** [ 0.006343] *** VALIDATE cgroup2 *** [ 0.006452] CPU: Testing write buffer coherency: ok [ 0.006511] CPU0: Spectre v2: using BPIALL workaround [ 0.007011] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.008249] Setting up static identity map for 0x10300000 - 0x103000ac [ 0.010341] rcu: Hierarchical SRCU implementation. [ 0.015915] EFI services will not be available. [ 0.016593] smp: Bringing up secondary CPUs ... [ 0.017654] smp: Brought up 1 node, 1 CPU [ 0.017683] SMP: Total of 1 processors activated (6.00 BogoMIPS). [ 0.017704] CPU: All CPU(s) started in SVC mode. [ 0.018631] devtmpfs: initialized [ 0.031519] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4 [ 0.032326] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.032377] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.045871] pinctrl core: initialized pinctrl subsystem [ 0.048210] DMI not present or invalid. [ 0.049028] NET: Registered protocol family 16 [ 0.058510] DMA: preallocated 2048 KiB pool for atomic coherent allocations [ 0.059319] audit: initializing netlink subsys (disabled) [ 0.061551] cpuidle: using governor menu [ 0.062269] CPU identified as i.MX6DL, silicon rev 1.1 [ 0.063172] audit: type=2000 audit(0.057:1): state=initialized audit_enabled=0 res=1 [ 0.090067] No ATAGs? [ 0.090177] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers. [ 0.090223] hw-breakpoint: maximum watchpoint size is 4 bytes. [ 0.093275] imx6dl-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver [ 0.095717] Serial: AMBA PL011 UART driver [ 2.004951] cryptd: max_cpu_qlen set to 1000 [ 2.024482] alg: No test for 842 (842-generic) [ 2.025070] alg: No test for 842 (842-scomp) [ 2.079204] v_usb2: supplied by v_5v0 [ 2.079573] vcc_3v3: supplied by v_5v0 [ 2.079951] v_usb1: supplied by v_5v0 [ 2.083474] iommu: Default domain type: Translated [ 2.084864] vgaarb: loaded [ 2.086064] SCSI subsystem initialized [ 2.086511] libata version 3.00 loaded. [ 2.086879] usbcore: registered new interface driver usbfs [ 2.086990] usbcore: registered new interface driver hub [ 2.087224] usbcore: registered new device driver usb [ 2.088147] pps_core: LinuxPPS API ver. 1 registered [ 2.088177] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 2.088227] PTP clock support registered [ 2.088652] EDAC MC: Ver: 3.0.0 [ 2.091680] NetLabel: Initializing [ 2.091709] NetLabel: domain hash size = 128 [ 2.091726] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 2.091831] NetLabel: unlabeled traffic allowed by default [ 2.092704] clocksource: Switched to clocksource mxc_timer1 [ 2.225878] *** VALIDATE bpf *** [ 2.226332] VFS: Disk quotas dquot_6.6.0 [ 2.226467] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 2.226606] *** VALIDATE ramfs *** [ 2.242003] thermal_sys: Registered thermal governor 'fair_share' [ 2.242009] thermal_sys: Registered thermal governor 'step_wise' [ 2.242046] thermal_sys: Registered thermal governor 'user_space' [ 2.242809] NET: Registered protocol family 2 [ 2.243912] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 2.243990] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear) [ 2.244066] TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 2.244154] TCP: Hash tables configured (established 4096 bind 4096) [ 2.244338] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 2.244391] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 2.244887] NET: Registered protocol family 1 [ 2.244944] NET: Registered protocol family 44 [ 2.244972] PCI: CLS 0 bytes, default 64 [ 2.245641] Trying to unpack rootfs image as initramfs... [ 4.080205] Freeing initrd memory: 19156K [ 4.081069] hw perfevents: no interrupt-affinity property for /pmu, guessing. [ 4.081291] hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available [ 4.187301] Initialise system trusted keyrings [ 4.187395] Key type blacklist registered [ 4.187862] workingset: timestamp_bits=14 max_order=17 bucket_order=3 [ 4.200021] zbud: loaded [ 4.252338] NET: Registered protocol family 38 [ 4.252382] Key type asymmetric registered [ 4.252400] Asymmetric key parser 'x509' registered [ 4.252493] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) [ 4.252903] io scheduler mq-deadline registered [ 4.252933] io scheduler kyber registered [ 4.253209] io scheduler bfq registered [ 4.253578] atomic64_test: passed [ 4.277929] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 4.294439] Serial: AMBA driver [ 4.295516] 2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 26, base_baud = 5000000) is a IMX [ 5.057146] printk: console [ttymxc0] enabled [ 5.062936] 21f0000.serial: ttymxc3 at MMIO 0x21f0000 (irq = 66, base_baud = 5000000) is a IMX [ 5.073314] msm_serial: driver initialized [ 5.077484] STMicroelectronics ASC driver initialized [ 5.084012] STM32 USART driver initialized [ 5.093933] libphy: Fixed MDIO Bus: probed [ 5.098884] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 5.105502] ehci-pci: EHCI PCI platform driver [ 5.110079] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 5.116509] usbcore: registered new interface driver usb-storage [ 5.122744] usbcore: registered new interface driver usbserial_generic [ 5.129368] usbserial: USB Serial support registered for generic [ 5.135780] mousedev: PS/2 mouse device common for all mice [ 5.146600] device-mapper: uevent: version 1.0.3 [ 5.151899] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 5.163054] ledtrig-cpu: registered to indicate activity on CPUs [ 5.170198] hidraw: raw HID events driver (C) Jiri Kosina [ 5.176024] usbcore: registered new interface driver usbhid [ 5.181664] usbhid: USB HID core driver [ 5.187616] drop_monitor: Initializing network drop monitor service [ 5.194294] Initializing XFRM netlink socket [ 5.199599] NET: Registered protocol family 10 [ 5.256648] Segment Routing with IPv6 [ 5.260578] mip6: Mobile IPv6 [ 5.263659] NET: Registered protocol family 17 [ 5.269854] ThumbEE CPU extension supported. [ 5.274247] Registering SWP/SWPB emulation handler [ 5.452948] registered taskstats version 1 [ 5.457227] Loading compiled-in X.509 certificates [ 5.911619] Loaded X.509 cert 'Build time autogenerated kernel key: 5a35c1f2ad25163b6eb99db1323c21e281faec0a' [ 5.921882] zswap: loaded using pool lzo/zbud [ 5.927257] Key type ._fscrypt registered [ 5.931377] Key type .fscrypt registered [ 5.966207] Key type big_key registered [ 5.994958] Key type encrypted registered [ 5.999154] ima: No TPM chip found, activating TPM-bypass! [ 6.004838] ima: Allocated hash algorithm: sha256 [ 6.009779] ima: No architecture policies found [ 6.054832] hctosys: unable to open rtc device (rtc0) [ 6.078059] Freeing unused kernel memory: 2048K [ 6.087219] ------------[ cut here ]------------ [ 6.091936] WARNING: CPU: 0 PID: 1 at arch/arm/mm/dump.c:249 note_page+0x158/0x324 [ 6.099577] arm/mm: Found insecure W+X mapping at address 0xe0839000 [ 6.105981] Modules linked in: [ 6.109093] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.28-imx6 #20.02.7 [ 6.115994] Hardware name: Freescale i.MX6 Quad/DualLite (Device Tree) [ 6.122572] [<c03112ac>] (unwind_backtrace) from [<c030b784>] (show_stack+0x18/0x1c) [ 6.130355] [<c030b784>] (show_stack) from [<c0b428a8>] (dump_stack+0xb4/0xd4) [ 6.137614] [<c0b428a8>] (dump_stack) from [<c034d798>] (__warn+0xd4/0xf0) [ 6.144522] [<c034d798>] (__warn) from [<c034db48>] (warn_slowpath_fmt+0x70/0x84) [ 6.152039] [<c034db48>] (warn_slowpath_fmt) from [<c031986c>] (note_page+0x158/0x324) [ 6.159990] [<c031986c>] (note_page) from [<c0319b04>] (walk_pgd+0xcc/0xe0) [ 6.166977] [<c0319b04>] (walk_pgd) from [<c0319bdc>] (ptdump_check_wx+0x58/0xac) [ 6.174491] [<c0319bdc>] (ptdump_check_wx) from [<c0b56a1c>] (kernel_init+0x34/0x130) [ 6.182351] [<c0b56a1c>] (kernel_init) from [<c03010e8>] (ret_from_fork+0x14/0x2c) [ 6.189945] Exception stack(0xcf519fb0 to 0xcf519ff8) [ 6.195019] 9fa0: 00000000 00000000 00000000 00000000 [ 6.203225] 9fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 6.211427] 9fe0: 00000000 00000000 00000000 00000000 00000013 00000000 [ 6.218102] ---[ end trace 25f2666269521972 ]--- [ 6.223009] Checked W+X mappings: FAILED, 1 W+X pages found [ 6.228647] rodata_test: all tests were successful [ 6.233492] Run /init as init process [ 8.338584] vdd1p1: supplied by regulator-dummy [ 8.390060] vdd3p0: supplied by regulator-dummy [ 8.422041] vdd2p5: supplied by regulator-dummy [ 8.456994] vddarm: supplied by regulator-dummy [ 8.471900] snvs_rtc 20cc000.snvs:snvs-rtc-lp: registered as rtc0 [ 8.495998] vddpu: supplied by regulator-dummy [ 8.531023] vddsoc: supplied by regulator-dummy [ 8.759877] sdhci: Secure Digital Host Controller Interface driver [ 8.766188] sdhci: Copyright(c) Pierre Ossman [ 8.771863] pps pps0: new PPS source ptp0 [ 8.780233] i2c i2c-1: IMX I2C adapter registered [ 8.841028] i2c i2c-2: IMX I2C adapter registered [ 8.886496] libphy: fec_enet_mii_bus: probed [ 8.940158] fec 2188000.ethernet eth0: registered PHC device 0 [ 9.003503] sdhci-pltfm: SDHCI platform and OF driver helper [ 9.011765] usb_phy_generic usbphynop1: usbphynop1 supply vcc not found, using dummy regulator [ 9.119318] usb_phy_generic usbphynop2: usbphynop2 supply vcc not found, using dummy regulator [ 9.138524] sdhci-esdhc-imx 2190000.usdhc: allocated mmc-pwrseq [ 9.234072] imx_usb 2184000.usb: No over current polarity defined [ 9.278959] ci_hdrc ci_hdrc.0: EHCI Host Controller [ 9.300895] ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1 [ 9.340839] ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00 [ 9.358378] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 9.366778] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 9.374075] usb usb1: Product: EHCI Host Controller [ 9.379010] usb usb1: Manufacturer: Linux 5.4.28-imx6 ehci_hcd [ 9.384901] usb usb1: SerialNumber: ci_hdrc.0 [ 9.458890] mmc0: SDHCI controller on 2190000.usdhc [2190000.usdhc] using ADMA [ 9.490680] sdhci-esdhc-imx 2194000.usdhc: Got CD GPIO [ 9.522499] hub 1-0:1.0: USB hub found [ 9.544919] hub 1-0:1.0: 1 port detected [ 9.549069] rtc-pcf8523 2-0068: failed to set xtal load capacitance: -6 [ 9.566202] imx_usb 2184200.usb: No over current polarity defined [ 9.581050] mmc1: SDHCI controller on 2194000.usdhc [2194000.usdhc] using ADMA [ 9.596273] ci_hdrc ci_hdrc.1: EHCI Host Controller [ 9.616607] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 2 [ 9.630759] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00 [ 9.636738] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 9.645078] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 9.652362] usb usb2: Product: EHCI Host Controller [ 9.657299] usb usb2: Manufacturer: Linux 5.4.28-imx6 ehci_hcd [ 9.663186] usb usb2: SerialNumber: ci_hdrc.1 [ 9.671899] hub 2-0:1.0: USB hub found [ 9.675947] hub 2-0:1.0: 1 port detected [ 9.680121] mmc1: host does not support reading read-only switch, assuming write-enable [ 9.708815] mmc1: new high speed SDHC card at address aaaa [ 9.777497] mmcblk1: mmc1:aaaa SU04G 3.69 GiB [ 9.807299] mmcblk1: p1 [ 9.884773] usb 1-1: new low-speed USB device number 2 using ci_hdrc [ 9.898777] random: fast init done [ 10.016804] usb 2-1: new low-speed USB device number 2 using ci_hdrc [ 10.033330] usb 1-1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 [ 10.041636] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 10.048860] usb 1-1: Product: USB Keyboard [ 10.053016] usb 1-1: Manufacturer: Logitech [ 10.103436] input: Logitech USB Keyboard as /devices/soc0/soc/2100000.aips-bus/2184000.usb/ci_hdrc.0/usb1/1-1/1-1:1.0/0003:046D:C31C.0001/input/input0 [ 10.188394] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-ci_hdrc.0-1/input0 [ 10.207497] usb 2-1: New USB device found, idVendor=03f0, idProduct=0941, bcdDevice= 1.00 [ 10.215807] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 10.223025] usb 2-1: Product: HP X500 USB Optical Mouse [ 10.228312] usb 2-1: Manufacturer: PixArt [ 10.248660] raid6: using algorithm neonx8 gen() 0 MB/s [ 10.253992] raid6: .... xor() 0 MB/s, rmw enabled [ 10.258774] raid6: using neon recovery algorithm [ 10.272961] input: Logitech USB Keyboard Consumer Control as /devices/soc0/soc/2100000.aips-bus/2184000.usb/ci_hdrc.0/usb1/1-1/1-1:1.1/0003:046D:C31C.0002/input/input1 [ 10.333844] input: PixArt HP X500 USB Optical Mouse as /devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb2/2-1/2-1:1.0/0003:03F0:0941.0003/input/input3 [ 10.377368] input: Logitech USB Keyboard System Control as /devices/soc0/soc/2100000.aips-bus/2184000.usb/ci_hdrc.0/usb1/1-1/1-1:1.1/0003:046D:C31C.0002/input/input2 [ 10.393611] hid-generic 0003:03F0:0941.0003: input,hidraw1: USB HID v1.11 Mouse [PixArt HP X500 USB Optical Mouse] on usb-ci_hdrc.1-1/input0 [ 10.407776] xor: measuring software checksum speed [ 10.421704] arm4regs : 1188.000 MB/sec [ 10.435707] 8regs : 908.000 MB/sec [ 10.449701] 32regs : 956.000 MB/sec [ 10.463701] neon : 884.000 MB/sec [ 10.467931] xor: using function: arm4regs (1188.000 MB/sec) [ 10.490929] hid-generic 0003:046D:C31C.0002: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-ci_hdrc.0-1/input1 [ 10.728907] Btrfs loaded, crc32c=crc32c-generic [ 11.211838] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) [ 12.138132] systemd[1]: System time before build time, advancing clock. [ 12.273542] systemd[1]: systemd 237 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) [ 12.295878] systemd[1]: Detected architecture arm. [ 12.325425] systemd[1]: Set hostname to <cubox-i>. [ 13.393983] random: systemd: uninitialized urandom read (16 bytes read) [ 13.400922] systemd[1]: Reached target System Time Synchronized. [ 13.409030] random: systemd: uninitialized urandom read (16 bytes read) [ 13.416943] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 13.427155] random: systemd: uninitialized urandom read (16 bytes read) [ 13.433988] systemd[1]: Reached target Swap. [ 13.439006] systemd[1]: Reached target Remote File Systems. [ 13.445260] systemd[1]: Reached target User and Group Name Lookups. [ 13.452879] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 13.463162] systemd[1]: Created slice User and Session Slice. [ 14.075820] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro [ 17.693134] zram: Added device: zram0 [ 17.696169] zram: Added device: zram1 [ 17.699201] zram: Added device: zram2 [ 17.969096] zram1: detected capacity change from 0 to 257130496 [ 18.229176] systemd[1]: Started Raise network interfaces. [ 19.101028] Adding 251100k swap on /dev/zram1. Priority:5 extents:1 across:251100k SSFS [ 19.692136] zram0: detected capacity change from 0 to 52428800 [ 20.152880] Registered IR keymap rc-empty [ 20.153024] rc rc0: gpio_ir_recv as /devices/soc0/ir-receiver/rc/rc0 [ 20.153887] rc rc0: lirc_dev: driver gpio_ir_recv registered at minor = 0, raw IR receiver, no transmitter [ 20.154096] input: gpio_ir_recv as /devices/soc0/ir-receiver/rc/rc0/input4 [ 20.182135] input: gpio-keys as /devices/soc0/gpio-keys/input/input5 [ 20.650145] mc: Linux media interface: v0.10 [ 20.898327] systemd[1]: Found device /dev/ttymxc0. [ 20.933168] videodev: Linux video capture interface: v2.00 [ 20.965962] etnaviv etnaviv: bound 130000.gpu (ops gpu_ops [etnaviv]) [ 20.970156] etnaviv etnaviv: bound 134000.gpu (ops gpu_ops [etnaviv]) [ 20.970174] etnaviv-gpu 130000.gpu: model: GC880, revision: 5106 [ 20.972039] etnaviv-gpu 134000.gpu: model: GC320, revision: 5007 [ 20.979935] [drm] Initialized etnaviv 1.3.0 20151214 for etnaviv on minor 0 [ 21.128184] imx-ipuv3 2400000.ipu: IPUv3H probed [ 21.269016] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 21.269023] [drm] No driver support for vblank timestamp query. [ 21.269244] imx-drm display-subsystem: bound imx-ipuv3-crtc.2 (ops ipu_crtc_ops [imxdrm]) [ 21.269408] imx-drm display-subsystem: bound imx-ipuv3-crtc.3 (ops ipu_crtc_ops [imxdrm]) [ 21.269620] dwhdmi-imx 120000.hdmi: Detected HDMI TX controller v1.31a with HDCP (DWC HDMI 3D TX PHY) [ 21.288790] imx-drm display-subsystem: bound 120000.hdmi (ops dw_hdmi_imx_ops [dw_hdmi_imx]) [ 21.291117] [drm] Initialized imx-drm 1.0.0 20120507 for display-subsystem on minor 1 [ 21.323248] imx2-wdt 20bc000.wdog: timeout 60 sec (nowayout=0) [ 21.855817] systemd[1]: Started Armbian ZRAM config. [ 21.861185] Console: switching to colour frame buffer device 240x67 [ 21.885853] imx-drm display-subsystem: fb0: imx-drmdrmfb frame buffer device [ 21.893960] systemd[1]: Starting Armbian memory supported logging... [ 21.998463] coda 2040000.vpu: Direct firmware load for vpu_fw_imx6d.bin failed with error -2 [ 22.018118] coda 2040000.vpu: Using fallback firmware vpu/vpu_fw_imx6d.bin [ 22.021245] coda 2040000.vpu: Firmware code revision: 46063 [ 22.021255] coda 2040000.vpu: Initialized CODA960. [ 22.021261] coda 2040000.vpu: Firmware version: 3.1.1 [ 22.025303] coda 2040000.vpu: encoder registered as video0 [ 22.025512] coda 2040000.vpu: decoder registered as video1 [ 22.211338] EXT4-fs (zram0): mounted filesystem without journal. Opts: discard [ 22.211377] ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) [ 22.736078] imx-sdma 20ec000.sdma: loaded firmware 1.1 [ 22.773648] caam 2100000.caam: Entropy delay = 3200 [ 22.834441] caam 2100000.caam: Instantiated RNG4 SH0 [ 22.895202] caam 2100000.caam: Instantiated RNG4 SH1 [ 22.895213] caam 2100000.caam: device ID = 0x0a16010000000100 (Era 4) [ 22.895220] caam 2100000.caam: job rings = 2, qi = 0 [ 25.280075] systemd[1]: Started Armbian memory supported logging. [ 25.300176] systemd[1]: Starting Journal Service... [ 25.695517] systemd[1]: Started Journal Service. [ 25.709417] imx_thermal tempmon: Commercial CPU temperature grade - max:95C critical:90C passive:85C [ 25.837806] imx-spdif sound-spdif: snd-soc-dummy-dai <-> 2004000.spdif mapping ok [ 25.837825] imx-spdif sound-spdif: ASoC: no DMI vendor name! [ 25.856032] systemd-journald[619]: Received request to flush runtime journal from PID 1 [ 31.710805] Registered IR keymap rc-cec [ 31.711042] rc rc1: dw_hdmi as /devices/soc0/soc/120000.hdmi/rc/rc1 [ 31.711250] input: dw_hdmi as /devices/soc0/soc/120000.hdmi/rc/rc1/input6 [ 36.322842] brcm_reg: disabling [ 36.915785] rc rc0: two consecutive events of type space [ 37.069209] random: crng init done [ 37.069219] random: 7 urandom warning(s) missed due to ratelimiting [ 38.558936] alg: No test for authenc(hmac(sha224),ecb(cipher_null)) (authenc-hmac-sha224-ecb-cipher_null-caam) [ 38.567342] alg: No test for authenc(hmac(sha256),ecb(cipher_null)) (authenc-hmac-sha256-ecb-cipher_null-caam) [ 38.574361] alg: No test for authenc(hmac(md5),cbc(aes)) (authenc-hmac-md5-cbc-aes-caam) [ 38.581306] alg: No test for echainiv(authenc(hmac(md5),cbc(aes))) (echainiv-authenc-hmac-md5-cbc-aes-caam) [ 39.416914] alg: No test for echainiv(authenc(hmac(sha1),cbc(aes))) (echainiv-authenc-hmac-sha1-cbc-aes-caam) [ 39.434905] alg: No test for authenc(hmac(sha224),cbc(aes)) (authenc-hmac-sha224-cbc-aes-caam) [ 39.451846] alg: No test for echainiv(authenc(hmac(sha224),cbc(aes))) (echainiv-authenc-hmac-sha224-cbc-aes-caam) [ 40.286961] alg: No test for echainiv(authenc(hmac(sha256),cbc(aes))) (echainiv-authenc-hmac-sha256-cbc-aes-caam) [ 40.304945] alg: No test for authenc(hmac(md5),cbc(des3_ede)) (authenc-hmac-md5-cbc-des3_ede-caam) [ 40.323824] alg: No test for echainiv(authenc(hmac(md5),cbc(des3_ede))) (echainiv-authenc-hmac-md5-cbc-des3_ede-caam) [ 40.474535] alg: No test for echainiv(authenc(hmac(sha1),cbc(des3_ede))) (echainiv-authenc-hmac-sha1-cbc-des3_ede-caam) [ 40.608866] alg: No test for echainiv(authenc(hmac(sha224),cbc(des3_ede))) (echainiv-authenc-hmac-sha224-cbc-des3_ede-caam) [ 40.749095] alg: No test for echainiv(authenc(hmac(sha256),cbc(des3_ede))) (echainiv-authenc-hmac-sha256-cbc-des3_ede-caam) [ 40.758025] alg: No test for authenc(hmac(md5),cbc(des)) (authenc-hmac-md5-cbc-des-caam) [ 40.765138] alg: No test for echainiv(authenc(hmac(md5),cbc(des))) (echainiv-authenc-hmac-md5-cbc-des-caam) [ 40.901355] alg: No test for echainiv(authenc(hmac(sha1),cbc(des))) (echainiv-authenc-hmac-sha1-cbc-des-caam) [ 41.033822] alg: No test for echainiv(authenc(hmac(sha224),cbc(des))) (echainiv-authenc-hmac-sha224-cbc-des-caam) [ 41.171433] alg: No test for echainiv(authenc(hmac(sha256),cbc(des))) (echainiv-authenc-hmac-sha256-cbc-des-caam) [ 41.178443] alg: No test for authenc(hmac(md5),rfc3686(ctr(aes))) (authenc-hmac-md5-rfc3686-ctr-aes-caam) [ 41.185441] alg: No test for seqiv(authenc(hmac(md5),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-md5-rfc3686-ctr-aes-caam) [ 41.199179] alg: No test for seqiv(authenc(hmac(sha1),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-sha1-rfc3686-ctr-aes-caam) [ 41.206255] alg: No test for authenc(hmac(sha224),rfc3686(ctr(aes))) (authenc-hmac-sha224-rfc3686-ctr-aes-caam) [ 41.213271] alg: No test for seqiv(authenc(hmac(sha224),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-sha224-rfc3686-ctr-aes-caam) [ 41.227111] alg: No test for seqiv(authenc(hmac(sha256),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-sha256-rfc3686-ctr-aes-caam) [ 41.234023] caam algorithms registered in /proc/crypto [ 45.612517] caam_jr 2101000.jr0: registering rng-caam [ 45.741487] EXT4-fs (mmcblk1p1): resizing filesystem from 713728 to 915840 blocks [ 49.548259] EXT4-fs (mmcblk1p1): resized filesystem to 915840 [ 57.711086] Atheros 8035 ethernet 2188000.ethernet-1:00: attached PHY driver [Atheros 8035 ethernet] (mii_bus:phy_addr=2188000.ethernet-1:00, irq=POLL) [ 59.811578] fec 2188000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 59.811650] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 248.222355] fuse: init (API version 7.31) [ 248.222621] *** VALIDATE fuse *** [ 248.222640] *** VALIDATE fuse *** sander@cubox-i:~$
-
dmesg from Fedora: [lxqt@trial ~]$ dmesg [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.4.0-0.rc3.git0.1.fc31.armv7hl (root@micro-011) (gcc version 9.2.1 20190827 (Red Hat 9.2.1-1) (GCC)) #1 SMP Fri Oct 18 20:33:34 CEST 2019 [ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] OF: fdt: Machine model: SolidRun Cubox-i Solo/DualLite [ 0.000000] Memory policy: Data cache writeback [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 256 MiB at 0x20000000 [ 0.000000] On node 0 totalpages: 131072 [ 0.000000] Normal zone: 1152 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 131072 pages, LIFO batch:31 [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] percpu: Embedded 19 pages/cpu s46028 r8192 d23604 u77824 [ 0.000000] pcpu-alloc: s46028 r8192 d23604 u77824 alloc=19*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 129920 [ 0.000000] Kernel command line: selinux=0 audit=0 loglevel=5 coherent_pool=2M cma=256M console=ttymxc0,115200n8 console=tty1 ahci_imx.hotplug=1 raid=noautodetect rootwait rootfstype=ext4 root=PARTUUID=679e3844-03 fbcon=nodefer [ 0.000000] audit: disabled (until reboot) [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 238036K/524288K available (8831K kernel code, 1384K rwdata, 4936K rodata, 2048K init, 503K bss, 24108K reserved, 262144K cma-reserved, 0K highmem) [ 0.000000] random: get_random_u32 called from __kmem_cache_create+0x2c/0x418 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] ftrace: allocating 42351 entries in 83 pages [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=2. [ 0.000000] Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] GIC physical location is 0xa01000 [ 0.000000] L2C-310 erratum 769419 enabled [ 0.000000] L2C-310 enabling early BRESP for Cortex-A9 [ 0.000000] L2C-310 full line of zeros enabled for Cortex-A9 [ 0.000000] L2C-310 ID prefetch enabled, offset 16 lines [ 0.000000] L2C-310 dynamic clock gating enabled, standby mode enabled [ 0.000000] L2C-310 cache controller enabled, 16 ways, 512 kB [ 0.000000] L2C-310: CACHE_ID 0x410000c8, AUX_CTRL 0x76450001 [ 0.000000] Switching to timer-based delay loop, resolution 333ns [ 0.000007] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 715827882841ns [ 0.000026] clocksource: mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 637086815595 ns [ 0.003149] Console: colour dummy device 80x30 [ 0.003166] printk: console [tty1] enabled [ 0.003209] Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=3000) [ 0.003222] pid_max: default: 32768 minimum: 301 [ 0.003554] LSM: Security Framework initializing [ 0.003583] Yama: becoming mindful. [ 0.003729] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.003743] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.003872] *** VALIDATE tmpfs *** [ 0.004763] *** VALIDATE proc *** [ 0.005104] *** VALIDATE cgroup1 *** [ 0.005159] *** VALIDATE cgroup2 *** [ 0.005249] CPU: Testing write buffer coherency: ok [ 0.005292] CPU0: Spectre v2: using BPIALL workaround [ 0.005726] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.006821] Setting up static identity map for 0x10300000 - 0x103000ac [ 0.008857] rcu: Hierarchical SRCU implementation. [ 0.014477] EFI services will not be available. [ 0.015086] smp: Bringing up secondary CPUs ... [ 0.016187] smp: Brought up 1 node, 1 CPU [ 0.016197] SMP: Total of 1 processors activated (6.00 BogoMIPS). [ 0.016205] CPU: All CPU(s) started in SVC mode. [ 0.016927] devtmpfs: initialized [ 0.028312] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4 [ 0.028971] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.028994] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.042937] pinctrl core: initialized pinctrl subsystem [ 0.045005] DMI not present or invalid. [ 0.045795] NET: Registered protocol family 16 [ 0.054732] DMA: preallocated 2048 KiB pool for atomic coherent allocations [ 0.057091] cpuidle: using governor menu [ 0.057747] CPU identified as i.MX6DL, silicon rev 1.1 [ 0.068896] vdd1p1: supplied by regulator-dummy [ 0.069638] vdd3p0: supplied by regulator-dummy [ 0.070421] vdd2p5: supplied by regulator-dummy [ 0.071168] vddarm: supplied by regulator-dummy [ 0.071909] vddpu: supplied by regulator-dummy [ 0.072659] vddsoc: supplied by regulator-dummy [ 0.087305] No ATAGs? [ 0.087377] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers. [ 0.087385] hw-breakpoint: maximum watchpoint size is 4 bytes. [ 0.090365] imx6dl-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver [ 0.092739] Serial: AMBA PL011 UART driver [ 2.110043] cryptd: max_cpu_qlen set to 1000 [ 2.128627] alg: No test for 842 (842-generic) [ 2.129300] alg: No test for 842 (842-scomp) [ 2.180349] v_usb2: supplied by v_5v0 [ 2.180636] vcc_3v3: supplied by v_5v0 [ 2.180984] v_usb1: supplied by v_5v0 [ 2.184452] iommu: Default domain type: Translated [ 2.185771] vgaarb: loaded [ 2.186901] SCSI subsystem initialized [ 2.187305] libata version 3.00 loaded. [ 2.187663] usbcore: registered new interface driver usbfs [ 2.187732] usbcore: registered new interface driver hub [ 2.187884] usbcore: registered new device driver usb [ 2.189231] i2c i2c-1: IMX I2C adapter registered [ 2.190061] i2c i2c-2: IMX I2C adapter registered [ 2.190818] pps_core: LinuxPPS API ver. 1 registered [ 2.190826] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 2.190851] PTP clock support registered [ 2.191280] EDAC MC: Ver: 3.0.0 [ 2.194027] NetLabel: Initializing [ 2.194036] NetLabel: domain hash size = 128 [ 2.194041] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 2.194205] NetLabel: unlabeled traffic allowed by default [ 2.195007] clocksource: Switched to clocksource mxc_timer1 [ 2.309304] *** VALIDATE bpf *** [ 2.309703] VFS: Disk quotas dquot_6.6.0 [ 2.309796] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 2.309900] *** VALIDATE ramfs *** [ 2.323078] thermal_sys: Registered thermal governor 'fair_share' [ 2.323084] thermal_sys: Registered thermal governor 'step_wise' [ 2.323093] thermal_sys: Registered thermal governor 'user_space' [ 2.323740] NET: Registered protocol family 2 [ 2.324761] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 2.324806] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear) [ 2.324856] TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 2.324929] TCP: Hash tables configured (established 4096 bind 4096) [ 2.325200] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 2.325231] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 2.325513] NET: Registered protocol family 1 [ 2.325557] NET: Registered protocol family 44 [ 2.325574] PCI: CLS 0 bytes, default 64 [ 2.326907] hw perfevents: no interrupt-affinity property for /pmu, guessing. [ 2.327189] hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available [ 2.352431] Initialise system trusted keyrings [ 2.352490] Key type blacklist registered [ 2.352808] workingset: timestamp_bits=14 max_order=17 bucket_order=3 [ 2.362290] zbud: loaded [ 2.408111] NET: Registered protocol family 38 [ 2.408129] Key type asymmetric registered [ 2.408135] Asymmetric key parser 'x509' registered [ 2.408202] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) [ 2.408476] io scheduler mq-deadline registered [ 2.408484] io scheduler kyber registered [ 2.408714] io scheduler bfq registered [ 2.409182] atomic64_test: passed [ 2.433613] Serial: AMBA driver [ 2.434689] 2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 26, base_baud = 5000000) is a IMX [ 2.441973] printk: console [ttymxc0] enabled [ 2.443271] 21f0000.serial: ttymxc3 at MMIO 0x21f0000 (irq = 66, base_baud = 5000000) is a IMX [ 2.444850] msm_serial: driver initialized [ 2.444857] STMicroelectronics ASC driver initialized [ 2.446245] STM32 USART driver initialized [ 2.452863] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.452870] [drm] No driver support for vblank timestamp query. [ 2.453141] imx-drm display-subsystem: bound imx-ipuv3-crtc.2 (ops ipu_crtc_ops) [ 2.453305] imx-drm display-subsystem: bound imx-ipuv3-crtc.3 (ops ipu_crtc_ops) [ 2.453544] dwhdmi-imx 120000.hdmi: Detected HDMI TX controller v1.31a with HDCP (DWC HDMI 3D TX PHY) [ 2.455426] rc_core: Couldn't load IR keymap rc-cec [ 2.460423] Registered IR keymap rc-empty [ 2.460603] rc rc0: dw_hdmi as /devices/soc0/soc/120000.hdmi/rc/rc0 [ 2.460798] input: dw_hdmi as /devices/soc0/soc/120000.hdmi/rc/rc0/input0 [ 2.461217] imx-drm display-subsystem: bound 120000.hdmi (ops dw_hdmi_imx_ops) [ 2.461787] [drm] Initialized imx-drm 1.0.0 20120507 for display-subsystem on minor 0 [ 2.495877] random: fast init done [ 2.583945] Console: switching to colour frame buffer device 240x67 [ 2.616144] imx-drm display-subsystem: fb0: imx-drmdrmfb frame buffer device [ 2.616209] imx-ipuv3 2400000.ipu: IPUv3H probed [ 2.620192] libphy: Fixed MDIO Bus: probed [ 2.620855] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.620876] ehci-pci: EHCI PCI platform driver [ 2.620955] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.621195] usbcore: registered new interface driver usbserial_generic [ 2.621253] usbserial: USB Serial support registered for generic [ 2.621505] mousedev: PS/2 mouse device common for all mice [ 2.623114] rtc-pcf8523 2-0068: failed to set xtal load capacitance: -6 [ 2.635783] imx2-wdt 20bc000.wdog: timeout 60 sec (nowayout=0) [ 2.636245] device-mapper: uevent: version 1.0.3 [ 2.636703] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 2.639587] sdhci: Secure Digital Host Controller Interface driver [ 2.639593] sdhci: Copyright(c) Pierre Ossman [ 2.639598] sdhci-pltfm: SDHCI platform and OF driver helper [ 2.640854] sdhci-esdhc-imx 2190000.usdhc: allocated mmc-pwrseq [ 2.882747] mmc0: SDHCI controller on 2190000.usdhc [2190000.usdhc] using ADMA [ 2.884912] sdhci-esdhc-imx 2194000.usdhc: Got CD GPIO [ 2.919384] mmc1: SDHCI controller on 2194000.usdhc [2194000.usdhc] using ADMA [ 2.920816] ledtrig-cpu: registered to indicate activity on CPUs [ 2.923277] hidraw: raw HID events driver (C) Jiri Kosina [ 2.923605] usbcore: registered new interface driver usbhid [ 2.923610] usbhid: USB HID core driver [ 2.928170] drop_monitor: Initializing network drop monitor service [ 2.928578] Initializing XFRM netlink socket [ 2.929778] NET: Registered protocol family 10 [ 2.941793] Segment Routing with IPv6 [ 2.941915] mip6: Mobile IPv6 [ 2.941927] NET: Registered protocol family 17 [ 2.945309] ThumbEE CPU extension supported. [ 2.945329] Registering SWP/SWPB emulation handler [ 2.965223] mmc1: host does not support reading read-only switch, assuming write-enable [ 2.973664] registered taskstats version 1 [ 2.973711] Loading compiled-in X.509 certificates [ 2.994159] mmc1: new high speed SDHC card at address aaaa [ 2.999621] mmcblk1: mmc1:aaaa SL32G 29.7 GiB [ 3.007091] mmcblk1: p1 p2 p3 [ 3.362719] Loaded X.509 cert 'Fedora kernel signing key: c92d03ad4041dcd40428aa975833ae99f7e7a880' [ 3.362843] zswap: loaded using pool lzo/zbud [ 3.363434] Key type ._fscrypt registered [ 3.363441] Key type .fscrypt registered [ 3.371230] Key type big_key registered [ 3.375793] Key type encrypted registered [ 3.375832] ima: No TPM chip found, activating TPM-bypass! [ 3.375866] ima: Allocated hash algorithm: sha256 [ 3.375914] ima: No architecture policies found [ 3.407031] imx_thermal tempmon: Commercial CPU temperature grade - max:95C critical:90C passive:85C [ 3.409194] hctosys: unable to open rtc device (rtc0) [ 3.410826] md: Skipping autodetection of RAID arrays. (raid=autodetect will force) [ 3.436449] EXT4-fs (mmcblk1p3): mounted filesystem with ordered data mode. Opts: (null) [ 3.436583] VFS: Mounted root (ext4 filesystem) readonly on device 179:3. [ 3.446855] devtmpfs: mounted [ 3.459090] Freeing unused kernel memory: 2048K [ 3.463718] ------------[ cut here ]------------ [ 3.468523] WARNING: CPU: 0 PID: 1 at arch/arm/mm/dump.c:248 note_page+0x160/0x324 [ 3.476251] arm/mm: Found insecure W+X mapping at address 0xe0839000 [ 3.482712] Modules linked in: [ 3.485859] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.0-0.rc3.git0.1.fc31.armv7hl #1 [ 3.494048] Hardware name: Freescale i.MX6 Quad/DualLite (Device Tree) [ 3.500678] [<c031127c>] (unwind_backtrace) from [<c030b744>] (show_stack+0x18/0x1c) [ 3.508524] [<c030b744>] (show_stack) from [<c0b85974>] (dump_stack+0xa8/0xc4) [ 3.515842] [<c0b85974>] (dump_stack) from [<c034d59c>] (__warn+0xdc/0xf8) [ 3.522807] [<c034d59c>] (__warn) from [<c034d94c>] (warn_slowpath_fmt+0x70/0x84) [ 3.530384] [<c034d94c>] (warn_slowpath_fmt) from [<c03197a8>] (note_page+0x160/0x324) [ 3.538399] [<c03197a8>] (note_page) from [<c0319a34>] (walk_pgd+0xc8/0xe0) [ 3.545448] [<c0319a34>] (walk_pgd) from [<c0319b10>] (ptdump_check_wx+0x58/0xac) [ 3.553030] [<c0319b10>] (ptdump_check_wx) from [<c0b99bd0>] (kernel_init+0x34/0x11c) [ 3.560960] [<c0b99bd0>] (kernel_init) from [<c03010e8>] (ret_from_fork+0x14/0x2c) [ 3.568618] Exception stack(0xcf513fb0 to 0xcf513ff8) [ 3.573733] 3fa0: 00000000 00000000 00000000 00000000 [ 3.582006] 3fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 3.590278] 3fe0: 00000000 00000000 00000000 00000000 00000013 00000000 [ 3.597065] ---[ end trace 8433cd0617ef4a53 ]--- [ 3.602058] Checked W+X mappings: FAILED, 1 W+X pages found [ 3.607737] rodata_test: all tests were successful [ 3.607745] Run /sbin/init as init process [ 4.480765] systemd[1]: System time before build time, advancing clock. [ 4.706941] systemd[1]: systemd v243-4.gitef67743.fc31 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=unified) [ 4.708526] systemd[1]: Detected architecture arm. [ 4.710591] systemd[1]: Set hostname to <trial>. [ 5.601548] random: lvmconfig: uninitialized urandom read (4 bytes read) [ 6.368267] systemd[1]: /usr/lib/systemd/system/sssd.service:12: PIDFile= references a path below legacy directory /var/run/, updating /var/run/sssd.pid → /run/sssd.pid; please update the unit file accordingly. [ 6.633893] systemd[1]: /usr/lib/systemd/system/sssd-kcm.socket:7: ListenStream= references a path below legacy directory /var/run/, updating /var/run/.heim_org.h5l.kcm-socket → /run/.heim_org.h5l.kcm-socket; please update the unit file accordingly. [ 6.671438] random: systemd: uninitialized urandom read (16 bytes read) [ 6.676906] systemd[1]: Created slice system-getty.slice. [ 6.677856] random: systemd: uninitialized urandom read (16 bytes read) [ 6.679891] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 6.680141] random: systemd: uninitialized urandom read (16 bytes read) [ 6.682352] systemd[1]: Created slice system-sshd\x2dkeygen.slice. [ 6.684395] systemd[1]: Created slice User and Session Slice. [ 6.684979] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 7.577194] EXT4-fs (mmcblk1p3): re-mounted. Opts: (null) [ 7.739432] zram: Added device: zram0 [ 8.182268] zram0: detected capacity change from 0 to 245002240 [ 8.635854] systemd-journald[275]: Received client request to flush runtime journal. [ 9.350086] random: crng init done [ 9.350097] random: 6 urandom warning(s) missed due to ratelimiting [ 9.364574] Adding 239256k swap on /dev/zram0. Priority:1000 extents:1 across:239256k SSFS [ 11.733504] Registered IR keymap rc-empty [ 11.733634] rc rc1: gpio_ir_recv as /devices/soc0/ir-receiver/rc/rc1 [ 11.733811] input: gpio_ir_recv as /devices/soc0/ir-receiver/rc/rc1/input1 [ 11.743944] input: gpio-keys as /devices/soc0/gpio-keys/input/input2 [ 11.744496] rc rc1: lirc_dev: driver gpio_ir_recv registered at minor = 0, raw IR receiver, no transmitter [ 11.799375] mc: Linux media interface: v0.10 [ 12.413404] videodev: Linux video capture interface: v2.00 [ 12.429249] etnaviv etnaviv: bound 130000.gpu (ops gpu_ops [etnaviv]) [ 12.437195] etnaviv etnaviv: bound 134000.gpu (ops gpu_ops [etnaviv]) [ 12.437213] etnaviv-gpu 130000.gpu: model: GC880, revision: 5106 [ 12.441725] etnaviv-gpu 134000.gpu: model: GC320, revision: 5007 [ 12.453163] [drm] Initialized etnaviv 1.3.0 20151214 for etnaviv on minor 1 [ 13.527120] imx_media_common: module is from the staging directory, the quality is unknown, you have been warned. [ 13.892912] imx6_media: module is from the staging directory, the quality is unknown, you have been warned. [ 13.980815] coda 2040000.vpu: Firmware code revision: 570363 [ 13.980829] coda 2040000.vpu: Initialized CODA960. [ 13.980835] coda 2040000.vpu: Firmware version: 3.1.1 [ 13.983173] coda 2040000.vpu: encoder registered as video0 [ 13.983421] coda 2040000.vpu: decoder registered as video1 [ 14.053410] snvs_rtc 20cc000.snvs:snvs-rtc-lp: registered as rtc0 [ 14.442395] imx-sdma 20ec000.sdma: loaded firmware 3.5 [ 14.830136] caam 2100000.caam: Entropy delay = 3200 [ 14.830173] caam 2100000.caam: Instantiated RNG4 SH0 [ 14.890938] caam 2100000.caam: Instantiated RNG4 SH1 [ 14.890950] caam 2100000.caam: device ID = 0x0a16010000000100 (Era 4) [ 14.890957] caam 2100000.caam: job rings = 2, qi = 0 [ 15.127974] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 15.202700] pps pps0: new PPS source ptp0 [ 15.269553] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 15.282585] libphy: fec_enet_mii_bus: probed [ 15.283836] fec 2188000.ethernet eth0: registered PHC device 0 [ 15.288984] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 15.641241] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 15.674431] imx_usb 2184000.usb: No over current polarity defined [ 15.708213] imx6_media_csi: module is from the staging directory, the quality is unknown, you have been warned. [ 15.733302] imx6_media_csi: module is from the staging directory, the quality is unknown, you have been warned. [ 15.776328] ci_hdrc ci_hdrc.0: EHCI Host Controller [ 15.776672] ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1 [ 15.787104] ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00 [ 15.787487] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 15.787497] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 15.787504] usb usb1: Product: EHCI Host Controller [ 15.787511] usb usb1: Manufacturer: Linux 5.4.0-0.rc3.git0.1.fc31.armv7hl ehci_hcd [ 15.787517] usb usb1: SerialNumber: ci_hdrc.0 [ 15.794403] hub 1-0:1.0: USB hub found [ 15.802298] hub 1-0:1.0: 1 port detected [ 15.806153] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 15.824568] imx_usb 2184200.usb: No over current polarity defined [ 15.834093] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 15.918185] ipu1_csi0: Registered ipu1_csi0 capture as /dev/video2 [ 15.922178] ipu1_ic_prpenc: Registered ipu1_ic_prpenc capture as /dev/video3 [ 15.922521] ipu1_ic_prpvf: Registered ipu1_ic_prpvf capture as /dev/video4 [ 15.922562] imx-media: ipu1_csi0:1 -> ipu1_ic_prp:0 [ 15.922571] imx-media: ipu1_csi0:1 -> ipu1_vdic:0 [ 15.922578] imx-media: ipu1_vdic:2 -> ipu1_ic_prp:0 [ 15.922584] imx-media: ipu1_ic_prp:1 -> ipu1_ic_prpenc:0 [ 15.922590] imx-media: ipu1_ic_prp:2 -> ipu1_ic_prpvf:0 [ 15.922597] imx-media: subdev ipu1_csi0 bound [ 15.923619] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 15.941248] ipu1_csi1: Registered ipu1_csi1 capture as /dev/video5 [ 15.941265] imx-media: ipu1_csi1:1 -> ipu1_ic_prp:0 [ 15.941272] imx-media: ipu1_csi1:1 -> ipu1_vdic:0 [ 15.941283] imx-media: subdev ipu1_csi1 bound [ 15.941313] imx-media: ipu1_csi0_mux:5 -> ipu1_csi0:0 [ 15.941372] imx-media: ipu1_csi1_mux:5 -> ipu1_csi1:0 [ 15.953108] ci_hdrc ci_hdrc.1: EHCI Host Controller [ 15.953441] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 2 [ 16.008118] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00 [ 16.010745] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 16.010757] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 16.010765] usb usb2: Product: EHCI Host Controller [ 16.010771] usb usb2: Manufacturer: Linux 5.4.0-0.rc3.git0.1.fc31.armv7hl ehci_hcd [ 16.010777] usb usb2: SerialNumber: ci_hdrc.1 [ 16.014865] imx-media: Registered ipu_ic_pp csc/scaler as /dev/video6 [ 16.015948] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 16.027307] hub 2-0:1.0: USB hub found [ 16.030106] hub 2-0:1.0: 1 port detected [ 16.040067] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 16.074193] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 16.124110] usb 1-1: new low-speed USB device number 2 using ci_hdrc [ 16.137283] usb_phy_generic usbphynop1: usbphynop1 supply vcc not found, using dummy regulator [ 16.203534] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null) [ 16.210154] Mounted ext4 file system at /mnt/boot supports timestamps until 2038 (0x7fffffff) [ 16.262592] usb 1-1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00 [ 16.262607] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 16.262615] usb 1-1: Product: USB Keyboard [ 16.262621] usb 1-1: Manufacturer: Logitech [ 16.276682] input: Logitech USB Keyboard as /devices/soc0/soc/2100000.aips-bus/2184000.usb/ci_hdrc.0/usb1/1-1/1-1:1.0/0003:046D:C31C.0001/input/input3 [ 16.287342] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 16.297291] usb_phy_generic usbphynop2: usbphynop2 supply vcc not found, using dummy regulator [ 16.329316] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-ci_hdrc.0-1/input0 [ 16.330573] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 16.347291] input: Logitech USB Keyboard Consumer Control as /devices/soc0/soc/2100000.aips-bus/2184000.usb/ci_hdrc.0/usb1/1-1/1-1:1.1/0003:046D:C31C.0002/input/input4 [ 16.364105] usb 2-1: new low-speed USB device number 2 using ci_hdrc [ 16.399543] input: Logitech USB Keyboard System Control as /devices/soc0/soc/2100000.aips-bus/2184000.usb/ci_hdrc.0/usb1/1-1/1-1:1.1/0003:046D:C31C.0002/input/input5 [ 16.399952] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-ci_hdrc.0-1/input1 [ 16.402968] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 16.503671] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 16.522053] usb 2-1: New USB device found, idVendor=03f0, idProduct=0941, bcdDevice= 1.00 [ 16.522067] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 16.522074] usb 2-1: Product: HP X500 USB Optical Mouse [ 16.522080] usb 2-1: Manufacturer: PixArt [ 16.546688] input: PixArt HP X500 USB Optical Mouse as /devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb2/2-1/2-1:1.0/0003:03F0:0941.0003/input/input6 [ 16.548518] hid-generic 0003:03F0:0941.0003: input,hidraw2: USB HID v1.11 Mouse [PixArt HP X500 USB Optical Mouse] on usb-ci_hdrc.1-1/input0 [ 16.553971] imx-spdif sound-spdif: ASoC: failed to init link S/PDIF PCM: -517 [ 17.011120] imx-spdif sound-spdif: snd-soc-dummy-dai <-> 2004000.spdif mapping ok [ 17.011140] imx-spdif sound-spdif: ASoC: no DMI vendor name! [ 32.324109] alg: No test for authenc(hmac(sha224),ecb(cipher_null)) (authenc-hmac-sha224-ecb-cipher_null-caam) [ 32.370271] alg: No test for authenc(hmac(sha256),ecb(cipher_null)) (authenc-hmac-sha256-ecb-cipher_null-caam) [ 32.416619] alg: No test for authenc(hmac(md5),cbc(aes)) (authenc-hmac-md5-cbc-aes-caam) [ 32.465664] alg: No test for echainiv(authenc(hmac(md5),cbc(aes))) (echainiv-authenc-hmac-md5-cbc-aes-caam) [ 33.363069] alg: No test for echainiv(authenc(hmac(sha1),cbc(aes))) (echainiv-authenc-hmac-sha1-cbc-aes-caam) [ 33.408804] alg: No test for authenc(hmac(sha224),cbc(aes)) (authenc-hmac-sha224-cbc-aes-caam) [ 33.461809] alg: No test for echainiv(authenc(hmac(sha224),cbc(aes))) (echainiv-authenc-hmac-sha224-cbc-aes-caam) [ 33.762764] brcm_reg: disabling [ 34.348742] alg: No test for echainiv(authenc(hmac(sha256),cbc(aes))) (echainiv-authenc-hmac-sha256-cbc-aes-caam) [ 34.386712] alg: No test for authenc(hmac(md5),cbc(des3_ede)) (authenc-hmac-md5-cbc-des3_ede-caam) [ 34.421735] alg: No test for echainiv(authenc(hmac(md5),cbc(des3_ede))) (echainiv-authenc-hmac-md5-cbc-des3_ede-caam) [ 34.615145] alg: No test for echainiv(authenc(hmac(sha1),cbc(des3_ede))) (echainiv-authenc-hmac-sha1-cbc-des3_ede-caam) [ 34.825045] alg: No test for echainiv(authenc(hmac(sha224),cbc(des3_ede))) (echainiv-authenc-hmac-sha224-cbc-des3_ede-caam) [ 35.025706] alg: No test for echainiv(authenc(hmac(sha256),cbc(des3_ede))) (echainiv-authenc-hmac-sha256-cbc-des3_ede-caam) [ 35.059659] alg: No test for authenc(hmac(md5),cbc(des)) (authenc-hmac-md5-cbc-des-caam) [ 35.096287] alg: No test for echainiv(authenc(hmac(md5),cbc(des))) (echainiv-authenc-hmac-md5-cbc-des-caam) [ 35.278316] alg: No test for echainiv(authenc(hmac(sha1),cbc(des))) (echainiv-authenc-hmac-sha1-cbc-des-caam) [ 35.465661] alg: No test for echainiv(authenc(hmac(sha224),cbc(des))) (echainiv-authenc-hmac-sha224-cbc-des-caam) [ 35.669643] alg: No test for echainiv(authenc(hmac(sha256),cbc(des))) (echainiv-authenc-hmac-sha256-cbc-des-caam) [ 35.717774] alg: No test for authenc(hmac(md5),rfc3686(ctr(aes))) (authenc-hmac-md5-rfc3686-ctr-aes-caam) [ 35.762953] alg: No test for seqiv(authenc(hmac(md5),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-md5-rfc3686-ctr-aes-caam) [ 35.861684] alg: No test for seqiv(authenc(hmac(sha1),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-sha1-rfc3686-ctr-aes-caam) [ 35.914720] alg: No test for authenc(hmac(sha224),rfc3686(ctr(aes))) (authenc-hmac-sha224-rfc3686-ctr-aes-caam) [ 35.962914] alg: No test for seqiv(authenc(hmac(sha224),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-sha224-rfc3686-ctr-aes-caam) [ 36.054889] alg: No test for seqiv(authenc(hmac(sha256),rfc3686(ctr(aes)))) (seqiv-authenc-hmac-sha256-rfc3686-ctr-aes-caam) [ 36.099664] caam algorithms registered in /proc/crypto [ 41.579331] caam_jr 2101000.jr0: registering rng-caam [ 42.154351] Atheros 8035 ethernet 2188000.ethernet-1:00: attached PHY driver [Atheros 8035 ethernet] (mii_bus:phy_addr=2188000.ethernet-1:00, irq=POLL) [ 44.192396] fec 2188000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 44.192436] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 55.266004] rc rc1: two consecutive events of type space [lxqt@trial ~]$
-
@Maker39 you are welcome yes , me too I use it with some economic relais https://www.ebay.it/itm/NEW-2-Channel-USB-Relay-5V-Programmable-Computer-Control-For-Smart-Home/352565804995?hash=item52168f3fc3:g:SA0AAOSwWI5cN~Ff and this project : https://github.com/ondrej1024/crelay with this app on telephone, even idf made for raspberry it works perfectly https://apk.support/app/com.jasonfindlay.pirelaypro
-
*shrugs* CSA96 from ebay looked legit. Reviews looked good. Google it and double check of course. https://www.ebay.com/itm/CSA96-H-264-H-265-RK3399-4G-32G-Smart-TV-Box-Set-Top-Box-For-Android-6-0-4K/254503916001?hash=item3b419d91e1:g:BhsAAOSwzixdJF4l You need to try out all the rk3399-*.dtb in /boot/dtb/rockchip. Good luck
-
Thank you! Seems this is on hold on my end as well. I'm still learning so, this actual project will be on hold.. While I am making good progress on another individuals unrelated project that was posted on hackaday Adding a CC1101 module to SRXE Shifting focus here is giving me a great hands-on experience to work with some core fundamentals I was sorely lacking. Before I return to the Smart Tech AM40 I will need the right tools it seems. I'll likely get a low cost DIY oscilloscope kit or something like the Espotek Labrador The focus shift has necessary because basically, many of the OPS slot type Single Board Computer ( Appliance / Module / Slot-in Computer / TV Box ) circuit boards are so tightly integrated only to the digital signage platform each company intended its design for.. Anyone who might be curious about reverse engineering or tinkering more on something like these "OPS Digital Signage" variants for use in Armbian or what have you projects.. I ended up budgeting myself to $120 on the whole project. I was able to find a few ways to power on a standalone boar normal display.. Here's what I got for $20 or less. Things like this SHOULD likely safely power up anything with an open plug-gable specification. I have tested and confirmed safe logic levels and got it running on a normal monitor through the native hdmi output. So for now this thread is on hold for updates from myself for a while, but for anyone who wants to pick it up until then.. you should know. Whatever gimmick "OPS slot-in" display / smart tv / or "interactive smart board." they might have you buy, you likely don't need. If you find good deal on an OPS computer, they can be very nifty. I found a on best offer of $30 with some neat stuff on the board. It can be worth the price just to upgrade a laptop with parts found within. It's a crap-shoot though, gotta do your research. Here some of the best of what I could find on a budget ops single board computers AM70-L https://www.ebay.com/sch/i.html?_from=R40&_trksid=m570.l1313&_nkw=AM70-L+smart&_sacat=0&LH_TitleDesc=0&_osacat=0&_odkw=AM70-L riser cards https://www.aliexpress.com/i/32965114732.html https://www.ebay.com/itm/Westinghouse-WB65F1D1-Board-E13A-OPS80B-00R/323773785988?epid=844692227&hash=item4b626be784:g:vHwAAOSwlndZDiOd&autorefresh=true more expensive.. but very good alternative to just a riser card. have found those who accept deals for under $30 Nec OPS dock https://www.ebay.com/sch/i.html?_from=R40&_trksid=m570.l1313&_nkw=nec+ops+dock&_sacat=0&LH_TitleDesc=0&_osacat=0&_odkw=nec+ops+ ELO Touch Ops Adapter Kit (somehow i got mine for much much less than I believe they are sold for. the ebay users store must have been liquidating or mistook it for just the DC power supply part of it... wow, and it works great!) https://www.ebay.com/sch/i.html?_from=R40&_trksid=m570.l1313&_nkw=ELO+Touch+Ops+Adapter+Kit&_sacat=0&LH_TitleDesc=0&_osacat=0&_odkw=ELO+Touch+Ops+Adapter+Ki
-
OK...so it seems to start with the 3.3VDC but minicom is set to 115200 8N1 and I do not see anything... Getting hash when booting and it looks like baud rate is incorrect when I use: picocom -b 115200 /dev/ttyUSB0 see this: root@ICS-IBM-T540P-1:/home/pete# picocom -b 11520 0 /dev/ttyUSB0 picocom v3.1 port is : /dev/ttyUSB0 flowcontrol : none baudrate is : 11520 parity is : none databits are : 8 stopbits are : 1 escape is : C-a local echo is : no noinit is : no noreset is : no hangup is : no nolock is : no send_cmd is : sz -vv receive_cmd is : rz -vv -E imap is : omap is : emap is : crcrlf,delbs, logfile is : none initstring : none exit_after is : not set exit is : no !! Settings mismatch !! Type [C-a] [C-v] to see actual port settings Type [C-a] [C-h] to see available commands Terminal ready �(����a|�(���'���c��!7 �(��q�o ��������q��{� ���������=5-�c0�(A!��)����q�m�8� � ���� H� H�����aŜ���aE�� ��(�)�s� �(���� k��(�8=9���ku��8(�8=9��(����%���s(�9�)s �)Q �s!�)����u!)�5�(������� �� �i%�('�'#q'�i����)
-
Hello, i have an H96 max plus that i bought very cheap "not working", it boots perfectly with an sd card and the easyb dtb but i cant install the os to the emmc, i get this: DDR version 1.13 20180428 ID:0xFFF In DDR3 333MHz Bus Width=32 Col=11 Bank=8 Row=16 CS=1 Die Bus-Width=16 Size=4096MB ddrconfig:3 OUT Boot1 Release Time: Feb 2 2018 15:41:39, version: 2.46 ChipType = 0x11, 194 SdmmcInit=2 0 BootCapSize=2000 UserCapSize=59640MB FwPartOffset=2000 , 2000 SdmmcInit=0 0 BootCapSize=0 UserCapSize=15193MB FwPartOffset=2000 , 0 StorageInit ok = 222399 Raw SecureMode = 0 SecureInit read PBA: 0x4 SecureInit read PBA: 0x404 SecureInit read PBA: 0x804 SecureInit read PBA: 0xc04 SecureInit read PBA: 0x1004 SecureInit ret = 0, SecureMode = 0 LoadTrustBL No find bl30.bin No find bl32.bin Load uboot, ReadLba = 2000 Load OK, addr=0x200000, size=0xa2ad8 RunBL31 0x10000 NOTICE: BL31: v1.3(debug):f947c7e NOTICE: BL31: Built : 15:40:24, Feb 6 2020 NOTICE: BL31:Rockchip release version: v1.3 INFO: ARM GICv2 driver initialized INFO: Using rkfiq sec cpu_context! INFO: boot cpu mask: 1 INFO: plat_rockchip_pmu_init: pd status 0xe INFO: BL31: Initializing runtime services INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x200000 INFO: SPSR = 0x3c9 U-Boot 2019.10-armbian (Feb 06 2020 - 15:40:34 +0300) Model: Rockchip RK3328 EVB DRAM: 4 GiB MMC: rksdmmc@ff500000: 1, rksdmmc@ff520000: 0 Loading Environment from EXT4... ** Unable to use mmc 0:auto for loading the env ** In: serial@ff130000 Out: serial@ff130000 Err: serial@ff130000 Model: Rockchip RK3328 EVB Net: Could not get PHY for ethernet@ff540000: addr -1 eth-1: ethernet@ff540000 Hit any key to stop autoboot: 0 starting USB... Bus usb@ff5c0000: USB EHCI 1.00 Bus usb@ff5d0000: USB OHCI 1.0 Bus usb@ff580000: Bus usb@ff600000: Register 2000140 NbrPorts 2 Starting the controller USB XHCI 1.10 scanning bus usb@ff5c0000 for devices... 1 USB Device(s) found scanning bus usb@ff5d0000 for devices... 1 USB Device(s) found scanning bus usb@ff580000 for devices... 1 USB Device(s) found scanning bus usb@ff600000 for devices... 1 USB Device(s) found scanning usb for storage devices... 0 Storage Device(s) found Device 0: unknown device switch to partitions #0, OK mmc1 is current device Scanning mmc 1:1... Found U-Boot script /boot.scr 912 bytes read in 3 ms (296.9 KiB/s) ## Executing script at 00500000 start mainline u-boot 1163 bytes read in 3 ms (377.9 KiB/s) ## Error: "mac" not defined ## Error: "eth_mac" not defined 23357952 bytes read in 1021 ms (21.8 MiB/s) 10114521 bytes read in 444 ms (21.7 MiB/s) 36564 bytes read in 9 ms (3.9 MiB/s) ## Loading init Ramdisk from Legacy Image at 04000000 ... Image Name: uInitrd Image Type: AArch64 Linux RAMDisk Image (gzip compressed) Data Size: 10114457 Bytes = 9.6 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 01f00000 Booting using the fdt blob at 0x1f00000 Loading Ramdisk to fc57f000, end fcf24599 ... OK Loading Device Tree to 00000000fc573000, end 00000000fc57eed3 ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.5.0-rc6-rk3328-tv (root@vbox) (gcc version 8.3.0 (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36))) #rc1. 038 SMP PREEMPT Thu Feb 6 15:49:31 MSK 2020 [ 0.000000] Machine model: Rockchip RK3328 TV box H96 Max+ [ 0.000000] earlycon: uart8250 at MMIO32 0x00000000ff130000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 384 MiB at 0x00000000e4400000 [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.0 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.0 [ 0.000000] percpu: Embedded 22 pages/cpu s50392 r8192 d31528 u90112 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1027656 [ 0.000000] Kernel command line: root=LABEL=ROOTFS rootflags=data=writeback r w console=uart8250,mmio32,0xff130000 console=tty0 no_console_suspend consoleblan k=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 [ 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: 3602652K/4175872K available (14460K kernel code, 1434K rw data, 5884K rodata, 960K init, 927K bss, 180004K reserved, 393216K cma-reserved) [ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x7c/0 x150 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jif fies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000007] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 43980 46511097ns [ 0.001523] Console: colour dummy device 80x25 [ 0.001934] printk: console [tty0] enabled [ 0.002372] printk: bootconsole [uart8250] disabled [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.5.0-rc6-rk3328-tv (root@vbox) (gcc version 8.3.0 (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36))) #rc1. 038 SMP PREEMPT Thu Feb 6 15:49:31 MSK 2020 [ 0.000000] Machine model: Rockchip RK3328 TV box H96 Max+ [ 0.000000] earlycon: uart8250 at MMIO32 0x00000000ff130000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 384 MiB at 0x00000000e4400000 [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.0 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.0 [ 0.000000] percpu: Embedded 22 pages/cpu s50392 r8192 d31528 u90112 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1027656 [ 0.000000] Kernel command line: root=LABEL=ROOTFS rootflags=data=writeback r w console=uart8250,mmio32,0xff130000 console=tty0 no_console_suspend consoleblan k=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 [ 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: 3602652K/4175872K available (14460K kernel code, 1434K rw data, 5884K rodata, 960K init, 927K bss, 180004K reserved, 393216K cma-reserved) [ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x7c/0 x150 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jif fies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000007] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 43980 46511097ns [ 0.001523] Console: colour dummy device 80x25 [ 0.001934] printk: console [tty0] enabled [ 0.002372] printk: bootconsole [uart8250] disabled [ 0.002881] Calibrating delay loop (skipped), value calculated using timer fr equency.. 48.00 BogoMIPS (lpj=96000) [ 0.002917] pid_max: default: 32768 minimum: 301 [ 0.003166] LSM: Security Framework initializing [ 0.003256] SELinux: Initializing. [ 0.003393] *** VALIDATE SELinux *** [ 0.003515] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, line ar) [ 0.003572] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.003680] *** VALIDATE tmpfs *** [ 0.004367] *** VALIDATE proc *** [ 0.004735] *** VALIDATE cgroup1 *** [ 0.004759] *** VALIDATE cgroup2 *** [ 0.026535] ASID allocator initialised with 32768 entries [ 0.034519] rcu: Hierarchical SRCU implementation. [ 0.046173] EFI services will not be available. [ 0.046736] smp: Bringing up secondary CPUs ... [ 0.078841] Detected VIPT I-cache on CPU1 [ 0.078917] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.110934] Detected VIPT I-cache on CPU2 [ 0.111006] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.143035] Detected VIPT I-cache on CPU3 [ 0.143098] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.143227] smp: Brought up 1 node, 4 CPUs [ 0.143342] SMP: Total of 4 processors activated. [ 0.143364] CPU features: detected: 32-bit EL0 Support [ 0.143387] CPU features: detected: CRC32 instructions [ 0.143902] CPU: All CPU(s) started at EL2 [ 0.143944] alternatives: patching kernel code [ 0.146896] devtmpfs: initialized [ 0.158727] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ma x_idle_ns: 7645041785100000 ns [ 0.158791] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.175521] xor: measuring software checksum speed [ 0.215310] 8regs : 1187.000 MB/sec [ 0.255383] 32regs : 1362.000 MB/sec [ 0.295458] arm64_neon: 1203.000 MB/sec [ 0.295478] xor: using function: 32regs (1362.000 MB/sec) [ 0.295570] pinctrl core: initialized pinctrl subsystem [ 0.296697] thermal_sys: Registered thermal governor 'step_wise' [ 0.297201] DMI not present or invalid. [ 0.297761] NET: Registered protocol family 16 [ 0.304645] DMA: preallocated 256 KiB pool for atomic allocations [ 0.304720] audit: initializing netlink subsys (disabled) [ 0.305066] audit: type=2000 audit(0.304:1): state=initialized audit_enabled= 0 res=1 [ 0.306576] cpuidle: using governor ladder [ 0.306629] cpuidle: using governor menu [ 0.307195] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.308673] Serial: AMBA PL011 UART driver [ 0.344830] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.344875] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.344901] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.344926] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.351398] cryptd: max_cpu_qlen set to 1000 [ 0.431912] raid6: neonx8 gen() 774 MB/s [ 0.499997] raid6: neonx8 xor() 733 MB/s [ 0.568137] raid6: neonx4 gen() 742 MB/s [ 0.636220] raid6: neonx4 xor() 715 MB/s [ 0.704386] raid6: neonx2 gen() 568 MB/s [ 0.772471] raid6: neonx2 xor() 594 MB/s [ 0.840648] raid6: neonx1 gen() 379 MB/s [ 0.908723] raid6: neonx1 xor() 448 MB/s [ 0.976898] raid6: int64x8 gen() 583 MB/s [ 1.044955] raid6: int64x8 xor() 380 MB/s [ 1.113139] raid6: int64x4 gen() 492 MB/s [ 1.181210] raid6: int64x4 xor() 370 MB/s [ 1.249414] raid6: int64x2 gen() 339 MB/s [ 1.317354] raid6: int64x2 xor() 301 MB/s [ 1.385535] raid6: int64x1 gen() 221 MB/s [ 1.453621] raid6: int64x1 xor() 229 MB/s [ 1.453641] raid6: using algorithm neonx8 gen() 774 MB/s [ 1.453661] raid6: .... xor() 733 MB/s, rmw enabled [ 1.453681] raid6: using neon recovery algorithm [ 1.454059] ACPI: Interpreter disabled. [ 1.456206] iommu: Default domain type: Translated [ 1.457530] vgaarb: loaded [ 1.458451] SCSI subsystem initialized [ 1.459126] usbcore: registered new interface driver usbfs [ 1.459209] usbcore: registered new interface driver hub [ 1.459329] usbcore: registered new device driver usb [ 1.459874] pps_core: LinuxPPS API ver. 1 registered [ 1.459898] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giome tti <giometti@linux.it> [ 1.459943] PTP clock support registered [ 1.459999] EDAC MC: Ver: 3.0.0 [ 1.460902] FPGA manager framework [ 1.461063] Advanced Linux Sound Architecture Driver Initialized. [ 1.461885] NetLabel: Initializing [ 1.461910] NetLabel: domain hash size = 128 [ 1.461928] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.462029] NetLabel: unlabeled traffic allowed by default [ 1.462807] clocksource: Switched to clocksource arch_sys_counter [ 1.462846] *** VALIDATE bpf *** [ 1.463244] VFS: Disk quotas dquot_6.6.0 [ 1.463358] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.463549] FS-Cache: Loaded [ 1.463570] *** VALIDATE ramfs *** [ 1.463613] *** VALIDATE hugetlbfs *** [ 1.464120] pnp: PnP ACPI: disabled [ 1.473995] NET: Registered protocol family 2 [ 1.475037] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 3276 8 bytes, linear) [ 1.475160] TCP established hash table entries: 32768 (order: 6, 262144 bytes , linear) [ 1.475606] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linea r) [ 1.476381] TCP: Hash tables configured (established 32768 bind 32768) [ 1.476673] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 1.476846] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 1.477319] NET: Registered protocol family 1 [ 1.478086] RPC: Registered named UNIX socket transport module. [ 1.478121] RPC: Registered udp transport module. [ 1.478140] RPC: Registered tcp transport module. [ 1.478159] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.478189] NET: Registered protocol family 44 [ 1.478225] PCI: CLS 0 bytes, default 64 [ 1.478553] Trying to unpack rootfs image as initramfs... [ 2.347155] Freeing initrd memory: 9876K [ 2.348523] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counte rs available [ 2.704322] Initialise system trusted keyrings [ 2.704656] workingset: timestamp_bits=46 max_order=20 bucket_order=0 [ 2.714314] zbud: loaded [ 2.716672] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 2.717207] FS-Cache: Netfs 'nfs' registered for caching [ 2.718118] NFS: Registering the id_resolver key type [ 2.718178] Key type id_resolver registered [ 2.718198] Key type id_legacy registered [ 2.718228] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 2.718251] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 2.720302] FS-Cache: Netfs 'cifs' registered for caching [ 2.720871] Key type cifs.spnego registered [ 2.720915] Key type cifs.idmap registered [ 2.720954] ntfs: driver 2.1.32 [Flags: R/W]. [ 2.721954] JFS: nTxBlock = 8192, nTxLock = 65536 [ 2.730289] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled [ 2.732671] *** VALIDATE xfs *** [ 2.733167] ocfs2: Registered cluster interface o2cb [ 2.733523] OCFS2 User DLM kernel interface loaded [ 2.735957] *** VALIDATE gfs2 *** [ 2.736392] gfs2: GFS2 installed [ 2.738040] aufs 5.5-20200203 [ 2.776508] Key type asymmetric registered [ 2.776551] Asymmetric key parser 'x509' registered [ 2.776571] Asymmetric key parser 'pkcs8' registered [ 2.776676] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2 46) [ 2.777002] io scheduler mq-deadline registered [ 2.777027] io scheduler kyber registered [ 2.777345] io scheduler bfq registered [ 2.784582] gpio-syscon ff100000.syscon:grf-gpio: can't read the data registe r offset! [ 2.791438] dma-pl330 ff1f0000.dmac: Loaded driver for PL330 DMAC-241330 [ 2.791488] dma-pl330 ff1f0000.dmac: DBUFF-128x8bytes Num_Chans-8 Num _Peri-20 Num_Events-16 [ 2.797887] Serial: 8250/16550 driver, 5 ports, IRQ sharing enabled [ 2.801024] ff130000.serial: ttyS2 at MMIO 0xff130000 (irq = 14, base_baud = 1500000) is a 16550A [ 2.890216] printk: console [ttyS2] enabled [ 2.891756] Serial: AMBA driver [ 2.893566] rockchip-vop ff370000.vop: Adding to iommu group 1 [ 2.898557] rockchip-drm display-subsystem: bound ff370000.vop (ops vop_compo nent_ops) [ 2.899381] dwhdmi-rockchip ff3c0000.hdmi: [drm:dw_hdmi_rockchip_bind] *ERROR * Unable to parse OF data [ 2.900235] rockchip-drm display-subsystem: failed to bind ff3c0000.hdmi (ops dw_hdmi_rockchip_ops): -517 [ 2.901321] rockchip-drm display-subsystem: master bind failed: -517 [ 2.918651] brd: module loaded [ 2.933662] loop: module loaded [ 2.937420] libphy: Fixed MDIO Bus: probed [ 2.939183] rk_gmac-dwmac ff550000.ethernet: IRQ eth_wake_irq not found [ 2.939800] rk_gmac-dwmac ff550000.ethernet: IRQ eth_lpi not found [ 2.940518] rk_gmac-dwmac ff550000.ethernet: PTP uses main clock [ 2.941201] rk_gmac-dwmac ff550000.ethernet: clock input or output? (output). [ 2.941852] rk_gmac-dwmac ff550000.ethernet: Can not read property: tx_delay. [ 2.942498] rk_gmac-dwmac ff550000.ethernet: set tx_delay to 0x30 [ 2.943083] rk_gmac-dwmac ff550000.ethernet: Can not read property: rx_delay. [ 2.943729] rk_gmac-dwmac ff550000.ethernet: set rx_delay to 0x10 [ 2.944297] rk_gmac-dwmac ff550000.ethernet: integrated PHY? (yes). [ 2.944936] rk_gmac-dwmac ff550000.ethernet: cannot get clock clk_mac_refout [ 2.945580] rk_gmac-dwmac ff550000.ethernet: cannot get clock clk_mac_speed [ 2.951297] rk_gmac-dwmac ff550000.ethernet: init for RMII [ 2.991099] rk_gmac-dwmac ff550000.ethernet: User ID: 0x10, Synopsys ID: 0x35 [ 2.991756] rk_gmac-dwmac ff550000.ethernet: DWMAC1000 [ 2.992236] rk_gmac-dwmac ff550000.ethernet: DMA HW capability register suppo rted [ 2.992915] rk_gmac-dwmac ff550000.ethernet: RX Checksum Offload Engine suppo rted [ 2.993595] rk_gmac-dwmac ff550000.ethernet: COE Type 2 [ 2.994069] rk_gmac-dwmac ff550000.ethernet: TX Checksum insertion supported [ 2.994707] rk_gmac-dwmac ff550000.ethernet: Wake-Up On Lan supported [ 2.995355] rk_gmac-dwmac ff550000.ethernet: Normal descriptors [ 2.995897] rk_gmac-dwmac ff550000.ethernet: Ring mode enabled [ 2.996427] rk_gmac-dwmac ff550000.ethernet: Enable RX Mitigation via HW Watc hdog Timer [ 2.997160] rk_gmac-dwmac ff550000.ethernet: device MAC address 7e:9f:a8:c6:4 0:6f [ 2.998113] libphy: stmmac: probed [ 3.013040] VFIO - User Level meta-driver version: 0.3 [ 3.017041] dwc2 ff580000.usb: ff580000.usb supply vusb_d not found, using du mmy regulator [ 3.017947] dwc2 ff580000.usb: ff580000.usb supply vusb_a not found, using du mmy regulator [ 3.033102] dwc2 ff580000.usb: DWC OTG Controller [ 3.033594] dwc2 ff580000.usb: new USB bus registered, assigned bus number 1 [ 3.034275] dwc2 ff580000.usb: irq 34, io mem 0xff580000 [ 3.035025] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bc dDevice= 5.05 [ 3.035776] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber= 1 [ 3.036434] usb usb1: Product: DWC OTG Controller [ 3.036865] usb usb1: Manufacturer: Linux 5.5.0-rc6-rk3328-tv dwc2_hsotg [ 3.037471] usb usb1: SerialNumber: ff580000.usb [ 3.038659] hub 1-0:1.0: USB hub found [ 3.039084] hub 1-0:1.0: 1 port detected [ 3.040220] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.040833] ehci-pci: EHCI PCI platform driver [ 3.041335] ehci-platform: EHCI generic platform driver [ 3.044334] ehci-platform ff5c0000.usb: EHCI Host Controller [ 3.044882] ehci-platform ff5c0000.usb: new USB bus registered, assigned bus number 2 [ 3.045742] ehci-platform ff5c0000.usb: irq 35, io mem 0xff5c0000 [ 3.058833] ehci-platform ff5c0000.usb: USB 2.0 started, EHCI 1.00 [ 3.059692] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bc dDevice= 5.05 [ 3.060443] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber= 1 [ 3.061100] usb usb2: Product: EHCI Host Controller [ 3.061545] usb usb2: Manufacturer: Linux 5.5.0-rc6-rk3328-tv ehci_hcd [ 3.062137] usb usb2: SerialNumber: ff5c0000.usb [ 3.063301] hub 2-0:1.0: USB hub found [ 3.063691] hub 2-0:1.0: 1 port detected [ 3.064612] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 3.065209] ohci-pci: OHCI PCI platform driver [ 3.065711] ohci-platform: OHCI generic platform driver [ 3.066630] ohci-platform ff5d0000.usb: Generic Platform OHCI controller [ 3.067297] ohci-platform ff5d0000.usb: new USB bus registered, assigned bus number 3 [ 3.068184] ohci-platform ff5d0000.usb: irq 36, io mem 0xff5d0000 [ 3.131057] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bc dDevice= 5.05 [ 3.131810] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber= 1 [ 3.132468] usb usb3: Product: Generic Platform OHCI controller [ 3.133005] usb usb3: Manufacturer: Linux 5.5.0-rc6-rk3328-tv ohci_hcd [ 3.133599] usb usb3: SerialNumber: ff5d0000.usb [ 3.134735] hub 3-0:1.0: USB hub found [ 3.135149] hub 3-0:1.0: 1 port detected [ 3.136758] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 3.137294] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus nu mber 4 [ 3.138195] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000000002010010 [ 3.139148] xhci-hcd xhci-hcd.0.auto: irq 170, io mem 0xff600000 [ 3.140211] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bc dDevice= 5.05 [ 3.140963] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber= 1 [ 3.141621] usb usb4: Product: xHCI Host Controller [ 3.142067] usb usb4: Manufacturer: Linux 5.5.0-rc6-rk3328-tv xhci-hcd [ 3.142658] usb usb4: SerialNumber: xhci-hcd.0.auto [ 3.144029] hub 4-0:1.0: USB hub found [ 3.144425] hub 4-0:1.0: 1 port detected [ 3.145234] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 3.145753] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus nu mber 5 [ 3.146462] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed [ 3.147165] usb usb5: We don't know the algorithms for LPM for this host, dis abling LPM. [ 3.148046] usb usb5: New USB device found, idVendor=1d6b, idProduct=0003, bc dDevice= 5.05 [ 3.148796] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber= 1 [ 3.149455] usb usb5: Product: xHCI Host Controller [ 3.149900] usb usb5: Manufacturer: Linux 5.5.0-rc6-rk3328-tv xhci-hcd [ 3.150492] usb usb5: SerialNumber: xhci-hcd.0.auto [ 3.151640] hub 5-0:1.0: USB hub found [ 3.152033] hub 5-0:1.0: 1 port detected [ 3.153118] usbcore: registered new interface driver usb-storage [ 3.153956] mousedev: PS/2 mouse device common for all mice [ 3.155487] i2c /dev entries driver [ 3.157835] rk808 1-0018: failed to read the chip id at 0x17 [ 3.172997] sdhci: Secure Digital Host Controller Interface driver [ 3.173574] sdhci: Copyright(c) Pierre Ossman [ 3.174003] Synopsys Designware Multimedia Card Interface Driver [ 3.175275] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.177012] ledtrig-cpu: registered to indicate activity on CPUs [ 3.178187] hid: raw HID events driver (C) Jiri Kosina [ 3.179072] usbcore: registered new interface driver usbhid [ 3.179583] usbhid: USB HID core driver [ 3.186965] NET: Registered protocol family 17 [ 3.187753] Key type dns_resolver registered [ 3.189017] registered taskstats version 1 [ 3.189407] Loading compiled-in X.509 certificates [ 3.190017] zswap: loaded using pool lzo/zbud [ 3.190724] Key type ._fscrypt registered [ 3.191142] Key type .fscrypt registered [ 3.193290] Btrfs loaded, crc32c=crc32c-generic [ 3.230287] Key type encrypted registered [ 3.267821] rockchip-drm display-subsystem: bound ff370000.vop (ops vop_compo nent_ops) [ 3.268852] dwhdmi-rockchip ff3c0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (inno_dw_hdmi_phy2) [ 3.270496] dwhdmi-rockchip ff3c0000.hdmi: registered DesignWare HDMI I2C bus driver [ 3.272362] rockchip-drm display-subsystem: bound ff3c0000.hdmi (ops dw_hdmi_ rockchip_ops) [ 3.273126] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 3.273723] [drm] No driver support for vblank timestamp query. [ 3.274347] [drm] Cannot find any crtc or sizes [ 3.275571] [drm] Initialized rockchip 1.0.0 20140818 for display-subsystem o n minor 0 [ 3.279585] printk: console [netcon0] enabled [ 3.280006] netconsole: network logging started [ 3.280424] hctosys: unable to open rtc device (rtc0) [ 3.281483] ALSA device list: [ 3.281770] No soundcards found. [ 3.282918] Freeing unused kernel memory: 960K [ 3.290881] Run /init as init process [ 3.926317] dwmmc_rockchip ff500000.dwmmc: IDMAC supports 32-bit address mode . [ 3.927125] dwmmc_rockchip ff500000.dwmmc: Using internal DMA controller. [ 3.927772] dwmmc_rockchip ff500000.dwmmc: Version ID is 270a [ 3.928385] dwmmc_rockchip ff500000.dwmmc: DW MMC controller at irq 31,32 bit host data width,256 deep fifo [ 3.943179] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 3.959680] dwmmc_rockchip ff520000.dwmmc: IDMAC supports 32-bit address mode . [ 3.960431] dwmmc_rockchip ff520000.dwmmc: Using internal DMA controller. [ 3.961072] dwmmc_rockchip ff520000.dwmmc: Version ID is 270a [ 3.961692] dwmmc_rockchip ff520000.dwmmc: DW MMC controller at irq 32,32 bit host data width,256 deep fifo [ 3.962879] mmc_host mmc1: card is non-removable. [ 3.975076] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 4.020995] mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 50000000 Hz, actual 50000000HZ div = 0) [ 4.022082] mmc0: new high speed SDHC card at address aaaa [ 4.025520] mmcblk0: mmc0:aaaa SL16G 14.8 GiB [ 4.031142] mmcblk0: p1 p2 [ 4.135649] mmc_host mmc1: Bus speed (slot 0) = 150000000Hz (slot req 1500000 00Hz, actual 150000000HZ div = 0) [ 4.137285] random: fast init done [ 4.162462] dwmmc_rockchip ff520000.dwmmc: All phases work, using default pha se 0. [ 4.163776] mmc1: new HS200 MMC card at address 0001 [ 4.165662] mmcblk1: mmc1:0001 DF4064 58.2 GiB [ 4.166749] mmcblk1boot0: mmc1:0001 DF4064 partition 1 4.00 MiB [ 4.168020] mmcblk1boot1: mmc1:0001 DF4064 partition 2 4.00 MiB [ 4.168947] mmcblk1rpmb: mmc1:0001 DF4064 partition 3 4.00 MiB, chardev (243: 0) [ 4.291014] [drm] Cannot find any crtc or sizes [ 4.916817] EXT4-fs (mmcblk0p2): mounted filesystem with writeback data mode. Opts: data=writeback [ 5.763992] systemd[1]: System time before build time, advancing clock. [ 5.887708] NET: Registered protocol family 10 [ 5.975469] Segment Routing with IPv6 [ 6.028943] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SEL INUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL + XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybr id) [ 6.032020] systemd[1]: Detected architecture arm64. [ 6.074155] systemd[1]: Set hostname to <rk3328>. [ 6.077890] systemd[1]: Failed to bump fs.file-max, ignoring: Invalid argumen t [ 6.093827] systemd[1]: Couldn't move remaining userspace processes, ignoring : Input/output error [ 6.843816] random: systemd: uninitialized urandom read (16 bytes read) [ 6.859966] random: systemd: uninitialized urandom read (16 bytes read) [ 6.860681] systemd[1]: Reached target Remote File Systems. [ 6.862291] random: systemd: uninitialized urandom read (16 bytes read) [ 6.868325] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 6.869952] systemd[1]: Started Dispatch Password Requests to Console Directo ry Watch. [ 6.871349] systemd[1]: Reached target Swap. [ 6.874226] systemd[1]: Created slice system-getty.slice. [ 7.141861] EXT4-fs (mmcblk0p2): re-mounted. Opts: commit=600,errors=remount- ro [ 7.628734] systemd-journald[400]: Received request to flush runtime journal from PID 1 [ 8.183388] asoc-simple-card hdmi-sound: i2s-hifi <-> ff000000.i2s mapping ok [ 8.184249] asoc-simple-card hdmi-sound: ASoC: no DMI vendor name! [ 8.237892] mc: Linux media interface: v0.10 [ 8.264791] videodev: Linux video capture interface: v2.00 [ 8.284136] rk3328-codec ff410000.codec: spk_depop_time use default value. [ 8.319366] asoc-simple-card analog-sound: ff410000.codec <-> ff010000.i2s ma pping ok [ 8.320250] asoc-simple-card analog-sound: ASoC: no DMI vendor name! [ 8.344156] hantro_vpu: module is from the staging directory, the quality is unknown, you have been warned. [ 8.351970] hantro-vpu ff350000.video-codec: Adding to iommu group 0 [ 8.353571] hantro-vpu ff350000.video-codec: registered rockchip,rk3328-vpu-d ec as /dev/video0 [ 8.374949] Registered IR keymap rc-x96max [ 8.399988] IR NEC protocol handler initialized [ 8.427208] rc rc0: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0 [ 8.428192] input: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0/input 0 [ 8.443078] rc rc0: lirc_dev: driver gpio_ir_recv registered at minor = 0, ra w IR receiver, no transmitter [ 10.427078] zram: Added device: zram0 [ 10.429289] zram: Added device: zram1 [ 10.431160] zram: Added device: zram2 [ 10.553533] zram1: detected capacity change from 0 to 1073741824 [ 10.660987] rk_gmac-dwmac ff550000.ethernet eth0: PHY [stmmac-1:00] driver [R ockchip integrated EPHY] [ 10.674928] rk_gmac-dwmac ff550000.ethernet eth0: No Safety Features support found [ 10.675666] rk_gmac-dwmac ff550000.ethernet eth0: PTP not supported by HW [ 10.676296] rk_gmac-dwmac ff550000.ethernet eth0: configuring for phy/rmii li nk mode [ 11.634884] Adding 1048572k swap on /dev/zram1. Priority:5 extents:1 across: 1048572k SSFS [ 11.830433] zram0: detected capacity change from 0 to 52428800 [ 12.195891] random: crng init done [ 12.196241] random: 7 urandom warning(s) missed due to ratelimiting [ 12.401922] EXT4-fs (zram0): mounted filesystem without journal. Opts: discar d [ 12.402649] ext4 filesystem being mounted at /var/log supports timestamps unt il 2038 (0x7fffffff) Armbian 20.02.0-rc1.038 Buster ttyS2 rk3328 login: root Password: [ 33.758854] vcc_host_vbus: disabling [ 33.759215] vcc_otg_vbus: disabling Last login: Mon Feb 24 23:01:05 UTC 2020 on tty1 ____ _ ________________ ___ _______ __ | _ \| |/ /___ /___ /___ \( _ ) |_ _\ \ / / | |_) | ' / |_ \ |_ \ __) / _ \ _____| | \ \ / / | _ <| . \ ___) |__) / __/ (_) |_____| | \ V / |_| \_\_|\_\____/____/_____\___/ |_| \_/ Welcome to Armbian buster with Linux 5.5.0-rc6-rk3328-tv System load: 0.73 0.19 0.06 Up time: 0 min Memory usage: 3 % of 3912MB IP: CPU temp: 43°C Usage of /: 19% of 15G root@rk3328:~# fdisk -l Disk /dev/ram0: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram1: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram2: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram3: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram4: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram5: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram6: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram7: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram8: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram9: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram10: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram11: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram12: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram13: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram14: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/ram15: 4 MiB, 4194304 bytes, 8192 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/mmcblk0: 14.9 GiB, 15931539456 bytes, 31116288 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x3f6eaa36 Device Boot Start End Sectors Size Id Type /dev/mmcblk0p1 32768 557055 524288 256M e W95 FAT16 (LBA) /dev/mmcblk0p2 557056 30805119 30248064 14.4G 83 Linux Disk /dev/mmcblk1: 58.2 GiB, 62537072640 bytes, 122142720 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/zram0: 50 MiB, 52428800 bytes, 12800 sectors Units: sectors of 1 * 4096 = 4096 bytes Sector size (logical/physical): 4096 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk /dev/zram1: 1 GiB, 1073741824 bytes, 262144 sectors Units: sectors of 1 * 4096 = 4096 bytes Sector size (logical/physical): 4096 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes root@rk3328:~# fdisk /dev/mmcblk1 Welcome to fdisk (util-linux 2.33.1). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Device does not contain a recognized partition table. Created a new DOS disklabel with disk identifier 0x614ff0b0. Command (m for help): m Help: DOS (MBR) a toggle a bootable flag b edit nested BSD disklabel c toggle the dos compatibility flag Generic d delete a partition F list free unpartitioned space l list known partition types n add a new partition p print the partition table t change a partition type v verify the partition table i print information about a partition Misc m print this menu u change display/entry units x extra functionality (experts only) Script I load disk layout from sfdisk script file O dump disk layout to sfdisk script file Save & Exit w write table to disk and exit q quit without saving changes Create a new label g create a new empty GPT partition table G create a new empty SGI (IRIX) partition table o create a new empty DOS partition table s create a new empty Sun partition table Command (m for help): i No partition is defined yet! Command (m for help): q root@rk3328:~# ls fstab install-aw.sh install-rk3399.sh g12_sound.sh install-rk3328.sh u-boot install-aml.sh install-rk3399-nvme.sh u-boot-default-rk3328.img root@rk3328:~# ./install-rk3328.sh Start script create MBR and filesystem /dev/mmcblk1 Start backup u-boot default 16+0 records in 16+0 records out 16777216 bytes (17 MB, 16 MiB) copied, 1.70928 s, 9.8 MB/s [ 185.774226] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 185.853733] mmc_host mmc1: Bus speed (slot 0) = 150000000Hz (slot req 1500000 00Hz, actual 150000000HZ div = 0) [ 185.878432] dwmmc_rockchip ff520000.dwmmc: All phases work, using default pha se 0. [ 185.880422] blk_update_request: I/O error, dev mmcblk1, sector 0 op 0x1:(WRIT E) flags 0x800 phys_seg 1 prio class 0 [ 185.881382] Buffer I/O error on dev mmcblk1, logical block 0, lost async page write 1+0 records in 1+0 records out 512 bytes copied, 0.129009 s, 4.0 kB/s [ 185.904484] blk_update_request: I/O error, dev mmcblk1, sector 0 op 0x1:(WRIT E) flags 0x800 phys_seg 1 prio class 0 [ 185.905462] Buffer I/O error on dev mmcblk1, logical block 0, lost async page write 442+0 records in 442+0 records out 442 bytes copied, 0.0190557 s, 23.2 kB/s [ 187.355565] blk_update_request: I/O error, dev mmcblk1, sector 0 op 0x1:(WRIT E) flags 0x4800 phys_seg 256 prio class 0 [ 187.356570] Buffer I/O error on dev mmcblk1, logical block 0, lost async page write [ 187.357325] Buffer I/O error on dev mmcblk1, logical block 1, lost async page write [ 187.358035] Buffer I/O error on dev mmcblk1, logical block 2, lost async page write [ 187.358743] Buffer I/O error on dev mmcblk1, logical block 3, lost async page write [ 187.359522] Buffer I/O error on dev mmcblk1, logical block 4, lost async page write [ 187.360274] Buffer I/O error on dev mmcblk1, logical block 5, lost async page write [ 187.361005] Buffer I/O error on dev mmcblk1, logical block 6, lost async page write [ 187.361722] Buffer I/O error on dev mmcblk1, logical block 7, lost async page write [ 187.501381] blk_update_request: I/O error, dev mmcblk1, sector 2048 op 0x1:(W RITE) flags 0x4800 phys_seg 256 prio class 0 [ 187.522265] blk_update_request: I/O error, dev mmcblk1, sector 4096 op 0x1:(W RITE) flags 0x4800 phys_seg 256 prio class 0 [ 187.543161] blk_update_request: I/O error, dev mmcblk1, sector 6144 op 0x1:(W RITE) flags 0x4800 phys_seg 256 prio class 0 [ 187.553605] blk_update_request: I/O error, dev mmcblk1, sector 8192 op 0x1:(W RITE) flags 0x4800 phys_seg 256 prio class 0 [ 187.564060] blk_update_request: I/O error, dev mmcblk1, sector 10240 op 0x1:( WRITE) flags 0x4800 phys_seg 256 prio class 0 [ 187.574522] blk_update_request: I/O error, dev mmcblk1, sector 14336 op 0x1:( WRITE) flags 0x4800 phys_seg 256 prio class 0 [ 187.584993] blk_update_request: I/O error, dev mmcblk1, sector 16384 op 0x1:( WRITE) flags 0x4800 phys_seg 256 prio class 0 32767+0 records in 32767+0 records out 16776704 bytes (17 MB, 16 MiB) copied, 1.77806 s, 9.4 MB/s Start create MBR and partittion Warning: Error fsyncing/closing /dev/mmcblk1: Input/output error Error: Input/output error during write on /dev/mmcblk1 Error: /dev/mmcblk1: unrecognised disk label Error: /dev/mmcblk1: unrecognised disk label Start update u-boot dd: fsync failed for '/dev/mmcblk1': Input/output error 8192+0 records in 8192+0 records out 4194304 bytes (4.2 MB, 4.0 MiB) copied, 0.46853 s, 9.0 MB/s Done Start copy system for eMMC. Formatting BOOT partition...mkfs.fat 4.1 (2017-01-24) mkfs.vfat: unable to open /dev/mmcblk1p1: No such file or directory done. mount: /ddbr/install: special device /dev/mmcblk1p1 does not exist. Cppying BOOT...done. Edit init config...done. rm: cannot remove '/ddbr/install/s9*': No such file or directory rm: cannot remove '/ddbr/install/aml*': No such file or directory umount: /ddbr/install: not mounted. Formatting ROOT partition... The file /dev/mmcblk1p2 does not exist and no size was specified. e2fsck 1.44.5 (15-Dec-2018) e2fsck: No such file or directory while trying to open /dev/mmcblk1p2 Possibly non-existent device? done. Copying ROOTFS. mount: /ddbr/install: special device /dev/mmcblk1p2 does not exist. Copy BIN Create DEV Copy ETC Copy HOME Copy LIB Create MEDIA Create MNT Copy OPT Create PROC Copy ROOT Create RUN Copy SBIN Copy SELINUX Copy SRV Create SYS Create TMP Copy USR Copy VAR Copy fstab umount: /ddbr/install: not mounted. ******************************************* Complete copy OS to eMMC ******************************************* root@rk3328:~# But nothing is created or copied to the emmc, any help is greatly appreciated
-
It is an attempt to port r7p0 mali kernel driver to work with legacy kernel 4.4. It compiles and the module loads, but then does not actually work well when an application tries to use the GPU. The rockchip legacy kernel already comes with r5p0 mali driver and, despite the version mismatch, I confirm that r7p0 userland blobs works with it. I was able to run quake2 - which is my favorite benchmark - but it was not pretty solid and after a while some GPU errors comes up in dmesg. I didn't found the cause, but it could be that I was just "overclocking" the rk3228a I was using to make the tests.
-
the RCs should be 'somehow' predictable.. e.g. for the linux kernel you know it's monday morning (europe) when the next one drops in how many RCs we have mostly depends on how smooth things go.. so it is possible that the releasedate is not always 100% clear.. I guess it's up to the release maintainer to decide when things are mature enough, but maybe we need a few 'must haves' and a few 'this will delay' defined (means if, it's important enough that it will delay a release).. the images which are finally released should be somehow reproducible.. something like ./compile.sh $RANDOM_FANCY_VARIABLE=release_2002 and it fetches exactly the sources which were used to produce the release (either over the armbian repo/sources) or by commit hash (which can be problematic from time to time, ask @TonyMac32 and the story of rockchip). So that someone who wants to build a 'know working' (in case it was tested for the board in question) image can build and patch on top of the release.. except the commits which alternate the rc numbers in the buildscript rc's should IMO have no commits which are not available in master as well so that after the release we can go 'back to work' without a discussion what we've to cherry pick from the release to work on master, this also means if someone wants to bring up a fancy feature during rc this must imo kept 'on hold' until the release is here.. Otherwise we end in the same mess as we had between master and our 'development' branch and all other attempts to have a 'stable' branch.. for sure stuff I didn't thought about yet..
-
NAND reboot frequently fails on nanopi neo plus2, workaround
Dennboy replied to Dennboy's topic in Allwinner A64, H5 and H6
For your information, with this work-around, U-boot warns about a SPL version mismatch (DRAM: sunxi SPL version mismatch: expected 3, got 2), but works nontheless. I wonder what is different in the SPL version that makes the boot possible (maybe the CPU frequency or DRAM frequency?), and if we can transfer this functionality to the newer SPL without breaking the reboot. See the serial trace of a successful reboot below for the NanoPi neo plus hardware revision 2.0 (revision 1.2 with 512MB DRAM works as well): [ 311.266768] reboot: Restarting system U-Boot SPL 2017.11 (Nov 15 2019 - 05:14:40) DRAM: 1024 MiB(504MHz) CPU Freq: 408MHz memory test: 1 Pattern 55aa Writing...Reading...OK Trying to boot from MMC2 Boot device: emmc NOTICE: BL31: v2.1(debug):bb2d778-dirty NOTICE: BL31: Built : 18:34:11, Jul 5 2019 NOTICE: BL31: Detected Allwinner H5 SoC (1718) NOTICE: BL31: Found U-Boot DTB at 0x40899d8, model: FriendlyARM NanoPi NEO Plus 2 INFO: ARM GICv2 driver initialized INFO: Configuring SPC Controller NOTICE: BL31: PMIC: Defaulting to PortL GPIO according to H5 reference design. INFO: BL31: Platform setup done INFO: BL31: Initializing runtime services INFO: BL31: cortex_a53: CPU workaround for 855873 was applied INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x4a000000 INFO: SPSR = 0x3c9 U-Boot 2019.04-armbian (Jul 06 2019 - 18:02:12 +0200) Allwinner Technology CPU: Allwinner H5 (SUN50I) Model: FriendlyARM NanoPi NEO Plus 2 DRAM: sunxi SPL version mismatch: expected 3, got 2 1 GiB MMC: mmc@1c0f000: 0, mmc@1c11000: 1 An occasional successful boot from NAND without the workaround looks like below. The main difference seems to be the cpu/memory frequency and the memory test. [ 401.171972] reboot: Restarting system U-Boot SPL 2019.04-armbian (Jul 06 2019 - 18:02:12 +0200) DRAM: 1024 MiB Trying to boot from MMC2 U-Boot SPL 2019.04-armbian (Jul 06 2019 - 18:02:12 +0200) DRAM: 1024 MiB Trying to boot from MMC2 NOTICE: BL31: v2.1(debug):bb2d778-dirty NOTICE: BL31: Built : 18:34:11, Jul 5 2019 NOTICE: BL31: Detected Allwinner H5 SoC (1718) NOTICE: BL31: Found U-Boot DTB at 0x40899d8, model: FriendlyARM NanoPi NEO Plus 2 INFO: ARM GICv2 driver initialized INFO: Configuring SPC Controller NOTICE: BL31: PMIC: Defaulting to PortL GPIO according to H5 reference design. INFO: BL31: Platform setup done INFO: BL31: Initializing runtime services INFO: BL31: cortex_a53: CPU workaround for 855873 was applied INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x4a000000 INFO: SPSR = 0x3c9 U-Boot 2019.04-armbian (Jul 06 2019 - 18:02:12 +0200) Allwinner Technology CPU: Allwinner H5 (SUN50I) Model: FriendlyARM NanoPi NEO Plus 2 DRAM: 1 GiB MMC: mmc@1c0f000: 0, mmc@1c11000: 1 -
Oh, sorry for the confusion. Here is a full snippit from the conversation.soerenderfor suggest your armbian images as a solution to flashing to a possibly adaptable digital signage rk3399 heres the converastion: bubbadestroy 1 Started conversation: Wednesday at 04:13 PM I recently added and cleaned up with several edits an inquiry about a rk3399 board called AM40 iQ. Do you have any suggestions on how I might approach the forum to get support on working with this strange device? The goal would be to put armbian on it and get a bad ass M4 equivalent device that comes loaded with a very nice case fan and hardware for under $50. Quote Edit soerenderfor 3 Replied: Wednesday at 04:31 PM I will look at the board, it seems interresting. Do you have a link to buy the device from, shipping to EU? Best Regards. Quote bubbadestroy 1 Replied: Wednesday at 05:23 PM i did see one , ill update ya in a sec. Quote Edit bubbadestroy 1 Replied: Wednesday at 05:37 PM ok this guy has one, and I know for a FACT he will entertain offers for less cause I'm considering his offer of $58 right now at the moment. If you decide to, he will likely entertain $50 US if you let him know you are going to be paying likely $20 in shipping cost for that to europe. (you don't wanna pay more than 70.00 or 80.00 Euro for total i imagine.. https://www.ebay.com/itm/SMART-iQ-AM40-Appliance-UGK-AM40-EDU-EWY1-RK3399-Signage-OPS-plug-board-mini-PC/114055870278?hash=item1a8e427746:g:pqIAAOSwX-ZdoLJj#shpCntId I picked one up used for $35 without the antennas ... as soon as it arrives I'll know for sure how cool this thing really is. Quote Edit soerenderfor 3 Replied: Wednesday at 06:35 PM Have you done some progress with it? Can balbes150 universal images fit the machine? I have just seen your pictures from your topic, i'm curious. How well is the machine cooled down, have looked inside the case? Best Regards.
-
Hi all, I have a problem with current DEV kernel. On some boards, everything works nicely, and after booting the kernel network is stable, on some other C2 boards, I get error messages on the eth0 dwmac, and no network: [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.3.15-meson64 (root@skylake) (gcc version 7.4.1 20181213 [linaro-7.4-2019.02 revision 56ec6f6b99cc167ff0c2f8e1a2eed33b1edc85d4] (Linaro GCC 7.4-2019.02)) #5.99 SMP PREEMPT Thu Dec 12 11:12:47 CET 2019 [ 0.000000] Machine model: Hardkernel ODROID-C2 [ 0.000000] Reserved memory: created CMA memory pool at 0x000000006d800000, size 256 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] On node 0 totalpages: 518912 [ 0.000000] DMA32 zone: 8128 pages used for memmap [ 0.000000] DMA32 zone: 0 pages reserved [ 0.000000] DMA32 zone: 518912 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 s51224 r8192 d30696 u90112 [ 0.000000] pcpu-alloc: s51224 r8192 d30696 u90112 alloc=22*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] CPU features: detected: ARM erratum 843419 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 510784 [ 0.000000] Kernel command line: root=UUID=30fa8d3c-2777-46bb-ac53-01c9512f2f27 rootwait rootfstype=ext4 panic=10 console=ttyAML0,115200 console=tty1 consoleblank=0 coherent_pool=2M loglevel=1 ubootpart=e5be0000-01 usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u usbcore.autosuspend=-1 cgroup_enable=memory swapaccount=1 [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 1749708K/2075648K available (11134K kernel code, 746K rwdata, 3388K rodata, 576K init, 399K bss, 63796K reserved, 262144K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4. [ 0.000000] Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] irq_meson_gpio: 133 to 8 gpio interrupt mux initialized [ 0.000000] random: get_random_bytes called from start_kernel+0x2f4/0x488 with crng_init=0 [ 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.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000238] Console: colour dummy device 80x25 [ 0.000246] printk: console [tty1] enabled [ 0.000271] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000276] pid_max: default: 32768 minimum: 301 [ 0.000323] LSM: Security Framework initializing [ 0.000380] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.000393] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.000723] *** VALIDATE proc *** [ 0.000888] *** VALIDATE cgroup1 *** [ 0.000893] *** VALIDATE cgroup2 *** [ 0.024007] ASID allocator initialised with 32768 entries [ 0.032000] rcu: Hierarchical SRCU implementation. [ 0.048018] smp: Bringing up secondary CPUs ... [ 0.080712] Detected VIPT I-cache on CPU1 [ 0.080751] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.112719] Detected VIPT I-cache on CPU2 [ 0.112739] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.144750] Detected VIPT I-cache on CPU3 [ 0.144767] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.144811] smp: Brought up 1 node, 4 CPUs [ 0.144814] SMP: Total of 4 processors activated. [ 0.144817] CPU features: detected: 32-bit EL0 Support [ 0.144820] CPU features: detected: CRC32 instructions [ 0.145083] CPU: All CPU(s) started at EL2 [ 0.145095] alternatives: patching kernel code [ 0.145664] devtmpfs: initialized [ 0.149787] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.149801] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.155452] xor: measuring software checksum speed [ 0.192225] 8regs : 2948.000 MB/sec [ 0.232247] 32regs : 3624.000 MB/sec [ 0.272272] arm64_neon: 3173.000 MB/sec [ 0.272275] xor: using function: 32regs (3624.000 MB/sec) [ 0.272284] pinctrl core: initialized pinctrl subsystem [ 0.273197] NET: Registered protocol family 16 [ 0.273500] audit: initializing netlink subsys (disabled) [ 0.273574] audit: type=2000 audit(0.272:1): state=initialized audit_enabled=0 res=1 [ 0.276950] cpuidle: using governor menu [ 0.277149] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.277887] DMA: preallocated 2048 KiB pool for atomic allocations [ 0.277974] Serial: AMBA PL011 UART driver [ 0.287994] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.288001] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.288004] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.288007] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.289931] cryptd: max_cpu_qlen set to 1000 [ 0.360488] raid6: neonx8 gen() 2112 MB/s [ 0.428564] raid6: neonx8 xor() 1962 MB/s [ 0.496609] raid6: neonx4 gen() 1942 MB/s [ 0.564648] raid6: neonx4 xor() 1850 MB/s [ 0.632722] raid6: neonx2 gen() 1498 MB/s [ 0.700757] raid6: neonx2 xor() 1551 MB/s [ 0.768849] raid6: neonx1 gen() 935 MB/s [ 0.836910] raid6: neonx1 xor() 1104 MB/s [ 0.904937] raid6: int64x8 gen() 1259 MB/s [ 0.972974] raid6: int64x8 xor() 961 MB/s [ 1.041059] raid6: int64x4 gen() 1334 MB/s [ 1.109095] raid6: int64x4 xor() 981 MB/s [ 1.177181] raid6: int64x2 gen() 871 MB/s [ 1.245217] raid6: int64x2 xor() 775 MB/s [ 1.313300] raid6: int64x1 gen() 569 MB/s [ 1.381343] raid6: int64x1 xor() 569 MB/s [ 1.381345] raid6: using algorithm neonx8 gen() 2112 MB/s [ 1.381347] raid6: .... xor() 1962 MB/s, rmw enabled [ 1.381349] raid6: using neon recovery algorithm [ 1.382590] SCSI subsystem initialized [ 1.382831] usbcore: registered new interface driver usbfs [ 1.382859] usbcore: registered new interface driver hub [ 1.382919] usbcore: registered new device driver usb [ 1.383203] pps_core: LinuxPPS API ver. 1 registered [ 1.383206] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.383220] PTP clock support registered [ 1.384106] clocksource: Switched to clocksource arch_sys_counter [ 1.384237] VFS: Disk quotas dquot_6.6.0 [ 1.384275] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.384324] *** VALIDATE hugetlbfs *** [ 1.388373] thermal_sys: Registered thermal governor 'step_wise' [ 1.388377] thermal_sys: Registered thermal governor 'power_allocator' [ 1.388641] NET: Registered protocol family 2 [ 1.388978] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 1.389003] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.389086] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 1.389249] TCP: Hash tables configured (established 16384 bind 16384) [ 1.389338] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.389370] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.389490] NET: Registered protocol family 1 [ 1.389768] RPC: Registered named UNIX socket transport module. [ 1.389770] RPC: Registered udp transport module. [ 1.389772] RPC: Registered tcp transport module. [ 1.389774] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.389896] Trying to unpack rootfs image as initramfs... [ 1.606274] Freeing initrd memory: 6976K [ 1.606857] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.607092] kvm [1]: IPA Size Limit: 40bits [ 1.607413] kvm [1]: vgic interrupt IRQ1 [ 1.607493] kvm [1]: Hyp mode initialized successfully [ 1.778993] Initialise system trusted keyrings [ 1.779093] workingset: timestamp_bits=46 max_order=19 bucket_order=0 [ 1.782785] zbud: loaded [ 1.784394] NFS: Registering the id_resolver key type [ 1.784413] Key type id_resolver registered [ 1.784415] Key type id_legacy registered [ 1.784422] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.784425] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 1.785178] JFS: nTxBlock = 8192, nTxLock = 65536 [ 1.789873] SGI XFS with ACLs, security attributes, realtime, no debug enabled [ 1.812515] Key type asymmetric registered [ 1.812521] Asymmetric key parser 'x509' registered [ 1.812581] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 1.812704] io scheduler mq-deadline registered [ 1.812707] io scheduler kyber registered [ 1.812835] io scheduler bfq registered [ 1.813917] GPIO line 501 (usb-hub-reset) hogged as output/high [ 1.824713] soc soc0: Amlogic Meson GXBB (S905) Revision 1f:c (0:1) Detected [ 1.825574] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 1.826845] c11084c0.serial: ttyAML1 at MMIO 0xc11084c0 (irq = 10, base_baud = 1500000) is a meson_uart [ 1.827188] c81004c0.serial: ttyAML0 at MMIO 0xc81004c0 (irq = 14, base_baud = 1500000) is a meson_uart [ 1.827225] printk: console [ttyAML0] enabled [ 1.829350] brd: module loaded [ 1.832420] loop: module loaded [ 1.833173] libphy: Fixed MDIO Bus: probed [ 1.833564] tun: Universal TUN/TAP device driver, 1.6 [ 1.834341] meson8b-dwmac c9410000.ethernet: PTP uses main clock [ 1.834349] meson8b-dwmac c9410000.ethernet: no reset control found [ 1.834687] meson8b-dwmac c9410000.ethernet: User ID: 0x11, Synopsys ID: 0x37 [ 1.834693] meson8b-dwmac c9410000.ethernet: DWMAC1000 [ 1.834698] meson8b-dwmac c9410000.ethernet: DMA HW capability register supported [ 1.834701] meson8b-dwmac c9410000.ethernet: RX Checksum Offload Engine supported [ 1.834705] meson8b-dwmac c9410000.ethernet: COE Type 2 [ 1.834708] meson8b-dwmac c9410000.ethernet: TX Checksum insertion supported [ 1.834711] meson8b-dwmac c9410000.ethernet: Wake-Up On Lan supported [ 1.834733] meson8b-dwmac c9410000.ethernet: Normal descriptors [ 1.834736] meson8b-dwmac c9410000.ethernet: Ring mode enabled [ 1.834740] meson8b-dwmac c9410000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 1.834835] libphy: stmmac: probed [ 1.886865] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.886870] ehci-platform: EHCI generic platform driver [ 1.886956] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.886973] ohci-platform: OHCI generic platform driver [ 1.887237] usbcore: registered new interface driver usb-storage [ 1.888047] mousedev: PS/2 mouse device common for all mice [ 1.888327] i2c /dev entries driver [ 1.889917] sdhci: Secure Digital Host Controller Interface driver [ 1.889922] sdhci: Copyright(c) Pierre Ossman [ 1.889942] Synopsys Designware Multimedia Card Interface Driver [ 1.890854] meson-gx-mmc d0074000.mmc: allocated mmc-pwrseq [ 1.916719] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.917517] ledtrig-cpu: registered to indicate activity on CPUs [ 1.917782] meson-sm: secure-monitor enabled [ 1.917974] usbcore: registered new interface driver usbhid [ 1.917975] usbhid: USB HID core driver [ 1.918105] platform-mhu c883c404.mailbox: Platform MHU Mailbox registered [ 1.920240] NET: Registered protocol family 10 [ 1.920811] Segment Routing with IPv6 [ 1.920848] NET: Registered protocol family 17 [ 1.920897] Key type dns_resolver registered [ 1.921446] registered taskstats version 1 [ 1.921449] Loading compiled-in X.509 certificates [ 1.921520] zswap: loaded using pool lzo/zbud [ 1.922274] Btrfs loaded, crc32c=crc32c-generic [ 1.939460] Key type encrypted registered [ 1.949162] dwc2 c9000000.usb: c9000000.usb supply vusb_d not found, using dummy regulator [ 1.949217] dwc2 c9000000.usb: c9000000.usb supply vusb_a not found, using dummy regulator [ 1.950401] phy phy-c0000000.phy.0: USB ID detect failed! [ 1.950408] phy phy-c0000000.phy.0: phy poweron failed --> -22 [ 1.950426] ------------[ cut here ]------------ [ 1.950477] WARNING: CPU: 0 PID: 59 at drivers/regulator/core.c:2036 _regulator_put.part.8+0xc0/0xc8 [ 1.950479] Modules linked in: realtek [ 1.950489] CPU: 0 PID: 59 Comm: kworker/0:1 Not tainted 5.3.15-meson64 #5.99 [ 1.950491] Hardware name: Hardkernel ODROID-C2 (DT) [ 1.950500] Workqueue: events deferred_probe_work_func [ 1.950505] pstate: 60000005 (nZCv daif -PAN -UAO) [ 1.950508] pc : _regulator_put.part.8+0xc0/0xc8 [ 1.950512] lr : _regulator_put.part.8+0xc0/0xc8 [ 1.950514] sp : ffff000011143b10 [ 1.950516] x29: ffff000011143b10 x28: 0000000000000000 [ 1.950520] x27: 0000000000000000 x26: ffff000010db0638 [ 1.950523] x25: 0000000000000000 x24: 0000000000000009 [ 1.950527] x23: ffff000011143bd8 x22: ffff80007f37c810 [ 1.950530] x21: ffff000010f59000 x20: ffff80006afa9500 [ 1.950534] x19: ffff80006afa9500 x18: ffffffffffffffff [ 1.950538] x17: 0000000059297a1e x16: 000000003bf859fc [ 1.950541] x15: ffff000010f74000 x14: 00000000fffffff0 [ 1.950545] x13: ffff000011015952 x12: ffff000010f74000 [ 1.950548] x11: 0000000000000000 x10: 0000000000000000 [ 1.950552] x9 : 0000000000000001 x8 : 00000000000000cc [ 1.950555] x7 : 0000000000000000 x6 : 0000000005ec36f1 [ 1.950559] x5 : 0000000000000000 x4 : 0000000000000000 [ 1.950562] x3 : 00000000ffffffff x2 : db06fa2975df1f00 [ 1.950565] x1 : 0000000000000000 x0 : 0000000000000024 [ 1.950569] Call trace: [ 1.950574] _regulator_put.part.8+0xc0/0xc8 [ 1.950577] regulator_put+0x34/0x50 [ 1.950581] regulator_bulk_free+0x30/0x50 [ 1.950585] devm_regulator_bulk_release+0x18/0x20 [ 1.950589] release_nodes+0x138/0x228 [ 1.950592] devres_release_all+0x34/0x60 [ 1.950596] really_probe+0x194/0x2c8 [ 1.950600] driver_probe_device+0x58/0x100 [ 1.950603] __device_attach_driver+0x90/0xb0 [ 1.950607] bus_for_each_drv+0x64/0xc8 [ 1.950610] __device_attach+0xd8/0x138 [ 1.950614] device_initial_probe+0x10/0x18 [ 1.950617] bus_probe_device+0x90/0x98 [ 1.950621] deferred_probe_work_func+0x74/0xb0 [ 1.950626] process_one_work+0x1e0/0x338 [ 1.950630] worker_thread+0x240/0x468 [ 1.950634] kthread+0x124/0x128 [ 1.950639] ret_from_fork+0x10/0x18 [ 1.950641] ---[ end trace c674df8d9494f10d ]--- [ 1.950680] ------------[ cut here ]------------ [ 1.950709] WARNING: CPU: 0 PID: 59 at drivers/regulator/core.c:2036 _regulator_put.part.8+0xc0/0xc8 [ 1.950711] Modules linked in: realtek [ 1.950716] CPU: 0 PID: 59 Comm: kworker/0:1 Tainted: G W 5.3.15-meson64 #5.99 [ 1.950718] Hardware name: Hardkernel ODROID-C2 (DT) [ 1.950722] Workqueue: events deferred_probe_work_func [ 1.950726] pstate: 60000005 (nZCv daif -PAN -UAO) [ 1.950730] pc : _regulator_put.part.8+0xc0/0xc8 [ 1.950733] lr : _regulator_put.part.8+0xc0/0xc8 [ 1.950735] sp : ffff000011143b10 [ 1.950737] x29: ffff000011143b10 x28: 0000000000000000 [ 1.950741] x27: 0000000000000000 x26: ffff000010db0638 [ 1.950744] x25: 0000000000000000 x24: 0000000000000009 [ 1.950748] x23: ffff000011143bd8 x22: ffff80007f37c810 [ 1.950751] x21: ffff000010f59000 x20: ffff80006afa9600 [ 1.950755] x19: ffff80006afa9600 x18: 0000000000000016 [ 1.950758] x17: 0000000059297a1e x16: 000000003bf859fc [ 1.950762] x15: ffff000010f74000 x14: 00000000fffffff0 [ 1.950766] x13: ffff000011015952 x12: ffff000010f74000 [ 1.950769] x11: 0000000000000000 x10: 0000000000000000 [ 1.950772] x9 : 0000000000000001 x8 : 00000000000000f9 [ 1.950776] x7 : 0000000000000000 x6 : 0000000005ec36f1 [ 1.950779] x5 : 0000000000000000 x4 : 0000000000000000 [ 1.950783] x3 : 00000000ffffffff x2 : db06fa2975df1f00 [ 1.950786] x1 : 0000000000000000 x0 : 0000000000000024 [ 1.950789] Call trace: [ 1.950793] _regulator_put.part.8+0xc0/0xc8 [ 1.950796] regulator_put+0x34/0x50 [ 1.950799] regulator_bulk_free+0x30/0x50 [ 1.950802] devm_regulator_bulk_release+0x18/0x20 [ 1.950805] release_nodes+0x138/0x228 [ 1.950809] devres_release_all+0x34/0x60 [ 1.950812] really_probe+0x194/0x2c8 [ 1.950816] driver_probe_device+0x58/0x100 [ 1.950819] __device_attach_driver+0x90/0xb0 [ 1.950822] bus_for_each_drv+0x64/0xc8 [ 1.950826] __device_attach+0xd8/0x138 [ 1.950829] device_initial_probe+0x10/0x18 [ 1.950833] bus_probe_device+0x90/0x98 [ 1.950836] deferred_probe_work_func+0x74/0xb0 [ 1.950839] process_one_work+0x1e0/0x338 [ 1.950842] worker_thread+0x240/0x468 [ 1.950846] kthread+0x124/0x128 [ 1.950849] ret_from_fork+0x10/0x18 [ 1.950852] ---[ end trace c674df8d9494f10e ]--- [ 1.950899] dwc2: probe of c9000000.usb failed with error -22 [ 1.951163] dwc2 c9100000.usb: c9100000.usb supply vusb_d not found, using dummy regulator [ 1.951196] dwc2 c9100000.usb: c9100000.usb supply vusb_a not found, using dummy regulator [ 1.990928] mmc0: new HS200 MMC card at address 0001 [ 1.991874] mmcblk0: mmc0:0001 AJNB4R 14.6 GiB [ 1.992588] mmcblk0boot0: mmc0:0001 AJNB4R partition 1 4.00 MiB [ 1.993263] mmcblk0boot1: mmc0:0001 AJNB4R partition 2 4.00 MiB [ 1.993394] mmcblk0rpmb: mmc0:0001 AJNB4R partition 3 4.00 MiB, chardev (245:0) [ 2.002093] mmcblk0: p1 [ 2.016304] dwc2 c9100000.usb: DWC OTG Controller [ 2.016323] dwc2 c9100000.usb: new USB bus registered, assigned bus number 1 [ 2.016351] dwc2 c9100000.usb: irq 35, io mem 0xc9100000 [ 2.016485] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03 [ 2.016489] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.016494] usb usb1: Product: DWC OTG Controller [ 2.016497] usb usb1: Manufacturer: Linux 5.3.15-meson64 dwc2_hsotg [ 2.016501] usb usb1: SerialNumber: c9100000.usb [ 2.016794] hub 1-0:1.0: USB hub found [ 2.016816] hub 1-0:1.0: 1 port detected [ 2.017647] meson-gx-mmc d0072000.mmc: Got CD GPIO [ 2.045350] scpi_protocol scpi: SCP Protocol legacy pre-1.0 firmware [ 2.048828] hctosys: unable to open rtc device (rtc0) [ 2.048930] of_cfs_init [ 2.049016] of_cfs_init: OK [ 2.051034] Freeing unused kernel memory: 576K [ 2.076745] Run /init as init process [ 2.269662] spidev0@0 enforce active low on chipselect handle [ 2.269688] spidev0@1 enforce active low on chipselect handle [ 2.301074] spidev spi0.0: probing from DT [ 2.301294] spidev spi0.1: probing from DT [ 2.306475] random: fast init done [ 2.416486] usb 1-1: new high-speed USB device number 2 using dwc2 [ 2.627160] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=32.98 [ 2.627228] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 2.627280] usb 1-1: Product: USB2.0 Hub [ 2.630920] hub 1-1:1.0: USB hub found [ 2.631594] hub 1-1:1.0: 4 ports detected [ 2.807236] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) [ 3.058942] systemd[1]: System time before build time, advancing clock. [ 3.082394] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ 3.082764] systemd[1]: Detected architecture arm64. [ 3.088265] systemd[1]: Set hostname to <odroidc2>. [ 3.089851] systemd[1]: Failed to bump fs.file-max, ignoring: Invalid argument [ 3.363692] random: systemd: uninitialized urandom read (16 bytes read) [ 3.369423] random: systemd: uninitialized urandom read (16 bytes read) [ 3.369857] systemd[1]: Listening on Journal Socket (/dev/log). [ 3.370613] random: systemd: uninitialized urandom read (16 bytes read) [ 3.370799] systemd[1]: Listening on Journal Audit Socket. [ 3.373027] systemd[1]: Listening on Syslog Socket. [ 3.373444] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 3.373778] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 3.375531] systemd[1]: Created slice User and Session Slice. [ 3.458949] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro [ 3.628356] systemd-journald[1243]: Received request to flush runtime journal from PID 1 [ 3.957481] Driver for 1-wire Dallas network protocol. [ 3.992885] debugfs: Directory 'c1105400.audio' with parent 'regmap' already present! [ 4.008325] zram: Added device: zram0 [ 4.016474] zram: Added device: zram1 [ 4.016840] zram: Added device: zram2 [ 4.021849] Registered IR keymap rc-empty [ 4.021958] rc rc0: meson-ir as /devices/platform/soc/c8100000.bus/c8100580.ir/rc/rc0 [ 4.022056] input: meson-ir as /devices/platform/soc/c8100000.bus/c8100580.ir/rc/rc0/input0 [ 4.026616] random: crng init done [ 4.026625] random: 7 urandom warning(s) missed due to ratelimiting [ 4.029073] meson-ir c8100580.ir: receiver initialized [ 4.047838] zram1: detected capacity change from 0 to 1033936896 [ 4.096275] Adding 1009700k swap on /dev/zram1. Priority:5 extents:1 across:1009700k SSFS [ 4.111309] lima d00c0000.gpu: bus rate = 166666667 [ 4.111327] lima d00c0000.gpu: mod rate = 744000000 [ 4.115381] lima d00c0000.gpu: gp - mali450 version major 0 minor 0 [ 4.115420] lima d00c0000.gpu: pp0 - mali450 version major 0 minor 0 [ 4.115463] lima d00c0000.gpu: pp1 - mali450 version major 0 minor 0 [ 4.115494] lima d00c0000.gpu: pp2 - mali450 version major 0 minor 0 [ 4.115530] lima d00c0000.gpu: l2 cache 8K, 4-way, 64byte cache line, 128bit external bus [ 4.115536] lima d00c0000.gpu: l2 cache 64K, 4-way, 64byte cache line, 128bit external bus [ 4.126836] [drm] Initialized lima 1.0.0 20190217 for d00c0000.gpu on minor 0 [ 4.131609] meson-drm d0100000.vpu: Queued 2 outputs on vpu [ 4.173385] ina2xx 0-0046: power monitor ina219 (Rshunt = 100000 uOhm) [ 4.174415] ina2xx 0-0045: power monitor ina219 (Rshunt = 100000 uOhm) [ 4.175485] ina2xx 0-0044: power monitor ina219 (Rshunt = 100000 uOhm) [ 4.179090] ina2xx 0-0043: power monitor ina219 (Rshunt = 100000 uOhm) [ 4.181286] ina2xx 0-0042: power monitor ina219 (Rshunt = 100000 uOhm) [ 4.183479] ina2xx 0-0041: power monitor ina219 (Rshunt = 100000 uOhm) [ 4.190420] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 4.190427] [drm] No driver support for vblank timestamp query. [ 4.192667] meson-drm d0100000.vpu: CVBS Output connector not available [ 4.224226] meson-dw-hdmi c883a000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) [ 4.229713] meson-dw-hdmi c883a000.hdmi-tx: registered DesignWare HDMI I2C bus driver [ 4.230079] meson-drm d0100000.vpu: bound c883a000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi]) [ 4.230512] [drm] Initialized meson 1.0.0 20161109 for d0100000.vpu on minor 1 [ 4.230607] [drm] Cannot find any crtc or sizes [ 4.329506] zram0: detected capacity change from 0 to 52428800 [ 4.444296] EXT4-fs (zram0): mounted filesystem without journal. Opts: discard [ 4.458663] asoc-simple-card sound: i2s-hifi <-> meson-aiu-i2s.0.auto mapping ok [ 7.388753] meson8b-dwmac c9410000.ethernet eth0: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] [ 7.400202] meson8b-dwmac c9410000.ethernet eth0: No Safety Features support found [ 7.400218] meson8b-dwmac c9410000.ethernet eth0: PTP not supported by HW [ 7.400226] meson8b-dwmac c9410000.ethernet eth0: configuring for phy/rgmii link mode [ 9.005268] meson8b-dwmac c9410000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx [ 9.005357] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 9.026763] meson8b-dwmac c9410000.ethernet eth0: Link is Down [ 9.076402] meson8b-dwmac c9410000.ethernet eth0: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] [ 9.184144] meson8b-dwmac c9410000.ethernet: Failed to reset the dma [ 9.184158] meson8b-dwmac c9410000.ethernet eth0: stmmac_hw_setup: DMA engine initialization failed [ 9.184164] meson8b-dwmac c9410000.ethernet eth0: stmmac_open: Hw setup failed [ 33.764229] TFLASH_VDD: disabling [ 33.764251] TF_IO: disabling I tried with the same eMMC card on different boards. Board who fail with DEV kernel work with NEXT kernel, this one I checked, so I assume we have a problem in DEV kernel with C2 dwmac. Any ideas? EDIT: seems only to affect rev0.2_2017114 boards. rev0.2_20160226 seems to work. Can anyone crosscheck this behaviour with a dev/buster image? So far, Michael
-
With a different (and well known working at 3,3V) adapter, the PBP boots up fine. I can intercept the boot sequence and play around with the u-boot console. Next thing is to fix the serial console speed mismatch.
-
@jock first of all ty for your kind replay well you are the 1st to go deep in specific problem. I googled a lot about this , what i am experiencing when I launch chromium by the command line is: as I said many many times I am not a coder, but a good technician with good soldering skills and optimum hardware modding, but of couse can even read a bit of " diagnostic" so it is clear there is a mismatch between kernel driver and userspace libraries anyway here it goes the new 3ad on rk3229 devices https://forum.armbian.com/topic/12401-long-story-linux-on-rk3229-rockchip/ I have no problems to go on mainline 5.x.x, but here is lacking of rk_nand drivers so compilations will only work on devices with emmc post scriptum : maybe you forgot the link to your work ??? where ??
-
understand, uboot and kernel have different dtb, that is why h96max+ starts, with uboot as seen by serial cable, but then when hands over to kernel dtb does not power uSD slot, something non-standard with regulators. So, it can't find its root filesystem, because slot is dead, no power You see no hdmi display until quite late in the boot, so it seems dead, just can't read uSD slot It there is a usb stick ALSO plugged in, will find root fs on usb stick.. uSD slot continues dead, unpowered easyb and hexdump have made dtb for h96max+/T9 that make regulators work. I don't know about other models ----edit---- For my h96max+ there is a problem with usb2 port, in dmesg late in boot and periodically (with hexdumps' dtb, not with easyb's) genirq: Flags mismatch irq 13. 00000080 (serial) vs. 00004000 (debug) Quickly, the usb2 port 'locks up' there is no easy way to revive,, I am sure a suitable unbind,bind would make it work for a bit, a bit esoteric But now, I am using easyb's dtb, a 5hr power out forced a shutdown (47d uptime) No problem with usb2 port
-
Hi, Thank you very much for all the work. I recently purchased 4GB RAM version of Orange PI RK3399. Was able to install armbian WIP version: 4.4.180-rk3399 I'm trying to capture video via HDMI IN port using gstreamer but I see the following error messages in kernel log, I also see lot of irq mismatch errors in kernel log, I tried with installing full firmware and rebooting, still have same errors. Any suggestions are greatly appreciated or if you can guide me to the correct kernel and driver source files to rebuild, I'm happy to compile and test. Thank you!
-
Hello, My OS : Armbian_5.44_S9xxx_Debian_stretch_3.14.29_server_20180601 My Devise: X96 mini ( 1 G Ram 8 flash + SD 16 G sdcard ) I want to use hw codec of the aml with ffmpeg So i find https://github.com/roman-rybalko/FFlmpeg-aml/ so i try to compil : AML_LIBS git clone https://github.com/Owersun/c2_aml_libs.git cd c2_aml_libs make all -j4 make install cd .. copy all files from /usr/lib/aml_libs/ to /usr/local/lib (or change the path of the install ) cp /usr/lib/aml_libs/ld.so.conf /usr/local/lib/ld.so.conf cp /usr/lib/aml_libs/libamadec.so /usr/local/lib/libamadec.so cp /usr/lib/aml_libs/libamavutils.so /usr/local/lib/libamavutils.so cp /usr/lib/aml_libs/libamcodec.so /usr/local/lib/libamcodec.so NASM cd ~/ffmpeg_sources && \ wget https://www.nasm.us/pub/nasm/releasebuilds/2.13.03/nasm-2.13.03.tar.bz2 && \ tar xjvf nasm-2.13.03.tar.bz2 && \ cd nasm-2.13.03 && \ ./autogen.sh && \ PATH="$HOME/bin:$PATH" ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" && \ make && \ make install Yasm sudo apt-get install yasm libx264 sudo apt-get install libx264-dev libx265 sudo apt-get install libx265-dev libnuma-dev libvpx sudo apt-get install libvpx-dev libfdk-aac sudo apt-get install libfdk-aac-dev libmp3lame sudo apt-get install libmp3lame-dev libopus sudo apt-get install libopus-dev git clone git: https://github.com/roman-rybalko/FFmpeg-aml rename directory FFmpeg-aml to ffmpeg cd ffmpeg && \ PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \ --prefix="$HOME/ffmpeg_build" \ --pkg-config-flags="--static" \ --extra-cflags="-I$HOME/ffmpeg_build/include" \ --extra-ldflags="-L$HOME/ffmpeg_build/lib" \ --extra-libs="-lpthread -lm" \ --bindir="$HOME/bin" \ --enable-gpl \ --enable-libass \ --enable-libfdk-aac \ --enable-libfreetype \ --enable-libmp3lame \ --enable-libopus \ --enable-libvorbis \ --enable-libvpx \ --enable-aml \ --enable-decoder=h264_aml \ --enable-decoder=hevc_aml \ --enable-decoder=mpeg2_aml \ --enable-decoder=mpeg4_aml \ --enable-decoder=mpeg4v1_aml \ --enable-decoder=mpeg4v2_aml \ --enable-decoder=mpeg4v3_aml \ --enable-decoder=vc1_aml \ --enable-libx264 \ --enable-libx265 \ --enable-nonfree && \ PATH="$HOME/bin:$PATH" make && \ make install && \ hash -r the compil run at this moment. Do you know if the kernel of Armbian_5.44_S9xxx_Debian_stretch_3.14.29_server_20180601 have the kernel option at : CONFIG_ION=y If not can i compile with it ?
-
Hello I having some issues with the Armbian Buster image for Nano Pi Neo 2. https://www.armbian.com/nanopi-neo-2/ When I launch the command sudo apt update, I'm getting the following error: The package cache file is corrupted, it has the wrong hash I already downloaded the image several times, I still getting the same error. My SD card is ok, I have tried with 2 different ones. I can remember having the same issue with a preview version. What's wrong??? Thank you
-
I have tried with 2 different SD cards (Samsung Evo Plus), 2 different card readers and updated Etcher and Win32DiskImager. File hash is also ok.
-
Are you sure you are checking the right SDCard and that /etc/fstab is also the correct, because such alert is always cause by such mismatch ...
-
The other day I got an email (which I have less and less time to deal with) saying why we don't provide SHA numbers for 7z archive. He is afraid to open our archive and my answer was not satisfying him. Since I can't afford to educate people in person (or change anything in this regard) I didn't proceed. Where can I get the file hashes (MD5, SHA1, SHA256, or SHA512) for each download so that I can verify that my image download is pristine and not corrupted in any way? I've searched quite a bit and couldn't find this important info on your site. Me: They are inside 7z file. https://docs.armbian.com/User-Guide_Getting-Started/#how-to-check-download-integrity Thanks. I think it would be a good idea to publish the hash also for the 7z file the same way raspbian does for their compressed file (https://www.raspberrypi.org/downloads/raspbian/). When I download any file from the web, I calculate the hash before interacting it with. If the hash doesn't match what the vendor has published on their website, I don't even attempt to extract or use it in any way. It's a good a security practice in my opinion.
