All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators
@ 2022-04-15 16:56 Harald Geyer
  2022-04-24  2:56 ` Samuel Holland
  0 siblings, 1 reply; 7+ messages in thread
From: Harald Geyer @ 2022-04-15 16:56 UTC (permalink / raw)
  To: Chen-Yu Tsai, Jernej Skrabec, Samuel Holland
  Cc: linux-sunxi, devicetree, Torsten Duwe, Harald Geyer

Allwinner A64 SoC has separate supplies for PC, PD, PE, PG and PL.

Usually supplies are linked via the 'regulator-name' property of
regulator nodes. However when regulators are shared we need to
declare the additional links in the pinctrl node.

Signed-off-by: Harald Geyer <harald@ccbib.org>
---
 arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
index aff0660b899c..cc316ef2e2d6 100644
--- a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
+++ b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
@@ -197,6 +197,11 @@ &ohci1 {
 	status = "okay";
 };
 
+&pio {
+	vcc-pc-supply = <&reg_dcdc1>;
+	vcc-pg-supply = <&reg_aldo2>;
+};
+
 &pwm {
 	status = "okay";
 };
-- 
2.35.2


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators
  2022-04-15 16:56 [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators Harald Geyer
@ 2022-04-24  2:56 ` Samuel Holland
  2022-04-25 11:01   ` Harald Geyer
  0 siblings, 1 reply; 7+ messages in thread
From: Samuel Holland @ 2022-04-24  2:56 UTC (permalink / raw)
  To: Harald Geyer, Chen-Yu Tsai, Jernej Skrabec
  Cc: linux-sunxi, devicetree, Torsten Duwe

On 4/15/22 11:56 AM, Harald Geyer wrote:
> Allwinner A64 SoC has separate supplies for PC, PD, PE, PG and PL.
> 
> Usually supplies are linked via the 'regulator-name' property of
> regulator nodes. However when regulators are shared we need to
> declare the additional links in the pinctrl node.
> 
> Signed-off-by: Harald Geyer <harald@ccbib.org>

I'm curious if this solved an issue for you, or if this is just for accuracy.
Both of these regulators have the regulator-always-on property, so they should
have been enabled already. If it's the latter reason, why not add the other
ports? Regardless:

Reviewed-by: Samuel Holland <samuel@sholland.org>

> ---
>  arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
> index aff0660b899c..cc316ef2e2d6 100644
> --- a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
> +++ b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
> @@ -197,6 +197,11 @@ &ohci1 {
>  	status = "okay";
>  };
>  
> +&pio {
> +	vcc-pc-supply = <&reg_dcdc1>;
> +	vcc-pg-supply = <&reg_aldo2>;
> +};
> +
>  &pwm {
>  	status = "okay";
>  };
> 


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators
  2022-04-24  2:56 ` Samuel Holland
@ 2022-04-25 11:01   ` Harald Geyer
  2022-04-25 16:28     ` Jernej Škrabec
  0 siblings, 1 reply; 7+ messages in thread
From: Harald Geyer @ 2022-04-25 11:01 UTC (permalink / raw)
  To: Samuel Holland
  Cc: Chen-Yu Tsai, Jernej Skrabec, linux-sunxi, devicetree, Torsten Duwe

On 24.04.2022 03:56, Samuel Holland wrote:
> On 4/15/22 11:56 AM, Harald Geyer wrote:
>> Allwinner A64 SoC has separate supplies for PC, PD, PE, PG and PL.
>>
>> Usually supplies are linked via the 'regulator-name' property of
>> regulator nodes. However when regulators are shared we need to
>> declare the additional links in the pinctrl node.
>>
>> Signed-off-by: Harald Geyer <harald@ccbib.org>
>
> I'm curious if this solved an issue for you, or if this is just for 
> accuracy.
> Both of these regulators have the regulator-always-on property, so
> they should have been enabled already.

You are right, there shouldn't be any change in functionality. It is 
mostly
for extra correctness. However the pincontrol driver started spewing 
lot's
of warnings about missing regulator nodes a few versions back. The 
visible
effect of this change is to silence those warnings. Also make the DTS 
more
future proof in case the driver is made even more picky in the future.

> If it's the latter reason, why not add the other
> ports? Regardless:

PD, PE and PL have dedicated regulators, that can be matched via the
'regulator-name' property. I didn't want to specify the same 
information
in two places.

For the PF supply, I couldn't find any connection information in the
board schematic. I could have added a dummy regulator. But since there 
is
only one warning about pf-supply during driver initialization and not 
the
dozens of warnings I see about PC and PG, I figured, I'd rather not add
information of dubious use or qualiy.

best regards,
Harald


> Reviewed-by: Samuel Holland <samuel@sholland.org>
>
>> ---
>>  arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts | 5 +++++
>>  1 file changed, 5 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts 
>> b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>> index aff0660b899c..cc316ef2e2d6 100644
>> --- a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>> +++ b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>> @@ -197,6 +197,11 @@ &ohci1 {
>>  	status = "okay";
>>  };
>>
>> +&pio {
>> +	vcc-pc-supply = <&reg_dcdc1>;
>> +	vcc-pg-supply = <&reg_aldo2>;
>> +};
>> +
>>  &pwm {
>>  	status = "okay";
>>  };
>>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Re: [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators
  2022-04-25 11:01   ` Harald Geyer
@ 2022-04-25 16:28     ` Jernej Škrabec
  2022-04-26  4:05       ` Samuel Holland
  0 siblings, 1 reply; 7+ messages in thread
From: Jernej Škrabec @ 2022-04-25 16:28 UTC (permalink / raw)
  To: Samuel Holland, Harald Geyer
  Cc: Chen-Yu Tsai, linux-sunxi, devicetree, Torsten Duwe

Hi Harald!

Dne ponedeljek, 25. april 2022 ob 13:01:54 CEST je Harald Geyer napisal(a):
> On 24.04.2022 03:56, Samuel Holland wrote:
> > On 4/15/22 11:56 AM, Harald Geyer wrote:
> >> Allwinner A64 SoC has separate supplies for PC, PD, PE, PG and PL.
> >>
> >> Usually supplies are linked via the 'regulator-name' property of
> >> regulator nodes. However when regulators are shared we need to
> >> declare the additional links in the pinctrl node.
> >>
> >> Signed-off-by: Harald Geyer <harald@ccbib.org>
> >
> > I'm curious if this solved an issue for you, or if this is just for 
> > accuracy.
> > Both of these regulators have the regulator-always-on property, so
> > they should have been enabled already.
> 
> You are right, there shouldn't be any change in functionality. It is 
> mostly
> for extra correctness. However the pincontrol driver started spewing 
> lot's
> of warnings about missing regulator nodes a few versions back. The 
> visible
> effect of this change is to silence those warnings. Also make the DTS 
> more
> future proof in case the driver is made even more picky in the future.
> 
> > If it's the latter reason, why not add the other
> > ports? Regardless:
> 
> PD, PE and PL have dedicated regulators, that can be matched via the
> 'regulator-name' property. I didn't want to specify the same 
> information
> in two places.

"regulator-name" is only a label, while phandle is actual regulator reference 
that can be used by the driver. While DT files reside in Linux kernel source, 
they are used by other OSes and bootloaders, so you can't really assume what 
is good or not just by judging based on Linux behaviour. So please add PD and 
PL regulators too.

> 
> For the PF supply, I couldn't find any connection information in the
> board schematic. I could have added a dummy regulator. But since there 
> is
> only one warning about pf-supply during driver initialization and not 
> the
> dozens of warnings I see about PC and PG, I figured, I'd rather not add
> information of dubious use or qualiy.

You mean PE right? There is no PF supply on A64. Anyway, if it's not on 
schematic, it can be assumed unconnected and thus you shouldn't define that 
property. Messages like "using dummy regulator" are fine in such cases .

There is no issue of "dubious quality" if schematic is clear. Also don't worry 
about usefulness. DT files are hardware description files. They should reflect 
hardware configuration, no matter how useful information seems.

FYI, information in this case is useful to the driver. If you check sunxi 
pinctrl driver, you can see that port bias is set according to regulator 
voltage.

Best regards,
Jernej

> 
> best regards,
> Harald
> 
> 
> > Reviewed-by: Samuel Holland <samuel@sholland.org>
> >
> >> ---
> >>  arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts | 5 +++++
> >>  1 file changed, 5 insertions(+)
> >>
> >> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts 
> >> b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
> >> index aff0660b899c..cc316ef2e2d6 100644
> >> --- a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
> >> +++ b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
> >> @@ -197,6 +197,11 @@ &ohci1 {
> >>  	status = "okay";
> >>  };
> >>
> >> +&pio {
> >> +	vcc-pc-supply = <&reg_dcdc1>;
> >> +	vcc-pg-supply = <&reg_aldo2>;
> >> +};
> >> +
> >>  &pwm {
> >>  	status = "okay";
> >>  };
> >>
> 
> 



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators
  2022-04-25 16:28     ` Jernej Škrabec
@ 2022-04-26  4:05       ` Samuel Holland
  2022-04-26 14:21         ` Harald Geyer
  0 siblings, 1 reply; 7+ messages in thread
From: Samuel Holland @ 2022-04-26  4:05 UTC (permalink / raw)
  To: Jernej Škrabec, Harald Geyer
  Cc: Chen-Yu Tsai, linux-sunxi, devicetree, Torsten Duwe

On 4/25/22 11:28 AM, Jernej Škrabec wrote:
> Hi Harald!
> 
> Dne ponedeljek, 25. april 2022 ob 13:01:54 CEST je Harald Geyer napisal(a):
>> On 24.04.2022 03:56, Samuel Holland wrote:
>>> On 4/15/22 11:56 AM, Harald Geyer wrote:
>>>> Allwinner A64 SoC has separate supplies for PC, PD, PE, PG and PL.
>>>>
>>>> Usually supplies are linked via the 'regulator-name' property of
>>>> regulator nodes. However when regulators are shared we need to
>>>> declare the additional links in the pinctrl node.
>>>>
>>>> Signed-off-by: Harald Geyer <harald@ccbib.org>
>>>
>>> I'm curious if this solved an issue for you, or if this is just for 
>>> accuracy.
>>> Both of these regulators have the regulator-always-on property, so
>>> they should have been enabled already.
>>
>> You are right, there shouldn't be any change in functionality. It is 
>> mostly
>> for extra correctness. However the pincontrol driver started spewing 
>> lot's
>> of warnings about missing regulator nodes a few versions back. The 
>> visible
>> effect of this change is to silence those warnings. Also make the DTS 
>> more
>> future proof in case the driver is made even more picky in the future.
>>
>>> If it's the latter reason, why not add the other
>>> ports? Regardless:
>>
>> PD, PE and PL have dedicated regulators, that can be matched via the
>> 'regulator-name' property. I didn't want to specify the same 
>> information
>> in two places.
> 
> "regulator-name" is only a label, while phandle is actual regulator reference 
> that can be used by the driver. While DT files reside in Linux kernel source, 
> they are used by other OSes and bootloaders, so you can't really assume what 
> is good or not just by judging based on Linux behaviour. So please add PD and 
> PL regulators too.

Yes, agreed, except for VCC-PL, which (as the comments in several devicetrees
note) will cause a circular dependency when loading drivers.

>> For the PF supply, I couldn't find any connection information in the
>> board schematic. I could have added a dummy regulator. But since there 
>> is
>> only one warning about pf-supply during driver initialization and not 
>> the
>> dozens of warnings I see about PC and PG, I figured, I'd rather not add
>> information of dubious use or qualiy.
> 
> You mean PE right? There is no PF supply on A64. Anyway, if it's not on 
> schematic, it can be assumed unconnected and thus you shouldn't define that 
> property. Messages like "using dummy regulator" are fine in such cases .

All of the ports without a separate VCC-Px input are powered by VCC-IO, which in
this case is supplied from DCDC1.

Regards,
Samuel

> There is no issue of "dubious quality" if schematic is clear. Also don't worry 
> about usefulness. DT files are hardware description files. They should reflect 
> hardware configuration, no matter how useful information seems.
> 
> FYI, information in this case is useful to the driver. If you check sunxi 
> pinctrl driver, you can see that port bias is set according to regulator 
> voltage.
> 
> Best regards,
> Jernej
> 
>>
>> best regards,
>> Harald
>>
>>
>>> Reviewed-by: Samuel Holland <samuel@sholland.org>
>>>
>>>> ---
>>>>  arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts | 5 +++++
>>>>  1 file changed, 5 insertions(+)
>>>>
>>>> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts 
>>>> b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>>>> index aff0660b899c..cc316ef2e2d6 100644
>>>> --- a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>>>> +++ b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>>>> @@ -197,6 +197,11 @@ &ohci1 {
>>>>  	status = "okay";
>>>>  };
>>>>
>>>> +&pio {
>>>> +	vcc-pc-supply = <&reg_dcdc1>;
>>>> +	vcc-pg-supply = <&reg_aldo2>;
>>>> +};
>>>> +
>>>>  &pwm {
>>>>  	status = "okay";
>>>>  };
>>>>
>>
>>
> 
> 


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators
  2022-04-26  4:05       ` Samuel Holland
@ 2022-04-26 14:21         ` Harald Geyer
  2022-04-27 17:35           ` Samuel Holland
  0 siblings, 1 reply; 7+ messages in thread
From: Harald Geyer @ 2022-04-26 14:21 UTC (permalink / raw)
  To: Samuel Holland
  Cc: Jernej Škrabec, Chen-Yu Tsai, linux-sunxi, devicetree, Torsten Duwe

[-- Attachment #1: Type: text/plain, Size: 4704 bytes --]

[ @Jernej, sorry for the private reply earlier. I'll try to address
   everything here. ]

On 26.04.2022 05:05, Samuel Holland wrote:
> On 4/25/22 11:28 AM, Jernej Škrabec wrote:
>> Dne ponedeljek, 25. april 2022 ob 13:01:54 CEST je Harald Geyer 
>> napisal(a):
>>> On 24.04.2022 03:56, Samuel Holland wrote:
>>>> On 4/15/22 11:56 AM, Harald Geyer wrote:
>>>>> Allwinner A64 SoC has separate supplies for PC, PD, PE, PG and 
>>>>> PL.
>>>>>
>>>>> Usually supplies are linked via the 'regulator-name' property of
>>>>> regulator nodes. However when regulators are shared we need to
>>>>> declare the additional links in the pinctrl node.
>>>>>
>>>>> Signed-off-by: Harald Geyer <harald@ccbib.org>
>>>>
>>>> I'm curious if this solved an issue for you, or if this is just 
>>>> for
>>>> accuracy.
>>>> Both of these regulators have the regulator-always-on property, so
>>>> they should have been enabled already.
>>>
>>> You are right, there shouldn't be any change in functionality. It 
>>> is
>>> mostly
>>> for extra correctness. However the pincontrol driver started 
>>> spewing
>>> lot's
>>> of warnings about missing regulator nodes a few versions back. The
>>> visible
>>> effect of this change is to silence those warnings. Also make the 
>>> DTS
>>> more
>>> future proof in case the driver is made even more picky in the 
>>> future.
>>>
>>>> If it's the latter reason, why not add the other
>>>> ports? Regardless:
>>>
>>> PD, PE and PL have dedicated regulators, that can be matched via 
>>> the
>>> 'regulator-name' property. I didn't want to specify the same
>>> information
>>> in two places.
>>
>> "regulator-name" is only a label, while phandle is actual regulator 
>> reference
>> that can be used by the driver.

That is clearly not the whole story, as the driver find's the supply
for the PD bank just fine. And this even isn't an always-on regulator.

See the attached dmesg logs.

>> While DT files reside in Linux kernel source,
>> they are used by other OSes and bootloaders, so you can't really 
>> assume what
>> is good or not just by judging based on Linux behaviour. So please 
>> add PD and
>> PL regulators too.
>
> Yes, agreed, except for VCC-PL, which (as the comments in several 
> devicetrees
> note) will cause a circular dependency when loading drivers.

If this is consensus, then I'm happy to do it that way.

>>> For the PF supply, I couldn't find any connection information in 
>>> the
>>> board schematic. I could have added a dummy regulator. But since 
>>> there
>>> is
>>> only one warning about pf-supply during driver initialization and 
>>> not
>>> the
>>> dozens of warnings I see about PC and PG, I figured, I'd rather not 
>>> add
>>> information of dubious use or qualiy.
>>
>> You mean PE right? There is no PF supply on A64.

I meant PF, but you are right, that this doesn't have a supply on A64
at all. However the driver doesn't seem to know this: It emits a
warning about missing PF supply at startup.

>> Anyway, if it's not on
>> schematic, it can be assumed unconnected and thus you shouldn't 
>> define that
>> property. Messages like "using dummy regulator" are fine in such 
>> cases .
>
> All of the ports without a separate VCC-Px input are powered by
> VCC-IO, which in this case is supplied from DCDC1.

So should I add "vcc-pf-supply = <&reg_dcdc1>;" even though the chip
actually doesn't support a dedicated vcc-pf-supply or should I just
ignore this?

best regards,
Harald


> Regards,
> Samuel
>
>> There is no issue of "dubious quality" if schematic is clear. Also 
>> don't worry
>> about usefulness. DT files are hardware description files. They 
>> should reflect
>> hardware configuration, no matter how useful information seems.
>>
>> FYI, information in this case is useful to the driver. If you check 
>> sunxi
>> pinctrl driver, you can see that port bias is set according to 
>> regulator
>> voltage.
>>
>> Best regards,
>> Jernej
>>
>>>
>>> best regards,
>>> Harald
>>>
>>>
>>>> Reviewed-by: Samuel Holland <samuel@sholland.org>
>>>>
>>>>> ---
>>>>>  arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts | 5 +++++
>>>>>  1 file changed, 5 insertions(+)
>>>>>
>>>>> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>>>>> b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>>>>> index aff0660b899c..cc316ef2e2d6 100644
>>>>> --- a/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>>>>> +++ b/arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dts
>>>>> @@ -197,6 +197,11 @@ &ohci1 {
>>>>>  	status = "okay";
>>>>>  };
>>>>>
>>>>> +&pio {
>>>>> +	vcc-pc-supply = <&reg_dcdc1>;
>>>>> +	vcc-pg-supply = <&reg_aldo2>;
>>>>> +};
>>>>> +
>>>>>  &pwm {
>>>>>  	status = "okay";
>>>>>  };
>>>>>
>>>
>>>
>>
>>

[-- Attachment #2: with_patch.log --]
[-- Type: text/plain, Size: 45452 bytes --]

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.16.0-6-arm64 (debian-kernel@lists.debian.org) (gcc-11 (Debian 11.2.0-19) 11.2.0, GNU ld (GNU Binutils for Debian) 2.38) #1 SMP Debian 5.16.18-1 (2022-03-29)
[    0.000000] Machine model: Olimex A64 Teres-I
[    0.000000] efi: UEFI not found.
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x00000000bdffffff]
[    0.000000] NUMA: NODE_DATA [mem 0xbdbe1a40-0xbdbe3fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000040000000-0x00000000bdffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000040000000-0x00000000bdffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x00000000bdffffff]
[    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
[    0.000000] cma: Reserved 64 MiB at 0x00000000b7800000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv0.2 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] percpu: Embedded 30 pages/cpu s82264 r8192 d32424 u122880
[    0.000000] pcpu-alloc: s82264 r8192 d32424 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: ARM erratum 843419
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] Fallback order for Node 0: 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 508032
[    0.000000] Policy zone: DMA
[    0.000000] Kernel command line: rootwait root=UUID=2f4b7ce4-b9c5-4544-a938-9f189be41719 debug=on console=tty0 console=ttyS0,115200n8 no_console_suspend
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] Memory: 100852K/2064384K available (12416K kernel code, 2542K rwdata, 8552K rodata, 5632K init, 624K bss, 103672K reserved, 65536K cma-reserved)
[    0.000000] random: get_random_u64 called from __kmem_cache_create+0x34/0x5ac with crng_init=0
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] ftrace: allocating 40879 entries in 160 pages
[    0.000000] ftrace: allocated 160 pages with 2 groups
[    0.000000] trace event string verifier disabled
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] rcu: 	Offload RCU callbacks from CPUs: (none).
[    0.000000] arch_timer: Enabling global workaround for Allwinner erratum UNKNOWN1
[    0.000000] arch_timer: CPU0: Trapping CNTVCT access
[    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.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.000413] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
[    0.001041] Console: colour dummy device 80x25
[    0.001509] printk: console [tty0] enabled
[    0.001626] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[    0.001657] pid_max: default: 32768 minimum: 301
[    0.001809] LSM: Security Framework initializing
[    0.001854] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.002009] AppArmor: AppArmor initialized
[    0.002030] TOMOYO Linux initialized
[    0.002127] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.002168] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.004878] rcu: Hierarchical SRCU implementation.
[    0.007462] EFI services will not be available.
[    0.008156] smp: Bringing up secondary CPUs ...
[    0.009769] Detected VIPT I-cache on CPU1
[    0.009842] arch_timer: CPU1: Trapping CNTVCT access
[    0.009868] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.011220] Detected VIPT I-cache on CPU2
[    0.011263] arch_timer: CPU2: Trapping CNTVCT access
[    0.011282] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.012603] Detected VIPT I-cache on CPU3
[    0.012642] arch_timer: CPU3: Trapping CNTVCT access
[    0.012656] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.012765] smp: Brought up 1 node, 4 CPUs
[    0.012863] SMP: Total of 4 processors activated.
[    0.012878] CPU features: detected: 32-bit EL0 Support
[    0.012889] CPU features: detected: 32-bit EL1 Support
[    0.012905] CPU features: detected: CRC32 instructions
[    0.023868] CPU: All CPU(s) started at EL2
[    0.024029] alternatives: patching kernel code
[    0.107931] node 0 deferred pages initialised in 80ms
[    0.109556] devtmpfs: initialized
[    0.119678] Registered cp15_barrier emulation handler
[    0.119735] Registered setend emulation handler
[    0.119755] KASLR disabled due to lack of seed
[    0.120012] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.120082] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.123357] pinctrl core: initialized pinctrl subsystem
[    0.124455] DMI not present or invalid.
[    0.125167] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.129073] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    0.129423] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.129875] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.130017] audit: initializing netlink subsys (disabled)
[    0.130304] audit: type=2000 audit(0.128:1): state=initialized audit_enabled=0 res=1
[    0.131931] thermal_sys: Registered thermal governor 'fair_share'
[    0.131941] thermal_sys: Registered thermal governor 'bang_bang'
[    0.131958] thermal_sys: Registered thermal governor 'step_wise'
[    0.131972] thermal_sys: Registered thermal governor 'user_space'
[    0.131986] thermal_sys: Registered thermal governor 'power_allocator'
[    0.132509] cpuidle: using governor ladder
[    0.132558] cpuidle: using governor menu
[    0.132744] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.132904] ASID allocator initialised with 65536 entries
[    0.133413] Serial: AMBA PL011 UART driver
[    0.160789] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.160840] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.160857] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.160873] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.162881] ACPI: Interpreter disabled.
[    0.163379] iommu: Default domain type: Translated 
[    0.163398] iommu: DMA domain TLB invalidation policy: strict mode 
[    0.163753] vgaarb: loaded
[    0.164163] EDAC MC: Ver: 3.0.0
[    0.165982] NetLabel: Initializing
[    0.166006] NetLabel:  domain hash size = 128
[    0.166019] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.166131] NetLabel:  unlabeled traffic allowed by default
[    0.166678] clocksource: Switched to clocksource arch_sys_counter
[    0.220686] VFS: Disk quotas dquot_6.6.0
[    0.220819] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.221787] AppArmor: AppArmor Filesystem Enabled
[    0.222828] pnp: PnP ACPI: disabled
[    0.233065] NET: Registered PF_INET protocol family
[    0.233397] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.235043] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.235190] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.235551] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.235896] TCP: Hash tables configured (established 16384 bind 16384)
[    0.236247] MPTCP token hash table entries: 2048 (order: 3, 49152 bytes, linear)
[    0.236399] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.236489] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.236745] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.236788] NET: Registered PF_XDP protocol family
[    0.236812] PCI: CLS 0 bytes, default 64
[    0.237633] Trying to unpack rootfs image as initramfs...
[    0.252461] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[    0.253001] kvm [1]: IPA Size Limit: 40 bits
[    0.256071] kvm [1]: vgic interrupt IRQ9
[    0.257099] kvm [1]: Hyp mode initialized successfully
[    0.259477] Initialise system trusted keyrings
[    0.259575] Key type blacklist registered
[    0.259943] workingset: timestamp_bits=42 max_order=19 bucket_order=0
[    0.268277] zbud: loaded
[    0.269373] integrity: Platform Keyring initialized
[    0.269414] Key type asymmetric registered
[    0.269431] Asymmetric key parser 'x509' registered
[    0.269618] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    0.269999] io scheduler mq-deadline registered
[    0.278947] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver
[    0.280853] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.293144] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.295964] Serial: AMBA driver
[    0.296491] msm_serial: driver initialized
[    0.300855] mousedev: PS/2 mouse device common for all mice
[    0.302551] sun6i-rtc 1f00000.rtc: registered as rtc0
[    0.302622] sun6i-rtc 1f00000.rtc: setting system clock to 2022-04-26T12:58:28 UTC (1650977908)
[    0.302652] sun6i-rtc 1f00000.rtc: RTC enabled
[    0.304124] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator
[    0.305139] ledtrig-cpu: registered to indicate activity on CPUs
[    0.308855] NET: Registered PF_INET6 protocol family
[    2.488044] Freeing initrd memory: 33080K
[    2.536746] Segment Routing with IPv6
[    2.536869] In-situ OAM (IOAM) with IPv6
[    2.536979] mip6: Mobile IPv6
[    2.536997] NET: Registered PF_PACKET protocol family
[    2.537184] mpls_gso: MPLS GSO support
[    2.538223] registered taskstats version 1
[    2.538254] Loading compiled-in X.509 certificates
[    2.920413] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[    2.920533] Loaded X.509 cert 'Debian Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
[    2.922469] zswap: loaded using pool lzo/zbud
[    2.923395] Key type ._fscrypt registered
[    2.923421] Key type .fscrypt registered
[    2.923434] Key type fscrypt-provisioning registered
[    2.946160] Key type encrypted registered
[    2.946221] AppArmor: AppArmor sha1 policy hashing enabled
[    2.946291] ima: No TPM chip found, activating TPM-bypass!
[    2.946340] ima: Allocated hash algorithm: sha256
[    2.946411] ima: No architecture policies found
[    2.946480] evm: Initialising EVM extended attributes:
[    2.946494] evm: security.selinux
[    2.946506] evm: security.SMACK64 (disabled)
[    2.946518] evm: security.SMACK64EXEC (disabled)
[    2.946529] evm: security.SMACK64TRANSMUTE (disabled)
[    2.946541] evm: security.SMACK64MMAP (disabled)
[    2.946553] evm: security.apparmor
[    2.946564] evm: security.ima
[    2.946574] evm: security.capability
[    2.946585] evm: HMAC attrs: 0x1
[    3.603910] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller
[    3.604034] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller
[    3.604985] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller
[    3.605086] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller
[    3.606497] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz
[    3.611885] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver
[    3.612763] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator
[    3.613513] printk: console [ttyS0] disabled
[    3.633718] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 38, base_baud = 1500000) is a U6_16550A
[    4.779942] printk: console [ttyS0] enabled
[    4.801021] Freeing unused kernel memory: 5632K
[    4.855743] Checked W+X mappings: passed, no W+X pages found
[    4.861491] Run /init as init process
[    4.865181]   with arguments:
[    4.868162]     /init
[    4.870438]   with environment:
[    4.873589]     HOME=/
[    4.875959]     TERM=linux
[    5.566743] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    5.568987] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator
[    5.585209] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    5.585509] i2c 0-0038: Fixing up cyclic dependency with 1c0c000.lcd-controller
[    5.600723] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    5.607012] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    5.608076] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    5.614198] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator
[    5.615271] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    5.622340] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    5.630998] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    5.632942] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    5.637989] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    5.643260] usbcore: registered new interface driver usbfs
[    5.643328] usbcore: registered new interface driver hub
[    5.643409] usbcore: registered new device driver usb
[    5.645539] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    5.652938] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    5.661587] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    5.676797] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    5.677326] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    5.677336] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    5.677346] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    5.677356] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    5.677366] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    5.681859] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    5.682042] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    5.682052] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    5.682061] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    5.682070] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    5.682081] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    5.690617] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    5.691203] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    5.699491] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    5.699512] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    5.699524] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    5.699536] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    5.706776] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    5.717270] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    5.717473] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    5.717483] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    5.717492] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    5.717502] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    5.717512] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    5.722634] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    5.722646] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    5.722658] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    5.948996] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found
[    5.956468] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.967644] ehci-platform: EHCI generic platform driver
[    5.973647] ehci-platform 1c1b000.usb: EHCI Host Controller
[    5.979349] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 1
[    5.987362] ehci-platform 1c1b000.usb: irq 28, io mem 0x01c1b000
[    5.997722] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    5.998040] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    6.006755] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.013751] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    6.020957] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.027973] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    6.035032] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.042469] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    6.049969] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.060877] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    6.061028] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00
[    6.067899] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    6.071944] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.079578] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    6.087282] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded
[    6.091604] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.103775] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.107150] usb usb1: Product: EHCI Host Controller
[    6.108840] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.108863] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.108900] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.108911] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.108922] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.123948] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.128673] usb usb1: Manufacturer: Linux 5.16.0-6-arm64 ehci_hcd
[    6.129827] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    6.129841] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    6.129850] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    6.129860] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    6.129871] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    6.141735] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    6.143807] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.143829] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.143838] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.143848] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.143858] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.147948] usb usb1: SerialNumber: 1c1b000.usb
[    6.152964] hub 1-0:1.0: USB hub found
[    6.155556] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    6.161213] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.161235] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.161245] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.161254] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.161265] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.162345] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.171731] hub 1-0:1.0: 1 port detected
[    6.173803] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    6.190966] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.195876] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    6.202876] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.203767] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.210304] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    6.221187] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.232772] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.233065] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    6.233075] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    6.233085] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    6.233094] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    6.233104] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    6.235665] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.235681] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.450690] usb 1-1: new high-speed USB device number 2 using ehci-platform
[    6.466330] ohci-platform: OHCI generic platform driver
[    6.478830] ohci-platform 1c1b400.usb: Generic Platform OHCI controller
[    6.484995] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PC regulator
[    6.485826] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 2
[    6.492845] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 69
[    6.496792] axp20x-gpio axp20x-gpio: DMA mask not set
[    6.499646] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.500822] ohci-platform 1c1b400.usb: irq 29, io mem 0x01c1b400
[    6.501339] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.501352] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.501361] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.501371] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.501381] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.507669] sun50i-a64-pinctrl 1c20800.pinctrl: pin-69 (1c11000.mmc) status -517
[    6.521788] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded
[    6.527381] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 69 (PC5) from group PC5  on device 1c20800.pinctrl
[    6.539699] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.540091] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.540101] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.540110] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.540120] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.540130] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.541701] sunxi-mmc 1c11000.mmc: Error applying setting, reverse things back
[    6.578937] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    6.584437] vcc-ddr3: Bringing 1360000uV into 1500000-1500000uV
[    6.589219] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[    6.589298] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.589308] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.589318] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.589328] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.589338] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.592669] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.595312] sunxi-mmc 1c0f000.mmc: Got CD GPIO
[    6.603325] vcc-pe: Bringing 3300000uV into 2800000-2800000uV
[    6.608567] usb usb2: Product: Generic Platform OHCI controller
[    6.616406] vcc-pl: Bringing 1800000uV into 3300000-3300000uV
[    6.618734] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode
[    6.621341] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.621364] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.621374] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.621384] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.621394] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.622993] sunxi-mmc 1c11000.mmc: initialized, max. request size: 2048 KB, uses new timings mode
[    6.623125] usb usb2: Manufacturer: Linux 5.16.0-6-arm64 ohci_hcd
[    6.623134] usb usb2: SerialNumber: 1c1b400.usb
[    6.624528] hub 2-0:1.0: USB hub found
[    6.628194] sun50i-a64-pinctrl 1c20800.pinctrl: Couldn't get bank PG regulator
[    6.628216] sun50i-a64-pinctrl 1c20800.pinctrl: request() failed for pin 192
[    6.628227] sun50i-a64-pinctrl 1c20800.pinctrl: pin-192 (1c10000.mmc) status -517
[    6.628237] sun50i-a64-pinctrl 1c20800.pinctrl: could not request pin 192 (PG0) from group PG0  on device 1c20800.pinctrl
[    6.628247] sunxi-mmc 1c10000.mmc: Error applying setting, reverse things back
[    6.638252] vcc-dvdd-csi: Bringing 700000uV into 1800000-1800000uV
[    6.641498] hub 2-0:1.0: 1 port detected
[    6.662207] mmc0: new high speed SDHC card at address 59b4
[    6.665732] random: fast init done
[    6.673964] mmcblk0: mmc0:59b4 USD   14.9 GiB 
[    6.680317] [drm] Found ANX6345 (ver. 170) eDP Transmitter
[    6.680512] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.36
[    6.680529] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    6.680538] usb 1-1: Product: USB2.0 Hub
[    6.681632] hub 1-1:1.0: USB hub found
[    6.682014] hub 1-1:1.0: 4 ports detected
[    6.694571]  mmcblk0: p1
[    6.706175] simple-framebuffer be000000.framebuffer: framebuffer at 0xbe000000, 0x400800 bytes
[    6.730713] mmc1: new DDR MMC card at address 0001
[    6.735740] simple-framebuffer be000000.framebuffer: format=x8r8g8b8, mode=1366x768x32, linelength=5464
[    6.961883] mmcblk1: mmc1:0001 R1J56L 13.8 GiB 
[    6.967414]  mmcblk1: p1 p2
[    6.971014] mmcblk1boot0: mmc1:0001 R1J56L 16.0 MiB 
[    6.977358] mmcblk1boot1: mmc1:0001 R1J56L 16.0 MiB 
[    6.978547] Console: switching to colour frame buffer device 170x48
[    7.024761] simple-framebuffer be000000.framebuffer: fb0: simplefb registered!
[    7.068892] usb 1-1.3: new high-speed USB device number 3 using ehci-platform
[    7.071973] sun4i-drm display-engine: bound 1100000.mixer (ops sun8i_mixer_platform_driver_exit [sun8i_mixer])
[    7.095158] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq
[    7.097207] sun4i-drm display-engine: bound 1200000.mixer (ops sun8i_mixer_platform_driver_exit [sun8i_mixer])
[    7.122990] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops sun4i_tcon_platform_driver_exit [sun4i_tcon])
[    7.133853] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode
[    7.138179] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops sun4i_tcon_platform_driver_exit [sun4i_tcon])
[    7.169392] checking generic (be000000 400800) vs hw (0 ffffffffffffffff)
[    7.170650] mmc2: new high speed SDIO card at address 0001
[    7.181139] fb0: switching to sun4i-drm from simple
[    7.203061] Console: switching to colour dummy device 80x25
[    7.215666] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0
[    7.236154] usb 1-1.3: New USB device found, idVendor=1908, idProduct=2311, bcdDevice= 1.00
[    7.246984] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.259650] usb 1-1.3: Product: USB2.0 PC CAMERA
[    7.269784] usb 1-1.3: Manufacturer: Generic
[    7.362789] usb 1-1.4: new full-speed USB device number 4 using ehci-platform
[    7.452541] Console: switching to colour frame buffer device 170x48
[    7.492523] usb 1-1.4: New USB device found, idVendor=15ba, idProduct=003b, bcdDevice= 0.01
[    7.498396] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device
[    7.512369] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.563746] hid: raw HID events driver (C) Jiri Kosina
[    7.584535] usbcore: registered new interface driver usbhid
[    7.593431] usbhid: USB HID core driver
[    7.593580] EXT4-fs (mmcblk0p1): mounting ext2 file system using the ext4 subsystem
[    7.617502] hid-generic 0003:15BA:003B.0001: hiddev0,hidraw0: USB HID v1.11 Device [HID 15ba:003b] on usb-1c1b000.usb-1.4/input0
[    7.626266] EXT4-fs (mmcblk0p1): mounted filesystem without journal. Opts: (null). Quota mode: none.
[    7.974515] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[    8.759303] systemd[1]: Inserted module 'autofs4'
[    8.811641] usb 1-1.4: USB disconnect, device number 4
[    8.905225] systemd[1]: systemd 250.3-2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS -OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    8.938363] systemd[1]: Detected architecture arm64.
[    8.963860] systemd[1]: Hostname set to <teres>.
[    9.116628] systemd-fstab-generator[205]: Checking was requested for "tmpfs", but it is not a device.
[    9.554718] usb 1-1.4: new full-speed USB device number 5 using ehci-platform
[    9.681148] usb 1-1.4: New USB device found, idVendor=15ba, idProduct=003c, bcdDevice= 0.01
[    9.689844] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=220
[    9.697544] usb 1-1.4: Product: TERES Keyboard+Touchpad
[    9.702927] usb 1-1.4: Manufacturer: Olimex Ltd.
[    9.714292] usb 1-1.4: SerialNumber: A4138353330351E07180
[    9.737971] input: Olimex Ltd. TERES Keyboard+Touchpad as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.4/1-1.4:1.0/0003:15BA:003C.0002/input/input1
[    9.819561] hid-generic 0003:15BA:003C.0002: input,hidraw0: USB HID v1.11 Keyboard [Olimex Ltd. TERES Keyboard+Touchpad] on usb-1c1b000.usb-1.4/input0
[    9.843970] input: Olimex Ltd. TERES Keyboard+Touchpad as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.4/1-1.4:1.1/0003:15BA:003C.0003/input/input2
[    9.865420] hid-generic 0003:15BA:003C.0003: input,hidraw1: USB HID v1.11 Mouse [Olimex Ltd. TERES Keyboard+Touchpad] on usb-1c1b000.usb-1.4/input1
[    9.986803] systemd[1]: Queued start job for default target Graphical Interface.
[   10.003849] random: systemd: uninitialized urandom read (16 bytes read)
[   10.022890] systemd[1]: Created slice Slice /system/getty.
[   10.050946] random: systemd: uninitialized urandom read (16 bytes read)
[   10.068199] systemd[1]: Created slice Slice /system/modprobe.
[   10.098940] random: systemd: uninitialized urandom read (16 bytes read)
[   10.116616] systemd[1]: Created slice Slice /system/serial-getty.
[   10.148747] systemd[1]: Created slice User and Session Slice.
[   10.179450] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   10.211339] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   10.244145] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   10.279151] systemd[1]: Reached target Local Encrypted Volumes.
[   10.311027] systemd[1]: Reached target Local Integrity Protected Volumes.
[   10.343069] systemd[1]: Reached target Path Units.
[   10.366968] systemd[1]: Reached target Remote File Systems.
[   10.394921] systemd[1]: Reached target Slice Units.
[   10.418999] systemd[1]: Reached target Swaps.
[   10.443029] systemd[1]: Reached target Local Verity Protected Volumes.
[   10.477094] systemd[1]: Listening on Syslog Socket.
[   10.499823] systemd[1]: Listening on fsck to fsckd communication Socket.
[   10.531396] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   10.564200] systemd[1]: Listening on Journal Audit Socket.
[   10.595753] systemd[1]: Listening on Journal Socket (/dev/log).
[   10.627876] systemd[1]: Listening on Journal Socket.
[   10.652138] systemd[1]: Listening on udev Control Socket.
[   10.683656] systemd[1]: Listening on udev Kernel Socket.
[   10.716679] systemd[1]: Mounting Huge Pages File System...
[   10.744650] systemd[1]: Mounting POSIX Message Queue File System...
[   10.780967] systemd[1]: Mounting Kernel Debug File System...
[   10.808535] systemd[1]: Mounting Kernel Trace File System...
[   10.838273] systemd[1]: Starting Wait for network to be configured by ifupdown...
[   10.877507] systemd[1]: Starting Set the console keyboard layout...
[   10.914103] systemd[1]: Starting Create List of Static Device Nodes...
[   10.953674] systemd[1]: Starting Load Kernel Module configfs...
[   10.985670] systemd[1]: Starting Load Kernel Module drm...
[   11.017825] systemd[1]: Starting Load Kernel Module fuse...
[   11.043678] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[   11.074163] systemd[1]: Starting Journal Service...
[   11.089859] fuse: init (API version 7.35)
[   11.109429] systemd[1]: Starting Load Kernel Modules...
[   11.138578] systemd[1]: Starting Remount Root and Kernel File Systems...
[   11.171504] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
[   11.195042] systemd[1]: Starting Coldplug All udev Devices...
[   11.241955] systemd[1]: Mounted Huge Pages File System.
[   11.271920] systemd[1]: Mounted POSIX Message Queue File System.
[   11.279669] EXT4-fs (mmcblk0p1): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[   11.324117] systemd[1]: Mounted Kernel Debug File System.
[   11.352004] systemd[1]: Mounted Kernel Trace File System.
[   11.381213] systemd[1]: Finished Wait for network to be configured by ifupdown.
[   11.414003] systemd[1]: Finished Set the console keyboard layout.
[   11.445898] systemd[1]: Finished Create List of Static Device Nodes.
[   11.481368] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   11.496401] systemd[1]: Finished Load Kernel Module configfs.
[   11.529767] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   11.543704] systemd[1]: Finished Load Kernel Module drm.
[   11.566533] usbcore: registered new interface driver asix
[   11.577539] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   11.591668] systemd[1]: Finished Load Kernel Module fuse.
[   11.624307] systemd[1]: Started Journal Service.
[   11.783989] systemd-journald[238]: Received client request to flush runtime journal.
[   13.870725] random: crng init done
[   13.879265] random: 7 urandom warning(s) missed due to ratelimiting
[   26.349994] audit: type=1400 audit(1650977934.544:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=268 comm="apparmor_parser"
[   26.371157] audit: type=1400 audit(1650977934.548:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=269 comm="apparmor_parser"
[   26.398301] audit: type=1400 audit(1650977934.548:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=269 comm="apparmor_parser"
[   26.427912] audit: type=1400 audit(1650977934.612:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=271 comm="apparmor_parser"
[   26.456970] audit: type=1400 audit(1650977934.616:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=271 comm="apparmor_parser"
[   26.479978] audit: type=1400 audit(1650977934.616:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=271 comm="apparmor_parser"
[   26.740563] audit: type=1400 audit(1650977934.936:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/surf" pid=287 comm="apparmor_parser"
[   26.771532] audit: type=1400 audit(1650977934.936:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=289 comm="apparmor_parser"
[   26.804681] audit: type=1400 audit(1650977934.936:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=289 comm="apparmor_parser"
[   26.837539] audit: type=1400 audit(1650977934.936:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=289 comm="apparmor_parser"
[   27.382828] mc: Linux media interface: v0.10
[   27.464397] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz)
[   27.490937] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[   27.505613] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[   27.520524] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[   27.535364] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[   27.554185] sun8i-ce 1c15000.crypto: Register cbc(aes)
[   27.566032] sun8i-ce 1c15000.crypto: Fallback for cbc-aes-sun8i-ce is cbc(aes-generic)
[   27.583851] sun8i-ce 1c15000.crypto: Register ecb(aes)
[   27.606904] videodev: Linux video capture interface: v2.00
[   27.629399] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0)
[   27.833915] sun8i-ce 1c15000.crypto: Fallback for ecb-aes-sun8i-ce is ecb-aes-ce
[   27.854630] sun8i-ce 1c15000.crypto: Register cbc(des3_ede)
[   27.973657] simple-amplifier audio-amplifier: supply VCC not found, using dummy regulator
[   28.001032] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input3
[   28.032375] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   28.057557] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[   28.075612] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[   28.096893] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   28.116943] lima 1c40000.gpu: gp - mali400 version major 1 minor 1
[   28.122953] sun8i-ce 1c15000.crypto: Fallback for cbc-des3-sun8i-ce is cbc(des3_ede-generic)
[   28.130039] lima 1c40000.gpu: pp0 - mali400 version major 1 minor 1
[   28.158354] lima 1c40000.gpu: pp1 - mali400 version major 1 minor 1
[   28.171892] lima 1c40000.gpu: l2 cache 64K, 4-way, 64byte cache line, 64bit external bus
[   28.196668] axp20x-adc axp813-adc: DMA mask not set
[   28.196904] sun8i-ce 1c15000.crypto: Register ecb(des3_ede)
[   28.207433] lima 1c40000.gpu: bus rate = 200000000
[   28.207458] lima 1c40000.gpu: mod rate = 297000000
[   28.207593] lima 1c40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19
[   28.213314] axp20x-ac-power-supply axp20x-ac-power-supply: DMA mask not set
[   28.223577] platform regulatory.0: firmware: direct-loading firmware regulatory.db
[   28.231488] axp20x-battery-power-supply axp20x-battery-power-supply: DMA mask not set
[   28.255579] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned.
[   28.331266] cedrus 1c0e000.video-codec: Device registered as /dev/video0
[   28.345430] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
[   28.380415] sun8i-ce 1c15000.crypto: Fallback for ecb-des3-sun8i-ce is ecb(des3_ede-generic)
[   28.386068] r8723bs: module is from the staging directory, the quality is unknown, you have been warned.
[   28.412109] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0
[   28.438645] [drm] Initialized lima 1.1.0 20191231 for 1c40000.gpu on minor 1
[   28.451248] pnetdev = 000000002a3266ca
[   28.510569] usb 1-1.3: Found UVC 1.00 device USB2.0 PC CAMERA (1908:2311)
[   28.573345] input: USB2.0 PC CAMERA: USB2.0 PC CAM as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.3/1-1.3:1.0/input/input4
[   28.646619] usbcore: registered new interface driver uvcvideo
[   28.663444] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:5
[   35.806870] dc1sw: disabling
[   35.821710] vcc-hdmi: disabling
[   35.829978] cpvdd: disabling
[   37.465066] usb 1-1.1: new high-speed USB device number 6 using ehci-platform
[   37.618820] usb 1-1.1: New USB device found, idVendor=0b95, idProduct=772b, bcdDevice= 0.01
[   37.632299] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   37.644600] usb 1-1.1: Product: AX88772B
[   37.653614] usb 1-1.1: Manufacturer: ASIX Elec. Corp.
[   37.669089] usb 1-1.1: SerialNumber: 000001
[   37.731492] NET: Registered PF_APPLETALK protocol family
[   37.926258] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:14
[   37.941800] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
[   37.958112] rtl8723bs mmc2:0001:1: firmware: direct-loading firmware rtlwifi/rtl8723bs_nic.bin
[   38.324147] Asix Electronics AX88772C usb-001:006:10: attached PHY driver (mii_bus:phy_addr=usb-001:006:10, irq=POLL)
[   39.311281] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:1
[   39.323473] asix 1-1.1:1.0 eth0: register 'asix' at usb-1c1b000.usb-1.1, ASIX AX88772B USB 2.0 Ethernet, 00:80:8a:8e:30:51
[   39.478493] asix 1-1.1:1.0 enx00808a8e3051: renamed from eth0
[   43.167268] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[   45.226822] asix 1-1.1:1.0 enx00808a8e3051: Link is Up - 100Mbps/Full - flow control off
[   45.629090] IPv6: ADDRCONF(NETDEV_CHANGE): enx00808a8e3051: link becomes ready
[   48.610590] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:10
[   48.623093] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:2
[   48.658540] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:14
[   48.666285] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:1
[   49.152649] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[   49.229274] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[   49.743391] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[   51.780127] IPv6: ADDRCONF(NETDEV_CHANGE): enx00808a8e3051: link becomes ready
[   51.788138] asix 1-1.1:1.0 enx00808a8e3051: Link is Up - 100Mbps/Full - flow control off
[   56.650711] usb 1-1.2: new low-speed USB device number 7 using ehci-platform
[   56.771154] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[   56.779860] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   56.787446] usb 1-1.2: Product: USB Optical Mouse
[   56.792435] usb 1-1.2: Manufacturer: Logitech
[   56.807202] input: Logitech USB Optical Mouse as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.2/1-1.2:1.0/0003:046D:C077.0004/input/input5
[   56.829783] hid-generic 0003:046D:C077.0004: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-1c1b000.usb-1.2/input0
[   59.161526] systemd-journald[238]: Time jumped backwards, rotating.

[-- Attachment #3: no_patch.log --]
[-- Type: text/plain, Size: 133894 bytes --]

[  119.906207] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  119.917467] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  119.917793] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  119.928995] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  119.929289] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  119.940505] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  119.940847] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  119.952375] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  119.952710] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  119.963832] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  119.964136] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  119.975285] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  119.975726] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  119.986661] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  119.986996] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  119.998271] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  119.998565] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.009865] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.010196] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.021518] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.021860] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.032931] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.033241] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.044588] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.044930] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.056020] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.056352] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.067566] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.067895] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.078976] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.079344] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.090648] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.090983] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.102289] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.102580] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.113802] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.114138] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.125514] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.125838] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.136958] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.137257] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.148484] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.148824] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.159978] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.160301] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.171771] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.171990] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.183335] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.183665] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.194689] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.195032] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.206586] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.206887] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.217879] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.218198] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.229542] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.229879] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.241464] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.241760] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.252508] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.252851] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.263970] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.264297] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.275583] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.275914] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.287209] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.287575] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.298746] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.299040] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.310318] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.310610] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.321883] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.322197] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.333415] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.333724] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.344946] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.345245] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.356784] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.357096] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.367993] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.368286] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.379514] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.379831] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.391199] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.391498] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.402486] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.402821] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.414264] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.414570] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.425748] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.426115] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.437347] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.437694] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.448989] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.449294] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.460357] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.460684] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.471939] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.472271] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.484108] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.484394] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.495023] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.495381] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.506612] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.506933] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.518544] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.518846] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.529803] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.530147] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.541364] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.541682] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.552805] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.553097] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.564336] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.564681] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.576010] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.576338] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.587455] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.587766] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.599187] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.599615] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.610604] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.610894] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.622163] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.622461] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.633825] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.634168] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.645452] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.645772] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.657034] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.657342] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.668499] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.668846] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.680047] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.680384] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.691899] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.692209] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.703176] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.703499] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.714529] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.714859] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.726124] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.726411] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.737690] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.737991] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.749356] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.749681] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.760765] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.761073] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.772298] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.772644] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.784040] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.784277] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.795594] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.795925] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.806961] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.807325] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.818490] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.818821] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.830155] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.830458] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.842086] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.842432] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.853432] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.853757] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.864856] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.865158] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.876302] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.876614] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.887987] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.888268] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.899648] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.899929] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.910901] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.911287] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.922483] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.922833] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.934202] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.934454] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.945797] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.946136] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.957207] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.957533] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.968753] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  120.969041] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.980323] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  120.980648] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.991881] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  120.992246] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.003428] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.003645] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.014839] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.015169] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.026400] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.026722] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.038213] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.038502] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.049578] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.049925] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.061260] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.061607] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.072838] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.073114] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.084641] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.084985] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.095920] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.096083] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.107469] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.107744] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.118947] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.119296] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.130498] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.130834] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.142029] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.142323] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.153756] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.154091] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.165179] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.165510] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.176851] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.177151] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.188013] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.188334] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.199697] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.200011] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.211387] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.211593] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.222813] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.223170] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.234334] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.234623] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.245974] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.246261] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.257563] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.257906] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.269205] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.269525] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.280628] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.280929] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.292115] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.292454] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.303626] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.303971] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.315181] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.315485] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.326605] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.326935] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.338167] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.338509] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.349989] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.350280] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.361416] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.361753] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.372902] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.373247] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.384746] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.385047] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.396171] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.396513] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.407977] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.408311] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.419315] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.419631] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.430679] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.431019] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.442232] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.442551] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.453969] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.454265] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.465526] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.465870] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.477020] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.477357] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.488638] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.488934] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.499949] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.500268] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.511600] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.511944] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.523166] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.523512] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.534684] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.535014] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.546278] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.546602] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.557889] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.558184] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.569604] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.569924] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.580889] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.581224] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.592576] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.592882] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.604105] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.604445] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.615703] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.615998] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.627351] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.627677] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.638722] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.639016] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.650304] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.650640] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.661895] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.662200] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.673553] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.673900] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.684967] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.685289] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.696597] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.696892] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.708100] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.708445] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.719659] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.719957] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.731320] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.731624] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.742707] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.743047] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.754291] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.754613] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.765903] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.766191] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.777465] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.777797] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.789045] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.789363] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.800574] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.800868] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.812195] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.812536] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.823764] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.823994] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.835233] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.835541] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.846722] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.847100] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.858254] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.858572] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.869888] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.870180] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.881456] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.881792] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.892976] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.893307] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.904817] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.905106] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.916050] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.916386] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.927635] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.927933] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.939180] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.939482] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.950535] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.950880] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.962217] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.962550] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.974018] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  121.974317] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.985586] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  121.985924] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.997106] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  121.997430] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.008637] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.008926] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.020541] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.020864] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.031628] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.031986] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.043339] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.043639] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.055230] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.055584] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.066436] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.066723] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.078054] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.078359] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.089711] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.090058] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.101315] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.101634] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.112729] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.112989] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.124090] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.124409] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.136182] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.136524] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.147401] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.147735] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.158784] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.159160] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.170475] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.170807] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.182215] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.182513] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.193683] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.194044] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.205144] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.205474] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.216727] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.216984] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.228324] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.228641] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.239800] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.240092] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.251435] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.251768] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.262856] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.263207] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.274377] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.274703] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.286276] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.286570] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.297627] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.297924] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.308991] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.309326] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.320851] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.321151] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.332253] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.332555] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.343841] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.344169] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.355350] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.355651] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.366892] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.367269] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.378484] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.378812] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.390232] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.390532] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.401673] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.402019] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.413369] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.413699] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.424864] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.425157] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.436473] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.436823] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.447990] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.448254] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.459583] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.459916] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.471198] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.471529] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.482524] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.482814] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.494202] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.494514] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.505791] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.506132] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.517376] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.517705] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.528984] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.529292] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.540491] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.540828] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.551975] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.552309] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.563634] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.563986] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.574954] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.575377] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.586566] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.586893] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.598209] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.598506] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.609846] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.610188] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.621709] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.622045] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.632956] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.633248] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.644822] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.645175] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.655914] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.656249] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.667525] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.667857] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.679156] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.679503] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.690602] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.690879] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.702118] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.702416] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.713720] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.714067] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.725440] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.725770] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.736986] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.737275] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.748410] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.748748] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.759884] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.760219] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.771524] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.771841] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.782956] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.783443] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.794617] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.794934] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.806173] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.806447] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.817791] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.818131] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.829415] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.829742] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.840907] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.841191] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.852416] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.852761] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.864045] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.864365] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.875503] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.875847] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.886899] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.887348] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.898522] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.898845] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.910160] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.910451] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.921821] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.922157] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.933389] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.933716] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.944873] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.945171] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.956386] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.956734] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.967915] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  122.968261] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.979530] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  122.979841] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.990934] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  122.991320] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.002519] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.002843] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.014202] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.014494] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.025673] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.026008] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.037265] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.037583] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.048933] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.049233] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.060447] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.060790] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.071917] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.072246] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.083598] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.083876] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.095291] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.095587] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.106612] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.106940] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.118252] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.118559] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.129739] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.130086] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.141484] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.141822] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.152905] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.153204] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.164474] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.164818] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.176321] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.176650] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.187546] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.187827] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.198982] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.199384] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.210513] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.210838] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.222284] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.222573] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.233878] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.234223] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.245380] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.245705] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.256967] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.257265] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.268464] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.268799] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.279993] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.280316] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.291728] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.291953] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.303220] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.303546] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.314613] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.314937] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.326632] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.326875] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.337820] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.338122] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.349504] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.349839] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.361186] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.361477] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.372685] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.373015] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.384021] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.384358] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.395779] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.396033] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.407201] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.407616] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.418701] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.419030] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.430247] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.430538] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.441840] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.442180] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.453517] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.453858] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.465023] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.465279] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.476557] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.476895] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.488582] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.488915] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.499543] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.499816] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.511211] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.511604] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.522632] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.522963] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.534274] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.534579] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.545888] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.546235] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.557482] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.557820] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.569165] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.569472] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.580444] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.580790] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.592043] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.592328] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.604084] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.604360] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.614964] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.615349] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.626638] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.626956] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.638274] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.638564] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.649884] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.650233] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.661365] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.661718] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.673053] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.673370] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.684616] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.684964] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.696156] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.696446] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.707698] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.708027] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.719008] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.719447] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.730608] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.730929] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.742198] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.742504] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.753817] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.754156] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.765696] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.766025] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.776897] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.777199] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.788468] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.788808] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.800317] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.800645] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.811617] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.811881] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.823171] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.823508] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.834621] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.834962] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.846326] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.846626] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.857871] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.858217] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.869454] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.869804] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.881113] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.881400] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.892478] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.892828] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.903925] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.904255] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.915720] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.916017] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.927027] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.927374] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.938624] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.938906] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.950270] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.950552] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.961847] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.962187] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.973481] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  123.973807] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.984981] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  123.985288] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.996416] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  123.996764] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.008048] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.008332] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.019636] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.019950] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.031485] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.031852] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.042527] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.042860] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.054220] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.054508] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.065683] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.066022] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.077276] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.077622] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.088952] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.089243] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.100404] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.100742] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.112113] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.112444] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.123816] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.124002] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.135235] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.135584] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.146690] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.147019] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.158213] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.158512] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.169794] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.170135] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.181369] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.181697] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.192878] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.193172] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.204803] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.205074] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.216136] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.216464] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.227598] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.227857] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.239016] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.239441] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.250450] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.250770] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.262149] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.262454] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.273757] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.274090] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.285426] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.285750] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.296852] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.297152] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.308357] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.308699] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.320260] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.320591] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.331516] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.331863] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.342924] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.343401] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.354527] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.354852] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.366150] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.366440] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.377617] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.377949] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.389274] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.389599] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.400931] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.401231] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.412335] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.412685] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.423987] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.424320] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.435637] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.435982] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.446962] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.447301] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.458521] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.458844] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.470250] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.470550] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.481828] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.482164] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.493415] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.493728] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.504894] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.505135] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.516304] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.516635] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.527868] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.528190] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.539523] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.539788] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.551141] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.551550] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.562614] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.562952] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.574222] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.574521] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.585679] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.586015] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.597388] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.597718] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.609098] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.609406] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.620421] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.620769] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.632036] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.632364] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.644100] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.644293] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.655209] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.655530] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.666683] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.667008] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.678325] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.678616] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.689864] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.690202] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.701511] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.701828] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.712971] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.713279] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.724575] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.724917] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.736057] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.736377] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.747812] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.748078] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.759454] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.759816] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.770681] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.771004] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.782323] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.782619] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.793822] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.794163] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.805480] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.805818] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.816909] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.817205] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.828606] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.828948] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.839932] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.840255] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.851722] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.851993] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.863310] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.863731] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.874864] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.875258] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.886342] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.886635] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.897923] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.898260] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.909467] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.909831] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.921030] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.921347] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.932752] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.933100] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.944486] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.944824] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.955793] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.956070] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.967047] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  124.967425] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.978563] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  124.978885] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.990137] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  124.990423] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.001749] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.002067] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.013361] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.013681] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.024875] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.025160] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.036299] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.036634] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.047975] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.048309] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.059697] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.060036] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.070984] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.071367] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.082634] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.082965] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.094323] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.094626] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.105826] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.106168] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.117639] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.117970] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.128959] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.129199] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.140481] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.140821] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.151966] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.152266] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.163667] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.164003] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.174981] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.175366] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.186568] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.186901] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.198441] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.198696] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.209784] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.210078] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.221350] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.221700] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.233058] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.233312] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.244452] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.244797] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.255920] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.256252] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.267768] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.267986] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.279173] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.279493] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.290651] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.291002] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.302382] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.302678] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.313874] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.314215] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.325348] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.325664] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.336808] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.337105] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.348307] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.348641] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.359866] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.360191] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.371519] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.371872] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.383133] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.383425] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.394447] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.394756] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.406116] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.406392] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.418400] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.418740] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.429436] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.429783] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.440962] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.441241] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.452712] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.453049] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.465871] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.466193] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.477974] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.478253] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.490379] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.490674] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.502576] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.502868] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.514487] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.514741] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.526310] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.526650] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.538437] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.538733] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.549377] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.549678] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.563498] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.563844] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.574192] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.574543] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.590785] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.591120] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.600255] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.600586] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.613671] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.614010] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.625721] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.626008] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.639493] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.639798] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.650796] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.651215] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.665511] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.665806] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.675742] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.675957] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.686840] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.687187] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.699027] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.699754] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.710812] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.711175] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.722666] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.722948] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.735938] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.736245] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.749423] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.749752] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.764791] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.765115] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.776059] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.776339] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.787445] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.787847] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.799724] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.800027] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.812078] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.812382] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.823641] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.823858] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.834975] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.835800] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.846525] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.846818] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.860510] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.860851] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.870080] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.870388] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.882618] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.882876] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.894885] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.895295] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.907305] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.907629] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.919375] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.919554] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.932091] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.932398] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.942599] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.942921] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.954275] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.954592] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.968488] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  125.968830] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.978155] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  125.978447] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.989880] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  125.990178] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.001579] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.001916] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.013881] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.014180] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.026211] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.026490] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.037668] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.038007] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.051357] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.051667] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.061027] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.061285] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.073099] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.073435] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.085020] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.085340] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.099626] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.099890] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.109192] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.109540] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.120878] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.121191] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.132562] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.132857] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.143877] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.144169] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.158871] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.159283] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.168521] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.168829] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.182327] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.182733] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.193220] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.193551] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.204599] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.204910] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.215994] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.216340] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.229087] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.229427] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.239856] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.240143] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.251820] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.252104] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.263470] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.263736] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.274717] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.275011] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.286915] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.287349] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.300128] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.300521] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.311058] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.311376] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.322679] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.322970] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.334857] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.335208] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.347035] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.347693] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.359423] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.359795] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.371673] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.371972] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.382549] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.382810] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.396593] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.396930] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.406427] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.406756] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.420677] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.420973] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.431151] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.431499] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.442098] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.442444] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.456422] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.456726] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.468667] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.469053] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.479162] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.479448] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.485964] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found
[  126.490826] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.492745] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.521131] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[  126.522865] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.524459] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.525710] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.642996] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded
[  126.655823] ehci-platform: EHCI generic platform driver
[  126.664851] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[  126.672330] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.673194] ehci-platform 1c1b000.usb: EHCI Host Controller
[  126.674472] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.676089] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.698070] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.707298] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 1
[  126.709995] axp20x-gpio axp20x-gpio: DMA mask not set
[  126.713274] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.716891] ehci-platform 1c1b000.usb: irq 28, io mem 0x01c1b000
[  126.722429] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  126.727941] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator
[  126.728315] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  126.734740] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded
[  126.738060] vcc-ddr3: Bringing 1360000uV into 1500000-1500000uV
[  126.740623] vcc-pe: Bringing 3300000uV into 2800000-2800000uV
[  126.741716] vcc-pl: Bringing 1800000uV into 3300000-3300000uV
[  126.747172] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00
[  126.747684] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq
[  126.796755] vcc-dvdd-csi: Bringing 700000uV into 1800000-1800000uV
[  126.805554] simple-framebuffer be000000.framebuffer: framebuffer at 0xbe000000, 0x400800 bytes
[  126.806070] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[  126.806085] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[  126.806095] usb usb1: Product: EHCI Host Controller
[  126.806103] usb usb1: Manufacturer: Linux 5.16.0-6-arm64 ehci_hcd
[  126.806110] usb usb1: SerialNumber: 1c1b000.usb
[  126.815672] hub 1-0:1.0: USB hub found
[  126.823324] simple-framebuffer be000000.framebuffer: format=x8r8g8b8, mode=1366x768x32, linelength=5464
[  126.842128] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode
[  126.851092] hub 1-0:1.0: 1 port detected
[  126.860308] random: fast init done
[  126.870483] ohci-platform: OHCI generic platform driver
[  127.131098] usb 1-1: new high-speed USB device number 2 using ehci-platform
[  127.136269] ohci-platform 1c1b400.usb: Generic Platform OHCI controller
[  127.381500] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.36
[  127.386628] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 2
[  127.394985] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[  127.404069] ohci-platform 1c1b400.usb: irq 29, io mem 0x01c1b400
[  127.414279] usb 1-1: Product: USB2.0 Hub
[  127.495371] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[  127.497026] hub 1-1:1.0: USB hub found
[  127.504506] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[  127.504522] usb usb2: Product: Generic Platform OHCI controller
[  127.504531] usb usb2: Manufacturer: Linux 5.16.0-6-arm64 ohci_hcd
[  127.523594] hub 1-1:1.0: 4 ports detected
[  127.531816] usb usb2: SerialNumber: 1c1b400.usb
[  127.532673] hub 2-0:1.0: USB hub found
[  127.831099] usb 1-1.1: new high-speed USB device number 3 using ehci-platform
[  127.833807] hub 2-0:1.0: 1 port detected
[  127.963955] usb 1-1.1: New USB device found, idVendor=0b95, idProduct=772b, bcdDevice= 0.01
[  128.623343] mmc0: new high speed SDIO card at address 0001
[  128.632013] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  139.243484] usb 1-1.1: Product: AX88772B
[  139.243512] usb 1-1.1: Manufacturer: ASIX Elec. Corp.
[  139.243521] usb 1-1.1: SerialNumber: 000001
[  139.262320] Console: switching to colour frame buffer device 170x48
[  139.319213] simple-framebuffer be000000.framebuffer: fb0: simplefb registered!
[  139.332189] usb 1-1.2: new low-speed USB device number 4 using ehci-platform
[  139.338801] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator
[  139.350400] [drm] Found ANX6345 (ver. 170) eDP Transmitter
[  139.361562] sunxi-mmc 1c0f000.mmc: Got CD GPIO
[  139.374629] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator
[  139.407713] sun4i-drm display-engine: bound 1100000.mixer (ops sun8i_mixer_platform_driver_exit [sun8i_mixer])
[  139.418471] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode
[  139.420180] sun4i-drm display-engine: bound 1200000.mixer (ops sun8i_mixer_platform_driver_exit [sun8i_mixer])
[  139.431150] sunxi-mmc 1c11000.mmc: initialized, max. request size: 2048 KB, uses new timings mode
[  139.439212] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops sun4i_tcon_platform_driver_exit [sun4i_tcon])
[  139.455702] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[  139.458519] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops sun4i_tcon_platform_driver_exit [sun4i_tcon])
[  139.466649] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  139.477903] checking generic (be000000 400800) vs hw (0 ffffffffffffffff)
[  139.485084] usb 1-1.2: Product: USB Optical Mouse
[  139.491992] fb0: switching to sun4i-drm from simple
[  139.501950] usb 1-1.2: Manufacturer: Logitech
[  139.502065] Console: switching to colour dummy device 80x25
[  139.507478] mmc1: new high speed SDHC card at address 59b4
[  139.518722] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0
[  139.519947] mmcblk1: mmc1:59b4 USD   14.9 GiB 
[  139.533442] hid: raw HID events driver (C) Jiri Kosina
[  139.538927]  mmcblk1: p1
[  139.553634] usbcore: registered new interface driver usbhid
[  139.559330] usbhid: USB HID core driver
[  139.574168] input: Logitech USB Optical Mouse as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.2/1-1.2:1.0/0003:046D:C077.0001/input/input1
[  139.583156] usb 1-1.3: new high-speed USB device number 5 using ehci-platform
[  139.587466] hid-generic 0003:046D:C077.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-1c1b000.usb-1.2/input0
[  139.627140] mmc2: new DDR MMC card at address 0001
[  139.633960] mmcblk2: mmc2:0001 R1J56L 13.8 GiB 
[  139.642394]  mmcblk2: p1 p2
[  139.647243] mmcblk2boot0: mmc2:0001 R1J56L 16.0 MiB 
[  139.657634] mmcblk2boot1: mmc2:0001 R1J56L 16.0 MiB 
[  139.704633] usb 1-1.3: New USB device found, idVendor=1908, idProduct=2311, bcdDevice= 1.00
[  139.704668] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  139.704678] usb 1-1.3: Product: USB2.0 PC CAMERA
[  139.704686] usb 1-1.3: Manufacturer: Generic
[  139.750499] Console: switching to colour frame buffer device 170x48
[  139.816383] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device
[  139.939100] usb 1-1.4: new full-speed USB device number 6 using ehci-platform
[  140.057451] usb 1-1.4: New USB device found, idVendor=15ba, idProduct=003c, bcdDevice= 0.01
[  140.066036] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=220
[  140.073728] usb 1-1.4: Product: TERES Keyboard+Touchpad
[  140.079101] usb 1-1.4: Manufacturer: Olimex Ltd.
[  140.083858] usb 1-1.4: SerialNumber: A4138353330351E07180
[  140.100216] input: Olimex Ltd. TERES Keyboard+Touchpad as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.4/1-1.4:1.0/0003:15BA:003C.0002/input/input2
[  140.172048] hid-generic 0003:15BA:003C.0002: input,hidraw1: USB HID v1.11 Keyboard [Olimex Ltd. TERES Keyboard+Touchpad] on usb-1c1b000.usb-1.4/input0
[  140.189328] input: Olimex Ltd. TERES Keyboard+Touchpad as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.4/1-1.4:1.1/0003:15BA:003C.0003/input/input3
[  140.203679] hid-generic 0003:15BA:003C.0003: input,hidraw2: USB HID v1.11 Mouse [Olimex Ltd. TERES Keyboard+Touchpad] on usb-1c1b000.usb-1.4/input1
[  140.612950] EXT4-fs (mmcblk1p1): mounting ext2 file system using the ext4 subsystem
[  140.630524] EXT4-fs (mmcblk1p1): mounted filesystem without journal. Opts: (null). Quota mode: none.
[  140.962048] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[  141.736667] systemd[1]: Inserted module 'autofs4'
[  141.880624] systemd[1]: systemd 250.3-2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS -OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  141.913815] systemd[1]: Detected architecture arm64.
[  141.948231] systemd[1]: Hostname set to <teres>.
[  142.212315] systemd-fstab-generator[242]: Checking was requested for "tmpfs", but it is not a device.
[  142.791292] systemd[1]: Queued start job for default target Graphical Interface.
[  142.808513] random: systemd: uninitialized urandom read (16 bytes read)
[  142.827757] systemd[1]: Created slice Slice /system/getty.
[  142.859349] random: systemd: uninitialized urandom read (16 bytes read)
[  142.876357] systemd[1]: Created slice Slice /system/modprobe.
[  142.907359] random: systemd: uninitialized urandom read (16 bytes read)
[  142.924653] systemd[1]: Created slice Slice /system/serial-getty.
[  142.957098] systemd[1]: Created slice User and Session Slice.
[  142.987866] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  143.019700] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  143.052489] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[  143.087546] systemd[1]: Reached target Local Encrypted Volumes.
[  143.119407] systemd[1]: Reached target Local Integrity Protected Volumes.
[  143.151452] systemd[1]: Reached target Path Units.
[  143.175364] systemd[1]: Reached target Remote File Systems.
[  143.203311] systemd[1]: Reached target Slice Units.
[  143.227408] systemd[1]: Reached target Swaps.
[  143.251367] systemd[1]: Reached target Local Verity Protected Volumes.
[  143.281501] systemd[1]: Listening on Syslog Socket.
[  143.304227] systemd[1]: Listening on fsck to fsckd communication Socket.
[  143.335799] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  143.368604] systemd[1]: Listening on Journal Audit Socket.
[  143.400138] systemd[1]: Listening on Journal Socket (/dev/log).
[  143.432260] systemd[1]: Listening on Journal Socket.
[  143.456509] systemd[1]: Listening on udev Control Socket.
[  143.484047] systemd[1]: Listening on udev Kernel Socket.
[  143.517027] systemd[1]: Mounting Huge Pages File System...
[  143.545040] systemd[1]: Mounting POSIX Message Queue File System...
[  143.581379] systemd[1]: Mounting Kernel Debug File System...
[  143.608850] systemd[1]: Mounting Kernel Trace File System...
[  143.638388] systemd[1]: Starting Wait for network to be configured by ifupdown...
[  143.673536] systemd[1]: Starting Set the console keyboard layout...
[  143.710525] systemd[1]: Starting Create List of Static Device Nodes...
[  143.750005] systemd[1]: Starting Load Kernel Module configfs...
[  143.782034] systemd[1]: Starting Load Kernel Module drm...
[  143.810330] systemd[1]: Starting Load Kernel Module fuse...
[  143.831894] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[  143.862949] systemd[1]: Starting Journal Service...
[  143.883411] fuse: init (API version 7.35)
[  143.893852] systemd[1]: Starting Load Kernel Modules...
[  143.922828] systemd[1]: Starting Remount Root and Kernel File Systems...
[  143.951993] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
[  143.974931] systemd[1]: Starting Coldplug All udev Devices...
[  144.013532] systemd[1]: Mounted Huge Pages File System.
[  144.044428] systemd[1]: Mounted POSIX Message Queue File System.
[  144.076346] systemd[1]: Mounted Kernel Debug File System.
[  144.088795] EXT4-fs (mmcblk1p1): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[  144.117108] systemd[1]: Mounted Kernel Trace File System.
[  144.145337] systemd[1]: Finished Wait for network to be configured by ifupdown.
[  144.178522] systemd[1]: Finished Create List of Static Device Nodes.
[  144.210544] systemd[1]: Finished Set the console keyboard layout.
[  144.242274] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[  144.257259] systemd[1]: Finished Load Kernel Module configfs.
[  144.285962] systemd[1]: modprobe@drm.service: Deactivated successfully.
[  144.300450] systemd[1]: Finished Load Kernel Module drm.
[  144.330227] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[  144.344637] systemd[1]: Finished Load Kernel Module fuse.
[  144.373949] systemd[1]: Finished Remount Root and Kernel File Systems.
[  144.417028] systemd[1]: Mounting FUSE Control File System...
[  144.449682] systemd[1]: Mounting Kernel Configuration File System...
[  144.479821] systemd[1]: Platform Persistent Storage Archival was skipped because of a failed condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[  144.506491] systemd[1]: Starting Load/Save Random Seed...
[  144.542722] systemd[1]: Starting Create System Users...
[  144.578085] systemd[1]: Mounted FUSE Control File System.
[  144.608580] systemd[1]: Mounted Kernel Configuration File System.
[  144.686370] systemd[1]: Finished Create System Users.
[  144.718718] systemd[1]: Starting Create Static Device Nodes in /dev...
[  144.749986] systemd[1]: Finished Coldplug All udev Devices.
[  144.786596] systemd[1]: Starting Helper to synchronize boot up for ifupdown...
[  144.818455] systemd[1]: Finished Helper to synchronize boot up for ifupdown.
[  144.855349] systemd[1]: Finished Create Static Device Nodes in /dev.
[  144.884295] systemd[1]: Reached target Preparation for Local File Systems.
[  144.921904] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
[  144.942143] systemd[1]: Mounting /tmp...
[  144.972880] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[  144.980717] Asix Electronics AX88772C usb-001:003:10: attached PHY driver (mii_bus:phy_addr=usb-001:003:10, irq=POLL)
[  145.004572] asix 1-1.1:1.0 eth0: register 'asix' at usb-1c1b000.usb-1.1, ASIX AX88772B USB 2.0 Ethernet, 00:80:8a:8e:30:51
[  145.027280] usbcore: registered new interface driver asix
[  145.040667] systemd[1]: Mounted /tmp.
[  145.070174] systemd[1]: Finished Load Kernel Modules.
[  145.097030] systemd[1]: Reached target Local File Systems.
[  145.130947] systemd[1]: Starting Load AppArmor profiles...
[  145.163055] systemd[1]: Starting Set console font and keymap...
[  145.191538] systemd[1]: Set Up Additional Binary Formats was skipped because all trigger condition checks failed.
[  145.218745] systemd[1]: Starting Apply Kernel Variables...
[  145.246883] systemd[1]: Finished Set console font and keymap.
[  145.347000] systemd[1]: Finished Apply Kernel Variables.
[  145.714359] audit: type=1400 audit(1650979616.908:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=302 comm="apparmor_parser"
[  145.744182] audit: type=1400 audit(1650979616.908:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=303 comm="apparmor_parser"
[  145.750638] systemd[1]: Started Journal Service.
[  145.772636] audit: type=1400 audit(1650979616.908:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=303 comm="apparmor_parser"
[  145.814214] audit: type=1400 audit(1650979616.948:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=305 comm="apparmor_parser"
[  145.814262] audit: type=1400 audit(1650979616.948:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=305 comm="apparmor_parser"
[  145.814281] audit: type=1400 audit(1650979616.948:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=305 comm="apparmor_parser"
[  145.934841] audit: type=1400 audit(1650979617.128:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/surf" pid=306 comm="apparmor_parser"
[  146.021114] audit: type=1400 audit(1650979617.216:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=308 comm="apparmor_parser"
[  146.060846] audit: type=1400 audit(1650979617.216:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=308 comm="apparmor_parser"
[  146.120230] audit: type=1400 audit(1650979617.216:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=308 comm="apparmor_parser"
[  146.338431] systemd-journald[274]: Received client request to flush runtime journal.
[  146.791621] random: crng init done
[  146.801758] random: 7 urandom warning(s) missed due to ratelimiting
[  147.039044] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0)
[  147.228450] mc: Linux media interface: v0.10
[  147.262179] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz)
[  147.280169] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[  147.294921] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[  147.313272] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[  147.332451] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority
[  147.346843] sun8i-ce 1c15000.crypto: Register cbc(aes)
[  147.359168] sun8i-ce 1c15000.crypto: Fallback for cbc-aes-sun8i-ce is cbc(aes-generic)
[  147.376508] sun8i-ce 1c15000.crypto: Register ecb(aes)
[  147.524739] videodev: Linux video capture interface: v2.00
[  147.585548] axp20x-ac-power-supply axp20x-ac-power-supply: DMA mask not set
[  147.649363] lima 1c40000.gpu: gp - mali400 version major 1 minor 1
[  147.665260] lima 1c40000.gpu: pp0 - mali400 version major 1 minor 1
[  147.681149] lima 1c40000.gpu: pp1 - mali400 version major 1 minor 1
[  147.696837] lima 1c40000.gpu: l2 cache 64K, 4-way, 64byte cache line, 64bit external bus
[  147.721837] lima 1c40000.gpu: bus rate = 200000000
[  147.733248] lima 1c40000.gpu: mod rate = 297000000
[  147.745256] lima 1c40000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19
[  147.787021] sun8i-ce 1c15000.crypto: Fallback for ecb-aes-sun8i-ce is ecb-aes-ce
[  147.806086] sun8i-ce 1c15000.crypto: Register cbc(des3_ede)
[  147.903881] [drm] Initialized lima 1.1.0 20191231 for 1c40000.gpu on minor 1
[  148.042319] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[  148.058459] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[  148.076286] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[  148.094477] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[  148.095385] axp20x-battery-power-supply axp20x-battery-power-supply: DMA mask not set
[  148.159952] simple-amplifier audio-amplifier: supply VCC not found, using dummy regulator
[  148.165210] axp20x-adc axp813-adc: DMA mask not set
[  148.193389] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input4
[  148.219798] sun8i-ce 1c15000.crypto: Fallback for cbc-des3-sun8i-ce is cbc(des3_ede-generic)
[  148.224260] platform regulatory.0: firmware: direct-loading firmware regulatory.db
[  148.250773] sun8i-ce 1c15000.crypto: Register ecb(des3_ede)
[  149.299736] sun8i-ce 1c15000.crypto: Fallback for ecb-des3-sun8i-ce is ecb(des3_ede-generic)
[  149.317695] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
[  149.343140] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0
[  158.797082] asix 1-1.1:1.0 enx00808a8e3051: renamed from eth0
[  158.916010] r8723bs: module is from the staging directory, the quality is unknown, you have been warned.
[  158.954041] pnetdev = 00000000df48c129
[  158.992303] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned.
[  159.021597] cedrus 1c0e000.video-codec: Device registered as /dev/video0
[  159.040054] rtl8723bs mmc0:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:5
[  159.142451] usb 1-1.3: Found UVC 1.00 device USB2.0 PC CAMERA (1908:2311)
[  159.167282] input: USB2.0 PC CAMERA: USB2.0 PC CAM as /devices/platform/soc/1c1b000.usb/usb1/1-1/1-1.3/1-1.3:1.0/input/input5
[  159.170090] usbcore: registered new interface driver uvcvideo
[  165.975641] NET: Registered PF_APPLETALK protocol family
[  166.190275] rtl8723bs mmc0:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:14
[  166.200810] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
[  166.213367] rtl8723bs mmc0:0001:1: firmware: direct-loading firmware rtlwifi/rtl8723bs_nic.bin
[  167.525654] rtl8723bs mmc0:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:1
[  172.163341] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[  174.216578] asix 1-1.1:1.0 enx00808a8e3051: Link is Up - 100Mbps/Full - flow control off
[  174.633138] IPv6: ADDRCONF(NETDEV_CHANGE): enx00808a8e3051: link becomes ready
[  177.674726] rtl8723bs mmc0:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:10
[  177.682875] rtl8723bs mmc0:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:2
[  177.713861] rtl8723bs mmc0:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:14
[  177.723694] rtl8723bs mmc0:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:1
[  178.276362] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[  178.348968] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[  178.881723] asix 1-1.1:1.0 enx00808a8e3051: Link is Down
[  180.932414] IPv6: ADDRCONF(NETDEV_CHANGE): enx00808a8e3051: link becomes ready
[  180.940366] asix 1-1.1:1.0 enx00808a8e3051: Link is Up - 100Mbps/Full - flow control off

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators
  2022-04-26 14:21         ` Harald Geyer
@ 2022-04-27 17:35           ` Samuel Holland
  0 siblings, 0 replies; 7+ messages in thread
From: Samuel Holland @ 2022-04-27 17:35 UTC (permalink / raw)
  To: Harald Geyer
  Cc: Jernej Škrabec, Chen-Yu Tsai, linux-sunxi, devicetree, Torsten Duwe

On 4/26/22 9:21 AM, Harald Geyer wrote:
>>>> PD, PE and PL have dedicated regulators, that can be matched via the 
>>>> 'regulator-name' property. I didn't want to specify the same 
>>>> information in two places.
>>>
>>> "regulator-name" is only a label, while phandle is actual regulator reference
>>> that can be used by the driver.
> 
> That is clearly not the whole story, as the driver find's the supply
> for the PD bank just fine. And this even isn't an always-on regulator.
> 
> See the attached dmesg logs.

You are right, the Linux function regulator_dev_lookup() falls back to matching
by regulator name if no property exists in the devicetree. But again this is a
Linux-ism that we would rather not rely on.

>>>> For the PF supply, I couldn't find any connection information in the 
>>>> board schematic. I could have added a dummy regulator. But since there 
>>>> is only one warning about pf-supply during driver initialization and
>>>> not the dozens of warnings I see about PC and PG, I figured, I'd rather
>>>> not add information of dubious use or qualiy.
>>>
>>> You mean PE right? There is no PF supply on A64.
> 
> I meant PF, but you are right, that this doesn't have a supply on A64
> at all. However the driver doesn't seem to know this: It emits a
> warning about missing PF supply at startup.
> 
>>> Anyway, if it's not on schematic, it can be assumed unconnected and thus
>>> you shouldn't define that property. Messages like "using dummy regulator"
>>> are fine in such cases .
>>
>> All of the ports without a separate VCC-Px input are powered by
>> VCC-IO, which in this case is supplied from DCDC1.
> 
> So should I add "vcc-pf-supply = <&reg_dcdc1>;" even though the chip
> actually doesn't support a dedicated vcc-pf-supply or should I just
> ignore this?

Yes, you should add this property. The supplies are a bit more abstract than you
are expecting. Each of these pin banks (unless it is totally unused) has to get
power from _somewhere_, and that "somewhere" is the supply that should be
referenced.

There is no need for the supply to be a dedicated pin, or for the supply name to
match any pin or regulator name. For example, the LRADC needs a reference
voltage for its comparator, so it has a "vref-supply" property. But there is no
"VREF" pin. The LRADC's reference voltage is one of several things internally
connected to the SoC's "AVCC" pin.

So here, vcc-pf-supply just means abstractly "the voltage supply for Port F".

The fact that sometimes there also happens to be a pin named VCC-Px is the
result of not coming up with a second name for something that has a perfectly
good name already.

Regards,
Samuel

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-04-27 17:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-15 16:56 [PATCH] arm64: dts: allwinner: teres-i: Add GPIO port regulators Harald Geyer
2022-04-24  2:56 ` Samuel Holland
2022-04-25 11:01   ` Harald Geyer
2022-04-25 16:28     ` Jernej Škrabec
2022-04-26  4:05       ` Samuel Holland
2022-04-26 14:21         ` Harald Geyer
2022-04-27 17:35           ` Samuel Holland

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.