-
Posts
1798 -
Joined
-
Last visited
Content Type
Forums
Store
Crowdfunding
Applications
Events
Raffles
Community Map
Posts posted by guidol
-
-
Ha
I think I did found some "network-problem"
When my armbian-build-system PC is on (which has a 1GBit/1000MBit Network card and connectted to the same 100MBit-Hub)
then I do get much Down/Up messages in dmesg
BUT when I poweroff my PC with the GBit-Network-card then I do get very less messages.
I think the rest will come from another GBit-device (another SBC on my 100MBit Hub)
So when the GBit-device want to send with GBit and couldnt it switch/reset the connection to 100MBit and this does see the R69?
So my new little theory
I will test it out - unlucky me I only got a 5port GBit-Hub and a 20-port 100MBit-Hub - so Ihavent enough GBit ports
But this is the first time I do see that problem and only with the R69
-
1 hour ago, raschid said:
@guidol, thank you for the kind hint - I updated the link.
I added a cpu voltage regulator node to the device tree - oddly enough to build a viable kernel there seems to have to be one ... although this box reportedly does not have anything remotely resembling a PMIC (still working on that ...).
Regarding the overlays: the IR overlay seems to be missing while the audio overlay appears to have been compiled for another kernel version ('bad magic'). No idea how armbian generates overlays, sorry. But IR is "OKed" in the DTS and should work anyway.
I took the uncompiled .dts files for analog-audio and cir out of the armbian-build-system from
/build/cache/sources/linux-mainline/orange-pi-5.4/arch/arm/boot/dts/overlay/sun8i-h3-analog-codec.dts
/build/cache/sources/linux-mainline/orange-pi-5.4/arch/arm/boot/dts/overlay/sun8i-h3-cir.dtsandc copied they via ftp to the Sunvell R69.
Then I decompiled the sun8i-h2-plus-sunvell-r69.dtb
dtc -I dtb -O dts /boot/dtb/sun8i-h2-plus-sunvell-r69.dtb -o /boot/dtb/sun8i-h2-plus-sunvell-r69_guido.dts
and edited/inserted the changes of the 2 .dts/overlays (the right way) in the new complete
/boot/dtb/sun8i-h2-plus-sunvell-r69_guido.dts
after that I recompiled the .dts back to .dtb with
dtc -I dts -O dtb /boot/dtb/sun8i-h2-plus-sunvell-r69_guido.dts -o /boot/dtb/sun8i-h2-plus-sunvell-r69_guido.dtb
now backup the original .dtb:
cp /boot/dtb/sun8i-h2-plus-sunvell-r69.dtb /boot/dtb/sun8i-h2-plus-sunvell-r69.dtb_org
then copy the new compiled .dtb over the old one:
cp /boot/dtb/sun8i-h2-plus-sunvell-r69_guido.dtb /boot/dtb/sun8i-h2-plus-sunvell-r69.dtb
Now check /boot/armbianEnv.txt for lines about overlays or user-overlays to load and delete them, then save the file.
Boot should now be like this (without applying overlays) - click to open:
SpoilerU-Boot SPL 2019.10-armbian (Nov 27 2019 - 16:53:53 +0100)
DRAM: 1024 MiB
Trying to boot from MMC1
U-Boot 2019.10-armbian (Nov 27 2019 - 16:53:53 +0100) Allwinner TechnologyCPU: Allwinner H3 (SUN8I 1680)
Model: Sunvell R69
DRAM: 1 GiB
MMC: Device 'mmc@1c11000': seq 1 is in use by 'mmc@1c10000'
mmc@1c0f000: 0, mmc@1c10000: 2, mmc@1c11000: 1
Loading Environment from EXT4... ** File not found /boot/boot.env **** Unable to read "/boot/boot.env" from mmc0:1 **
In: serial
Out: serial
Err: serial
Net: phy interface0
eth0: ethernet@1c30000
Autoboot in 1 seconds, press <Space> to stop
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Found U-Boot script /boot/boot.scr
3798 bytes read in 4 ms (926.8 KiB/s)
## Executing script at 43100000
U-boot loaded from SD
Boot script loaded from mmc
250 bytes read in 4 ms (60.5 KiB/s)
8637370 bytes read in 420 ms (19.6 MiB/s)
7731504 bytes read in 376 ms (19.6 MiB/s)
Found mainline kernel configuration
29600 bytes read in 9 ms (3.1 MiB/s)
4155 bytes read in 10 ms (405.3 KiB/s)
Applying kernel provided DT fixup script (sun8i-h3-fixup.scr)
## Executing script at 44000000
## Loading init Ramdisk from Legacy Image at 43300000 ...
Image Name: uInitrd
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 8637306 Bytes = 8.2 MiB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... OK
## Flattened Device Tree blob at 43000000
Booting using the fdt blob at 0x43000000
Loading Ramdisk to 497c3000, end 49fffb7a ... OK
Loading Device Tree to 49753000, end 497c2fff ... OKStarting kernel ...
Uncompressing Linux... done, booting the kernel.
Armbian 19.11.3 Bionic ttyS0
sunvell login:
After login you could see the analog-audio available with
aplay -l
**** List of PLAYBACK Hardware Devices **** card 0: Codec [H3 Audio Codec], device 0: CDC PCM Codec-0 [CDC PCM Codec-0] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: allwinnerhdmi [allwinner-hdmi], device 0: 1c22800.i2s-i2s-hifi i2s-hifi-0 [1c22800.i2s-i2s-hifi i2s-hifi-0] Subdevices: 1/1 Subdevice #0: subdevice #0
A problem can be that armbian-config => system => hardware always try to add these 2 overlays to /boot/armbianEnv.txt as normal overlay (not as useroverlay).
If you/we got a matching .dts (uncompiled overlay) got then you could add it to armbian (compile and add to /boot/overlays-user)
with
armbian-add-overlay ./sun8i-h3-analog-codec.dts armbian-add-overlay ./sun8i-h3-cir.dts
But the .dts-files (uncompiled overlay) doenst match exact the original sun8i-h2-plus-sunvell-r69.dtb
As attachment the .dts/.dtb-files I did work with as .zip
BTW: the reactions-times in the ssh-shell are mostly longer tahn on the serial-console.... I dont know why
[EDIT] the SSH-"problem" seems to be the networkcard dropping the connection very often
see dmesg -w[ 1994.263612] dwmac-sun8i 1c30000.ethernet eth0: Link is Down
[ 1997.332536] dwmac-sun8i 1c30000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 2002.452590] dwmac-sun8i 1c30000.ethernet eth0: Link is Down
[ 2005.524796] dwmac-sun8i 1c30000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 2008.596679] dwmac-sun8i 1c30000.ethernet eth0: Link is Down
[ 2013.716942] dwmac-sun8i 1c30000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 2027.029061] dwmac-sun8i 1c30000.ethernet eth0: Link is Down
2 forum links about that "old" problem:
https://forum.armbian.com/topic/6189-ethernet-connection-keeps-dropping-out/
https://forum.armbian.com/topic/3951-nanopi-neo-and-arabian-527-my-first-impression-and-issues/ -
3 hours ago, raschid said:
Would you give this a try, @guidol?
https://drive.google.com/open?id=1aIUBR61RgxyKS6xi19kzsvWbCXJ0MeED
Yes - I did give it a try - but first a little helpful reminder
You can ZIP the .img from 923MB to 282MB - so its faster for you to upload and faster to us to download
932 MB (977.272.832 Bytes) Armbian_19.11.3_Sunvell-r69_bionic_dev_5.4.0-rc8.img
282 MB (296.077.974 Bytes) Armbian_19.11.3_Sunvell-r69_bionic_dev_5.4.0-rc8.img.zip
I did boot the image with serial-TTL attached and the image also didnt load the overlays for analog-audio and cir:
Found mainline kernel configuration 29532 bytes read in 8 ms (3.5 MiB/s) 382 bytes read in 8 ms (45.9 KiB/s) Applying kernel provided DT overlay sun8i-h3-cir.dtbo failed on fdt_overlay_apply(): FDT_ERR_NOTFOUND 339 bytes read in 9 ms (36.1 KiB/s) Applying kernel provided DT overlay sun8i-h3-analog-codec.dtbo failed on fdt_overlay_apply(): FDT_ERR_BADMAGIC base fdt does did not have a /__symbols__ node make sure you've compiled with -@ Error applying DT overlays, restoring original DT 29532 bytes read in 8 ms (3.5 MiB/s)
BUT the blue led keeps blinking and the kernel DOENST die
Uncompressing Linux... done, booting the kernel. Armbian 19.11.3 Bionic ttyS0 sunvell login: root Password: Last login: Wed Nov 27 17:19:58 UTC 2019 on ttyS0 ____ _ _ ____ __ ___ / ___| _ _ _ ____ _____| | | | _ \ / /_ / _ \ \___ \| | | | '_ \ \ / / _ \ | | | |_) | '_ \ (_) | ___) | |_| | | | \ V / __/ | | | _ <| (_) \__, | |____/ \__,_|_| |_|\_/ \___|_|_| |_| \_\\___/ /_/ Welcome to Armbian Bionic with Linux 5.4.0-rc8-sunxi System load: 1.08 0.26 0.08 Up time: 0 min Memory usage: 7 % of 998MB IP: 192.168.6.151 CPU temp: 41°C Usage of /: 6% of 15G
How did you did that (what did you changed before or while the compile process)?
And do you got a image with working analog-audio and cir (OK, analog-audio would be enough for me
)
Thanks in advance
-
Hmmm. I dont use sshfs - but samba/cifs and I copied
-rwxrwxrwx 1 root root 1031158598 Nov 12 2015 Starfighter.mp4
from my video-share[ 6151.533916] CIFS: Attempting to mount //192.168.6.xxx/video
without any errors to the local sdcard.
I did compile today the following current version:
Armbian Buster with Linux 5.3.13-meson64 package bsp-kernel[19.11.3] u-boot[19.11.3] dtb[19.11.3] firmware[19.11.3] config[19.11.3] branch[current]
-
As information: My Odroid C2 (meson64) wouldnt boot with the image Armbian_19.11.3_Odroidc2_buster_dev_5.4.0.img
So signs of life on the screen / no blinking led (doenst have the special serial-TTL for the C2)
Armbian_19.11.3_Odroidc2_buster_current_5.3.13.img does boot fine
-
8 hours ago, lazerdye said:
I just tried the R1 images on the R1S-H5 and it will not boot. Would it make any sense to try an H2 image like Neo or Core 2?
I would try a NPi Neo2 or NPi Core2 (both H5) on your NPi R1S with H5 CPU.
The normal NPi Neo Image I only would try on the NPi R1S with H3 CPU,
because the normal NPi R1 has a H3 CPU -
Just for FUN I did check whats the minimal kernel for debian buster...
its something like 3.1.2 - so I did (with the frozen armbian 5.41 kernel 4.1.4.34)QuoteThe following packages have been kept back:
linux-dtb-next-sunxi linux-image-next-sunxi
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
a dist-upgrade from Stretch to Buster (firstly without the armbian.list - was also the old stretch version)
the debian way(some say I/we shouldnt do that with armbian!?)
After that I inserted the buster version of armbian.list from my NanoPi Neo2 and re-did the apt upgrade....
Now I have a armbian v5.41 Buster with kernel 4.1.4.34 but armbian-config and armbian-firmware of v5.98:
Better than nothing
@raschid but it would be very nice to read about your (kernel?) 5.3 version
Thanks in advance!
-
4 hours ago, martinayotte said:
I didn't have enough time to check H6, I've only done build for H3/H5 ...
Allwinner A64 (sun50iw1 and also sunxi64 like the H5) does also work with this kernel on my NanoPi A64
Welcome to Debian Buster with Armbian Linux 5.4.0-rc8-sunxi64 package bsp-kernel[19.11.3] u-boot[19.11.3] dtb[19.11.3] firmware[19.11.3] config[19.11.3] branch[dev]
Also BPi M2 Berry did start up with the kernel
BTW: I do use the options WIREGUARD=no AUFS=no at ./compile.sh -
1 minute ago, alterfritz said:
https://github.com/txurtxil/broot2g
Did you get that working?
I didnt try that myself, because my build-system is ubuntu 18.04 64bit
-
38 minutes ago, alterfritz said:
The only one annoying thing left - this random MAC address. Is this fixed somewhere?
you could try to set it inside /etc/network/interfaces (when not using network-manager):
with hwaddress etherauto eth0 iface eth0 inet dhcp hwaddress ether 01:02:03:04:05:06
-
@martinayotte Is then now CURRENT unlinked from DEV?
So CURRENT is 5.3.x and DEV 5.4.x?
Could you tell when we can select the 5.4 kernel from armbian-config => system => other?
-
On 2/8/2018 at 11:41 AM, manuti said:
yesterday & today I did try to re-use my old Sunvell R69 (Red PCB H2+ CPU v1.3), but the only image which will boot/start is my "old" image Armbian_5.41_Sunvell-r69_Debian_stretch_next_4.14.34.img.zip
which I have now uploaded to Google-Drive for other users here:
https://drive.google.com/file/d/1-_wAqnbTR1y7OVVVn9rpsQ2jhIm4n8_b/view?usp=sharing
With Armbian_5.41_Sunvell-r69_Debian_stretch_next_4.14.34.img.zip the boot process is fine:
login as: root root@192.168.6.152's password: ____ _ _ ____ __ ___ / ___| _ _ _ ____ _____| | | | _ \ / /_ / _ \ \___ \| | | | '_ \ \ / / _ \ | | | |_) | '_ \ (_) | ___) | |_| | | | \ V / __/ | | | _ <| (_) \__, | |____/ \__,_|_| |_|\_/ \___|_|_| |_| \_\\___/ /_/ Welcome to ARMBIAN 5.41 user-built Debian GNU/Linux 9 (stretch) 4.14.34-sunxi package bsp-kernel[5.41] u-boot[5.41] dtb[5.41] firmware[5.41] config[5.41] branch[next] System load: 0.09 0.17 0.20 Up time: 25 min Memory usage: 6 % of 1000MB IP: 192.168.6.152 CPU temp: 39°C Usage of /: 8% of 15G Last login: Sat Apr 14 14:08:54 2018 root@sunvell-r69:~#
SpoilerU-Boot 2017.11-armbian (Apr 14 2018 - 12:13:13 +0300) Allwinner Technology
CPU: Allwinner H3 (SUN8I 1680)
Model: Sunvell R69
DRAM: 1 GiB
MMC: SUNXI SD/MMC: 0, SUNXI SD/MMC: 1
*** Warning - bad CRC, using default environmentIn: serial@01c28000
Out: serial@01c28000
Err: serial@01c28000
Net: phy interface0
eth0: ethernet@1c30000
starting USB...
USB0: USB EHCI 1.00
USB1: USB OHCI 1.0
scanning bus 0 for devices... 1 USB Device(s) found
scanning usb for storage devices... 0 Storage Device(s) found
Autoboot in 1 seconds, press <Space> to stop
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Found U-Boot script /boot/boot.scr
3708 bytes read in 205 ms (17.6 KiB/s)
## Executing script at 43100000
U-boot loaded from SD
Boot script loaded from mmc
227 bytes read in 165 ms (1000 Bytes/s)
5074683 bytes read in 652 ms (7.4 MiB/s)
6972400 bytes read in 812 ms (8.2 MiB/s)
Found mainline kernel configuration
31729 bytes read in 674 ms (45.9 KiB/s)
382 bytes read in 677 ms (0 Bytes/s)
Applying kernel provided DT overlay sun8i-h3-cir.dtbo
339 bytes read in 668 ms (0 Bytes/s)
Applying kernel provided DT overlay sun8i-h3-analog-codec.dtbo
4179 bytes read in 690 ms (5.9 KiB/s)
Applying kernel provided DT fixup script (sun8i-h3-fixup.scr)
## Executing script at 44000000
## Loading init Ramdisk from Legacy Image at 43300000 ...
Image Name: uInitrd
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 5074619 Bytes = 4.8 MiB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... OK
## Flattened Device Tree blob at 43000000
Booting using the fdt blob at 0x43000000
Loading Ramdisk to 49b29000, end 49fffebb ... OK
reserving fdt memory region: addr=43000000 size=6e000
Loading Device Tree to 49ab8000, end 49b28fff ... OKStarting kernel ...
Loading, please wait...
starting version 232
Begin: Loading essential drivers ... done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... Scanning for Btrfs filesystems
done.https://linux-sunxi.org/Sunvell_R69 did state that also armbian v5.67 with kernel 4.14 should work but not with kernel 4.19:
QuoteCurrent status
Armbian 5.72 with kernel version 4.19 does not boot correctly on this board as of January 2019, neither from a fresh microSD or upgraded from previous versions on the NAND.
Armbian 5.67 with kernel version 4.14 seems to work correctly.
With the serial-TTL attached I did try yesterday & today some "actual" images unsuccessful
Armbian_19.11.3_Sunvell-r69_buster_legacy_4.19.86.img did start and does apply the 2 dtb-overlays,
does start to blink with the blue heartbeat LED, but then dies without any message:SpoilerU-Boot 2019.04-armbian (Nov 26 2019 - 10:07:39 +0300) Allwinner Technology
CPU: Allwinner H3 (SUN8I 1680)
Model: Sunvell R69
DRAM: 1 GiB
MMC: Device 'mmc@1c11000': seq 1 is in use by 'mmc@1c10000'
mmc@1c0f000: 0, mmc@1c10000: 2, mmc@1c11000: 1
Loading Environment from EXT4... ** File not found /boot/boot.env **** Unable to read "/boot/boot.env" from mmc0:1 **
In: serial@1c28000
Out: serial@1c28000
Err: serial@1c28000
Net: eth-1: ethernet@1c30000
starting USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 1 USB Device(s) found
scanning usb for storage devices... 0 Storage Device(s) found
Autoboot in 1 seconds, press <Space> to stop
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Found U-Boot script /boot/boot.scr
3798 bytes read in 2 ms (1.8 MiB/s)
## Executing script at 43100000
U-boot loaded from SD
Boot script loaded from mmc
178 bytes read in 1 ms (173.8 KiB/s)
6842770 bytes read in 524 ms (12.5 MiB/s)
7393072 bytes read in 565 ms (12.5 MiB/s)
Found mainline kernel configuration
29641 bytes read in 11 ms (2.6 MiB/s)
382 bytes read in 5 ms (74.2 KiB/s)
Applying kernel provided DT overlay sun8i-h3-cir.dtbo
339 bytes read in 6 ms (54.7 KiB/s)
Applying kernel provided DT overlay sun8i-h3-analog-codec.dtbo
4155 bytes read in 7 ms (579.1 KiB/s)
Applying kernel provided DT fixup script (sun8i-h3-fixup.scr)
## Executing script at 44000000
## Loading init Ramdisk from Legacy Image at 43300000 ...
Image Name: uInitrd
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 6842706 Bytes = 6.5 MiB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... OK
## Flattened Device Tree blob at 43000000
Booting using the fdt blob at 0x43000000
Loading Ramdisk to 49979000, end 49fff952 ... OK
Loading Device Tree to 49909000, end 49978fff ... OKStarting kernel ...
Uncompressing Linux... done, booting the kernel.
[ 8.610785] Unable to handle kernel NULL pointer dereference at virtual address 000000a0
[ 8.618931] pgd = (ptrval)
[ 8.621659] [000000a0] *pgd=00000000
[ 8.625250] Internal error: Oops: 5 [#1] SMP THUMB2
[ 8.630142] Modules linked in: cpufreq_dt uio_pdrv_genirq uio thermal_sys ip_tables x_tables pwrseq_simple
[ 8.639848] CPU: 3 PID: 299 Comm: wireless-tools Not tainted 4.19.86-sunxi #19.11.3
[ 8.647524] Hardware name: Allwinner sun8i Family
[ 8.652262] PC is at perf_event_exec+0x48/0x1c8
[ 8.656823] LR is at setup_new_exec+0x9b/0x108
[ 8.661288] pc : [<c01e1150>] lr : [<c0244863>] psr: 800100b3
[ 8.667585] sp : ed117e50 ip : 00000000 fp : ed855434
[ 8.672837] r10: 00000000 r9 : 00000001 r8 : 00000000
[ 8.678090] r7 : 00000040 r6 : ed858700 r5 : 00000040 r4 : ed858700
[ 8.684642] r3 : edb47a3c r2 : edb47500 r1 : ed117e50 r0 : ed0e3600
[ 8.691183] Flags: Nzcv IRQs off FIQs on Mode SVC_32 ISA Thumb Segment none
[ 8.698576] Control: 50c5387d Table: 6d12c06a DAC: 00000051
[ 8.704322] Process wireless-tools (pid: 299, stack limit = 0x(ptrval))
[ 8.710942] Stack: (0xed117e50 to 0xed118000)
[ 8.715309] 7e40: 2ea22000 00010013 ed116000 ed858700
[ 8.723497] 7e60: c0d04d48 ed858700 ed117e90 edabd600 00000001 00000000 ed855434 c0244863
[ 8.731689] 7e80: edb47500 ed855400 c0d04d48 c02813ed 00000006 c0d04d48 00000000 ed117e90
[ 8.739867] 7ea0: ed858400 ede4d300 00000000 c020f34d 00000000 c020f383 efe788ac ed855434
[ 8.748045] 7ec0: edf1c9c0 02443374 00000000 c020f41d 00000000 efe788ac 0000000f 02443374
[ 8.756245] 7ee0: 00000034 00000000 00000011 ed117f20 00000000 c0247211 ed60bdb8 242dc011
[ 8.756925] sun8i_ths 1c25000.thermal-sensor: no memory resources defined
[ 8.764441] 7f00: 00000000 c0d27d68 ed858700 c0e2c868 fffffff8 c0d24e2c c0e2c868 c0a934ec
[ 8.764448] 7f20: 00000002 c0243c87 ed080700 c0d04d48 ee7e3000 edb47500 ffffe000 ed858700
[ 8.764454] 7f40: 024433c4 00000000 0000012b c0244509 0000012b ed92e240 ed0e363c 00000000
[ 8.764461] 7f60: 00000000 242dc011 ed116000 00000000 024433c4 004c4400 0000000b c0101224
[ 8.764467] 7f80: ed116000 0000000b bebf59f0 c02448f7 00000000 00000000 ffffffff 02443374
[ 8.764474] 7fa0: 024433a0 c0101001 02443374 024433a0 02443374 024433a0 024433c4 10b3a400
[ 8.764481] 7fc0: 02443374 024433a0 004c4400 0000000b 024433a0 004c4400 024433c4 bebf59f0
[ 8.764487] 7fe0: 004d6e04 bebf58e4 004b97b7 b6ea63d8 600d0030 02443374 00000000 00000000
[ 8.764518] [<c01e1150>] (perf_event_exec) from [<c0244863>] (setup_new_exec+0x9b/0x108)
[ 8.771311] sun8i_ths: probe of 1c25000.thermal-sensor failed with error -22
[ 8.779463] [<c0244863>] (setup_new_exec) from [<c02813ed>] (load_elf_binary+0x1cd/0xf74)
[ 8.779473] [<c02813ed>] (load_elf_binary) from [<c0243c87>] (search_binary_handler+0x8f/0x1ac)
[ 8.779481] [<c0243c87>] (search_binary_handler) from [<c0244509>] (__do_execve_file+0x3f9/0x5fc)
[ 8.779493] [<c0244509>] (__do_execve_file) from [<c02448f7>] (sys_execve+0x27/0x2c)
[ 8.816442] sun4i-codec 1c22c00.codec: ASoC: codec-analog@1f015c0 not registered
[ 8.820372] [<c02448f7>] (sys_execve) from [<c0101001>] (ret_fast_syscall+0x1/0x62)
[ 8.820376] Exception stack(0xed117fa8 to 0xed117ff0)
[ 8.820383] 7fa0: 02443374 024433a0 02443374 024433a0 024433c4 10b3a400
[ 8.820389] 7fc0: 02443374 024433a0 004c4400 0000000b 024433a0 004c4400 024433c4 bebf59f0
[ 8.820393] 7fe0: 004d6e04 bebf58e4 004b97b7 b6ea63d8
[ 8.820406] Code: 68d2 4413 685d b115 (6e2b) 2b00
[ 8.828599] sun4i-codec 1c22c00.codec: Failed to register our card
[ 8.836758] ---[ end trace aa106ebd2c3d70f4 ]---
[ 8.836772] ------------[ cut here ]------------
[ 8.837148] Unable to handle kernel NULL pointer dereference at virtual address 00000044
[ 8.837151] pgd = (ptrval)
[ 8.837155] [00000044] *pgd=00000000
[ 8.893064] sun4i-codec 1c22c00.codec: ASoC: codec-analog@1f015c0 not registered
[ 8.900468] kernel BUG at fs/file.c:606!
[ 8.900473] Internal error: Oops - BUG: 0 [#2] SMP THUMB2
[ 8.900479] Modules linked in: dw_hdmi_cec(+) sun4i_i2s sun4i_codec snd_soc_core sun8i_ths snd_pcm_dmaengine snd_pcm snd_timer snd soundcore cpufreq_dt uio_pdrv_genirq uio thermal_sys ip_tables x_tables pwrseq_simple
[ 8.900519] CPU: 1 PID: 1 Comm: systemd Tainted: G D 4.19.86-sunxi #19.11.3
[ 8.900521] Hardware name: Allwinner sun8i Family
[ 8.900537] PC is at __fd_install+0x5e/0x64
[ 8.900546] LR is at do_sys_open+0x173/0x188
[ 8.900552] pc : [<c0255cfe>] lr : [<c023c77b>] psr: 60010033
[ 8.905621] sun4i-codec 1c22c00.codec: Failed to register our card
[ 8.913772] sp : ef117f58 ip : 00000000 fp : beac15ec
[ 8.913775] r10: ee7b6848 r9 : eeaf00b0 r8 : 40000020
[ 8.913778] r7 : ee7b6840 r6 : c0d04d48 r5 : 00000032 r4 : ee7d4000
[ 8.913781] r3 : eda4cdc0 r2 : ee7b6840 r1 : 00000032 r0 : 00000040
[ 8.913787] Flags: nZCv IRQs on FIQs on Mode SVC_32 ISA Thumb Segment none
[ 8.976524] sun4i-codec 1c22c00.codec: ASoC: codec-analog@1f015c0 not registered
[ 8.978281] Control: 50c5387d Table: 6e5a006a DAC: 00000051
[ 8.997511] sun4i-codec 1c22c00.codec: Failed to register our card
[ 9.005729] Process systemd (pid: 1, stack limit = 0x(ptrval))
[ 9.005734] Stack: (0xef117f58 to 0xef118000)
[ 9.005738] 7f40: ee7d4000 00000032
[ 9.005745] 7f60: c0d04d48 c023c77b 00000000 00000000 00208000 242d0000 00000000 00000000
[ 9.107936] 7f80: 00000000 242dc011 b6fc0000 b6fec968 00000000 00000142 c0101224 ef116000
[ 9.116116] 7fa0: 00000142 c0101001 b6fc0000 b6fec968 ffffff9c b6e66548 002a8000 00000000
[ 9.124292] 7fc0: b6fc0000 b6fec968 00000000 00000142 beac1568 004b855c beac1568 beac15ec
[ 9.132470] 7fe0: 00000142 beac13d0 b6f5825d b6ee1746 20010030 ffffff9c 00000000 00000000
[ 9.140669] [<c0255cfe>] (__fd_install) from [<c023c77b>] (do_sys_open+0x173/0x188)
[ 9.148331] [<c023c77b>] (do_sys_open) from [<c0101001>] (ret_fast_syscall+0x1/0x62)
[ 9.156070] Exception stack(0xef117fa8 to 0xef117ff0)
[ 9.161122] 7fa0: b6fc0000 b6fec968 ffffff9c b6e66548 002a8000 00000000
[ 9.169297] 7fc0: b6fc0000 b6fec968 00000000 00000142 beac1568 004b855c beac1568 beac15ec
[ 9.177473] 7fe0: 00000142 beac13d0 b6f5825d b6ee1746
[ 9.182529] Code: 8f4a f3af 8004 bd70 (de02) de02
[ 9.187322] ---[ end trace aa106ebd2c3d70f5 ]---
[ 9.187326] Internal error: Oops: 5 [#3] SMP THUMB2
[ 9.187329] Modules linked in: sun4i_gpadc_iio(+) dw_hdmi_i2s_audio industrialio dw_hdmi_cec(+) sun4i_i2s sun4i_codec snd_soc_core sun8i_ths snd_pcm_dmaengine snd_pcm snd_timer snd soundcore cpufreq_dt uio_pdrv_genirq uio thermal_sys ip_tables x_tables pwrseq_simple
[ 9.220426] CPU: 3 PID: 299 Comm: wireless-tools Tainted: G D 4.19.86-sunxi #19.11.3
[ 9.224442] Unable to handle kernel NULL pointer dereference at virtual address 00000060
[ 9.229490] Hardware name: Allwinner sun8i Family
[ 9.229518] PC is at _raw_spin_lock+0xa/0x34
[ 9.229528] LR is at perf_lock_task_context+0x4f/0xec
[ 9.229532] pc : [<c08f3282>] lr : [<c01d827f>] psr: 000101b3
[ 9.229535] sp : ed117c38 ip : 00000101 fp : edb47500
[ 9.229537] r10: edb47500 r9 : ed0e363c r8 : 00000040
[ 9.229540] r7 : edb47500 r6 : ed117c50 r5 : edb47a40 r4 : 00000040
[ 9.229550] r3 : 60010113 r2 : ed117c50 r1 : 00000001 r0 : 00000044
[ 9.230471] sun4i-codec 1c22c00.codec: ASoC: codec-analog@1f015c0 not registered
[ 9.230480] sun4i-codec 1c22c00.codec: Failed to register our card
[ 9.237662] pgd = (ptrval)
[ 9.242366] Flags: nzcv IRQs off FIQs on Mode SVC_32 ISA Thumb Segment none
[ 9.242374] Control: 50c5387d Table: 6d12c06a DAC: 00000051
[ 9.242380] Process wireless-tools (pid: 299, stack limit = 0x(ptrval))
[ 9.242387] Stack: (0xed117c38 to 0xed118000)
[ 9.246676] [00000060] *pgd=00000000
[ 9.251728] 7c20: c0d04d48 00000000
[ 9.251738] 7c40: edb47500 00000001 00000000 c01d8333 60010113 242dc011 00000000 0000e000
[ 9.263278] 7c60: 00000000 c01e2691 c011eccf c0133a97 edb47500 00000001 ffffe000 c0de2e87
[ 9.263286] 7c80: ffffffff edb47500 ed0e3600 edb47500 ed0e3600 ed116000 ed117cb4 00000000
[ 9.263292] 7ca0: ed0e363c edb47500 ffffe000 c011ecef c0d0a2f4 0000000b ed116000 242dc011
[ 9.274950] sun4i-codec 1c22c00.codec: ASoC: Failed to create component debugfs directory
[ 9.275052] 7cc0: 20010193 ed116000 ffffe000 c010a373 ed116210 0000000b ed0e3600 000000a0
[ 9.300076] Registered IR keymap rc-empty
[ 9.305283] 7ce0: ed117e00 00000005 ed0e3600 00000005 00010000 ed0e363c 00000030 c0110961
[ 9.305290] 7d00: 000000a0 c0110b9b 00000001 c0231ec1 d0dd5470 ed117d4c 00000006 00000000
[ 9.305296] 7d20: 00000000 00000075 ed117da4 c0d0aac4 c0d04d48 00000005 242dc011 000000a0
[ 9.305304] 7d40: c0d0ab14 ed117e00 ed855434 c0110cc9 00210d00 c0de4138 c0d04d48 ed08e2a0
[ 9.311159] rc rc0: sunxi-ir as /devices/platform/soc/1f02000.ir/rc/rc0
[ 9.317660] 7d60: 00000075 ed1131d0 00000009 00000075 ed117da4 802a001e c09118ec c01f6643
[ 9.317666] 7d80: ed117df4 242dc011 00000001 c023bb59 c0214a57 2ea22000 0000006e ed0e3600
[ 9.317673] 7da0: 00000001 00000034 ed855434 c022b9db 00000001 c05bd5ff 00000000 c05bd625
[ 9.322164] input: sunxi-ir as /devices/platform/soc/1f02000.ir/rc/rc0/input0
[ 9.325599] 7dc0: ffffffff c01edc27 00000002 c022b9db efd66af0 0006dbdc 00000001 242dc011
[ 9.325608] 7de0: c01e1150 800100b3 ffffffff ed117e34 00000000 ed116000 00000000 c01019d3
[ 9.375649] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter
[ 9.382818] 7e00: ed0e3600 ed117e50 edb47500 edb47a3c ed858700 00000040 ed858700 00000040
[ 9.382827] 7e20: 00000000 00000001 00000000 ed855434 00000000 ed117e50 c0244863 c01e1150
[ 9.499762] 7e40: 800100b3 ffffffff 00000051 bf000000 2ea22000 00010013 ed116000 ed858700
[ 9.507940] 7e60: c0d04d48 ed858700 ed117e90 edabd600 00000001 00000000 ed855434 c0244863
[ 9.516116] 7e80: edb47500 ed855400 c0d04d48 c02813ed 00000006 c0d04d48 00000000 ed117e90
[ 9.524291] 7ea0: ed858400 ede4d300 00000000 c020f34d 00000000 c020f383 efe788ac ed855434
[ 9.532469] 7ec0: edf1c9c0 02443374 00000000 c020f41d 00000000 efe788ac 0000000f 02443374
[ 9.540646] 7ee0: 00000034 00000000 00000011 ed117f20 00000000 c0247211 ed60bdb8 242dc011
[ 9.548822] 7f00: 00000000 c0d27d68 ed858700 c0e2c868 fffffff8 c0d24e2c c0e2c868 c0a934ec
[ 9.556997] 7f20: 00000002 c0243c87 ed080700 c0d04d48 ee7e3000 edb47500 ffffe000 ed858700
[ 9.565174] 7f40: 024433c4 00000000 0000012b c0244509 0000012b ed92e240 ed0e363c 00000000
[ 9.573352] 7f60: 00000000 242dc011 ed116000 00000000 024433c4 004c4400 0000000b c0101224
[ 9.581528] 7f80: ed116000 0000000b bebf59f0 c02448f7 00000000 00000000 ffffffff 02443374
[ 9.589703] 7fa0: 024433a0 c0101001 02443374 024433a0 02443374 024433a0 024433c4 10b3a400
[ 9.597881] 7fc0: 02443374 024433a0 004c4400 0000000b 024433a0 004c4400 024433c4 bebf59f0
[ 9.606057] 7fe0: 004d6e04 bebf58e4 004b97b7 b6ea63d8 600d0030 02443374 00000000 00000000
[ 9.614254] [<c08f3282>] (_raw_spin_lock) from [<c01d827f>] (perf_lock_task_context+0x4f/0xec)
[ 9.622868] [<c01d827f>] (perf_lock_task_context) from [<c01d8333>] (perf_pin_task_context+0x17/0x40)
[ 9.632090] [<c01d8333>] (perf_pin_task_context) from [<c01e2691>] (perf_event_exit_task+0x99/0x338)
[ 9.641230] [<c01e2691>] (perf_event_exit_task) from [<c011ecef>] (do_exit+0x3b7/0x8a4)
[ 9.649237] [<c011ecef>] (do_exit) from [<c010a373>] (die+0x26b/0x274)
[ 9.655771] [<c010a373>] (die) from [<c0110961>] (__do_kernel_fault.part.0+0x55/0x60)
[ 9.663602] [<c0110961>] (__do_kernel_fault.part.0) from [<c0110b9b>] (do_page_fault+0x22f/0x230)
[ 9.672470] [<c0110b9b>] (do_page_fault) from [<c0110cc9>] (do_DataAbort+0x41/0xac)
[ 9.680127] [<c0110cc9>] (do_DataAbort) from [<c01019d3>] (__dabt_svc+0x53/0x80)
[ 9.687521] Exception stack(0xed117e00 to 0xed117e48)
[ 9.692572] 7e00: ed0e3600 ed117e50 edb47500 edb47a3c ed858700 00000040 ed858700 00000040
[ 9.700747] 7e20: 00000000 00000001 00000000 ed855434 00000000 ed117e50 c0244863 c01e1150
[ 9.708919] 7e40: 800100b3 ffffffff
[ 9.712413] [<c01019d3>] (__dabt_svc) from [<c01e1150>] (perf_event_exec+0x48/0x1c8)
[ 9.720161] [<c01e1150>] (perf_event_exec) from [<c0244863>] (setup_new_exec+0x9b/0x108)
[ 9.728256] [<c0244863>] (setup_new_exec) from [<c02813ed>] (load_elf_binary+0x1cd/0xf74)
[ 9.736439] [<c02813ed>] (load_elf_binary) from [<c0243c87>] (search_binary_handler+0x8f/0x1ac)
[ 9.745138] [<c0243c87>] (search_binary_handler) from [<c0244509>] (__do_execve_file+0x3f9/0x5fc)
[ 9.754008] [<c0244509>] (__do_execve_file) from [<c02448f7>] (sys_execve+0x27/0x2c)
[ 9.761751] [<c02448f7>] (sys_execve) from [<c0101001>] (ret_fast_syscall+0x1/0x62)
[ 9.769403] Exception stack(0xed117fa8 to 0xed117ff0)
[ 9.774455] 7fa0: 02443374 024433a0 02443374 024433a0 024433c4 10b3a400
[ 9.782629] 7fc0: 02443374 024433a0 004c4400 0000000b 024433a0 004c4400 024433c4 bebf59f0
[ 9.790804] 7fe0: 004d6e04 bebf58e4 004b97b7 b6ea63d8
[ 9.795859] Code: f85d eb04 f8b0 f000 (e850) 3f00
[ 9.800652] ---[ end trace aa106ebd2c3d70f6 ]---
[ 9.800658] Internal error: Oops: 5 [#4] SMP THUMB2
[ 9.805268] Fixing recursive fault but reboot is needed!
[ 9.810139] Modules linked in: snd_soc_simple_card(+) snd_soc_simple_card_utils sunxi_cir(+) sun8i_codec_analog sun8i_adda_pr_regmap sun4i_gpadc_iio(+) dw_hdmi_i2s_audio industrialio dw_hdmi_cec sun4i_i2s sun4i_codec snd_soc_core sun8i_ths snd_pcm_dmaengine snd_pcm snd_timer snd soundcore cpufreq_dt uio_pdrv_genirq uio thermal_sys ip_tables x_tables pwrseq_simple
[ 9.819019] thermal thermal_zone0: failed to read out thermal zone (-110)
[ 9.847626] CPU: 1 PID: 1 Comm: systemd Tainted: G D 4.19.86-sunxi #19.11.3
[ 9.847631] Hardware name: Allwinner sun8i Family
[ 9.847653] PC is at filp_close+0xa/0x48
[ 9.847663] LR is at put_files_struct+0x81/0xb4
[ 9.847666] pc : [<c023bb32>] lr : [<c0255a79>] psr: 200f0033
[ 9.847669] sp : ef117dd8 ip : 00000000 fp : ffffe000
[ 9.847671] r10: ef125480 r9 : 00000000 r8 : 000000cc
[ 9.847675] r7 : eda4cdc0 r6 : 00000003 r5 : 00000040 r4 : ef0db100
[ 9.847678] r3 : c9c328c8 r2 : 00000000 r1 : ef0db100 r0 : 00000040
[ 9.847684] Flags: nzCv IRQs on FIQs on Mode SVC_32 ISA Thumb Segment none
[ 9.847687] Control: 50c5387d Table: 6db3406a DAC: 00000051
[ 9.847690] Process systemd (pid: 1, stack limit = 0x(ptrval))
[ 9.847695] Stack: (0xef117dd8 to 0xef118000)
[ 9.847699] 7dc0: ef0db100 00000004
[ 9.847706] 7de0: 00000003 c0255a79 ef125894 ef125480 ee377a00 ef116000 ffffe000 00000000
[ 9.847712] 7e00: ee377a3c c011ecc9 c0d0a2f4 0000000b ef116000 242dc011 60010093 ef116000
[ 9.847725] 7e20: ffffe000 c010a373 ef116210 0000000b ef117e88 00000001 00000004 ef117f08
[ 9.856112] sunxi-ir 1f02000.ir: initialized sunXi IR driver
[ 9.862812] 7e40: c0d04d48 c0255cfe 00000000 ee7b6848 beac15ec c010a5df 00000006 21b6ae11
[ 9.862820] 7e60: beac1580 00000004 00000000 00000001 c0255cfe 00000000 00000000 00000000
[ 9.862825] 7e80: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 9.862831] 7ea0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 9.862837] 7ec0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 9.862843] 7ee0: 00000000 242dc011 00000002 c0255d00 60010033 ffffffff ef117f3c 40000020
[ 9.862850] 7f00: ef116000 c0101b29 00000040 00000032 ee7b6840 eda4cdc0 ee7d4000 00000032
[ 9.862856] 7f20: c0d04d48 ee7b6840 40000020 eeaf00b0 ee7b6848 beac15ec 00000000 ef117f58
[ 9.862863] 7f40: c023c77b c0255cfe 60010033 ffffffff 00000051 bf000000 ee7d4000 00000032
[ 9.862869] 7f60: c0d04d48 c023c77b 00000000 00000000 00208000 242d0000 00000000 00000000
[ 9.862876] 7f80: 00000000 242dc011 b6fc0000 b6fec968 00000000 00000142 c0101224 ef116000
[ 9.862882] 7fa0: 00000142 c0101001 b6fc0000 b6fec968 ffffff9c b6e66548 002a8000 00000000
[ 9.862893] 7fc0: b6fc0000 b6fec968 00000000 00000142 beac1568 004b855c beac1568 beac15ec
[ 10.073614] 7fe0: 00000142 beac13d0 b6f5825d b6ee1746 20010030 ffffff9c 00000000 00000000
[ 10.081811] [<c023bb32>] (filp_close) from [<c0255a79>] (put_files_struct+0x81/0xb4)
[ 10.089558] [<c0255a79>] (put_files_struct) from [<c011ecc9>] (do_exit+0x391/0x8a4)
[ 10.097216] [<c011ecc9>] (do_exit) from [<c010a373>] (die+0x26b/0x274)
[ 10.103742] [<c010a373>] (die) from [<c010a5df>] (do_undefinstr+0xeb/0x190)
[ 10.110703] [<c010a5df>] (do_undefinstr) from [<c0101b29>] (__und_svc_finish+0x1/0x38)
[ 10.118614] Exception stack(0xef117f08 to 0xef117f50)
[ 10.123664] 7f00: 00000040 00000032 ee7b6840 eda4cdc0 ee7d4000 00000032
[ 10.131838] 7f20: c0d04d48 ee7b6840 40000020 eeaf00b0 ee7b6848 beac15ec 00000000 ef117f58
[ 10.140010] 7f40: c023c77b c0255cfe 60010033 ffffffff
[ 10.145063] [<c0101b29>] (__und_svc_finish) from [<c0255cfe>] (__fd_install+0x5e/0x64)
[ 10.152981] [<c0255cfe>] (__fd_install) from [<c023c77b>] (do_sys_open+0x173/0x188)
[ 10.160638] [<c023c77b>] (do_sys_open) from [<c0101001>] (ret_fast_syscall+0x1/0x62)
[ 10.168375] Exception stack(0xef117fa8 to 0xef117ff0)
[ 10.173424] 7fa0: b6fc0000 b6fec968 ffffff9c b6e66548 002a8000 00000000
[ 10.181599] 7fc0: b6fc0000 b6fec968 00000000 00000142 beac1568 004b855c beac1568 beac15ec
[ 10.189771] 7fe0: 00000142 beac13d0 b6f5825d b6ee1746
[ 10.194822] Code: b500 f85d eb04 4605 (6a04) 460e
[ 10.199689] ---[ end trace aa106ebd2c3d70f7 ]---
[ 10.204316] Fixing recursive fault but reboot is needed!
The following 2 images does start, but cant apply the dtb-overlays and try to fallback to the original dtb.
Blue Heartbeat LED does start, will blink faster and faster and then also did die
Armbian_19.11.3_Sunvell-r69_stretch_current_5.3.13.img
Armbian_19.11.3_Sunvell-r69_buster_dev_5.3.13.imgSpoilerU-Boot 2019.04-armbian (Nov 25 2019 - 22:11:10 +0300) Allwinner Technology
CPU: Allwinner H3 (SUN8I 1680)
Model: Sunvell R69
DRAM: 1 GiB
MMC: Device 'mmc@1c11000': seq 1 is in use by 'mmc@1c10000'
mmc@1c0f000: 0, mmc@1c10000: 2, mmc@1c11000: 1
Loading Environment from EXT4... ** File not found /boot/boot.env **** Unable to read "/boot/boot.env" from mmc0:1 **
In: serial@1c28000
Out: serial@1c28000
Err: serial@1c28000
Net: eth-1: ethernet@1c30000
starting USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 1 USB Device(s) found
scanning usb for storage devices... 0 Storage Device(s) found
Autoboot in 1 seconds, press <Space> to stop
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Found U-Boot script /boot/boot.scr
3798 bytes read in 2 ms (1.8 MiB/s)
## Executing script at 43100000
U-boot loaded from SD
Boot script loaded from mmc
178 bytes read in 2 ms (86.9 KiB/s)
7307777 bytes read in 567 ms (12.3 MiB/s)
7641744 bytes read in 593 ms (12.3 MiB/s)
Found mainline kernel configuration
28515 bytes read in 10 ms (2.7 MiB/s)
382 bytes read in 5 ms (74.2 KiB/s)
Applying kernel provided DT overlay sun8i-h3-cir.dtbo
failed on fdt_overlay_apply(): FDT_ERR_NOTFOUND
339 bytes read in 6 ms (54.7 KiB/s)
Applying kernel provided DT overlay sun8i-h3-analog-codec.dtbo
failed on fdt_overlay_apply(): FDT_ERR_BADMAGIC
base fdt does did not have a /__symbols__ node
make sure you've compiled with -@
Error applying DT overlays, restoring original DT
28515 bytes read in 10 ms (2.7 MiB/s)
## Loading init Ramdisk from Legacy Image at 43300000 ...
Image Name: uInitrd
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 7307713 Bytes = 7 MiB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... OK
## Flattened Device Tree blob at 43000000
Booting using the fdt blob at 0x43000000
Loading Ramdisk to 49907000, end 49fff1c1 ... OK
Loading Device Tree to 498fd000, end 49906f62 ... OKStarting kernel ...
Uncompressing Linux... done, booting the kernel.
[ 11.102743] 8<--- cut here ---
[ 11.105861] Unable to handle kernel paging request at virtual address 2e806000
[ 11.109620] 8<--- cut here ---
[ 11.113116] pgd = (ptrval)
[ 11.116201] Unable to handle kernel paging request at virtual address 2e7deb45
[ 11.118928] [2e806000] *pgd=00000000
[ 11.126163] pgd = (ptrval)
[ 11.129764] Internal error: Oops: 5 [#1] SMP THUMB2
[ 11.132487] [2e7deb45] *pgd=00000000
[ 11.137372] Modules linked in: uio_pdrv_genirq uio cpufreq_dt ip_tables x_tables pwrseq_simple
[ 11.149584] CPU: 2 PID: 1 Comm: systemd Not tainted 5.3.13-sunxi #19.11.3
[ 11.156385] Hardware name: Allwinner sun8i Family
[ 11.161121] PC is at get_mem_cgroup_from_mm+0x4e/0x90
[ 11.166201] LR is at mem_cgroup_try_charge+0x2b/0x13c
[ 11.171266] pc : [<c02423ae>] lr : [<c0245e4f>] psr: 400e01b3
[ 11.177548] sp : ef11be18 ip : 00a2f340 fp : 00000055
[ 11.182778] r10: eebf7e00 r9 : c0115c81 r8 : c0f04d48
[ 11.188016] r7 : eebf7e00 r6 : 00000000 r5 : 00000001 r4 : 400e0113
[ 11.194557] r3 : ef025840 r2 : 00000000 r1 : 00000000 r0 : 2e806000
[ 11.201093] Flags: nZcv IRQs off FIQs on Mode SVC_32 ISA Thumb Segment none
[ 11.208500] Control: 50c5387d Table: 6e29406a DAC: 00000051
[ 11.214265] Process systemd (pid: 1, stack limit = 0x(ptrval))
[ 11.220114] Stack: (0xef11be18 to 0xef11c000)
[ 11.224490] be00: 00000000 00000cc0
[ 11.232683] be20: ef11be70 eebf7e00 ef11be70 00000000 ef11be70 00000cc0 ed044840 c0245f79
[ 11.240881] be40: 00000000 c0115ca7 efe885f0 ef11bedc efe88bfc c021a79d 00000000 016e3600
[ 11.249079] be60: be8024c0 c10337c0 ffede000 c10337c0 ef025800 bf6c1ed8 0000001a ef11bedc
[ 11.257281] be80: c0f04d48 ed044840 00000000 00000024 75c9c5df eebf7e3c 00000055 c021c70d
[ 11.265477] bea0: 00000000 efea67dc 00000002 bf6c1ed8 df000000 c0f08bc4 c0f04d48 00000040
[ 11.273687] bec0: 00000024 c021da05 5ddc3450 016e3600 5ddc3450 016e3600 000000b8 ed044840
[ 11.281888] bee0: 00000055 00000cc0 00000a04 00a04000 ee294028 ee294028 75c9c5df 00000000
[ 11.290073] bf00: 00000000 efe885f0 ffede010 efea67f0 00000000 bf6c1ed8 00000000 ef11bfb0
[ 11.298259] bf20: ef128000 eebf7e00 00a04444 0000080f ed044840 eebf7e3c 00000055 c0110a05
[ 11.306441] bf40: 00000000 00000000 5ddc3450 00000000 016e3600 00000800 00000000 00000000
[ 11.314623] bf60: 016e3600 c0f0ac84 0000080f 00a04444 c0f0ad74 ef11bfb0 000010e0 000000d8
[ 11.322806] bf80: b6c0685c c0110c73 00000000 00000000 000000dd bf6c1ed8 b6b8a18e 600e0030
[ 11.330989] bfa0: ffffffff 50c5387d 50c5387d c0101e4f 000010e1 000000d9 b6c227a4 00a05448
[ 11.339168] bfc0: 00a04440 00001009 00a099c0 b6c227d4 00001009 000010e0 000000d8 b6c0685c
[ 11.347349] bfe0: b6c22010 be802440 b6b89dad b6b8a18e 600e0030 ffffffff 00000000 00000000
[ 11.355553] [<c02423ae>] (get_mem_cgroup_from_mm) from [<c0245e4f>] (mem_cgroup_try_charge+0x2b/0x13c)
[ 11.364865] [<c0245e4f>] (mem_cgroup_try_charge) from [<c0245f79>] (mem_cgroup_try_charge_delay+0x19/0x2c)
[ 11.374530] [<c0245f79>] (mem_cgroup_try_charge_delay) from [<c021a79d>] (wp_page_copy+0x85/0x430)
[ 11.383497] [<c021a79d>] (wp_page_copy) from [<c021c70d>] (do_wp_page+0x91/0x4ec)
[ 11.390988] [<c021c70d>] (do_wp_page) from [<c021da05>] (handle_mm_fault+0x531/0x904)
[ 11.398827] [<c021da05>] (handle_mm_fault) from [<c0110a05>] (do_page_fault+0xd1/0x22c)
[ 11.406839] [<c0110a05>] (do_page_fault) from [<c0110c73>] (do_DataAbort+0x33/0x90)
[ 11.414501] [<c0110c73>] (do_DataAbort) from [<c0101e4f>] (__dabt_usr+0x4f/0x60)
[ 11.421898] Exception stack(0xef11bfb0 to 0xef11bff8)
[ 11.426953] bfa0: 000010e1 000000d9 b6c227a4 00a05448
[ 11.435131] bfc0: 00a04440 00001009 00a099c0 b6c227d4 00001009 000010e0 000000d8 b6c0685c
[ 11.443305] bfe0: b6c22010 be802440 b6b89dad b6b8a18e 600e0030 ffffffff
[ 11.449919] Code: b672 ee1d 0f90 460a (5811) 3101
[ 11.454711] ---[ end trace c90c4191abba8be8 ]---
[ 11.454714] Internal error: Oops: 5 [#2] SMP THUMB2
[ 11.454719] Modules linked in: uio_pdrv_genirq uio cpufreq_dt ip_tables x_tables pwrseq_simple
[ 11.460434] 8<--- cut here ---
[ 11.464207] CPU: 0 PID: 364 Comm: systemd Tainted: G D 5.3.13-sunxi #19.11.3
[ 11.472817] Unable to handle kernel paging request at virtual address 00002008
[ 11.475865] Hardware name: Allwinner sun8i Family
[ 11.484209] pgd = (ptrval)
[ 11.491439] PC is at __count_memcg_events.part.14+0x1a/0xa4
[ 11.496121] [00002008] *pgd=00000000
[ 11.498836] LR is at handle_mm_fault+0x63/0x904
[ 11.512486] pc : [<c024320a>] lr : [<c021d537>] psr: 000f01b3
[ 11.518747] sp : ec3abe50 ip : ffffe000 fp : 00000015
[ 11.523967] r10: eebf7a3c r9 : ee81cea0 r8 : 00000015
[ 11.529187] r7 : 000f0113 r6 : 2e7de000 r5 : ec3abe50 r4 : 00000b45
[ 11.535709] r3 : 00000b45 r2 : 00000001 r1 : 000000d4 r0 : ef025840
[ 11.542233] Flags: nzcv IRQs off FIQs on Mode SVC_32 ISA Thumb Segment none
[ 11.549623] Control: 50c5387d Table: 6c1ac06a DAC: 00000051
[ 11.555364] Process systemd (pid: 364, stack limit = 0x(ptrval))
[ 11.561366] Stack: (0xec3abe50 to 0xec3ac000)
[ 11.565722] be40: b6f18000 ee81cea0 c0f04d48 000f0113
[ 11.573895] be60: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 11.582069] be80: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 11.590242] bea0: 00000000 00000000 00000000 bf6c1ed8 00000000 ec3abf48 ef37a700 eebf7a00
[ 11.598416] bec0: b6f182a8 00000817 ee81cea0 eebf7a3c 00000015 c0110a05 00000000 00000000
[ 11.606591] bee0: 00000000 00000000 00000000 00000800 00000000 00000000 00000000 c0f0ac84
[ 11.614765] bf00: 00000817 b6f182a8 c0f0acf4 ec3abf48 ec3aa000 00000000 00000000 c0110c73
[ 11.622938] bf20: 00000000 00000000 00000000 00000000 c0919250 800f0033 ffffffff ec3abf7c
[ 11.631112] bf40: 00000000 c0101a53 b6f182a8 beffffff 0000016c 00000055 ec3aa000 b6f182a8
[ 11.639286] bf60: 00000051 ec3abf98 00000000 00000000 00000000 00000000 f7f182ab ec3abf98
[ 11.647460] bf80: c013c4e9 c0919250 800f0033 ffffffff 00000055 bf000000 ffffffff 00000000
[ 11.655633] bfa0: 00000000 00000000 00000000 c01010ed 00000000 00000000 00000000 00000000
[ 11.663807] bfc0: b6f182a8 be8025c8 00000000 00000078 00000000 b6c22000 b6f18240 be8025e4
[ 11.671981] bfe0: 00000078 be8025c0 b6ba94ef b6b4e6f6 20010030 01200011 00000000 00000000
[ 11.680167] [<c024320a>] (__count_memcg_events.part.14) from [<c021d537>] (handle_mm_fault+0x63/0x904)
[ 11.689473] [<c021d537>] (handle_mm_fault) from [<c0110a05>] (do_page_fault+0xd1/0x22c)
[ 11.697475] [<c0110a05>] (do_page_fault) from [<c0110c73>] (do_DataAbort+0x33/0x90)
[ 11.705131] [<c0110c73>] (do_DataAbort) from [<c0101a53>] (__dabt_svc+0x53/0x80)
[ 11.712520] Exception stack(0xec3abf48 to 0xec3abf90)
[ 11.717570] bf40: b6f182a8 beffffff 0000016c 00000055 ec3aa000 b6f182a8
[ 11.725743] bf60: 00000051 ec3abf98 00000000 00000000 00000000 00000000 f7f182ab ec3abf98
[ 11.733915] bf80: c013c4e9 c0919250 800f0033 ffffffff
[ 11.738972] [<c0101a53>] (__dabt_svc) from [<c0919250>] (__put_user_4+0x14/0x1c)
[ 11.746369] Code: 440b ee1d 6f90 461c (59a4) 4422
[ 11.751159] ---[ end trace c90c4191abba8be9 ]---
[ 11.751162] Internal error: Oops: 5 [#3] SMP THUMB2
[ 11.751165] Modules linked in: uio_pdrv_genirq uio cpufreq_dt ip_tables x_tables pwrseq_simple
[ 11.756173] 8<--- cut here ---
[ 11.760660] CPU: 2 PID: 1 Comm: systemd Tainted: G D 5.3.13-sunxi #19.11.3
[ 11.760663] Hardware name: Allwinner sun8i Family
[ 11.760682] PC is at vma_interval_tree_remove+0x38/0x1c4
[ 11.769348] Unable to handle kernel paging request at virtual address ffeff000
[ 11.772341] LR is at __remove_shared_vm_struct+0x5f/0x74
[ 11.772346] pc : [<c021757c>] lr : [<c021f453>] psr: 200e01b3
[ 11.772349] sp : ef11bc18 ip : ebe7d1ac fp : ffffe000
[ 11.772352] r10: ef128000 r9 : 00000000 r8 : edb8d74c
[ 11.772355] r7 : edb8d720 r6 : eecfcd50 r5 : edb8d720 r4 : ebe7d1ac
[ 11.772359] r3 : 00002000 r2 : 00002000 r1 : eecfcd48 r0 : edb8bc2c
[ 11.772364] Flags: nzCv IRQs off FIQs on Mode SVC_32 ISA Thumb Segment none
[ 11.772367] Control: 50c5387d Table: 6e29406a DAC: 00000051
[ 11.772374] Process systemd (pid: 1, stack limit = 0x(ptrval))
[ 11.780572] pgd = (ptrval)
[ 11.785267] Stack: (0xef11bc18 to 0xef11c000)
[ 11.785274] bc00: edb8d754 ed32eab8
[ 11.785280] bc20: eecfcd30 edb8d720 eecfcd50 eecfcd30 00002000 c021f453 ef128000 edb8d720
[ 11.785287] bc40: ef1eb180 c021f937 edb8d75c edb8d720 ed044960 b68d6000 ef11bc90 c021af8f
[ 11.785293] bc60: b6800000 c021bfed 00000000 ed041120 00000000 c0f04d48 eebf7e00 00000000
[ 11.785300] bc80: eebf7e3c c02209a3 ef11bcb0 f0803000 eebf7e00 00400000 ffffffff ef12807d
[ 11.785306] bca0: 00000002 ec320000 ebafb000 00000008 00000008 efff7118 efff6f8c efff7478
[ 11.790745] [ffeff000] *pgd=6fffd861, *pte=00000000, *ppte=00000000
[ 11.797864] bcc0: efff70f4 efe99168 efff1a54 efff1880 effeff9c bf6c1ed8 ffffe000 eebf7e00
[ 11.797872] bce0: eebf7e00 ffffe000 ffffe000 c0118ca3 0000020b ef128000 eebf7e00 c011f011
[ 11.797879] bd00: c0f0a4b4 0000000b ef11a000 bf6c1ed8 200e0193 ef11a000 ffffe000 c010a3bb
[ 11.797885] bd20: ef11a210 0000000b eebf7e00 2e806000 ef11bdc8 00000005 eebf7e00 00000005
[ 11.797894] bd40: 00010000 eebf7e3c 00000030 c0110929 2e806000 c0110b5f 00000055 c022b98f
[ 11.797900] bd60: ef11bdc4 c02b3f3b 00000000 00000000 00000000 c02b3f3b 5ddc3450 c0f0ac84
[ 11.797907] bd80: 00000005 2e806000 c0f0acd4 ef11bdc8 ef11a000 eebf7e00 00000055 c0110c73
[ 11.797913] bda0: eeb37898 c023c4d1 00000054 c0245e5b c02423ae 400e01b3 ffffffff ef11bdfc
[ 11.797920] bdc0: c0f04d48 c0101a53 2e806000 00000000 00000000 ef025840 400e0113 00000001
[ 11.797926] bde0: 00000000 eebf7e00 c0f04d48 c0115c81 eebf7e00 00000055 00a2f340 ef11be18
[ 11.797933] be00: c0245e4f c02423ae 400e01b3 ffffffff 00000051 bf000000 00000000 00000cc0
[ 12.004075] be20: ef11be70 eebf7e00 ef11be70 00000000 ef11be70 00000cc0 ed044840 c0245f79
[ 12.012251] be40: 00000000 c0115ca7 efe885f0 ef11bedc efe88bfc c021a79d 00000000 016e3600
[ 12.020425] be60: be8024c0 c10337c0 ffede000 c10337c0 ef025800 bf6c1ed8 0000001a ef11bedc
[ 12.028599] be80: c0f04d48 ed044840 00000000 00000024 75c9c5df eebf7e3c 00000055 c021c70d
[ 12.036773] bea0: 00000000 efea67dc 00000002 bf6c1ed8 df000000 c0f08bc4 c0f04d48 00000040
[ 12.044947] bec0: 00000024 c021da05 5ddc3450 016e3600 5ddc3450 016e3600 000000b8 ed044840
[ 12.053121] bee0: 00000055 00000cc0 00000a04 00a04000 ee294028 ee294028 75c9c5df 00000000
[ 12.061295] bf00: 00000000 efe885f0 ffede010 efea67f0 00000000 bf6c1ed8 00000000 ef11bfb0
[ 12.069469] bf20: ef128000 eebf7e00 00a04444 0000080f ed044840 eebf7e3c 00000055 c0110a05
[ 12.077643] bf40: 00000000 00000000 5ddc3450 00000000 016e3600 00000800 00000000 00000000
[ 12.085817] bf60: 016e3600 c0f0ac84 0000080f 00a04444 c0f0ad74 ef11bfb0 000010e0 000000d8
[ 12.093992] bf80: b6c0685c c0110c73 00000000 00000000 000000dd bf6c1ed8 b6b8a18e 600e0030
[ 12.102166] bfa0: ffffffff 50c5387d 50c5387d c0101e4f 000010e1 000000d9 b6c227a4 00a05448
[ 12.110340] bfc0: 00a04440 00001009 00a099c0 b6c227d4 00001009 000010e0 000000d8 b6c0685c
[ 12.118514] bfe0: b6c22010 be802440 b6b89dad b6b8a18e 600e0030 ffffffff 00000000 00000000
[ 12.126707] [<c021757c>] (vma_interval_tree_remove) from [<c021f453>] (__remove_shared_vm_struct+0x5f/0x74)
[ 12.136446] [<c021f453>] (__remove_shared_vm_struct) from [<c021f937>] (unlink_file_vma+0x27/0x34)
[ 12.145404] [<c021f937>] (unlink_file_vma) from [<c021af8f>] (free_pgtables+0x53/0x80)
[ 12.153320] [<c021af8f>] (free_pgtables) from [<c02209a3>] (exit_mmap+0x8b/0xf4)
[ 12.160719] [<c02209a3>] (exit_mmap) from [<c0118ca3>] (mmput+0x43/0xcc)
[ 12.167422] [<c0118ca3>] (mmput) from [<c011f011>] (do_exit+0x359/0x8a0)
[ 12.174124] [<c011f011>] (do_exit) from [<c010a3bb>] (die+0x26b/0x274)
[ 12.180652] [<c010a3bb>] (die) from [<c0110929>] (__do_kernel_fault.part.0+0x69/0x74)
[ 12.188480] [<c0110929>] (__do_kernel_fault.part.0) from [<c0110b5f>] (do_page_fault+0x22b/0x22c)
[ 12.197349] [<c0110b5f>] (do_page_fault) from [<c0110c73>] (do_DataAbort+0x33/0x90)
[ 12.205004] [<c0110c73>] (do_DataAbort) from [<c0101a53>] (__dabt_svc+0x53/0x80)
[ 12.212394] Exception stack(0xef11bdc8 to 0xef11be10)
[ 12.217444] bdc0: 2e806000 00000000 00000000 ef025840 400e0113 00000001
[ 12.225617] bde0: 00000000 eebf7e00 c0f04d48 c0115c81 eebf7e00 00000055 00a2f340 ef11be18
[ 12.233789] be00: c0245e4f c02423ae 400e01b3 ffffffff
[ 12.238845] [<c0101a53>] (__dabt_svc) from [<c02423ae>] (get_mem_cgroup_from_mm+0x4e/0x90)
[ 12.247111] [<c02423ae>] (get_mem_cgroup_from_mm) from [<c0245e4f>] (mem_cgroup_try_charge+0x2b/0x13c)
[ 12.256414] [<c0245e4f>] (mem_cgroup_try_charge) from [<c0245f79>] (mem_cgroup_try_charge_delay+0x19/0x2c)
[ 12.266064] [<c0245f79>] (mem_cgroup_try_charge_delay) from [<c021a79d>] (wp_page_copy+0x85/0x430)
[ 12.275022] [<c021a79d>] (wp_page_copy) from [<c021c70d>] (do_wp_page+0x91/0x4ec)
[ 12.282505] [<c021c70d>] (do_wp_page) from [<c021da05>] (handle_mm_fault+0x531/0x904)
[ 12.290334] [<c021da05>] (handle_mm_fault) from [<c0110a05>] (do_page_fault+0xd1/0x22c)
[ 12.298335] [<c0110a05>] (do_page_fault) from [<c0110c73>] (do_DataAbort+0x33/0x90)
[ 12.305989] [<c0110c73>] (do_DataAbort) from [<c0101e4f>] (__dabt_usr+0x4f/0x60)
[ 12.313379] Exception stack(0xef11bfb0 to 0xef11bff8)
[ 12.318427] bfa0: 000010e1 000000d9 b6c227a4 00a05448
[ 12.326601] bfc0: 00a04440 00001009 00a099c0 b6c227d4 00001009 000010e0 000000d8 b6c0685c
[ 12.334775] bfe0: b6c22010 be802440 b6b89dad b6b8a18e 600e0030 ffffffff
[ 12.341386] Code: b913 e0bc 4618 4613 (689a) 2a00
[ 12.346178] ---[ end trace c90c4191abba8bea ]---
[ 12.346182] Internal error: Oops: 37 [#4] SMP THUMB2
[ 12.346186] Modules linked in: uio_pdrv_genirq uio cpufreq_dt ip_tables x_tables pwrseq_simple
[ 12.350796] Fixing recursive fault but reboot is needed!
[ 12.355761] CPU: 0 PID: 364 Comm: systemd Tainted: G D 5.3.13-sunxi #19.11.3
[ 12.378005] Hardware name: Allwinner sun8i Family
[ 12.382715] PC is at zap_pte_range+0xda/0x3fc
[ 12.387071] LR is at zap_pte_range+0x1cb/0x3fc
[ 12.391511] pc : [<c021b5ea>] lr : [<c021b6db>] psr: 800f0133
[ 12.397772] sp : ec3abb38 ip : ec3aa03c fp : b69db000
[ 12.402992] r10: ec3abcc8 r9 : c0c49000 r8 : ffeff000
[ 12.408212] r7 : b6c00040 r6 : 00000000 r5 : ffeff000 r4 : b6c00040
[ 12.414734] r3 : effefa48 r2 : ec31721c r1 : efff2744 r0 : 00000000
[ 12.421257] Flags: Nzcv IRQs on FIQs on Mode SVC_32 ISA Thumb Segment none
[ 12.428562] Control: 50c5387d Table: 6c1ac06a DAC: 00000051
[ 12.434303] Process systemd (pid: 364, stack limit = 0x(ptrval))
[ 12.440304] Stack: (0xec3abb38 to 0xec3ac000)
[ 12.444658] bb20: 00000000 edb8ba20
[ 12.452832] bb40: c10337c0 c0f08bc4 00000000 eebf7a00 efea2ad4 ffefe730 ec1aeda0 ffffe000
[ 12.461006] bb60: c0f04d48 ef69f6c0 ef37a700 ef128d00 ec3abb98 eebf7a00 c0f04d48 00000000
[ 12.469181] bb80: 00000000 c092aa65 00210d00 00000000 c0f04d48 c013ae2b ef0e6814 2e7de000
[ 12.477355] bba0: c092b003 ef37aaa4 c0a02090 c0a02090 00000000 bf6c1ed8 ef69f6c0 ffffe000
[ 12.485529] bbc0: 00000000 00000000 fffffffe 00000000 00000000 bf6c1ed8 00589000 ec1aeda4
[ 12.493703] bbe0: 00000000 b69db000 ec3abcc8 edb8ba20 b69cc040 ec1aeda0 b69db000 c021be09
[ 12.501877] bc00: b69db000 00000000 ef69fe80 b69dafff ffe00000 c0f04d48 ec3abc14 00000000
[ 12.510051] bc20: 00000004 bf6c1ed8 000000a0 c0f030a8 00000000 00000009 00000200 ffffe000
[ 12.518225] bc40: 00000100 c0f03080 ffffe000 c010238f badca4a5 00000002 00000000 c0eb6388
[ 12.526399] bc60: c0f04d68 c0ff39f8 c0ec1280 0000000a c0eb6318 bf6c1ed8 c0f03d00 edb8ba20
[ 12.534573] bc80: ffffffff ec3abcc8 00000000 00000000 eebf7a3c ef37a700 ffffe000 c021bfed
[ 12.542747] bca0: 00000000 c0200ba9 ef201ae0 00000000 c0f04d48 eebf7a00 00000000 c0220995
[ 12.550921] bcc0: ec3abce8 f0803000 eebf7a00 00589000 ffffffff 000f0109 00000001 ec317000
[ 12.559095] bce0: ec317000 00000008 00000008 efff1034 efff1058 efff107c efff10a0 efff10c4
[ 12.567269] bd00: efff10e8 efff110c efff1130 bf6c1ed8 ffffe000 eebf7a00 eebf7a00 ffffe000
[ 12.575443] bd20: ffffe000 c0118ca3 00000001 ef37a700 eebf7a00 c011f011 c0f0a4b4 0000000b
[ 12.583618] bd40: ec3aa000 bf6c1ed8 600f0193 ec3aa000 ffffe000 c010a3bb ec3aa210 0000000b
[ 12.591793] bd60: eebf7a00 2e7deb45 ec3abe00 00000005 eebf7a00 00000005 00010000 eebf7a3c
[ 12.599966] bd80: 00000030 c0110929 2e7deb45 c0110b5f 00000000 00000000 00000000 00000000
[ 12.608140] bda0: 00000000 00000000 00000000 00000000 00000000 c0f0ac84 00000005 2e7deb45
[ 12.616314] bdc0: c0f0acd4 ec3abe00 ec3aa000 eebf7a3c 00000015 c0110c73 00000000 00000000
[ 12.624488] bde0: 00000000 00000000 c024320a 000f01b3 ffffffff ec3abe34 00000015 c0101a53
[ 12.632662] be00: ef025840 000000d4 00000001 00000b45 00000b45 ec3abe50 2e7de000 000f0113
[ 12.640837] be20: 00000015 ee81cea0 eebf7a3c 00000015 ffffe000 ec3abe50 c021d537 c024320a
[ 12.649011] be40: 000f01b3 ffffffff 00000051 bf000000 b6f18000 ee81cea0 c0f04d48 000f0113
[ 12.657186] be60: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 12.665359] be80: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 12.673533] bea0: 00000000 00000000 00000000 bf6c1ed8 00000000 ec3abf48 ef37a700 eebf7a00
[ 12.681707] bec0: b6f182a8 00000817 ee81cea0 eebf7a3c 00000015 c0110a05 00000000 00000000
[ 12.689881] bee0: 00000000 00000000 00000000 00000800 00000000 00000000 00000000 c0f0ac84
[ 12.698055] bf00: 00000817 b6f182a8 c0f0acf4 ec3abf48 ec3aa000 00000000 00000000 c0110c73
[ 12.706229] bf20: 00000000 00000000 00000000 00000000 c0919250 800f0033 ffffffff ec3abf7c
[ 12.714403] bf40: 00000000 c0101a53 b6f182a8 beffffff 0000016c 00000055 ec3aa000 b6f182a8
[ 12.722577] bf60: 00000051 ec3abf98 00000000 00000000 00000000 00000000 f7f182ab ec3abf98
[ 12.730751] bf80: c013c4e9 c0919250 800f0033 ffffffff 00000055 bf000000 ffffffff 00000000
[ 12.738924] bfa0: 00000000 00000000 00000000 c01010ed 00000000 00000000 00000000 00000000
[ 12.747098] bfc0: b6f182a8 be8025c8 00000000 00000078 00000000 b6c22000 b6f18240 be8025e4
[ 12.755273] bfe0: 00000078 be8025c0 b6ba94ef b6b4e6f6 20010030 01200011 00000000 00000000
[ 12.763456] [<c021b5ea>] (zap_pte_range) from [<c021be09>] (unmap_page_range+0x7d/0x14c)
[ 12.771547] [<c021be09>] (unmap_page_range) from [<c021bfed>] (unmap_vmas+0x39/0x44)
[ 12.779289] [<c021bfed>] (unmap_vmas) from [<c0220995>] (exit_mmap+0x7d/0xf4)
[ 12.786426] [<c0220995>] (exit_mmap) from [<c0118ca3>] (mmput+0x43/0xcc)
[ 12.793126] [<c0118ca3>] (mmput) from [<c011f011>] (do_exit+0x359/0x8a0)
[ 12.799825] [<c011f011>] (do_exit) from [<c010a3bb>] (die+0x26b/0x274)
[ 12.806351] [<c010a3bb>] (die) from [<c0110929>] (__do_kernel_fault.part.0+0x69/0x74)
[ 12.814180] [<c0110929>] (__do_kernel_fault.part.0) from [<c0110b5f>] (do_page_fault+0x22b/0x22c)
[ 12.823048] [<c0110b5f>] (do_page_fault) from [<c0110c73>] (do_DataAbort+0x33/0x90)
[ 12.830703] [<c0110c73>] (do_DataAbort) from [<c0101a53>] (__dabt_svc+0x53/0x80)
[ 12.838092] Exception stack(0xec3abe00 to 0xec3abe48)
[ 12.843142] be00: ef025840 000000d4 00000001 00000b45 00000b45 ec3abe50 2e7de000 000f0113
[ 12.851316] be20: 00000015 ee81cea0 eebf7a3c 00000015 ffffe000 ec3abe50 c021d537 c024320a
[ 12.859487] be40: 000f01b3 ffffffff
[ 12.862980] [<c0101a53>] (__dabt_svc) from [<c024320a>] (__count_memcg_events.part.14+0x1a/0xa4)
[ 12.871766] [<c024320a>] (__count_memcg_events.part.14) from [<c021d537>] (handle_mm_fault+0x63/0x904)
[ 12.881069] [<c021d537>] (handle_mm_fault) from [<c0110a05>] (do_page_fault+0xd1/0x22c)
[ 12.889070] [<c0110a05>] (do_page_fault) from [<c0110c73>] (do_DataAbort+0x33/0x90)
[ 12.896724] [<c0110c73>] (do_DataAbort) from [<c0101a53>] (__dabt_svc+0x53/0x80)
[ 12.904114] Exception stack(0xec3abf48 to 0xec3abf90)
[ 12.909163] bf40: b6f182a8 beffffff 0000016c 00000055 ec3aa000 b6f182a8
[ 12.917337] bf60: 00000051 ec3abf98 00000000 00000000 00000000 00000000 f7f182ab ec3abf98
[ 12.925509] bf80: c013c4e9 c0919250 800f0033 ffffffff
[ 12.930564] [<c0101a53>] (__dabt_svc) from [<c0919250>] (__put_user_4+0x14/0x1c)
[ 12.937961] Code: 463c f000 8145 46a8 (f855) 6b04
[ 12.942859] ---[ end trace c90c4191abba8beb ]---
[ 12.947493] Fixing recursive fault but reboot is needed!
[ 12.969274] Internal error: Oops - undefined instruction: 0 [#5] SMP THUMB2
[ 12.976289] Modules linked in: sun8i_thermal uio_pdrv_genirq uio cpufreq_dt ip_tables x_tables pwrseq_simple
[ 12.986143] CPU: 1 PID: 330 Comm: systemd-udevd Tainted: G D 5.3.13-sunxi #19.11.3
[ 12.995008] Hardware name: Allwinner sun8i Family
[ 12.999723] PC is at __mod_zone_page_state+0x74/0x84
[ 13.004687] LR is at get_page_from_freelist+0x705/0xcbc
[ 13.009908] pc : [<c020c390>] lr : [<c022ae2d>] psr: 400601b3
[ 13.016170] sp : ec2dfc98 ip : fffffff9 fp : 00000000
[ 13.021390] r10: c0fedc08 r9 : c0fedc08 r8 : 00000024
[ 13.026610] r7 : 2e7f2000 r6 : ec2dfc98 r5 : 00000000 r4 : c0ec5059
[ 13.033131] r3 : c0ec5059 r2 : 00000000 r1 : 0003a612 r0 : 00000000
[ 13.039655] Flags: nZcv IRQs off FIQs on Mode SVC_32 ISA Thumb Segment none
[ 13.047047] Control: 50c5387d Table: 6b9e006a DAC: 00000051
[ 13.052789] Process systemd-udevd (pid: 330, stack limit = 0x(ptrval))
[ 13.059311] Stack: (0xec2dfc98 to 0xec2e0000)
[ 13.063667] fc80: 00000001 00000008
[ 13.071842] fca0: efe82ee4 c0fedb80 ffffe000 00000049 00000000 ec2dfdf0 00000281 c0fee280
[ 13.080016] fcc0: ef6b7034 c0ec5034 2e7f2000 00000007 ef6b7048 20060113 00000002 fffffff9
[ 13.088190] fce0: 00000088 3f012400 00000000 ffffe000 c0f04d68 00000014 c0ec0078 00100cca
[ 13.096365] fd00: b6db6db7 00000001 c0f04d48 00000000 00000098 000000a0 00000080 ffffffff
[ 13.104539] fd20: ee828d00 c0ff4838 3f0123e0 00000000 c0eb63e4 bf6c1ed8 ee828080 00000000
[ 13.112713] fd40: 00000281 00000002 00000001 c0f04d48 75c395df 00000000 00000055 c022b98f
[ 13.120888] fd60: c092b003 ee8283a4 c0a02090 c0a02090 ee828000 ec2dfd88 ef6b36c0 c0f051f8
[ 13.129062] fd80: ee82918c c013ae2b 00100cca c0145ed7 efe87a68 00100cca c0f04d48 ee828080
[ 13.137235] fda0: ef6b3700 00015ee9 ee828d00 c0245e5b c0f0523c ec2dfdc8 00000004 ef6b3700
[ 13.145410] fdc0: ed099a80 c0f04d48 00000000 ef6b3700 ed099a80 00000000 00000000 c0145e2b
[ 13.153584] fde0: 00000004 c0f0e56c c0f0e56c 00000008 c0fee280 00000000 c0fee280 00000001
[ 13.161758] fe00: 00000002 00000000 ef025800 00000000 ed03e1e0 c0f04d48 75c4a75f c02466a1
[ 13.169932] fe20: efe87a68 ed03e1e0 c0f04d48 bf6c1ed8 763357df efe87804 ec2dfedc ed2dc9c0
[ 13.178106] fe40: ed2dc9c0 c0f04d48 75c395df eebf6800 00000055 c021a76b 00000000 c07982e9
[ 13.186279] fe60: 00000000 c10337c0 ffeee000 c10337c0 ef025800 bf6c1ed8 00000000 ec2dfedc
[ 13.194454] fe80: c0f04d48 ed2dc9c0 00000000 00000024 75c395df eebf683c 00000055 c021c70d
[ 13.202627] fea0: 00000000 efeb9f7c 00000002 bf6c1ed8 df000000 c0f08bc4 c0f04d48 00000040
[ 13.210802] fec0: 00000024 c021da05 ef6b36c0 c10060c0 ef1d3e00 c013ae2b ed099a00 ed2dc9c0
[ 13.218977] fee0: 00000055 00000cc0 000b6e65 b6e65000 eb9e2db8 eb9e2db8 75c395df 00000000
[ 13.227150] ff00: 00000000 efe87804 ffeee194 efeb9f90 00000000 bf6c1ed8 ed099a00 ec2dffb0
[ 13.235326] ff20: ee828000 eebf6800 b6e65060 0000080f ed2dc9c0 eebf683c 00000055 c0110a05
[ 13.243499] ff40: 00000000 c0f04d48 b6f84318 bf6c1ed8 00000078 00000800 00000000 00000078
[ 13.251673] ff60: beb0bfa4 c0f0ac84 0000080f b6e65060 c0f0ad74 ec2dffb0 b6e63000 b6f842b0
[ 13.259847] ff80: beb0bfa4 c0110c73 00000000 00000000 b6f84318 c010120b b6dea5a2 60060030
[ 13.268021] ffa0: ffffffff 50c5387d 50c5387d c0101e4f 00000002 b6e65060 00000002 b6e6504c
[ 13.276195] ffc0: 00000176 beb0bf88 00000001 beb0bf98 00000000 b6e63000 b6f842b0 beb0bfa4
[ 13.284370] ffe0: 00000078 beb0bf88 00000002 b6dea5a2 60060030 ffffffff 00000000 00000000
[ 13.292555] [<c020c390>] (__mod_zone_page_state) from [<c022ae2d>] (get_page_from_freelist+0x705/0xcbc)
[ 13.301948] [<c022ae2d>] (get_page_from_freelist) from [<c022b98f>] (__alloc_pages_nodemask+0xc3/0xc04)
[ 13.311341] [<c022b98f>] (__alloc_pages_nodemask) from [<c021a76b>] (wp_page_copy+0x53/0x430)
[ 13.319865] [<c021a76b>] (wp_page_copy) from [<c021c70d>] (do_wp_page+0x91/0x4ec)
[ 13.327349] [<c021c70d>] (do_wp_page) from [<c021da05>] (handle_mm_fault+0x531/0x904)
[ 13.335180] [<c021da05>] (handle_mm_fault) from [<c0110a05>] (do_page_fault+0xd1/0x22c)
[ 13.343184] [<c0110a05>] (do_page_fault) from [<c0110c73>] (do_DataAbort+0x33/0x90)
[ 13.350840] [<c0110c73>] (do_DataAbort) from [<c0101e4f>] (__dabt_usr+0x4f/0x60)
[ 13.358230] Exception stack(0xec2dffb0 to 0xec2dfff8)
[ 13.363278] ffa0: 00000002 b6e65060 00000002 b6e6504c
[ 13.371452] ffc0: 00000176 beb0bf88 00000001 beb0bf98 00000000 b6e63000 b6f842b0 beb0bfa4
[ 13.379624] ffe0: 00000078 beb0bf88 00000002 b6dea5a2 60060030 ffffffff
[ 13.386238] Code: d1f7 2200 466e 4623 (ee5d) 1f90
[ 13.391028] ---[ end trace c90c4191abba8bec ]---Also a problem is to update the image Armbian_5.41_Sunvell-r69_Debian_stretch_next_4.14.34.img.zip,
because while updating its reaches armbian v5.92 and kernel 4.19.x and after reboot is will dies very quick in u-boot
So I did freeze the kernel in armbian-config at 4.14.34.
Had to remove armbian-stretch = /etc/apt/sources.d/armbian.list and leave only the content of /etc/apt/sources.list
Does anyone got a idea, what changed after Kernel 4.14 (no more .fex? only dtb?) or newer u-boot
Has anyone (with the red PCB v1.3) got a newer release running on the R69?
-
1 hour ago, alterfritz said:
When I run ./compile I can not see any rda8810... guess it is not that easy...
No it isnt that easy
You could use of my old images (when the i96/2G-iot was in the armbian-build-system):
https://drive.google.com/drive/folders/18r98nniuPmGMx2puxQleT9jtRWK03_VSor try to use build-root from
https://github.com/txurtxil/broot2g
Maybe the following thread will bring you some alternatives: -
@err0r with the armbian-build-system https://docs.armbian.com/Developer-Guide_Build-Preparation/
I did compile for my M2Berry
____ ____ _ __ __ ____ ____ | __ )| _ \(_) | \/ |___ \| __ ) | _ \| |_) | | | |\/| | __) | _ \ | |_) | __/| | | | | |/ __/| |_) | |____/|_| |_| |_| |_|_____|____/ Welcome to Armbian Buster with Linux 5.3.9-sunxi package bsp-kernel[19.11.3] u-boot[19.11.3] dtb[19.11.3] firmware[19.11.3] config[19.11.3] branch[dev]
I copied /build/config/boards/bananapim2ultra.csc and edited it to /build/config/boards/bananapim2berry.csc:
# V40 quad core 1Gb SoC Wifi BOARD_NAME="Banana Pi M2B" BOARDFAMILY="sun8i" BOOTCONFIG="bananapi_m2_berry_defconfig" OVERLAY_PREFIX="" KERNEL_TARGET="current,dev"
USB, Ethernet, SDcard does work - analog-Audio doesnt and htop/armbian-config doenst show
CPU-Temperature or Mhz.
But it seems to be stable (over night and today)
Red and Green LED is controlable (Berry hasnt the blue like the Ultra)
But you could also compile as Ultra - the image also runs on the Berry and showing the correct 1GB of Ram
(2GB on the Ultra)I did set up manually a small SAMBA-server, because I didnt like the Web-Interface of OMV.
Samba is serving some files from a USB-Stick to my other SBCs at 11.8MB/sec
(connected via 100MBit Ethernet)
-
Its not an Orange Pi Zero - these are NanoPi devices.
The small (red) one is a 32Bit NanoPi Neo (H3/512MB) and the blue one is the 64Bit NanoPi Neo2 LTS (H5/1GB Ram) - see:
https://www.cnx-software.com/2018/06/21/firewalla-tiny-firewall-nanopi-neo/
-
On 8/23/2019 at 8:21 PM, TRS-80 said:
For now I am going to pull trigger on (1-2) ODROID-XU4
Did you read/consider also the Odroid HC1/HC2?
They look - for me - also good for cpu and RAM and some ports:https://www.hardkernel.com/shop/odroid-hc1-home-cloud-one/
https://www.youtube.com/watch?time_continue=1&v=AtHzhtkxIc8
-
5 hours ago, sadnblueish said:
Changing CPU governor also definitely crashes the system. just to clarify no issues on power input. I also ran "stress" test to generate 100% load, it crashes instantly. If this is not known, happy to provide other details if required.
on nanoPi systems where such problems when using higer cpu-frequencys without installing the right voltage-regulator.
Ok your system wouldnt have that special problem, but how about lowering (for test purposes) the max. cpu-frequency to a max of about 1Ghz (1008000 Mhz on a NanoPi). Which governor is working? ondemand? Did you try conservative while the system does react unstable? -
2 hours ago, guidol said:
Old device New 0x80 i2c@1f02400 0x7f <== here I was WRONG!
in the old working and the new non-working is i2c@1f02400 status = "disabled" - the phandle was/is used for
simple-audio-card,mclk-fsYES! - got it
The 0x80 in
simple-audio-card,mclk-fs = < 0x80 >;
isnt a phandle to convert - its a VALUE! (when I only could better read .dts-files
)
The error code
[ 446.975450] sun4i-i2s 1c22c00.dai: Unsupported oversample rate: 127 [ 446.975465] sun4i-i2s 1c22c00.dai: ASoC: can't set 1c22c00.dai hw params: -22
did it tell me, because hex 0x7f is 127 (unsupportted oversample rate, because it starts to be supported at 128) and hex 0x80 is 128
Now that changed back to 0x80 and my new .dts/.dtb (7nd version) is working like the older working/fixed .dts/.dtb
sun50i-a64-nanopi-a64_fixed7nd.dts sun50i-a64-nanopi-a64.dtb_7nd
-
3 hours ago, kevinplatt said:
Doing a git diff on the two files show that the phandles have changed for various locations which might have caused the devices not to be addressed well.
I'll try looking at upstream dts changes. And I'll report back once I am able to build images for my nanopi-a64s.
@kevinplatt I already - while editing manually - did try to "rearange the phandles" / "finding the setting for the new phandle names" of the sound-scope without creating doubles:
Old device New 0x0d /sound/simple-audio-card,cpu 0x0d 0x80 i2c@1f02400 0x7f 0x0e codec-analog@1f015c0 0x0e 0x46 sound 0x46 0x0f dai@1c22c00 0x0f 0x10 codec@1c22e00 0x10 0x47 /sound/simple-audio-card,codec 0xab (newly created because 0x47 was used by thermal) 0x3d eldo1 0x95
in the old working and the new non-working is i2c@1f02400 status = "disabled" - the phandle was/is used for
simple-audio-card,mclk-fs -
On 9/15/2019 at 2:09 AM, kevinplatt said:
Here is my patch file I add to <armbian-build-path>/patch/kernel/sunxi-dev/
I named it xxx-xxx-nanopi-a64-fix-usb-and-audio.patch so that it would be executed last on the patching stage of the build.@kevinplatt In the last versions of the armbian-build-system the original .dts seems to be changed and the patch doenst work anymore
[ warn ] * [l][c] xxx-xxx-nanopi-a64-fix-usb-and-audio.patch [ failed ]
I did try to manually patch the actual .dts
USB is working (the easy part)
sound for analog & hdmi does show up via aplay -l
aplay -l **** List of PLAYBACK Hardware Devices **** card 0: sun50ia64audio [sun50i-a64-audio], device 0: 1c22c00.dai-sun8i sun8i-0 [1c22c00.dai-sun8i sun8i-0] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: allwinnerhdmi [allwinner,hdmi], device 0: 1c22800.i2s-i2s-hifi i2s-hifi-0 [1c22800.i2s-i2s-hifi i2s-hifi-0] Subdevices: 1/1 Subdevice #0: subdevice #0
BUT I do get a error-message when I try to use the analog audio:
mpg123 -v -b 512 -a hw:0,0 -@ ./MP3_SAW_80s [src/libout123/modules/alsa.c:129] error: initialize_device(): cannot set hw params main: [src/mpg123.c:309] error: out123 error 7: failed to open device dmesg -w : [ 446.975450] sun4i-i2s 1c22c00.dai: Unsupported oversample rate: 127 [ 446.975465] sun4i-i2s 1c22c00.dai: ASoC: can't set 1c22c00.dai hw params: -22
when I do use the old fixed .dtb it does work also on this kernel.
I will attach my manually edited .dts-version, may you (or anyone) can have a look and find what I have overseen?
NEW_nonworking_sun50i-a64-nanopi-a64_fixed5nd.dts OLD_working_sun50i-a64-nanopi-a64_fixed_usb_audio.dts
-
for compiling a new NanoPi A64 image with the actual naming conventions of armbian 19.11.yy I had to change the board-conf file
./build/config/boards/nanopia64.conf
# A64 quad core 1GB RAM SoC GBE BOARD_NAME="NanoPi-A64" BOARDFAMILY="sun50iw1" BOOTCONFIG="nanopi_a64_defconfig" MODULES="sunxi_codec sunxi_i2s sunxi_sndcodec 8723bs" KERNEL_TARGET="legacy,current,dev" FULL_DESKTOP="yes"
Because of the USB/Audio-patch I did set my .dtb on hold in version 5.99, so that the actual config of packages looks like
_ _ ____ _ _ __ _ _ | \ | | _ \(_) / \ / /_ | || | | \| | |_) | |_____ / _ \| '_ \| || |_ | |\ | __/| |_____/ ___ \ (_) |__ _| |_| \_|_| |_| /_/ \_\___/ |_| Welcome to Debian Buster with Armbian Linux 5.3.9-sunxi64 package bsp-kernel[19.11.3] u-boot[19.11.3] dtb[5.99] firmware[19.11.3] config[19.11.3] branch[dev]
Info defconfig:
./build/cache/sources/u-boot/v2019.04/configs/nanopi_a64_defconfig -
2 hours ago, Igor said:
DEV = development. Currently there is none or its identical to CURRENT ... but later DEV will some time be 5.4.y. ... until CURRENT becomes DEV againis there a way to build a "CURRENT" (19.11.3) armbian-image with the armbian-build-system?this mean maybe special options to ./comspile.sh ?
Or when will the armbian-build-system create as default the CURRENT version e.g. 19.11.3 ?OK, did found it
Did got/use a bad .conf
-
we "should" switch after apt update & upgrade inside armbian-config via system => other to the new kernel (legacy or current) - but after apt update & upgrade I was on
linux-image-dev-meson64 (19.11.3)
and after armian-config now on
linux-image-current-meson64 (19.11.3)
to what does current match? next, mainline, dev (,legacy - not...) or whats the difference between a dev and a current 19.11.3 image? dev was - for me - the most current.
BTW: My package-info line does work with 19.11.3
___ _ _ _ ____ ____ / _ \ __| |_ __ ___ (_) __| | / ___|___ \ | | | |/ _` | '__/ _ \| |/ _` | | | __) | | |_| | (_| | | | (_) | | (_| | | |___ / __/ \___/ \__,_|_| \___/|_|\__,_| \____|_____| Welcome to Armbian Buster with Linux 5.3.11-meson64 package bsp-kernel[19.11.3] u-boot[19.11.3] dtb[19.11.3] firmware[19.11.3] config[19.11.3] branch[current]
-
read here about the new names:
Will the NPi R1S on with the R1 image?
in Off-topic
Posted
maybe you could set the cpu governor in
armbian-config =>> system =>> cpu to max of 1008000 Hz and conservative governor
and then take a look if it will overheat.
whats acutal the max cpu value?