Qemu2.x boot sdcard raw image with -M raspi2

99 篇文章 0 订阅
26 篇文章 1 订阅

# Qemu2.x boot sdcard raw image with -M raspi2

 

## Qemu info

qemu-system-arm  -version

QEMU emulator version 2.9.1

Copyright (c) 2003-2017 Fabrice Bellard and the QEMU Project developers


 

## virtual machine -M raspi2

qemu support raspi2 from 2.6

Note USB/Mouse keyboard is not OK yet for Raspi



 

## Get vfat partiion from raw image


 

[lake@galaxy 2019-04-08-raspbian-stretch]$ sudo fdisk   -l   2019-04-08-raspbian-stretch.img               Disk 2019-04-08-raspbian-stretch.img: 3.2 GiB, 3481272320 bytes, 6799360 sectors

Units: sectors of 1 * 512 = 512 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disklabel type: dos

Disk identifier: 0xcd48578f

 

Device                           Boot Start     End Sectors  Size Id Type

2019-04-08-raspbian-stretch.img1       8192   96042   87851 42.9M  c W95 FAT32 (LBA)

2019-04-08-raspbian-stretch.img2      98304 6799359 6701056  3.2G 83 Linux

[lake@galaxy 2019-04-08-raspbian-stretch]$ expr   8192 \* 512

4194304

[lake@galaxy 2019-04-08-raspbian-stretch]$ echo 8192*512  |bc

4194304


 

[lake@galaxy 2019-04-08-raspbian-stretch]$ sudo  mount -o loop,offset=4194304  -t vfat   2019-04-08-raspbian-stretch.img      boot/

[lake@galaxy 2019-04-08-raspbian-stretch]$ ls -l boot

total 21623

-rwxr-xr-x 1 root root   23315 Sep 20  2018 bcm2708-rpi-0-w.dtb

-rwxr-xr-x 1 root root   22812 Sep 20  2018 bcm2708-rpi-b.dtb

-rwxr-xr-x 1 root root   23071 Sep 20  2018 bcm2708-rpi-b-plus.dtb

-rwxr-xr-x 1 root root   22589 Sep 20  2018 bcm2708-rpi-cm.dtb

-rwxr-xr-x 1 root root   24115 Sep 20  2018 bcm2709-rpi-2-b.dtb

-rwxr-xr-x 1 root root   25311 Sep 20  2018 bcm2710-rpi-3-b.dtb

-rwxr-xr-x 1 root root   25914 Feb 18  2019 bcm2710-rpi-3-b-plus.dtb

-rwxr-xr-x 1 root root   24087 Sep 20  2018 bcm2710-rpi-cm3.dtb

-rwxr-xr-x 1 root root   52296 Feb 18  2019 bootcode.bin

-rwxr-xr-x 1 root root     229 Apr  8  2019 cmdline.txt

-rwxr-xr-x 1 root root    1590 Apr  8  2019 config.txt

-rwxr-xr-x 1 root root   18693 Mar 10  2018 COPYING.linux

-rwxr-xr-x 1 root root    2622 Apr  1  2019 fixup_cd.dat

-rwxr-xr-x 1 root root    6701 Apr  1  2019 fixup.dat

-rwxr-xr-x 1 root root    9750 Apr  1  2019 fixup_db.dat

-rwxr-xr-x 1 root root    9752 Apr  1  2019 fixup_x.dat

-rwxr-xr-x 1 root root     145 Apr  8  2019 issue.txt

-rwxr-xr-x 1 root root 4944992 Feb 18  2019 kernel7.img

-rwxr-xr-x 1 root root 4698056 Feb 18  2019 kernel.img

-rwxr-xr-x 1 root root    1494 Mar 10  2018 LICENCE.broadcom

-rwxr-xr-x 1 root root   18974 Apr  8  2019 LICENSE.oracle

drwxr-xr-x 2 root root   13312 Apr  8  2019 overlays

-rwxr-xr-x 1 root root  683460 Apr  1  2019 start_cd.elf

-rwxr-xr-x 1 root root 4830756 Apr  1  2019 start_db.elf

-rwxr-xr-x 1 root root 2873444 Apr  1  2019 start.elf

-rwxr-xr-x 1 root root 3774980 Apr  1  2019 start_x.elf

[lake@galaxy 2019-04-08-raspbian-stretch]$ mkdir  boot2

[lake@galaxy 2019-04-08-raspbian-stretch]$ cp -ar -p boot/*  boot2^C

[lake@galaxy 2019-04-08-raspbian-stretch]$ cp -ar -p boot  boot2

[lake@galaxy 2019-04-08-raspbian-stretch]$ sudo  umount  boot

[lake@galaxy 2019-04-08-raspbian-stretch]$

 

## raw sd image boot fails


 
[lake@galaxy 2019-04-08-raspbian-stretch]$  qemu-system-arm -M raspi2 -kernel boot/kernel7.img -sd ./2019-04-08-raspbian-stretch.img   -append "rw earlyprintk loglevel=8 console=ttyAMA0,115200 dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2"  -dtb boot/bcm2709-rpi-2-b.dtb -serial stdio -L /home/lake/usr/share/qemu/
WARNING: Image format was not specified for './2019-04-08-raspbian-stretch.img' and probing guessed raw.
         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
         Specify the 'raw' format explicitly to remove the restrictions.
[    0.000000] Booting Linux on physical CPU 0xf00
[    0.000000] Linux version 4.14.98-v7+ (dom@dom-XPS-13-9370) (gcc version 4.9.3 (crosstool-NG crosstool-ng-1.22.0-88-g8460611)) #1200 SMP Tue Feb 12 20:27:48 GMT 2019
[    0.000000] CPU: ARMv7 Processor [412fc0f1] revision 1 (ARMv7), cr=10c5387d
[    0.000000] CPU: div instructions available: patching division code
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[    0.000000] OF: fdt: Machine model: Raspberry Pi 2 Model B
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] cma: Reserved 8 MiB at 0x3b800000
[    0.000000] On node 0 totalpages: 245760
[    0.000000] free_area_init_node: node 0, pgdat 80c85780, node_mem_map baf84000
[    0.000000]   Normal zone: 2160 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
 .....................
[    8.988788] [<807a1f80>] (kernel_init) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    8.991739] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)

 


####  format=raw to resolve VFS mount issue  


[lake@galaxy 2019-04-08-raspbian-stretch]$  qemu-system-arm -M raspi2 -kernel boot/kernel7.img -drive if=sd,index=0,media=disk,format=raw,file=./2019-04-08-raspbian-stretch.img   -append "rw earlyprintk loglevel=8 console=ttyAMA0,115200 dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2"  -dtb boot/bcm2709-rpi-2-b.dtb -serial stdio -L /home/lake/usr/share/qemu/
[    0.000000] Booting Linux on physical CPU 0xf00
[    0.000000] Linux version 4.14.98-v7+ (dom@dom-XPS-13-9370) (gcc version 4.9.3 (crosstool-NG crosstool-ng-1.22.0-88-g8460611)) #1200 SMP Tue Feb 12 20:27:48 GMT 2019
[    0.000000] CPU: ARMv7 Processor [412fc0f1] revision 1 (ARMv7), cr=10c5387d
[    0.000000] CPU: div instructions available: patching division code
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[    0.000000] OF: fdt: Machine model: Raspberry Pi 2 Model B
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] cma: Reserved 8 MiB at 0x3b800000
[    0.000000] On node 0 totalpages: 245760
[    0.000000] free_area_init_node: node 0, pgdat 80c85780, node_mem_map baf84000
[    0.000000]   Normal zone: 2160 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 245760 pages, LIFO batch:31
[    0.000000] percpu: Embedded 17 pages/cpu @baf2e000 s38720 r8192 d22720 u69632
[    0.000000] pcpu-alloc: s38720 r8192 d22720 u69632 alloc=17*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 243600
[    0.000000] Kernel command line: rw earlyprintk loglevel=8 console=ttyAMA0,115200 dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Memory: 952376K/983040K available (7168K kernel code, 577K rwdata, 2080K rodata, 1024K init, 698K bss, 22472K reserved, 8192K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xbc800000 - 0xff800000   (1072 MB)
[    0.000000]     lowmem  : 0x80000000 - 0xbc000000   ( 960 MB)
[    0.000000]     modules : 0x7f000000 - 0x80000000   (  16 MB)
[    0.000000]       .text : 0x80008000 - 0x80800000   (8160 kB)
[    0.000000]       .init : 0x80b00000 - 0x80c00000   (1024 kB)
[    0.000000]       .data : 0x80c00000 - 0x80c906d4   ( 578 kB)
[    0.000000]        .bss : 0x80c97ef8 - 0x80d468f0   ( 699 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] ftrace: allocating 25298 entries in 75 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] arch_timer: cp15 timer(s) running at 62.50MHz (virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1cd42e208c, max_idle_ns: 881590405314 ns
[    0.000557] sched_clock: 56 bits at 62MHz, resolution 16ns, wraps every 4398046511096ns
[    0.001074] Switching to timer-based delay loop, resolution 16ns
[    0.031523] Console: colour dummy device 80x30
[    0.034008] Calibrating delay loop (skipped), value calculated using timer frequency.. 125.00 BogoMIPS (lpj=625000)
[    0.034635] pid_max: default: 32768 minimum: 301
[    0.044980] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.045171] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.100510] Disabling memory control group subsystem
[    0.103420] CPU: Testing write buffer coherency: ok
[    0.107627] CPU0: Spectre v2: firmware did not set auxiliary control register IBE bit, system vulnerable
[    0.149974] CPU0: update cpu_capacity 1024
[    0.150268] CPU0: thread -1, cpu 0, socket 15, mpidr 80000f00
[    0.167818] Setting up static identity map for 0x100000 - 0x10003c
[    0.171762] Hierarchical SRCU implementation.
[    0.190302] smp: Bringing up secondary CPUs ...
[    1.258346] CPU1: failed to come online
[    2.336677] CPU2: failed to come online
[    3.413207] CPU3: failed to come online
[    3.414232] smp: Brought up 1 node, 1 CPU
[    3.414854] SMP: Total of 1 processors activated (125.00 BogoMIPS).
[    3.415253] CPU: All CPU(s) started in SVC mode.
[    3.479472] devtmpfs: initialized
[    3.588631] random: get_random_u32 called from bucket_table_alloc+0xfc/0x24c with crng_init=0
[    3.599790] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
[    3.666981] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    3.670178] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    3.690119] pinctrl core: initialized pinctrl subsystem
[    3.748122] NET: Registered protocol family 16
[    3.784216] DMA: preallocated 1024 KiB pool for atomic coherent allocations
[    3.839404] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[    3.839715] hw-breakpoint: maximum watchpoint size is 8 bytes.
[    3.845367] Serial: AMBA PL011 UART driver
[    3.894490] bcm2835-mbox 3f00b880.mailbox: mailbox enabled
[    4.241039] bcm2835-dma 3f007000.dma: DMA legacy API manager at bc813000, dmachans=0x1
[    4.264962] SCSI subsystem initialized
[    4.268663] usbcore: registered new interface driver usbfs
[    4.269977] usbcore: registered new interface driver hub
[    4.271847] usbcore: registered new device driver usb
[    4.290794] raspberrypi-firmware soc:firmware: Attached to firmware from 1970-01-05 00:12
[    4.334289] clocksource: Switched to clocksource arch_sys_counter
[    4.988925] VFS: Disk quotas dquot_6.6.0
[    4.989813] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    4.992734] FS-Cache: Loaded
[    5.006175] CacheFiles: Loaded
[    5.099735] NET: Registered protocol family 2
[    5.122011] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    5.122688] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    5.123323] TCP: Hash tables configured (established 8192 bind 8192)
[    5.127713] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    5.128318] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    5.135240] NET: Registered protocol family 1
[    5.146308] RPC: Registered named UNIX socket transport module.
[    5.146515] RPC: Registered udp transport module.
[    5.146622] RPC: Registered tcp transport module.
[    5.146709] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.180020] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 1 counters available
[    5.212097] workingset: timestamp_bits=14 max_order=18 bucket_order=4
[    5.287364] FS-Cache: Netfs 'nfs' registered for caching
[    5.295363] NFS: Registering the id_resolver key type
[    5.298845] Key type id_resolver registered
[    5.299016] Key type id_legacy registered
[    5.299497] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    5.344544] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    5.348823] io scheduler noop registered
[    5.349066] io scheduler deadline registered
[    5.351084] io scheduler cfq registered (default)
[    5.351278] io scheduler mq-deadline registered
[    5.354011] io scheduler kyber registered
[    5.381325] BCM2708FB: allocated DMA memory fb900000
[    5.382768] BCM2708FB: allocated DMA channel 0 @ bc813000
[    5.464753] Console: switching to colour frame buffer device 100x30
[    5.516245] bcm2835-rng 3f104000.rng: hwrng registered
[    5.517725] vc-mem: phys_addr:0x00000000 mem_base=0x00000000 mem_size:0x00000000(0 MiB)
[    5.523696] vc-sm: Videocore shared memory driver
[    5.527411] gpiomem-bcm2835 3f200000.gpiomem: Initialised: Registers at 0x3f200000
[    5.666027] brd: module loaded
[    5.748032] loop: module loaded
[    5.748286] Loading iSCSI transport class v2.0-870.
[    5.757649] libphy: Fixed MDIO Bus: probed
[    5.758829] usbcore: registered new interface driver lan78xx
[    5.759464] usbcore: registered new interface driver smsc95xx
[    5.759814] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
[    5.765168] dwc_otg 3f980000.usb: base=0xf0980000
[    6.006292] Core Release: 0.000
[    6.006949] Setting default values for core params
[    6.012980] Finished setting default values for core params
[    6.013816] dwc_otg 3f980000.usb: Bad value for SNPSID: 0x00000000
[    6.017052] dwc_otg: probe of 3f980000.usb failed with error -22
[    6.017782] dwc_otg: FIQ enabled
[    6.017891] dwc_otg: NAK holdoff enabled
[    6.017990] dwc_otg: FIQ split-transaction FSM enabled
[    6.018272] Module dwc_common_port init
[    6.020390] usbcore: registered new interface driver usb-storage
[    6.023779] mousedev: PS/2 mouse device common for all mice
[    6.030208] IR NEC protocol handler initialized
[    6.030374] IR RC5(x/sz) protocol handler initialized
[    6.030515] IR RC6 protocol handler initialized
[    6.030663] IR JVC protocol handler initialized
[    6.030803] IR Sony protocol handler initialized
[    6.030956] IR SANYO protocol handler initialized
[    6.031102] IR Sharp protocol handler initialized
[    6.031272] IR MCE Keyboard/mouse protocol handler initialized
[    6.031928] IR XMP protocol handler initialized
[    6.066115] bcm2835-wdt 3f100000.watchdog: Broadcom BCM2835 watchdog timer
[    6.070828] bcm2835-cpufreq: min=700000 max=700000
[    6.079575] sdhci: Secure Digital Host Controller Interface driver
[    6.079680] sdhci: Copyright(c) Pierre Ossman
[    6.092767] sdhost-bcm2835 3f202000.mmc: could not get clk, deferring probe
[    6.096564] sdhci-pltfm: SDHCI platform and OF driver helper
[    6.109846] ledtrig-cpu: registered to indicate activity on CPUs
[    6.112669] hidraw: raw HID events driver (C) Jiri Kosina
[    6.114411] usbcore: registered new interface driver usbhid
[    6.114523] usbhid: USB HID core driver
[    6.120115] vchiq: vchiq_init_state: slot_zero = bb980000, is_master = 0
[    6.128029] bcm2835_vchiq 3f00b840.vchiq: failed to set channelbase
[    6.128242] vchiq: could not load vchiq
[    6.137813] Initializing XFRM netlink socket
[    6.138903] NET: Registered protocol family 17
[    6.143266] Key type dns_resolver registered
[    6.145670] Registering SWP/SWPB emulation handler
[    6.153657] registered taskstats version 1
[    6.271274] bcm2835-clk 3f101000.cprman: plla: couldn't lock PLL
[    6.272377] ------------[ cut here ]------------
[    6.273784] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    6.274049] Modules linked in:
[    6.274991] CPU: 0 PID: 3 Comm: kworker/0:0 Not tainted 4.14.98-v7+ #1200
[    6.275113] Hardware name: BCM2835
[    6.276232] Workqueue: events deferred_probe_work_func
[    6.278358] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    6.278621] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    6.278919] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    6.279060] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    6.279199] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    6.279344] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    6.279475] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    6.279606] [<804f6100>] (devm_clk_hw_register) from [<804fae08>] (bcm2835_register_pll+0xac/0xd4)
[    6.279738] [<804fae08>] (bcm2835_register_pll) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    6.279872] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    6.280005] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    6.280134] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    6.280264] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    6.280390] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    6.280514] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    6.280638] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    6.280765] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    6.280896] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    6.281028] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    6.281158] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    6.281295] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    6.281677] ---[ end trace a26539f33930f302 ]---
[    6.384223] bcm2835-clk 3f101000.cprman: pllb: couldn't lock PLL
[    6.384329] ------------[ cut here ]------------
[    6.384469] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    6.384542] Modules linked in:
[    6.384859] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    6.384939] Hardware name: BCM2835
[    6.385053] Workqueue: events deferred_probe_work_func
[    6.385250] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    6.385389] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    6.385527] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    6.385663] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    6.385792] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    6.385930] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    6.386060] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    6.386193] [<804f6100>] (devm_clk_hw_register) from [<804fae08>] (bcm2835_register_pll+0xac/0xd4)
[    6.386324] [<804fae08>] (bcm2835_register_pll) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    6.386456] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    6.386586] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    6.386715] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    6.386840] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    6.386977] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    6.387102] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    6.387242] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    6.387369] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    6.387510] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    6.387642] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    6.387783] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    6.387918] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    6.388022] ---[ end trace a26539f33930f303 ]---
[    6.488957] bcm2835-clk 3f101000.cprman: pllc: couldn't lock PLL
[    6.489058] ------------[ cut here ]------------
[    6.489199] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    6.489272] Modules linked in:
[    6.489423] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    6.489501] Hardware name: BCM2835
[    6.489615] Workqueue: events deferred_probe_work_func
[    6.489803] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    6.489942] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    6.490078] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    6.490213] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    6.490343] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    6.490477] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    6.490609] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    6.490740] [<804f6100>] (devm_clk_hw_register) from [<804fae08>] (bcm2835_register_pll+0xac/0xd4)
[    6.490871] [<804fae08>] (bcm2835_register_pll) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    6.491003] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    6.491133] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    6.491264] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    6.491416] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    6.491608] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    6.491798] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    6.491989] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    6.492190] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    6.492388] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    6.492589] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    6.492785] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    6.492988] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    6.493128] ---[ end trace a26539f33930f304 ]---
[    6.594159] bcm2835-clk 3f101000.cprman: plld: couldn't lock PLL
[    6.594260] ------------[ cut here ]------------
[    6.594396] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    6.594469] Modules linked in:
[    6.594620] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    6.594700] Hardware name: BCM2835
[    6.594813] Workqueue: events deferred_probe_work_func
[    6.595002] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    6.595145] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    6.595288] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    6.595426] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    6.595559] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    6.595696] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    6.595828] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    6.595958] [<804f6100>] (devm_clk_hw_register) from [<804fae08>] (bcm2835_register_pll+0xac/0xd4)
[    6.596093] [<804fae08>] (bcm2835_register_pll) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    6.596229] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    6.596362] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    6.596492] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    6.596618] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    6.596741] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    6.596863] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    6.596986] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    6.597111] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    6.597242] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    6.597372] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    6.597498] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    6.597634] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    6.597727] ---[ end trace a26539f33930f305 ]---
[    6.698398] bcm2835-clk 3f101000.cprman: pllh: couldn't lock PLL
[    6.698498] ------------[ cut here ]------------
[    6.698635] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    6.698708] Modules linked in:
[    6.698861] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    6.698940] Hardware name: BCM2835
[    6.699054] Workqueue: events deferred_probe_work_func
[    6.699244] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    6.699385] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    6.699522] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    6.699653] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    6.699782] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    6.699916] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    6.700050] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    6.700185] [<804f6100>] (devm_clk_hw_register) from [<804fae08>] (bcm2835_register_pll+0xac/0xd4)
[    6.700318] [<804fae08>] (bcm2835_register_pll) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    6.700451] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    6.700633] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    6.700762] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    6.700895] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    6.701019] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    6.701143] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    6.701271] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    6.701430] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    6.701628] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    6.701825] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    6.702019] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    6.702228] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    6.702366] ---[ end trace a26539f33930f306 ]---
[    6.804312] bcm2835-clk 3f101000.cprman: plla: couldn't lock PLL
[    6.804451] ------------[ cut here ]------------
[    6.804590] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    6.804663] Modules linked in:
[    6.804814] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    6.804892] Hardware name: BCM2835
[    6.805005] Workqueue: events deferred_probe_work_func
[    6.805197] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    6.805337] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    6.805475] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    6.805613] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    6.805746] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    6.805882] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    6.806014] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    6.806143] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    6.806282] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    6.806414] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    6.806547] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    6.806677] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    6.806802] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    6.806926] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    6.807049] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    6.807176] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    6.807303] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    6.807431] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    6.807560] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    6.807687] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    6.807823] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    6.807915] ---[ end trace a26539f33930f307 ]---
[    6.909500] bcm2835-clk 3f101000.cprman: plla: couldn't lock PLL
[    6.909597] ------------[ cut here ]------------
[    6.909732] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    6.909804] Modules linked in:
[    6.909955] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    6.910033] Hardware name: BCM2835
[    6.910147] Workqueue: events deferred_probe_work_func
[    6.910337] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    6.910474] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    6.910609] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    6.910743] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    6.910872] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    6.911006] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    6.911139] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    6.911273] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    6.911440] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    6.911641] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    6.911838] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    6.912034] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    6.912231] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    6.912423] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    6.912613] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    6.912804] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    6.912999] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    6.913199] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    6.913397] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    6.913591] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    6.913795] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    6.913933] ---[ end trace a26539f33930f308 ]---
[    7.014847] bcm2835-clk 3f101000.cprman: pllb: couldn't lock PLL
[    7.014943] ------------[ cut here ]------------
[    7.015077] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.015149] Modules linked in:
[    7.015336] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.015415] Hardware name: BCM2835
[    7.015526] Workqueue: events deferred_probe_work_func
[    7.015712] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.015849] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.015984] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.016117] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.016251] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.016385] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.016514] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.016643] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.016772] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.016902] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.017032] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.017164] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.017290] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.017414] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.017536] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.017660] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.017784] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.017911] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.018040] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.018177] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.018339] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.018431] ---[ end trace a26539f33930f309 ]---
[    7.119239] bcm2835-clk 3f101000.cprman: pllc: couldn't lock PLL
[    7.119336] ------------[ cut here ]------------
[    7.119470] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.119542] Modules linked in:
[    7.119694] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.119772] Hardware name: BCM2835
[    7.119885] Workqueue: events deferred_probe_work_func
[    7.120071] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.120214] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.120351] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.120484] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.120614] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.120750] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.120883] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.121013] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.121146] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.121282] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.121454] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.121650] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.121842] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.122033] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.122227] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.122419] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.122614] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.122810] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.123007] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.123205] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.123409] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.123545] ---[ end trace a26539f33930f30a ]---
[    7.224487] bcm2835-clk 3f101000.cprman: pllc: couldn't lock PLL
[    7.224586] ------------[ cut here ]------------
[    7.224720] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.224793] Modules linked in:
[    7.224943] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.225021] Hardware name: BCM2835
[    7.225133] Workqueue: events deferred_probe_work_func
[    7.225323] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.225463] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.225601] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.225739] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.225874] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.226011] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.226143] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.226277] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.226412] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.226543] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.226677] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.226807] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.226932] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.227055] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.227181] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.227305] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.227430] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.227557] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.227686] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.227812] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.227959] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.228053] ---[ end trace a26539f33930f30b ]---
[    7.328887] bcm2835-clk 3f101000.cprman: pllc: couldn't lock PLL
[    7.328985] ------------[ cut here ]------------
[    7.329119] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.329196] Modules linked in:
[    7.329347] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.329426] Hardware name: BCM2835
[    7.329539] Workqueue: events deferred_probe_work_func
[    7.329724] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.329862] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.329999] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.330130] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.330265] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.330399] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.330531] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.330662] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.330795] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.330926] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.331057] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.331204] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.331329] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.331516] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.331706] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.331897] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.332094] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.332295] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.332495] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.332690] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.332893] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.333029] ---[ end trace a26539f33930f30c ]---
[    7.433948] bcm2835-clk 3f101000.cprman: pllc: couldn't lock PLL
[    7.434044] ------------[ cut here ]------------
[    7.434183] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.434256] Modules linked in:
[    7.434407] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.434486] Hardware name: BCM2835
[    7.434598] Workqueue: events deferred_probe_work_func
[    7.434785] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.434924] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.435060] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.435195] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.435325] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.435458] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.435588] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.435745] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.435874] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.436004] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.436136] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.436269] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.436394] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.436518] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.436641] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.436763] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.436888] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.437015] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.437143] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.437273] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.437409] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.437501] ---[ end trace a26539f33930f30d ]---
[    7.538196] bcm2835-clk 3f101000.cprman: plld: couldn't lock PLL
[    7.538293] ------------[ cut here ]------------
[    7.538430] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.538503] Modules linked in:
[    7.538652] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.538731] Hardware name: BCM2835
[    7.538844] Workqueue: events deferred_probe_work_func
[    7.539028] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.539169] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.539305] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.539438] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.539569] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.539705] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.539838] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.539968] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.540100] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.540237] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.540368] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.540507] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.540633] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.540768] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.540891] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.541024] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.541152] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.541284] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.541453] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.541648] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.541852] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.541989] ---[ end trace a26539f33930f30e ]---
[    7.643076] bcm2835-clk 3f101000.cprman: plld: couldn't lock PLL
[    7.643178] ------------[ cut here ]------------
[    7.643313] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.643385] Modules linked in:
[    7.643567] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.643646] Hardware name: BCM2835
[    7.643759] Workqueue: events deferred_probe_work_func
[    7.643945] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.644082] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.644221] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.644355] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.644485] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.644619] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.644750] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.644878] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.645012] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.645144] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.645277] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.645406] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.645532] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.645655] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.645778] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.645901] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.646026] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.646153] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.646319] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.646446] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.646582] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.646674] ---[ end trace a26539f33930f30f ]---
[    7.747681] bcm2835-clk 3f101000.cprman: pllh: couldn't lock PLL
[    7.747778] ------------[ cut here ]------------
[    7.747917] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.747990] Modules linked in:
[    7.748141] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.748224] Hardware name: BCM2835
[    7.748339] Workqueue: events deferred_probe_work_func
[    7.748526] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.748664] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.748800] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.748931] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.749062] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.749250] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.749383] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.749513] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.749643] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.749775] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.749907] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.750035] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.750163] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.750288] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.750411] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.750535] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.750662] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.750791] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.750920] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.751047] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.751202] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.751297] ---[ end trace a26539f33930f310 ]---
[    7.853148] bcm2835-clk 3f101000.cprman: pllh: couldn't lock PLL
[    7.853253] ------------[ cut here ]------------
[    7.853390] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.853462] Modules linked in:
[    7.853614] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.853692] Hardware name: BCM2835
[    7.853805] Workqueue: events deferred_probe_work_func
[    7.853993] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.854131] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.854287] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.854423] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.854554] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.854689] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.854821] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.854950] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.855082] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.855218] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.855351] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.855479] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.855604] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.855728] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.855851] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.855974] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.856099] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.856231] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.856361] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.856523] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.856660] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.856754] ---[ end trace a26539f33930f311 ]---
[    7.957496] bcm2835-clk 3f101000.cprman: pllh: couldn't lock PLL
[    7.957594] ------------[ cut here ]------------
[    7.957729] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    7.957802] Modules linked in:
[    7.957952] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    7.958031] Hardware name: BCM2835
[    7.958144] Workqueue: events deferred_probe_work_func
[    7.958334] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    7.958472] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    7.958608] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    7.958741] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    7.958871] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    7.959008] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    7.959140] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    7.959274] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    7.959406] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    7.959539] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    7.959668] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    7.959796] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    7.959921] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    7.960044] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    7.960170] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    7.960294] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    7.960422] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    7.960550] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    7.960679] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    7.960806] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    7.960942] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    7.961035] ---[ end trace a26539f33930f312 ]---
[    8.078545] bcm2835-clk 3f101000.cprman: plla: couldn't lock PLL
[    8.078652] ------------[ cut here ]------------
[    8.078795] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    8.078879] Modules linked in:
[    8.079033] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    8.079121] Hardware name: BCM2835
[    8.079242] Workqueue: events deferred_probe_work_func
[    8.079434] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    8.079575] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    8.079715] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    8.079863] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    8.079997] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    8.080137] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    8.080272] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    8.080403] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    8.080536] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    8.080670] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    8.080807] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    8.080935] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    8.081060] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    8.081186] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    8.081310] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    8.081484] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    8.081678] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    8.081875] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    8.082074] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    8.082272] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    8.082473] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    8.082611] ---[ end trace a26539f33930f313 ]---
[    8.184185] bcm2835-clk 3f101000.cprman: plla: couldn't lock PLL
[    8.184284] ------------[ cut here ]------------
[    8.184420] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    8.184492] Modules linked in:
[    8.184643] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    8.184722] Hardware name: BCM2835
[    8.184837] Workqueue: events deferred_probe_work_func
[    8.185023] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    8.185165] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    8.185303] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    8.185436] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    8.185566] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    8.185701] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    8.185833] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    8.185962] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    8.186094] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    8.186230] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    8.186360] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    8.186488] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    8.186612] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    8.186735] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    8.186858] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    8.186982] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    8.187108] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    8.187240] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    8.187370] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    8.187496] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    8.187632] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    8.187726] ---[ end trace a26539f33930f314 ]---
[    8.289143] bcm2835-clk 3f101000.cprman: plld: couldn't lock PLL
[    8.289246] ------------[ cut here ]------------
[    8.289382] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    8.289454] Modules linked in:
[    8.289605] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    8.289684] Hardware name: BCM2835
[    8.289808] Workqueue: events deferred_probe_work_func
[    8.289995] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    8.290133] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    8.290275] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    8.290406] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    8.290535] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    8.290669] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    8.290800] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    8.290929] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    8.291063] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    8.291198] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    8.291331] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    8.291521] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    8.291714] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    8.291906] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    8.292095] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    8.292291] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    8.292485] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    8.292681] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    8.292878] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    8.293089] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    8.293325] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    8.293465] ---[ end trace a26539f33930f315 ]---
[    8.395019] bcm2835-clk 3f101000.cprman: plld: couldn't lock PLL
[    8.395116] ------------[ cut here ]------------
[    8.395258] WARNING: CPU: 0 PID: 3 at drivers/clk/clk.c:653 clk_core_enable+0xb4/0x224
[    8.395330] Modules linked in:
[    8.395481] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    8.395559] Hardware name: BCM2835
[    8.395673] Workqueue: events deferred_probe_work_func
[    8.395858] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    8.395996] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    8.396133] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    8.396287] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    8.396417] [<8011de58>] (warn_slowpath_null) from [<804f3864>] (clk_core_enable+0xb4/0x224)
[    8.396553] [<804f3864>] (clk_core_enable) from [<804f5f6c>] (clk_register+0x52c/0x650)
[    8.396685] [<804f5f6c>] (clk_register) from [<804f6100>] (devm_clk_hw_register+0x4c/0x90)
[    8.396814] [<804f6100>] (devm_clk_hw_register) from [<804fb1cc>] (bcm2835_register_pll_divider+0x110/0x184)
[    8.396945] [<804fb1cc>] (bcm2835_register_pll_divider) from [<804fb548>] (bcm2835_clk_probe+0x178/0x218)
[    8.397077] [<804fb548>] (bcm2835_clk_probe) from [<80549c28>] (platform_drv_probe+0x5c/0xc0)
[    8.397210] [<80549c28>] (platform_drv_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    8.397339] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    8.397463] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    8.397589] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    8.397712] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    8.397837] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    8.397963] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    8.398091] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    8.398224] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    8.398351] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    8.398487] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    8.398581] ---[ end trace a26539f33930f316 ]---
[    8.431135] uart-pl011 3f201000.serial: cts_event_workaround enabled
[    8.434258] 3f201000.serial: ttyAMA0 at MMIO 0x3f201000 (irq = 87, base_baud = 0) is a PL011 rev2
[    8.437989] ------------[ cut here ]------------
[    8.438140] WARNING: CPU: 0 PID: 3 at drivers/tty/serial/serial_core.c:480 uart_get_baud_rate+0xf8/0x160
[    8.438219] Modules linked in:
[    8.438374] CPU: 0 PID: 3 Comm: kworker/0:0 Tainted: G        W       4.14.98-v7+ #1200
[    8.438455] Hardware name: BCM2835
[    8.438575] Workqueue: events deferred_probe_work_func
[    8.438766] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    8.438906] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    8.439044] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    8.439200] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    8.439334] [<8011de58>] (warn_slowpath_null) from [<80525c30>] (uart_get_baud_rate+0xf8/0x160)
[    8.439475] [<80525c30>] (uart_get_baud_rate) from [<805314cc>] (pl011_set_termios+0x58/0x390)
[    8.439608] [<805314cc>] (pl011_set_termios) from [<80525f8c>] (uart_set_options+0xf0/0x124)
[    8.439746] [<80525f8c>] (uart_set_options) from [<80b35cc0>] (pl011_console_setup+0x26c/0x274)
[    8.440027] [<80b35cc0>] (pl011_console_setup) from [<801748c4>] (register_console+0x318/0x434)
[    8.440178] [<801748c4>] (register_console) from [<80528c44>] (uart_add_one_port+0x498/0x4b0)
[    8.440312] [<80528c44>] (uart_add_one_port) from [<8053279c>] (pl011_register_port+0x6c/0xd0)
[    8.440440] [<8053279c>] (pl011_register_port) from [<80534018>] (pl011_probe+0x16c/0x188)
[    8.440569] [<80534018>] (pl011_probe) from [<804ef700>] (amba_probe+0xe4/0x168)
[    8.440705] [<804ef700>] (amba_probe) from [<80548208>] (driver_probe_device+0x244/0x300)
[    8.440839] [<80548208>] (driver_probe_device) from [<80548470>] (__device_attach_driver+0xa4/0xbc)
[    8.440965] [<80548470>] (__device_attach_driver) from [<805462f8>] (bus_for_each_drv+0x74/0xa8)
[    8.441091] [<805462f8>] (bus_for_each_drv) from [<80547e7c>] (__device_attach+0xc0/0x120)
[    8.441218] [<80547e7c>] (__device_attach) from [<805484a4>] (device_initial_probe+0x1c/0x20)
[    8.441343] [<805484a4>] (device_initial_probe) from [<8054736c>] (bus_probe_device+0x94/0x9c)
[    8.441541] [<8054736c>] (bus_probe_device) from [<80547814>] (deferred_probe_work_func+0x5c/0x154)
[    8.441742] [<80547814>] (deferred_probe_work_func) from [<80137a40>] (process_one_work+0x158/0x454)
[    8.441941] [<80137a40>] (process_one_work) from [<80137da0>] (worker_thread+0x64/0x5b8)
[    8.442135] [<80137da0>] (worker_thread) from [<8013de24>] (kthread+0x13c/0x16c)
[    8.442342] [<8013de24>] (kthread) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    8.442765] ---[ end trace a26539f33930f317 ]---
[    8.771349] console [ttyAMA0] enabled
[    8.789181] bcm2835_thermal 3f212000.thermal: Clock tsens running at 0 Hz is outside of the recommended range: 1.92 to 5MHz
[    8.791918] thermal thermal_zone0: failed to read out thermal zone (-5)
[    8.793134] bcm2835_thermal 3f212000.thermal: Not able to read trip_temp: -33
[    8.794924] bcm2835_thermal: probe of 3f212000.thermal failed with error -33
[    8.804668] sdhost: log_buf @ bb910000 (fb910000)
[    8.893444] mmc0: sdhost-bcm2835 loaded - DMA enabled (>1)
[    8.897009] of_cfs_init
[    8.933909] of_cfs_init: OK
[    8.959843] uart-pl011 3f201000.serial: no DMA platform data
[    8.961311] ------------[ cut here ]------------
[    8.962259] WARNING: CPU: 0 PID: 1 at drivers/tty/serial/serial_core.c:480 uart_get_baud_rate+0xf8/0x160
[    8.962923] Modules linked in:
[    8.963335] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W       4.14.98-v7+ #1200
[    8.963891] Hardware name: BCM2835
[    8.964336] [<8010ff30>] (unwind_backtrace) from [<8010c174>] (show_stack+0x20/0x24)
[    8.964949] [<8010c174>] (show_stack) from [<8078cf04>] (dump_stack+0xd4/0x118)
[    8.965603] [<8078cf04>] (dump_stack) from [<8011dd70>] (__warn+0xf8/0x110)
[    8.966197] [<8011dd70>] (__warn) from [<8011de58>] (warn_slowpath_null+0x30/0x38)
[    8.966827] [<8011de58>] (warn_slowpath_null) from [<80525c30>] (uart_get_baud_rate+0xf8/0x160)
[    8.967511] [<80525c30>] (uart_get_baud_rate) from [<805314cc>] (pl011_set_termios+0x58/0x390)
[    8.968190] [<805314cc>] (pl011_set_termios) from [<805261fc>] (uart_change_speed+0x40/0xfc)
[    8.968849] [<805261fc>] (uart_change_speed) from [<805299fc>] (uart_startup.part.4+0x140/0x248)
[    8.969534] [<805299fc>] (uart_startup.part.4) from [<80529b5c>] (uart_port_activate+0x58/0x64)
[    8.970196] [<80529b5c>] (uart_port_activate) from [<80513694>] (tty_port_open+0xa0/0xe0)
[    8.970848] [<80513694>] (tty_port_open) from [<805281d8>] (uart_open+0x40/0x48)
[    8.971486] [<805281d8>] (uart_open) from [<8050c3a0>] (tty_open+0xc0/0x39c)
[    8.972259] [<8050c3a0>] (tty_open) from [<802906a8>] (chrdev_open+0xe0/0x1a0)
[    8.973048] [<802906a8>] (chrdev_open) from [<80287ca0>] (do_dentry_open+0x200/0x328)
[    8.973836] [<80287ca0>] (do_dentry_open) from [<80288f4c>] (vfs_open+0x5c/0x8c)
[    8.974580] [<80288f4c>] (vfs_open) from [<8029a5bc>] (path_openat+0x2c0/0x10c0)
[    8.975390] [<8029a5bc>] (path_openat) from [<8029c66c>] (do_filp_open+0x70/0xd4)
[    8.976142] [<8029c66c>] (do_filp_open) from [<80289328>] (do_sys_open+0x120/0x1d0)
[    8.976908] [<80289328>] (do_sys_open) from [<80289404>] (SyS_open+0x2c/0x30)
[    8.977659] [<80289404>] (SyS_open) from [<80b01044>] (kernel_init_freeable+0x240/0x2bc)
[    8.978446] [<80b01044>] (kernel_init_freeable) from [<807a1f80>] (kernel_init+0x18/0x128)
[    8.979248] [<807a1f80>] (kernel_init) from [<801080ac>] (ret_from_fork+0x14/0x28)
[    8.980187] ---[ end trace a26539f33930f318 ]---
[    9.007178] mmc0: host does not support reading read-only switch, assuming write-enable
[    9.009470] mmc0: new SDHC card at address 4567
[    9.027521] mmcblk0: mmc0:4567 QEMU! 3.24 GiB
[    9.061138]  mmcblk0: p1 p2
[   10.372417] EXT4-fs (mmcblk0p2): recovery complete
[   10.377810] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[   10.382678] VFS: Mounted root (ext4 filesystem) on device 179:2.
[   10.390239] devtmpfs: mounted
[   10.481208] Freeing unused kernel memory: 1024K
[   11.121119] random: fast init done
[   13.606291] systemd[1]: System time before build time, advancing clock.
[   14.625210] NET: Registered protocol family 10
[   14.652784] Segment Routing with IPv6
[   14.866178] ip_tables: (C) 2000-2006 Netfilter Core Team
[   15.113586] random: systemd: uninitialized urandom read (16 bytes read)
[   15.353272] systemd[1]: systemd 232 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[   15.363371] systemd[1]: Detected architecture arm.

Welcome to Raspbian GNU/Linux 9 (stretch)!

[   15.426225] systemd[1]: Set hostname to <raspberrypi>.
[   16.198811] random: systemd: uninitialized urandom read (16 bytes read)
[   18.077334] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read)
[   18.104968] random: systemd-cryptse: uninitialized urandom read (16 bytes read)
[   18.497913] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read)
[   19.206654] mmcblk0: error -5 sending stop command, original cmd response 0x900, card status 0x900
[   19.207540] mmcblk0: error -5 transferring data, sector 6799352, nr 8, cmd response 0x900, card status 0x40000b00
[   19.269724] mmcblk0: error -5 sending stop command, original cmd response 0x900, card status 0x900
[   19.270392] mmcblk0: error -5 transferring data, sector 6799352, nr 8, cmd response 0x900, card status 0x40000b00
[   19.271107] mmcblk0: retrying using single block read
[   19.968188] urandom_read: 1 callbacks suppressed
[   19.968865] random: systemd: uninitialized urandom read (16 bytes read)
[   19.978268] random: systemd: uninitialized urandom read (16 bytes read)
[   19.989867] random: systemd: uninitialized urandom read (16 bytes read)
[   23.837974] systemd[1]: Listening on fsck to fsckd communication Socket.
[  OK  ] Listening on fsck to fsckd communication Socket.
[   23.862604] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   23.872259] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   23.880152] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
[   23.896184] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
[   24.168827] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   24.195273] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[  OK  ] Set up automount Arbitrary Executab…rmats File System Automount Point.
[   24.211255] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   24.216426] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[   24.229981] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[  OK  ] Listening on Syslog Socket.
[  OK  ] Created slice System Slice.
         Starting Restore / save the current clock...
         Starting Set the console keyboard layout...
         Starting Load Kernel Modules...
         Starting Create list of required st…ce nodes for the current kernel...
         Mounting RPC Pipe File System...
[  OK  ] Created slice system-autologin.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
         Starting Journal Service...
[  OK  ] Reached target Slices.
         Mounting Debug File System...
[   27.425931] i2c /dev entries driver
         Mounting POSIX Message Queue File System...
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[   29.990145] systemd[1]: Mounted RPC Pipe File System.
[  OK  ] Mounted RPC Pipe File System.
[   30.429745] systemd[1]: Mounted POSIX Message Queue File System.
[  OK  ] Mounted POSIX Message Queue File System.
[   30.786639] systemd[1]: Started Load Kernel Modules.
[  OK  ] Started Load Kernel Modules.
[   31.666746] systemd[1]: Started Restore / save the current clock.
[  OK  ] Started Restore / save the current clock.
[   31.766418] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Started Create list of required sta…vice nodes for the current kernel.
[   31.845578] systemd[1]: Mounted Debug File System.
[  OK  ] Mounted Debug File System.
[   32.260012] systemd[1]: Time has been changed
[   32.459276] systemd[1]: Starting Create Static Device Nodes in /dev...
         Starting Create Static Device Nodes in /dev...
[   32.730740] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[   33.071137] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
         Mounting Configuration File System...
[  OK  ] Mounted Configuration File System.
[  OK  ] Started Apply Kernel Variables.
[  OK  ] Started Create Static Device Nodes in /dev.
         Starting udev Kernel Device Manager...
[  OK  ] Started Journal Service.
[  OK  ] Started Remount Root and Kernel File Systems.
         Starting Load/Save Random Seed...
         Starting Flush Journal to Persistent Storage...
         Starting udev Coldplug all Devices...
[  OK  ] Started Load/Save Random Seed.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started Flush Journal to Persistent Storage.
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Started Set the console keyboard layout.
[  OK  ] Reached target Local File Systems (Pre).
         Starting Show Plymouth Boot Screen...
[  OK  ] Started Show Plymouth Boot Screen.
[  OK  ] Reached target Encrypted Volumes.
[  OK  ] Reached target Paths.
[  OK  ] Started Forward Password Requests to Plymouth Directory Watch.
[  OK  ] Found device /dev/ttyAMA0.
[  OK  ] Found device /dev/disk/by-partuuid/cd48578f-01.
         Starting File System Check on /dev/disk/by-partuuid/cd48578f-01...
[  OK  ] Started File System Check Daemon to report status.
[  OK  ] Started File System Check on /dev/disk/by-partuuid/cd48578f-01.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
         Starting Tell Plymouth To Write Out Runtime Data...
         Starting Raise network interfaces...
         Starting Set console font and keymap...
         Starting Preprocess NFS configuration...
[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
[  OK  ] Started Preprocess NFS configuration.
[  OK  ] Started Set console font and keymap.
[  OK  ] Reached target NFS client services.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
[  OK  ] Started Create Volatile Files and Directories.
         Starting Update UTMP about System Boot/Shutdown...
         Starting Network Time Synchronization...
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on triggerhappy.socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting rng-tools.service...
         Starting dhcpcd on all interfaces...
         Starting Login Service...
         Starting LSB: Switch to ondemand cp…r (unless shift key is pressed)...
         Starting Disable WiFi if country not set...
         Starting Check for v3d driver...
[  OK  ] Started Regular background program processing daemon.
         Starting System Logging Service...
[  OK  ] Started D-Bus System Message Bus.
         Starting LSB: Autogenerate and use a swap file...
         Starting Avahi mDNS/DNS-SD Stack...
         Starting triggerhappy global hotkey daemon...
         Starting WPA supplicant...
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Reached target Timers.
[  OK  ] Started System Logging Service.
[  OK  ] Started rng-tools.service.
[  OK  ] Started dhcpcd on all interfaces.
[  OK  ] Started Disable WiFi if country not set.
[  OK  ] Started Check for v3d driver.
[  OK  ] Started triggerhappy global hotkey daemon.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started WPA supplicant.
[  OK  ] Started Login Service.
[  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ TIME ] Timed out waiting for device dev-serial1.device.
[DEPEND] Dependency failed for Configure Bluetooth Modems connected by UART.
[  OK  ] Started LSB: Switch to ondemand cpu…nor (unless shift key is pressed).
[  OK  ] Started LSB: Autogenerate and use a swap file.
[  OK  ] Started Raise network interfaces.
[  OK  ] Reached target Network.
         Starting /etc/rc.local Compatibility...
         Starting Permit User Sessions...
[  OK  ] Started /etc/rc.local Compatibility.
[  OK  ] Started Permit User Sessions.
         Starting Light Display Manager...
         Starting Hold until boot process finishes up...
         Starting Terminate Plymouth Boot Screen...

Raspbian GNU/Linux 9 raspberrypi ttyAMA0
raspberrypi login: pi
Password:raspberry
Last login: Mon Apr  8 11:32:31 BST 2019 on tty1
Linux raspberrypi 4.14.98-v7+ #1200 SMP Tue Feb 12 20:27:48 GMT 2019 armv7l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.


pi@raspberrypi:~$
pi@raspberrypi:~$
pi@raspberrypi:~$ gedit
-bash: gedit: command not found
pi@raspberrypi:~$ gnome-
gnome-menus-blacklist  gnome-text-editor      gnome-www-browser
pi@raspberrypi:~$ gnome-text-editor
leafpad: Cannot open display:
pi@raspberrypi:~$ ps -elf |grep X
4 S root       339   329  4  80   0 - 25938 -      11:32 tty7     00:00:10 /usr/lib/xorg/Xorg :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
4 S pi         425   406  3  80   0 - 12962 poll_s 11:33 ?        00:00:05 /usr/bin/lxsession -s LXDE-pi -e LXDE
0 R pi         505   425 15  80   0 - 31784 -      11:34 ?        00:00:19 lxpanel --profile LXDE-pi
0 R pi         507   425 11  80   0 - 20675 -      11:34 ?        00:00:13 pcmanfm --desktop --profile LXDE-pi
0 S pi         675   378 20  80   0 -  1092 pipe_w 11:36 ttyAMA0  00:00:00 grep --color=auto X
pi@raspberrypi:~$ export   DISPLAY=:0
pi@raspberrypi:~$ gnome-text-editor


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值