google-coral / edgetpu

Coral issue tracker (and legacy Edge TPU API source)
https://coral.ai
Apache License 2.0
430 stars 125 forks source link

Edge tpu m.2 not working #42

Closed Nishanth009 closed 4 years ago

Nishanth009 commented 4 years ago

Followed all instructions as per coral tpu getting started web page, I am using PCIe m.2 tpu

ValueError: Failed to load delegate from libedgetpu.so.1 while running the inference code(classify image.py) example

ls /dev/apex_0 returns nothing

I am using RockPi 4b rk3399.

Any idea? Thanks

Namburger commented 4 years ago

@Nishanth009 did you run into this issue while installing the gasket-dkms package? Can you show output of:

$ uname -a
$ dpkg -l | grep gasket
$ modinfo gasket
$ modinfo apex
Nishanth009 commented 4 years ago

Hi, this is what i got

uname -a

Linux localhost 4.4.154-104-rockchip-g3037f71a0de7 #1 SMP Tue Jan 7 10:19:49 UTC 2020 aarch64 aarch64 aarch64 GNU/Linux

dpkg -l | grep gasket

ii gasket-dkms 1.0-10 all DKMS source for the gasket driver

modinfo gasket

modinfo: ERROR: Module gasket not found.

modinfo apex

modinfo: ERROR: Module apex not found.

Nishanth009 commented 4 years ago

nano /var/lib/dkms/gasket/1.0/build/make.log

DKMS make.log for gasket-1.0 for kernel 4.4.154-104-rockchip-g3037f71a0de7 (aarch64) Sat Jan 25 12:07:52 IST 2020 make: Entering directory '/usr/src/linux-headers-4.4.154-104-rockchip-g3037f71a0de7' LD /var/lib/dkms/gasket/1.0/build/built-in.o CC [M] /var/lib/dkms/gasket/1.0/build/gasket_core.o CC [M] /var/lib/dkms/gasket/1.0/build/gasket_ioctl.o CC [M] /var/lib/dkms/gasket/1.0/build/gasket_sysfs.o CC [M] /var/lib/dkms/gasket/1.0/build/gasket_interrupt.o CC [M] /var/lib/dkms/gasket/1.0/build/gasket_page_table.o CC [M] /var/lib/dkms/gasket/1.0/build/apex_driver.o /bin/sh: 1: ./scripts/recordmcount: Exec format error scripts/Makefile.build:277: recipe for target '/var/lib/dkms/gasket/1.0/build/gasket_ioctl.o' failed make[1]: [/var/lib/dkms/gasket/1.0/build/gasket_ioctl.o] Error 2 make[1]: Waiting for unfinished jobs.... /bin/sh: 1: ./scripts/recordmcount: Exec format error scripts/Makefile.build:277: recipe for target '/var/lib/dkms/gasket/1.0/build/gasket_sysfs.o' failed make[1]: [/var/lib/dkms/gasket/1.0/build/gasket_sysfs.o] Error 2 /bin/sh: 1: ./scripts/recordmcount: Exec format error scripts/Makefile.build:277: recipe for target '/var/lib/dkms/gasket/1.0/build/gasket_interrupt.o' failed make[1]: [/var/lib/dkms/gasket/1.0/build/gasket_interrupt.o] Error 2 /bin/sh: 1: ./scripts/recordmcount: Exec format error scripts/Makefile.build:277: recipe for target '/var/lib/dkms/gasket/1.0/build/gasket_page_table.o' failed make[1]: [/var/lib/dkms/gasket/1.0/build/gasket_page_table.o] Error 2 /bin/sh: 1: ./scripts/recordmcount: Exec format error scripts/Makefile.build:277: recipe for target '/var/lib/dkms/gasket/1.0/build/apex_driver.o' failed make[1]: [/var/lib/dkms/gasket/1.0/build/apex_driver.o] Error 2 /bin/sh: 1: ./scripts/recordmcount: Exec format error scripts/Makefile.build:277: recipe for target '/var/lib/dkms/gasket/1.0/build/gasket_core.o' failed make[1]: [/var/lib/dkms/gasket/1.0/build/gasket_core.o] Error 2 Makefile:1474: recipe for target 'module/var/lib/dkms/gasket/1.0/build' failed make: [module/var/lib/dkms/gasket/1.0/build] Error 2

Nishanth009 commented 4 years ago

file /usr/src/linux-headers-4.4.154-104-rockchip-g3037f71a0de7/scripts/recordmcount

/usr/src/linux-headers-4.4.154-104-rockchip-g3037f71a0de7/scripts/recordmcount: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=0c0026551b4441d0dbfeba03e5a30477195cd988, not stripped

Namburger commented 4 years ago

Hi @Nishanth009 Our Apex/gasket module depends on your linux-headers package. The issue is caused by the linux-headers package from the RockPi 4 being compiled for the wrong architect. I suggest trying this out to fix the package: https://forum.radxa.com/t/dkms-building-error/307

Nishanth009 commented 4 years ago

Thanks.It worked after making these changes

sudo -i apt-get install libssl-dev build-essential -y export HEADER_DIR=/usr/src/linux-headers-$(uname -r) find “$HEADER_DIR/scripts” -type f | while read i; do if file -b $i | egrep -q “^ELF.*x86-64”; then rm “$i”; fi; done cd $HEADER_DIR/scripts gcc mkkrnlimg.c -o "$HEADER_DIR/scripts/mkkrnlimg" gcc kallsyms.c -o "$HEADER_DIR/scripts/kallsyms" gcc pnmtologo.c -o "$HEADER_DIR/scripts/pnmtologo" gcc conmakehash.c -o "$HEADER_DIR/scripts/conmakehash" gcc resource_tool.c -o "$HEADER_DIR/scripts/resource_tool" gcc ./basic/bin2c.c -o "$HEADER_DIR/scripts/basic/bin2c" gcc recordmcount.c -o "$HEADER_DIR/scripts/recordmcount" gcc -I../tools/include sortextable.c -o "$HEADER_DIR/scripts/sortextable" gcc unifdef.c -o "$HEADER_DIR/scripts/unifdef" gcc ./basic/fixdep.c -o "$HEADER_DIR/scripts/basic/fixdep" gcc extract-cert.c -o "$HEADER_DIR/scripts/extract-cert" -lssl -lcrypto gcc ./mod/modpost.c ./mod/file2alias.c ./mod/sumversion.c -o "$HEADER_DIR/scripts/mod/modpost" gcc ./mod/mk_elfconfig.c -o "$HEADER_DIR/scripts/mod/mk_elfconfig" gcc -I../include asn1_compiler.c -o "$HEADER_DIR/scripts/asn1_compiler"

ln -f ./genksyms/parse.tab.c_shipped ./genksyms/parse.tab.c; ln -f ./genksyms/parse.tab.h_shipped ./genksyms/parse.tab.h; ln -f ./genksyms/lex.lex.c_shipped ./genksyms/lex.lex.c; ln -f ./genksyms/keywords.hash.c_shipped ./genksyms/keywords.hash.c; gcc ./genksyms/genksyms.c ./genksyms/parse.tab.c ./genksyms/lex.lex.c -o "$HEADER_DIR/scripts/genksyms/genksyms"

sudo dpkg-reconfigure gasket-dkms

But after this the ubuntu mate desktop/lightdm stopped working.I can operate only using tty. When i blacklist "gasket" and "apex" gui comes back. Any idea why this is happening?

Namburger commented 4 years ago

Hummm that's odd, can you reshare these outputs now that it's installed:

$ dpkg -l | grep gasket
$ modinfo gasket
$ modinfo apex

Along with the full dmesg log when lightdm stoped working?

Nishanth009 commented 4 years ago

dpkg -l | grep gasket

ii gasket-dkms 1.0-10 all DKMS source for the gasket driver

rock@localhost:~$ modinfo gasket filename: /lib/modules/4.4.154-59-rockchip-g5e70f14/updates/dkms/gasket.ko author: Rob Springer rspringer@google.com license: GPL v2 version: 1.1.3 description: Google Gasket driver framework srcversion: 069B6D0F6AE12073F4EAF5D depends:
vermagic: 4.4.154-59-rockchip-g5e70f14 SMP mod_unload aarch64 parm: dma_bit_mask:int

rock@localhost:~$ modinfo apex filename: /lib/modules/4.4.154-59-rockchip-g5e70f14/updates/dkms/apex.ko author: John Joseph jnjoseph@google.com license: GPL v2 version: 1.1 description: Google Apex driver srcversion: 508A8A34D57322CEA287D17 alias: pci:v00001AC1d0000089Asvsdbcsci* depends: gasket vermagic: 4.4.154-59-rockchip-g5e70f14 SMP mod_unload aarch64 parm: allow_power_save:int parm: allow_sw_clock_gating:int parm: allow_hw_clock_gating:int parm: bypass_top_level:int parm: trip_point0_temp:int parm: trip_point1_temp:int parm: trip_point2_temp:int parm: hw_temp_warn1:int parm: hw_temp_warn2:int parm: hw_temp_warn1_en:bool parm: hw_temp_warn2_en:bool parm: temp_poll_interval:int

full dmesg log when lightdm stoped working:------

[ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 4.4.154-59-rockchip-g5e70f14 (jenkins@mrs-ella) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #4 SMP Fri Dec 14 20:55:41 CST 2018 [ 0.000000] Boot CPU: AArch64 Processor [410fd034] [ 0.000000] Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB [ 0.000000] On node 0 totalpages: 1015296 [ 0.000000] DMA zone: 15864 pages used for memmap [ 0.000000] DMA zone: 0 pages reserved [ 0.000000] DMA zone: 1015296 pages, LIFO batch:31 [ 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] PERCPU: Embedded 21 pages/cpu @ffffffc0f7ed6000 s46248 r8192 d31576 u86016 [ 0.000000] pcpu-alloc: s46248 r8192 d31576 u86016 alloc=21*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: enabling workaround for ARM erratum 845719 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 999432 [ 0.000000] Kernel command line: earlyprintk console=ttyFIQ0,1500000n8 rw init=/sbin/init rootfstype=ext4 rootwait root=PARTUUID=B921B045-1DF0-41C3-AF44-4C6F280D3FAE [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.000000] software IO TLB [mem 0xef400000-0xf3400000] (64MB) mapped at [ffffffc0ef400000-ffffffc0f33fffff] [ 0.000000] Memory: 3901900K/4061184K available (12094K kernel code, 1682K rwdata, 4480K rodata, 1216K init, 763K bss, 159284K reserved, 0K cma-reserved) [ 0.000000] Virtual kernel memory layout: modules : 0xffffff8000000000 - 0xffffff8008000000 ( 128 MB) vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000 ( 246 GB) .init : 0xffffff80090c0000 - 0xffffff80091f0000 ( 1216 KB) .text : 0xffffff8008080000 - 0xffffff8008c50000 ( 12096 KB) .rodata : 0xffffff8008c50000 - 0xffffff80090c0000 ( 4544 KB) .data : 0xffffff80091f0000 - 0xffffff8009394808 ( 1683 KB) vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000 ( 8 GB maximum) 0xffffffbdc0008000 - 0xffffffbdc3e00000 ( 61 MB actual) fixed : 0xffffffbffe7fb000 - 0xffffffbffec00000 ( 4116 KB) PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000 ( 16 MB) memory : 0xffffffc000200000 - 0xffffffc0f8000000 ( 3966 MB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 [ 0.000000] Hierarchical RCU implementation. [ 0.000000] Build-time adjustment of leaf fanout to 64. [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=6 [ 0.000000] NR_IRQS:64 nr_irqs:64 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] ITS: /interrupt-controller@fee00000/interrupt-controller@fee20000 [ 0.000000] ITS: allocated 65536 Devices @ef100000 (psz 64K, shr 0) [ 0.000000] ITS: using cache flushing for cmd queue [ 0.000000] GIC: using LPI property table @0x00000000ef090000 [ 0.000000] ITS: Allocated 1792 chunks for LPIs [ 0.000000] CPU0: found redistributor 0 region 0:0x00000000fef00000 [ 0.000000] CPU0: using LPI pending table @0x00000000ef0a0000 [ 0.000000] GIC: using cache flushing for LPI property table [ 0.000000] GIC: PPI partition interrupt-partition-0[0] { /cpus/cpu@0[0] /cpus/cpu@1[1] /cpus/cpu@2[2] /cpus/cpu@3[3] } [ 0.000000] GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@100[4] /cpus/cpu@101[5] } [ 0.000000] rockchip_mmc_get_phase: invalid clk rate [ 0.000000] rockchip_mmc_get_phase: invalid clk rate [ 0.000000] rockchip_mmc_get_phase: invalid clk rate [ 0.000000] rockchip_mmc_get_phase: invalid clk rate [ 0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop0_frac as parent of dclk_vop0, rate changes may not work [ 0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop1_frac as parent of dclk_vop1, rate changes may not work [ 0.000000] rockchip_cpuclk_pre_rate_change: limiting alt-divider 33 to 31 [ 0.000000] Architected 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.000006] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.001369] Console: colour dummy device 80x25 [ 0.001393] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.001406] pid_max: default: 32768 minimum: 301 [ 0.001526] Security Framework initialized [ 0.001537] Yama: becoming mindful. [ 0.001564] AppArmor: AppArmor disabled by boot time parameter [ 0.001620] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.001632] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.002404] Initializing cgroup subsys io [ 0.002423] Initializing cgroup subsys memory [ 0.002457] Initializing cgroup subsys devices [ 0.002472] Initializing cgroup subsys freezer [ 0.002485] Initializing cgroup subsys net_cls [ 0.002498] Initializing cgroup subsys perf_event [ 0.002512] Initializing cgroup subsys net_prio [ 0.002529] Initializing cgroup subsys hugetlb [ 0.002540] Initializing cgroup subsys pids [ 0.002582] ftrace: allocating 44775 entries in 175 pages [ 0.118622] sched-energy: Sched-energy-costs installed from DT [ 0.118640] CPU0: update cpu_capacity 401 [ 0.118702] ASID allocator initialised with 32768 entries [ 0.121870] PCI/MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created [ 0.122380] Platform MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created [ 0.123694] Detected VIPT I-cache on CPU1 [ 0.123728] CPU1: found redistributor 1 region 0:0x00000000fef20000 [ 0.123758] CPU1: using LPI pending table @0x00000000ef340000 [ 0.123804] CPU1: update cpu_capacity 401 [ 0.123808] CPU1: Booted secondary processor [410fd034] [ 0.124350] Detected VIPT I-cache on CPU2 [ 0.124371] CPU2: found redistributor 2 region 0:0x00000000fef40000 [ 0.124399] CPU2: using LPI pending table @0x00000000ef360000 [ 0.124426] CPU2: update cpu_capacity 401 [ 0.124429] CPU2: Booted secondary processor [410fd034] [ 0.124951] Detected VIPT I-cache on CPU3 [ 0.124970] CPU3: found redistributor 3 region 0:0x00000000fef60000 [ 0.124998] CPU3: using LPI pending table @0x00000000ef3c0000 [ 0.125024] CPU3: update cpu_capacity 401 [ 0.125028] CPU3: Booted secondary processor [410fd034] [ 0.125559] Detected PIPT I-cache on CPU4 [ 0.125585] CPU4: found redistributor 100 region 0:0x00000000fef80000 [ 0.125624] CPU4: using LPI pending table @0x00000000ef3f0000 [ 0.125662] CPU4: update cpu_capacity 1024 [ 0.125665] CPU4: Booted secondary processor [410fd082] [ 0.126226] Detected PIPT I-cache on CPU5 [ 0.126244] CPU5: found redistributor 101 region 0:0x00000000fefa0000 [ 0.126280] CPU5: using LPI pending table @0x00000000ee830000 [ 0.126307] CPU5: update cpu_capacity 1024 [ 0.126310] CPU5: Booted secondary processor [410fd082] [ 0.126398] Brought up 6 CPUs [ 0.126482] SMP: Total of 6 processors activated. [ 0.126492] CPU features: detected feature: GIC system register CPU interface [ 0.126504] CPU: All CPU(s) started at EL2 [ 0.126550] alternatives: patching kernel code [ 0.127971] devtmpfs: initialized [ 0.144405] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.144431] futex hash table entries: 2048 (order: 5, 131072 bytes) [ 0.144935] xor: measuring software checksum speed [ 0.181643] 8regs : 2855.000 MB/sec [ 0.221703] 8regs_prefetch: 2560.000 MB/sec [ 0.261765] 32regs : 3191.000 MB/sec [ 0.301825] 32regs_prefetch: 2845.000 MB/sec [ 0.301831] xor: using function: 32regs (3191.000 MB/sec) [ 0.301856] pinctrl core: initialized pinctrl subsystem [ 0.302087] regulator-dummy: no parameters [ 0.302645] NET: Registered protocol family 16 [ 0.310537] cpuidle: using governor ladder [ 0.318545] cpuidle: using governor menu [ 0.318571] Registered FIQ tty driver [ 0.318752] vdso: 2 pages (1 code @ ffffff8008c56000, 1 data @ ffffff80091f4000) [ 0.318784] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.318948] DMA: preallocated 256 KiB pool for atomic allocations [ 0.334172] gpiochip_add_data: registered GPIOs 0 to 31 on device: gpio0 [ 0.334249] gpiochip_add_data: registered GPIOs 32 to 63 on device: gpio1 [ 0.334325] gpiochip_add_data: registered GPIOs 64 to 95 on device: gpio2 [ 0.334400] gpiochip_add_data: registered GPIOs 96 to 127 on device: gpio3 [ 0.334474] gpiochip_add_data: registered GPIOs 128 to 159 on device: gpio4 [ 0.409806] console [ttyFIQ0] enabled [ 0.410343] Registered fiq debugger ttyFIQ0 [ 0.498249] raid6: int64x1 gen() 474 MB/s [ 0.566255] raid6: int64x1 xor() 419 MB/s [ 0.634449] raid6: int64x2 gen() 656 MB/s [ 0.702510] raid6: int64x2 xor() 595 MB/s [ 0.770632] raid6: int64x4 gen() 977 MB/s [ 0.838703] raid6: int64x4 xor() 669 MB/s [ 0.906813] raid6: int64x8 gen() 762 MB/s [ 0.974900] raid6: int64x8 xor() 627 MB/s [ 1.043020] raid6: neonx1 gen() 995 MB/s [ 1.111112] raid6: neonx1 xor() 671 MB/s [ 1.179234] raid6: neonx2 gen() 1324 MB/s [ 1.247303] raid6: neonx2 xor() 998 MB/s [ 1.315434] raid6: neonx4 gen() 1763 MB/s [ 1.383522] raid6: neonx4 xor() 1181 MB/s [ 1.451628] raid6: neonx8 gen() 1697 MB/s [ 1.519725] raid6: neonx8 xor() 1262 MB/s [ 1.520100] raid6: using algorithm neonx4 gen() 1763 MB/s [ 1.520578] raid6: .... xor() 1181 MB/s, rmw enabled [ 1.521027] raid6: using intx1 recovery algorithm [ 1.522343] of_get_named_gpiod_flags: parsed 'rockchip,power-ctrl' property of node '/rockchip-suspend[0]' - status (0) [ 1.522385] of_get_named_gpiod_flags: parsed 'rockchip,power-ctrl' property of node '/rockchip-suspend[1]' - status (0) [ 1.522625] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc1v8-s0[0]' [ 1.522647] vcc1v8_s0: 1800 mV [ 1.522823] reg-fixed-voltage vcc1v8-s0: vcc1v8_s0 supplying 1800000uV [ 1.522875] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc-sys[0]' [ 1.522890] vcc_sys: 5000 mV [ 1.523049] reg-fixed-voltage vcc-sys: vcc_sys supplying 5000000uV [ 1.523100] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc-phy-regulator[0]' [ 1.523116] vcc_phy: no parameters [ 1.523251] reg-fixed-voltage vcc-phy-regulator: vcc_phy supplying 0uV [ 1.523301] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc3v3-sys[0]' [ 1.523318] reg-fixed-voltage vcc3v3-sys: Looking up vin-supply from device tree [ 1.523368] vcc3v3_sys: supplied by vcc_sys [ 1.523746] vcc_sys: could not add device link regulator.4 err -2 [ 1.523786] vcc3v3_sys: 3300 mV [ 1.523929] reg-fixed-voltage vcc3v3-sys: vcc3v3_sys supplying 3300000uV [ 1.524088] of_get_named_gpiod_flags: parsed 'gpio' property of node '/vcc3v3-pcie-regulator[0]' - status (0) [ 1.524136] reg-fixed-voltage vcc3v3-pcie-regulator: Looking up vin-supply from device tree [ 1.524173] vcc3v3_pcie: supplied by vcc3v3_sys [ 1.524577] vcc3v3_sys: could not add device link regulator.5 err -2 [ 1.524611] vcc3v3_pcie: at 3300 mV [ 1.524770] reg-fixed-voltage vcc3v3-pcie-regulator: vcc3v3_pcie supplying 0uV [ 1.524901] of_get_named_gpiod_flags: parsed 'gpio' property of node '/vcc5v0-host-regulator[0]' - status (0) [ 1.524939] vcc5v0_host: no parameters [ 1.525107] reg-fixed-voltage vcc5v0-host-regulator: vcc5v0_host supplying 0uV [ 1.525228] of_get_named_gpiod_flags: parsed 'gpio' property of node '/vcc5v0-otg-regulator[0]' - status (0) [ 1.525269] vcc5v0_otg: no parameters [ 1.525424] reg-fixed-voltage vcc5v0-otg-regulator: vcc5v0_otg supplying 0uV [ 1.525993] iommu: Adding device ff650000.vpu_service to group 0 [ 1.526591] iommu: Adding device ff660000.rkvdec to group 1 [ 1.527174] iommu: Adding device ff8f0000.vop to group 2 [ 1.527716] iommu: Adding device ff900000.vop to group 3 [ 1.528263] iommu: Adding device ff910000.rkisp1 to group 4 [ 1.530274] SCSI subsystem initialized [ 1.530782] libata version 3.00 loaded. [ 1.530959] usbcore: registered new interface driver usbfs [ 1.531485] usbcore: registered new interface driver hub [ 1.532027] usbcore: registered new device driver usb [ 1.532557] media: Linux media interface: v0.10 [ 1.532983] Linux video capture interface: v2.00 [ 1.533473] pps_core: LinuxPPS API ver. 1 registered [ 1.533917] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it [ 1.534734] PTP clock support registered [ 1.536155] Advanced Linux Sound Architecture Driver Initialized. [ 1.537203] Bluetooth: Core ver 2.21 [ 1.537562] NET: Registered protocol family 31 [ 1.537960] Bluetooth: HCI device and connection manager initialized [ 1.538524] Bluetooth: HCI socket layer initialized [ 1.538960] Bluetooth: L2CAP socket layer initialized [ 1.539421] Bluetooth: SCO socket layer initialized [ 1.540229] NetLabel: Initializing [ 1.540535] NetLabel: domain hash size = 128 [ 1.540920] NetLabel: protocols = UNLABELED CIPSOv4 [ 1.541393] NetLabel: unlabeled traffic allowed by default [ 1.542532] clocksource: Switched to clocksource arch_sys_counter [ 1.606671] thermal thermal_zone1: power_allocator: sustainable_power will be estimated [ 1.607587] NET: Registered protocol family 2 [ 1.608413] TCP established hash table entries: 32768 (order: 6, 262144 bytes) [ 1.609310] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes) [ 1.610743] TCP: Hash tables configured (established 32768 bind 32768) [ 1.611432] UDP hash table entries: 2048 (order: 5, 196608 bytes) [ 1.612178] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes) [ 1.613163] NET: Registered protocol family 1 [ 1.613877] RPC: Registered named UNIX socket transport module. [ 1.614403] RPC: Registered udp transport module. [ 1.614848] RPC: Registered tcp transport module. [ 1.615268] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.616005] PCI: CLS 0 bytes, default 64 [ 1.616896] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.617696] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available [ 1.621513] audit: initializing netlink subsys (disabled) [ 1.622022] audit: type=2000 audit(1.540:1): initialized [ 1.622922] Initialise system trusted keyring [ 1.623624] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 1.631459] VFS: Disk quotas dquot_6.6.0 [ 1.631960] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.633968] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.635646] NFS: Registering the id_resolver key type [ 1.636111] Key type id_resolver registered [ 1.636486] Key type id_legacy registered [ 1.636915] fuse init (API version 7.23) [ 1.637982] JFS: nTxBlock = 8192, nTxLock = 65536 [ 1.644739] SGI XFS with ACLs, security attributes, realtime, no debug enabled [ 1.647503] Key type big_key registered [ 1.647902] TEE Core Framework initialization (ver 1:0.1) [ 1.648519] TEE armv7 Driver initialization [ 1.649318] tz_tee_probe: name="armv7sec", id=0, pdev_name="armv7sec.0" [ 1.649907] TEE core: Alloc the misc device "opteearmtz00" (id=0) [ 1.650651] TEE Core: Register the misc device "opteearmtz00" (id=0,minor=62) [ 1.655400] NET: Registered protocol family 38 [ 1.655827] Key type asymmetric registered [ 1.656197] Asymmetric key parser 'x509' registered [ 1.656817] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 1.657615] io scheduler noop registered [ 1.657974] io scheduler deadline registered (default) [ 1.658461] io scheduler cfq registered [ 1.659702] phy phy-ff770000.syscon:usb2-phy@e450.0: Looking up phy-supply from device tree [ 1.659806] vcc5v0_host: could not add device link phy-ff770000.syscon:usb2-phy@e450.0 err -2 [ 1.660120] phy phy-ff770000.syscon:usb2-phy@e450.1: Looking up phy-supply from device tree [ 1.660134] phy phy-ff770000.syscon:usb2-phy@e450.1: Looking up phy-supply property in node /syscon@ff770000/usb2-phy@e450/otg-port failed [ 1.660370] phy phy-ff770000.syscon:usb2-phy@e450.1: Looking up vbus-supply from device tree [ 1.660382] phy phy-ff770000.syscon:usb2-phy@e450.1: Looking up vbus-supply property in node /syscon@ff770000/usb2-phy@e450/otg-port failed [ 1.660396] phy phy-ff770000.syscon:usb2-phy@e450.1: Failed to get VBUS supply regulator [ 1.661852] phy phy-ff770000.syscon:usb2-phy@e460.2: Looking up phy-supply from device tree [ 1.661919] vcc5v0_host: could not add device link phy-ff770000.syscon:usb2-phy@e460.2 err -2 [ 1.662194] phy phy-ff770000.syscon:usb2-phy@e460.3: Looking up phy-supply from device tree [ 1.662206] phy phy-ff770000.syscon:usb2-phy@e460.3: Looking up phy-supply property in node /syscon@ff770000/usb2-phy@e460/otg-port failed [ 1.662423] phy phy-ff770000.syscon:usb2-phy@e460.3: Looking up vbus-supply from device tree [ 1.662433] phy phy-ff770000.syscon:usb2-phy@e460.3: Looking up vbus-supply property in node /syscon@ff770000/usb2-phy@e460/otg-port failed [ 1.662446] phy phy-ff770000.syscon:usb2-phy@e460.3: Failed to get VBUS supply regulator [ 1.664416] phy phy-ff770000.syscon:phy@f780.4: Looking up phy-supply from device tree [ 1.664428] phy phy-ff770000.syscon:phy@f780.4: Looking up phy-supply property in node /syscon@ff770000/phy@f780 failed [ 1.665191] phy phy-ff7c0000.phy.5: Looking up phy-supply from device tree [ 1.665201] phy phy-ff7c0000.phy.5: Looking up phy-supply property in node /phy@ff7c0000/dp-port failed [ 1.665297] phy phy-ff7c0000.phy.6: Looking up phy-supply from device tree [ 1.665307] phy phy-ff7c0000.phy.6: Looking up phy-supply property in node /phy@ff7c0000/usb3-port failed [ 1.665704] phy phy-ff800000.phy.7: Looking up phy-supply from device tree [ 1.665714] phy phy-ff800000.phy.7: Looking up phy-supply property in node /phy@ff800000/dp-port failed [ 1.665810] phy phy-ff800000.phy.8: Looking up phy-supply from device tree [ 1.665820] phy phy-ff800000.phy.8: Looking up phy-supply property in node /phy@ff800000/usb3-port failed [ 1.666160] phy phy-pcie-phy.9: Looking up phy-supply from device tree [ 1.666170] phy phy-pcie-phy.9: Looking up phy-supply property in node /pcie-phy failed [ 1.667654] rockchip-pcie f8000000.pcie: GPIO lookup for consumer ep [ 1.667664] rockchip-pcie f8000000.pcie: using device tree for GPIO lookup [ 1.667693] of_get_named_gpiod_flags: parsed 'ep-gpios' property of node '/pcie@f8000000[0]' - status (0) [ 1.667937] rockchip-pcie f8000000.pcie: Looking up vpcie3v3-supply from device tree [ 1.667948] rockchip-pcie f8000000.pcie: Looking up vpcie3v3-supply property in node /pcie@f8000000 failed [ 1.667962] rockchip-pcie f8000000.pcie: no vpcie3v3 regulator found [ 1.668525] rockchip-pcie f8000000.pcie: Looking up vpcie1v8-supply from device tree [ 1.668534] rockchip-pcie f8000000.pcie: Looking up vpcie1v8-supply property in node /pcie@f8000000 failed [ 1.668545] rockchip-pcie f8000000.pcie: no vpcie1v8 regulator found [ 1.669106] rockchip-pcie f8000000.pcie: Looking up vpcie0v9-supply from device tree [ 1.669115] rockchip-pcie f8000000.pcie: Looking up vpcie0v9-supply property in node /pcie@f8000000 failed [ 1.669125] rockchip-pcie f8000000.pcie: no vpcie0v9 regulator found [ 1.739720] PCI host bridge /pcie@f8000000 ranges: [ 1.740159] MEM 0xfa000000..0xfbdfffff -> 0xfa000000 [ 1.740620] IO 0xfbe00000..0xfbefffff -> 0xfbe00000 [ 1.741368] rockchip-pcie f8000000.pcie: PCI host bridge to bus 0000:00 [ 1.741956] pci_bus 0000:00: root bus resource [bus 00-1f] [ 1.742449] pci_bus 0000:00: root bus resource [mem 0xfa000000-0xfbdfffff] [ 1.743077] pci_bus 0000:00: root bus resource [io 0x0000-0xfffff] (bus address [0xfbe00000-0xfbefffff]) [ 1.743941] pci 0000:00:00.0: [1d87:0100] type 01 class 0x060400 [ 1.744046] pci 0000:00:00.0: supports D1 [ 1.744054] pci 0000:00:00.0: PME# supported from D0 D1 D3hot [ 1.744296] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 1.745115] pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-1f] (conflicts with (null) [bus 00-1f]) [ 1.745150] pci 0000:01:00.0: [1ac1:089a] type 00 class 0x0000ff [ 1.745223] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit pref] [ 1.745252] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x000fffff 64bit pref] [ 1.750551] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 1.750585] pci 0000:00:00.0: BAR 8: assigned [mem 0xfa000000-0xfa1fffff] [ 1.751183] pci 0000:00:00.0: PCI bridge to [bus 01] [ 1.751633] pci 0000:00:00.0: bridge window [mem 0xfa000000-0xfa1fffff] [ 1.752277] pcieport 0000:00:00.0: enabling device (0000 -> 0002) [ 1.753032] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt [ 1.753651] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt [ 1.754227] pcie_pme 0000:00:00.0:pcie01: service driver pcie_pme loaded [ 1.754336] aer 0000:00:00.0:pcie02: service driver aer loaded [ 1.755063] rk-vcodec ff650000.vpu_service: Looking up vcodec-supply from device tree [ 1.755074] rk-vcodec ff650000.vpu_service: Looking up vcodec-supply property in node /vpu_service@ff650000 failed [ 1.755088] rk-vcodec ff650000.vpu_service: no regulator for vcodec [ 1.755925] rk-vcodec ff650000.vpu_service: probe device [ 1.756603] rk-vcodec ff650000.vpu_service: drm allocator with mmu enabled [ 1.757773] rk-vcodec ff650000.vpu_service: could not find power_model node [ 1.758393] rk-vcodec ff650000.vpu_service: init success [ 1.759096] rk-vcodec ff660000.rkvdec: Looking up vcodec-supply from device tree [ 1.759108] rk-vcodec ff660000.rkvdec: Looking up vcodec-supply property in node /rkvdec@ff660000 failed [ 1.759123] rk-vcodec ff660000.rkvdec: no regulator for vcodec [ 1.760059] rk-vcodec ff660000.rkvdec: probe device [ 1.760684] rk-vcodec ff660000.rkvdec: drm allocator with mmu enabled [ 1.761643] rk-vcodec ff660000.rkvdec: could not find power_model node [ 1.762216] rk-vcodec ff660000.rkvdec: init success [ 1.764116] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-241330 [ 1.764785] dma-pl330 ff6d0000.dma-controller: DBUFF-32x8bytes Num_Chans-6 Num_Peri-12 Num_Events-12 [ 1.767075] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-241330 [ 1.767743] dma-pl330 ff6e0000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16 [ 1.768923] pwm-regulator vdd-log: GPIO lookup for consumer enable [ 1.768931] pwm-regulator vdd-log: using device tree for GPIO lookup [ 1.768942] of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/vdd-log[0]' [ 1.768950] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/vdd-log[0]' [ 1.768958] pwm-regulator vdd-log: using lookup tables for GPIO lookup [ 1.768966] pwm-regulator vdd-log: lookup for GPIO enable failed [ 1.768990] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 1.769000] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 1.769045] vdd_log: 800 <--> 1400 mV at 800 mV [ 1.769198] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 1.769209] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 1.769271] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 1.769280] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 1.769672] Serial: 8250/16550 driver, 5 ports, IRQ sharing disabled [ 1.772002] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 37, base_baud = 1500000) is a 16550A [ 1.773105] rockchip-pinctrl pinctrl: pin gpio4-19 already requested by fiq-debugger; cannot claim for ff1a0000.serial [ 1.774041] rockchip-pinctrl pinctrl: pin-147 (ff1a0000.serial) status -22 [ 1.774668] rockchip-pinctrl pinctrl: could not request pin 147 (gpio4-19) from group uart2c-xfer on device rockchip-pinctrl [ 1.775660] dw-apb-uart ff1a0000.serial: Error applying setting, reverse things back [ 1.776663] ff1a0000.serial: ttyS2 at MMIO 0xff1a0000 (irq = 38, base_baud = 1500000) is a 16550A [ 1.778095] ff370000.serial: ttyS4 at MMIO 0xff370000 (irq = 40, base_baud = 1500000) is a 16550A [ 1.779930] [drm] Initialized drm 1.1.0 20060810 [ 1.784123] [drm] Rockchip DRM driver version: v1.0.1 [ 1.784881] rockchip-drm display-subsystem: dmc is disabled [ 1.785654] rockchip-vop ff900000.vop: missing rockchip,grf property [ 1.786475] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffffff8008d18128) [ 1.787277] rockchip-vop ff8f0000.vop: missing rockchip,grf property [ 1.788015] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffffff8008d18128) [ 1.788958] i2c i2c-9: of_i2c: modalias failure on /hdmi@ff940000/ports [ 1.789550] dwhdmi-rockchip ff940000.hdmi: registered DesignWare HDMI I2C bus driver [ 1.790325] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY) [ 1.791874] rockchip-drm display-subsystem: bound ff940000.hdmi (ops 0xffffff8008d0e880) [ 1.792669] rockchip-drm display-subsystem: failed to bind ff968000.dsi (ops 0xffffff8008d0fe30): -517 [ 1.794084] rockchip-drm display-subsystem: master bind failed: -517 [ 1.795045] find panel: rockpi,tc358762 [ 1.795393] bridge-tc358762-dsi ff968000.dsi.0: Looking up power-supply from device tree [ 1.795404] bridge-tc358762-dsi ff968000.dsi.0: Looking up power-supply property in node /dsi@ff968000/panel@0 failed [ 1.795419] ff968000.dsi.0 supply power not found, using dummy regulator [ 1.796051] bridge-tc358762-dsi ff968000.dsi.0: GPIO lookup for consumer enable [ 1.796060] bridge-tc358762-dsi ff968000.dsi.0: using device tree for GPIO lookup [ 1.796070] of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/dsi@ff968000/panel@0[0]' [ 1.796078] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/dsi@ff968000/panel@0[0]' [ 1.796086] bridge-tc358762-dsi ff968000.dsi.0: using lookup tables for GPIO lookup [ 1.796094] bridge-tc358762-dsi ff968000.dsi.0: lookup for GPIO enable failed [ 1.796512] mali ff9a0000.gpu: Looking up mali-supply from device tree [ 1.796531] mali ff9a0000.gpu: Failed to get regulator [ 1.796988] mali ff9a0000.gpu: Power control initialization failed [ 1.797861] Unable to detect cache hierarchy for CPU 0 [ 1.799152] brd: module loaded [ 1.804691] loop: module loaded [ 1.805298] lkdtm: No crash points registered, enable through debugfs [ 1.808159] rk_gmac-dwmac fe300000.ethernet: Looking up phy-supply from device tree [ 1.808238] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input). [ 1.808861] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28). [ 1.809365] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11). [ 1.809883] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no). [ 1.810665] rk_gmac-dwmac fe300000.ethernet: cannot get clock clk_mac_speed [ 1.811284] rk_gmac-dwmac fe300000.ethernet: clock input from PHY [ 1.816828] rk_gmac-dwmac fe300000.ethernet: init for RGMII [ 1.817431] stmmac - user ID: 0x10, Synopsys ID: 0x35 [ 1.817875] Ring mode enabled [ 1.818146] DMA HW capability register supported [ 1.818555] Normal descriptors [ 1.818861] RX Checksum Offload Engine supported (type 2) [ 1.819349] TX Checksum insertion supported [ 1.819723] Wake-Up On Lan supported [ 1.820084] Enable RX Mitigation via HW Watchdog Timer [ 1.820654] of_get_named_gpiod_flags: parsed 'snps,reset-gpio' property of node '/ethernet@fe300000[0]' - status (0) [ 1.893763] libphy: stmmac: probed [ 1.894073] eth%d: PHY ID 001cc915 at 0 IRQ POLL (stmmac-0:00) active [ 1.894660] eth%d: PHY ID 001cc915 at 1 IRQ POLL (stmmac-0:01) [ 1.896483] Rockchip WiFi SYS interface (V1.00) ... [ 1.897000] usbcore: registered new interface driver cdc_ether [ 1.897546] usbcore: registered new interface driver rndis_host [ 1.903474] rockchip-dwc3 usb0: fail to get drvdata hcd [ 1.909196] rockchip-dwc3 usb1: fail to get drvdata hcd [ 1.910844] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.911428] ehci-pci: EHCI PCI platform driver [ 1.911881] ehci-platform: EHCI generic platform driver [ 1.916002] ehci-platform fe380000.usb: EHCI Host Controller [ 1.916687] ehci-platform fe380000.usb: new USB bus registered, assigned bus number 1 [ 1.917479] ehci-platform fe380000.usb: irq 28, io mem 0xfe380000 [ 1.926531] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00 [ 1.927239] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 1.927838] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.928480] usb usb1: Product: EHCI Host Controller [ 1.928915] usb usb1: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 ehci_hcd [ 1.929556] usb usb1: SerialNumber: fe380000.usb [ 1.930469] hub 1-0:1.0: USB hub found [ 1.930850] hub 1-0:1.0: 1 port detected [ 1.935122] ehci-platform fe3c0000.usb: EHCI Host Controller [ 1.935814] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus number 2 [ 1.936592] ehci-platform fe3c0000.usb: irq 30, io mem 0xfe3c0000 [ 1.946535] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00 [ 1.947219] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 [ 1.947818] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.948460] usb usb2: Product: EHCI Host Controller [ 1.948894] usb usb2: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 ehci_hcd [ 1.949535] usb usb2: SerialNumber: fe3c0000.usb [ 1.950410] hub 2-0:1.0: USB hub found [ 1.950791] hub 2-0:1.0: 1 port detected [ 1.951682] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.952244] ohci-platform: OHCI generic platform driver [ 1.953005] ohci-platform fe3a0000.usb: Generic Platform OHCI controller [ 1.953792] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus number 3 [ 1.954580] ohci-platform fe3a0000.usb: irq 29, io mem 0xfe3a0000 [ 2.014675] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001 [ 2.015274] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.015916] usb usb3: Product: Generic Platform OHCI controller [ 2.016441] usb usb3: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 ohci_hcd [ 2.017083] usb usb3: SerialNumber: fe3a0000.usb [ 2.018144] hub 3-0:1.0: USB hub found [ 2.018603] hub 3-0:1.0: 1 port detected [ 2.019924] ohci-platform fe3e0000.usb: Generic Platform OHCI controller [ 2.020813] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus number 4 [ 2.021629] ohci-platform fe3e0000.usb: irq 31, io mem 0xfe3e0000 [ 2.078719] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 [ 2.079328] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.079969] usb usb4: Product: Generic Platform OHCI controller [ 2.080495] usb usb4: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 ohci_hcd [ 2.081146] usb usb4: SerialNumber: fe3e0000.usb [ 2.082215] hub 4-0:1.0: USB hub found [ 2.082660] hub 4-0:1.0: 1 port detected [ 2.085262] usbcore: registered new interface driver iforce [ 2.085834] usbcore: registered new interface driver xpad [ 2.086732] usbcore: registered new interface driver usbtouchscreen [ 2.087698] .. rk pwm remotectl v1.1 init [ 2.088403] input: ff420030.pwm as /devices/platform/ff420030.pwm/input/input0 [ 2.090141] i2c /dev entries driver [ 2.091637] fan53555-regulator 0-0040: GPIO lookup for consumer vsel [ 2.091650] fan53555-regulator 0-0040: using device tree for GPIO lookup [ 2.091694] of_get_named_gpiod_flags: parsed 'vsel-gpios' property of node '/i2c@ff3c0000/syr827@40[0]' - status (0) [ 2.092137] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected! [ 2.092766] fan53555-regulator 0-0040: Looking up vin-supply from device tree [ 2.092849] fan53555-reg: supplied by vcc_sys [ 2.093242] vcc_sys: could not add device link regulator.9 err -2 [ 2.094421] vdd_cpu_b: 712 <--> 1500 mV at 825 mV [ 2.094894] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.094910] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.095233] fan53555-regulator 0-0041: GPIO lookup for consumer vsel [ 2.095244] fan53555-regulator 0-0041: using device tree for GPIO lookup [ 2.095283] of_get_named_gpiod_flags: parsed 'vsel-gpios' property of node '/i2c@ff3c0000/syr828@41[0]' - status (0) [ 2.095681] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected! [ 2.096296] fan53555-regulator 0-0041: Looking up vin-supply from device tree [ 2.096357] fan53555-reg: supplied by vcc_sys [ 2.096749] vcc_sys: could not add device link regulator.10 err -2 [ 2.098063] vdd_gpu: 712 <--> 1500 mV at 800 mV [ 2.098528] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.098544] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.099224] rk808 0-001b: Pmic Chip id: 0x0 [ 2.102390] rk808 0-001b: GPIO lookup for consumer dvs [ 2.102401] rk808 0-001b: using device tree for GPIO lookup [ 2.102415] of_get_named_gpiod_flags: can't parse 'dvs-gpios' property of node '/i2c@ff3c0000/pmic@1b[0]' [ 2.102427] of_get_named_gpiod_flags: can't parse 'dvs-gpio' property of node '/i2c@ff3c0000/pmic@1b[0]' [ 2.102437] rk808 0-001b: using lookup tables for GPIO lookup [ 2.102448] rk808 0-001b: lookup for GPIO dvs failed [ 2.102459] rk808-regulator rk808-regulator: there is no dvs0 gpio [ 2.103033] rk808 0-001b: GPIO lookup for consumer dvs [ 2.103043] rk808 0-001b: using device tree for GPIO lookup [ 2.103055] of_get_named_gpiod_flags: can't parse 'dvs-gpios' property of node '/i2c@ff3c0000/pmic@1b[1]' [ 2.103066] of_get_named_gpiod_flags: can't parse 'dvs-gpio' property of node '/i2c@ff3c0000/pmic@1b[1]' [ 2.103076] rk808 0-001b: using lookup tables for GPIO lookup [ 2.103086] rk808 0-001b: lookup for GPIO dvs failed [ 2.103097] rk808-regulator rk808-regulator: there is no dvs1 gpio [ 2.103686] rk808 0-001b: Looking up vcc1-supply from device tree [ 2.103765] DCDC_REG1: supplied by vcc_sys [ 2.104134] vcc_sys: could not add device link regulator.11 err -2 [ 2.104612] vdd_center: 750 <--> 1350 mV at 900 mV [ 2.104922] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.104938] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.104996] rk808 0-001b: Looking up vcc2-supply from device tree [ 2.105056] DCDC_REG2: supplied by vcc_sys [ 2.105425] vcc_sys: could not add device link regulator.12 err -2 [ 2.105738] vdd_cpu_l: 750 <--> 1350 mV at 850 mV [ 2.106028] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.106043] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.106096] rk808 0-001b: Looking up vcc3-supply from device tree [ 2.106146] DCDC_REG3: supplied by vcc_sys [ 2.106539] vcc_sys: could not add device link regulator.13 err -2 [ 2.106584] vcc_ddr: at 5000 mV [ 2.106824] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.106838] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.106899] rk808 0-001b: Looking up vcc4-supply from device tree [ 2.106950] DCDC_REG4: supplied by vcc_sys [ 2.107318] vcc_sys: could not add device link regulator.14 err -2 [ 2.107536] vcc_1v8: 1800 mV [ 2.107801] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.107815] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.107878] rk808 0-001b: Looking up vcc6-supply from device tree [ 2.107927] LDO_REG1: supplied by vcc_sys [ 2.108294] vcc_sys: could not add device link regulator.15 err -2 [ 2.109184] vcc1v8_codec: 1800 mV [ 2.109447] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.109461] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.109526] rk808 0-001b: Looking up vcc6-supply from device tree [ 2.109575] LDO_REG2: supplied by vcc_sys [ 2.109943] vcc_sys: could not add device link regulator.16 err -2 [ 2.110663] vcca1v8_hdmi: 1800 mV [ 2.110952] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.110967] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.111034] rk808 0-001b: Looking up vcc7-supply from device tree [ 2.111084] LDO_REG3: supplied by vcc_sys [ 2.111451] vcc_sys: could not add device link regulator.17 err -2 [ 2.112168] vcca_1v8: 1800 mV [ 2.112461] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.112476] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.112544] rk808 0-001b: Looking up vcc9-supply from device tree [ 2.112595] LDO_REG4: supplied by vcc_sys [ 2.112962] vcc_sys: could not add device link regulator.18 err -2 [ 2.113673] vcc_sd: 1800 <--> 3000 mV at 3000 mV [ 2.113966] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.113980] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.114051] rk808 0-001b: Looking up vcc9-supply from device tree [ 2.114102] LDO_REG5: supplied by vcc_sys [ 2.114469] vcc_sys: could not add device link regulator.19 err -2 [ 2.115206] vcc3v0_sd: 3000 mV [ 2.115500] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.115515] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.115589] rk808 0-001b: Looking up vcc10-supply from device tree [ 2.115640] LDO_REG6: supplied by vcc_sys [ 2.116007] vcc_sys: could not add device link regulator.20 err -2 [ 2.116714] vcc_1v5: 1500 mV [ 2.117008] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.117022] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.117102] rk808 0-001b: Looking up vcc7-supply from device tree [ 2.117153] LDO_REG7: supplied by vcc_sys [ 2.117520] vcc_sys: could not add device link regulator.21 err -2 [ 2.118228] vcca0v9_hdmi: 900 mV [ 2.118516] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.118530] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.118610] rk808 0-001b: Looking up vcc11-supply from device tree [ 2.118661] LDO_REG8: supplied by vcc_sys [ 2.119028] vcc_sys: could not add device link regulator.22 err -2 [ 2.119763] vcc_3v0: 3000 mV [ 2.120034] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.120048] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.120123] rk808 0-001b: Looking up vcc8-supply from device tree [ 2.120175] SWITCH_REG1: supplied by vcc3v3_sys [ 2.120589] vcc3v3_sys: could not add device link regulator.23 err -2 [ 2.120660] vcc3v3_s3: at 3300 mV [ 2.120899] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.120913] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.120988] rk808 0-001b: Looking up vcc12-supply from device tree [ 2.121039] SWITCH_REG2: supplied by vcc3v3_sys [ 2.121452] vcc3v3_sys: could not add device link regulator.24 err -2 [ 2.121494] vcc3v3_s0: at 3300 mV [ 2.121762] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ 2.121776] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ 2.125358] rk808-rtc rk808-rtc: rtc core: registered rk808-rtc as rtc0 [ 2.126413] rk3x-i2c ff3c0000.i2c: Initialized RK3xxx I2C bus at ffffff8009c72000 [ 2.128133] rockpi-mcu: rockpi_mcu_probe: address = 0x45 [ 2.128603] rockpi-mcu: send_cmds: 80 [ 2.129098] send command failed, ret = -6 [ 2.129462] rockpi-mcu: rockpi_mcu_probe: init_cmd_check failed, -6 [ 2.130222] rockpi-ft5406: rockpi_ft5406_probe: address = 0x38 [ 2.582540] usb 4-1: new full-speed USB device number 2 using ohci-platform [ 2.690529] rockpi-ft5406: rockpi_ft5406_probe: wait connected timeout [ 2.691150] rk3x-i2c ff110000.i2c: Initialized RK3xxx I2C bus at ffffff8009c74000 [ 2.692474] rk3x-i2c ff120000.i2c: Initialized RK3xxx I2C bus at ffffff8009c76000 [ 2.693843] rk3x-i2c ff160000.i2c: Initialized RK3xxx I2C bus at ffffff8009c78000 [ 2.695390] rk3x-i2c ff3d0000.i2c: Initialized RK3xxx I2C bus at ffffff8009c7a000 [ 2.696845] imx219 4-0010: GPIO lookup for consumer pwdn [ 2.696857] imx219 4-0010: using device tree for GPIO lookup [ 2.696903] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff3d0000/camera-module@10[0]' - status (0) [ 2.706787] imx219 4-0010: Reading register 100 from 10 failed [ 2.707473] imx219 4-0010: Reading register 100 from 10 failed [ 2.714487] imx219 4-0010: Error -5 setting default controls [ 2.715031] imx219: probe of 4-0010 failed with error -5 [ 2.716301] IR NEC protocol handler initialized [ 2.716716] IR RC5(x/sz) protocol handler initialized [ 2.717177] IR RC6 protocol handler initialized [ 2.717591] IR JVC protocol handler initialized [ 2.718006] IR Sony protocol handler initialized [ 2.718421] IR SANYO protocol handler initialized [ 2.718865] IR Sharp protocol handler initialized [ 2.719293] IR MCE Keyboard/mouse protocol handler initialized [ 2.719812] IR XMP protocol handler initialized [ 2.723640] rockchip-sy-mipi-dphy ff770000.syscon:mipi-dphy-rx0: invalid resource [ 2.724721] usbcore: registered new interface driver uvcvideo [ 2.725234] USB Video Class driver (1.1.1) [ 2.726395] rockchip-iodomain ff320000.syscon:io-domains: Looking up pmu1830-supply from device tree [ 2.726727] rockchip-iodomain ff770000.syscon:io-domains: Looking up bt656-supply from device tree [ 2.726804] rockchip-iodomain ff770000.syscon:io-domains: Looking up audio-supply from device tree [ 2.726875] rockchip-iodomain ff770000.syscon:io-domains: Looking up sdmmc-supply from device tree [ 2.726948] rockchip-iodomain ff770000.syscon:io-domains: Looking up gpio1830-supply from device tree [ 2.729233] rk_tsadcv2_temp_to_code: Invalid conversion table: code=1023, temperature=2147483647 [ 2.730137] rockchip-thermal ff260000.tsadc: tsadc is probed successfully! [ 2.732195] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com [ 2.732950] Bluetooth: Virtual HCI driver ver 1.5 [ 2.733533] Bluetooth: HCI UART driver ver 2.3 [ 2.733934] Bluetooth: HCI UART protocol H4 registered [ 2.734389] Bluetooth: HCI UART protocol LL registered [ 2.734867] Bluetooth: HCI UART protocol ATH3K registered [ 2.735433] usbcore: registered new interface driver bfusb [ 2.736000] usbcore: registered new interface driver btusb [ 2.737187] cpu cpu0: leakage=22 [ 2.737514] cpu cpu0: Looking up cpu-supply from device tree [ 2.739658] cpu cpu4: leakage=38 [ 2.739983] cpu cpu4: Looking up cpu-supply from device tree [ 2.742632] cpu cpu0: Looking up cpu-supply from device tree [ 2.743090] cpu cpu0: Looking up cpu-supply from device tree [ 2.743977] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ 2.745357] cpu cpu4: Looking up cpu-supply from device tree [ 2.746331] cpu cpu4: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ 2.748876] sdhci: Secure Digital Host Controller Interface driver [ 2.749423] sdhci: Copyright(c) Pierre Ossman [ 2.749814] Synopsys Designware Multimedia Card Interface Driver [ 2.751673] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode. [ 2.752345] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller. [ 2.752957] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a [ 2.753522] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit host data width,256 deep fifo [ 2.754394] dwmmc_rockchip fe310000.dwmmc: 'clock-freq-min-max' property was deprecated. [ 2.755143] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply from device tree [ 2.755157] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe310000 failed [ 2.755199] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply from device tree [ 2.755212] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe310000 failed [ 2.755233] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found [ 2.755782] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found [ 2.756354] dwmmc_rockchip fe310000.dwmmc: GPIO lookup for consumer wp [ 2.756364] dwmmc_rockchip fe310000.dwmmc: using device tree for GPIO lookup [ 2.756378] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe310000[0]' [ 2.756390] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe310000[0]' [ 2.756401] dwmmc_rockchip fe310000.dwmmc: using lookup tables for GPIO lookup [ 2.756412] dwmmc_rockchip fe310000.dwmmc: lookup for GPIO wp failed [ 2.757553] dwmmc_rockchip fe320000.dwmmc: IDMAC supports 32-bit address mode. [ 2.758214] dwmmc_rockchip fe320000.dwmmc: Using internal DMA controller. [ 2.758912] dwmmc_rockchip fe320000.dwmmc: Version ID is 270a [ 2.759518] dwmmc_rockchip fe320000.dwmmc: DW MMC controller at irq 26,32 bit host data width,256 deep fifo [ 2.760443] dwmmc_rockchip fe320000.dwmmc: 'clock-freq-min-max' property was deprecated. [ 2.761176] dwmmc_rockchip fe320000.dwmmc: Looking up vmmc-supply from device tree [ 2.761191] dwmmc_rockchip fe320000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe320000 failed [ 2.761220] dwmmc_rockchip fe320000.dwmmc: Looking up vqmmc-supply from device tree [ 2.761317] dwmmc_rockchip fe320000.dwmmc: No vmmc regulator found [ 2.761882] dwmmc_rockchip fe320000.dwmmc: GPIO lookup for consumer cd [ 2.761892] dwmmc_rockchip fe320000.dwmmc: using device tree for GPIO lookup [ 2.761906] of_get_named_gpiod_flags: can't parse 'cd-gpios' property of node '/dwmmc@fe320000[0]' [ 2.761918] of_get_named_gpiod_flags: can't parse 'cd-gpio' property of node '/dwmmc@fe320000[0]' [ 2.761928] dwmmc_rockchip fe320000.dwmmc: using lookup tables for GPIO lookup [ 2.761939] dwmmc_rockchip fe320000.dwmmc: lookup for GPIO cd failed [ 2.761952] dwmmc_rockchip fe320000.dwmmc: GPIO lookup for consumer wp [ 2.761962] dwmmc_rockchip fe320000.dwmmc: using device tree for GPIO lookup [ 2.761973] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe320000[0]' [ 2.761985] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe320000[0]' [ 2.761994] dwmmc_rockchip fe320000.dwmmc: using lookup tables for GPIO lookup [ 2.762005] dwmmc_rockchip fe320000.dwmmc: lookup for GPIO wp failed [ 2.762192] vcc_sd: unsupportable voltage range: 3300000-3000000uV [ 2.762918] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ 2.763586] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ 2.778687] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 2.789628] usb 4-1: New USB device found, idVendor=3938, idProduct=1032 [ 2.790223] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.790890] usb 4-1: Product: 2.4G RF Keyboard & Mouse [ 2.791345] usb 4-1: Manufacturer: MOSART Semi. [ 2.795667] dwmmc_rockchip fe320000.dwmmc: 1 slots initialized [ 2.796565] sdhci-pltfm: SDHCI platform and OF driver helper [ 2.797778] sdhci-arasan fe330000.sdhci: GPIO lookup for consumer wp [ 2.797788] sdhci-arasan fe330000.sdhci: using device tree for GPIO lookup [ 2.797799] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/sdhci@fe330000[0]' [ 2.797808] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/sdhci@fe330000[0]' [ 2.797817] sdhci-arasan fe330000.sdhci: using lookup tables for GPIO lookup [ 2.797827] sdhci-arasan fe330000.sdhci: lookup for GPIO wp failed [ 2.798939] sdhci-arasan fe330000.sdhci: Looking up vmmc-supply from device tree [ 2.798951] sdhci-arasan fe330000.sdhci: Looking up vmmc-supply property in node /sdhci@fe330000 failed [ 2.798988] sdhci-arasan fe330000.sdhci: Looking up vqmmc-supply from device tree [ 2.798998] sdhci-arasan fe330000.sdhci: Looking up vqmmc-supply property in node /sdhci@fe330000 failed [ 2.799016] sdhci-arasan fe330000.sdhci: No vmmc regulator found [ 2.799551] sdhci-arasan fe330000.sdhci: No vqmmc regulator found [ 2.834591] mmc1: SDHCI controller on fe330000.sdhci [fe330000.sdhci] using ADMA [ 2.836153] hidraw: raw HID events driver (C) Jiri Kosina [ 2.846747] input: MOSART Semi. 2.4G RF Keyboard & Mouse as /devices/platform/fe3e0000.usb/usb4/4-1/4-1:1.0/0003:3938:1032.0001/input/input1 [ 2.895008] mmc1: MAN_BKOPS_EN bit is not set [ 2.904052] hid-generic 0003:3938:1032.0001: input,hidraw0: USB HID v1.10 Keyboard [MOSART Semi. 2.4G RF Keyboard & Mouse] on usb-fe3e0000.usb-1/input0 [ 2.911035] input: MOSART Semi. 2.4G RF Keyboard & Mouse as /devices/platform/fe3e0000.usb/usb4/4-1/4-1:1.1/0003:3938:1032.0002/input/input2 [ 2.911652] mmc1: new HS400 Enhanced strobe MMC card at address 0001 [ 2.913324] mmcblk1: mmc1:0001 SLD32G 28.9 GiB [ 2.915390] mmcblk1boot0: mmc1:0001 SLD32G partition 1 4.00 MiB [ 2.917352] mmcblk1boot1: mmc1:0001 SLD32G partition 2 4.00 MiB [ 2.918946] mmcblk1rpmb: mmc1:0001 SLD32G partition 3 4.00 MiB [ 2.925106] mmcblk1: p1 p2 p3 p4 p5 [ 2.967146] hid-generic 0003:3938:1032.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [MOSART Semi. 2.4G RF Keyboard & Mouse] on usb-fe3e0000.usb-1/input1 [ 2.968477] usbcore: registered new interface driver usbhid [ 2.968966] usbhid: USB HID core driver [ 2.971802] rockchip-saradc ff100000.saradc: Looking up vref-supply from device tree [ 2.971820] rockchip-saradc ff100000.saradc: Looking up vref-supply property in node /saradc@ff100000 failed [ 2.971861] ff100000.saradc supply vref not found, using dummy regulator [ 2.974013] usbcore: registered new interface driver snd-usb-audio [ 2.975593] of_get_named_gpiod_flags: can't parse 'spk-con-gpio' property of node '/i2c@ff110000/es8316@11[0]' [ 2.975609] es8316 1-0011: Can not read property spk_ctl_gpio [ 2.976125] of_get_named_gpiod_flags: can't parse 'hp-det-gpio' property of node '/i2c@ff110000/es8316@11[0]' [ 2.976135] es8316 1-0011: Can not read property hp_det_gpio [ 2.978813] /spdif-sound/simple-audio-card,cpu: could not get #sound-dai-cells for /spdif@ff870000 [ 2.979605] asoc-simple-card spdif-sound: parse error -22 [ 2.980090] asoc-simple-card: probe of spdif-sound failed with error -22 [ 2.984026] u32 classifier [ 2.984296] Netfilter messages via NETLINK v0.30. [ 2.984784] ip_set: protocol 6 [ 2.985291] Initializing XFRM netlink socket [ 2.986457] NET: Registered protocol family 10 [ 2.988354] NET: Registered protocol family 17 [ 2.988778] NET: Registered protocol family 15 [ 2.989209] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. [ 2.990341] Bridge firewalling registered [ 2.991210] Bluetooth: RFCOMM socket layer initialized [ 2.991689] Bluetooth: RFCOMM ver 1.11 [ 2.992040] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [ 2.992568] Bluetooth: HIDP socket layer initialized [ 2.993082] 8021q: 802.1Q VLAN Support v1.8 [ 2.993478] [WLAN_RFKILL]: Enter rfkill_wlan_init [ 2.994369] [WLAN_RFKILL]: Enter rfkill_wlan_probe [ 2.994920] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6256 [ 2.995522] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control. [ 2.996147] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio. [ 2.996798] of_get_named_gpiod_flags: can't parse 'WIFI,poweren_gpio' property of node '/wireless-wlan[0]' [ 2.996807] of_get_named_gpiod_flags: can't parse 'WIFI,vbat_gpio' property of node '/wireless-wlan[0]' [ 2.996815] of_get_named_gpiod_flags: can't parse 'WIFI,reset_gpio' property of node '/wireless-wlan[0]' [ 2.996876] of_get_named_gpiod_flags: parsed 'WIFI,host_wake_irq' property of node '/wireless-wlan[0]' - status (0) [ 2.996884] [WLAN_RFKILL]: wlan_platdata_parse_dt: get property: WIFI,host_wake_irq = 3, flags = 0. [ 2.997685] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found ! [ 2.998330] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio [ 2.998813] [WLAN_RFKILL]: Exit rfkill_wlan_probe [ 2.999293] [BT_RFKILL]: Enter rfkill_rk_init [ 3.000213] of_get_named_gpiod_flags: parsed 'uart_rts_gpios' property of node '/wireless-bluetooth[0]' - status (0) [ 3.000221] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 83. [ 3.000941] of_get_named_gpiod_flags: can't parse 'BT,power_gpio' property of node '/wireless-bluetooth[0]' [ 3.000968] of_get_named_gpiod_flags: parsed 'BT,reset_gpio' property of node '/wireless-bluetooth[0]' - status (0) [ 3.000975] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 9. [ 3.001687] of_get_named_gpiod_flags: parsed 'BT,wake_gpio' property of node '/wireless-bluetooth[0]' - status (0) [ 3.001694] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 91. [ 3.002405] of_get_named_gpiod_flags: parsed 'BT,wake_host_irq' property of node '/wireless-bluetooth[0]' - status (0) [ 3.002412] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 4. [ 3.003809] [BT_RFKILL]: Request irq for bt wakeup host [ 3.004347] [BT_RFKILL]: ** disable irq [ 3.004870] [BT_RFKILL]: bt_default device registered. [ 3.005434] Key type dns_resolver registered [ 3.006828] Registered cp15_barrier emulation handler [ 3.007469] Registered setend emulation handler [ 3.009161] registered taskstats version 1 [ 3.009564] Loading compiled-in X.509 certificates [ 3.011266] vendor storage:20160801 ret = 0 [ 3.013995] Btrfs loaded, integrity-checker=on [ 3.014540] BTRFS: selftest: Running btrfs free space cache tests [ 3.015116] BTRFS: selftest: Running extent only tests [ 3.015595] BTRFS: selftest: Running bitmap only tests [ 3.016074] BTRFS: selftest: Running bitmap and extent tests [ 3.016618] BTRFS: selftest: Running space stealing from bitmap to extent [ 3.018667] BTRFS: selftest: Free space cache tests finished [ 3.019172] BTRFS: selftest: Running extent buffer operation tests [ 3.019709] BTRFS: selftest: Running btrfs_split_item tests [ 3.020289] BTRFS: selftest: Running find delalloc tests [ 3.221976] BTRFS: selftest: Running btrfs_get_extent tests [ 3.222615] BTRFS: selftest: Running hole first btrfs_get_extent test [ 3.223192] BTRFS: selftest: Running outstanding_extents tests [ 3.223741] BTRFS: selftest: Running qgroup tests [ 3.224155] BTRFS: selftest: Qgroup basic add [ 3.224573] BTRFS: selftest: Qgroup multiple refs test [ 3.263328] Key type encrypted registered [ 3.264645] [drm] Rockchip DRM driver version: v1.0.1 [ 3.265772] rockchip-drm display-subsystem: dmc is disabled [ 3.266962] rockchip-vop ff900000.vop: missing rockchip,grf property [ 3.267996] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffffff8008d18128) [ 3.268772] rockchip-vop ff8f0000.vop: missing rockchip,grf property [ 3.269644] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffffff8008d18128) [ 3.271225] dwhdmi-rockchip ff940000.hdmi: registered DesignWare HDMI I2C bus driver [ 3.272110] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY) [ 3.276115] rockchip-drm display-subsystem: bound ff940000.hdmi (ops 0xffffff8008d0e880) [ 3.277250] rockchip-drm display-subsystem: bound ff968000.dsi (ops 0xffffff8008d0fe30) [ 3.277970] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 3.278606] [drm] No driver support for vblank timestamp query. [ 3.279563] rockchip-drm display-subsystem: failed to parse loader memory [ 3.416878] rockchip-vop ff900000.vop: [drm:vop_crtc_enable] Update mode to 1366x768p60, type: 11 [ 3.417460] rockchip-vop ff8f0000.vop: [drm:vop_crtc_enable] Update mode to 800x480p60, type: 16 [ 3.442457] dw-mipi-dsi ff968000.dsi: final DSI-Link bandwidth: 720 x 1 Mbps [ 3.447345] panel enable [ 3.763156] rockpi_mcu_screen_power_up [ 3.763164] Console: switching to colour frame buffer device 100x30 [ 3.809349] rockchip-drm display-subsystem: fb0: frame buffer device [ 3.821732] mali ff9a0000.gpu: Looking up mali-supply from device tree [ 3.823593] mali ff9a0000.gpu: GPU identified as 0x0860 r2p0 status 0 [ 3.824410] mali ff9a0000.gpu: Protected mode not available [ 3.825536] mali ff9a0000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ 3.826579] mali ff9a0000.gpu: Using configured power model mali-simple-power-model, and fallback mali-simple-power-model [ 3.828609] mali ff9a0000.gpu: Probed as mali0 [ 3.833621] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ 3.834464] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 5 [ 3.835375] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x02030010 [ 3.836246] xhci-hcd xhci-hcd.8.auto: irq 236, io mem 0xfe800000 [ 3.836983] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002 [ 3.837592] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.838232] usb usb5: Product: xHCI Host Controller [ 3.838711] usb usb5: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 xhci-hcd [ 3.839362] usb usb5: SerialNumber: xhci-hcd.8.auto [ 3.840722] hub 5-0:1.0: USB hub found [ 3.841096] hub 5-0:1.0: 1 port detected [ 3.841833] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ 3.842914] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 6 [ 3.843666] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.844509] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003 [ 3.845116] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.845757] usb usb6: Product: xHCI Host Controller [ 3.846191] usb usb6: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 xhci-hcd [ 3.846874] usb usb6: SerialNumber: xhci-hcd.8.auto [ 3.848267] hub 6-0:1.0: USB hub found [ 3.848637] hub 6-0:1.0: 1 port detected [ 3.850917] xhci-hcd xhci-hcd.8.auto: remove, state 1 [ 3.851397] usb usb6: USB disconnect, device number 1 [ 3.871419] xhci-hcd xhci-hcd.8.auto: Host not halted after 16000 microseconds. [ 3.872072] xhci-hcd xhci-hcd.8.auto: Host controller not halted, aborting reset. [ 3.872807] xhci-hcd xhci-hcd.8.auto: USB bus 6 deregistered [ 3.873816] xhci-hcd xhci-hcd.8.auto: remove, state 1 [ 3.874284] usb usb5: USB disconnect, device number 1 [ 3.875657] xhci-hcd xhci-hcd.8.auto: USB bus 5 deregistered [ 3.881328] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller [ 3.882319] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus number 5 [ 3.883214] xhci-hcd xhci-hcd.9.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x02030010 [ 3.884025] xhci-hcd xhci-hcd.9.auto: irq 237, io mem 0xfe900000 [ 3.884729] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002 [ 3.885334] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.885998] usb usb5: Product: xHCI Host Controller [ 3.886430] usb usb5: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 xhci-hcd [ 3.887117] usb usb5: SerialNumber: xhci-hcd.9.auto [ 3.888354] hub 5-0:1.0: USB hub found [ 3.888721] hub 5-0:1.0: 1 port detected [ 3.889387] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller [ 3.890213] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus number 6 [ 3.890938] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ 3.891659] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.892403] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 7 [ 3.893202] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x02030010 [ 3.893984] xhci-hcd xhci-hcd.8.auto: irq 236, io mem 0xfe800000 [ 3.894653] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003 [ 3.895257] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.895894] usb usb6: Product: xHCI Host Controller [ 3.896326] usb usb6: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 xhci-hcd [ 3.896974] usb usb6: SerialNumber: xhci-hcd.9.auto [ 3.898180] hub 6-0:1.0: USB hub found [ 3.898592] hub 6-0:1.0: 1 port detected [ 3.899405] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002 [ 3.900010] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.900648] usb usb7: Product: xHCI Host Controller [ 3.901079] usb usb7: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 xhci-hcd [ 3.901728] usb usb7: SerialNumber: xhci-hcd.8.auto [ 3.903259] hub 7-0:1.0: USB hub found [ 3.903624] hub 7-0:1.0: 1 port detected [ 3.904252] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ 3.905154] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 8 [ 3.905908] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.906775] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003 [ 3.907379] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.908016] usb usb8: Product: xHCI Host Controller [ 3.908448] usb usb8: Manufacturer: Linux 4.4.154-59-rockchip-g5e70f14 xhci-hcd [ 3.909096] usb usb8: SerialNumber: xhci-hcd.8.auto [ 3.910348] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode. [ 3.911322] hub 8-0:1.0: USB hub found [ 3.911692] hub 8-0:1.0: 1 port detected [ 3.912381] rockchip-dwc3 usb0: USB HOST connected [ 3.912871] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller. [ 3.913478] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a [ 3.914014] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit host data width,256 deep fifo [ 3.914920] dwmmc_rockchip fe310000.dwmmc: 'clock-freq-min-max' property was deprecated. [ 3.915640] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply from device tree [ 3.915651] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe310000 failed [ 3.915687] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply from device tree [ 3.915696] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe310000 failed [ 3.915710] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found [ 3.916254] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found [ 3.916818] dwmmc_rockchip fe310000.dwmmc: GPIO lookup for consumer wp [ 3.916825] dwmmc_rockchip fe310000.dwmmc: using device tree for GPIO lookup [ 3.916836] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe310000[0]' [ 3.916843] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe310000[0]' [ 3.916851] dwmmc_rockchip fe310000.dwmmc: using lookup tables for GPIO lookup [ 3.916859] dwmmc_rockchip fe310000.dwmmc: lookup for GPIO wp failed [ 3.917168] platform sdio-pwrseq: GPIO lookup for consumer reset [ 3.917175] platform sdio-pwrseq: using device tree for GPIO lookup [ 3.917200] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/sdio-pwrseq[0]' - status (0) [ 3.917242] dwmmc_rockchip fe310000.dwmmc: allocated mmc-pwrseq [ 3.930709] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 3.946944] dwmmc_rockchip fe310000.dwmmc: 1 slots initialized [ 3.948161] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/es8316-sound[0]' [ 3.948170] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/es8316-sound[0]' [ 3.994963] mmc2: queuing unknown CIS tuple 0x80 (2 bytes) [ 3.997108] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ 3.999618] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ 4.003327] mmc2: queuing unknown CIS tuple 0x80 (7 bytes) [ 4.007764] mmc2: queuing unknown CIS tuple 0x81 (9 bytes) [ 4.064738] mmc_host mmc2: Bus speed (slot 0) = 150000000Hz (slot req 150000000Hz, actual 150000000HZ div = 0) [ 4.082383] asoc-simple-card es8316-sound: ES8316 HiFi <-> ff880000.i2s mapping ok [ 4.083142] asoc-simple-card es8316-sound: ASoC: no source widget found for MICBIAS1 [ 4.083840] asoc-simple-card es8316-sound: ASoC: Failed to add route MICBIAS1 -> direct -> Mic Jack [ 4.084655] asoc-simple-card es8316-sound: ASoC: no sink widget found for IN1P [ 4.085304] asoc-simple-card es8316-sound: ASoC: Failed to add route Mic Jack -> direct -> IN1P [ 4.086587] es8316 1-0011: ASoC: Failed to create Left Hp mixer debugfs file [ 4.087252] es8316 1-0011: ASoC: Failed to create Right Hp mixer debugfs file [ 4.087930] es8316 1-0011: ASoC: Failed to create HPCP L debugfs file [ 4.088525] es8316 1-0011: ASoC: Failed to create HPCP R debugfs file [ 4.089140] es8316 1-0011: ASoC: Failed to create HPVOL L debugfs file [ 4.089736] es8316 1-0011: ASoC: Failed to create HPVOL R debugfs file [ 4.094758] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/hdmi-codec[0]' [ 4.094784] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/hdmi-codec[0]' [ 4.095897] asoc-simple-card hdmi-codec: i2s-hifi <-> ff8a0000.i2s mapping ok [ 4.101269] rk808-rtc rk808-rtc: setting system clock to 2020-01-29 07:35:12 UTC (1580283312) [ 4.130138] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 417; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '20:34:12', on 'Dec 14 2018'. [ 4.132351] Mali: Mali device driver loaded [ 4.133350] ALSA device list: [ 4.133622] #0: rockchip,es8316-codec [ 4.133963] #1: HDMI-CODEC [ 4.145422] EXT4-fs (mmcblk1p5): mounted filesystem with ordered data mode. Opts: (null) [ 4.146162] VFS: Mounted root (ext4 filesystem) on device 179:5. [ 4.160244] devtmpfs: mounted [ 4.161596] Freeing unused kernel memory: 1216K [ 4.222781] usb 7-1: new low-speed USB device number 2 using xhci-hcd [ 4.323524] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 225 [ 4.327601] mmc2: queuing unknown CIS tuple 0x91 (3 bytes) [ 4.328135] mmc2: new ultra high speed SDR104 SDIO card at address 0001 [ 4.356584] usb 7-1: New USB device found, idVendor=1a2c, idProduct=0042 [ 4.357202] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 4.357844] usb 7-1: Product: Usb Mouse [ 4.358198] usb 7-1: Manufacturer: SEMICCHIP [ 4.359886] usb 7-1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes [ 4.375824] input: SEMICCHIP Usb Mouse as /devices/platform/usb0/fe800000.dwc3/xhci-hcd.8.auto/usb7/7-1/7-1:1.0/0003:1A2C:0042.0003/input/input3 [ 4.403996] ip_tables: (C) 2000-2006 Netfilter Core Team [ 4.409942] cgroup: cgroup2: unknown option "nsdelegate" [ 4.422240] 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) [ 4.425344] systemd[1]: Detected architecture arm64. [ 4.431651] hid-generic 0003:1A2C:0042.0003: input,hidraw2: USB HID v1.10 Mouse [SEMICCHIP Usb Mouse] on usb-xhci-hcd.8.auto-1/input0 [ 4.433548] systemd[1]: Set hostname to . [ 4.602487] systemd[1]: File /lib/systemd/system/systemd-udevd.service:34 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling. [ 4.604075] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.) [ 4.777090] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.777990] systemd[1]: Reached target Remote File Systems. [ 4.779537] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.780884] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 4.782201] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.783605] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 4.784613] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.786630] systemd[1]: Created slice User and Session Slice. [ 4.787468] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.789192] systemd[1]: Created slice System Slice. [ 4.789951] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.791452] systemd[1]: Listening on Journal Socket. [ 4.792497] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.796234] systemd[1]: Starting Create list of required static device nodes for the current kernel... [ 4.797638] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.801900] systemd[1]: Starting Remount Root and Kernel File Systems... [ 4.803053] random: systemd: uninitialized urandom read (16 bytes read, 72 bits of entropy available) [ 4.804343] systemd[1]: Listening on udev Kernel Socket. [ 4.805435] random: systemd: uninitialized urandom read (16 bytes read, 73 bits of entropy available) [ 4.809373] systemd[1]: Mounting Kernel Debug File System... [ 4.810893] systemd[1]: Listening on Journal Socket (/dev/log). [ 4.812191] systemd[1]: Listening on udev Control Socket. [ 4.813790] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 4.816115] systemd[1]: Reached target Slices. [ 4.817115] systemd[1]: Listening on fsck to fsckd communication Socket. [ 4.821341] systemd[1]: Mounting Huge Pages File System... [ 4.826829] systemd[1]: Starting Uncomplicated firewall... [ 4.833723] systemd[1]: Starting Set the console keyboard layout... [ 4.836200] systemd[1]: Reached target User and Group Name Lookups. [ 4.837345] systemd[1]: Reached target Swap. [ 4.845632] systemd[1]: Starting Load Kernel Modules... [ 4.850951] systemd[1]: Starting udev Coldplug all Devices... [ 4.853016] systemd[1]: Listening on Syslog Socket. [ 4.854640] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe. [ 4.864204] systemd[1]: Mounting POSIX Message Queue File System... [ 4.868636] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 4.870186] systemd[1]: Listening on Journal Audit Socket. [ 4.874411] systemd[1]: Starting Journal Service... [ 4.880257] systemd[1]: Started Create list of required static device nodes for the current kernel. [ 4.888564] systemd[1]: Started Remount Root and Kernel File Systems. [ 4.890138] systemd[1]: Mounted Kernel Debug File System. [ 4.891446] systemd[1]: Mounted Huge Pages File System. [ 4.894460] systemd[1]: Started Uncomplicated firewall. [ 4.895967] systemd[1]: systemd-modules-load.service: Main process exited, code=exited, status=1/FAILURE [ 4.897217] systemd[1]: systemd-modules-load.service: Failed with result 'exit-code'. [ 4.898999] systemd[1]: Failed to start Load Kernel Modules. [ 4.900764] systemd[1]: Mounted POSIX Message Queue File System. [ 4.907715] systemd[1]: Mounting FUSE Control File System... [ 4.913014] systemd[1]: Mounting Kernel Configuration File System... [ 4.917679] systemd[1]: Starting Apply Kernel Variables... [ 4.922343] systemd[1]: Starting Load/Save Random Seed... [ 4.928007] systemd[1]: Starting Create Static Device Nodes in /dev... [ 4.932653] systemd[1]: Mounted FUSE Control File System. [ 4.934153] systemd[1]: Mounted Kernel Configuration File System. [ 4.937103] systemd[1]: Started Apply Kernel Variables. [ 4.942137] systemd[1]: Started Load/Save Random Seed. [ 4.967350] systemd[1]: Started Create Static Device Nodes in /dev. [ 4.971363] systemd[1]: Starting udev Kernel Device Manager... [ 5.052135] systemd[1]: Started Set the console keyboard layout. [ 5.052960] systemd[1]: Reached target Local File Systems (Pre). [ 5.088893] systemd[1]: Started udev Kernel Device Manager. [ 5.090120] systemd[1]: Started Journal Service. [ 5.117628] systemd-journald[216]: Received request to flush runtime journal from PID 1 [ 5.314217] gasket: loading out-of-tree module taints kernel. [ 5.321018] apex 0000:01:00.0: can't enable device: BAR 0 [mem 0x00000000-0x00003fff 64bit pref] not claimed [ 5.322491] apex 0000:01:00.0: BAR 2: assigned [mem 0xfa000000-0xfa0fffff 64bit pref] [ 5.322591] apex 0000:01:00.0: BAR 0: assigned [mem 0xfa100000-0xfa103fff 64bit pref] [ 5.322914] apex 0000:01:00.0: enabling device (0000 -> 0002) [ 5.404221] midgard_kbase: exports duplicate symbol _mali_profiling_control (owned by kernel) [ 5.419426] dhd_module_init: in Dongle Host Driver, version 1.579.77.41.2 (r) [ 5.419445] ======== dhd_wlan_init_plat_data ======== [ 5.419450] dhd_wlan_init_gpio: GPIO(WL_REG_ON) = -1 [ 5.419455] dhd_wlan_init_gpio: GPIO(WL_HOST_WAKE) = -1 [ 5.419461] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter [ 5.419470] dhd_wlan_init_gpio: host_oob_irq: 71 [ 5.419475] dhd_wlan_init_gpio: host_oob_irq_flags=0x414 [ 5.419480] dhd_wifi_platform_load: Enter [ 5.419511] Power-up adapter 'DHD generic adapter' [ 5.422041] wifi_platform_set_power = 1 [ 5.422056] ======== PULL WL_REG_ON(-1) HIGH! ======== [ 5.422063] [WLAN_RFKILL]: rockchip_wifi_power: 1 [ 5.422069] [WLAN_RFKILL]: wifi turn on power. -1 [ 5.478653] [BT_RFKILL]: rfkill_rk_set_power: set bt wake_host pin output high! [ 5.527147] [BT_RFKILL]: ENABLE UART_RTS [ 5.623101] random: nonblocking pool is initialized [ 5.630570] [BT_RFKILL]: DISABLE UART_RTS [ 5.630619] [BT_RFKILL]: bt turn on power [ 5.722606] wifi_platform_bus_enumerate device present 1 [ 5.722615] ======== Card detection to detect SDIO card! ======== [ 5.722620] mmc2:mmc host rescan start! [ 5.738963] bcmsdh_register: register client driver [ 5.739117] bcmsdh_sdmmc_probe: Enter num=1 [ 5.739200] bcmsdh_sdmmc_probe: Enter num=2 [ 5.739203] bus num (host idx)=2, slot num (rca)=1 [ 5.739206] found adapter info 'DHD generic adapter' [ 5.739232] sdioh_attach: set sd_f2_blocksize 256 [ 5.739250] sdioh_attach: sd clock rate = 0 [ 5.739432] F1 signature read @0x18000000=0x15294345 [ 5.741662] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2 [ 5.742050] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000 [ 5.742111] dhd_conf_set_chiprev: chip=0x4345, chiprev=9 [ 5.742294] CFG80211-ERROR) wl_setup_wiphy : Registering Vendor80211 [ 5.747357] CFG80211-ERROR) wl_init_prof : wl_init_prof: No profile [ 5.747564] wl_escan_attach: Enter [ 5.747598] wl_escan_init: Enter [ 5.747789] wl_create_event_handler(): thread:wl_escan_handler:189 started [ 5.748398] tsk Enter, tsk = 0xffffffc0df3b01b0 [ 5.748438] dhd_attach(): thread:dhd_watchdog_thread:18a started [ 5.749291] dhd_attach(): thread:dhd_dpc:18c started [ 5.749685] dhd_attach(): thread:dhd_rxf:18d started [ 5.749697] dhd_deferred_work_init: work queue initialized [ 5.749726] dhd_bus_set_default_min_res_mask: Unhandled chip id [ 5.749959] sdioh_cis_read: func_cis_ptr[0]=0x10ac [ 5.755128] Dongle Host Driver, version 1.579.77.41.2 (r) [ 5.756095] Register interface [wlan0] MAC: 6c:21:a2:14:d9:30

[ 5.757047] dhd_wl_ioctl: returning as busstate=0 [ 5.757062] dhd_dbg_detach_pkt_monitor, 2204 [ 5.757069] dhd_bus_devreset: == Power OFF == [ 5.757514] bcmsdh_oob_intr_unregister: Enter [ 5.757520] bcmsdh_oob_intr_unregister: irq is not registered [ 5.757529] dhd_txglom_enable: enable 0 [ 5.757533] dhd_conf_set_txglom_params: txglomsize=0, deferred_tx_len=0, bus_txglom=-1 [ 5.757537] dhd_conf_set_txglom_params: tx_in_rx=1, txinrx_thres=-1, dhd_txminmax=1 [ 5.757540] dhd_conf_set_txglom_params: tx_max_offset=0, txctl_tmo_fix=5 [ 5.757543] sdioh_set_mode: set txglom_mode to copy [ 5.757547] dhd_bus_devreset: WLAN OFF DONE [ 5.757614] wifi_platform_set_power = 0 [ 5.757618] ======== PULL WL_REG_ON(-1) LOW! ======== [ 5.757622] [WLAN_RFKILL]: rockchip_wifi_power: 0 [ 5.757636] [WLAN_RFKILL]: wifi shut off power. [ 5.758565] dhd_module_init: Exit err=0 [ 5.829720] FAT-fs (mmcblk1p4): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! [ 6.779685] squashfs: SQUASHFS error: Filesystem uses "xz" compression. This is not supported [ 7.129131] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 7.148230] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready [ 7.148348] dhd_open: Enter ffffffc0de5f0000 [ 7.148355] Dongle Host Driver, version 1.579.77.41.2 (r) [ 7.148360] wl_android_wifi_on in 1 [ 7.148364] wl_android_wifi_on in 2: g_wifi_on=0 [ 7.148368] wifi_platform_set_power = 1 [ 7.148372] ======== PULL WL_REG_ON(-1) HIGH! ======== [ 7.148376] [WLAN_RFKILL]: rockchip_wifi_power: 1 [ 7.148381] [WLAN_RFKILL]: wifi turn on power. -1 [ 7.450805] sdio_reset_comm(): [ 7.466658] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 7.486053] mmc_host mmc2: Bus speed (slot 0) = 200000Hz (slot req 200000Hz, actual 200000HZ div = 0) [ 7.524431] mmc2: queuing unknown CIS tuple 0x80 (2 bytes) [ 7.527645] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ 7.531062] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ 7.536962] mmc2: queuing unknown CIS tuple 0x80 (7 bytes) [ 7.654606] mmc_host mmc2: Bus speed (slot 0) = 150000000Hz (slot req 150000000Hz, actual 150000000HZ div = 0) [ 7.942462] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 225 [ 7.942801] sdioh_start: set sd_f2_blocksize 256 [ 7.944570]

           dhd_bus_devreset: == WLAN ON ==

[ 7.944959] F1 signature read @0x18000000=0x15294345 [ 7.957009] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2 [ 7.960118] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000 [ 7.960227] dhd_bus_set_default_min_res_mask: Unhandled chip id [ 7.961807] dhd_conf_read_config: Ignore config file /system/etc/firmware/config.txt [ 7.961843] Final fw_path=/system/etc/firmware/fw_bcm43456c5_ag.bin [ 7.961858] Final nv_path=/system/etc/firmware/nvram_ap6256.txt [ 7.961871] Final clm_path=/system/etc/firmware/clm_bcmdhd.blob [ 7.961884] Final conf_path=/system/etc/firmware/config.txt [ 7.961899] dhd_set_bus_params: set use_rxchain 0 [ 7.961913] dhd_set_bus_params: set txglomsize 36 [ 7.966077] dhd_os_open_image: /system/etc/firmware/fw_bcm43456c5_ag.bin (482927 bytes) open success [ 8.005300] dhd_os_open_image: /system/etc/firmware/nvram_ap6256.txt (2099 bytes) open success [ 8.005603] NVRAM version: AP6256_NVRAM_V1.1_08252017 [ 8.005952] dhdsdio_write_vars: Download, Upload and compare of NVRAM succeeded. [ 8.081222] dhd_bus_init: enable 0x06, ready 0x06 (waited 0us) [ 8.081392] bcmsdh_oob_intr_register HW_OOB irq=71 flags=0x4 [ 8.081617] dhd_get_memdump_info: File [/data/misc/wifi/.memdump.info] doesn't exist [ 8.081625] dhd_get_memdump_info: MEMDUMP ENABLED = 2 [ 8.085579] Disable tdls_auto_op failed. -1 [ 8.085597] dhd_preinit_ioctls: Set tcpack_sup_mode 0 [ 8.085608] dhd_tcpack_suppress_set 352: already set to 0 [ 8.086336] dhd_apply_default_clm: Ignore clm file /system/etc/firmware/clm_bcmdhd.blob [ 8.088870] Firmware up: op_mode=0x0005, MAC=6c:21:a2:14:d9:30 [ 8.088883] dhd_conf_set_country: set country CN, revision 38 [ 8.111933] Country code: CN (CN/38) [ 8.112416] dhd_conf_set_intiovar: set roam_off 1 [ 8.126116] Driver: 1.579.77.41.2 (r) Firmware: wl0: Jun 16 2017 12:38:26 version 7.45.96.2 (66c4e21@sh-git) (r) FWID 01-1813af84 CLM: 9.2.9 [ 8.126417] dhd_txglom_enable: enable 1 [ 8.126425] dhd_conf_set_txglom_params: txglomsize=36, deferred_tx_len=36, bus_txglom=-1 [ 8.126431] dhd_conf_set_txglom_params: tx_in_rx=1, txinrx_thres=-1, dhd_txminmax=1 [ 8.126436] dhd_conf_set_txglom_params: tx_max_offset=0, txctl_tmo_fix=5 [ 8.126442] sdioh_set_mode: set txglom_mode to copy [ 8.126453] dhd_conf_get_disable_proptx: fw_proptx=1, disable_proptx=-1 [ 8.129228] dhd_wlfc_hostreorder_init(): successful bdcv2 tlv signaling, 64 [ 8.129494] dhd_conf_set_intiovar: set ampdu_hostreorder 1 [ 8.131151] dhd_pno_init: Support Android Location Service [ 8.149883] CFG80211-ERROR) wl_cfg80211_event : Event handler is not created [ 8.150728] rtt_do_get_ioctl: failed to send getbuf proxd iovar (CMD ID : 1), status=-23 [ 8.150745] dhd_rtt_init : FTM is not supported [ 8.150757] dhd_preinit_ioctls: SensorHub diabled 0 [ 8.151529] dhd_preinit_ioctls failed to set ShubHub disable [ 8.153471] wl_android_wifi_on: Success [ 8.180037] dhd_open: Exit ret=0 [ 8.200307] cfg80211: World regulatory domain updated: [ 8.200319] cfg80211: DFS Master region: unset [ 8.200324] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 8.200331] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 8.200338] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ 8.200344] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 8.200349] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ 8.200355] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s) [ 8.200360] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 8.200365] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 8.200370] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 8.340207] P2P interface registered [ 8.340213] wl_cfgp2p_add_p2p_disc_if: wdev: ffffffc0de544000, wdev->net: (null) [ 8.352579] WLC_E_IF: NO_IF set, event Ignored [ 8.353762] P2P interface started [ 10.330889] apex 0000:01:00.0: Apex performance not throttled due to temperature [ 10.858312] Connecting with f4:8c:eb:a6:a0:1d ssid "FaceX-2.4G", len (10) channel=1

[ 10.858330] dhd_dbg_start_pkt_monitor, 1724 [ 10.903865] wl_iw_event: Link UP with BSSID=f4:8c:eb:a6:a0:1d [ 10.903904] wl_bss_connect_done succeeded with f4:8c:eb:a6:a0:1d [ 10.949475] wl_bss_connect_done succeeded with f4:8c:eb:a6:a0:1d vndr_oui: 00-E0-4C [ 15.341403] tty_port_close_start: tty->count = 1 port count = 2. [ 627.657890] panel disable [ 2974.154359] rockchip-vop ff900000.vop: [drm:vop_crtc_enable] Update mode to 1366x768p60, type: 11 [ 2974.190144] rockchip-vop ff8f0000.vop: [drm:vop_crtc_enable] Update mode to 800x480p60, type: 16 [ 2974.193488] dw-mipi-dsi ff968000.dsi: final DSI-Link bandwidth: 720 x 1 Mbps [ 2974.198363] panel enable [ 2974.218406] dw-mipi-dsi ff968000.dsi: generic write fifo is full [ 2974.218411] bridge-tc358762-dsi ff968000.dsi.0: failed to writing gen seq [ 2974.238426] dw-mipi-dsi ff968000.dsi: generic write fifo is full [ 2974.238431] bridge-tc358762-dsi ff968000.dsi.0: failed to writing gen seq [ 2974.258451] dw-mipi-dsi ff968000.dsi: generic write fifo is full [ 2974.258455] bridge-tc358762-dsi ff968000.dsi.0: failed to writing gen seq

Namburger commented 4 years ago

@Nishanth009 could you also provide some logs from lightdm? Maybe there are some hints we can find. I'm not able to see anything from this log suggesting any faulty from our drivers, but our drivers doesn't do anything related to display.

Nishanth009 commented 4 years ago

Debug msg from lightdm

[+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=637 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.01s] DEBUG: Monitoring logind for seats [+0.01s] DEBUG: New seat added from logind: seat0 [+0.01s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.01s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.01s] DEBUG: Seat seat0: Starting [+0.01s] DEBUG: Seat seat0: Creating user session [+0.01s] DEBUG: Loading users from org.freedesktop.Accounts [+0.01s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.18s] DEBUG: Seat seat0: Creating display server of type x [+0.18s] DEBUG: Using VT 7 [+0.18s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.18s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.18s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.18s] DEBUG: XServer 0: Launching X Server [+0.19s] DEBUG: Launching process 646: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.19s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.19s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.19s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+1.20s] DEBUG: Process 646 terminated with signal 6 [+1.20s] DEBUG: XServer 0: X server stopped [+1.20s] DEBUG: Releasing VT 7 [+1.20s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.20s] DEBUG: Seat seat0: Display server stopped [+1.20s] DEBUG: Launching process 653: /sbin/prime-switch [+1.22s] DEBUG: Process 653 exited with return value 0 [+1.22s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.22s] DEBUG: Seat seat0: Stopping session [+1.22s] DEBUG: Seat seat0: Session stopped [+1.22s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.22s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+1.22s] DEBUG: Seat seat0: Creating greeter session [+1.22s] DEBUG: Seat seat0: Creating display server of type x [+1.22s] DEBUG: Using VT 7 [+1.22s] DEBUG: Seat seat0: Starting local X display on VT 7 [+1.22s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+1.22s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+1.22s] DEBUG: XServer 0: Launching X Server [+1.22s] DEBUG: Launching process 656: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+1.22s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.98s] DEBUG: Process 656 terminated with signal 6 [+1.98s] DEBUG: XServer 0: X server stopped [+1.98s] DEBUG: Releasing VT 7 [+1.98s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.98s] DEBUG: Seat seat0: Display server stopped [+1.98s] DEBUG: Launching process 669: /sbin/prime-switch [+2.00s] DEBUG: Process 669 exited with return value 0 [+2.00s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+2.00s] DEBUG: Seat seat0: Stopping session [+2.00s] DEBUG: Seat seat0: Session stopped [+2.00s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+2.00s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+2.00s] DEBUG: Seat seat0: Stopping [+2.00s] DEBUG: Seat seat0: Stopped [+2.00s] DEBUG: Required seat has stopped [+2.00s] DEBUG: Stopping display manager [+2.00s] DEBUG: Display manager stopped [+2.00s] DEBUG: Stopping daemon [+2.01s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=675 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.01s] DEBUG: Monitoring logind for seats [+0.01s] DEBUG: New seat added from logind: seat0 [+0.01s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.01s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.01s] DEBUG: Seat seat0: Starting [+0.01s] DEBUG: Seat seat0: Creating user session [+0.02s] DEBUG: Loading users from org.freedesktop.Accounts [+0.02s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.04s] DEBUG: Seat seat0: Creating display server of type x [+0.04s] DEBUG: Using VT 7 [+0.04s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.04s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.04s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.04s] DEBUG: XServer 0: Launching X Server [+0.04s] DEBUG: Launching process 681: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.04s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.04s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.04s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.99s] DEBUG: Process 681 terminated with signal 6 [+0.99s] DEBUG: XServer 0: X server stopped [+0.99s] DEBUG: Releasing VT 7 [+0.99s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.99s] DEBUG: Seat seat0: Display server stopped [+0.99s] DEBUG: Launching process 683: /sbin/prime-switch [+1.01s] DEBUG: Process 683 exited with return value 0 [+1.01s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.01s] DEBUG: Seat seat0: Stopping session [+1.01s] DEBUG: Seat seat0: Session stopped [+1.01s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.01s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+1.01s] DEBUG: Seat seat0: Creating greeter session [+1.01s] DEBUG: Seat seat0: Creating display server of type x [+1.01s] DEBUG: Using VT 7 [+1.01s] DEBUG: Seat seat0: Starting local X display on VT 7 [+1.01s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+1.01s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+1.01s] DEBUG: XServer 0: Launching X Server [+1.01s] DEBUG: Launching process 686: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+1.01s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.76s] DEBUG: Process 686 terminated with signal 6 [+1.76s] DEBUG: XServer 0: X server stopped [+1.76s] DEBUG: Releasing VT 7 [+1.76s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.76s] DEBUG: Seat seat0: Display server stopped [+1.76s] DEBUG: Launching process 695: /sbin/prime-switch [+1.77s] DEBUG: Process 695 exited with return value 0 [+1.77s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.77s] DEBUG: Seat seat0: Stopping session [+1.77s] DEBUG: Seat seat0: Session stopped [+1.77s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.77s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.77s] DEBUG: Seat seat0: Stopping [+1.77s] DEBUG: Seat seat0: Stopped [+1.77s] DEBUG: Required seat has stopped [+1.77s] DEBUG: Stopping display manager [+1.77s] DEBUG: Display manager stopped [+1.77s] DEBUG: Stopping daemon [+1.78s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=733 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.02s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.02s] DEBUG: Seat seat0: Starting [+0.02s] DEBUG: Seat seat0: Creating user session [+0.03s] DEBUG: Loading users from org.freedesktop.Accounts [+0.03s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.05s] DEBUG: Seat seat0: Creating display server of type x [+0.05s] DEBUG: Using VT 7 [+0.05s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.05s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.05s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.05s] DEBUG: XServer 0: Launching X Server [+0.05s] DEBUG: Launching process 774: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.06s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.06s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.06s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.76s] DEBUG: Process 774 terminated with signal 6 [+0.76s] DEBUG: XServer 0: X server stopped [+0.76s] DEBUG: Releasing VT 7 [+0.76s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.76s] DEBUG: Seat seat0: Display server stopped [+0.76s] DEBUG: Launching process 795: /sbin/prime-switch [+0.77s] DEBUG: Process 795 exited with return value 0 [+0.77s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.77s] DEBUG: Seat seat0: Stopping session [+0.77s] DEBUG: Seat seat0: Session stopped [+0.77s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.77s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.77s] DEBUG: Seat seat0: Creating greeter session [+0.77s] DEBUG: Seat seat0: Creating display server of type x [+0.77s] DEBUG: Using VT 7 [+0.77s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.77s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.77s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.77s] DEBUG: XServer 0: Launching X Server [+0.77s] DEBUG: Launching process 798: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.77s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.47s] DEBUG: Process 798 terminated with signal 6 [+1.47s] DEBUG: XServer 0: X server stopped [+1.47s] DEBUG: Releasing VT 7 [+1.47s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.47s] DEBUG: Seat seat0: Display server stopped [+1.47s] DEBUG: Launching process 801: /sbin/prime-switch [+1.48s] DEBUG: Process 801 exited with return value 0 [+1.48s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.48s] DEBUG: Seat seat0: Stopping session [+1.48s] DEBUG: Seat seat0: Session stopped [+1.48s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.48s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.48s] DEBUG: Seat seat0: Stopping [+1.48s] DEBUG: Seat seat0: Stopped [+1.48s] DEBUG: Required seat has stopped [+1.48s] DEBUG: Stopping display manager [+1.48s] DEBUG: Display manager stopped [+1.48s] DEBUG: Stopping daemon [+1.49s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=807 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.02s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.02s] DEBUG: Seat seat0: Starting [+0.02s] DEBUG: Seat seat0: Creating user session [+0.03s] DEBUG: Loading users from org.freedesktop.Accounts [+0.03s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.05s] DEBUG: Seat seat0: Creating display server of type x [+0.06s] DEBUG: Using VT 7 [+0.06s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.06s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.06s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.06s] DEBUG: XServer 0: Launching X Server [+0.07s] DEBUG: Launching process 813: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.07s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.07s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.07s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.80s] DEBUG: Process 813 terminated with signal 6 [+0.80s] DEBUG: XServer 0: X server stopped [+0.80s] DEBUG: Releasing VT 7 [+0.80s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.80s] DEBUG: Seat seat0: Display server stopped [+0.80s] DEBUG: Launching process 815: /sbin/prime-switch [+0.81s] DEBUG: Process 815 exited with return value 0 [+0.81s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.81s] DEBUG: Seat seat0: Stopping session [+0.81s] DEBUG: Seat seat0: Session stopped [+0.81s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.81s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.81s] DEBUG: Seat seat0: Creating greeter session [+0.81s] DEBUG: Seat seat0: Creating display server of type x [+0.81s] DEBUG: Using VT 7 [+0.81s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.81s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.81s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.81s] DEBUG: XServer 0: Launching X Server [+0.82s] DEBUG: Launching process 818: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.82s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.58s] DEBUG: Process 818 terminated with signal 6 [+1.58s] DEBUG: XServer 0: X server stopped [+1.58s] DEBUG: Releasing VT 7 [+1.58s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.58s] DEBUG: Seat seat0: Display server stopped [+1.58s] DEBUG: Launching process 820: /sbin/prime-switch [+1.59s] DEBUG: Process 820 exited with return value 0 [+1.59s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.59s] DEBUG: Seat seat0: Stopping session [+1.59s] DEBUG: Seat seat0: Session stopped [+1.59s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.59s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.59s] DEBUG: Seat seat0: Stopping [+1.59s] DEBUG: Seat seat0: Stopped [+1.59s] DEBUG: Required seat has stopped [+1.59s] DEBUG: Stopping display manager [+1.59s] DEBUG: Display manager stopped [+1.59s] DEBUG: Stopping daemon [+1.60s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=832 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.02s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.02s] DEBUG: Seat seat0: Starting [+0.02s] DEBUG: Seat seat0: Creating user session [+0.03s] DEBUG: Loading users from org.freedesktop.Accounts [+0.03s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.04s] DEBUG: Seat seat0: Creating display server of type x [+0.05s] DEBUG: Using VT 7 [+0.05s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.05s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.05s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.05s] DEBUG: XServer 0: Launching X Server [+0.05s] DEBUG: Launching process 848: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.05s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.05s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.05s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.80s] DEBUG: Process 848 terminated with signal 6 [+0.80s] DEBUG: XServer 0: X server stopped [+0.80s] DEBUG: Releasing VT 7 [+0.80s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.80s] DEBUG: Seat seat0: Display server stopped [+0.80s] DEBUG: Launching process 931: /sbin/prime-switch [+0.82s] DEBUG: Process 931 exited with return value 0 [+0.82s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.82s] DEBUG: Seat seat0: Stopping session [+0.82s] DEBUG: Seat seat0: Session stopped [+0.82s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.82s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.82s] DEBUG: Seat seat0: Creating greeter session [+0.82s] DEBUG: Seat seat0: Creating display server of type x [+0.82s] DEBUG: Using VT 7 [+0.82s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.82s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.82s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.82s] DEBUG: XServer 0: Launching X Server [+0.82s] DEBUG: Launching process 935: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.82s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.54s] DEBUG: Process 935 terminated with signal 6 [+1.54s] DEBUG: XServer 0: X server stopped [+1.54s] DEBUG: Releasing VT 7 [+1.54s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.54s] DEBUG: Seat seat0: Display server stopped [+1.54s] DEBUG: Launching process 951: /sbin/prime-switch [+1.56s] DEBUG: Process 951 exited with return value 0 [+1.56s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.56s] DEBUG: Seat seat0: Stopping session [+1.56s] DEBUG: Seat seat0: Session stopped [+1.56s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.56s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.56s] DEBUG: Seat seat0: Stopping [+1.56s] DEBUG: Seat seat0: Stopped [+1.56s] DEBUG: Required seat has stopped [+1.56s] DEBUG: Stopping display manager [+1.56s] DEBUG: Display manager stopped [+1.56s] DEBUG: Stopping daemon [+1.57s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=957 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.02s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.02s] DEBUG: Seat seat0: Starting [+0.02s] DEBUG: Seat seat0: Creating user session [+0.03s] DEBUG: Loading users from org.freedesktop.Accounts [+0.03s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.04s] DEBUG: Seat seat0: Creating display server of type x [+0.05s] DEBUG: Using VT 7 [+0.05s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.05s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.05s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.05s] DEBUG: XServer 0: Launching X Server [+0.05s] DEBUG: Launching process 963: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.05s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.05s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.05s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.77s] DEBUG: Process 963 terminated with signal 6 [+0.77s] DEBUG: XServer 0: X server stopped [+0.77s] DEBUG: Releasing VT 7 [+0.77s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.77s] DEBUG: Seat seat0: Display server stopped [+0.77s] DEBUG: Launching process 965: /sbin/prime-switch [+0.78s] DEBUG: Process 965 exited with return value 0 [+0.78s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.78s] DEBUG: Seat seat0: Stopping session [+0.78s] DEBUG: Seat seat0: Session stopped [+0.78s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.78s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.78s] DEBUG: Seat seat0: Creating greeter session [+0.79s] DEBUG: Seat seat0: Creating display server of type x [+0.79s] DEBUG: Using VT 7 [+0.79s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.79s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.79s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.79s] DEBUG: XServer 0: Launching X Server [+0.79s] DEBUG: Launching process 968: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.79s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.46s] DEBUG: Process 968 terminated with signal 6 [+1.46s] DEBUG: XServer 0: X server stopped [+1.46s] DEBUG: Releasing VT 7 [+1.46s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.46s] DEBUG: Seat seat0: Display server stopped [+1.46s] DEBUG: Launching process 970: /sbin/prime-switch [+1.47s] DEBUG: Process 970 exited with return value 0 [+1.47s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.47s] DEBUG: Seat seat0: Stopping session [+1.47s] DEBUG: Seat seat0: Session stopped [+1.47s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.47s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.47s] DEBUG: Seat seat0: Stopping [+1.47s] DEBUG: Seat seat0: Stopped [+1.47s] DEBUG: Required seat has stopped [+1.47s] DEBUG: Stopping display manager [+1.47s] DEBUG: Display manager stopped [+1.47s] DEBUG: Stopping daemon [+1.47s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=976 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.02s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.02s] DEBUG: Seat seat0: Starting [+0.02s] DEBUG: Seat seat0: Creating user session [+0.03s] DEBUG: Loading users from org.freedesktop.Accounts [+0.03s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.04s] DEBUG: Seat seat0: Creating display server of type x [+0.05s] DEBUG: Using VT 7 [+0.05s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.05s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.05s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.05s] DEBUG: XServer 0: Launching X Server [+0.05s] DEBUG: Launching process 982: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.05s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.06s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.06s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.82s] DEBUG: Process 982 terminated with signal 6 [+0.82s] DEBUG: XServer 0: X server stopped [+0.82s] DEBUG: Releasing VT 7 [+0.82s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.82s] DEBUG: Seat seat0: Display server stopped [+0.82s] DEBUG: Launching process 984: /sbin/prime-switch [+0.83s] DEBUG: Process 984 exited with return value 0 [+0.83s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.83s] DEBUG: Seat seat0: Stopping session [+0.83s] DEBUG: Seat seat0: Session stopped [+0.83s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.83s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.83s] DEBUG: Seat seat0: Creating greeter session [+0.83s] DEBUG: Seat seat0: Creating display server of type x [+0.83s] DEBUG: Using VT 7 [+0.83s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.83s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.83s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.83s] DEBUG: XServer 0: Launching X Server [+0.83s] DEBUG: Launching process 987: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.83s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.54s] DEBUG: Process 987 terminated with signal 6 [+1.54s] DEBUG: XServer 0: X server stopped [+1.54s] DEBUG: Releasing VT 7 [+1.54s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.54s] DEBUG: Seat seat0: Display server stopped [+1.54s] DEBUG: Launching process 989: /sbin/prime-switch [+1.56s] DEBUG: Process 989 exited with return value 0 [+1.56s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.56s] DEBUG: Seat seat0: Stopping session [+1.56s] DEBUG: Seat seat0: Session stopped [+1.56s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.56s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.56s] DEBUG: Seat seat0: Stopping [+1.56s] DEBUG: Seat seat0: Stopped [+1.56s] DEBUG: Required seat has stopped [+1.56s] DEBUG: Stopping display manager [+1.56s] DEBUG: Display manager stopped [+1.56s] DEBUG: Stopping daemon [+1.58s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=995 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.03s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.03s] DEBUG: Seat seat0: Starting [+0.03s] DEBUG: Seat seat0: Creating user session [+0.03s] DEBUG: Loading users from org.freedesktop.Accounts [+0.03s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.06s] DEBUG: Seat seat0: Creating display server of type x [+0.07s] DEBUG: Using VT 7 [+0.07s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.07s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.07s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.07s] DEBUG: XServer 0: Launching X Server [+0.07s] DEBUG: Launching process 1001: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.07s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.07s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.07s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.80s] DEBUG: Process 1001 terminated with signal 6 [+0.80s] DEBUG: XServer 0: X server stopped [+0.80s] DEBUG: Releasing VT 7 [+0.80s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.80s] DEBUG: Seat seat0: Display server stopped [+0.80s] DEBUG: Launching process 1003: /sbin/prime-switch [+0.81s] DEBUG: Process 1003 exited with return value 0 [+0.81s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.81s] DEBUG: Seat seat0: Stopping session [+0.81s] DEBUG: Seat seat0: Session stopped [+0.81s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.81s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.81s] DEBUG: Seat seat0: Creating greeter session [+0.81s] DEBUG: Seat seat0: Creating display server of type x [+0.81s] DEBUG: Using VT 7 [+0.81s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.81s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.81s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.81s] DEBUG: XServer 0: Launching X Server [+0.81s] DEBUG: Launching process 1006: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.81s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.63s] DEBUG: Process 1006 terminated with signal 6 [+1.63s] DEBUG: XServer 0: X server stopped [+1.63s] DEBUG: Releasing VT 7 [+1.63s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.63s] DEBUG: Seat seat0: Display server stopped [+1.63s] DEBUG: Launching process 1008: /sbin/prime-switch [+1.64s] DEBUG: Process 1008 exited with return value 0 [+1.64s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.64s] DEBUG: Seat seat0: Stopping session [+1.64s] DEBUG: Seat seat0: Session stopped [+1.64s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.64s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.64s] DEBUG: Seat seat0: Stopping [+1.64s] DEBUG: Seat seat0: Stopped [+1.64s] DEBUG: Required seat has stopped [+1.64s] DEBUG: Stopping display manager [+1.64s] DEBUG: Display manager stopped [+1.64s] DEBUG: Stopping daemon [+1.65s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=1014 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.02s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.02s] DEBUG: Seat seat0: Starting [+0.02s] DEBUG: Seat seat0: Creating user session [+0.02s] DEBUG: Loading users from org.freedesktop.Accounts [+0.02s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.05s] DEBUG: Seat seat0: Creating display server of type x [+0.06s] DEBUG: Using VT 7 [+0.06s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.06s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.06s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.06s] DEBUG: XServer 0: Launching X Server [+0.06s] DEBUG: Launching process 1020: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.06s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.06s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.06s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.90s] DEBUG: Process 1020 terminated with signal 6 [+0.90s] DEBUG: XServer 0: X server stopped [+0.90s] DEBUG: Releasing VT 7 [+0.90s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.90s] DEBUG: Seat seat0: Display server stopped [+0.90s] DEBUG: Launching process 1023: /sbin/prime-switch [+0.91s] DEBUG: Process 1023 exited with return value 0 [+0.91s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.91s] DEBUG: Seat seat0: Stopping session [+0.91s] DEBUG: Seat seat0: Session stopped [+0.91s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.91s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.91s] DEBUG: Seat seat0: Creating greeter session [+0.91s] DEBUG: Seat seat0: Creating display server of type x [+0.91s] DEBUG: Using VT 7 [+0.91s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.91s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.91s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.91s] DEBUG: XServer 0: Launching X Server [+0.91s] DEBUG: Launching process 1026: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.91s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.62s] DEBUG: Process 1026 terminated with signal 6 [+1.62s] DEBUG: XServer 0: X server stopped [+1.62s] DEBUG: Releasing VT 7 [+1.62s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.62s] DEBUG: Seat seat0: Display server stopped [+1.62s] DEBUG: Launching process 1028: /sbin/prime-switch [+1.63s] DEBUG: Process 1028 exited with return value 0 [+1.63s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.63s] DEBUG: Seat seat0: Stopping session [+1.63s] DEBUG: Seat seat0: Session stopped [+1.63s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.63s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.63s] DEBUG: Seat seat0: Stopping [+1.63s] DEBUG: Seat seat0: Stopped [+1.63s] DEBUG: Required seat has stopped [+1.63s] DEBUG: Stopping display manager [+1.63s] DEBUG: Display manager stopped [+1.63s] DEBUG: Stopping daemon [+1.64s] DEBUG: Exiting with return value 1 [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log [+0.00s] DEBUG: Starting Light Display Manager 1.26.0, UID=0 PID=1034 [+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-slick-greeter.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu-mate.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf [+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/90-nvidia.conf [+0.00s] DEBUG: [SeatDefaults] is now called [Seat:], please update this configuration [+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d [+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf [+0.00s] DEBUG: Registered seat module local [+0.00s] DEBUG: Registered seat module xremote [+0.00s] DEBUG: Registered seat module unity [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager [+0.02s] DEBUG: Monitoring logind for seats [+0.02s] DEBUG: New seat added from logind: seat0 [+0.02s] WARNING: Seat type 'xlocal' is deprecated, use 'type=local' instead [+0.02s] DEBUG: Seat seat0: Loading properties from config section Seat: [+0.02s] DEBUG: Seat seat0: Starting [+0.02s] DEBUG: Seat seat0: Creating user session [+0.03s] DEBUG: Loading users from org.freedesktop.Accounts [+0.03s] DEBUG: User /org/freedesktop/Accounts/User1000 added [+0.05s] DEBUG: Seat seat0: Creating display server of type x [+0.06s] DEBUG: Using VT 7 [+0.06s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.06s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.06s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.06s] DEBUG: XServer 0: Launching X Server [+0.06s] DEBUG: Launching process 1039: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.06s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+0.06s] DEBUG: Acquired bus name org.freedesktop.DisplayManager [+0.06s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0 [+0.89s] DEBUG: Process 1039 terminated with signal 6 [+0.89s] DEBUG: XServer 0: X server stopped [+0.89s] DEBUG: Releasing VT 7 [+0.89s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+0.89s] DEBUG: Seat seat0: Display server stopped [+0.89s] DEBUG: Launching process 1043: /sbin/prime-switch [+0.90s] DEBUG: Process 1043 exited with return value 0 [+0.90s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+0.90s] DEBUG: Seat seat0: Stopping session [+0.90s] DEBUG: Seat seat0: Session stopped [+0.90s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+0.90s] DEBUG: Seat seat0: Active display server stopped, starting greeter [+0.90s] DEBUG: Seat seat0: Creating greeter session [+0.90s] DEBUG: Seat seat0: Creating display server of type x [+0.90s] DEBUG: Using VT 7 [+0.90s] DEBUG: Seat seat0: Starting local X display on VT 7 [+0.90s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log [+0.90s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0 [+0.90s] DEBUG: XServer 0: Launching X Server [+0.90s] DEBUG: Launching process 1046: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch [+0.91s] DEBUG: XServer 0: Waiting for ready signal from X server :0 [+1.65s] DEBUG: Process 1046 terminated with signal 6 [+1.65s] DEBUG: XServer 0: X server stopped [+1.65s] DEBUG: Releasing VT 7 [+1.65s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0 [+1.65s] DEBUG: Seat seat0: Display server stopped [+1.65s] DEBUG: Launching process 1048: /sbin/prime-switch [+1.66s] DEBUG: Process 1048 exited with return value 0 [+1.66s] DEBUG: Seat seat0: Exit status of /sbin/prime-switch: 0 [+1.66s] DEBUG: Seat seat0: Stopping session [+1.66s] DEBUG: Seat seat0: Session stopped [+1.66s] DEBUG: Seat seat0: Stopping display server, no sessions require it [+1.66s] DEBUG: Seat seat0: Stopping; greeter display server failed to start [+1.66s] DEBUG: Seat seat0: Stopping [+1.66s] DEBUG: Seat seat0: Stopped [+1.66s] DEBUG: Required seat has stopped [+1.66s] DEBUG: Stopping display manager [+1.66s] DEBUG: Display manager stopped [+1.66s] DEBUG: Stopping daemon [+1.67s] DEBUG: Exiting with return value 1

Namburger commented 4 years ago

So sorry, we've been a little behind schedule as our new edgetpu runtime release. The issues looks like lightdm failed to start due to xserver stopping. I'm not an expert in lightdm, but as I mentioned, our drivers shouldn't do anything with the lightdm process. Are able to turn it back on with this:

$ lightdm --test-mode --debug

I imagine that this could be a side effect of the weird hack we did to fix the linux-header package, for this I suggest contacting the Rock Pi team for help as linux-headers should have been compiled correctly in the first place. Another thing I'd check is to make sure that the board are getting enough power.

blazczak commented 3 years ago

@Namburger FYI I'm experiencing the same issue as OP of the TPU pcie driver affecting Debian KDE on Rock Pi (mine is 4C). Desktop loads fine before installing the TPU drivers, then after the TPU drivers are installed KDE does not load (blank screen with cursor).

Once gasket-dkms and libedgetpu1-std are uninstalled through a remote shell session, the KDE comes back after reboot. This can be reproduced many times over.

There appears to be an interaction between the drivers and KDE, where the driver code prevents the subsequent init/load of KDE. Manual compilation of literally a handful of files in the linux-headers package (recordmcount.c, fixdep.c, file2alias.c, devicetable-offsets.c, modpost.c) referred above as a weird hack could not possibly cause the side-effect of hosing the entire KDE. More probable is a resource conflict created by the installed driver.

This may be regarded as low severity but should be evaluated for cause and remedy. Since in this case desktop and TPU drivers cannot coexist, users who need to use KDE for normal operation are effectively blocked from being able to use your product.

marcin-kamionowski commented 3 years ago

Hi! Could you check /var/log/Xorg.0.log ? If you see msg like Cannot run in framebuffer mode. Please specify busIDs for all framebuffer devices you should check X.org config files. In my case, I fixed it by adding to /etc/X11/xorg.conf.d/01-armbian-defaults.conf:

Section "Device"
    Identifier  "Rockchip"
    Driver "fbdev"
EndSection

It looks like xserver is confused with TPU pci device. Normally it see only framebuffer device. It does not know what device it should use so it shutdowns.

blazczak commented 3 years ago

This confirms the interaction between KDE (X11) and tpu driver/software suspected earlier.

@marcin-kamionowski did you get it all to work reliably with the Radxa software after adding the above change? I first saw this issue with the Radxa linux distrib for Rock Pi 4C but since it didn't have a good camera (imx219) support I abandoned the OEM distrib. Armbian server (no desktop) works ok for me.