Flint Weller
Published © MIT

Configure a NXP FRWY-LS1046A development board for net boot

Configure U-Boot to load the kernel and root file system from a network fileserver

AdvancedFull instructions provided1 hour1,319
Configure a NXP FRWY-LS1046A development board for net boot

Things used in this project

Hardware components

NXP FRWY-LS1046A
×1

Software apps and online services

NXP LSDK (Layerscape Software Development Kit)

Story

Read more

Code

TFTPconsole.txt

SH
Console of server installation and configuration of TFTP
[flint@ZBook] $ cat /etc/default/tftpd-hpa
# /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/srv/tftp"
TFTP_ADDRESS=":69"
TFTP_OPTIONS="--secure --create"
[flint@ZBook] $ sudo apt install tftpd-hpa
[sudo] password for flint: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
tftpd-hpa is already the newest version (5.2+20150808-1ubuntu4).
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
[flint@ZBook] $ sudo systemctl status tftpd-hpa
 tftpd-hpa.service - LSB: HPA's tftp server
     Loaded: loaded (/etc/init.d/tftpd-hpa; generated)
     Active: active (running) since Thu 2021-03-11 08:19:13 PST; 1 day 5h ago
       Docs: man:systemd-sysv-generator(8)
      Tasks: 1 (limit: 38177)
     Memory: 62.2M
     CGroup: /system.slice/tftpd-hpa.service
             2270 /usr/sbin/in.tftpd --listen --user tftp --address :69 --secure --create /srv/tftp

Mar 11 08:19:13 ZBook systemd[1]: Starting LSB: HPA's tftp server...
Mar 11 08:19:13 ZBook tftpd-hpa[2249]:  * Starting HPA's tftpd in.tftpd
Mar 11 08:19:13 ZBook tftpd-hpa[2249]:    ...done.
Mar 11 08:19:13 ZBook systemd[1]: Started LSB: HPA's tftp server.
[flint@ZBook] $ cat /etc/default/tftpd-hpa
# /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/srv/tftp"
TFTP_ADDRESS=":69"
TFTP_OPTIONS="--secure --create"
[flint@ZBook] $ sudo mkdir /srv/tftp
mkdir: cannot create directory /srv/tftp: File exists
[flint@ZBook] $ sudo chown tftp:tftp /srv/tftp/
[flint@ZBook] $ sudo systemctl restart tftpd-hpa
[flint@ZBook] $ 

NFSconsole.txt

SCSS
Console from server installation and configuration of NFS
[flint@ZBook] $ sudo apt install nfs-kernel-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
nfs-kernel-server is already the newest version (1:1.3.4-2.5ubuntu3.3).
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
[flint@ZBook] $ sudo mkdir /srv/nfs
mkdir: cannot create directory /srv/nfs: File exists
[flint@ZBook] $ sudo chown nobody:nogroup /srv/nfs/
[flint@ZBook] $ cat /etc/ex
exports       ___.original  
[flint@ZBook] $ cat /etc/exports
# /etc/exports: the access control list for filesystems which may be exported
#		to NFS clients.  See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check)
#

#/srv/nfs	192.168.1.0/24(rw,nohide,insecure,no_subtree_check,async,no_root_squash)
/srv/nfs	192.168.1.0/24(rw,nohide,insecure,no_subtree_check,sync,no_root_squash)
#/srv/nfs/rootfs_lsdk2012_ubuntu_lite_arm64 192.168.*(rw,sync,no_root_squash,no_subtree_check)



[flint@ZBook] $ sudo systemctl restart nfs-kernel-server
[flint@ZBook] $ sudo ufw status
Status: inactive
[flint@ZBook] $ nfsstat -s
Server rpc stats:
calls      badcalls   badfmt     badauth    badclnt
111608     47         47         0          0       

Server nfs v3:
null             getattr          setattr          lookup           access           
6         0%     9389      8%     106       0%     6700      6%     3513      3%     
readlink         read             write            create           mkdir            
571       0%     37023    33%     52959    47%     13        0%     59        0%     
symlink          mknod            remove           rmdir            rename           
1         0%     0         0%     3         0%     48        0%     0         0%     
link             readdir          readdirplus      fsstat           fsinfo           
0         0%     0         0%     576       0%     437       0%     10        0%     
pathconf         commit           
5         0%     85        0%     

[flint@ZBook] $ nfsstat -c
Client rpc stats:
calls      retrans    authrefrsh
4          0          4       

Client nfs v4:
null             read             write            commit           open             
4       100%     0         0%     0         0%     0         0%     0         0%     
open_conf        open_noat        open_dgrd        close            setattr          
0         0%     0         0%     0         0%     0         0%     0         0%     
fsinfo           renew            setclntid        confirm          lock             
0         0%     0         0%     0         0%     0         0%     0         0%     
lockt            locku            access           getattr          lookup           
0         0%     0         0%     0         0%     0         0%     0         0%     
lookup_root      remove           rename           link             symlink          
0         0%     0         0%     0         0%     0         0%     0         0%     
create           pathconf         statfs           readlink         readdir          
0         0%     0         0%     0         0%     0         0%     0         0%     
server_caps      delegreturn      getacl           setacl           fs_locations     
0         0%     0         0%     0         0%     0         0%     0         0%     
rel_lkowner      secinfo          fsid_present     exchange_id      create_session   
0         0%     0         0%     0         0%     0         0%     0         0%     
destroy_session  sequence         get_lease_time   reclaim_comp     layoutget        
0         0%     0         0%     0         0%     0         0%     0         0%     
getdevinfo       layoutcommit     layoutreturn     secinfo_no       test_stateid     
0         0%     0         0%     0         0%     0         0%     0         0%     
free_stateid     getdevicelist    bind_conn_to_ses destroy_clientid seek             
0         0%     0         0%     0         0%     0         0%     0         0%     
allocate         deallocate       layoutstats      clone            
0         0%     0         0%     0         0%     0         0%     

UBootconsole.txt

SH
Console of U-Boot interactions
=> reset
resetting ...
NOTICE:  Fixed DDR on board

NOTICE:  4 GB DDR4, 64-bit, CL=15, ECC on
NOTICE:  BL2: v1.5(release):ls1046afrwy-early-access-bsp0.1
NOTICE:  BL2: Built : 13:07:14, Apr 17 2019
NOTICE:  BL2: Booting BL31
NOTICE:  BL31: v1.5(release):ls1046afrwy-early-access-bsp0.1
NOTICE:  BL31: Built : 13:07:39, Apr 17 2019
NOTICE:  Welcome to LS1046 BL31 Phase


U-Boot 2018.09 (Apr 17 2019 - 13:06:42 +0800)

SoC:  LS1046AE Rev1.0 (0x87070010)
Clock Configuration:
       CPU0(A72):1600 MHz  CPU1(A72):1600 MHz  CPU2(A72):1600 MHz  
       CPU3(A72):1600 MHz  
       Bus:      600  MHz  DDR:      2100 MT/s  FMAN:     700  MHz
Reset Configuration Word (RCW):
       00000000: 0c150010 0e000000 00000000 00000000
       00000010: 30400506 00800012 40025000 c1000000
       00000020: 00000000 00000000 00000000 00038800
       00000030: 20044100 24003101 00000096 00000001
Model: LS1046A FRWY Board
Board: LS1046AFRWY, Rev: A, boot from QSPI
SD1_CLK1 = 100.00MHZ, SD1_CLK2 = 100.00MHZ
I2C:   ready
DRAM:  3.9 GiB (DDR4, 64-bit, CL=15, ECC on)
SEC0: RNG instantiated
Using SERDES1 Protocol: 12352 (0x3040)
Using SERDES2 Protocol: 1286 (0x506)
NAND:  512 MiB
MMC:   FSL_SDHC: 0
Loading Environment from SPI Flash... SF: Detected mt25qu512a with page size 256 Bytes, erase size 64 KiB, total 64 MiB
OK
EEPROM: NXID v1
In:    serial
Out:   serial
Err:   serial
Net:   SF: Detected mt25qu512a with page size 256 Bytes, erase size 64 KiB, total 64 MiB
Fman1: Uploading microcode version 106.4.18
PCIe0: pcie@3400000 disabled
PCIe1: pcie@3500000 Root Complex: no link
PCIe2: pcie@3600000 Root Complex: x1 gen1
FM1@DTSEC1, FM1@DTSEC5 [PRIME], FM1@DTSEC6, FM1@DTSEC10
Hit any key to stop autoboot: 10  0 
=> setenv serverip 192.168.1.61
=> setenv gatewayip 192.168.1.1
=> setenv netmask 255.255.255.0
=> setenv hostname ls1046afrwy
=> setenv netdev eth1
=> setenv consoledev ttyS0
=> setenv baudrate 115200
=> setenv bootfile bootpartition_LS_arm64_lts_4.19/Image
=> setenv fdtfile bootpartition_LS_arm64_lts_4.19/fsl-ls1046a-frwy-sdk.dtb
=> setenv rootpath /srv/nfs/rootfs_lsdk2012_ubuntu_lite_arm64
=> setenv nfsroot $serverip:$rootpath,nfsvers=3
=> setenv root /dev/nfs rw
=> setenv rootfstype nfs
=> setenv ip dhcp
=> setenv bootargs wdt_period=35 root=$root nfsroot=$nfsroot ip=$ip rootwait console=$console
=> 
=> saveenv
Saving Environment to SPI Flash... SF: Detected mt25qu512a with page size 256 Bytes, erase size 64 KiB, total 64 MiB
Erasing SPI flash...Writing to SPI flash...done
OK
=> printenv bootargs
bootargs=wdt_period=35 root=/dev/nfs rw nfsroot=192.168.1.61:/srv/nfs/rootfs_lsdk2012_ubuntu_lite_arm64,nfsvers=3 ip=dhcp rootwait console=ttyS0,115200
=> printenv bootfile
bootfile=bootpartition_LS_arm64_lts_4.19/Image
=> printenv fdtfile
fdtfile=bootpartition_LS_arm64_lts_4.19/fsl-ls1046a-frwy-sdk.dtb
=> dhcp
BOOTP broadcast 1
BOOTP broadcast 2
DHCP client bound to address 192.168.1.110 (611 ms)
=> tftp 0xa0000000 $bootfile
Using FM1@DTSEC5 device
TFTP from server 192.168.1.61; our IP address is 192.168.1.110
Filename 'bootpartition_LS_arm64_lts_4.19/Image'.
Load address: 0xa0000000
Loading: *#################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 ######################
	 4.1 MiB/s
done
Bytes transferred = 25121280 (17f5200 hex)
=> tftp 0xb0000000 $fdtfile
Using FM1@DTSEC5 device
TFTP from server 192.168.1.61; our IP address is 192.168.1.110
Filename 'bootpartition_LS_arm64_lts_4.19/fsl-ls1046a-frwy-sdk.dtb'.
Load address: 0xb0000000
Loading: *###
	 2.3 MiB/s
done
Bytes transferred = 31635 (7b93 hex)
=> booti 0xa0000000 - 0xb0000000
## Flattened Device Tree blob at b0000000
   Booting using the fdt blob at 0xb0000000
   Using Device Tree in place at 00000000b0000000, end 00000000b001ab92
WARNING failed to get smmu node: FDT_ERR_NOTFOUND
WARNING failed to get smmu node: FDT_ERR_NOTFOUND

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd082]
[    0.000000] Linux version 4.19.139 (jenkins@saturn) (gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04)) #1 SMP PREEMPT Fri Dec 11 04:09:16 CST 2020
[    0.000000] Machine model: LS1046A FRWY Board
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] OF: reserved mem: initialized node qman-fqd, compatible id fsl,qman-fqd
[    0.000000] OF: reserved mem: initialized node qman-pfdr, compatible id fsl,qman-pfdr
[    0.000000] OF: reserved mem: initialized node bman-fbpr, compatible id fsl,bman-fbpr
[    0.000000] cma: Reserved 32 MiB at 0x00000000f9c00000
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x00000008ff7fffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8ff7c6140-0x8ff7c78ff]
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000008ff7fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x00000000fbdfffff]
[    0.000000]   node   0: [mem 0x0000000880000000-0x00000008fbffffff]
[    0.000000]   node   0: [mem 0x00000008ff000000-0x00000008ff7fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ff7fffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] random: get_random_bytes called from start_kernel+0xa8/0x418 with crng_init=0
[    0.000000] percpu: Embedded 24 pages/cpu s59352 r8192 d30760 u98304
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: enabling workaround for EL2 vector hardening
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1001184
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: wdt_period=35 root=/dev/nfs rw nfsroot=192.168.1.61:/srv/nfs/rootfs_lsdk2012_ubuntu_lite_arm64,nfsvers=3 ip=dhcp rootwait console=ttyS0,115200
[    0.000000] software IO TLB: mapped [mem 0xf5c00000-0xf9c00000] (64MB)
[    0.000000] Memory: 3878904K/4069376K available (15164K kernel code, 1684K rwdata, 6212K rodata, 1408K init, 949K bss, 157704K reserved, 32768K cma-reserved)
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GIC: Adjusting CPU interface base to 0x000000000142f000
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] arch_timer: cp15 timer(s) running at 25.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000002] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000317] Console: colour dummy device 80x25
[    0.000354] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000359] pid_max: default: 32768 minimum: 301
[    0.000413] Security Framework initialized
[    0.001487] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.002022] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.002061] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002082] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.024001] ASID allocator initialised with 32768 entries
[    0.031999] rcu: Hierarchical SRCU implementation.
[    0.040925] EFI services will not be available.
[    0.048013] smp: Bringing up secondary CPUs ...
[    0.080144] Detected PIPT I-cache on CPU1
[    0.080167] CPU1: Booted secondary processor 0x0000000001 [0x410fd082]
[    0.112159] Detected PIPT I-cache on CPU2
[    0.112175] CPU2: Booted secondary processor 0x0000000002 [0x410fd082]
[    0.144190] Detected PIPT I-cache on CPU3
[    0.144205] CPU3: Booted secondary processor 0x0000000003 [0x410fd082]
[    0.144235] smp: Brought up 1 node, 4 CPUs
[    0.144246] SMP: Total of 4 processors activated.
[    0.144250] CPU features: detected: 32-bit EL0 Support
[    0.144641] CPU: All CPU(s) started at EL2
[    0.144652] alternatives: patching kernel code
[    0.145295] devtmpfs: initialized
[    0.147950] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.147972] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.148357] xor: measuring software checksum speed
[    0.188144]    8regs     :  6820.000 MB/sec
[    0.228161]    8regs_prefetch:  5944.000 MB/sec
[    0.268180]    32regs    :  7670.000 MB/sec
[    0.308201]    32regs_prefetch:  6484.000 MB/sec
[    0.308204] xor: using function: 32regs (7670.000 MB/sec)
[    0.308209] pinctrl core: initialized pinctrl subsystem
[    0.308842] DMI not present or invalid.
[    0.309037] NET: Registered protocol family 16
[    0.309213] audit: initializing netlink subsys (disabled)
[    0.309263] audit: type=2000 audit(0.308:1): state=initialized audit_enabled=0 res=1
[    0.309905] cpuidle: using governor menu
[    0.309991] Bman ver:0a02,02,01
[    0.312140] qman-fqd addr 0x00000008ff800000 size 0x800000
[    0.312144] qman-pfdr addr 0x00000008fc000000 size 0x2000000
[    0.312150] Qman ver:0a01,03,02,01
[    0.312300] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.312762] DMA: preallocated 256 KiB pool for atomic allocations
[    0.313251] Serial: AMBA PL011 UART driver
[    0.317862] Machine: LS1046A FRWY Board
[    0.317867] SoC family: QorIQ LS1046A
[    0.317870] SoC ID: svr:0x87070010, Revision: 1.0
[    0.332809] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.333003] cryptd: max_cpu_qlen set to 1000
[    0.400347] raid6: int64x1  gen()   986 MB/s
[    0.468348] raid6: int64x1  xor()   880 MB/s
[    0.536409] raid6: int64x2  gen()  1348 MB/s
[    0.604413] raid6: int64x2  xor()  1288 MB/s
[    0.672453] raid6: int64x4  gen()  2104 MB/s
[    0.740486] raid6: int64x4  xor()  1471 MB/s
[    0.808540] raid6: int64x8  gen()  1916 MB/s
[    0.876570] raid6: int64x8  xor()  1433 MB/s
[    0.944612] raid6: neonx1   gen()  2027 MB/s
[    1.012620] raid6: neonx1   xor()  2204 MB/s
[    1.080659] raid6: neonx2   gen()  2642 MB/s
[    1.148683] raid6: neonx2   xor()  2795 MB/s
[    1.216723] raid6: neonx4   gen()  3587 MB/s
[    1.284757] raid6: neonx4   xor()  3112 MB/s
[    1.352799] raid6: neonx8   gen()  3919 MB/s
[    1.420825] raid6: neonx8   xor()  3346 MB/s
[    1.420828] raid6: using algorithm neonx8 gen() 3919 MB/s
[    1.420831] raid6: .... xor() 3346 MB/s, rmw enabled
[    1.420834] raid6: using neon recovery algorithm
[    1.421206] ACPI: Interpreter disabled.
[    1.423212] vgaarb: loaded
[    1.423350] SCSI subsystem initialized
[    1.423601] usbcore: registered new interface driver usbfs
[    1.423626] usbcore: registered new interface driver hub
[    1.423659] usbcore: registered new device driver usb
[    1.424200] i2c i2c-0: using dma0chan16 (tx) and dma0chan17 (rx) for DMA transfers
[    1.424205] i2c i2c-0: IMX I2C adapter registered
[    1.424848] pps_core: LinuxPPS API ver. 1 registered
[    1.424852] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.424864] PTP clock support registered
[    1.424986] EDAC MC: Ver: 3.0.0
[    1.425162] bman-fbpr addr 0x00000008fe000000 size 0x1000000
[    1.425187] Bman err interrupt handler present
[    1.425637] Bman portal initialised, cpu 0
[    1.425702] Bman portal initialised, cpu 1
[    1.425767] Bman portal initialised, cpu 2
[    1.425830] Bman portal initialised, cpu 3
[    1.425833] Bman portals initialised
[    1.426894] Qman err interrupt handler present
[    1.427279] QMan: Allocated lookup table at (____ptrval____), entry count 131073
[    1.427672] Qman portal initialised, cpu 0
[    1.427727] Qman portal initialised, cpu 1
[    1.427781] Qman portal initialised, cpu 2
[    1.427835] Qman portal initialised, cpu 3
[    1.427838] Qman portals initialised
[    1.427907] Bman: BPID allocator includes range 32:32
[    1.427949] Qman: FQID allocator includes range 256:256
[    1.427953] Qman: FQID allocator includes range 32768:32768
[    1.427999] Qman: CGRID allocator includes range 0:256
[    1.428152] Qman: pool channel allocator includes range 1025:15
[    1.428234] No USDPAA memory, no 'fsl,usdpaa-mem' in device-tree
[    1.428522] fsl-ifc 1530000.ifc: Freescale Integrated Flash Controller
[    1.428533] fsl-ifc 1530000.ifc: IFC version 1.4, 8 banks
[    1.428741] Advanced Linux Sound Architecture Driver Initialized.
[    1.429109] clocksource: Switched to clocksource arch_sys_counter
[    1.429175] VFS: Disk quotas dquot_6.6.0
[    1.429201] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.429254] pnp: PnP ACPI: disabled
[    1.432401] NET: Registered protocol family 2
[    1.432671] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)
[    1.432703] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    1.432844] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    1.433104] TCP: Hash tables configured (established 32768 bind 32768)
[    1.433167] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    1.433196] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    1.433265] NET: Registered protocol family 1
[    1.433456] RPC: Registered named UNIX socket transport module.
[    1.433460] RPC: Registered udp transport module.
[    1.433463] RPC: Registered tcp transport module.
[    1.433466] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.433860] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[    1.434120] kvm [1]: 8-bit VMID
[    1.434475] kvm [1]: vgic interrupt IRQ1
[    1.434530] kvm [1]: Hyp mode initialized successfully
[    1.436048] Initialise system trusted keyrings
[    1.436108] workingset: timestamp_bits=44 max_order=20 bucket_order=0
[    1.436379] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.436493] NFS: Registering the id_resolver key type
[    1.436502] Key type id_resolver registered
[    1.436505] Key type id_legacy registered
[    1.436511] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.436568] fuse init (API version 7.27)
[    1.436636] 9p: Installing v9fs 9p2000 file system support
[    1.438149] Key type asymmetric registered
[    1.438154] Asymmetric key parser 'x509' registered
[    1.438177] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    1.438230] io scheduler noop registered
[    1.438233] io scheduler deadline registered
[    1.438255] io scheduler cfq registered (default)
[    1.438258] io scheduler mq-deadline registered
[    1.438261] io scheduler kyber registered
[    1.446400] layerscape-pcie 3500000.pcie: host bridge /soc/pcie@3500000 ranges:
[    1.446415] layerscape-pcie 3500000.pcie:    IO 0x4800010000..0x480001ffff -> 0x00000000
[    1.446423] layerscape-pcie 3500000.pcie:   MEM 0x4840000000..0x487fffffff -> 0x40000000
[    1.446508] layerscape-pcie 3500000.pcie: PCI host bridge to bus 0000:00
[    1.446514] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.446518] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    1.446523] pci_bus 0000:00: root bus resource [mem 0x4840000000-0x487fffffff] (bus address [0x40000000-0x7fffffff])
[    1.448632] pci 0000:00:00.0: BAR 6: assigned [mem 0x4840000000-0x48400007ff pref]
[    1.448638] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    1.448765] pcieport 0000:00:00.0: Signaling PME with IRQ 68
[    1.448828] pcieport 0000:00:00.0: AER enabled with IRQ 67
[    1.448927] layerscape-pcie 3600000.pcie: host bridge /soc/pcie@3600000 ranges:
[    1.448938] layerscape-pcie 3600000.pcie:    IO 0x5000010000..0x500001ffff -> 0x00000000
[    1.448946] layerscape-pcie 3600000.pcie:   MEM 0x5040000000..0x507fffffff -> 0x40000000
[    1.449014] layerscape-pcie 3600000.pcie: PCI host bridge to bus 0001:00
[    1.449019] pci_bus 0001:00: root bus resource [bus 00-ff]
[    1.449024] pci_bus 0001:00: root bus resource [io  0x10000-0x1ffff] (bus address [0x0000-0xffff])
[    1.449028] pci_bus 0001:00: root bus resource [mem 0x5040000000-0x507fffffff] (bus address [0x40000000-0x7fffffff])
[    1.462149] pci 0001:00:00.0: BAR 14: assigned [mem 0x5040000000-0x50401fffff]
[    1.462155] pci 0001:00:00.0: BAR 6: assigned [mem 0x5040200000-0x50402007ff pref]
[    1.462161] pci 0001:01:00.0: BAR 0: assigned [mem 0x5040000000-0x50401fffff 64bit]
[    1.462206] pci 0001:00:00.0: PCI bridge to [bus 01-ff]
[    1.462211] pci 0001:00:00.0:   bridge window [mem 0x5040000000-0x50401fffff]
[    1.462333] pcieport 0001:00:00.0: Signaling PME with IRQ 70
[    1.462400] pcieport 0001:00:00.0: AER enabled with IRQ 69
[    1.463791] EINJ: ACPI disabled.
[    1.467975] Freescale LS2 console driver
[    1.468039] fsl-ls2-console: device fsl_mc_console registered
[    1.468084] fsl-ls2-console: device fsl_aiop_console registered
[    1.472060] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.473404] console [ttyS0] disabled
[    1.473431] 21c0500.serial: ttyS0 at MMIO 0x21c0500 (irq = 38, base_baud = 18750000) is a 16550A
[    2.684797] console [ttyS0] enabled
[    2.688582] 21c0600.serial: ttyS1 at MMIO 0x21c0600 (irq = 38, base_baud = 18750000) is a 16550A
[    2.697617] 21d0500.serial: ttyS2 at MMIO 0x21d0500 (irq = 39, base_baud = 18750000) is a 16550A
[    2.706641] 21d0600.serial: ttyS3 at MMIO 0x21d0600 (irq = 39, base_baud = 18750000) is a 16550A
[    2.715957] SuperH (H)SCI(F) driver initialized
[    2.720928] msm_serial: driver initialized
[    2.730920] brd: module loaded
[    2.737042] loop: module loaded
[    2.741697] ahci-qoriq 3200000.sata: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl platform mode
[    2.750670] ahci-qoriq 3200000.sata: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc sds apst 
[    2.760657] scsi host0: ahci-qoriq
[    2.764205] ata1: SATA max UDMA/133 mmio [mem 0x03200000-0x0320ffff] port 0x100 irq 49
[    2.773449] nand: device found, Manufacturer ID: 0x01, Chip ID: 0xac
[    2.779809] nand: AMD/Spansion S34MS04G2
[    2.783762] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 128
[    2.791840] Bad block table found at page 262080, version 0x01
[    2.798330] Bad block table found at page 262016, version 0x01
[    2.804956] fsl,ifc-nand 7e800000.nand: IFC NAND device at 0x7e800000, bank 0
[    2.812597] fsl-quadspi 1550000.spi: n25q512a (65536 Kbytes)
[    2.820770] libphy: Fixed MDIO Bus: probed
[    2.825422] tun: Universal TUN/TAP device driver, 1.6
[    2.831288] thunder_xcv, ver 1.0
[    2.834537] thunder_bgx, ver 1.0
[    2.837784] nicpf, ver 1.0
[    2.840663] libphy: Freescale XGMAC MDIO Bus: probed
[    2.845703] libphy: Freescale XGMAC MDIO Bus: probed
[    2.851634] libphy: Freescale XGMAC MDIO Bus: probed
[    2.856797] libphy: Freescale XGMAC MDIO Bus: probed
[    2.861968] libphy: Freescale XGMAC MDIO Bus: probed
[    2.867130] libphy: Freescale XGMAC MDIO Bus: probed
[    2.872295] libphy: Freescale XGMAC MDIO Bus: probed
[    2.877462] libphy: Freescale XGMAC MDIO Bus: probed
[    2.882648] libphy: Freescale XGMAC MDIO Bus: probed
[    2.887810] libphy: Freescale XGMAC MDIO Bus: probed
[    2.902862] Freescale FM module, FMD API version 21.1.0
[    2.910684] Freescale FM Ports module
[    2.914350] fsl_mac: fsl_mac: FSL FMan MAC API based driver
[    2.920344] fsl_mac 1ae0000.ethernet: FMan MEMAC
[    2.924969] fsl_mac 1ae0000.ethernet: FMan MAC address: 00:04:9f:06:47:ac
[    2.932069] fsl_mac 1ae8000.ethernet: FMan MEMAC
[    2.936692] fsl_mac 1ae8000.ethernet: FMan MAC address: 00:04:9f:06:47:ad
[    2.943778] fsl_mac 1aea000.ethernet: FMan MEMAC
[    2.948401] fsl_mac 1aea000.ethernet: FMan MAC address: 00:04:9f:06:47:ae
[    2.955493] fsl_mac 1af2000.ethernet: FMan MEMAC
[    2.960116] fsl_mac 1af2000.ethernet: FMan MAC address: 00:04:9f:06:47:af
[    2.966946] fsl_dpa: FSL DPAA Ethernet driver
[    2.974952] fsl_dpa: fsl_dpa: Probed interface eth0
[    2.983492] fsl_dpa: fsl_dpa: Probed interface eth1
[    2.992025] fsl_dpa: fsl_dpa: Probed interface eth2
[    2.997048] fsl_dpa soc:fsl,dpaa:ethernet@8: of_find_device_by_node(ethernet@f0000) failed
[    3.005334] fsl_dpa: probe of soc:fsl,dpaa:ethernet@8 failed with error -22
[    3.016769] fsl_dpa: fsl_dpa: Probed interface eth3
[    3.021705] fsl_advanced: FSL DPAA Advanced drivers:
[    3.026675] fsl_proxy: FSL DPAA Proxy initialization driver
[    3.032436] fsl_oh: FSL FMan Offline Parsing port driver
[    3.038473] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    3.045528] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    3.051301] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    3.057137] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    3.063080] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    3.070045] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.075642] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    3.083476] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    3.089748] sky2: driver version 1.30
[    3.092353] ata1: SATA link down (SStatus 0 SControl 300)
[    3.094027] usbcore: registered new interface driver r8152
[    3.104317] usbcore: registered new interface driver asix
[    3.109736] usbcore: registered new interface driver ax88179_178a
[    3.116215] VFIO - User Level meta-driver version: 0.3
[    3.121774] dwc3 2f00000.usb: Failed to get clk 'ref': -2
[    3.127523] dwc3 3000000.usb: Failed to get clk 'ref': -2
[    3.133205] dwc3 3100000.usb: Failed to get clk 'ref': -2
[    3.139825] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.146359] ehci-pci: EHCI PCI platform driver
[    3.150823] ehci-platform: EHCI generic platform driver
[    3.156179] ehci-orion: EHCI orion driver
[    3.160288] ehci-exynos: EHCI EXYNOS driver
[    3.164554] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.170745] ohci-pci: OHCI PCI platform driver
[    3.175208] ohci-platform: OHCI generic platform driver
[    3.180547] ohci-exynos: OHCI EXYNOS driver
[    3.185079] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[    3.190578] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[    3.198406] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x0000000202010810
[    3.207827] xhci-hcd xhci-hcd.0.auto: irq 46, io mem 0x02f00000
[    3.214068] hub 1-0:1.0: USB hub found
[    3.217831] hub 1-0:1.0: 1 port detected
[    3.221880] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[    3.227374] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[    3.235038] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[    3.241792] hub 2-0:1.0: USB hub found
[    3.245553] hub 2-0:1.0: 1 port detected
[    3.249640] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    3.255134] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
[    3.262952] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x0000000202010810
[    3.272365] xhci-hcd xhci-hcd.1.auto: irq 47, io mem 0x03000000
[    3.278556] hub 3-0:1.0: USB hub found
[    3.282317] hub 3-0:1.0: 1 port detected
[    3.286357] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    3.291849] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
[    3.299333] xhci-hcd xhci-hcd.0.auto: WARNING: Host System Error
[    3.299516] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[    3.312877] hub 4-0:1.0: USB hub found
[    3.316638] hub 4-0:1.0: 1 port detected
[    3.320722] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
[    3.326220] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 5
[    3.334043] xhci-hcd xhci-hcd.2.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x0000000202010810
[    3.343458] xhci-hcd xhci-hcd.2.auto: irq 48, io mem 0x03100000
[    3.349647] hub 5-0:1.0: USB hub found
[    3.353412] hub 5-0:1.0: 1 port detected
[    3.357452] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
[    3.362944] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 6
[    3.363889] xhci-hcd xhci-hcd.1.auto: WARNING: Host System Error
[    3.370607] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
[    3.383345] hub 6-0:1.0: USB hub found
[    3.387105] hub 6-0:1.0: 1 port detected
[    3.391409] usbcore: registered new interface driver usb-storage
[    3.399900] ftm-alarm 29d0000.timer: registered as rtc1
[    3.405888] i2c /dev entries driver
[    3.413456] at24 1-0052: 65536 byte 24c512 EEPROM, writable, 1 bytes/write
[    3.421663] at24 1-0053: 65536 byte 24c512 EEPROM, writable, 1 bytes/write
[    3.431252] rtc-pcf2127-i2c 1-0051: rtc core: registered rtc-pcf2127-i2c as rtc0
[    3.434976] xhci-hcd xhci-hcd.2.auto: WARNING: Host System Error
[    3.438736] i2c i2c-0: Added multiplexed i2c bus 1
[    3.449535] i2c i2c-0: Added multiplexed i2c bus 2
[    3.454410] i2c i2c-0: Added multiplexed i2c bus 3
[    3.459282] i2c i2c-0: Added multiplexed i2c bus 4
[    3.464079] pca954x 0-0077: registered 4 multiplexed busses for I2C switch pca9546
[    3.472002] ptp_qoriq: device tree node missing required elements, try automatic configuration
[    3.480687] pps pps0: new PPS source ptp0
[    3.487059] imx2-wdt 2ad0000.watchdog: timeout 60 sec (nowayout=0)
[    3.494282] qoriq_cpufreq: Freescale QorIQ CPU frequency scaling driver
[    3.501261] sdhci: Secure Digital Host Controller Interface driver
[    3.507444] sdhci: Copyright(c) Pierre Ossman
[    3.512070] Synopsys Designware Multimedia Card Interface Driver
[    3.519034] sdhci-pltfm: SDHCI platform and OF driver helper
[    3.550691] mmc0: SDHCI controller on 1560000.esdhc [1560000.esdhc] using ADMA 64-bit
[    3.559575] ledtrig-cpu: registered to indicate activity on CPUs
[    3.566169] caam 1700000.crypto: Linux CAAM Queue I/F driver initialised
[    3.574330] caam 1700000.crypto: device ID = 0x0a11030100000000 (Era 8)
[    3.580952] caam 1700000.crypto: job rings = 3, qi = 1
[    3.588770] caam algorithms registered in /proc/crypto
[    3.594436] caam 1700000.crypto: caam pkc algorithms registered in /proc/crypto
[    3.602240] caam_jr 1710000.jr: registering rng-caam
[    3.609174] caam 1700000.crypto: algorithms registered in /proc/crypto
[    3.616679] usbcore: registered new interface driver usbhid
[    3.622261] usbhid: USB HID core driver
[    3.626759] Freescale USDPAA process driver
[    3.630947] fsl-usdpaa: no region found
[    3.634782] Freescale USDPAA process IRQ driver
[    3.641142] optee: probing for conduit method from DT.
[    3.646285] optee: api uid mismatch
[    3.650600] u32 classifier
[    3.653309]     Actions configured
[    3.657033] Initializing XFRM netlink socket
[    3.661353] NET: Registered protocol family 10
[    3.666191] Segment Routing with IPv6
[    3.669891] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    3.676027] NET: Registered protocol family 17
[    3.680481] NET: Registered protocol family 15
[    3.684943] Bridge firewalling registered
[    3.688998] 8021q: 802.1Q VLAN Support v1.8
[    3.693222] 9pnet: Installing 9P2000 support
[    3.697512] tsn generic netlink module v1 init...
[    3.702243] Key type dns_resolver registered
[    3.706798] registered taskstats version 1
[    3.710899] Loading compiled-in X.509 certificates
[    3.715936] Btrfs loaded, crc32c=crc32c-generic
[    3.724346] rtc-pcf2127-i2c 1-0051: setting system clock to 2020-09-16 13:25:05 UTC (1600262705)
[    3.805705] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    3.881719] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[    3.957741] IPv6: ADDRCONF(NETDEV_UP): eth2: link is not ready
[    4.033736] IPv6: ADDRCONF(NETDEV_UP): eth3: link is not ready
[    7.973209] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[    7.997116] Sending DHCP requests .,. OK
[   11.233050] IP-Config: Got DHCP answer from 192.168.1.1, my address is 192.168.1.110
[   11.240803] IP-Config: Complete:
[   11.244032]      device=eth1, hwaddr=00:04:9f:06:47:ad, ipaddr=192.168.1.110, mask=255.255.255.0, gw=192.168.1.1
[   11.254215]      host=192.168.1.110, domain=, nis-domain=(none)
[   11.260137]      bootserver=0.0.0.0, rootserver=192.168.1.61, rootpath=
[   11.260138]      nameserver0=192.168.1.1
[   11.317174] ALSA device list:
[   11.320136]   No soundcards found.
[   11.333710] VFS: Mounted root (nfs filesystem) on device 0:15.
[   11.340126] devtmpfs: mounted
[   11.343575] Freeing unused kernel memory: 1408K
[   11.348172] Run /sbin/init as init process
[   11.378680] random: fast init done
[   11.591945] 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)
[   11.613502] systemd[1]: Detected architecture arm64.

Welcome to NXP LSDK 2012 lite!

[   11.638815] systemd[1]: Set hostname to <localhost>.
[   11.752853] systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[   11.769924] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[   11.976683] systemd[1]: Configuration file /lib/systemd/system/fmc.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[   12.014526] random: systemd: uninitialized urandom read (16 bytes read)
[   12.021172] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   12.041151] random: systemd: uninitialized urandom read (16 bytes read)
[   12.047785] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[   12.065150] random: systemd: uninitialized urandom read (16 bytes read)
[   12.071848] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password Requests to Console Directory Watch.
[   12.097489] systemd[1]: Created slice System Slice.
[  OK  ] Created slice System Slice.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
[  OK  ] Listening on Journal Socket (/dev/log).
[  OK  ] Created slice system-getty.slice.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Reached target Slices.
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Reached target Local Encrypted Volumes.
[  OK  ] Listening on Journal Socket.
         Starting Remount Root and Kernel File Systems...
         Mounting Kernel Debug File System...
         Mounting Huge Pages File System...
[  OK  ] Listening on udev Control Socket.
[  OK  ] Listening on Journal Audit Socket.
         Starting Journal Service...
         Mounting POSIX Message Queue File System...
[  OK  ] Created slice system-serial\x2dgetty.slice.
         Starting Create Static Device Nodes in /dev...
[  OK  ] Reached target Paths.
[  OK  ] Listening on udev Kernel Socket.
         Starting udev Coldplug all Devices...
[  OK  ] Started Journal Service.
[  OK  ] Started Remount Root and Kernel File Systems.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting Boot Partition...
[  OK  ] Reached target Local File Systems.
         Starting Load/Save Random Seed...
         Starting udev Kernel Device Manager...
         Starting Flush Journal to Persistent Storage...
[  OK  ] Started Load/Save Random Seed.
[   12.651791] systemd-journald[2557]: Received request to flush runtime journal from PID 1
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started Flush Journal to Persistent Storage.
[   12.978674] fsl_dpa soc:fsl,dpaa:ethernet@9 fm1-mac10: renamed from eth3
[  OK  ] Found device /dev/ttyS0.
[   13.010235] fsl_dpa soc:fsl,dpaa:ethernet@5 fm1-mac6: renamed from eth2
[   13.042073] fsl_dpa soc:fsl,dpaa:ethernet@0 fm1-mac1: renamed from eth0
[FAILED] Failed to mount Boot Partition.
See 'systemctl status boot.mount' for details.
[   13.210863] random: crng init done
[   13.214263] random: 7 urandom warning(s) missed due to ratelimiting
         Starting Load Kernel Modules...
         Starting Create Volatile Files and Directories...
[  OK  ] Started Load Kernel Modules.
         Starting Apply Kernel Variables...
         Mounting Kernel Configuration File System...
         Mounting FUSE Control File System...
[  OK  ] Started Apply Kernel Variables.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Mounted FUSE Control File System.
[FAILED] Failed to start Create Volatile Files and Directories.
See 'systemctl status systemd-tmpfiles-setup.service' for details.
         Starting Network Name Resolution...
         Starting Network Time Synchronization...
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Host and Network Name Lookups.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Reached target System Initialization.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting Login Service...
         Starting Permit User Sessions...
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Set the CPU Frequency Scaling governor.
         Starting Dispatcher daemon for systemd-networkd...
         Starting NXP Frame Manager Configuration tool...
[  OK  ] Started Discard unused blocks once a week.
[  OK  ] Started Message of the Day.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Timers.
[  OK  ] Started Permit User Sessions.
[  OK  ] Started Login Service.
[  OK  ] Started Serial Getty on ttyS0.
[  OK  ] Started Getty on tty1.
[  OK  ] Reached target Login Prompts.
[  OK  ] Started NXP Frame Manager Configuration tool.
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Reached target Multi-User System.
[  OK  ] Reached target Graphical Interface.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Started Update UTMP about System Runlevel Changes.


NXP LSDK 2012 lite
localhost login: root

Password: 
Last login: Wed Sep 16 13:14:02 UTC 2020 on ttyS0
Welcome to NXP LSDK 2012 lite (GNU/Linux 4.19.139 aarch64)

 * Support:        https://www.nxp.com/lsdk
 * Documentation:  https://lsdk.github.io/document
 * Licensing:      https://lsdk.github.io/eula
This system has been minimized by removing packages and content that are
not required on a system that users do not log into.

To restore this content, you can run the 'unminimize' command.
root@localhost:~# reboot
         Stopping User         Stopping Session 1 of user root.
         Stopping D-Bus System Message Bus...
[  OK  ] Stopped Network Name Resolution.
[  OK  ] Stopped Dispatcher daemon for systemd-networkd.
[  OK  ] Stopped Serial Getty on ttyS0.
[  OK  ] Stopped Getty on tty1.
[  OK  ] Stopped User Manager for UID 0.
[  OK  ] Stopped D-Bus System Message Bus.
[  OK  ] Stopped Session 1 of user root.
[  OK  ] Removed slice User Slice of root.
         Stopping Login Service...
[  OK  ] Removed slice system-getty.slice.
[  OK  ] Removed slice system-serial\x2dgetty.slice.
         Stopping Permit User Sessions...
[  OK  ] Stopped Login Service.
[  OK  ] Stopped Permit User Sessions.
[  OK  ] Stopped target Remote File Systems.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Paths.
[  OK  ] Stopped target Sockets.
[  OK  ] Closed D-Bus System Message Bus Socket.
[  OK  ] Stopped target Slices.
[  OK  ] Removed slice User and Session Slice.
[  OK  ] Stopped target System Initialization.
         Stopping Update UTMP about System Boot/Shutdown...
         Stopping Load/Save Random Seed...
[  OK  ] Stopped target Local Encrypted Volumes.
[  OK  ] Stopped Forward Password Requests to Wall Directory Watch.
[  OK  ] Stopped Dispatch Password Requests to Console Directory Watch.
         Stopping Network Time Synchronization...
[  OK  ] Stopped target Local File Systems.
         Unmounting /run/user/0...
[  OK  ] Stopped Apply Kernel Variables.
[  OK  ] Stopped Load Kernel Modules.
[  OK  ] Stopped Network Time Synchronization.
[  OK  ] Stopped Load/Save Random Seed.
[  OK  ] Unmounted /run/user/0.
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Stopped target Swap.
[  OK  ] Stopped target Local File Systems (Pre).
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Stopped Update UTMP about System Boot/Shutdown.
[  OK  ] Stopped Remount Root and Kernel File Systems.
[  OK  ] Reached target Shutdown.
[  OK  ] Reached target Final Step.
         Starting Reboot...
[   29.793381] watchdog: watchdog0: watchdog did not stop!
[   30.161650] imx2-wdt 2ad0000.watchdog: Device shutdown: Expect reboot!
[   30.168262] reboot: Restarting system
NOTICE:  Fixed DDR on board

NOTICE:  4 GB DDR4, 64-bit, CL=15, ECC on
NOTICE:  BL2: v1.5(release):ls1046afrwy-early-access-bsp0.1
NOTICE:  BL2: Built : 13:07:14, Apr 17 2019
NOTICE:  BL2: Booting BL31
NOTICE:  BL31: v1.5(release):ls1046afrwy-early-access-bsp0.1
NOTICE:  BL31: Built : 13:07:39, Apr 17 2019
NOTICE:  Welcome to LS1046 BL31 Phase


U-Boot 2018.09 (Apr 17 2019 - 13:06:42 +0800)

SoC:  LS1046AE Rev1.0 (0x87070010)
Clock Configuration:
       CPU0(A72):1600 MHz  CPU1(A72):1600 MHz  CPU2(A72):1600 MHz  
       CPU3(A72):1600 MHz  
       Bus:      600  MHz  DDR:      2100 MT/s  FMAN:     700  MHz
Reset Configuration Word (RCW):
       00000000: 0c150010 0e000000 00000000 00000000
       00000010: 30400506 00800012 40025000 c1000000
       00000020: 00000000 00000000 00000000 00038800
       00000030: 20044100 24003101 00000096 00000001
Model: LS1046A FRWY Board
Board: LS1046AFRWY, Rev: A, boot from QSPI
SD1_CLK1 = 100.00MHZ, SD1_CLK2 = 100.00MHZ
I2C:   ready
DRAM:  3.9 GiB (DDR4, 64-bit, CL=15, ECC on)
SEC0: RNG instantiated
Using SERDES1 Protocol: 12352 (0x3040)
Using SERDES2 Protocol: 1286 (0x506)
NAND:  512 MiB
MMC:   FSL_SDHC: 0
Loading Environment from SPI Flash... SF: Detected mt25qu512a with page size 256 Bytes, erase size 64 KiB, total 64 MiB
OK
EEPROM: NXID v1
In:    serial
Out:   serial
Err:   serial
Net:   SF: Detected mt25qu512a with page size 256 Bytes, erase size 64 KiB, total 64 MiB
Fman1: Uploading microcode version 106.4.18
PCIe0: pcie@3400000 disabled
PCIe1: pcie@3500000 Root Complex: no link
PCIe2: pcie@3600000 Root Complex: x1 gen1
FM1@DTSEC1, FM1@DTSEC5 [PRIME], FM1@DTSEC6, FM1@DTSEC10
Hit any key to stop autoboot: 10  0 
=> setenv netboot "tftp 0xa0000000 $bootfile; tftp 0xb0000000 $fdtfile; booti 0xa0000000 - 0xb0000000"
=> run netboot
Using FM1@DTSEC5 device
TFTP from server 192.168.1.61; our IP address is 192.168.1.110
Filename 'bootpartition_LS_arm64_lts_4.19/Image'.
Load address: 0xa0000000
Loading: *#################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 #################################################################
	 ######################
	 4.1 MiB/s
done
Bytes transferred = 25121280 (17f5200 hex)
Using FM1@DTSEC5 device
TFTP from server 192.168.1.61; our IP address is 192.168.1.110
Filename 'bootpartition_LS_arm64_lts_4.19/fsl-ls1046a-frwy-sdk.dtb'.
Load address: 0xb0000000
Loading: *###
	 3.4 MiB/s
done
Bytes transferred = 31635 (7b93 hex)
## Flattened Device Tree blob at b0000000
   Booting using the fdt blob at 0xb0000000
   Using Device Tree in place at 00000000b0000000, end 00000000b001ab92
WARNING failed to get smmu node: FDT_ERR_NOTFOUND
WARNING failed to get smmu node: FDT_ERR_NOTFOUND

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd082]
[    0.000000] Linux version 4.19.139 (jenkins@saturn) (gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04)) #1 SMP PREEMPT Fri Dec 11 04:09:16 CST 2020
[    0.000000] Machine model: LS1046A FRWY Board
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] OF: reserved mem: initialized node qman-fqd, compatible id fsl,qman-fqd
[    0.000000] OF: reserved mem: initialized node qman-pfdr, compatible id fsl,qman-pfdr
[    0.000000] OF: reserved mem: initialized node bman-fbpr, compatible id fsl,bman-fbpr
[    0.000000] cma: Reserved 32 MiB at 0x00000000f9c00000
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x00000008ff7fffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8ff7c6140-0x8ff7c78ff]
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000008ff7fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x00000000fbdfffff]
[    0.000000]   node   0: [mem 0x0000000880000000-0x00000008fbffffff]
[    0.000000]   node   0: [mem 0x00000008ff000000-0x00000008ff7fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ff7fffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] random: get_random_bytes called from start_kernel+0xa8/0x418 with crng_init=0
[    0.000000] percpu: Embedded 24 pages/cpu s59352 r8192 d30760 u98304
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: enabling workaround for EL2 vector hardening
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1001184
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: wdt_period=35 root=/dev/nfs rw nfsroot=192.168.1.61:/srv/nfs/rootfs_lsdk2012_ubuntu_lite_arm64,nfsvers=3 ip=dhcp rootwait console=ttyS0,115200
[    0.000000] software IO TLB: mapped [mem 0xf5c00000-0xf9c00000] (64MB)
[    0.000000] Memory: 3878904K/4069376K available (15164K kernel code, 1684K rwdata, 6212K rodata, 1408K init, 949K bss, 157704K reserved, 32768K cma-reserved)
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GIC: Adjusting CPU interface base to 0x000000000142f000
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] arch_timer: cp15 timer(s) running at 25.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000002] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000317] Console: colour dummy device 80x25
[    0.000353] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000358] pid_max: default: 32768 minimum: 301
[    0.000414] Security Framework initialized
[    0.001469] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001995] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.002033] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002053] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.024001] ASID allocator initialised with 32768 entries
[    0.031998] rcu: Hierarchical SRCU implementation.
[    0.040924] EFI services will not be available.
[    0.048013] smp: Bringing up secondary CPUs ...
[    0.080145] Detected PIPT I-cache on CPU1
[    0.080169] CPU1: Booted secondary processor 0x0000000001 [0x410fd082]
[    0.112159] Detected PIPT I-cache on CPU2
[    0.112175] CPU2: Booted secondary processor 0x0000000002 [0x410fd082]
[    0.144190] Detected PIPT I-cache on CPU3
[    0.144205] CPU3: Booted secondary processor 0x0000000003 [0x410fd082]
[    0.144236] smp: Brought up 1 node, 4 CPUs
[    0.144247] SMP: Total of 4 processors activated.
[    0.144251] CPU features: detected: 32-bit EL0 Support
[    0.144643] CPU: All CPU(s) started at EL2
[    0.144654] alternatives: patching kernel code
[    0.145296] devtmpfs: initialized
[    0.147949] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.147972] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.148356] xor: measuring software checksum speed
[    0.188151]    8regs     :  6820.000 MB/sec
[    0.228166]    8regs_prefetch:  5943.000 MB/sec
[    0.268187]    32regs    :  7669.000 MB/sec
[    0.308209]    32regs_prefetch:  6483.000 MB/sec
[    0.308212] xor: using function: 32regs (7669.000 MB/sec)
[    0.308217] pinctrl core: initialized pinctrl subsystem
[    0.308868] DMI not present or invalid.
[    0.309058] NET: Registered protocol family 16
[    0.309233] audit: initializing netlink subsys (disabled)
[    0.309277] audit: type=2000 audit(0.308:1): state=initialized audit_enabled=0 res=1
[    0.310083] cpuidle: using governor menu
[    0.310167] Bman ver:0a02,02,01
[    0.312319] qman-fqd addr 0x00000008ff800000 size 0x800000
[    0.312323] qman-pfdr addr 0x00000008fc000000 size 0x2000000
[    0.312332] Qman ver:0a01,03,02,01
[    0.312465] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.312900] DMA: preallocated 256 KiB pool for atomic allocations
[    0.313457] Serial: AMBA PL011 UART driver
[    0.318089] Machine: LS1046A FRWY Board
[    0.318095] SoC family: QorIQ LS1046A
[    0.318097] SoC ID: svr:0x87070010, Revision: 1.0
[    0.333708] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.333919] cryptd: max_cpu_qlen set to 1000
[    0.400346] raid6: int64x1  gen()   985 MB/s
[    0.468399] raid6: int64x1  xor()   881 MB/s
[    0.536435] raid6: int64x2  gen()  1348 MB/s
[    0.604453] raid6: int64x2  xor()  1288 MB/s
[    0.672467] raid6: int64x4  gen()  2095 MB/s
[    0.740515] raid6: int64x4  xor()  1472 MB/s
[    0.808562] raid6: int64x8  gen()  1998 MB/s
[    0.876578] raid6: int64x8  xor()  1433 MB/s
[    0.944606] raid6: neonx1   gen()  2026 MB/s
[    1.012633] raid6: neonx1   xor()  2205 MB/s
[    1.080679] raid6: neonx2   gen()  2640 MB/s
[    1.148706] raid6: neonx2   xor()  2801 MB/s
[    1.216734] raid6: neonx4   gen()  3509 MB/s
[    1.284769] raid6: neonx4   xor()  3120 MB/s
[    1.352801] raid6: neonx8   gen()  3918 MB/s
[    1.420839] raid6: neonx8   xor()  3346 MB/s
[    1.420842] raid6: using algorithm neonx8 gen() 3918 MB/s
[    1.420845] raid6: .... xor() 3346 MB/s, rmw enabled
[    1.420848] raid6: using neon recovery algorithm
[    1.421222] ACPI: Interpreter disabled.
[    1.423159] vgaarb: loaded
[    1.423292] SCSI subsystem initialized
[    1.423555] usbcore: registered new interface driver usbfs
[    1.423577] usbcore: registered new interface driver hub
[    1.423609] usbcore: registered new device driver usb
[    1.424147] i2c i2c-0: using dma0chan16 (tx) and dma0chan17 (rx) for DMA transfers
[    1.424152] i2c i2c-0: IMX I2C adapter registered
[    1.424793] pps_core: LinuxPPS API ver. 1 registered
[    1.424797] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.424810] PTP clock support registered
[    1.424937] EDAC MC: Ver: 3.0.0
[    1.425100] bman-fbpr addr 0x00000008fe000000 size 0x1000000
[    1.425127] Bman err interrupt handler present
[    1.425579] Bman portal initialised, cpu 0
[    1.425645] Bman portal initialised, cpu 1
[    1.425709] Bman portal initialised, cpu 2
[    1.425774] Bman portal initialised, cpu 3
[    1.425777] Bman portals initialised
[    1.426837] Qman err interrupt handler present
[    1.427233] QMan: Allocated lookup table at (____ptrval____), entry count 131073
[    1.427631] Qman portal initialised, cpu 0
[    1.427689] Qman portal initialised, cpu 1
[    1.427744] Qman portal initialised, cpu 2
[    1.427798] Qman portal initialised, cpu 3
[    1.427801] Qman portals initialised
[    1.427871] Bman: BPID allocator includes range 32:32
[    1.427913] Qman: FQID allocator includes range 256:256
[    1.427917] Qman: FQID allocator includes range 32768:32768
[    1.427963] Qman: CGRID allocator includes range 0:256
[    1.428117] Qman: pool channel allocator includes range 1025:15
[    1.428200] No USDPAA memory, no 'fsl,usdpaa-mem' in device-tree
[    1.428499] fsl-ifc 1530000.ifc: Freescale Integrated Flash Controller
[    1.428512] fsl-ifc 1530000.ifc: IFC version 1.4, 8 banks
[    1.428726] Advanced Linux Sound Architecture Driver Initialized.
[    1.429122] clocksource: Switched to clocksource arch_sys_counter
[    1.429190] VFS: Disk quotas dquot_6.6.0
[    1.429216] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.429270] pnp: PnP ACPI: disabled
[    1.432423] NET: Registered protocol family 2
[    1.432689] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)
[    1.432724] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    1.432923] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    1.433186] TCP: Hash tables configured (established 32768 bind 32768)
[    1.433244] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    1.433267] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    1.433337] NET: Registered protocol family 1
[    1.433524] RPC: Registered named UNIX socket transport module.
[    1.433529] RPC: Registered udp transport module.
[    1.433532] RPC: Registered tcp transport module.
[    1.433535] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.433926] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[    1.434183] kvm [1]: 8-bit VMID
[    1.434541] kvm [1]: vgic interrupt IRQ1
[    1.434595] kvm [1]: Hyp mode initialized successfully
[    1.436104] Initialise system trusted keyrings
[    1.436162] workingset: timestamp_bits=44 max_order=20 bucket_order=0
[    1.436429] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.436535] NFS: Registering the id_resolver key type
[    1.436542] Key type id_resolver registered
[    1.436545] Key type id_legacy registered
[    1.436551] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.436606] fuse init (API version 7.27)
[    1.436679] 9p: Installing v9fs 9p2000 file system support
[    1.438218] Key type asymmetric registered
[    1.438223] Asymmetric key parser 'x509' registered
[    1.438246] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    1.438304] io scheduler noop registered
[    1.438307] io scheduler deadline registered
[    1.438329] io scheduler cfq registered (default)
[    1.438332] io scheduler mq-deadline registered
[    1.438335] io scheduler kyber registered
[    1.446489] layerscape-pcie 3500000.pcie: host bridge /soc/pcie@3500000 ranges:
...

This file has been truncated, please download it to see its full contents.

Credits

Flint Weller
24 projects • 21 followers
NXP Dedicated Applications Processor FAE
Contact

Comments

Please log in or sign up to comment.