lkml.org 
[lkml]   [2020]   [Mar]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCHv2 2/2] clk: meson: g12a: set cpub_clk flags to CLK_IS_CRITICAL
Hi Kevin,

Thanks for your review comments,
Plz see my inline comment.
Let me try to explain with the logs from my side.

On Mon, 2 Mar 2020 at 22:31, Kevin Hilman <khilman@baylibre.com> wrote:
>
> Anand Moon <linux.amoon@gmail.com> writes:
>
> > On Odroid n2, cpub_clk is not geting enable, which lead the stalling
> > at booting of the device,
>
> First, how is the CPU_B clk related to the SD card issue described in
> the cover letter? I think this patch is attempting to fix something
> unrelated to the SD card. Please separate from this series (or describe
> in detail how it's related to the SD card booting.)
>
Yes you are correct, its not related to sdcard,
It's related to *cpub_clk* clock not getting enabled,
we can check this in clk_summary of the board.

> Also, we're missing lots of details here to be able to help. Are you
> using the u-boot from hardkernel? your own? something else? What's
> the version?

I am using Archlinux distro with mainline latest kernel 5.6-rc4 and
mainline u-boot (U-Boot 2020.04-rc3-00043-g5b07eb8ee6-dirty (Mar 03
2020 - 11:30:28 +0530) odroid-n2)
for my testing.

>
> Can you share logs (including u-boot logs) showing how your kernel is
> booting and full kernel boot log (including the stalls.)

I am using Archlinux distro to test. So here is the log for pre-compiled
images booting from sdcard, which fails.

Here is the boot log. Using sdcard failed to boot.

[0] https://pastebin.com/6zgFR8Zj (odroid_n2_sdcard_stalled)

Using same image with eMMC it will boot to login prompt.

[1] https://pastebin.com/wyZqAtjw (odroid_n2_emmc_booting)

>
> > updating flags to CLK_IS_CRITICAL which help enable all the parent for
> > cpub_clk.
>
> With current mainline, I've tested DVFS using CPUfreq on both clusters
> on odroid-n2, and both clusters are booting, so I don't understand the
> need for this patch.
>

Here is the *clk_summary* of the mainline kernel it shows that
cpub_clk is not getting enabled before this patch.

[2] https://pastebin.com/WFYcwtTa (clk_summary_emmc_before.txt)

After my patch changes here is the clk_summary for eMMC and microSD cards.
it's observed that cpub_clk and it's parent clock are getting enabled.

[3] https://pastebin.com/PLzHjSXj (clk_summary.eMMC_after my changes)
[4] https://pastebin.com/yBqwTCvZ (clk_summary.microSD_after my changes)

> It's not related to your problem (I don't think) but for the regulators
> used by each cluster, the PWM driver is needed, and there's a bug/race
> in the probing of the PWM regulators used for CPU_B. If you make the
> PWM regulators, built-in this problem goes away for CPUfreq.
>
> Just for kicks, can you build your kernel with CONFIG_PWM_MESON=y
> (currently defaults to =n) and see if you have any better results with
> booting.

I have build the kernel with CONFIG_PWM_MESON=n
Here is the boot log at my end on microsd card.

[5] https://pastebin.com/dv45U4EM (odroid_n2_sdcard_stalled_PWM_MESON=n)

I have also build the kernel with CONFIG_PWM_MESON=y
Here is the boot log at my end on microsd card

[6] https://pastebin.com/XWmdFwnf (odroid_n2_sdcard_PWM_MESON=y)

>
> And FYI, any use of CLK_IS_CRITICAL will be very highly scrutinized.
> You will need detailed justification for adding this flag since it most
> often is just masking some other bug.
>

FYI, I had done code walk through with the clk frame work with the driver
and S922X datasheet, but could not find effective way enable this cpub_clk
clock dynamically, I am not much aware of how clk get enable / disable in the
first place. It's most likely, that bug could be some missing code changes
or other clock that could trigger this.

But I tried to add some core debug prints to clk frame work, but with
my changes I was not able to boot the kernel.

Yes I am aware masking CLK_IS_CRITICAL to flags might not be appropriate.
But is their any another alternate way to debug further.
Plz let me know. I will test this other approach.

Plz Plz Plz let me know how to debug further.

-Anand

> Kevin
>

On Mon, 2 Mar 2020 at 22:31, Kevin Hilman <khilman@baylibre.com> wrote:
>
> Anand Moon <linux.amoon@gmail.com> writes:
>
> > On Odroid n2, cpub_clk is not geting enable, which lead the stalling
> > at booting of the device,
>
> First, how is the CPU_B clk related to the SD card issue described in
> the cover letter? I think this patch is attempting to fix something
> unrelated to the SD card. Please separate from this series (or describe
> in detail how it's related to the SD card booting.)
>
> Also, we're missing lots of details here to be able to help. Are you
> using the u-boot from hardkernel? your own? something else? What's
> the version?
>
> Can you share logs (including u-boot logs) showing how your kernel is
> booting and full kernel boot log (including the stalls.)
>
> > updating flags to CLK_IS_CRITICAL which help enable all the parent for
> > cpub_clk.
>
> With current mainline, I've tested DVFS using CPUfreq on both clusters
> on odroid-n2, and both clusters are booting, so I don't understand the
> need for this patch.
>
> It's not related to your problem (I don't think) but for the regulators
> used by each cluster, the PWM driver is needed, and there's a bug/race
> in the probing of the PWM regulators used for CPU_B. If you make the
> PWM regulators, built-in this problem goes away for CPUfreq.
>
> Just for kicks, can you build your kernel with CONFIG_PWM_MESON=y
> (currently defaults to =n) and see if you have any better results with
> booting.
>
> And FYI, any use of CLK_IS_CRITICAL will be very highly scrutinized.
> You will need detailed justification for adding this flag since it most
> often is just masking some other bug.
>
> Kevin
>
> > Fixes: ffae8475b90c (clk: meson: g12a: add notifiers to handle cpu clock change);
> > Cc: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
> > Cc: Jerome Brunet <jbrunet@baylibre.com>
> > Cc: Neil Armstrong <narmstrong@baylibre.com>
> > Suggested-by: Neil Armstrong <narmstrong@baylibre.com>
> > Signed-off-by: Anand Moon <linux.amoon@gmail.com>
> > ---
> > Previous changes
> > fix the commit $subject and $message as previously I was
> > wrong on the my findings.
> > Added the Fixed tags to the commit.
> >
> > Following Neil's suggestion, I have prepared this patch.
> > https://patchwork.kernel.org/patch/11177441/#22964889
> > ---
> > drivers/clk/meson/g12a.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c
> > index d2760a021301..7237d08b4112 100644
> > --- a/drivers/clk/meson/g12a.c
> > +++ b/drivers/clk/meson/g12a.c
> > @@ -681,7 +681,7 @@ static struct clk_regmap g12b_cpub_clk = {
> > &g12a_sys_pll.hw
> > },
> > .num_parents = 2,
> > - .flags = CLK_SET_RATE_PARENT,
> > + .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
> > },
> > };
> >
> > --
> > 2.25.1
amoon@ThinkPad-T440s:~$ pic0
[sudo] password for amoon:
picocom v3.1

port is : /dev/ttyUSB0
flowcontrol : none
baudrate is : 115200
parity is : none
databits are : 8
stopbits are : 1
escape is : C-a
local echo is : no
noinit is : no
noreset is : yes
hangup is : no
nolock is : yes
send_cmd is : sz -vv
receive_cmd is : rz -vv -E
imap is :
omap is :
emap is : crcrlf,delbs,
logfile is : none
initstring : none
exit_after is : not set
exit is : no

Type [C-a] [C-h] to see available commands
Terminal ready
G12B:BL:6e7c85:7898ac;FEAT:E0F83180:2000;POC:F;RCY:0;EMMC:800;NAND:81;SD?:0;SD:0;READ:0;0.0
bl2_stage_init 0x01
bl2_stage_init 0x81
hw id: 0x0000 - pwm id 0x01
bl2_stage_init 0xc1
bl2_stage_init 0x02

no sdio debug board detected
L0:00000000
L1:00000703
L2:00008067
L3:04000000
B2:00002000
B1:e0f83180

TE: 377950

BL2 Built : 06:17:13, Jun 28 2019. g12b gf0505d7-dirty - qi.duan@droid13

Board ID = 4
Set A53 clk to 24M
Set A73 clk to 24M
Set clk81 to 24M
A53 clk: 1200 MHz
A73 clk: 1200 MHz
CLK81: 166.6M
smccc: 00060c94
DDR driver_vesion: LPDDR4_PHY_V_0_1_14 build time: Jun 28 2019 06:17:09
board id: 4
Load FIP HDR from SD, src: 0x00010200, des: 0xfffd0000, size: 0x00004000, part: 0
fw parse done
Load ddrfw from SD, src: 0x00060200, des: 0xfffd0000, size: 0x0000c000, part: 0
Load ddrfw from SD, src: 0x00038200, des: 0xfffd0000, size: 0x00004000, part: 0
PIEI prepare done
fastboot data load
fastboot data verify
verify result: 255
Cfg max: 2, cur: 1. Board id: 255. Force loop cfg
DDR4 probe
ddr clk to 1320MHz
Load ddrfw from SD, src: 0x00014200, des: 0xfffd0000, size: 0x0000c000, part: 0
Check phy result
INFO : End of initialization
INFO : End of read enable training
INFO : End of fine write leveling
INFO : End of read dq deskew training
INFO : End of MPR read delay center optimization
INFO : End of Write leveling coarse delay
INFO : End of write delay center optimization
INFO : End of read delay center optimization
INFO : End of max read latency training
INFO : Training has run successfully!
1D training succeed
Load ddrfw from SD, src: 0x00020200, des: 0xfffd0000, size: 0x0000c000, part: 0
Check phy result
INFO : End of initialization
INFO : End of 2D read delay Voltage center optimization
INFO : End of 2D write delay Voltage center optimization
INFO : Training has run successfully!

R0_RxClkDly_Margin==94 ps 8
R0_TxDqDly_Margi==94 ps 8


R1_RxClkDly_Margin==0 ps 0
R1_TxDqDly_Margi==0 ps 0

dwc_ddrphy_apb_wr((0<<20)|(2<<16)|(0<<12)|(0xb0):0001
2D training succeed
auto size-- 65535DDR cs0 size: 2048MB
DDR cs1 size: 2048MB
DMC_DDR_CTRL: 00600024DDR size: 3928MB
cs0 DataBus test pass
cs1 DataBus test pass
cs0 AddrBus test pass
cs1 AddrBus test pass
pre test bdlr_100_average==435 bdlr_100_min==435 bdlr_100_max==435 bdlr_100_cur==435
aft test bdlr_100_average==435 bdlr_100_min==435 bdlr_100_max==435 bdlr_100_cur==435
non-sec scramble use zero key
ddr scramble enabled

100bdlr_step_size ps== 435
result report
boot times 0Enable ddr reg access
Load FIP HDR from SD, src: 0x00010200, des: 0x01700000, size: 0x00004000, part: 0
Load BL3X from SD, src: 0x0006c200, des: 0x0175c000, size: 0x00087e00, part: 0
0.0;M3 CHK:0;cm4_sp_mode 0
E30HDR
MVN_1=0x00000000
MVN_2=0x00000000
[Image: g12b_v1.1.3375-8f9c8a7 2019-01-24 10:44:46 guotai.shen@droid11-sz]
OPS=0x40
ring efuse init
chipver efuse init
29 0a 40 00 01 20 10 00 00 15 30 32 54 52 4d 50
[0.019859 Inits done]
secure task start!
high task start!
low task start!
run into bl31
NOTICE: BL31: v1.3(release):ab8811b
NOTICE: BL31: Built : 15:03:31, Feb 12 2019
NOTICE: BL31: G12A normal boot!
NOTICE: BL31: BL33 decompress pass
ERROR: Error initializing runtime service opteed_fast


U-Boot 2020.04-rc3-00043-g5b07eb8ee6-dirty (Mar 03 2020 - 11:11:13 +0530) odroid-n2

Model: Hardkernel ODROID-N2
SoC: Amlogic Meson G12B (S922X) Revision 29:a (40:2)
DRAM: 3.8 GiB
MMC: meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
sd@ffe05000: 1, mmc@ffe07000: 2
In: serial@3000
Out: serial@3000
Err: serial@3000
Net:
Warning: ethernet@ff3f0000 (eth0) using random MAC address - 72:e2:2b:f9:13:fc
eth0: ethernet@ff3f0000
Hit any key to stop autoboot: 0
MMC Device 0 not found
no mmc device at slot 0
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 50000000
switch to partitions #0, OK
mmc1 is current device
Scanning mmc 1:1...
Found U-Boot script /boot/boot.scr
745 bytes read in 2 ms (363.3 KiB/s)
## Executing script at 08000000
27382272 bytes read in 1166 ms (22.4 MiB/s)
65829 bytes read in 5 ms (12.6 MiB/s)
7390163 bytes read in 316 ms (22.3 MiB/s)
## Flattened Device Tree blob at 08008000
Booting using the fdt blob at 0x8008000
Loading Ramdisk to f2837000, end f2f433d3 ... OK
Loading Device Tree to 00000000f2823000, end 00000000f2836124 ... OK

Starting kernel ...

[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 5.4.1-1-ARCH (builduser@leming) (gcc version 8.3.0 (GCC)) #1 SMP Sat Nov 30 18:54:05 UTC 2019
[ 0.000000] Machine model: Hardkernel ODROID-N2
[ 0.000000] efi: Getting EFI parameters from FDT:
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: created CMA memory pool at 0x00000000e2800000, size 256 MiB
[ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[ 0.000000] earlycon: meson0 at MMIO 0x00000000ff803000 (options '115200n8')
[ 0.000000] printk: bootconsole [meson0] enabled
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.0 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[ 0.000000] psci: SMC Calling Convention v1.1
[ 0.000000] percpu: Embedded 30 pages/cpu s85656 r8192 d29032 u122880
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 987072
[ 0.000000] Kernel command line: console=ttyAML0,115200n8 root=PARTUUID=10c04512-01 rw rootwait earlycon no_console_suspend
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] Memory: 3633416K/4011008K available (14908K kernel code, 2740K rwdata, 7048K rodata, 1984K init, 828K bss, 115448K reserved, 262144K cma-reserved)
[ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x88/0x158 with crng_init=0
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[ 0.000000] ftrace: allocating 51509 entries in 202 pages
[ 0.000000] rcu: Hierarchical RCU implementation.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[ 0.000000] Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GIC: Using split EOI/Deactivate mode
[ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized
[ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[ 0.008447] Console: colour dummy device 80x25
[ 0.012541] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[ 0.022933] pid_max: default: 32768 minimum: 301
[ 0.027707] LSM: Security Framework initializing
[ 0.032208] Yama: becoming mindful.
[ 0.035772] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.043150] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.051064] *** VALIDATE tmpfs ***
[ 0.054829] *** VALIDATE proc ***
[ 0.057939] *** VALIDATE cgroup1 ***
[ 0.061365] *** VALIDATE cgroup2 ***
[ 0.065891] ASID allocator initialised with 32768 entries
[ 0.070415] rcu: Hierarchical SRCU implementation.
[ 0.078764] EFI services will not be available.
[ 0.080156] smp: Bringing up secondary CPUs ...
[ 0.084895] Detected VIPT I-cache on CPU1
[ 0.084944] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.086156] CPU features: detected: ARM erratum 858921
[ 0.086163] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware
[ 0.086170] Detected VIPT I-cache on CPU2
[ 0.086194] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.086208] arch_timer: CPU2: Trapping CNTVCT access
[ 0.086214] CPU2: Booted secondary processor 0x0000000100 [0x410fd092]
[ 0.086865] Detected VIPT I-cache on CPU3
[ 0.086880] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.086886] arch_timer: CPU3: Trapping CNTVCT access
[ 0.086891] CPU3: Booted secondary processor 0x0000000101 [0x410fd092]
[ 0.087481] Detected VIPT I-cache on CPU4
[ 0.087496] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.087502] arch_timer: CPU4: Trapping CNTVCT access
[ 0.087507] CPU4: Booted secondary processor 0x0000000102 [0x410fd092]
[ 0.088118] Detected VIPT I-cache on CPU5
[ 0.088134] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.088140] arch_timer: CPU5: Trapping CNTVCT access
[ 0.088145] CPU5: Booted secondary processor 0x0000000103 [0x410fd092]
[ 0.088225] smp: Brought up 1 node, 6 CPUs
[ 0.199149] SMP: Total of 6 processors activated.
[ 0.203877] CPU features: detected: 32-bit EL0 Support
[ 0.209044] CPU features: detected: CRC32 instructions
[ 0.214695] CPU: All CPU(s) started at EL2
[ 0.218336] alternatives: patching kernel code
[ 0.224024] devtmpfs: initialized
[ 0.235354] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.239577] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.253012] pinctrl core: initialized pinctrl subsystem
[ 0.253946] DMI not present or invalid.
[ 0.256831] NET: Registered protocol family 16
[ 0.262637] DMA: preallocated 256 KiB pool for atomic allocations
[ 0.267094] audit: initializing netlink subsys (disabled)
[ 0.272595] audit: type=2000 audit(0.220:1): state=initialized audit_enabled=0 res=1
[ 0.280286] cpuidle: using governor ladder
[ 0.284368] cpuidle: using governor menu
[ 0.288594] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.295758] Serial: AMBA PL011 UART driver
[ 0.316316] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.317410] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.324117] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.330862] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 1.495827] cryptd: max_cpu_qlen set to 1000
[ 1.519258] ACPI: Interpreter disabled.
[ 1.520020] 5V: supplied by 12V
[ 1.521379] VDDAO_3V3: supplied by 12V
[ 1.525210] iommu: Default domain type: Translated
[ 1.529599] vgaarb: loaded
[ 1.532507] SCSI subsystem initialized
[ 1.535956] usbcore: registered new interface driver usbfs
[ 1.541267] usbcore: registered new interface driver hub
[ 1.546613] usbcore: registered new device driver usb
[ 1.552021] pps_core: LinuxPPS API ver. 1 registered
[ 1.556632] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.565831] PTP clock support registered
[ 1.569911] EDAC MC: Ver: 3.0.0
[ 1.573510] Advanced Linux Sound Architecture Driver Initialized.
[ 1.579326] NetLabel: Initializing
[ 1.582444] NetLabel: domain hash size = 128
[ 1.586819] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 1.592547] NetLabel: unlabeled traffic allowed by default
[ 1.598371] clocksource: Switched to clocksource arch_sys_counter
[ 2.050660] *** VALIDATE bpf ***
[ 2.050807] VFS: Disk quotas dquot_6.6.0
[ 2.052206] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.059153] *** VALIDATE ramfs ***
[ 2.062495] *** VALIDATE hugetlbfs ***
[ 2.066477] pnp: PnP ACPI: disabled
[ 2.073057] thermal_sys: Registered thermal governor 'fair_share'
[ 2.073059] thermal_sys: Registered thermal governor 'bang_bang'
[ 2.075874] thermal_sys: Registered thermal governor 'step_wise'
[ 2.081922] thermal_sys: Registered thermal governor 'user_space'
[ 2.087949] thermal_sys: Registered thermal governor 'power_allocator'
[ 2.094433] NET: Registered protocol family 2
[ 2.105337] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 2.113623] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 2.121712] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 2.129089] TCP: Hash tables configured (established 32768 bind 32768)
[ 2.135536] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 2.142240] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 2.149510] NET: Registered protocol family 1
[ 2.154097] RPC: Registered named UNIX socket transport module.
[ 2.159718] RPC: Registered udp transport module.
[ 2.164424] RPC: Registered tcp transport module.
[ 2.169159] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 2.175628] PCI: CLS 0 bytes, default 64
[ 2.179666] Trying to unpack rootfs image as initramfs...
[ 2.440446] Freeing initrd memory: 7216K
[ 2.441013] kvm [1]: IPA Size Limit: 40bits
[ 2.443526] kvm [1]: vgic interrupt IRQ1
[ 2.446952] kvm [1]: Hyp mode initialized successfully
[ 2.742469] Initialise system trusted keyrings
[ 2.742627] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 2.750947] zbud: loaded
[ 2.752315] NFS: Registering the id_resolver key type
[ 2.755359] Key type id_resolver registered
[ 2.759562] Key type id_legacy registered
[ 2.763577] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 2.770412] SGI XFS with ACLs, security attributes, no debug enabled
[ 2.790891] NET: Registered protocol family 38
[ 2.790918] Key type asymmetric registered
[ 2.793794] Asymmetric key parser 'x509' registered
[ 2.798740] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[ 2.806254] io scheduler mq-deadline registered
[ 2.810692] io scheduler kyber registered
[ 2.814812] io scheduler bfq registered
[ 2.821903] GPIO line 447 (usb-hub-reset) hogged as output/high
[ 2.827713] IPMI message handler: version 39.2
[ 2.837142] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected
[ 2.840531] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 2.845234] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 2.852370] Serial: 8 2.859429] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 12, base_baud = 1500000) is a meson_uart
[ 2.868861] printk: console [ttyAML0] enabled
[ 2.868861] printk: console [ttyAML0] enabled
[ 2.871892] printk: bootconsole [meson0] disabled
[ 2.871892] printk: bootconsole [meson0] disabled
[ 2.881522] msm_serial: driver initialized
[ 2.890066] libphy: Fixed MDIO Bus: probed
[ 2.891521] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.895788] ehci-pci: EHCI PCI platform driver
[ 2.900224] ehci-platform: EHCI generic platform driver
[ 2.905453] ehci-orion: EHCI orion driver
[ 2.909409] tegra-ehci: Tegra EHCI driver
[ 2.913369] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.919427] ohci-pci: OHCI PCI platform driver
[ 2.923837] ohci-platform: OHCI generic platform driver
[ 2.929082] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.935699] usbcore: registered new interface driver uas
[ 2.940578] usbcore: registered new interface driver usb-storage
[ 2.946512] usbcore: registered new interface driver ums-alauda
[ 2.952384] usbcore: registered new interface driver ums-cypress
[ 2.958331] usbcore: registered new interface driver ums-datafab
[ 2.964286] usbcore: registered new interface driver ums_eneub6250
[ 2.970409] usbcore: registered new interface driver ums-freecom
[ 2.976358] usbcore: registered new interface driver ums-isd200
[ 2.982226] usbcore: registered new interface driver ums-jumpshot
[ 2.988257] usbcore: registered new interface driver ums-karma
[ 2.994042] usbcore: registered new interface driver ums-onetouch
[ 3.000089] usbcore: registered new interface driver ums-realtek
[ 3.006026] usbcore: registered new interface driver ums-sddr09
[ 3.011903] usbcore: registered new interface driver ums-sddr55
[ 3.017755] usbcore: registered new interface driver ums-usbat
[ 3.023566] usbcore: registered new interface driver usbserial_generic
[ 3.030008] usbserial: USB Serial support registered for generic
[ 3.036932] mousedev: PS/2 mouse device common for all mice
[ 3.043997] device-mapper: uevent: version 1.0.3
[ 3.046166] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
[ 3.055613] sdhci: Secure Digital Host Controller Interface driver
[ 3.060537] sdhci: Copyright(c) Pierre Ossman
[ 3.065298] Synopsys Designware Multimedia Card Interface Driver
[ 3.071724] VCC_3V3: supplied by VDDAO_3V3
[ 3.074921] FLASH_1V8: supplied by VCC_3V3
[ 3.078993] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq
[ 3.111786] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.113108] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.118078] meson-sm: secure-monitor enabled
[ 3.122370] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.127425] usbcore: registered new interface driver usbhid
[ 3.132857] usbhid: USB HID core driver
[ 3.140285] drop_monitor: Initializing network drop monitor service
[ 3.143064] Initializing XFRM netlink socket
[ 3.147517] NET: Registered protocol family 10
[ 3.180088] Segment Routing with IPv6
[ 3.180147] mip6: Mobile IPv6
[ 3.181048] NET: Registered protocol family 17
[ 3.185569] Key type dns_resolver registered
[ 3.189969] registered taskstats version 1
[ 3.193725] Loading compiled-in X.509 certificates
[ 3.198539] zswap: loaded using pool lzo/zbud
[ 3.202895] Key type ._fscrypt registered
[ 3.206749] Key type .fscrypt registered
[ 3.210692] Key type big_key registered
[ 3.224733] Key type encrypted registered
[ 3.234919] VCC_1V8: supplied by VCC_3V3
[ 3.234970] VDDAO_1V8: supplied by VDDAO_3V3
[ 3.237595] HUB_5V: supplied by 5V
[ 3.241030] USB_PWR_EN: supplied by 5V
[ 3.246144] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 3.251350] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 3.257771] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2
[ 3.262464] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1
[ 3.270562] dwc2 ff400000.usb: ff400000.usb supply vusb_d not found, using dummy regulator
[ 3.275850] dwc2 ff400000.usb: ff400000.usb supply vusb_a not found, using dummy regulator
[ 3.284137] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM
[ 3.291614] dwc3 ff500000.usb: Failed to get clk 'ref': -2
[ 3.296634] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 3.301997] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 3.309579] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010
[ 3.318806] xhci-hcd xhci-hcd.0.auto: irq 22, io mem 0xff500000
[ 3.324807] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[ 3.332842] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.339997] usb usb1: Product: xHCI Host Controller
[ 3.344819] usb usb1: Manufacturer: Linux 5.4.1-1-ARCH xhci-hcd
[ 3.350690] usb usb1: SerialNumber: xhci-hcd.0.auto
[ 3.355758] hub 1-0:1.0: USB hub found
[ 3.359250] hub 1-0:1.0: 2 ports detected
[ 3.363382] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 3.368703] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 3.376219] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 3.382722] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.390758] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
[ 3.398907] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.406057] usb usb2: Product: xHCI Host Controller
[ 3.410893] usb usb2: Manufacturer: Linux 5.4.1-1-ARCH xhci-hcd
[ 3.416751] usb usb2: SerialNumber: xhci-hcd.0.auto
[ 3.421809] hub 2-0:1.0: USB hub found
[ 3.425302] hub 2-0:1.0: 1 port detected
[ 3.429396] dwc3-meson-g12a ffe09000.usb: switching to Device Mode
[ 3.436293] meson-gx-mmc ffe05000.sd: Got CD GPIO
[ 3.466757] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 3.468005] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 3.474535] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 3.480694] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 3.487112] hctosys: unable to open rtc device (rtc0)

bl31 reboot reason: 0x8
bl31 reboot reason: 0x8
system cmd 0.
bl30 get wakeup sources!
process command 00000006
bl30 enter suspend!
Little core clk suspend rate 1896000000
Big core clk suspend rate 1704000000
store restore gp0 pll
suspend_counter: 1
Enter ddr suspend
ddr suspend time: 17us
alarm=0S
process command 00000001
GPIOA_11/13 off
cec ver:2018/04/19
CEC cfg:0x0000
WAKEUP GPIO cfg:0x00000000
use vddee new table!
kern log_addr:0x00
cec T: 00
err: tx not finish flag
cec reset
Set cec pinmux:0x11
Set cec log_addr:0x10,ADDR0:10
G12B:BL:6e7c85:7898ac;FEAT:E0F83180:2000;POC:F;RCY:0;EMMC:0;READ:0;0.0
bl2_stage_init 0x01
bl2_stage_init 0x81
hw id: 0x0000 - pwm id 0x01
bl2_stage_init 0xc1
bl2_stage_init 0x02

L0:00000000
L1:00000703
L2:00008067
L3:04000000
B2:00002000
B1:e0f83180

TE: 115090

BL2 Built : 06:17:13, Jun 28 2019. g12b gf0505d7-dirty - qi.duan@droid13

Board ID = 4
Set A53 clk to 24M
Set A73 clk to 24M
Set clk81 to 24M
A53 clk: 1200 MHz
A73 clk: 1200 MHz
CLK81: 166.6M
smccc: 000209c8
eMMC boot @ 0
sw8 s
DDR driver_vesion: LPDDR4_PHY_V_0_1_14 build time: Jun 28 2019 06:17:09
board id: 4
Load FIP HDR from eMMC, src: 0x00010200, des: 0xfffd0000, size: 0x00004000, part: 0
fw parse done
Load ddrfw from eMMC, src: 0x00060200, des: 0xfffd0000, size: 0x0000c000, part: 0
Load ddrfw from eMMC, src: 0x00038200, des: 0xfffd0000, size: 0x00004000, part: 0
PIEI prepare done
fastboot data load
00000000
emmc switch 1 ok
00000000
emmc switch 2 ok
fastboot data verify
verify result: 255
Cfg max: 2, cur: 1. Board id: 255. Force loop cfg
DDR4 probe
ddr clk to 1320MHz
Load ddrfw from eMMC, src: 0x00014200, des: 0xfffd0000, size: 0x0000c000, part: 0
00000000
emmc switch 0 ok
Check phy result
INFO : End of initialization
INFO : End of read enable training
INFO : End of fine write leveling
INFO : End of read dq deskew training
INFO : End of MPR read delay center optimization
INFO : End of Write leveling coarse delay
INFO : End of write delay center optimization
INFO : End of read delay center optimization
INFO : End of max read latency training
INFO : Training has run successfully!
1D training succeed
Load ddrfw from eMMC, src: 0x00020200, des: 0xfffd0000, size: 0x0000c000, part: 0
Check phy result
INFO : End of initialization
INFO : End of 2D read delay Voltage center optimization
INFO : End of 2D write delay Voltage center optimization
INFO : Training has run successfully!

R0_RxClkDly_Margin==94 ps 8
R0_TxDqDly_Margi==106 ps 9


R1_RxClkDly_Margin==0 ps 0
R1_TxDqDly_Margi==0 ps 0

dwc_ddrphy_apb_wr((0<<20)|(2<<16)|(0<<12)|(0xb0):0001
2D training succeed
auto size-- 65535DDR cs0 size: 2048MB
DDR cs1 size: 2048MB
DMC_DDR_CTRL: 00600024DDR size: 3928MB
cs0 DataBus test pass
cs1 DataBus test pass
cs0 AddrBus test pass
cs1 AddrBus test pass
pre test bdlr_100_average==440 bdlr_100_min==440 bdlr_100_max==440 bdlr_100_cur==440
aft test bdlr_100_average==440 bdlr_100_min==440 bdlr_100_max==440 bdlr_100_cur==440
non-sec scramble use zero key
ddr scramble enabled

100bdlr_step_size ps== 430
result report
boot times 0Enable ddr reg access
00000000
emmc switch 3 ok
Authentication key not yet programmed
get rpmb counter error 0x00000007
00000000
emmc switch 0 ok
Load FIP HDR from eMMC, src: 0x00010200, des: 0x01700000, size: 0x00004000, part: 0
Load BL3X from eMMC, src: 0x0006c200, des: 0x0175c000, size: 0x00087e00, part: 0
0.0;M3 CHK:0;cm4_sp_mode 0
E30HDR
MVN_1=0x00000000
MVN_2=0x00000000
[Image: g12b_v1.1.3375-8f9c8a7 2019-01-24 10:44:46 guotai.shen@droid11-sz]
OPS=0x40
ring efuse init
chipver efuse init
29 0a 40 00 01 20 10 00 00 15 30 32 54 52 4d 50
[0.019859 Inits done]
secure task start!
high task start!
low task start!
run into bl31
NOTICE: BL31: v1.3(release):ab8811b
NOTICE: BL31: Built : 15:03:31, Feb 12 2019
NOTICE: BL31: G12A normal boot!
NOTICE: BL31: BL33 decompress pass
ERROR: Error initializing runtime service opteed_fast


U-Boot 2020.04-rc3-00043-g5b07eb8ee6-dirty (Mar 03 2020 - 11:30:28 +0530) odroid-n2

Model: Hardkernel ODROID-N2
SoC: Amlogic Meson G12B (S922X) Revision 29:a (40:2)
DRAM: 3.8 GiB
MMC: meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
sd@ffe05000: 1, mmc@ffe07000: 2
In: serial@3000
Out: serial@3000
Err: serial@3000
Net:
Warning: ethernet@ff3f0000 (eth0) using random MAC address - 52:01:fa:f1:08:6b
eth0: ethernet@ff3f0000
Hit any key to stop autoboot: 0
MMC Device 0 not found
no mmc device at slot 0
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
Card did not respond to voltage select!
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x0268 clk_div: 40 mmc->clock: 25000000
meson_mmc_clk1: 0x0268 clk_div: 40 mmc->clock: 25000000
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 52000000
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 52000000
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 52000000
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 52000000
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 52000000
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 52000000
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 52000000
switch to partitions #0, OK
mmc2(part 0) is current device
Scanning mmc 2:1...
Found U-Boot script /boot/boot.scr
745 bytes read in 1 ms (727.5 KiB/s)
## Executing script at 08000000
27382272 bytes read in 597 ms (43.7 MiB/s)
65829 bytes read in 3 ms (20.9 MiB/s)
7390163 bytes read in 161 ms (43.8 MiB/s)
## Flattened Device Tree blob at 08008000
Booting using the fdt blob at 0x8008000
Loading Ramdisk to f2837000, end f2f433d3 ... OK
Loading Device Tree to 00000000f2823000, end 00000000f2836124 ... OK

Starting kernel ...

[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 5.4.1-1-ARCH (builduser@leming) (gcc version 8.3.0 (GCC)) #1 SMP Sat Nov 30 18:54:05 UTC 2019
[ 0.000000] Machine model: Hardkernel ODROID-N2
[ 0.000000] efi: Getting EFI parameters from FDT:
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: created CMA memory pool at 0x00000000e2800000, size 256 MiB
[ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[ 0.000000] earlycon: meson0 at MMIO 0x00000000ff803000 (options '115200n8')
[ 0.000000] printk: bootconsole [meson0] enabled
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.0 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[ 0.000000] psci: SMC Calling Convention v1.1
[ 0.000000] percpu: Embedded 30 pages/cpu s85656 r8192 d29032 u122880
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 987072
[ 0.000000] Kernel command line: console=ttyAML0,115200n8 root=PARTUUID=52462444-01 rw rootwait earlycon no_console_suspend
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] Memory: 3633416K/4011008K available (14908K kernel code, 2740K rwdata, 7048K rodata, 1984K init, 828K bss, 115448K reserved, 262144K cma-reserved)
[ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x88/0x158 with crng_init=0
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[ 0.000000] ftrace: allocating 51509 entries in 202 pages
[ 0.000000] rcu: Hierarchical RCU implementation.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[ 0.000000] Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GIC: Using split EOI/Deactivate mode
[ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized
[ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[ 0.000004] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[ 0.008449] Console: colour dummy device 80x25
[ 0.012540] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[ 0.022932] pid_max: default: 32768 minimum: 301
[ 0.027705] LSM: Security Framework initializing
[ 0.032208] Yama: becoming mindful.
[ 0.035771] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.043150] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.051063] *** VALIDATE tmpfs ***
[ 0.054821] *** VALIDATE proc ***
[ 0.057943] *** VALIDATE cgroup1 ***
[ 0.061364] *** VALIDATE cgroup2 ***
[ 0.065892] ASID allocator initialised with 32768 entries
[ 0.070413] rcu: Hierarchical SRCU implementation.
[ 0.078774] EFI services will not be available.
[ 0.080154] smp: Bringing up secondary CPUs ...
[ 0.084893] Detected VIPT I-cache on CPU1
[ 0.084942] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.086156] CPU features: detected: ARM erratum 858921
[ 0.086163] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware
[ 0.086170] Detected VIPT I-cache on CPU2
[ 0.086193] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.086206] arch_timer: CPU2: Trapping CNTVCT access
[ 0.086213] CPU2: Booted secondary processor 0x0000000100 [0x410fd092]
[ 0.086869] Detected VIPT I-cache on CPU3
[ 0.086883] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.086889] arch_timer: CPU3: Trapping CNTVCT access
[ 0.086894] CPU3: Booted secondary processor 0x0000000101 [0x410fd092]
[ 0.087488] Detected VIPT I-cache on CPU4
[ 0.087503] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.087509] arch_timer: CPU4: Trapping CNTVCT access
[ 0.087514] CPU4: Booted secondary processor 0x0000000102 [0x410fd092]
[ 0.088125] Detected VIPT I-cache on CPU5
[ 0.088141] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.088147] arch_timer: CPU5: Trapping CNTVCT access
[ 0.088152] CPU5: Booted secondary processor 0x0000000103 [0x410fd092]
[ 0.088234] smp: Brought up 1 node, 6 CPUs
[ 0.199149] SMP: Total of 6 processors activated.
[ 0.203876] CPU features: detected: 32-bit EL0 Support
[ 0.209044] CPU features: detected: CRC32 instructions
[ 0.214695] CPU: All CPU(s) started at EL2
[ 0.218336] alternatives: patching kernel code
[ 0.224025] devtmpfs: initialized
[ 0.235349] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.239576] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.253000] pinctrl core: initialized pinctrl subsystem
[ 0.253914] DMI not present or invalid.
[ 0.256822] NET: Registered protocol family 16
[ 0.262611] DMA: preallocated 256 KiB pool for atomic allocations
[ 0.267086] audit: initializing netlink subsys (disabled)
[ 0.272583] audit: type=2000 audit(0.220:1): state=initialized audit_enabled=0 res=1
[ 0.280276] cpuidle: using governor ladder
[ 0.284358] cpuidle: using governor menu
[ 0.288580] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.295753] Serial: AMBA PL011 UART driver
[ 0.316319] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.317417] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.324125] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.330870] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 1.495744] cryptd: max_cpu_qlen set to 1000
[ 1.519407] ACPI: Interpreter disabled.
[ 1.520166] 5V: supplied by 12V
[ 1.521536] VDDAO_3V3: supplied by 12V
[ 1.525330] iommu: Default domain type: Translated
[ 1.529720] vgaarb: loaded
[ 1.533092] SCSI subsystem initialized
[ 1.536259] usbcore: registered new interface driver usbfs
[ 1.541475] usbcore: registered new interface driver hub
[ 1.546779] usbcore: registered new device driver usb
[ 1.552226] pps_core: LinuxPPS API ver. 1 registered
[ 1.556787] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.565973] PTP clock support registered
[ 1.570090] EDAC MC: Ver: 3.0.0
[ 1.573673] Advanced Linux Sound Architecture Driver Initialized.
[ 1.579479] NetLabel: Initializing
[ 1.582592] NetLabel: domain hash size = 128
[ 1.586967] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 1.592696] NetLabel: unlabeled traffic allowed by default
[ 1.598527] clocksource: Switched to clocksource arch_sys_counter
[ 2.054693] *** VALIDATE bpf ***
[ 2.054859] VFS: Disk quotas dquot_6.6.0
[ 2.056233] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.063200] *** VALIDATE ramfs ***
[ 2.066529] *** VALIDATE hugetlbfs ***
[ 2.070521] pnp: PnP ACPI: disabled
[ 2.077087] thermal_sys: Registered thermal governor 'fair_share'
[ 2.077089] thermal_sys: Registered thermal governor 'bang_bang'
[ 2.079920] thermal_sys: Registered thermal governor 'step_wise'
[ 2.085945] thermal_sys: Registered thermal governor 'user_space'
[ 2.091988] thermal_sys: Registered thermal governor 'power_allocator'
[ 2.098451] NET: Registered protocol family 2
[ 2.109391] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 2.117641] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 2.125751] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 2.133124] TCP: Hash tables configured (established 32768 bind 32768)
[ 2.139575] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 2.146263] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 2.153546] NET: Registered protocol family 1
[ 2.158132] RPC: Registered named UNIX socket transport module.
[ 2.163750] RPC: Registered udp transport module.
[ 2.168457] RPC: Registered tcp transport module.
[ 2.173192] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 2.179672] PCI: CLS 0 bytes, default 64
[ 2.183691] Trying to unpack rootfs image as initramfs...
[ 2.445157] Freeing initrd memory: 7216K
[ 2.445723] kvm [1]: IPA Size Limit: 40bits
[ 2.448227] kvm [1]: vgic interrupt IRQ1
[ 2.451703] kvm [1]: Hyp mode initialized successfully
[ 2.745823] Initialise system trusted keyrings
[ 2.745944] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 2.754306] zbud: loaded
[ 2.755651] NFS: Registering the id_resolver key type
[ 2.758720] Key type id_resolver registered
[ 2.762898] Key type id_legacy registered
[ 2.766928] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 2.773761] SGI XFS with ACLs, security attributes, no debug enabled
[ 2.794507] NET: Registered protocol family 38
[ 2.794535] Key type asymmetric registered
[ 2.797408] Asymmetric key parser 'x509' registered
[ 2.802357] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[ 2.809870] io scheduler mq-deadline registered
[ 2.814296] io scheduler kyber registered
[ 2.818428] io scheduler bfq registered
[ 2.825521] GPIO line 447 (usb-hub-reset) hogged as output/high
[ 2.831344] IPMI message handler: version 39.2
[ 2.840700] soc soc0: Amlogic Meson G12B (S922X) Revision 29:a (40:2) Detected
[ 2.844043] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 2.848814] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 2.855911] Serial: x 2.862976] ff803000.serial: ttyAML0 at MMIO 0xff803000 (irq = 12, base_baud = 1500000) is a meson_uart
[ 2.872412] printk: console [ttyAML0] enabled
[ 2.872412] printk: console [ttyAML0] enabled
[ 2.875444] printk: bootconsole [meson0] disabled
[ 2.875444] printk: bootconsole [meson0] disabled
[ 2.885077] msm_serial: driver initialized
[ 2.893609] libphy: Fixed MDIO Bus: probed
[ 2.895055] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.899373] ehci-pci: EHCI PCI platform driver
[ 2.903757] ehci-platform: EHCI generic platform driver
[ 2.909013] ehci-orion: EHCI orion driver
[ 2.912956] tegra-ehci: Tegra EHCI driver
[ 2.916920] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.922980] ohci-pci: OHCI PCI platform driver
[ 2.927387] ohci-platform: OHCI generic platform driver
[ 2.932637] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.939257] usbcore: registered new interface driver uas
[ 2.944121] usbcore: registered new interface driver usb-storage
[ 2.950073] usbcore: registered new interface driver ums-alauda
[ 2.955929] usbcore: registered new interface driver ums-cypress
[ 2.961889] usbcore: registered new interface driver ums-datafab
[ 2.967833] usbcore: registered new interface driver ums_eneub6250
[ 2.973969] usbcore: registered new interface driver ums-freecom
[ 2.979913] usbcore: registered new interface driver ums-isd200
[ 2.985771] usbcore: registered new interface driver ums-jumpshot
[ 2.991816] usbcore: registered new interface driver ums-karma
[ 2.997587] usbcore: registered new interface driver ums-onetouch
[ 3.003639] usbcore: registered new interface driver ums-realtek
[ 3.009586] usbcore: registered new interface driver ums-sddr09
[ 3.015442] usbcore: registered new interface driver ums-sddr55
[ 3.021319] usbcore: registered new interface driver ums-usbat
[ 3.027112] usbcore: registered new interface driver usbserial_generic
[ 3.033561] usbserial: USB Serial support registered for generic
[ 3.040513] mousedev: PS/2 mouse device common for all mice
[ 3.047526] device-mapper: uevent: version 1.0.3
[ 3.049731] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
[ 3.059129] sdhci: Secure Digital Host Controller Interface driver
[ 3.064072] sdhci: Copyright(c) Pierre Ossman
[ 3.068861] Synopsys Designware Multimedia Card Interface Driver
[ 3.075269] VCC_3V3: supplied by VDDAO_3V3
[ 3.078455] FLASH_1V8: supplied by VCC_3V3
[ 3.082560] meson-gx-mmc ffe07000.mmc: allocated mmc-pwrseq
[ 3.115384] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.116696] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.121691] meson-sm: secure-monitor enabled
[ 3.125909] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.131029] usbcore: registered new interface driver usbhid
[ 3.136441] usbhid: USB HID core driver
[ 3.143829] drop_monitor: Initializing network drop monitor service
[ 3.146658] Initializing XFRM netlink socket
[ 3.151111] NET: Registered protocol family 10
[ 3.181872] Segment Routing with IPv6
[ 3.181953] mip6: Mobile IPv6
[ 3.182842] NET: Registered protocol family 17
[ 3.187373] Key type dns_resolver registered
[ 3.191771] registered taskstats version 1
[ 3.195523] Loading compiled-in X.509 certificates
[ 3.200435] zswap: loaded using pool lzo/zbud
[ 3.204691] Key type ._fscrypt registered
[ 3.208553] Key type .fscrypt registered
[ 3.212474] Key type big_key registered
[ 3.225119] Key type encrypted registered
[ 3.235428] VCC_1V8: supplied by VCC_3V3
[ 3.235495] VDDAO_1V8: supplied by VDDAO_3V3
[ 3.238105] HUB_5V: supplied by 5V
[ 3.241627] USB_PWR_EN: supplied by 5V
[ 3.246801] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 3.251893] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 3.258392] dwc3-meson-g12a ffe09000.usb: USB2 ports: 2
[ 3.262977] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1
[ 3.271364] dwc2 ff400000.usb: ff400000.usb supply vusb_d not found, using dummy regulator
[ 3.276467] dwc2 ff400000.usb: ff400000.usb supply vusb_a not found, using dummy regulator
[ 3.284718] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM
[ 3.292182] dwc3 ff500000.usb: Failed to get clk 'ref': -2
[ 3.297144] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 3.302591] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 3.310185] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010
[ 3.319389] xhci-hcd xhci-hcd.0.auto: irq 22, io mem 0xff500000
[ 3.325405] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[ 3.333353] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.340504] usb usb1: Product: xHCI Host Controller
[ 3.345326] usb usb1: Manufacturer: Linux 5.4.1-1-ARCH xhci-hcd
[ 3.351197] usb usb1: SerialNumber: xhci-hcd.0.auto
[ 3.356361] hub 1-0:1.0: USB hub found
[ 3.359848] hub 1-0:1.0: 2 ports detected
[ 3.363949] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 3.369295] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 3.376848] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 3.383361] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.391281] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
[ 3.399418] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.406564] usb usb2: Product: xHCI Host Controller
[ 3.411402] usb usb2: Manufacturer: Linux 5.4.1-1-ARCH xhci-hcd
[ 3.417259] usb usb2: SerialNumber: xhci-hcd.0.auto
[ 3.422259] mmc0: new HS200 MMC card at address 0001
[ 3.427446] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB
[ 3.431703] mmcblk0boot0: mmc0:0001 BJTD4R partition 1 4.00 MiB
[ 3.437566] mmcblk0boot1: mmc0:0001 BJTD4R partition 2 4.00 MiB
[ 3.443308] hub 2-0:1.0: USB hub found
[ 3.446951] hub 2-0:1.0: 1 port detected
[ 3.451063] dwc3-meson-g12a ffe09000.usb: switching to Device Mode
[ 3.458060] meson-gx-mmc ffe05000.sd: Got CD GPIO
[ 3.461698] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (235:0)
[ 3.471479] mmcblk0: p1
[ 3.496197] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 3.497480] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 3.504314] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 3.510718] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 3.517045] hctosys: unable to open rtc device (rtc0)
[ 3.521945] ALSA device list:
[ 3.524092] No soundcards found.
[ 3.538365] Freeing unused kernel memory: 1984K
[ 3.538449] Run /init as init process
:: running early hook [udev]
Starting version 243.162-2-arch
:: running hook [udev]
:: Triggering uevents...
[ 3.738577] usb 1-1: new high-speed USB device number 2 using xhci-hcd
[ 3.793088] random: fast init done
[ 3.920898] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=93.04
[ 3.923419] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.930504] usb 1-1: Product: USB2.1 Hub
[ 3.934371] usb 1-1: Manufacturer: GenesysLogic
[ 3.991431] hub 1-1:1.0: USB hub found
[ 3.991665] hub 1-1:1.0: 4 ports detected
[ 4.056729] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 4.058091] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 4.068673] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd
[ 4.101195] usb 2-1: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=93.04
[ 4.103707] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.110792] usb 2-1: Product: USB3.1 Hub
[ 4.114659] usb 2-1: Manufacturer: GenesysLogic
[ 4.151427] hub 2-1:1.0: USB hub found
[ 4.151727] hub 2-1:1.0: 4 ports detected
[ 4.155119] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 4.160486] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
:: performing fsck on '/dev/mmcblk0p1'
/dev/mmcblk0p1: clean, 34608/1908736 files, 465811/7629824 blocks
:: mounting '/dev/mmcblk0p1' on real root
[ 4.253569] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
:: running cleanup hook [udev]
[ 4.441862] systemd[1]: System time before build time, advancing clock.
[ 4.468587] usb 2-1.1: new SuperSpeed Gen 1 USB device number 3 using xhci-hcd
[ 4.479194] systemd[1]: systemd 243.162-2-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[ 4.496313] systemd[1]: Detected architecture arm64.
[ 4.499855] usb 2-1.1: New USB device found, idVendor=174c, idProduct=5106, bcdDevice=80.00
[ 4.508898] usb 2-1.1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 4.516128] usb 2-1.1: Product: StoreJet Transcend
[ 4.520877] usb 2-1.1: Manufacturer: StoreJet Transcend
[ 4.526046] usb 2-1.1: SerialNumber: S3Y9NX0K885827R
[ 4.534572] scsi host0: uas
[ 4.535254] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 4.535648] scsi 0:0:0:0: Direct-Access StoreJet Transcend 0 PQ: 0 ANSI: 6
[ 4.541064] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 4.549360] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 4.549859] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
[ 4.549963] sd 0:0:0:0: [sda] Write Protect is off
[ 4.550166] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.550433] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes

Welcome to Arch Linux ARM!

[ 4.619208] systemd[1]: Set hostname to <alarm>.
[ 4.620304] sda: sda1
[ 4.622603] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.625653] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 4.632479] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 4.874917] random: systemd: uninitialized urandom read (16 bytes read)
[ 4.877569] systemd[1]: Created slice system-getty.slice.
[ OK ] Created slice system-getty.slice.
[ 4.918629] random: systemd: uninitialized urandom read (16 bytes read)
[ 4.920159] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 4.958592] random: systemd: uninitialized urandom read (16 bytes read)
[ 4.960102] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 4.998718] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Started Dispatch Password …ts to Console Directory Watch.
[ 5.038675] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ OK ] Started Forward Password R…uests to Wall Directory Watch.
[ 5.079014] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ OK ] Set up automount Arbitrary…s File System Automount Point.
[ 5.118655] systemd[1]: Reached target Local Encrypted Volumes.
[ OK ] Reached target Local Encrypted Volumes.
[ OK ] Reached target Paths.
[ OK ] Reached target Remote File Systems.
[ OK ] Reached target Slices.
[ OK ] Reached target Swap.
[ OK ] Listening on Device-mapper event daemon FIFOs.
[ OK ] Listening on Process Core Dump Socket.
[ OK ] Listening on initctl Compatibility Named Pipe.
[ OK ] Listening on Journal Audit Socket.
[ OK ] Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ OK ] Listening on udev Control Socket.
[ OK ] Listening on udev Kernel Socket.
Mounting Huge Pages File System...
Mounting POSIX Message Queue File System...
Mounting Kernel Debug File System...
Mounting Temporary Directory (/tmp)...
Starting Create list of st…odes for the current kernel...
Mounting Kernel Configuration File System...
Starting Remount Root and Kernel File Systems...
Starting Apply Kernel Variables...
Starting udev Coldplug all Devices...
[ OK ] Mounted Huge Pages File System.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted Temporary Directory (/tmp).
[ OK ] Started Create list of sta… nodes for the current kernel.
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Started Remount Root and Kernel File Systems.
[ OK ] Started Apply Kernel Variables.
Starting Load/Save Random Seed...
Starting Create Static Device Nodes in /dev...
[ OK ] Started Create Static Device Nodes in /dev.
[ OK ] Reached target Local File Systems (Pre).
[ OK ] Reached target Local File Systems.
[ OK ] Started Entropy Daemon based on the HAVEGE algorithm.
Starting Journal Service...
Starting udev Kernel Device Manager...
[ OK ] Started udev Coldplug all Devices.
[ OK ] Started Journal Service.
[ 6.758878] audit: type=1130 audit(1574296154.310:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Started udev Kernel Device Manager.
[ 6.808829] audit: type=1130 audit(1574296154.360:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Starting Flush Journal to Persistent Storage...
[ 6.831070] systemd-journald[467]: Received client request to flush runtime journal.
[ 6.837004] systemd-journald[467]: File /var/log/journal/dc6f0ebe59de422598223212ac3bdb32/system.journal corrupted or uncleanly shut down, renaming and replacing.
Starting Network Service...
[ OK ] Started Flush Journal to Persistent Storage.
[ 6.970240] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 6.971526] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 6.988807] audit: type=1130 audit(1574296154.540:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Starting Create Volatile Files and Directories...
[ OK ] Started Create Volatile Files and Directories.
[ 7.055605] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 7.059175] pwm-regulator: supplied by regulator-dummy
[ 7.065619] cpu cpu2: Failed to set regulator for cpu2: -517
[ 7.074625] cpu cpu3: Failed to set regulator for cpu3: -517
[ 7.074840] cpu cpu4: Failed to set regulator for cpu4: -517
[ 7.080729] cpu cpu5: Failed to set regulator for cpu5: -517
[ 7.087338] meson-vrtc ff8000a8.rtc: registered as rtc0
[ 7.088305] pwm-regulator: supplied by regulator-dummy
[ 7.092137] meson8b-dwmac ff3f0000.ethernet: IRQ eth_wake_irq not found
[ 7.102810] meson8b-dwmac ff3f0000.ethernet: IRQ eth_lpi not found
[ 7.109210] audit: type=1130 audit(1574296154.660:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Starting Network[ 7.131919] meson-drm ff900000.vpu: Queued 2 outputs on vpu
Time Synchronization...
[ 7.165684] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 7.166650] [drm] No driver support for vblank timestamp query.
[ 7.181280] meson-drm ff900000.vpu: CVBS Output connector not available
Starting Update UTMP about System Boot/Shutdown...
[ 7.217729] audit: type=1127 audit(1574296154.760:6): pid=505 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
[ 7.231881] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy)
[ 7.233150] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock
[ 7.258482] meson8b-dwmac ff3f0000.ethernet: no reset control found
[ 7.262752] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37
[ 7.270903] meson8b-dwmac ff3f0000.ethernet: DWMAC1000
[ 7.271353] meson8b-dwmac ff3f0000.ethernet: DMA HW capability register supported
[ 7.278824] meson8b-dwmac ff3f0000.ethernet: RX Checksum Offload Engine supported
[ 7.286189] meson8b-dwmac ff3f0000.ethernet: COE Type 2
[ 7.286192] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported
[ 7.286195] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported
[ 7.290164] Registered IR keymap rc-odroid
[ 7.309965] meson8b-dwmac ff3f0000.ethernet: Normal descriptors
[ 7.314648] meson8b-dwmac ff3f0000.ethernet: Ring mode enabled
[ 7.318956] meson-dw-hdmi ff600000.hdmi-tx: registered DesignWare HDMI I2C bus driver
[ 7.320475] meson8b-dwmac ff3f0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[ 7.336173] meson8b-dwmac ff3f0000.ethernet: device MAC address 52:01:fa:f1:08:6b
[ OK ] Found device[ 7.346797] libphy: stmmac: probed
[ 7.351802] libphy: mdio_mux: probed
[ 7.353413] IR NEC protocol handler initialized
/dev/ttyAML0.
[ 7.362941] meson-drm ff900000.vpu: bound ff600000.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi])
[ 7.380554] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on minor 0
[ 7.388655] rc rc0: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0
[ 7.390969] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0
[ OK[ 7.400743] rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter
[ 7.411545] meson-ir ff808000.ir: receiver initialized
] Started Network Service.
[ 7.415883] libphy: mdio_mux: probed
[ 7.458894] audit: type=1130 audit(1574296155.010:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 7.524171] meson8b-dwmac ff3f0000.ethernet eth0: PHY [0.0:00] driver [RTL8211F Gigabit Ethernet]
[ 7.536639] meson8b-dwmac ff3f0000.ethernet eth0: No Safety Features support found
[ 7.536649] meson8b-dwmac ff3f0000.ethernet eth0: PTP not supported by HW
[ 7.536657] meson8b-dwmac ff3f0000.ethernet eth0: configuring for phy/rgmii link mode
[ 7.618635] Console: switching to colour frame buffer device 100x37
[ 7.693035] meson-drm ff900000.vpu: fb0: mesondrmfb frame buffer device
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ 7.728873] audit: type=1130 audit(1583219718.876:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 7.740914] random: crng init done
[ 7.745562] random: 7 urandom warning(s) missed due to ratelimiting
[ OK ] Started Network Time Synchronization.
[ 7.788735] audit: type=1130 audit(1583219718.936:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Started Load/Save Random Seed.
[ 7.818541] Registered IR keymap rc-cec
[ 7.818683] rc rc1: dw_hdmi as /devices/platform/soc/ff600000.bus/ff600000.hdmi-tx/rc/rc1
[ 7.824962] input: dw_hdmi as /devices/platform/soc/ff600000.bus/ff600000.hdmi-tx/rc/rc1/input1
[ 7.858700] audit: type=1130 audit(1583219719.006:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Reached target System Initialization.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Reached target System Time Set.
[ OK ] Reached target System Time Synchronized.
[ OK ] Started Daily verification of password and group files.
[ OK ] Reached target Timers.
[ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
[ OK ] Started D-Bus System Message Bus.
[ 8.192653] audit: type=1130 audit(1583219719.336:11): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Starting Login Service...
Starting Network Name Resolution...
[ OK ] Started Network Name Resolution.
[ OK ] Reached target Network.
[ OK ] Reached target Host and Network Name Lookups.
[ OK ] Started OpenSSH Daemon.
Starting Permit User Sessions...
[ OK ] Started Permit User Sessions.
[ OK ] Started Login Service.
[ OK ] Started Getty on tty1.
[ OK ] Started Serial Getty on ttyAML0.
[ OK ] Reached target Login Prompts.
[ OK ] Reached target Multi-User System.
[ OK ] Reached target Graphical Interface.

Arch Linux 5.4.1-1-ARCH (ttyAML0)

alarm login: [ 10.596018] meson8b-dwmac ff3f0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 10.598996] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 33.808562] USB_PWR_EN: disabling
[ 33.808582] TF_IO: disabling
root
Password:
[ 310.842052] kauditd_printk_skb: 6 callbacks suppressed
[ 310.842056] audit: type=1100 audit(1583220058.854:18): pid=533 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_securetty,pam_tally2,pam_shells,pam_unix,pam_permit acct="root" exe="/usr/bin/login" hostname=alarm addr=? terminal=ttyAML0 res=success'
[ 310.868771] audit: type=1101 audit(1583220058.884:19): pid=533 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/login" hostname=alarm addr=? terminal=ttyAML0 res=success'
[ 310.890056] audit: type=1103 audit(1583220058.904:20): pid=533 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_tally2,pam_shells,pam_unix,pam_permit acct="root" exe="/usr/bin/login" hostname=alarm addr=? terminal=ttyAML0 res=success'
[ 310.912902] audit: type=1006 audit(1583220058.904:21): pid=533 uid=0 old-auid=4294967295 auid=0 tty=ttyAML0 old-ses=4294967295 ses=1 res=1
[ 310.960618] audit: type=1130 audit(1583220058.974:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 310.986478] audit: type=1101 audit(1583220058.994:23): pid=539 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 311.004388] audit: type=1006 audit(1583220058.994:24): pid=539 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=2 res=1
[ 311.016639] audit: type=1105 audit(1583220058.994:25): pid=539 uid=0 auid=0 ses=2 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 311.195209] audit: type=1130 audit(1583220059.204:26): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 311.214425] audit: type=1105 audit(1583220059.224:27): pid=533 uid=0 auid=0 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="root" exe="/usr/bin/login" hostname=alarm addr=? terminal=ttyAML0 res=success'
Last login: Tue Mar 3 07:13:41 on ttyAML0
[root@alarm ~]#
[root@alarm ~]#
[root@alarm ~]#
enable prepare protect duty
clock count count count rate accuracy phase cycle
---------------------------------------------------------------------------------------------
xtal 11 11 0 24000000 0 0 50000
ffd1b000.pwm#mux1 0 0 0 24000000 0 0 50000
ffd1b000.pwm#mux0 1 1 0 24000000 0 0 50000
ff802000.pwm#mux1 1 1 0 24000000 0 0 50000
ff802000.pwm#mux0 0 0 0 24000000 0 0 50000
cts_oscin 0 0 0 24000000 0 0 50000
g12a_ao_cec_pre 0 0 0 24000000 0 0 50000
g12a_ao_cec_div 0 0 0 32742 0 0 50000
g12a_ao_cec_sel 0 0 0 32742 0 0 50000
g12a_ao_cec 0 0 0 32742 0 0 50000
g12a_ao_32k_by_oscin_pre 0 0 0 24000000 0 0 50000
g12a_ao_32k_by_oscin_sel 0 0 0 24000000 0 0 50000
g12a_ao_32k_by_oscin 0 0 0 24000000 0 0 50000
g12a_ao_cts_rtc_oscin 0 0 0 24000000 0 0 50000
g12a_ao_32k_by_oscin_div 0 0 0 32742 0 0 50000
g12a_ao_saradc_mux 0 0 0 24000000 0 0 50000
g12a_ao_saradc_div 0 0 0 150000 0 0 50000
g12a_ao_saradc_gate 0 0 0 150000 0 0 50000
cpub_clk_dyn0_sel 0 0 0 24000000 0 0 50000
cpub_clk_dyn0 0 0 0 24000000 0 0 50000
cpub_clk_dyn0_div 0 0 0 24000000 0 0 50000
sys1_pll_dco 1 1 0 3792000000 0 0 50000
sys1_pll 0 0 0 1896000000 0 0 50000
cpu_clk 0 0 0 1896000000 0 0 50000
cpu_clk_trace_div 0 0 0 59250000 0 0 50000
cpu_clk_trace 0 0 0 59250000 0 0 50000
sys1_pll_div16_en 0 0 0 1896000000 0 0 50000
sys1_pll_div16 0 0 0 118500000 0 0 50000
ts_div 1 1 0 960000 0 0 50000
ts 2 2 0 960000 0 0 50000
pcie_pll_dco 1 1 0 0 0 0 50000
pcie_pll_dco_div2 1 1 0 0 0 0 50000
pcie_pll_od 1 1 0 0 0 0 50000
pcie_pll_pll 1 1 0 0 0 0 50000
cpu_clk_dyn0_sel 0 0 0 24000000 0 0 50000
cpu_clk_dyn0 0 0 0 24000000 0 0 50000
cpu_clk_dyn 0 0 0 24000000 0 0 50000
cpu_clk_dyn0_div 0 0 0 24000000 0 0 50000
mali_1_sel 0 0 0 24000000 0 0 50000
mali_1_div 0 0 0 24000000 0 0 50000
mali_1 0 0 0 24000000 0 0 50000
mali_0_sel 0 0 0 24000000 0 0 50000
mali_0_div 0 0 0 24000000 0 0 50000
mali_0 0 0 0 24000000 0 0 50000
mali 0 0 0 24000000 0 0 50000
hdmi_sel 1 1 0 24000000 0 0 50000
hdmi_div 1 1 0 24000000 0 0 50000
hdmi 2 2 0 24000000 0 0 50000
hdmi_pll_dco 0 0 0 5191999878 0 0 50000
hdmi_pll_od 0 0 0 1297999970 0 0 50000
hdmi_pll_od2 0 0 0 648999985 0 0 50000
hdmi_pll 0 0 0 648999985 0 0 50000
vid_pll_div 0 0 0 129799997 0 0 50000
vid_pll_sel 0 0 0 129799997 0 0 50000
vid_pll 0 0 0 129799997 0 0 50000
vclk2_sel 0 0 0 129799997 0 0 50000
vclk2_input 0 0 0 129799997 0 0 50000
vclk2_div 0 0 0 64899999 0 0 50000
vclk2 0 0 0 64899999 0 0 50000
vclk2_div1 0 0 0 64899999 0 0 50000
vclk2_div12_en 0 0 0 64899999 0 0 50000
vclk2_div12 0 0 0 5408333 0 0 50000
vclk2_div6_en 0 0 0 64899999 0 0 50000
vclk2_div6 0 0 0 10816666 0 0 50000
vclk2_div4_en 0 0 0 64899999 0 0 50000
vclk2_div4 0 0 0 16224999 0 0 50000
vclk2_div2_en 0 0 0 64899999 0 0 50000
vclk2_div2 0 0 0 32449999 0 0 50000
vclk_sel 0 0 0 129799997 0 0 50000
vclk_input 0 0 0 129799997 0 0 50000
vclk_div 0 0 0 64899999 0 0 50000
vclk 0 0 0 64899999 0 0 50000
vclk_div1 0 0 0 64899999 0 0 50000
hdmi_tx_sel 0 0 0 64899999 0 0 50000
hdmi_tx 0 0 0 64899999 0 0 50000
cts_vdac_sel 0 0 0 64899999 0 0 50000
cts_vdac 0 0 0 64899999 0 0 50000
cts_encp_sel 0 0 0 64899999 0 0 50000
cts_encp 0 0 0 64899999 0 0 50000
cts_enci_sel 0 0 0 64899999 0 0 50000
cts_enci 0 0 0 64899999 0 0 50000
vclk_div12_en 0 0 0 64899999 0 0 50000
vclk_div12 0 0 0 5408333 0 0 50000
vclk_div6_en 0 0 0 64899999 0 0 50000
vclk_div6 0 0 0 10816666 0 0 50000
vclk_div4_en 0 0 0 64899999 0 0 50000
vclk_div4 0 0 0 16224999 0 0 50000
vclk_div2_en 0 0 0 64899999 0 0 50000
vclk_div2 0 0 0 32449999 0 0 50000
hifi_pll_dco 0 0 0 0 0 0 50000
hifi_pll 0 0 0 0 0 0 50000
gp0_pll_dco 0 0 0 0 0 0 50000
gp0_pll 0 0 0 0 0 0 50000
sys_pll_dco 1 1 0 4800000000 0 0 50000
sys_pll 0 0 0 1200000000 0 0 50000
sys_pll_div16_en 0 0 0 1200000000 0 0 50000
sys_pll_div16 0 0 0 75000000 0 0 50000
fixed_pll_dco 2 2 0 3999999939 0 0 50000
mpll_50m_div 1 1 0 49999999 0 0 50000
mpll_50m 1 1 0 49999999 0 0 50000
ff64c000.mdio-multiplexer#mux 1 1 0 49999999 0 0 50000
ff64c000.mdio-multiplexer#pll 1 1 0 499999990 0 0 50000
fixed_pll 3 3 0 1999999970 0 0 50000
fclk_div7_div 0 0 0 285714281 0 0 50000
fclk_div7 0 0 0 285714281 0 0 50000
fclk_div5_div 0 0 0 399999994 0 0 50000
fclk_div5 0 0 0 399999994 0 0 50000
fclk_div4_div 1 1 0 499999992 0 0 50000
fclk_div4 1 1 0 499999992 0 0 50000
vapb_1_sel 0 0 0 499999992 0 0 50000
vapb_1_div 0 0 0 499999992 0 0 50000
vapb_1 0 0 0 499999992 0 0 50000
vapb_0_sel 1 1 0 499999992 0 0 50000
vapb_0_div 1 1 0 249999996 0 0 50000
vapb_0 1 1 0 249999996 0 0 50000
vapb_sel 1 1 0 249999996 0 0 50000
vapb 1 1 0 249999996 0 0 50000
fclk_div3_div 1 1 0 666666656 0 0 50000
fclk_div3 3 3 0 666666656 0 0 50000
cpu_clk_dyn1_sel 0 0 0 666666656 0 0 50000
cpu_clk_dyn1 0 0 0 666666656 0 0 50000
cpu_clk_dyn1_div 0 0 0 666666656 0 0 50000
vpu_1_sel 0 0 0 666666656 0 0 50000
vpu_1_div 0 0 0 666666656 0 0 50000
vpu_1 0 0 0 666666656 0 0 50000
vpu_0_sel 1 1 0 666666656 0 0 50000
vpu_0_div 1 1 0 666666656 0 0 50000
vpu_0 1 1 0 666666656 0 0 50000
vpu 1 1 0 666666656 0 0 50000
mpeg_clk_sel 1 1 0 666666656 0 0 50000
mpeg_clk_div 1 1 0 222222219 0 0 50000
clk81 11 11 0 222222219 0 0 50000
g12a_ao_clk81 0 0 0 222222219 0 0 50000
g12a_ao_m4_hclk 0 0 0 222222219 0 0 50000
g12a_ao_m4_fclk 0 0 0 222222219 0 0 50000
g12a_ao_rti 0 0 0 222222219 0 0 50000
g12a_ao_ahb_sram 0 0 0 222222219 0 0 50000
g12a_ao_m3 0 0 0 222222219 0 0 50000
g12a_ao_mailbox 0 0 0 222222219 0 0 50000
g12a_ao_saradc 0 0 0 222222219 0 0 50000
g12a_ao_ir_out 0 0 0 222222219 0 0 50000
g12a_ao_uart2 0 0 0 222222219 0 0 50000
g12a_ao_prod_i2c 0 0 0 222222219 0 0 50000
g12a_ao_uart 1 1 0 222222219 0 0 50000
g12a_ao_i2c_s0 0 0 0 222222219 0 0 50000
g12a_ao_i2c_m0 0 0 0 222222219 0 0 50000
g12a_ao_ir_in 0 0 0 222222219 0 0 50000
g12a_ao_ahb 0 0 0 222222219 0 0 50000
g12a_sec_ahb_apb3 0 0 0 222222219 0 0 50000
g12a_reset_sec 0 0 0 222222219 0 0 50000
g12a_rom_boot 0 0 0 222222219 0 0 50000
g12a_efuse 1 1 0 222222219 0 0 50000
g12a_dma 0 0 0 222222219 0 0 50000
g12a_vclk2_other1 0 0 0 222222219 0 0 50000
g12a_vclk2_vencl 0 0 0 222222219 0 0 50000
g12a_vclk2_venclmmc 0 0 0 222222219 0 0 50000
g12a_vclk2_encl 0 0 0 222222219 0 0 50000
g12a_vclk2_enct 0 0 0 222222219 0 0 50000
g12a_rng1 0 0 0 222222219 0 0 50000
g12a_enc480p 0 0 0 222222219 0 0 50000
g12a_iec958_gate 0 0 0 222222219 0 0 50000
g12a_aoclk_gate 0 0 0 222222219 0 0 50000
g12a_dac_clk 0 0 0 222222219 0 0 50000
g12a_vclk2_encp 0 0 0 222222219 0 0 50000
g12a_vclk2_enci 0 0 0 222222219 0 0 50000
g12a_vclk2_other 0 0 0 222222219 0 0 50000
g12a_vclk2_venct1 0 0 0 222222219 0 0 50000
g12a_vclk2_venct0 0 0 0 222222219 0 0 50000
g12a_vclk2_vencp1 0 0 0 222222219 0 0 50000
g12a_vclk2_vencp0 0 0 0 222222219 0 0 50000
g12a_vclk2_venci1 0 0 0 222222219 0 0 50000
g12a_vclk2_venci0 0 0 0 222222219 0 0 50000
g12a_gic 0 0 0 222222219 0 0 50000
g12a_vpu_intr 1 1 0 222222219 0 0 50000
g12a_uart2 0 0 0 222222219 0 0 50000
g12a_mmc_pclk 0 0 0 222222219 0 0 50000
g12a_usb1_to_ddr 0 0 0 222222219 0 0 50000
g12a_bt656 0 0 0 222222219 0 0 50000
g12a_htx_pclk 1 1 0 222222219 0 0 50000
g12a_htx_hdcp22 0 0 0 222222219 0 0 50000
g12a_ahb_ctrl_bus 0 0 0 222222219 0 0 50000
g12a_ahb_data_bus 0 0 0 222222219 0 0 50000
g12a_ahb_arb0 0 0 0 222222219 0 0 50000
g12a_pcie_phy 0 0 0 222222219 0 0 50000
g12a_usb_general 1 1 0 222222219 0 0 50000
g12a_parser 0 0 0 222222219 0 0 50000
g12a_pcie_comb 0 0 0 222222219 0 0 50000
g12a_reset 0 0 0 222222219 0 0 50000
g12a_g2d 0 0 0 222222219 0 0 50000
g12a_uart1 0 0 0 222222219 0 0 50000
g12a_adc 0 0 0 222222219 0 0 50000
g12a_audio_ififo 0 0 0 222222219 0 0 50000
g12a_demux 0 0 0 222222219 0 0 50000
g12a_eth_core 1 1 0 222222219 0 0 50000
g12a_audio 2 2 0 222222219 0 0 50000
aud_top 1 1 0 222222219 0 0 50000
aud_ddr_arb 1 1 0 222222219 0 0 50000
aud_pdm 0 0 0 222222219 0 0 50000
aud_tdmin_a 0 0 0 222222219 0 0 50000
aud_tdmin_b 0 0 0 222222219 0 0 50000
aud_tdmin_c 0 0 0 222222219 0 0 50000
aud_tdmin_lb 0 0 0 222222219 0 0 50000
aud_tdmout_a 0 0 0 222222219 0 0 50000
aud_tdmout_b 0 0 0 222222219 0 0 50000
aud_tdmout_c 0 0 0 222222219 0 0 50000
aud_frddr_a 0 0 0 222222219 0 0 50000
aud_frddr_b 0 0 0 222222219 0 0 50000
aud_frddr_c 0 0 0 222222219 0 0 50000
aud_toddr_a 0 0 0 222222219 0 0 50000
aud_toddr_b 0 0 0 222222219 0 0 50000
aud_toddr_c 0 0 0 222222219 0 0 50000
aud_loopback 0 0 0 222222219 0 0 50000
aud_spdifin 0 0 0 222222219 0 0 50000
aud_spdifout 0 0 0 222222219 0 0 50000
aud_resample 0 0 0 222222219 0 0 50000
aud_power_detect 0 0 0 222222219 0 0 50000
aud_spdifout_b 0 0 0 222222219 0 0 50000
g12a_audio_codec 0 0 0 222222219 0 0 50000
g12a_emmc_c 1 1 0 222222219 0 0 50000
g12a_emmc_b 1 1 0 222222219 0 0 50000
g12a_emmc_a 0 0 0 222222219 0 0 50000
g12a_assist_misc 0 0 0 222222219 0 0 50000
g12a_mipi_dsi_phy 0 0 0 222222219 0 0 50000
g12a_hiu_reg 0 0 0 222222219 0 0 50000
g12a_spicc_1 0 0 0 222222219 0 0 50000
g12a_uart0 0 0 0 222222219 0 0 50000
g12a_rng0 0 0 0 222222219 0 0 50000
g12a_sd 0 0 0 222222219 0 0 50000
g12a_sana 0 0 0 222222219 0 0 50000
g12a_i2c 0 0 0 222222219 0 0 50000
g12a_spicc_0 0 0 0 222222219 0 0 50000
g12a_periphs 0 0 0 222222219 0 0 50000
g12a_pl301 0 0 0 222222219 0 0 50000
g12a_isa 0 0 0 222222219 0 0 50000
g12a_eth_phy 1 1 0 222222219 0 0 50000
g12a_mipi_dsi_host 0 0 0 222222219 0 0 50000
g12a_audio_locker 0 0 0 222222219 0 0 50000
g12a_dos 0 0 0 222222219 0 0 50000
g12a_ddr 0 0 0 222222219 0 0 50000
fclk_div2_div 1 1 0 999999985 0 0 50000
fclk_div2 3 3 0 999999985 0 0 50000
ff3f0000.ethernet#m250_sel 1 1 0 999999985 0 0 50000
ff3f0000.ethernet#m250_div 1 1 0 249999997 0 0 50000
ff3f0000.ethernet#fixed_div2 1 1 0 124999998 0 0 50000
ff3f0000.ethernet#rgmii_tx_en 1 1 0 124999998 0 0 50000
ffe07000.mmc#mux 1 1 0 999999985 0 0 50000
ffe07000.mmc#div 1 1 0 199999997 0 0 50000
cpub_clk_dyn1_sel 1 1 0 999999985 0 0 50000
cpub_clk_dyn1 1 1 0 999999985 0 0 50000
cpub_clk_dyn 1 1 0 999999985 0 0 50000
cpub_clk 1 1 0 999999985 0 0 50000
cpub_clk_div8 0 0 0 124999998 0 0 50000
cpub_clk_div7 0 0 0 142857140 0 0 50000
cpub_clk_div6 0 0 0 166666664 0 0 50000
cpub_clk_trace_sel 0 0 0 166666664 0 0 50000
cpub_clk_trace 0 0 0 166666664 0 0 50000
cpub_clk_div5 0 0 0 199999997 0 0 50000
cpub_clk_apb_sel 0 0 0 199999997 0 0 50000
cpub_clk_apb 0 0 0 199999997 0 0 50000
cpub_clk_div4 0 0 0 249999996 0 0 50000
cpub_clk_div3 0 0 0 333333328 0 0 50000
cpub_clk_atb_sel 0 0 0 333333328 0 0 50000
cpub_clk_atb 0 0 0 333333328 0 0 50000
cpub_clk_div2 0 0 0 499999992 0 0 50000
cpub_clk_axi_sel 0 0 0 499999992 0 0 50000
cpub_clk_axi 0 0 0 499999992 0 0 50000
cpub_clk_div16_en 0 0 0 999999985 0 0 50000
cpub_clk_div16 0 0 0 62499999 0 0 50000
cpub_clk_dyn1_div 0 0 0 999999985 0 0 50000
mpll_prediv 0 0 0 1999999969 0 0 50000
mpll0_div 0 0 0 270948747 0 0 50000
mpll0 0 0 0 270948747 0 0 50000
aud_spdifout_b_clk_sel 0 0 0 270948747 0 0 50000
aud_spdifout_b_clk_div 0 0 0 270948747 0 0 50000
aud_spdifout_b_clk 0 0 0 270948747 0 0 50000
aud_pdm_sysclk_sel 0 0 0 270948747 0 0 50000
aud_pdm_sysclk_div 0 0 0 270948747 0 0 50000
aud_pdm_sysclk 0 0 0 270948747 0 0 50000
aud_pdm_dclk_sel 0 0 0 270948747 0 0 50000
aud_pdm_dclk_div 0 0 0 270948747 0 0 50000
aud_pdm_dclk 0 0 0 270948747 0 0 50000
aud_spdifin_clk_sel 0 0 0 270948747 0 0 50000
aud_spdifin_clk_div 0 0 0 270948747 0 0 50000
aud_spdifin_clk 0 0 0 270948747 0 0 50000
aud_spdifout_clk_sel 0 0 0 270948747 0 0 50000
aud_spdifout_clk_div 0 0 0 270948747 0 0 50000
aud_spdifout_clk 0 0 0 270948747 0 0 50000
aud_mst_f_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_f_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_f_mclk 0 0 0 270948747 0 0 50000
aud_mst_f_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_f_sclk_div 0 0 0 264599 0 0 50000
aud_mst_f_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_f_lrclk_div 0 0 0 259 0 0 97
aud_mst_f_lrclk 0 0 0 259 0 0 97
aud_mst_f_sclk 0 0 0 264599 0 0 50000
aud_mst_e_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_e_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_e_mclk 0 0 0 270948747 0 0 50000
aud_mst_e_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_e_sclk_div 0 0 0 264599 0 0 50000
aud_mst_e_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_e_lrclk_div 0 0 0 259 0 0 97
aud_mst_e_lrclk 0 0 0 259 0 0 97
aud_mst_e_sclk 0 0 0 264599 0 0 50000
aud_mst_d_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_d_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_d_mclk 0 0 0 270948747 0 0 50000
aud_mst_d_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_d_sclk_div 0 0 0 264599 0 0 50000
aud_mst_d_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_d_lrclk_div 0 0 0 259 0 0 97
aud_mst_d_lrclk 0 0 0 259 0 0 97
aud_mst_d_sclk 0 0 0 264599 0 0 50000
aud_mst_c_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_c_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_c_mclk 0 0 0 270948747 0 0 50000
aud_mst_c_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_c_sclk_div 0 0 0 264599 0 0 50000
aud_mst_c_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_c_lrclk_div 0 0 0 259 0 0 97
aud_mst_c_lrclk 0 0 0 259 0 0 97
aud_mst_c_sclk 0 0 0 264599 0 0 50000
aud_mst_b_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_b_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_b_mclk 0 0 0 270948747 0 0 50000
aud_mst_b_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_b_sclk_div 0 0 0 264599 0 0 50000
aud_mst_b_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_b_lrclk_div 0 0 0 259 0 0 97
aud_mst_b_lrclk 0 0 0 259 0 0 97
aud_mst_b_sclk 0 0 0 264599 0 0 50000
aud_mst_a_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_a_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_a_mclk 0 0 0 270948747 0 0 50000
aud_mclk_pad_1 0 0 0 270948747 0 0 50000
aud_mclk_pad_0 0 0 0 270948747 0 0 50000
aud_mst_a_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_a_sclk_div 0 0 0 264599 0 0 50000
aud_mst_a_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_a_lrclk_div 0 0 0 259 0 0 97
aud_mst_a_lrclk 0 0 0 259 0 0 97
aud_lrclk_pad_2 0 0 0 259 0 0 97
aud_lrclk_pad_1 0 0 0 259 0 0 97
aud_lrclk_pad_0 0 0 0 259 0 0 97
aud_tdmout_c_lrclk 0 0 0 259 0 0 97
aud_tdmout_b_lrclk 0 0 0 259 0 0 97
aud_tdmout_a_lrclk 0 0 0 259 0 0 97
aud_tdmin_lb_lrclk 0 0 0 259 0 0 97
aud_tdmin_c_lrclk 0 0 0 259 0 0 97
aud_tdmin_b_lrclk 0 0 0 259 0 0 97
aud_tdmin_a_lrclk 0 0 0 259 0 0 97
aud_mst_a_sclk 0 0 0 264599 0 0 50000
aud_sclk_pad_2 0 0 0 264599 0 0 50000
aud_sclk_pad_1 0 0 0 264599 0 0 50000
aud_sclk_pad_0 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk 0 0 0 264599 0 0 50000
mpll1_div 0 0 0 393212849 0 0 50000
mpll1 0 0 0 393212849 0 0 50000
mpll2_div 0 0 0 294909637 0 0 50000
mpll2 0 0 0 294909637 0 0 50000
mpll3_div 0 0 0 0 0 0 50000
mpll3 0 0 0 0 0 0 50000
fclk_div2p5_div 0 0 0 799999987 0 0 50000
fclk_div2p5 0 0 0 799999987 0 0 50000
vdec_hevcf_sel 0 0 0 799999987 0 0 50000
vdec_hevcf_div 0 0 0 799999987 0 0 50000
vdec_hevcf 0 0 0 799999987 0 0 50000
vdec_hevc_sel 0 0 0 799999987 0 0 50000
vdec_hevc_div 0 0 0 799999987 0 0 50000
vdec_hevc 0 0 0 799999987 0 0 50000
vdec_1_sel 0 0 0 799999987 0 0 50000
vdec_1_div 0 0 0 799999987 0 0 50000
vdec_1 0 0 0 799999987 0 0 50000
sd_emmc_c_clk0_sel 0 0 0 24000000 0 0 50000
sd_emmc_c_clk0_div 0 0 0 24000000 0 0 50000
sd_emmc_c_clk0 0 0 0 24000000 0 0 50000
sd_emmc_b_clk0_sel 1 1 0 24000000 0 0 50000
sd_emmc_b_clk0_div 1 1 0 24000000 0 0 50000
sd_emmc_b_clk0 1 1 0 24000000 0 0 50000
ffe05000.sd#mux 1 1 0 24000000 0 0 50000
ffe05000.sd#div 1 1 0 400000 0 0 50000
sd_emmc_a_clk0_sel 0 0 0 24000000 0 0 50000
sd_emmc_a_clk0_div 0 0 0 24000000 0 0 50000
sd_emmc_a_clk0 0 0 0 24000000 0 0 50000
cpu_clk_axi_div 0 0 0 0 0 0 50000
cpu_clk_axi 0 0 0 0 0 0 50000
cpu_clk_atb_div 0 0 0 0 0 0 50000
cpu_clk_atb 0 0 0 0 0 0 50000
cpu_clk_apb_div 0 0 0 0 0 0 50000
cpu_clk_apb 0 0 0 0 0 0 50000
cpu_clk_div16_en 0 0 0 0 0 0 50000
cpu_clk_div16 0 0 0 0 0 0 50000
enable prepare protect duty
clock count count count rate accuracy phase cycle
---------------------------------------------------------------------------------------------
xtal 11 11 0 24000000 0 0 50000
ffd1b000.pwm#mux1 0 0 0 24000000 0 0 50000
ffd1b000.pwm#mux0 1 1 0 24000000 0 0 50000
ff802000.pwm#mux1 1 1 0 24000000 0 0 50000
ff802000.pwm#mux0 0 0 0 24000000 0 0 50000
cts_oscin 0 0 0 24000000 0 0 50000
g12a_ao_cec_pre 0 0 0 24000000 0 0 50000
g12a_ao_cec_div 0 0 0 32742 0 0 50000
g12a_ao_cec_sel 0 0 0 32742 0 0 50000
g12a_ao_cec 0 0 0 32742 0 0 50000
g12a_ao_32k_by_oscin_pre 0 0 0 24000000 0 0 50000
g12a_ao_32k_by_oscin_sel 0 0 0 24000000 0 0 50000
g12a_ao_32k_by_oscin 0 0 0 24000000 0 0 50000
g12a_ao_cts_rtc_oscin 0 0 0 24000000 0 0 50000
g12a_ao_32k_by_oscin_div 0 0 0 32742 0 0 50000
g12a_ao_saradc_mux 0 0 0 24000000 0 0 50000
g12a_ao_saradc_div 0 0 0 150000 0 0 50000
g12a_ao_saradc_gate 0 0 0 150000 0 0 50000
cpub_clk_dyn0_sel 0 0 0 24000000 0 0 50000
cpub_clk_dyn0 0 0 0 24000000 0 0 50000
cpub_clk_dyn0_div 0 0 0 24000000 0 0 50000
sys1_pll_dco 1 1 0 3792000000 0 0 50000
sys1_pll 0 0 0 1896000000 0 0 50000
cpu_clk 0 0 0 1896000000 0 0 50000
cpu_clk_trace_div 0 0 0 59250000 0 0 50000
cpu_clk_trace 0 0 0 59250000 0 0 50000
sys1_pll_div16_en 0 0 0 1896000000 0 0 50000
sys1_pll_div16 0 0 0 118500000 0 0 50000
ts_div 1 1 0 960000 0 0 50000
ts 2 2 0 960000 0 0 50000
pcie_pll_dco 1 1 0 0 0 0 50000
pcie_pll_dco_div2 1 1 0 0 0 0 50000
pcie_pll_od 1 1 0 0 0 0 50000
pcie_pll_pll 1 1 0 0 0 0 50000
cpu_clk_dyn0_sel 0 0 0 24000000 0 0 50000
cpu_clk_dyn0 0 0 0 24000000 0 0 50000
cpu_clk_dyn 0 0 0 24000000 0 0 50000
cpu_clk_dyn0_div 0 0 0 24000000 0 0 50000
mali_1_sel 0 0 0 24000000 0 0 50000
mali_1_div 0 0 0 24000000 0 0 50000
mali_1 0 0 0 24000000 0 0 50000
mali_0_sel 0 0 0 24000000 0 0 50000
mali_0_div 0 0 0 24000000 0 0 50000
mali_0 0 0 0 24000000 0 0 50000
mali 0 0 0 24000000 0 0 50000
hdmi_sel 1 1 0 24000000 0 0 50000
hdmi_div 1 1 0 24000000 0 0 50000
hdmi 2 2 0 24000000 0 0 50000
hdmi_pll_dco 0 0 0 5191999878 0 0 50000
hdmi_pll_od 0 0 0 1297999970 0 0 50000
hdmi_pll_od2 0 0 0 648999985 0 0 50000
hdmi_pll 0 0 0 648999985 0 0 50000
vid_pll_div 0 0 0 129799997 0 0 50000
vid_pll_sel 0 0 0 129799997 0 0 50000
vid_pll 0 0 0 129799997 0 0 50000
vclk2_sel 0 0 0 129799997 0 0 50000
vclk2_input 0 0 0 129799997 0 0 50000
vclk2_div 0 0 0 64899999 0 0 50000
vclk2 0 0 0 64899999 0 0 50000
vclk2_div1 0 0 0 64899999 0 0 50000
vclk2_div12_en 0 0 0 64899999 0 0 50000
vclk2_div12 0 0 0 5408333 0 0 50000
vclk2_div6_en 0 0 0 64899999 0 0 50000
vclk2_div6 0 0 0 10816666 0 0 50000
vclk2_div4_en 0 0 0 64899999 0 0 50000
vclk2_div4 0 0 0 16224999 0 0 50000
vclk2_div2_en 0 0 0 64899999 0 0 50000
vclk2_div2 0 0 0 32449999 0 0 50000
vclk_sel 0 0 0 129799997 0 0 50000
vclk_input 0 0 0 129799997 0 0 50000
vclk_div 0 0 0 64899999 0 0 50000
vclk 0 0 0 64899999 0 0 50000
vclk_div1 0 0 0 64899999 0 0 50000
hdmi_tx_sel 0 0 0 64899999 0 0 50000
hdmi_tx 0 0 0 64899999 0 0 50000
cts_vdac_sel 0 0 0 64899999 0 0 50000
cts_vdac 0 0 0 64899999 0 0 50000
cts_encp_sel 0 0 0 64899999 0 0 50000
cts_encp 0 0 0 64899999 0 0 50000
cts_enci_sel 0 0 0 64899999 0 0 50000
cts_enci 0 0 0 64899999 0 0 50000
vclk_div12_en 0 0 0 64899999 0 0 50000
vclk_div12 0 0 0 5408333 0 0 50000
vclk_div6_en 0 0 0 64899999 0 0 50000
vclk_div6 0 0 0 10816666 0 0 50000
vclk_div4_en 0 0 0 64899999 0 0 50000
vclk_div4 0 0 0 16224999 0 0 50000
vclk_div2_en 0 0 0 64899999 0 0 50000
vclk_div2 0 0 0 32449999 0 0 50000
hifi_pll_dco 0 0 0 0 0 0 50000
hifi_pll 0 0 0 0 0 0 50000
gp0_pll_dco 0 0 0 0 0 0 50000
gp0_pll 0 0 0 0 0 0 50000
sys_pll_dco 1 1 0 4800000000 0 0 50000
sys_pll 0 0 0 1200000000 0 0 50000
sys_pll_div16_en 0 0 0 1200000000 0 0 50000
sys_pll_div16 0 0 0 75000000 0 0 50000
fixed_pll_dco 1 1 0 3999999939 0 0 50000
mpll_50m_div 0 0 0 49999999 0 0 50000
mpll_50m 0 0 0 49999999 0 0 50000
ff64c000.mdio-multiplexer#mux 0 0 0 49999999 0 0 50000
ff64c000.mdio-multiplexer#pll 0 0 0 499999990 0 0 50000
fixed_pll 3 3 0 1999999970 0 0 50000
fclk_div7_div 0 0 0 285714281 0 0 50000
fclk_div7 0 0 0 285714281 0 0 50000
fclk_div5_div 0 0 0 399999994 0 0 50000
fclk_div5 0 0 0 399999994 0 0 50000
fclk_div4_div 1 1 0 499999992 0 0 50000
fclk_div4 1 1 0 499999992 0 0 50000
vapb_1_sel 0 0 0 499999992 0 0 50000
vapb_1_div 0 0 0 499999992 0 0 50000
vapb_1 0 0 0 499999992 0 0 50000
vapb_0_sel 1 1 0 499999992 0 0 50000
vapb_0_div 1 1 0 249999996 0 0 50000
vapb_0 1 1 0 249999996 0 0 50000
vapb_sel 1 1 0 249999996 0 0 50000
vapb 1 1 0 249999996 0 0 50000
fclk_div3_div 1 1 0 666666656 0 0 50000
fclk_div3 3 3 0 666666656 0 0 50000
cpu_clk_dyn1_sel 0 0 0 666666656 0 0 50000
cpu_clk_dyn1 0 0 0 666666656 0 0 50000
cpu_clk_dyn1_div 0 0 0 666666656 0 0 50000
vpu_1_sel 0 0 0 666666656 0 0 50000
vpu_1_div 0 0 0 666666656 0 0 50000
vpu_1 0 0 0 666666656 0 0 50000
vpu_0_sel 1 1 0 666666656 0 0 50000
vpu_0_div 1 1 0 666666656 0 0 50000
vpu_0 1 1 0 666666656 0 0 50000
vpu 1 1 0 666666656 0 0 50000
mpeg_clk_sel 1 1 0 666666656 0 0 50000
mpeg_clk_div 1 1 0 222222219 0 0 50000
clk81 11 11 0 222222219 0 0 50000
g12a_ao_clk81 0 0 0 222222219 0 0 50000
g12a_ao_m4_hclk 0 0 0 222222219 0 0 50000
g12a_ao_m4_fclk 0 0 0 222222219 0 0 50000
g12a_ao_rti 0 0 0 222222219 0 0 50000
g12a_ao_ahb_sram 0 0 0 222222219 0 0 50000
g12a_ao_m3 0 0 0 222222219 0 0 50000
g12a_ao_mailbox 0 0 0 222222219 0 0 50000
g12a_ao_saradc 0 0 0 222222219 0 0 50000
g12a_ao_ir_out 0 0 0 222222219 0 0 50000
g12a_ao_uart2 0 0 0 222222219 0 0 50000
g12a_ao_prod_i2c 0 0 0 222222219 0 0 50000
g12a_ao_uart 1 1 0 222222219 0 0 50000
g12a_ao_i2c_s0 0 0 0 222222219 0 0 50000
g12a_ao_i2c_m0 0 0 0 222222219 0 0 50000
g12a_ao_ir_in 0 0 0 222222219 0 0 50000
g12a_ao_ahb 0 0 0 222222219 0 0 50000
g12a_sec_ahb_apb3 0 0 0 222222219 0 0 50000
g12a_reset_sec 0 0 0 222222219 0 0 50000
g12a_rom_boot 0 0 0 222222219 0 0 50000
g12a_efuse 1 1 0 222222219 0 0 50000
g12a_dma 0 0 0 222222219 0 0 50000
g12a_vclk2_other1 0 0 0 222222219 0 0 50000
g12a_vclk2_vencl 0 0 0 222222219 0 0 50000
g12a_vclk2_venclmmc 0 0 0 222222219 0 0 50000
g12a_vclk2_encl 0 0 0 222222219 0 0 50000
g12a_vclk2_enct 0 0 0 222222219 0 0 50000
g12a_rng1 0 0 0 222222219 0 0 50000
g12a_enc480p 0 0 0 222222219 0 0 50000
g12a_iec958_gate 0 0 0 222222219 0 0 50000
g12a_aoclk_gate 0 0 0 222222219 0 0 50000
g12a_dac_clk 0 0 0 222222219 0 0 50000
g12a_vclk2_encp 0 0 0 222222219 0 0 50000
g12a_vclk2_enci 0 0 0 222222219 0 0 50000
g12a_vclk2_other 0 0 0 222222219 0 0 50000
g12a_vclk2_venct1 0 0 0 222222219 0 0 50000
g12a_vclk2_venct0 0 0 0 222222219 0 0 50000
g12a_vclk2_vencp1 0 0 0 222222219 0 0 50000
g12a_vclk2_vencp0 0 0 0 222222219 0 0 50000
g12a_vclk2_venci1 0 0 0 222222219 0 0 50000
g12a_vclk2_venci0 0 0 0 222222219 0 0 50000
g12a_gic 0 0 0 222222219 0 0 50000
g12a_vpu_intr 1 1 0 222222219 0 0 50000
g12a_uart2 0 0 0 222222219 0 0 50000
g12a_mmc_pclk 0 0 0 222222219 0 0 50000
g12a_usb1_to_ddr 0 0 0 222222219 0 0 50000
g12a_bt656 0 0 0 222222219 0 0 50000
g12a_htx_pclk 1 1 0 222222219 0 0 50000
g12a_htx_hdcp22 0 0 0 222222219 0 0 50000
g12a_ahb_ctrl_bus 0 0 0 222222219 0 0 50000
g12a_ahb_data_bus 0 0 0 222222219 0 0 50000
g12a_ahb_arb0 0 0 0 222222219 0 0 50000
g12a_pcie_phy 0 0 0 222222219 0 0 50000
g12a_usb_general 1 1 0 222222219 0 0 50000
g12a_parser 0 0 0 222222219 0 0 50000
g12a_pcie_comb 0 0 0 222222219 0 0 50000
g12a_reset 0 0 0 222222219 0 0 50000
g12a_g2d 0 0 0 222222219 0 0 50000
g12a_uart1 0 0 0 222222219 0 0 50000
g12a_adc 0 0 0 222222219 0 0 50000
g12a_audio_ififo 0 0 0 222222219 0 0 50000
g12a_demux 0 0 0 222222219 0 0 50000
g12a_eth_core 1 1 0 222222219 0 0 50000
g12a_audio 2 2 0 222222219 0 0 50000
aud_top 1 1 0 222222219 0 0 50000
aud_ddr_arb 1 1 0 222222219 0 0 50000
aud_pdm 0 0 0 222222219 0 0 50000
aud_tdmin_a 0 0 0 222222219 0 0 50000
aud_tdmin_b 0 0 0 222222219 0 0 50000
aud_tdmin_c 0 0 0 222222219 0 0 50000
aud_tdmin_lb 0 0 0 222222219 0 0 50000
aud_tdmout_a 0 0 0 222222219 0 0 50000
aud_tdmout_b 0 0 0 222222219 0 0 50000
aud_tdmout_c 0 0 0 222222219 0 0 50000
aud_frddr_a 0 0 0 222222219 0 0 50000
aud_frddr_b 0 0 0 222222219 0 0 50000
aud_frddr_c 0 0 0 222222219 0 0 50000
aud_toddr_a 0 0 0 222222219 0 0 50000
aud_toddr_b 0 0 0 222222219 0 0 50000
aud_toddr_c 0 0 0 222222219 0 0 50000
aud_loopback 0 0 0 222222219 0 0 50000
aud_spdifin 0 0 0 222222219 0 0 50000
aud_spdifout 0 0 0 222222219 0 0 50000
aud_resample 0 0 0 222222219 0 0 50000
aud_power_detect 0 0 0 222222219 0 0 50000
aud_spdifout_b 0 0 0 222222219 0 0 50000
g12a_audio_codec 0 0 0 222222219 0 0 50000
g12a_emmc_c 1 1 0 222222219 0 0 50000
g12a_emmc_b 1 1 0 222222219 0 0 50000
g12a_emmc_a 0 0 0 222222219 0 0 50000
g12a_assist_misc 0 0 0 222222219 0 0 50000
g12a_mipi_dsi_phy 0 0 0 222222219 0 0 50000
g12a_hiu_reg 0 0 0 222222219 0 0 50000
g12a_spicc_1 0 0 0 222222219 0 0 50000
g12a_uart0 0 0 0 222222219 0 0 50000
g12a_rng0 0 0 0 222222219 0 0 50000
g12a_sd 0 0 0 222222219 0 0 50000
g12a_sana 0 0 0 222222219 0 0 50000
g12a_i2c 0 0 0 222222219 0 0 50000
g12a_spicc_0 0 0 0 222222219 0 0 50000
g12a_periphs 0 0 0 222222219 0 0 50000
g12a_pl301 0 0 0 222222219 0 0 50000
g12a_isa 0 0 0 222222219 0 0 50000
g12a_eth_phy 1 1 0 222222219 0 0 50000
g12a_mipi_dsi_host 0 0 0 222222219 0 0 50000
g12a_audio_locker 0 0 0 222222219 0 0 50000
g12a_dos 0 0 0 222222219 0 0 50000
g12a_ddr 0 0 0 222222219 0 0 50000
fclk_div2_div 1 1 0 999999985 0 0 50000
fclk_div2 3 3 0 999999985 0 0 50000
ff3f0000.ethernet#m250_sel 1 1 0 999999985 0 0 50000
ff3f0000.ethernet#m250_div 1 1 0 249999997 0 0 50000
ff3f0000.ethernet#fixed_div2 1 1 0 124999998 0 0 50000
ff3f0000.ethernet#rgmii_tx_en 1 1 0 124999998 0 0 50000
ffe05000.sd#mux 1 1 0 999999985 0 0 50000
ffe05000.sd#div 1 1 0 50000000 0 0 50000
cpub_clk_dyn1_sel 1 1 0 999999985 0 0 50000
cpub_clk_dyn1 1 1 0 999999985 0 0 50000
cpub_clk_dyn 1 1 0 999999985 0 0 50000
cpub_clk 1 1 0 999999985 0 0 50000
cpub_clk_div8 0 0 0 124999998 0 0 50000
cpub_clk_div7 0 0 0 142857140 0 0 50000
cpub_clk_div6 0 0 0 166666664 0 0 50000
cpub_clk_trace_sel 0 0 0 166666664 0 0 50000
cpub_clk_trace 0 0 0 166666664 0 0 50000
cpub_clk_div5 0 0 0 199999997 0 0 50000
cpub_clk_apb_sel 0 0 0 199999997 0 0 50000
cpub_clk_apb 0 0 0 199999997 0 0 50000
cpub_clk_div4 0 0 0 249999996 0 0 50000
cpub_clk_div3 0 0 0 333333328 0 0 50000
cpub_clk_atb_sel 0 0 0 333333328 0 0 50000
cpub_clk_atb 0 0 0 333333328 0 0 50000
cpub_clk_div2 0 0 0 499999992 0 0 50000
cpub_clk_axi_sel 0 0 0 499999992 0 0 50000
cpub_clk_axi 0 0 0 499999992 0 0 50000
cpub_clk_div16_en 0 0 0 999999985 0 0 50000
cpub_clk_div16 0 0 0 62499999 0 0 50000
cpub_clk_dyn1_div 0 0 0 999999985 0 0 50000
mpll_prediv 0 0 0 1999999969 0 0 50000
mpll0_div 0 0 0 270948747 0 0 50000
mpll0 0 0 0 270948747 0 0 50000
aud_spdifout_b_clk_sel 0 0 0 270948747 0 0 50000
aud_spdifout_b_clk_div 0 0 0 270948747 0 0 50000
aud_spdifout_b_clk 0 0 0 270948747 0 0 50000
aud_pdm_sysclk_sel 0 0 0 270948747 0 0 50000
aud_pdm_sysclk_div 0 0 0 270948747 0 0 50000
aud_pdm_sysclk 0 0 0 270948747 0 0 50000
aud_pdm_dclk_sel 0 0 0 270948747 0 0 50000
aud_pdm_dclk_div 0 0 0 270948747 0 0 50000
aud_pdm_dclk 0 0 0 270948747 0 0 50000
aud_spdifin_clk_sel 0 0 0 270948747 0 0 50000
aud_spdifin_clk_div 0 0 0 270948747 0 0 50000
aud_spdifin_clk 0 0 0 270948747 0 0 50000
aud_spdifout_clk_sel 0 0 0 270948747 0 0 50000
aud_spdifout_clk_div 0 0 0 270948747 0 0 50000
aud_spdifout_clk 0 0 0 270948747 0 0 50000
aud_mst_f_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_f_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_f_mclk 0 0 0 270948747 0 0 50000
aud_mst_f_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_f_sclk_div 0 0 0 264599 0 0 50000
aud_mst_f_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_f_lrclk_div 0 0 0 259 0 0 97
aud_mst_f_lrclk 0 0 0 259 0 0 97
aud_mst_f_sclk 0 0 0 264599 0 0 50000
aud_mst_e_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_e_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_e_mclk 0 0 0 270948747 0 0 50000
aud_mst_e_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_e_sclk_div 0 0 0 264599 0 0 50000
aud_mst_e_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_e_lrclk_div 0 0 0 259 0 0 97
aud_mst_e_lrclk 0 0 0 259 0 0 97
aud_mst_e_sclk 0 0 0 264599 0 0 50000
aud_mst_d_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_d_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_d_mclk 0 0 0 270948747 0 0 50000
aud_mst_d_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_d_sclk_div 0 0 0 264599 0 0 50000
aud_mst_d_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_d_lrclk_div 0 0 0 259 0 0 97
aud_mst_d_lrclk 0 0 0 259 0 0 97
aud_mst_d_sclk 0 0 0 264599 0 0 50000
aud_mst_c_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_c_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_c_mclk 0 0 0 270948747 0 0 50000
aud_mst_c_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_c_sclk_div 0 0 0 264599 0 0 50000
aud_mst_c_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_c_lrclk_div 0 0 0 259 0 0 97
aud_mst_c_lrclk 0 0 0 259 0 0 97
aud_mst_c_sclk 0 0 0 264599 0 0 50000
aud_mst_b_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_b_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_b_mclk 0 0 0 270948747 0 0 50000
aud_mst_b_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_b_sclk_div 0 0 0 264599 0 0 50000
aud_mst_b_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_b_lrclk_div 0 0 0 259 0 0 97
aud_mst_b_lrclk 0 0 0 259 0 0 97
aud_mst_b_sclk 0 0 0 264599 0 0 50000
aud_mst_a_mclk_sel 0 0 0 270948747 0 0 50000
aud_mst_a_mclk_div 0 0 0 270948747 0 0 50000
aud_mst_a_mclk 0 0 0 270948747 0 0 50000
aud_mclk_pad_1 0 0 0 270948747 0 0 50000
aud_mclk_pad_0 0 0 0 270948747 0 0 50000
aud_mst_a_sclk_pre_en 0 0 0 270948747 0 0 50000
aud_mst_a_sclk_div 0 0 0 264599 0 0 50000
aud_mst_a_sclk_post_en 0 0 0 264599 0 0 50000
aud_mst_a_lrclk_div 0 0 0 259 0 0 97
aud_mst_a_lrclk 0 0 0 259 0 0 97
aud_lrclk_pad_2 0 0 0 259 0 0 97
aud_lrclk_pad_1 0 0 0 259 0 0 97
aud_lrclk_pad_0 0 0 0 259 0 0 97
aud_tdmout_c_lrclk 0 0 0 259 0 0 97
aud_tdmout_b_lrclk 0 0 0 259 0 0 97
aud_tdmout_a_lrclk 0 0 0 259 0 0 97
aud_tdmin_lb_lrclk 0 0 0 259 0 0 97
aud_tdmin_c_lrclk 0 0 0 259 0 0 97
aud_tdmin_b_lrclk 0 0 0 259 0 0 97
aud_tdmin_a_lrclk 0 0 0 259 0 0 97
aud_mst_a_sclk 0 0 0 264599 0 0 50000
aud_sclk_pad_2 0 0 0 264599 0 0 50000
aud_sclk_pad_1 0 0 0 264599 0 0 50000
aud_sclk_pad_0 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmout_c_sclk 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmout_b_sclk 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmout_a_sclk 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_lb_sclk 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_c_sclk 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_b_sclk 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk_sel 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk_pre_en 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk_post_en 0 0 0 264599 0 0 50000
aud_tdmin_a_sclk 0 0 0 264599 0 0 50000
mpll1_div 0 0 0 393212849 0 0 50000
mpll1 0 0 0 393212849 0 0 50000
mpll2_div 0 0 0 294909637 0 0 50000
mpll2 0 0 0 294909637 0 0 50000
mpll3_div 0 0 0 0 0 0 50000
mpll3 0 0 0 0 0 0 50000
fclk_div2p5_div 0 0 0 799999987 0 0 50000
fclk_div2p5 0 0 0 799999987 0 0 50000
vdec_hevcf_sel 0 0 0 799999987 0 0 50000
vdec_hevcf_div 0 0 0 799999987 0 0 50000
vdec_hevcf 0 0 0 799999987 0 0 50000
vdec_hevc_sel 0 0 0 799999987 0 0 50000
vdec_hevc_div 0 0 0 799999987 0 0 50000
vdec_hevc 0 0 0 799999987 0 0 50000
vdec_1_sel 0 0 0 799999987 0 0 50000
vdec_1_div 0 0 0 799999987 0 0 50000
vdec_1 0 0 0 799999987 0 0 50000
sd_emmc_c_clk0_sel 1 1 0 24000000 0 0 50000
sd_emmc_c_clk0_div 1 1 0 24000000 0 0 50000
sd_emmc_c_clk0 1 1 0 24000000 0 0 50000
ffe07000.mmc#mux 1 1 0 24000000 0 0 50000
ffe07000.mmc#div 1 1 0 400000 0 0 50000
sd_emmc_b_clk0_sel 0 0 0 24000000 0 0 50000
sd_emmc_b_clk0_div 0 0 0 24000000 0 0 50000
sd_emmc_b_clk0 0 0 0 24000000 0 0 50000
sd_emmc_a_clk0_sel 0 0 0 24000000 0 0 50000
sd_emmc_a_clk0_div 0 0 0 24000000 0 0 50000
sd_emmc_a_clk0 0 0 0 24000000 0 0 50000
cpu_clk_axi_div 0 0 0 0 0 0 50000
cpu_clk_axi 0 0 0 0 0 0 50000
cpu_clk_atb_div 0 0 0 0 0 0 50000
cpu_clk_atb 0 0 0 0 0 0 50000
cpu_clk_apb_div 0 0 0 0 0 0 50000
cpu_clk_apb 0 0 0 0 0 0 50000
cpu_clk_div16_en 0 0 0 0 0 0 50000
cpu_clk_div16 0 0 0 0 0 0 50000
▒▒▒=▒▒▒▒▒G12B:BL:6e7c85:7898ac;FEAT:E0F83180:2000;POC:F;RCY:0;EMMC:800;NAND:81;SD?:0;ebug board detected
L0:00000000
L1:00000703
L2:00008067
L3:04000000
B2:00002000
B1:e0f83180

TE: 437594

BL2 Built : 06:17:13, Jun 28 2019. g12b gf0505d7-dirty - qi.duan@droid13

Board ID = 4
Set A53 clk to 24M
Set A73 clk to 24M
Set clk81 Jun 28 2019 06:17:09
board id: 4
Load FIP HDR from SD, src: 0x00010200, des: 0xfffd0000, size: 0x00004000, part: 0
fw parse done
Load ddrfw from SD, src: 0x00060200, des: 0xfffd0000, size: 0x0000c000, part: 0
Load ddrfw from SD, src: 0x00038200, des: 0xfffd0000, size: 0x00004000, part: 0
PIEI prepare done
fastboot data load
fastboot data verify
verify result: 255
Cfg max: 2, cur: 1. Board id: 255. Force loop cd of read dq deskew training
INFO : End of MPR read delay center optimization
INFO : End of Write leveling coarse delay
INFO : End of write delay center optimization
INFO : End of read delay center optimization
000, part: 0f max read latency training
Check phy result
INFO : End of initialization
INFO : End of 2D read delay Voltage center optimization
INFO : End of 2D write delay Voltage center optimization
INFO : Training has run successfully!

R0_RxClkDly_Margin==94 ps 8
)|(0xb0):0001
2D training succeed
auto size-- 65535DDR cs0 size: 2048MB
DDR cs1 size: 2048MB
DMC_DDR_CTRL: 00600024DDR sizee==430 bdlr_100_min==430 bdlr_100_max==430 bdlr_100_cur==430
aft test bdlr_100_average==430 bdlr_100_min==430 bdlr_100_max==4es 0Enable ddr reg access
Load FIP HDR from SD, src: 0x00010200, des: 0x01700000, size: 0x00004000, part: 0
Load BL3X from SD, src: 0x0006c200, des: 0x0175c000, size: 0x00087e00, part: 0
0.0;M3 CHK:0;cm4_sp_mode 0
E30HDR
MVN_1=0x00000000
MVN_2=0x00000000
[Image: g12b_v1.1.3375-8f9c8a7 2019-01-24 10:44:46 gart!
low task start!
run into bl31
NOTICE: BL31: v1.3(release):ab8811b
NOTICE: BL31: Built : 15:03:31, Feb 12 2019
NOTICE: BL31: G12A normal boot!
NOTICE: BL31: BL33 decompress pass
ERROR: Error initializing runtime service opteed_fast


U-Boot 2020.04-rc3-00043-g5b07eb8ee6-dirty (Mar 03 2020 - 11:11:13 +0530) odroid-n2

Model: Hardkernel ODROID-N2
SoC: Amlogic Meson G12B (S922X) Revision 29:a (40:2)
DRAM: 3.8 GiB
MMC: meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
sd@ffe05000: 1, mmc@ffe07000: 2
In: serial@3000
Out: serial@3000
utoboot: 0
MMC Device 0 not found
no mmc device at slot 0
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 50000000
switch to partit27197952 bytes read in 1158 ms (22.4 MiB/s)
47213 bytes read in 6 ms (7.5 MiB/s)
7390163 bytes read in 317 ms (22.2 MiB/s)
## Flattened Device Tree blob at 08008000
Booting using the fdt blob at 0x8008000OK
Loading Device Tree to 00000000f2828000, end 00000000f283686c ... OK

Starting kernel ...

[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 5.6.0-rc3-next-20200228-xml[ 0.000000] Machine model: Hardkernel ODROID-N2
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: creatednsole [meson0] enabled
[ 0.000000] NUMA: No NUMA configuration found
[ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000f4ffffff]
[ 0.000000] NUMA: NODE_DATA [mem 0xf4808100-0xf4809fff]
[ 0.000000] Zone ranges:
[ 0.000 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff]
[ 0.000000] node 0: [mem 0x0000000005300000-0x0000ci: 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] percpu: Embedded 23 pages/cpu s53272 r8192 d32744 u94208
[ 0.000000] Detected VIPT I-cachotal pages: 987072
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: console=ttyAML0,115200n8 root=PARTUUI4 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] mem auK reserved, 262144K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[ 0.000000] rcutricting CPUs from NR_CPUS=256 to nr_cpu_ids=6.
[ 0.000000] Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GIC: Using split EOI/Deactivate mode
[ 0.000000] irq_imer(s) running at 24.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc 0.008414] Console: colour dummy device 80x25
[ 0.012608] Calibrating delay loop (skipped), value calculated using timer frk initializing
[ 0.032180] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.039570] Mountpoint-c159335] CPU features: detected: ARM erratum 858921
[ 0.159343] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware
[ 0.159arch_timer: CPU2: Trapping CNTVCT access
[ 0.159392] CPU2: Booted secondary processor 0x0000000100 [0x410fd092]
[ 0.1908rch_timer: CPU3: Trapping CNTVCT access
[ 0.190894] CPU3: Booted secondary processor 0x0000000101 [0x410fd092]
[ 0.22291ch_timer: CPU4: Trapping CNTVCT access
[ 0.222944] CPU4: Booted secondary processor 0x0000000102 [0x410fd092]
[ 0.254971h_timer: CPU5: Trapping CNTVCT access
[ 0.254998] CPU5: Booted secondary processor 0x0000000103 [0x410fd092]
[ 0.255070]-bit EL0 Support
[ 0.374198] CPU features: detected: CRC32 instructions
alized
[ 0.398987] KASLR disabled due to lack of seed
[ 0.399268] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xf0.419338] pinctrl core: initialized pinctrl subsystem
[ 0.421850] thermal_sys: Registered thermal governor 'step_wise'
[ 0.421853] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.427103] DMI not present or invalid.
[ 0.437600d)
[ 0.453886] audit: type=2000 audit(0.396:1): state=initialized audit_enabled=0 res=1
[ 0.461569] cpuidle: using goverriver
e, pre-allocated 0 pages
[ 0.499200] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.505930] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 0.514480] cryptd: max_cpu_qlen set to 1000
[ 0.519982] ACPI: Interpered new interface driver usbfs
[ 0.544631] usbcore: registered new interface driver hub
[ 0.549981] usbcore: registeredCopyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.569197] PTP clock support registered
[ 0.573221] EDAC MC: V86270] clocksource: Switched to clocksource arch_sys_counter
[ 0.592103] VFS: Disk quotas dquot_6.6.0
[ 0.595921] VFS: D protocol family 2
[ 0.610922] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.61968 (order: 7, 524288 bytes, linear)
[ 0.634750] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.641200] Uytes, linear)
[ 0.655151] NET: Registered protocol family 1
[ 0.659701] RPC: Registered named UNIX socket transport moduRPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.681283] PCI: CLS 0 bytes, default 64
[ 0.685319] Unpackingupt IRQ1
[ 0.951627] kvm [1]: Hyp mode initialized successfully
1.051753] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.052615] NFS: Registering the id_resolver key type
[ 14 File Layout Driver Registering...
[ 1.072152] 9p: Installing v9fs 9p2000 file system support
[ 1.093272] Key type asymmetric registered
[ 1.093296] Asymmetric key parser 'x509' registered
[ 1.096654] Block layebled.
-a: Failed to get PWM: -517
[ 1.140732] pwm-regulator regulator-vddcpu-b: Failed to get PWM: -517
[ 1.150245] Serial: 82) is a meson_uart
[ 1.167935] printk: console [ttyAML0] enabled
[ 1.167935] printk: console [ttyAML0] enabled
[ 1.17iver initialized
xcv, ver 1.0
[ 1.201110] thunder_bgx, ver 1.0
[ 1.204306] nicpf, ver 1.0
[ 1.207483] hclge is initializing
[ 1.2ation.
[ 1.222690] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 1.228436] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.234320] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[ 1.241202] igb: Copyright (c)r Level meta-driver version: 0.3
[ 1.270612] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.275532] ehcin driver
[ 1.289159] ehci-exynos: EHCI Exynos driver
hci-exynos: OHCI Exynos driver.1 'Open' Host Controller (OHCI) Driver
[ 1.313470] usbcore: registered new interface driver usb-storage
[ 1.321334] i2c /dev entries driver
[ 1.327566] sdhci: Secure Digital Host Controller Interface driver
[ 1.328566] sdhci: Copyright(c) Pierre OsCPUs
[ 1.385968] meson-sm: secure-monitor enabled
[ 1.390474] usbcore: registered new interface driver usbhid
[ 1.395244] usbhid: USB HID core driver
[ 1.402590] NET: Registered protocol family 17
[ 1.403536] 9pnet: Installing 9P2000 su 5V
[ 1.436527] USB_PWR_EN: supplied by 5V
[ 1.441966] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 1[ 1.457936] dwc3-meson-g12a ffe09000.usb: USB3 ports: 1
[ 1.466335] dwc2 ff400000.usb: ff400000.usb supply vusb_d not fou.479632] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM
[ 1.487274] dwc3 ff500000.usb: Failed to get clk 'gistered, assigned bus number 1
[ 1.505037] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 quirks 0x0000000000010010
[ 1.514287] xhci-hcd xhci-hcd.0.auto: irq 26, io mem 0xff500000
[ 1.520566] hub 1-0:1.0: USB hub found
[ xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 1.540823] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 e Mode
[ 1.570295] meson-gx-mmc ffe05000.sd: Got CD GPIO
d to get PWM: -517
[ 1.608259] pwm-regulator regulator-vddcpu-a: Failed to get PWM: -517
[ 1.614399] pwm-regulator regul
ebug board detected
L0:00000000
L1:00000703
L2:00008067
L3:04000000
B2:00002000
B1:e0f83180

TE: 283466

BL2 Built : to 24M
A53 clk: 1200 MHz
A73 clk: 1200 MHz
CLK81: 166.6M
smccc: 00049b80
DDR driver_vesion: LPDDR4_PHY_V_0_1_14 build time: Jun 28 2019 06:17:09
board id: 4
Load FIP HDR from SD, src: 0x00010200, des: 0xfffd0000, size: 0x00004000, part: 0
fw parse done
Load ddrfw from SD, src: 0x00060200, des: 0xfffd0000, size: 0x0000c000, part: 0
Load ddrfw from SD, src: 0x00038200, des: 0xfffd0000, size: 0x00004000, part: 0
PIEI prepare done
fastboot data load
fastboot data verify
verify result: 255
Cfg max: 2, cur: 1. Board id: 255. Force loop cCheck phy result
INFO : End of initialization
INFO : End of read enable training
INFO : End of fine write leveling
INFO : En: End of write delay center optimization
INFO : End of read delay center optimization
Check phy resultx read latency training
INFO : End of initialization
INFO : End of 2D read delay Voltage center optimization
INFO : End of 2D write delay Voltage center optimization
INFO : Training has run successfully!

R0_RxClkDly_Margin==82 ps 7
: 3928MB
cs0 DataBus test pass
cs1 DataBus test pass
cs0 AddrBus test pass
cs1 AddrBus test pass
pre test bdlr_100_average==430 bdlr_100_min==430 bdlr_100_max==430 bdlr_100_cur==430
aft test bdlr_100_average==430 bdlr_100_min==430 bdlr_100_max==4es 0Enable ddr reg access
Load FIP HDR from SD, src: 0x00010200, des: 0x01700000, size: 0x00004000, part: 0
Load BL3X from SD, src: 0x0006c200, des: 0x0175c000, size: 0x00087e00, part: 0
0.0;M3 CHK:0;cm4_sp_mode 0
E30HDR
MVN_1=0x00000000
MVN_2=0x00000000
[Image: g12b_v1.1.3375-8f9c8a7 2019-01-24 10:44:46 gart!
low task start!
run into bl31
NOTICE: BL31: v1.3(release):ab8811b
NOTICE: BL31: Built : 15:03:31, Feb 12 2019
NOTICE: BL31: G12A normal boot!
NOTICE: BL31: BL33 decompress pass
ERROR: Error initializing runtime service opteed_fast
meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
sd@ffe05000: 1, mmc@ffe07000: 2
In: serial@3000
Out: serial@3000
utoboot: 2 meson_mmc_clk1: 0x023F clk_div: 63 mmc->clock: 380953
meson_mmc_clk1: 0x0254 clk_div: 20 mmc->clock: 50000000
switch to partitFound U-Boot script /boot/boot.scr
745 bytes read in 2 ms (363.3 KiB/s)
## Executing script at 08000000
7390163 bytes read in 316 ms (22.3 MiB/s)
## Flattened Device Tree blob at 08008000
Booting using the fdt blob at 0x8008000t-dirty (amoon@ThinkPad-T440s) (gcc version 9.2.1 20191008 (Ubuntu 9.2.1-9ubuntu2)) #2 SMP PREEMPT Tue Mar 3 17:54:17 IST 2020
[ 0.000000] Machine model: Hardkernel ODROID-N2
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: creatednsole [meson0] enabled
[ 0.000000] NUMA: No NUMA configuration found
[ 0.000000] NUMA: Faking a node at [mem 0x0000000000000000-0x00000000f4ffffff]
[ 0.000000] NUMA: NODE_DATA [mem 0xf4808100-0xf4809fff]
[ 0.000000] Zone ranges:
[ 0.000 0.000000] node 0: [mem 0x0000000000000000-0x0000000004ffffff]
[ 0.000000] node 0: [mem 0x0000000005300000-0x0000ci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[ 0.000000] psci: SMC Callie on CPU0
[ 0.000000] CPU features: detected: ARM erratum 845719
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 987072
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: console=ttyAML0,115200n8 root=PARTUUIto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] software IO TLB: mapped [mem 0x3bfff000-0x3ffff000] (64MB)
[ 0.000000] Memory: 3568224K/4011008K available (12348K kernel code, 1986K rwdata, 6920K rodata, 5248K init, 467K bss, 180640: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU res000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GIC: Using split EOI/Deactivate mode
[ 0.000000] irq_meson_gpio: 100 to 8 gpio interrupt mux initialized
[ 0.000000] random: get_random_bytes called from start_kernel+0x2a8/0x438 with crng_init=0
[ 0.000000] arch_timer: cp15 t 0.008411] Console: colour dummy device 80x25
[ 0.012607] Calibrating delay loop (skipped), value calculated using timer frk initializing
[ 0.032178] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.039571] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.071542] ASID allocator initialised with 65536 entries
[ 0.079512] rcu: Hierarchical SRCU implementation.
[ 0.091010] EFI services will not be available.
[ 0.091400] smp: Bringing up secondary CPUs ...
[ 0.126822] Detected VIPT I-cache on CPU1
[ 0.126869] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.343] Detected VIPT I-cache on CPU2
[ 0.159365] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.159379] 59] Detected VIPT I-cache on CPU3
[ 0.190874] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.190880] a0] Detected VIPT I-cache on CPU4
[ 0.222925] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.222931] ar] Detected VIPT I-cache on CPU5
[ 0.254978] arch_timer: Enabling local workaround for ARM erratum 858921
[ 0.254984] arc smp: Brought up 1 node, 6 CPUs
[ 0.364293] SMP: Total of 6 processors activated.
[ 0.369015] CPU features: detected: 32[ 0.387984] CPU: All CPU(s) started at EL2
[ 0.388046] alternatives: patching kernel code
[ 0.392605] devtmpfs: initifffffff, max_idle_ns: 7645041785100000 ns
[ 0.408494] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.421796] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.427045] DMI not present or invalid.
[ 0.437540d)
[ 0.457776] audit: type=2000 audit(0.400:1): state=initialized audit_enabled=0 res=1
[ 0.465469] cpuidle: using goverriver
[ 0.495337] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.496408] HugeTLB registered 32.0 MiB page sizreter disabled.
[ 0.525746] 5V: supplied by 12V
[ 0.528467] VDDAO_3V3: supplied by 12V
[ 0.532152] iommu: Default domain type: Translated
[ 0.536719] vgaarb: loaded
[ 0.539457] SCSI subsystem initialized
[ 0.543355] usbcore: registCopyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.573147] PTP clock support registered
[ 0.577168] EDAC MC: Ver: 3.0.0
[ 0.581198] FPGA manager framework
[ 0.583688] Advanced Linux Sound Architecture Driver Initialized.
[ 0.5 protocol family 2
[ 0.614877] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.623213] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.631293] TCP bind hash table entries: 327ytes, linear)
[ 0.659087] NET: Registered protocol family 1
[ 0.663668] RPC: Registered named UNIX socket transport module.
[ 0.669311] RPC: Registered udp transport module.
[ 0.674040] RPC: Registered tcp transport module.
[ 0.678756] upt IRQ1
[ 0.955271] kvm [1]: Hyp mode initialized successfully
1.059387] Key type id_resolver registered
[ 1.063555] Key type id_legacy registered
[ 1.067585] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 1.074433] 9p: Installing v9fs 9p2000 file system support
[ 1.095608] Key type asymmetric registered
[ 1.095631] Asymmetric key parser 'x509' registered
[ 1.098998] Block layeo scheduler kyber registered
[ 1.120066] GPIO line 447 (usb-hub-reset) hogged as output/high
[ 1.126163] EINJ: ACPI disaulator-dummy
[ 1.142125] VCC_3V3: supplied by VDDAO_3V3
[ 1.146139] FLASH_1V8: supplied by VCC_3V3
[ 1.150258] VCC_1V8: supplied by VCC_3V3
[ 1.154182] VDDAO_1V8: supplied by VDDAO_3V3
[ 1.158559] pwm-regulator: supplied by regulator-due [ttyAML0] enabled
[ 1.187407] printk: bootconsole [meson0] disabled
[ 1.187407] printk: bootconsole [meson0] disabled
[ 1.197052] msm_serial: driver initialized
[ 1.206805] loop: module loaded
[ 1.210791] libphy: Fixed MDIO Bus: probed
[ 1.210953] tun: Universal TUN/TAP device driver, 1.6
[ 1.214900] thunder_26732] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[ 1.233757] hns3: Copyright (c) 2017 Huawei Corpor Corporation.
[ 1.250676] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[ 1.257556] igb: Copyright (c)r Level meta-driver version: 0.3
[ 1.286929] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.291887] ehcin driver
[ 1.305509] ehci-exynos: EHCI Exynos driver
[ 1.309638] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.315695] ohci-pci: OHCI PCI platform driver
[ 1.320108] ohci-platform: OHCI generic platform driver
[ 1.325361] o: Unlisted initial frequency changed to: 1000000 KHz
[ 1.356836] sdhci: Secure Digital Host Controller Interface driver
[ 1.361607] sdhci: Copyright(c) Pierre Ossman
[ 1.366143] Synopsys Designware Multimedia Card Interface Driver
[ 1.37256[ 1.403788] sdhci-pltfm: SDHCI platform and OF driver helper
[ 1.404853] ledtrig-cpu: registered to indicate activity on pport
[ 1.431942] Key type dns_resolver registered
[ 1.436288] registered taskstats version 1
[ 1.440203] Loading compiled-in X.509 certificates
[ 1.451531] HUB_5V: supplied by 5V
[ 1.451703] USB_PWR_EN: supplied by 5V
[ 1.454470] dwc3-meson-g12a ffe09000.usb: Uulator
[ 1.479845] dwc2 ff400000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM
[ 1.487274] dwc3 ff500000.usb: Failenew USB bus registered, assigned bus number 1
[ 1.505273] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228fe6c hci version 0x110 ub found
[ 1.524096] hub 1-0:1.0: 2 ports detected
[ 1.528166] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 1.533490] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 1.541078] xhci-hcd xhci-hcd.0.auto: Host sup5732] hub 2-0:1.0: USB hub found
[ 1.559285] hub 2-0:1.0: 1 port detected
[ 1.563280] dwc3-meson-g12a ffe09000.usb: swit[ 1.600042] hctosys: unable to open rtc device (rtc0)
[ 1.600350] ALSA device list:
[ 1.602392] No soundcards found[ 1.612822] Freeing unused kernel memory: 5248K
[ 1.612909] Run /init as init process
:: running early hook [udev]
Warning: /lib/modules/5.6.0-rc3-next-20200228-xmlt-dirty/modules.devname not found - ignoring
[ 1.640279] mmc1: new high speed SDHC card at address 0001
[ 1.644707] mmcblk1: mmc1:0001 00000 29.8 GiB
Starting versi:: performing fsck on '/dev/mmcblk1p1'
/dev/mmcblk1p1: recovering journal
[ 2.682297] usb 2-1.1: new SuperSpeed Gen 1 USB device number 3 using xhci-hcd
[ 2.704100] usb-storage 2-1.1:1.0: USB Mass Storage device detected
[ 2.704938] scsi host0: usb-storage 2-1.1:1.0
/dev/mmcblk1p1: clean, 36280/1954064 files, 897478/7811072 blocks
:: mounting '/dev/mmcblk1p1' on real root
8397168 512-byte logical blocks: (250 GB/233 GiB)
[ 3.745050] sd 0:0:0:0: [sda] Write Protect is off
[ 3.749789] sd 0:0:+UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[ 4.951165] systemd[1]: (This warni2m OK ] Created slice system-getty.slice.
al\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
ssion Slice.
[ OK ] Created slice User and Session Slice.
Dispatch Password …ts to Console Directory Watch.
ard Password R…uests to Wall Directory Watch.
[ OK ] Listening on initctl Compatibility Named Pipe.
[ OK ] Started Journal Service.
[ 5.894582] audit: type=1130 audit(1574296154.388:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald c to Persistent Storage...
[ 5.926206] systemd-journald[268]: Received client request to flush runtime journal.
[ 5.961026] systemd-journald[268]: File /var/log/journal/136d7aac1638487b9d797cb6fff490c5/system.journal corrupted or unclean[ OK ] Started udev Kernel Device Manager.
[ 6.002522] audit: type=1130 audit(1574296154.496:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm[0m...
[ OK ] Found device /dev/ttyAML0.
[ 6.308100] random: crng init done
[ 6.308120] random: 7 urandom warning(s) missed due to ratelimiting
[ 6.350893] meson-vrtc ff8000a8.rtc: registered as rtc0
[ OK ] Started Load/Save Random Seed.
[ 6.594453] audit: type=1130 audit(1574296155.088:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-see[ OK ] Started Flush Journal to Persistent Storage.
[ 7.218625] audit: type=1130 audit(1574296155.712:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-fleson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0
[ 7.281547] input: meson-ir as /devices/platform/soc/ff800000.bus/ff808000.ir/rc/rc0/input0
[ 7.289959] meson-ir ff808000.ir: receiver initialized
[ OK ] Started Network Service.
[ 7.398412] audit: type=1130 audit(1574296155.892:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd ceth_lpi not found
[ 7.981256] meson8b-dwmac ff3f0000.ethernet: PTP uses main clock
[ 7.987161] meson8b-dwmac ff3f0000.ethernet: no reset control found
[ 7.993883] meson8b-dwmac ff3f0000.ethernet: User ID: 0x11, Synopsys ID: 0x37
[ 8.000449]ethernet: COE Type 2
[ 8.025620] meson8b-dwmac ff3f0000.ethernet: TX Checksum insertion supported
[ 8.032606] meson8b-dwmac ff3f0000.ethernet: Wake-Up On Lan supported
[ 8.039006] meson8b-dwmac ff3f0000.ethernet: Normal descriptors
[ 8.0448 stmmac: probed
[ 8.071966] libphy: mdio_mux: probed
[ OK ] Started Create Volatile Files and Directories.
[ 8.090493] audit: type=1130 audit(1574296156.584:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-s Name Resolution...
Starting Network Time Synchronization...
Starting Update UTMP about System Boot/Shutdown...
[ 8.162859] libphy: mdio_mux: probed
[ 8.170806] audit: type=1127 audit(1574296156.664:8): pid=318 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-updatep comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 8.255200] meson8b-dwmac ff3f0000.ethernet eth0: PHY [0.0:00] driver [RTL8211F Gigabit Ethernet] (irq=27)
[ 8.270268] meson8b-dwmac ff3f0000.ethernet eth0: No Safety Features support found
[ 8.272183] meson8b-dwmac ff3f0000.eth comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ OK ] Reached target System Initialization.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Reached target System Time Set.
[ OK ] Reached target System Time Synchronized.
onnector not available verification of passwo[ 8.639799] meson-drm ff900000.vpu: Queued 2 outputs on vpu
[ OK ] Reached target Basic System.
[ 8.734299] meson-dw-hdmi ff600000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy)
[[ 8.738916]0.hdmi-tx (ops meson_dw_hdmi_ops [meson_dw_hdmi])
[ 8.755560] [drm] Initialized meson 1.0.0 20161109 for ff900000.vpu on min[ 8.927083] Console: switching to colour frame buffer device 128x48
[ 8.949988] meson-drm ff900000.vpu: fb0: mesondrmfb fit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Starting Logi[ 9.155312] axg-sound-card sound: snd-soc-dummy-dai <-> ff6421c0.audio-controller mapping ok
[ 9.159746] axg-sound-card sd-card sound: snd-soc-dummy-dai <-> TDM Loopback mapping ok
[ 9.188135] axg-sound-card sound: i2s-hifi <-> I2S OUT mapping o
Arch Linux 5.6.0-rc3-next-20200228-xmlt-dirty (ttyAML0)

alarm login: [ 11.886977] meson8b-dwmac ff3f0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 11.889945] IPv6: ADDRCONF[ 31.766263] USB_PWR_EN: disabling
root
Password:
[ 73.331233] kauditd_printk_skb: 6 callbacks suppressed
[ 73.331238] audit: type=1100 audit(1583239209.656:18): pid=335 uidct="root" exe="/usr/bin/login" hostname=alarm addr=? terminal=ttyAML0 res=success'
[ 73.355040] audit: type=1101 audit(158323rmit,pam_time acct="root" exe="/usr/bin/login" hostname=alarm addr=? terminal=ttyAML0 res=success'
[ 73.378479] audit: type=1115] audit: type=1006 audit(1583239209.664:21): pid=335 uid=0 old-auid=4294967295 auid=0 tty=ttyAML0 old-ses=4294967295 ses=1 res=1
[ 73.414451] audit: type=1130 audit(1583239209.700:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtimeaudit(1583239209.708:23): pid=340 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pamudit: type=1006 audit(1583239209.708:24): pid=340 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=2 res=1
[ d,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="root" exe="/usr/lib/systemd/systemd[ 73.540879] audit: type=1130 audit(1583239209.868:26): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@0 comm="syst884:27): pid=335 uid=0 auid=0 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pa Mar 3 12:32:49 on ttyAML0
[root@alarm ~]#
[root@alarm ~]#
[root@alarm ~]#
\
 
 \ /
  Last update: 2020-03-03 15:03    [W:0.344 / U:0.400 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site