* [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw
@ 2024-07-30 5:52 WHR
2024-07-31 21:58 ` Rob Herring
0 siblings, 1 reply; 7+ messages in thread
From: WHR @ 2024-07-30 5:52 UTC (permalink / raw)
To: Rob Herring, Saravana Kannan; +Cc: devicetree, linux-kernel
Commit 935df1bd40d43c4ee91838c42a20e9af751885cc has removed an
assignment statement for 'out_irq->np' right after label 'skiplevel',
causing the new parent acquired from function of_irq_find_parent didn't
being stored to 'out_irq->np' as it supposed to. Under some conditions
this can resuit in multiple corruptions and leakages to device nodes.
Update 'out_irq->np' before jumping to label 'skiplevel'.
Fixes: 935df1bd40d4 ("of/irq: Factor out parsing of interrupt-map parent
phandle+args from of_irq_parse_raw()")
Signed-off-by: WHR <whr@rivoreo.one>
---
v2:
Add 'Fixes:' line, and update subject.
drivers/of/irq.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/of/irq.c b/drivers/of/irq.c
index c94203ce65bb..580b33ce60d2 100644
--- a/drivers/of/irq.c
+++ b/drivers/of/irq.c
@@ -263,6 +263,7 @@ int of_irq_parse_raw(const __be32 *addr, struct
of_phandle_args *out_irq)
if (imap == NULL) {
pr_debug(" -> no map, getting parent\n");
newpar = of_irq_find_parent(ipar);
+ out_irq->np = newpar;
goto skiplevel;
}
imaplen /= sizeof(u32);
--
2.30.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw
2024-07-30 5:52 [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw WHR
@ 2024-07-31 21:58 ` Rob Herring
2024-08-01 4:14 ` WHR
2024-08-01 4:20 ` WHR
0 siblings, 2 replies; 7+ messages in thread
From: Rob Herring @ 2024-07-31 21:58 UTC (permalink / raw)
To: WHR; +Cc: Saravana Kannan, devicetree, linux-kernel
On Mon, Jul 29, 2024 at 11:54 PM WHR <whr@rivoreo.one> wrote:
>
> Commit 935df1bd40d43c4ee91838c42a20e9af751885cc has removed an
> assignment statement for 'out_irq->np' right after label 'skiplevel',
> causing the new parent acquired from function of_irq_find_parent didn't
> being stored to 'out_irq->np' as it supposed to. Under some conditions
> this can resuit in multiple corruptions and leakages to device nodes.
Under what conditions? Please provide a specific platform and DT.
>
> Update 'out_irq->np' before jumping to label 'skiplevel'.
>
> Fixes: 935df1bd40d4 ("of/irq: Factor out parsing of interrupt-map parent
> phandle+args from of_irq_parse_raw()")
> Signed-off-by: WHR <whr@rivoreo.one>
Need a name here.
> ---
> v2:
> Add 'Fixes:' line, and update subject.
>
> drivers/of/irq.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> index c94203ce65bb..580b33ce60d2 100644
> --- a/drivers/of/irq.c
> +++ b/drivers/of/irq.c
> @@ -263,6 +263,7 @@ int of_irq_parse_raw(const __be32 *addr, struct
> of_phandle_args *out_irq)
> if (imap == NULL) {
> pr_debug(" -> no map, getting parent\n");
> newpar = of_irq_find_parent(ipar);
> + out_irq->np = newpar;
Honestly, I think the DT is wrong if you get to this point. We'd have
to have the initial interrupt parent with #interrupt-cells, but not an
interrupt-controller nor interrupt-map property to get here. Maybe
that happens in some ancient platform, but if so, I want to know which
one and what exactly we need to handle.
Rob
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw
2024-07-31 21:58 ` Rob Herring
@ 2024-08-01 4:14 ` WHR
2024-08-01 4:20 ` WHR
1 sibling, 0 replies; 7+ messages in thread
From: WHR @ 2024-08-01 4:14 UTC (permalink / raw)
To: Rob Herring; +Cc: Saravana Kannan, devicetree, linux-kernel
> On Mon, Jul 29, 2024 at 11:54 PM WHR <whr@rivoreo.one> wrote:
>>
>> Commit 935df1bd40d43c4ee91838c42a20e9af751885cc has removed an
>> assignment statement for 'out_irq->np' right after label 'skiplevel',
>> causing the new parent acquired from function of_irq_find_parent didn't
>> being stored to 'out_irq->np' as it supposed to. Under some conditions
>> this can resuit in multiple corruptions and leakages to device nodes.
>
> Under what conditions? Please provide a specific platform and DT.
I have a previous email sent to you before I came up with the fix. The kernel
log for debugging and the device tree blob are attached again.
> Honestly, I think the DT is wrong if you get to this point. We'd have
> to have the initial interrupt parent with #interrupt-cells, but not an
> interrupt-controller nor interrupt-map property to get here. Maybe
> that happens in some ancient platform, but if so, I want to know which
> one and what exactly we need to handle.
So you suggest the #interrupt-cells is erroneous in that node, and should be
removed?
This is a device vendor-provided DT, so any issue in it will have to be fixed
locally.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw
2024-07-31 21:58 ` Rob Herring
2024-08-01 4:14 ` WHR
@ 2024-08-01 4:20 ` WHR
2024-08-01 14:49 ` Rob Herring
1 sibling, 1 reply; 7+ messages in thread
From: WHR @ 2024-08-01 4:20 UTC (permalink / raw)
To: Rob Herring; +Cc: Saravana Kannan, devicetree, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1193 bytes --]
> On Mon, Jul 29, 2024 at 11:54 PM WHR <whr@rivoreo.one> wrote:
>>
>> Commit 935df1bd40d43c4ee91838c42a20e9af751885cc has removed an
>> assignment statement for 'out_irq->np' right after label 'skiplevel',
>> causing the new parent acquired from function of_irq_find_parent didn't
>> being stored to 'out_irq->np' as it supposed to. Under some conditions
>> this can resuit in multiple corruptions and leakages to device nodes.
>
> Under what conditions? Please provide a specific platform and DT.
I have a previous email sent to you before I came up with the fix. The kernel
log for debugging and the device tree blob are attached again.
> Honestly, I think the DT is wrong if you get to this point. We'd have
> to have the initial interrupt parent with #interrupt-cells, but not an
> interrupt-controller nor interrupt-map property to get here. Maybe
> that happens in some ancient platform, but if so, I want to know which
> one and what exactly we need to handle.
So you suggest the #interrupt-cells is erroneous in that node, and should be
removed?
This is a device vendor-provided DT, so any issue in it will have to be fixed
locally.
I forgot to attach the files in last email.
[-- Attachment #2: kmsg --]
[-- Type: text/plain, Size: 34697 bytes --]
[ 2.235812] OF: next: usbdrd, reference count 4
[ 2.240791] function: fw_devlink_parse_fwtree(ffffffd9ffdc5fa0)
[ 2.247292] ffffffd9ffdc5f88 usbdrd, reference count 4
[ 2.252937] parent ffffffd9ffdbddc8 soc, reference count 79
[ 2.259069] usbdrd Linked as a fwnode consumer to clock-controller
[ 2.265904] usbdrd Linked as a fwnode consumer to reset-controller
[ 2.272744] ffffffd9ffdc5f88 usbdrd, reference count 4
[ 2.278388] parent ffffffd9ffdbddc8 soc, reference count 79
[ 2.284511] OF: ffffffd9ffdc5f88 usbdrd, reference count 4
[ 2.290537] OF: of_get_next_available_child: "usbdrd", "usbdrd"
[ 2.297038] OF: parent: usbdrd, reference count 4
[ 2.302208] OF: parent: usbdrd, reference count 4
[ 2.307368] OF: next: usb@10100000, reference count 3
[ 2.312918] function: fw_devlink_parse_fwtree(ffffffd9ffdc6700)
[ 2.319420] ffffffd9ffdc66e8 usb, reference count 3
[ 2.324778] parent ffffffd9ffdc5f88 usbdrd, reference count 4
[ 2.331118] usb@10100000 Linked as a fwnode consumer to usbdrd
[ 2.337572] ffffffd9ffdc66e8 usb, reference count 3
[ 2.342931] parent ffffffd9ffdc5f88 usbdrd, reference count 1
[ 2.349244] OF: ffffffd9ffdc66e8 usb, reference count 3
[ 2.354984] OF: of_get_next_available_child: "usb", "usb@10100000"
[ 2.361772] OF: parentparent: usbdrd, reference count 1
[ 2.367513] OF: parent: usb@10100000, reference count 3
[ 2.373254] OF: parentparent: usbdrd, reference count 1
[ 2.378985] OF: parent: usb@10100000, reference count 3
[ 2.384726] OF: ffffffd9ffdc5f88 usbdrd, reference count 1
[ 2.390752] OF: of_get_next_available_child: "usbdrd", "usbdrd"
[ 2.397253] OF: parent: usbdrd, reference count 1
[ 2.402422] OF: parent: usbdrd, reference count 1
[ 2.407581] OF: prev: usb@10100000, reference count 3
[ 2.413131] OF: of_get_next_available_child: "soc", "soc"
[ 2.419061] OF: parent: soc, reference count 79
[ 2.424041] OF: parent: soc, reference count 79
[ 2.429010] OF: prev: usbdrd, reference count 1
[ 2.433977] OF: next: multi-phyctrl@10210000, reference count 3
[ 2.440527] OF: of_node_release: usbdrd
[ 2.444731] OF: ERROR: Bad of_node_put() on usbdrd
[ 2.449986] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 6.1.101-rivoreo-starfive #14
[ 2.458294] Hardware name: StarFive VisionFive V2 (DT)
[ 2.463928] Call Trace:
[ 2.466606] [<ffffffff80003db2>] dump_backtrace+0x1c/0x24
[ 2.472539] [<ffffffff804c94ee>] show_stack+0x2e/0x38
[ 2.478086] [<ffffffff804d3dd8>] dump_stack_lvl+0x3c/0x54
[ 2.484013] [<ffffffff804d3e04>] dump_stack+0x14/0x1c
[ 2.489557] [<ffffffff804d2610>] of_node_release+0x40/0xf2
[ 2.495578] [<ffffffff804b6090>] kobject_put+0x76/0xac
[ 2.501220] [<ffffffff803763ae>] of_node_put+0x16/0x20
[ 2.506860] [<ffffffff803725fe>] of_get_next_available_child+0x12a/0x152
[ 2.514218] [<ffffffff80375430>] of_fwnode_get_next_child_node+0x86/0x9a
[ 2.521577] [<ffffffff802c7b0a>] fwnode_get_next_child_node+0x28/0x36
[ 2.528652] [<ffffffff802c7c64>] fwnode_get_next_available_child_node+0x1e/0x3a
[ 2.536677] [<ffffffff802bebf0>] fw_devlink_parse_fwtree+0x10c/0x130
[ 2.543653] [<ffffffff802bf936>] device_add+0x42e/0x562
[ 2.549388] [<ffffffff80373b44>] of_device_add+0x22/0x2a
[ 2.555219] [<ffffffff80374090>] of_platform_device_create_pdata+0x76/0x9a
[ 2.562766] [<ffffffff8037445e>] of_platform_bus_create+0x218/0x288
[ 2.569646] [<ffffffff803745c4>] of_platform_populate+0x58/0x90
[ 2.576145] [<ffffffff80374614>] of_platform_default_populate+0x18/0x20
[ 2.583407] [<ffffffff806246fe>] of_platform_default_populate_init+0xac/0xda
[ 2.591149] [<ffffffff80001112>] do_one_initcall+0x5c/0x154
[ 2.597264] [<ffffffff806010ca>] kernel_init_freeable+0x21e/0x222
[ 2.603953] [<ffffffff804d4358>] kernel_init+0x1e/0x10a
[ 2.609689] [<ffffffff800022b8>] ret_from_exception+0x0/0x16
[ 2.615915] function: fw_devlink_parse_fwtree(ffffffd9ffdc6b90)
[ 2.622429] OF: of_get_next_available_child: "multi-phyctrl", "multi-phyctrl@10210000"
[ 2.631125] OF: parent: multi-phyctrl@10210000, reference count 3
[ 2.637819] OF: parent: multi-phyctrl@10210000, reference count 3
[ 2.644514] OF: of_get_next_available_child: "soc", "soc"
[ 2.650444] OF: parent: soc, reference count 78
[ 2.655423] OF: parent: soc, reference count 78
[ 2.660392] OF: prev: multi-phyctrl@10210000, reference count 3
[ 2.666885] OF: next: pcie1-phyctrl@10220000, reference count 3
[ 2.673416] clock-controller Linked as a fwnode consumer to osc
[ 2.679925] clock-controller Linked as a fwnode consumer to gmac1_rmii_refin
[ 2.687674] clock-controller Linked as a fwnode consumer to gmac1_rgmii_rxin
[ 2.695423] clock-controller Linked as a fwnode consumer to i2stx_bclk_ext
[ 2.702983] clock-controller Linked as a fwnode consumer to i2stx_lrck_ext
[ 2.710544] clock-controller Linked as a fwnode consumer to i2srx_bclk_ext
[ 2.718105] clock-controller Linked as a fwnode consumer to i2srx_lrck_ext
[ 2.725667] clock-controller Linked as a fwnode consumer to tdm_ext
[ 2.732562] clock-controller Linked as a fwnode consumer to mclk_ext
[ 2.739553] clock-controller Linked as a fwnode consumer to jtag_tck_inner
[ 2.747124] clock-controller Linked as a fwnode consumer to bist_apb
[ 2.754118] clock-controller Linked as a fwnode consumer to clk_rtc
[ 2.761016] clock-controller Linked as a fwnode consumer to gmac0_rmii_refin
[ 2.768773] clock-controller Linked as a fwnode consumer to gmac0_rgmii_rxin
[ 2.776579] xrp Linked as a fwnode consumer to clock-controller
[ 2.783094] xrp Linked as a fwnode consumer to reset-controller
[ 2.789666] i2c@12050000 Linked as a fwnode consumer to clock-controller
[ 2.797044] i2c@12050000 Linked as a fwnode consumer to reset-controller
[ 2.804421] i2c@12050000 Linked as a fwnode consumer to plic@c000000
[ 2.811441] i2c@12050000 Linked as a fwnode consumer to i2c5-pins
[ 2.818317] i2c@12060000 Linked as a fwnode consumer to clock-controller
[ 2.825695] i2c@12060000 Linked as a fwnode consumer to reset-controller
[ 2.833072] i2c@12060000 Linked as a fwnode consumer to plic@c000000
[ 2.840091] i2c@12060000 Linked as a fwnode consumer to i2c6-pins
[ 2.846801] imx219@10 Linked as a fwnode consumer to clk-ext-camera
[ 2.853699] imx219@10 Linked as a fwnode consumer to gpio@13040000
[ 2.860515] imx219@10 Linked as a fwnode consumer to vin_sysctl@19800000
[ 2.867911] imx708@1a Linked as a fwnode consumer to clk-ext-camera
[ 2.874805] imx708@1a Linked as a fwnode consumer to gpio@13040000
[ 2.881614] imx708@1a Linked as a fwnode consumer to vin_sysctl@19800000
[ 2.889006] ov4689@36 Linked as a fwnode consumer to clk-ext-camera
[ 2.895915] ov4689@36 Linked as a fwnode consumer to vin_sysctl@19800000
[ 2.903313] i2stx_4ch0@120b0000 Linked as a fwnode consumer to clock-controller
[ 2.911383] i2stx_4ch0@120b0000 Linked as a fwnode consumer to mclk_ext
[ 2.918665] i2stx_4ch0@120b0000 Linked as a fwnode consumer to reset-controller
[ 2.926723] i2stx_4ch0@120b0000 Linked as a fwnode consumer to mclk_ext_pins
[ 2.934493] pwm@120d0000 Linked as a fwnode consumer to clock-controller
[ 2.941862] pwm@120d0000 Linked as a fwnode consumer to reset-controller
[ 2.949247] pwm@120d0000 Linked as a fwnode consumer to pwm-pins
[ 2.955873] tmon@120e0000 Linked as a fwnode consumer to plic@c000000
[ 2.962959] tmon@120e0000 Linked as a fwnode consumer to clock-controller
[ 2.970438] tmon@120e0000 Linked as a fwnode consumer to reset-controller
[ 2.977944] spi@13010000 Linked as a fwnode consumer to plic@c000000
[ 2.984934] spi@13010000 Linked as a fwnode consumer to clock-controller
[ 2.992327] spi@13010000 Linked as a fwnode consumer to reset-controller
[ 2.999815] gpio@13040000 Linked as a fwnode consumer to clock-controller
[ 3.007280] gpio@13040000 Linked as a fwnode consumer to reset-controller
[ 3.014752] gpio@13040000 Linked as a fwnode consumer to plic@c000000
[ 3.023112] timer@13050000 Linked as a fwnode consumer to plic@c000000
[ 3.030322] timer@13050000 Linked as a fwnode consumer to clock-controller
[ 3.037906] timer@13050000 Linked as a fwnode consumer to reset-controller
[ 3.045502] mailbox@13060000 Linked as a fwnode consumer to clock-controller
[ 3.053256] mailbox@13060000 Linked as a fwnode consumer to reset-controller
[ 3.061017] mailbox@13060000 Linked as a fwnode consumer to plic@c000000
[ 3.068424] wdog@13070000 Linked as a fwnode consumer to plic@c000000
[ 3.075514] wdog@13070000 Linked as a fwnode consumer to clock-controller
[ 3.082986] wdog@13070000 Linked as a fwnode consumer to reset-controller
[ 3.090484] jpu@13090000 Linked as a fwnode consumer to plic@c000000
[ 3.097473] jpu@13090000 Linked as a fwnode consumer to clock-controller
[ 3.104860] jpu@13090000 Linked as a fwnode consumer to reset-controller
[ 3.112241] jpu@13090000 Linked as a fwnode consumer to power-controller@17030000
[ 3.120494] vpu_dec@130A0000 Linked as a fwnode consumer to plic@c000000
[ 3.127866] vpu_dec@130A0000 Linked as a fwnode consumer to clock-controller
[ 3.135640] vpu_dec@130A0000 Linked as a fwnode consumer to reset-controller
[ 3.143415] vpu_dec@130A0000 Linked as a fwnode consumer to power-controller@17030000
[ 3.152049] vpu_enc@130B0000 Linked as a fwnode consumer to plic@c000000
[ 3.159421] vpu_enc@130B0000 Linked as a fwnode consumer to clock-controller
[ 3.167196] vpu_enc@130B0000 Linked as a fwnode consumer to reset-controller
[ 3.174972] vpu_enc@130B0000 Linked as a fwnode consumer to power-controller@17030000
[ 3.183613] crypto@16000000 Linked as a fwnode consumer to plic@c000000
[ 3.190902] crypto@16000000 Linked as a fwnode consumer to clock-controller
[ 3.198566] crypto@16000000 Linked as a fwnode consumer to reset-controller
[ 3.206276] sec_dma@16008000 Linked as a fwnode consumer to plic@c000000
[ 3.213648] sec_dma@16008000 Linked as a fwnode consumer to clock-controller
[ 3.221406] sec_dma@16008000 Linked as a fwnode consumer to reset-controller
[ 3.229191] trng@1600C000 Linked as a fwnode consumer to clock-controller
[ 3.236663] trng@1600C000 Linked as a fwnode consumer to reset-controller
[ 3.244135] trng@1600C000 Linked as a fwnode consumer to plic@c000000
[ 3.251238] mmc@16010000 Linked as a fwnode consumer to clock-controller
[ 3.258615] mmc@16010000 Linked as a fwnode consumer to reset-controller
[ 3.265997] mmc@16010000 Linked as a fwnode consumer to plic@c000000
[ 3.273044] mmc@16010000 Linked as a fwnode consumer to DCDC1
[ 3.279369] mmc@16010000 Linked as a fwnode consumer to ALDO4
[ 3.285693] mmc@16010000 Linked as a fwnode consumer to mmc0-pins
[ 3.292411] mmc@16020000 Linked as a fwnode consumer to clock-controller
[ 3.299788] mmc@16020000 Linked as a fwnode consumer to reset-controller
[ 3.307168] mmc@16020000 Linked as a fwnode consumer to plic@c000000
[ 3.314205] mmc@16020000 Linked as a fwnode consumer to sdcard1-pins
[ 3.321214] ethernet@16030000 Linked as a fwnode consumer to clock-controller
[ 3.329097] ethernet@16030000 Linked as a fwnode consumer to reset-controller
[ 3.336959] ethernet@16030000 Linked as a fwnode consumer to plic@c000000
[ 3.344552] ethernet@16040000 Linked as a fwnode consumer to clock-controller
[ 3.352433] ethernet@16040000 Linked as a fwnode consumer to reset-controller
[ 3.360295] ethernet@16040000 Linked as a fwnode consumer to plic@c000000
[ 3.367881] dma-controller@16050000 Linked as a fwnode consumer to clock-controller
[ 3.376312] dma-controller@16050000 Linked as a fwnode consumer to reset-controller
[ 3.384746] dma-controller@16050000 Linked as a fwnode consumer to plic@c000000
[ 3.392840] gpio@17020000 Linked as a fwnode consumer to reset-controller
[ 3.400312] gpio@17020000 Linked as a fwnode consumer to plic@c000000
[ 3.407427] power-controller@17030000 Linked as a fwnode consumer to plic@c000000
[ 3.415683] rtc@17040000 Linked as a fwnode consumer to plic@c000000
[ 3.422692] rtc@17040000 Linked as a fwnode consumer to clock-controller
[ 3.430070] rtc@17040000 Linked as a fwnode consumer to reset-controller
[ 3.437471] gpu@18000000 Linked as a fwnode consumer to clock-controller
[ 3.444871] gpu@18000000 Linked as a fwnode consumer to reset-controller
[ 3.452247] gpu@18000000 Linked as a fwnode consumer to power-controller@17030000
[ 3.460482] gpu@18000000 Linked as a fwnode consumer to plic@c000000
[ 3.467493] vin_sysctl@19800000 Linked as a fwnode consumer to clock-controller@19810000
[ 3.476491] vin_sysctl@19800000 Linked as a fwnode consumer to clock-controller
[ 3.484556] vin_sysctl@19800000 Linked as a fwnode consumer to reset-controller
[ 3.492704] vin_sysctl@19800000 Linked as a fwnode consumer to power-controller@17030000
[ 3.501607] vin_sysctl@19800000 Linked as a fwnode consumer to plic@c000000
[ 3.509335] vin_sysctl@19800000 Linked as a fwnode consumer to imx219@10
[ 3.516734] vin_sysctl@19800000 Linked as a fwnode consumer to imx708@1a
[ 3.524132] vin_sysctl@19800000 Linked as a fwnode consumer to ov4689@36
[ 3.531531] clock-controller@19810000 Linked as a fwnode consumer to clock-controller
[ 3.540158] clock-controller@19810000 Linked as a fwnode consumer to reset-controller
[ 3.548778] clock-controller@19810000 Linked as a fwnode consumer to power-controller@17030000
[ 3.558271] dc8200@29400000 Linked as a fwnode consumer to plic@c000000
[ 3.565547] dc8200@29400000 Linked as a fwnode consumer to clock-controller
[ 3.573215] dc8200@29400000 Linked as a fwnode consumer to clock-controller@295C0000
[ 3.581783] dc8200@29400000 Linked as a fwnode consumer to hdmitx0_pixelclk
[ 3.589490] dc8200@29400000 Linked as a fwnode consumer to reset-controller
[ 3.597210] dc8200@29400000 Linked as a fwnode consumer to hdmi@29590000
[ 3.604592] dc8200@29400000 Linked as a fwnode consumer to dsi-output
[ 3.611697] hdmi@29590000 Linked as a fwnode consumer to plic@c000000
[ 3.618781] hdmi@29590000 Linked as a fwnode consumer to clock-controller@295C0000
[ 3.627110] hdmi@29590000 Linked as a fwnode consumer to hdmitx0_pixelclk
[ 3.634581] hdmi@29590000 Linked as a fwnode consumer to reset-controller
[ 3.642059] hdmi@29590000 Linked as a fwnode consumer to inno_hdmi-pins
[ 3.649334] hdmi@29590000 Linked as a fwnode consumer to gpio@13040000
[ 3.656535] hdmi@29590000 Linked as a fwnode consumer to dc8200@29400000
[ 3.663933] clock-controller@295C0000 Linked as a fwnode consumer to hdmitx0_pixelclk
[ 3.672539] clock-controller@295C0000 Linked as a fwnode consumer to mipitx_dphy_rxesc
[ 3.681249] clock-controller@295C0000 Linked as a fwnode consumer to mipitx_dphy_txbytehs
[ 3.690239] clock-controller@295C0000 Linked as a fwnode consumer to clock-controller
[ 3.698860] clock-controller@295C0000 Linked as a fwnode consumer to reset-controller
[ 3.707475] clock-controller@295C0000 Linked as a fwnode consumer to power-controller@17030000
[ 3.716965] mipi@295d0000 Linked as a fwnode consumer to plic@c000000
[ 3.724053] mipi@295d0000 Linked as a fwnode consumer to clock-controller@295C0000
[ 3.732394] mipi@295d0000 Linked as a fwnode consumer to reset-controller
[ 3.739889] mipi@295d0000 Linked as a fwnode consumer to mipi-dphy@295e0000
[ 3.747585] mipi@295d0000 Linked as a fwnode consumer to seeed_plane_i2c@45
[ 3.755255] mipi@295d0000 Linked as a fwnode consumer to panel_radxa@19
[ 3.762546] mipi@295d0000 Linked as a fwnode consumer to dsi-output
[ 3.769459] mipi-dphy@295e0000 Linked as a fwnode consumer to clock-controller@295C0000
[ 3.778265] mipi-dphy@295e0000 Linked as a fwnode consumer to reset-controller
[ 3.786276] pcie@2B000000 Linked as a fwnode consumer to plic@c000000
[ 3.793383] pcie@2B000000 Linked as a fwnode consumer to reset-controller
[ 3.800878] pcie@2B000000 Linked as a fwnode consumer to clock-controller
[ 3.808368] pcie@2B000000 Linked as a fwnode consumer to pcie0_wake_default
[ 3.816020] pcie@2B000000 Linked as a fwnode consumer to pcie0_clkreq_default
[ 3.823868] pcie@2B000000 Linked as a fwnode consumer to gpio@13040000
[ 3.831103] pcie@2C000000 Linked as a fwnode consumer to plic@c000000
[ 3.838210] pcie@2C000000 Linked as a fwnode consumer to reset-controller
[ 3.845706] pcie@2C000000 Linked as a fwnode consumer to clock-controller
[ 3.853195] pcie@2C000000 Linked as a fwnode consumer to pcie1_wake_default
[ 3.860861] pcie@2C000000 Linked as a fwnode consumer to pcie1_clkreq_default
[ 3.868712] pcie@2C000000 Linked as a fwnode consumer to gpio@13040000
[ 3.875910] e24 Linked as a fwnode consumer to clock-controller
[ 3.882435] e24 Linked as a fwnode consumer to reset-controller
[ 3.888952] e24 Linked as a fwnode consumer to plic@c000000
[ 3.895090] e24 Linked as a fwnode consumer to mailbox@13060000
[ 3.901632] /soc: Relaxing link with /soc/plic@c000000
[ 3.907291] platform soc: Fixed dependency cycle(s) with /soc/plic@c000000
[ 3.914859] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 3.922992] soc Dropping the fwnode link to plic@c000000
[ 3.928832] platform soc: Not linking /cpus/cpu@4/interrupt-controller - might never become dev
[ 3.938399] platform soc: Not linking /cpus/cpu@3/interrupt-controller - might never become dev
[ 3.947966] platform soc: Not linking /cpus/cpu@2/interrupt-controller - might never become dev
[ 3.957532] platform soc: Not linking /cpus/cpu@1/interrupt-controller - might never become dev
[ 3.967102] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 3.975237] platform soc: Not linking /cpus/cpu@4/interrupt-controller - might never become dev
[ 3.984804] platform soc: Not linking /cpus/cpu@3/interrupt-controller - might never become dev
[ 3.994370] platform soc: Not linking /cpus/cpu@2/interrupt-controller - might never become dev
[ 4.003937] platform soc: Not linking /cpus/cpu@1/interrupt-controller - might never become dev
[ 4.013507] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.021647] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.029786] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.037925] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.046081] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.054229] ------------[ cut here ]------------
[ 4.059290] refcount_t: addition on 0; use-after-free.
[ 4.064953] WARNING: CPU: 0 PID: 1 at lib/refcount.c:25 refcount_warn_saturate+0x90/0xf4
[ 4.073844] Modules linked in:
[ 4.077192] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 6.1.101-rivoreo-starfive #14
[ 4.085499] Hardware name: StarFive VisionFive V2 (DT)
[ 4.091132] epc : refcount_warn_saturate+0x90/0xf4
[ 4.096391] ra : refcount_warn_saturate+0x90/0xf4
[ 4.101650] epc : ffffffff801d0a04 ra : ffffffff801d0a04 sp : ffffffc80400ba80
[ 4.109574] gp : ffffffff810e26c0 tp : ffffffd8bff50000 t0 : 746e756f63666572
[ 4.117497] t1 : 0000000000000072 t2 : 5f746e756f636665 s0 : ffffffc80400ba90
[ 4.125420] s1 : ffffffd9ffdc6008 a0 : 000000000000002a a1 : ffffffff8108f948
[ 4.133343] a2 : 0000000000000010 a3 : 00000000000002b3 a4 : 0000000000000000
[ 4.141266] a5 : 0000000000000000 a6 : ffffffc80400b878 a7 : ffffffc80400b868
[ 4.149189] s2 : ffffffd9ffdc5f88 s3 : ffffffd9ffdc47e0 s4 : ffffffff810e2634
[ 4.157112] s5 : 0000000200000022 s6 : ffffffd9ffdbdde0 s7 : fffffffffffffff5
[ 4.165035] s8 : 0000000000000000 s9 : 0000000000000000 s10: 0000000000000000
[ 4.172957] s11: 0000000000000000 t3 : ffffffff810f5697 t4 : ffffffff810f5697
[ 4.180880] t5 : ffffffff810f5698 t6 : ffffffff810f56c0
[ 4.186705] status: 0000000200000100 badaddr: 0000000000000000 cause: 0000000000000003
[ 4.195391] [<ffffffff801d0a04>] refcount_warn_saturate+0x90/0xf4
[ 4.202081] [<ffffffff804b5f56>] kobject_get+0x54/0x60
[ 4.207722] [<ffffffff8037638c>] of_node_get+0x1a/0x26
[ 4.213360] [<ffffffff8037257c>] of_get_next_available_child+0xa8/0x152
[ 4.220622] [<ffffffff80375430>] of_fwnode_get_next_child_node+0x86/0x9a
[ 4.227981] [<ffffffff802c7b0a>] fwnode_get_next_child_node+0x28/0x36
[ 4.235053] [<ffffffff802c7c64>] fwnode_get_next_available_child_node+0x1e/0x3a
[ 4.243077] [<ffffffff802bffa8>] __fw_devlink_link_to_suppliers+0x40/0x94
[ 4.250529] [<ffffffff802bf958>] device_add+0x450/0x562
[ 4.256264] [<ffffffff80373b44>] of_device_add+0x22/0x2a
[ 4.262094] [<ffffffff80374090>] of_platform_device_create_pdata+0x76/0x9a
[ 4.269642] [<ffffffff8037445e>] of_platform_bus_create+0x218/0x288
[ 4.276523] [<ffffffff803745c4>] of_platform_populate+0x58/0x90
[ 4.283022] [<ffffffff80374614>] of_platform_default_populate+0x18/0x20
[ 4.290283] [<ffffffff806246fe>] of_platform_default_populate_init+0xac/0xda
[ 4.298023] [<ffffffff80001112>] do_one_initcall+0x5c/0x154
[ 4.304138] [<ffffffff806010ca>] kernel_init_freeable+0x21e/0x222
[ 4.310826] [<ffffffff804d4358>] kernel_init+0x1e/0x10a
[ 4.316562] [<ffffffff800022b8>] ret_from_exception+0x0/0x16
[ 4.322773] ---[ end trace 0000000000000000 ]---
[ 4.327852] OF: ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 4.334741] OF: ffffffd9ffdc66e8 usb, reference count 3
[ 4.340482] OF: ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 4.347368] ------------[ cut here ]------------
[ 4.352428] refcount_t: underflow; use-after-free.
[ 4.357697] WARNING: CPU: 0 PID: 1 at lib/refcount.c:28 refcount_warn_saturate+0xb0/0xf4
[ 4.366584] Modules linked in:
[ 4.369932] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G W 6.1.101-rivoreo-starfive #14
[ 4.379860] Hardware name: StarFive VisionFive V2 (DT)
[ 4.385492] epc : refcount_warn_saturate+0xb0/0xf4
[ 4.390751] ra : refcount_warn_saturate+0xb0/0xf4
[ 4.396010] epc : ffffffff801d0a24 ra : ffffffff801d0a24 sp : ffffffc80400ba80
[ 4.403934] gp : ffffffff810e26c0 tp : ffffffd8bff50000 t0 : 5f00000000000000
[ 4.411857] t1 : 0000000000000072 t2 : 5f746e756f636665 s0 : ffffffc80400ba90
[ 4.419780] s1 : ffffffd9ffdc6008 a0 : 0000000000000026 a1 : ffffffff8108f948
[ 4.427703] a2 : 0000000000000010 a3 : 00000000000002de a4 : 0000000000000000
[ 4.435625] a5 : 0000000000000000 a6 : ffffffc80400b878 a7 : ffffffc80400b868
[ 4.443548] s2 : ffffffd9ffdc6b78 s3 : ffffffd9ffdc5f88 s4 : ffffffff810e2634
[ 4.451471] s5 : 0000000200000022 s6 : ffffffd9ffdbdde0 s7 : fffffffffffffff5
[ 4.459394] s8 : 0000000000000000 s9 : 0000000000000000 s10: 0000000000000000
[ 4.467317] s11: 0000000000000000 t3 : ffffffff810f5697 t4 : ffffffff810f5697
[ 4.475239] t5 : ffffffff810f5698 t6 : ffffffff810f56b8
[ 4.481063] status: 0000000200000100 badaddr: 0000000000000000 cause: 0000000000000003
[ 4.489748] [<ffffffff801d0a24>] refcount_warn_saturate+0xb0/0xf4
[ 4.496438] [<ffffffff804b60b4>] kobject_put+0x9a/0xac
[ 4.502080] [<ffffffff803763ae>] of_node_put+0x16/0x20
[ 4.507717] [<ffffffff803725fe>] of_get_next_available_child+0x12a/0x152
[ 4.515074] [<ffffffff80375430>] of_fwnode_get_next_child_node+0x86/0x9a
[ 4.522433] [<ffffffff802c7b0a>] fwnode_get_next_child_node+0x28/0x36
[ 4.529505] [<ffffffff802c7c64>] fwnode_get_next_available_child_node+0x1e/0x3a
[ 4.537530] [<ffffffff802bffa8>] __fw_devlink_link_to_suppliers+0x40/0x94
[ 4.544982] [<ffffffff802bf958>] device_add+0x450/0x562
[ 4.550716] [<ffffffff80373b44>] of_device_add+0x22/0x2a
[ 4.556547] [<ffffffff80374090>] of_platform_device_create_pdata+0x76/0x9a
[ 4.564094] [<ffffffff8037445e>] of_platform_bus_create+0x218/0x288
[ 4.570974] [<ffffffff803745c4>] of_platform_populate+0x58/0x90
[ 4.577473] [<ffffffff80374614>] of_platform_default_populate+0x18/0x20
[ 4.584735] [<ffffffff806246fe>] of_platform_default_populate_init+0xac/0xda
[ 4.592475] [<ffffffff80001112>] do_one_initcall+0x5c/0x154
[ 4.598589] [<ffffffff806010ca>] kernel_init_freeable+0x21e/0x222
[ 4.605278] [<ffffffff804d4358>] kernel_init+0x1e/0x10a
[ 4.611013] [<ffffffff800022b8>] ret_from_exception+0x0/0x16
[ 4.617224] ---[ end trace 0000000000000000 ]---
[ 4.622303] platform soc: Not linking /gmac0_rgmii_rxin - might never become dev
[ 4.630434] platform soc: Not linking /gmac0_rmii_refin - might never become dev
[ 4.638564] platform soc: Not linking /clk_rtc - might never become dev
[ 4.645827] platform soc: Not linking /bist_apb - might never become dev
[ 4.653194] platform soc: Not linking /jtag_tck_inner - might never become dev
[ 4.661132] platform soc: Not linking /mclk_ext - might never become dev
[ 4.668499] platform soc: Not linking /tdm_ext - might never become dev
[ 4.675770] platform soc: Not linking /i2srx_lrck_ext - might never become dev
[ 4.683709] platform soc: Not linking /i2srx_bclk_ext - might never become dev
[ 4.691648] platform soc: Not linking /i2stx_lrck_ext - might never become dev
[ 4.699594] platform soc: Not linking /i2stx_bclk_ext - might never become dev
[ 4.707532] platform soc: Not linking /gmac1_rgmii_rxin - might never become dev
[ 4.715662] platform soc: Not linking /gmac1_rmii_refin - might never become dev
[ 4.723791] platform soc: Not linking /osc - might never become dev
[ 4.730698] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.738852] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.746991] platform soc: Not linking /clk-ext-camera - might never become dev
[ 4.754938] platform soc: Not linking /clk-ext-camera - might never become dev
[ 4.762883] platform soc: Not linking /clk-ext-camera - might never become dev
[ 4.770833] platform soc: Not linking /mclk_ext - might never become dev
[ 4.778214] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.786351] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.794488] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.802770] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.810907] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.819047] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.827185] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.835323] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.843462] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.851601] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.859739] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.867874] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.876017] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.884156] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.892295] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.900435] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.908575] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.916714] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.924850] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.932986] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.941121] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.949271] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.957493] platform soc: Linked as a sync state only consumer to dsi-output
[ 4.965243] platform soc: Not linking /hdmitx0_pixelclk - might never become dev
[ 4.973375] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.981521] platform soc: Not linking /hdmitx0_pixelclk - might never become dev
[ 4.989652] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 4.997795] platform soc: Not linking /mipitx_dphy_txbytehs - might never become dev
[ 5.006306] platform soc: Not linking /mipitx_dphy_rxesc - might never become dev
[ 5.014531] platform soc: Not linking /hdmitx0_pixelclk - might never become dev
[ 5.022670] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 5.030824] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 5.038966] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 5.047104] platform soc: Not linking /soc/plic@c000000 - might never become dev
[ 5.055382] platform 2000000.clint: Not linking /cpus/cpu@4/interrupt-controller - might never become dev
[ 5.065905] clint@2000000 Dropping the fwnode link to interrupt-controller
[ 5.073461] platform 2000000.clint: Not linking /cpus/cpu@3/interrupt-controller - might never become dev
[ 5.083979] clint@2000000 Dropping the fwnode link to interrupt-controller
[ 5.091535] platform 2000000.clint: Not linking /cpus/cpu@2/interrupt-controller - might never become dev
[ 5.102054] clint@2000000 Dropping the fwnode link to interrupt-controller
[ 5.109611] platform 2000000.clint: Not linking /cpus/cpu@1/interrupt-controller - might never become dev
[ 5.120129] clint@2000000 Dropping the fwnode link to interrupt-controller
[ 5.127866] platform 2010000.cache-controller: Not linking /soc/plic@c000000 - might never become dev
[ 5.138003] cache-controller@2010000 Dropping the fwnode link to plic@c000000
[ 5.145996] platform 10000000.serial: Not linking /soc/plic@c000000 - might never become dev
[ 5.155274] serial@10000000 Dropping the fwnode link to plic@c000000
[ 5.162410] platform 10010000.serial: Not linking /soc/plic@c000000 - might never become dev
[ 5.171688] serial@10010000 Dropping the fwnode link to plic@c000000
[ 5.178832] platform 10030000.i2c: Not linking /soc/plic@c000000 - might never become dev
[ 5.187825] i2c@10030000 Dropping the fwnode link to plic@c000000
[ 5.194688] platform 10050000.i2c: Not linking /soc/plic@c000000 - might never become dev
[ 5.203680] i2c@10050000 Dropping the fwnode link to plic@c000000
[ 5.210551] amba 10060000.spi: Not linking /soc/plic@c000000 - might never become dev
[ 5.219163] spi@10060000 Dropping the fwnode link to plic@c000000
[ 5.226052] ------------[ cut here ]------------
[ 5.231114] refcount_t: saturated; leaking memory.
[ 5.236383] WARNING: CPU: 0 PID: 1 at lib/refcount.c:22 refcount_warn_saturate+0x70/0xf4
[ 5.245271] Modules linked in:
[ 5.248619] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G W 6.1.101-rivoreo-starfive #14
[ 5.258547] Hardware name: StarFive VisionFive V2 (DT)
[ 5.264180] epc : refcount_warn_saturate+0x70/0xf4
[ 5.269440] ra : refcount_warn_saturate+0x70/0xf4
[ 5.274699] epc : ffffffff801d09e4 ra : ffffffff801d09e4 sp : ffffffc80400bc30
[ 5.282623] gp : ffffffff810e26c0 tp : ffffffd8bff50000 t0 : 5f00000000000000
[ 5.290547] t1 : 0000000000000072 t2 : 5f746e756f636665 s0 : ffffffc80400bc40
[ 5.298469] s1 : ffffffd9ffdc6008 a0 : 0000000000000026 a1 : ffffffff8108f948
[ 5.306393] a2 : 0000000000000010 a3 : 0000000000000350 a4 : 0000000000000000
[ 5.314316] a5 : 0000000000000000 a6 : ffffffc80400ba28 a7 : ffffffc80400ba18
[ 5.322239] s2 : ffffffd9ffdc5948 s3 : ffffffd8bfef4410 s4 : 0000000000000000
[ 5.330162] s5 : 0000000000000000 s6 : ffffffff80acbfb8 s7 : 0000000000000001
[ 5.338084] s8 : 0000000000000000 s9 : 0000000000000000 s10: 0000000000000000
[ 5.346007] s11: 0000000000000000 t3 : ffffffff810f5697 t4 : ffffffff810f5697
[ 5.353929] t5 : ffffffff810f5698 t6 : ffffffff810f56b8
[ 5.359754] status: 0000000200000100 badaddr: 0000000000000000 cause: 0000000000000003
[ 5.368440] [<ffffffff801d09e4>] refcount_warn_saturate+0x70/0xf4
[ 5.375130] [<ffffffff804b5f56>] kobject_get+0x54/0x60
[ 5.380771] [<ffffffff8037638c>] of_node_get+0x1a/0x26
[ 5.386410] [<ffffffff8037163a>] of_get_next_child+0x36/0x62
[ 5.392623] [<ffffffff803744ae>] of_platform_bus_create+0x268/0x288
[ 5.399503] [<ffffffff803745c4>] of_platform_populate+0x58/0x90
[ 5.406002] [<ffffffff80374614>] of_platform_default_populate+0x18/0x20
[ 5.413263] [<ffffffff806246fe>] of_platform_default_populate_init+0xac/0xda
[ 5.421004] [<ffffffff80001112>] do_one_initcall+0x5c/0x154
[ 5.427118] [<ffffffff806010ca>] kernel_init_freeable+0x21e/0x222
[ 5.433806] [<ffffffff804d4358>] kernel_init+0x1e/0x10a
[ 5.439542] [<ffffffff800022b8>] ret_from_exception+0x0/0x16
[ 5.445753] ---[ end trace 0000000000000000 ]---
[ 5.450912] platform 10210000.usbdrd: Error -2 creating of_node link
[ 5.457955] ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.464460] parent ffffffd9ffdbddc8 soc, reference count 78
[ 5.470582] ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.477085] parent ffffffd9ffdbddc8 soc, reference count 78
[ 5.483206] OF: ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.490092] ffffffd9ffdc66e8 usb, reference count 3
[ 5.495450] parent ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.502621] ffffffd9ffdc66e8 usb, reference count 3
[ 5.507979] parent ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.515149] OF: ffffffd9ffdc66e8 usb, reference count 3
[ 5.520890] OF: ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.527791] OF: ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.534678] OF: ffffffd9ffdc66e8 usb, reference count 3
[ 5.540419] OF: ffffffd9ffdc5f88 usbdrd, reference count 3221225472
[ 5.547835] devices_kset: Moving 10210000.usbdrd to end of list
[ 5.554345] platform 10210000.usbdrd: Linked as a consumer to 13020000.clock-controller
[ 5.563137] usbdrd Dropping the fwnode link to clock-controller
[ 5.569715] devices_kset: Moving 100b0000.pwmdac to end of list
[ 5.576223] platform 100b0000.pwmdac: Linked as a consumer to 13020000.clock-controller
[ 5.585014] pwmdac@100b0000 Dropping the fwnode link to clock-controller
[ 5.592450] devices_kset: Moving 10060000.spi to end of list
[ 5.598671] amba 10060000.spi: Linked as a consumer to 13020000.clock-controller
[-- Attachment #3: jh7110-visionfive-v2.dtb --]
[-- Type: text/plain, Size: 49473 bytes --]
Ð\rþí\0\0ÁA\0\0\08\0\0´|\0\0\0(\0\0\0\x11\0\0\0\x10\0\0\0\0\0\0\fÅ\0\0´D\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\x03\0\0\0'\0\0\0\0starfive,visionfive-v2\0starfive,jh7110\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x02\0\0\0\x03\0\0\0\x17\0\0\0&StarFive VisionFive V2\0\0\0\0\0\x01ac108_mclk\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x01n6\0\0\0\0\x02\0\0\0\x01bist_apb\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x02úð\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0-\0\0\0\x02\0\0\0\x01clk-ext-camera\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x01n6\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\04\0\0\0\x02\0\0\0\x01clk_rtc\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0.\0\0\0\x02\0\0\0\x01gmac0_rgmii_rxin\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\asY@\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\00\0\0\0\x02\0\0\0\x01gmac0_rmii_refin\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x02úð\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0/\0\0\0\x02\0\0\0\x01gmac1_rgmii_rxin\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\asY@\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0)\0\0\0\x02\0\0\0\x01gmac1_rmii_refin\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x02úð\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0(\0\0\0\x02\0\0\0\x01hdmitx0_pixelclk\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x11³Ü@\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0I\0\0\0\x02\0\0\0\x01i2srx_bclk_ext\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0»\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0"\0\0\0\x02\0\0\0\x01i2srx_lrck_ext\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\x02î\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0#\0\0\0\x02\0\0\0\x01i2stx_bclk_ext\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0»\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0*\0\0\0\x02\0\0\0\x01i2stx_lrck_ext\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\x02î\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0+\0\0\0\x02\0\0\0\x01jtag_tck_inner\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x02úð\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0,\0\0\0\x02\0\0\0\x01mclk_ext\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0»\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x1f\0\0\0\x02\0\0\0\x01mipitx_dphy_rxesc\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0O\0\0\0\x02\0\0\0\x01mipitx_dphy_txbytehs\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x11³Ü@\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0P\0\0\0\x02\0\0\0\x01osc\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x01n6\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0'\0\0\0\x02\0\0\0\x01tdm_ext\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x02î\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x1c\0\0\0\x02\0\0\0\x01wm8960_mclk\0\0\0\0\x03\0\0\0\f\0\0\0\0fixed-clock\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\x01w\0\0\0\0\0\x02\0\0\0\x01cpus\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0Q\0= \0\0\0\0\x01cpu@0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0\0sifive,s7\0riscv\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0hcpu\0\0\0\0\x03\0\0\0\x04\0\0\0t\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0@\0\0\0\0\x03\0\0\0\x04\0\0\0¡\0\0\0\x01\0\0\0\x03\0\0\0\x11\0\0\0²rv64imac_zba_zbb\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0¼\0\0\0\x02\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0b\0\0\0\x01interrupt-controller\0\0\0\0\0\0\0\x03\0\0\0\x0f\0\0\0\0riscv,cpu-intc\0\0\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x0e\0\0\0\x02\0\0\0\x02\0\0\0\x01cpu@1\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0sifive,u74-mc\0riscv\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0ø\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\v\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\x18\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01%\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x010\0\0\0(\0\0\0\x03\0\0\0\x04\0\0\0hcpu\0\0\0\0\x03\0\0\0\x04\0\0\0t\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01;\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01F\0\0\0(\0\0\0\x03\0\0\0\v\0\0\x01Qriscv,sv39\0\0\0\0\0\x03\0\0\0\x04\0\0\0¡\0\0\0\x01\0\0\0\x03\0\0\0\x13\0\0\0²rv64imafdc_zba_zbb\0\0\0\0\0\x03\0\0\0\0\0\0\x01Z\0\0\0\x03\0\0\0\x04\0\0\0¼\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x01d\0\0\0\x02\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01\x7fcpu\0\0\0\0\x03\0\0\0\x04\0\0\x01\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x05\0\0\0\x01interrupt-controller\0\0\0\0\0\0\0\x03\0\0\0\x0f\0\0\0\0riscv,cpu-intc\0\0\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x0f\0\0\0\x02\0\0\0\x02\0\0\0\x01cpu@2\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0sifive,u74-mc\0riscv\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0ø\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\v\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\x18\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01%\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x010\0\0\0(\0\0\0\x03\0\0\0\x04\0\0\0hcpu\0\0\0\0\x03\0\0\0\x04\0\0\0t\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01;\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01F\0\0\0(\0\0\0\x03\0\0\0\v\0\0\x01Qriscv,sv39\0\0\0\0\0\x03\0\0\0\x04\0\0\0¡\0\0\0\x01\0\0\0\x03\0\0\0\x13\0\0\0²rv64imafdc_zba_zbb\0\0\0\0\0\x03\0\0\0\0\0\0\x01Z\0\0\0\x03\0\0\0\x04\0\0\0¼\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x01d\0\0\0\x02\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01\x7fcpu\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x06\0\0\0\x01interrupt-controller\0\0\0\0\0\0\0\x03\0\0\0\x0f\0\0\0\0riscv,cpu-intc\0\0\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x10\0\0\0\x02\0\0\0\x02\0\0\0\x01cpu@3\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0sifive,u74-mc\0riscv\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0\0ø\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\v\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\x18\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01%\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x010\0\0\0(\0\0\0\x03\0\0\0\x04\0\0\0hcpu\0\0\0\0\x03\0\0\0\x04\0\0\0t\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01;\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01F\0\0\0(\0\0\0\x03\0\0\0\v\0\0\x01Qriscv,sv39\0\0\0\0\0\x03\0\0\0\x04\0\0\0¡\0\0\0\x01\0\0\0\x03\0\0\0\x13\0\0\0²rv64imafdc_zba_zbb\0\0\0\0\0\x03\0\0\0\0\0\0\x01Z\0\0\0\x03\0\0\0\x04\0\0\0¼\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x01d\0\0\0\x02\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01\x7fcpu\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\a\0\0\0\x01interrupt-controller\0\0\0\0\0\0\0\x03\0\0\0\x0f\0\0\0\0riscv,cpu-intc\0\0\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x11\0\0\0\x02\0\0\0\x02\0\0\0\x01cpu@4\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0sifive,u74-mc\0riscv\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\0ø\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\v\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x01\x18\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01%\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x010\0\0\0(\0\0\0\x03\0\0\0\x04\0\0\0hcpu\0\0\0\0\x03\0\0\0\x04\0\0\0t\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01;\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01F\0\0\0(\0\0\0\x03\0\0\0\v\0\0\x01Qriscv,sv39\0\0\0\0\0\x03\0\0\0\x04\0\0\0¡\0\0\0\x01\0\0\0\x03\0\0\0\x13\0\0\0²rv64imafdc_zba_zbb\0\0\0\0\0\x03\0\0\0\0\0\0\x01Z\0\0\0\x03\0\0\0\x04\0\0\0¼\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x01d\0\0\0\x02\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01\x7fcpu\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\b\0\0\0\x01interrupt-controller\0\0\0\0\0\0\0\x03\0\0\0\x0f\0\0\0\0riscv,cpu-intc\0\0\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x12\0\0\0\x02\0\0\0\x02\0\0\0\x01cpu-map\0\0\0\0\x01cluster0\0\0\0\0\0\0\0\x01core0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01\0\0\0\x05\0\0\0\x02\0\0\0\x01core1\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01\0\0\0\x06\0\0\0\x02\0\0\0\x01core2\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01\0\0\0\a\0\0\0\x02\0\0\0\x01core3\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01\0\0\0\b\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01opp-table-0\0\0\0\0\x03\0\0\0\x14\0\0\0\0operating-points-v2\0\0\0\0\x03\0\0\0\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x02\0\0\0\x01opp-375000000\0\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0\x16Z\vÀ\0\0\0\x03\0\0\0\x04\0\0\x01¬\0\f5\0\0\0\0\x02\0\0\0\x01opp-500000000\0\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0\x1dÍe\0\0\0\0\x03\0\0\0\x04\0\0\x01¬\0\f5\0\0\0\0\x02\0\0\0\x01opp-750000000\0\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0,´\x17\0\0\0\x03\0\0\0\x04\0\0\x01¬\0\f5\0\0\0\0\x03\0\0\0\0\0\0\x01º\0\0\0\x02\0\0\0\x01opp-1500000000\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0Yh/\0\0\0\0\x03\0\0\0\x04\0\0\x01¬\0\x0fÞ\0\0\0\x02\0\0\0\x01opp-312500000\0\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0\x12 _ \0\0\0\x03\0\0\0\x04\0\0\x01¬\0\f5\0\0\0\0\x02\0\0\0\x01opp-417000000\0\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0\x18Úê@\0\0\0\x03\0\0\0\x04\0\0\x01¬\0\f5\0\0\0\0\x02\0\0\0\x01opp-625000000\0\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0%@¾@\0\0\0\x03\0\0\0\x04\0\0\x01¬\0\f5\0\0\0\0\x03\0\0\0\0\0\0\x01º\0\0\0\x02\0\0\0\x01opp-1250000000\0\0\0\0\0\x03\0\0\0\b\0\0\x01¥\0\0\0\0J|\0\0\0\x03\0\0\0\x04\0\0\x01¬\0\x0fB@\0\0\0\x02\0\0\0\x02\0\0\0\x01display-subsystem\0\0\0\0\0\0\x03\0\0\06\0\0\0\0starfive,jh7110-display\0verisilicon,display-subsystem\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Æ\0\0\0 \0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01dsi-output\0\0\0\0\0\x03\0\0\08\0\0\0\0starfive,jh7110-display-encoder\0verisilicon,dsi-encoder\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x01ports\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01port@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0
\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0L\0\0\0\x02\0\0\0\x02\0\0\0\x01port@1\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x01\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0\v\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0T\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01mailbox_client\0\0\0\0\0\x03\0\0\0\x16\0\0\0\0starfive,mailbox-test\0\0\0\0\0\0\x03\0\0\0\x06\0\0\x01Ürx\0tx\0\0\0\0\0\0\x03\0\0\0\x18\0\0\x01ç\0\0\0\f\0\0\0\0\0\0\0\x01\0\0\0\f\0\0\0\x01\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01rgb-output\0\0\0\0\0\x03\0\0\03\0\0\0\0starfive,jh7110-rgb_output\0verisilicon,rgb-encoder\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x01ports\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01port@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x01endpoint@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0J\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01stmmac-axi-config\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01î\0\0\0\x0f\0\0\0\x03\0\0\0\x04\0\0\x01þ\0\0\0\x0f\0\0\0\x03\0\0\0\x1c\0\0\x02\x0e\0\0\x01\0\0\0\0\0\0\0@\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0A\0\0\0\x02\0\0\0\x01tda988x_pin\0\0\0\0\x03\0\0\0\x19\0\0\0\0starfive,tda998x_rgb_pin\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01soc\0\0\0\0\x03\0\0\0\v\0\0\0\0simple-bus\0\0\0\0\0\x03\0\0\0\x04\0\0\x02\x18\0\0\0\r\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\x01\0\0\0\x03\0\0\0\0\0\0\x02)\0\0\0\x01clint@2000000\0\0\0\0\0\0\x03\0\0\0\r\0\0\0\0riscv,clint0\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x02\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x020control\0\0\0\0\x03\0\0\0P\0\0\x02:\0\0\0\x0e\0\0\0\x03\0\0\0\x0e\0\0\0\a\0\0\0\x0f\0\0\0\x03\0\0\0\x0f\0\0\0\a\0\0\0\x10\0\0\0\x03\0\0\0\x10\0\0\0\a\0\0\0\x11\0\0\0\x03\0\0\0\x11\0\0\0\a\0\0\0\x12\0\0\0\x03\0\0\0\x12\0\0\0\a\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x02\0\0\0\x01cache-controller@2010000\0\0\0\0\0\0\0\x03\0\0\0\x1f\0\0\0\0sifive,fu740-c000-ccache\0cache\0\0\0\0\0\x03\0\0\00\0\0\0d\0\0\0\0\x02\x01\0\0\0\0\0\0\0\0@\0\0\0\0\0\b\0\0\0\0\0\0\0\x02\0\0\0\0\0\0\0
\0\0\0\0\0\0\0\x02\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x020control\0sideband\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02N\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0v\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x02Y\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0\0\0\b\0\0\0\0\x03\0\0\0\x04\0\0\0\0 \0\0\0\0\0\x03\0\0\0\0\0\0\x02e\0\0\0\x03\0\0\0\b\0\0\x02s\0\0\0\x04\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x01\0\0\0\x02\0\0\0\x01plic@c000000\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0riscv,plic0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\f\0\0\0\0\0\0\0\x04\0\0\0\0\0\0\x03\0\0\0\b\0\0\x020control\0\0\0\0\x03\0\0\0H\0\0\x02:\0\0\0\x0e\0\0\0\v\0\0\0\x0f\0\0\0\v\0\0\0\x0f\0\0\0 \0\0\0\x10\0\0\0\v\0\0\0\x10\0\0\0 \0\0\0\x11\0\0\0\v\0\0\0\x11\0\0\0 \0\0\0\x12\0\0\0\v\0\0\0\x12\0\0\0 \0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x02\0\0\0\a\0\0\0\x03\0\0\0\x04\0\0\x02\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\r\0\0\0\x02\0\0\0\x01serial@10000000\0\0\0\0\x03\0\0\0\x11\0\0\0\0snps,dw-apb-uart\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02¡\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x02®\0\0\0\x02\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x01\x7fbaudclk\0apb_pclk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0S\0\0\0\x13\0\0\0T\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0 \0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0\x14\0\0\0\x02\0\0\0\x01serial@10010000\0\0\0\0\x03\0\0\0\x11\0\0\0\0snps,dw-apb-uart\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x01\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02¡\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x02®\0\0\0\x02\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x01\x7fbaudclk\0apb_pclk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0U\0\0\0\x13\0\0\0V\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0!\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0\x15\0\0\0\x02\0\0\0\x01serial@10020000\0\0\0\0\x03\0\0\0\x11\0\0\0\0snps,dw-apb-uart\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x02\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02¡\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x02®\0\0\0\x02\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x01\x7fbaudclk\0apb_pclk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0W\0\0\0\x13\0\0\0X\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0"\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2c@10030000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0snps,designware-i2c\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x03\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\x01%\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fref\0pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0L\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0#\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\x01 \0\0\0\x03\0\0\0\x04\0\0\x02×\0\0\x01,\0\0\0\x03\0\0\0\x04\0\0\x02ì\0\0\x01þ\0\0\0\x03\0\0\0\x04\0\0\x03\x04\0\0\x01þ\0\0\0\x03\0\0\0\0\0\0\x03\x1c\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0\x16\0\0\0\x02\0\0\0\x01i2c@10040000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0snps,designware-i2c\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x04\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\x01&\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fref\0pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0M\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0$\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2c@10050000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0snps,designware-i2c\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x05\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\x01'\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fref\0pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0N\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0%\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\x01 \0\0\0\x03\0\0\0\x04\0\0\x02×\0\0\x01,\0\0\0\x03\0\0\0\x04\0\0\x02ì\0\0\x01þ\0\0\0\x03\0\0\0\x04\0\0\x03\x04\0\0\x01þ\0\0\0\x03\0\0\0\0\0\0\x03\x1c\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0\x17\0\0\0\x01seeed_plane_i2c@45\0\0\0\0\0\x03\0\0\0\f\0\0\0\0seeed_panel\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0E\0\0\0\x01port\0\0\0\0\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0\x18\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0R\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01tinker_ft5406@38\0\0\0\0\0\0\0\x03\0\0\0\x0e\0\0\0\0tinker_ft5406\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\08\0\0\0\x02\0\0\0\x01touchscreen@14\0\0\0\0\0\x03\0\0\0\r\0\0\0\0goodix,gt911\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x14\0\0\0\x03\0\0\0\f\0\0\x030\0\0\0\x19\0\0\0\x1e\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\x03:\0\0\0\x19\0\0\0\x1f\0\0\0\0\0\0\0\x02\0\0\0\x01panel_radxa@19\0\0\0\0\0\x03\0\0\0\x10\0\0\0\0starfive_jadard\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x19\0\0\0\x03\0\0\0\f\0\0\x03F\0\0\0\x19\0\0\0\x17\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\x03Q\0\0\0\x19\0\0\0\x16\0\0\0\0\0\0\0\x01port\0\0\0\0\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0\x1a\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0S\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01spi@10060000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl022\0arm,primecell\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x06\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fapb_pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0E\0\0\0\x03\0\0\0\b\0\0\x03]rst_apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0&\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10"\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0^[\0\0\0\x01spi@0\0\0\0\0\0\0\x03\0\0\0\x0e\0\0\0\0rohm,dh2228fv\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01spi@10070000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl022\0arm,primecell\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\a\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fapb_pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0F\0\0\0\x03\0\0\0\b\0\0\x03]rst_apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0'\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10"\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01spi@10080000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl022\0arm,primecell\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\b\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0
\0\0\0\x03\0\0\0 \0\0\x01\x7fapb_pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0G\0\0\0\x03\0\0\0\b\0\0\x03]rst_apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0(\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10"\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01tdm@10090000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-tdm\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10 \0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0,\0\0\x01x\0\0\0\x03\0\0\0¸\0\0\0\x03\0\0\0¹\0\0\0\x03\0\0\0º\0\0\0\x03\0\0\0»\0\0\0\x03\0\0\0\x11\0\0\0\x1c\0\0\0\x03\0\0\04\0\0\x01\x7ftdm_ahb\0tdm_apb\0tdm_internal\0tdm\0mclk_inner\0tdm_ext\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0i\0\0\0\x13\0\0\0k\0\0\0\x13\0\0\0j\0\0\0\x03\0\0\0\x10\0\0\x03¨\0\0\0\x1d\0\0\0\x14\0\0\0\x1d\0\0\0\x15\0\0\0\x03\0\0\0\x06\0\0\x03rx\0tx\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0\x1e\0\0\0\x02\0\0\0\x01spdif@100a0000\0\0\0\0\0\x03\0\0\0\x16\0\0\0\0starfive,jh7110-spdif\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10
\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0,\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\0\x03\0\0\0\x10\0\0\0\x03\0\0\0\x11\0\0\0\x1f\0\0\0\x03\0\0\0\x12\0\0\0\x03\0\0\0*\0\0\x01\x7fapb\0core\0audroot\0mclk_inner\0mclk_ext\0mclk\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0_\0\0\0\x03\0\0\0\x04\0\0\x03]apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0T\0\0\0\x03\0\0\0\x03\0\0\x03Ètx\0\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01pwmdac@100b0000\0\0\0\0\x03\0\0\0\x17\0\0\0\0starfive,jh7110-pwmdac\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\v\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x18\0\0\x01x\0\0\0\x03\0\0\0\f\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x0e\0\0\x01\x7fapb0\0apb\0core\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0`\0\0\0\x03\0\0\0\x04\0\0\x03]apb\0\0\0\0\x03\0\0\0\b\0\0\x03¨\0\0\0\x1d\0\0\0\x16\0\0\0\x03\0\0\0\x03\0\0\x03tx\0\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0]\0\0\0\x02\0\0\0\x01pdm@100d0000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-pdm\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\r\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\x020pdm\0\0\0\0\x03\0\0\0\x1c\0\0\x01x\0\0\0\x03\0\0\0¶\0\0\0\x03\0\0\0·\0\0\0\x03\0\0\0\x12\0\0\0\x1f\0\0\0\x03\0\0\0#\0\0\x01\x7fpdm_mclk\0pdm_apb\0clk_mclk\0mclk_ext\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0a\0\0\0\x13\0\0\0b\0\0\0\x03\0\0\0\x11\0\0\x03]pdm_dmic\0pdm_apb\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2srx_mst@100e0000\0\0\0\0\0\x03\0\0\0\x1d\0\0\0\0starfive,jh7110-i2srx-master\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x0e\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0<\0\0\x01x\0\0\0\x03\0\0\0\f\0\0\0\x03\0\0\0¯\0\0\0\x03\0\0\0°\0\0\0\x03\0\0\0²\0\0\0\x03\0\0\0³\0\0\0\x03\0\0\0µ\0\0\0\x03\0\0\0\x12\0\0\0\x1f\0\0\0\x03\0\0\03\0\0\x01\x7fapb0\0apb\0bclk_mst\0lrck_mst\0bclk\0lrck\0mclk\0mclk_ext\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0c\0\0\0\x13\0\0\0d\0\0\0\x03\0\0\0 \0\0\x03]apb\0bclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x03¨\0\0\0\x1d\0\0\0\x18\0\0\0\x03\0\0\0\x03\0\0\x03rx\0\0\0\0\0\x03\0\0\0\f\0\0\x03Ø\0\0\0!\0\0\0\x18\0\0\04\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2srx_3ch@100e0000\0\0\0\0\0\x03\0\0\0\x16\0\0\0\0starfive,jh7110-i2srx\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10\x0e\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0T\0\0\x01x\0\0\0\x03\0\0\0\f\0\0\0\x03\0\0\0¯\0\0\0\x03\0\0\0\x10\0\0\0\x03\0\0\0\x11\0\0\0\x03\0\0\0°\0\0\0\x03\0\0\0²\0\0\0\x03\0\0\0³\0\0\0\x03\0\0\0µ\0\0\0\x03\0\0\0\x12\0\0\0\x1f\0\0\0"\0\0\0#\0\0\0\x03\0\0\0Z\0\0\x01\x7fapb0\0apb\0audioroot\0mclk_inner\0bclk_mst\0lrck_mst\0bclk\0lrck\0mclk\0mclk_ext\0bclk_ext\0lrck_ext\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0c\0\0\0\x13\0\0\0d\0\0\0\x03\0\0\0\b\0\0\x03¨\0\0\0\x1d\0\0\0\x18\0\0\0\x03\0\0\0\x03\0\0\x03rx\0\0\0\0\0\x03\0\0\0\f\0\0\x03Ø\0\0\0!\0\0\0\x18\0\0\04\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\b\0\0\x02Í\0\0\0$\0\0\0%\0\0\0\x02\0\0\0\x01usbdrd\0\0\0\0\0\x03\0\0\0\x16\0\0\0\0starfive,jh7110-cdns3\0\0\0\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0\x10!\0\0\0\0\0\0\0\0\x10\0\0\0\0\0\x10 \0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\08\0\0\x01x\0\0\0\x03\0\0\0_\0\0\0\x03\0\0\0Ä\0\0\0\x03\0\0\0Â\0\0\0\x03\0\0\0Ã\0\0\0\x03\0\0\0¿\0\0\0\x03\0\0\0Á\0\0\0\x03\0\0\0À\0\0\0\x03\0\0\0\x1e\0\0\x01\x7f125m\0app\0lpm\0stb\0apb\0axi\0utmi\0\0\0\0\0\0\x03\0\0\0 \0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x03\0\0\0\x13\0\0\x03]pwrup\0apb\0axi\0utmi\0\0\0\0\0\x03\0\0\0\x14\0\0\x03ì\0\0\0&\0\0\0\x04\0\0\0Ä\0\0\x01H\0\0\x01ô\0\0\0\x03\0\0\0\b\0\0\x03Ø\0\0\0!\0\0\0\x18\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0\0\0\0\x02)\0\0\0\x03\0\0\0\0\0\0\x04\0\0\0\0\x03\0\0\0\v\0\0\x04\x13peripheral\0\0\0\0\0\x01usb@10100000\0\0\0\0\0\0\0\x03\0\0\0
\0\0\0\0cdns,usb3\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\00\0\0\0d\0\0\0\0\x10\x10\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x10\x11\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x10\x12\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\r\0\0\x020otg\0xhci\0dev\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\x02N\0\0\0d\0\0\0l\0\0\0n\0\0\0\x03\0\0\0\x14\0\0\x03Èhost\0peripheral\0otg\0\0\0\0\x03\0\0\0\x1e\0\0\x04(cdns3,usb3-phy\0cnds3,usb2-phy\0\0\0\0\0\0\x03\0\0\0\f\0\0\x042super-speed\0\0\0\0\x02\0\0\0\x02\0\0\0\x01multi-phyctrl@10210000\0\0\0\0\0\x03\0\0\0\x11\0\0\0\0starfive,phyctrl\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10!\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0U\0\0\0\x02\0\0\0\x01pcie1-phyctrl@10220000\0\0\0\0\0\x03\0\0\0\x11\0\0\0\0starfive,phyctrl\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10"\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0X\0\0\0\x02\0\0\0\x01clock-controller\0\0\0\0\0\0\0\x03\0\0\0\x17\0\0\0\0starfive,jh7110-clkgen\0\0\0\0\0\x03\0\0\00\0\0\0d\0\0\0\0\x13\x02\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x10#\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x17\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\f\0\0\x020sys\0stg\0aon\0\0\0\0\x03\0\0\08\0\0\x01x\0\0\0'\0\0\0(\0\0\0)\0\0\0*\0\0\0+\0\0\0"\0\0\0#\0\0\0\x1c\0\0\0\x1f\0\0\0,\0\0\0-\0\0\0.\0\0\0/\0\0\00\0\0\0\x03\0\0\0µ\0\0\x01\x7fosc\0gmac1_rmii_refin\0gmac1_rgmii_rxin\0i2stx_bclk_ext\0i2stx_lrck_ext\0i2srx_bclk_ext\0i2srx_lrck_ext\0tdm_ext\0mclk_ext\0jtag_tck_inner\0bist_apb\0clk_rtc\0gmac0_rmii_refin\0gmac0_rgmii_rxin\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\x01\0\0\0\x03\0\0\0$\0\0\x03Ø\0\0\0!\0\0\0\x18\0\0\0\x1c\0\0\0 \0\0\0$\0\0\0(\0\0\0,\0\0\00\0\0\04\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x03\0\0\0\x02\0\0\0\x01reset-controller\0\0\0\0\0\0\0\x03\0\0\0\x16\0\0\0\0starfive,jh7110-reset\0\0\0\0\0\0\x03\0\0\0P\0\0\0d\0\0\0\0\x13\x02\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x10#\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x17\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x19\0\0\0\0\0\0\0\x01\0\0\0\0\0\0)\\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0$\0\0\x020syscrg\0stgcrg\0aoncrg\0ispcrg\0voutcrg\0\0\0\0\x03\0\0\0\x04\0\0\x04@\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x13\0\0\0\x02\0\0\0\x01xrp\0\0\0\0\x03\0\0\0 \0\0\0\0cdns,xrp\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0\x10#\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x10$\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0¾\0\0\0\x03\0\0\0 \0\0\x01\x7fcore_clk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x03]rst_core\0rst_axi\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03ì\0\0\0&\0\0\0\x03\0\0\0
\0\0\x04Mhifi4_elf\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x01\0\0\0\x03\0\0\0 \0\0\x02)@\0\0\0\0\0\0\0 \0\0\0\0\x04\0\0iÀ\0\0\0\0\0\0iÀ\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04[\0\0\01\0\0\0\x01dsp@0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01stg_syscon@10240000\0\0\0\0\x03\0\0\0\a\0\0\0\0syscon\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x10$\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0&\0\0\0\x02\0\0\0\x01serial@12000000\0\0\0\0\x03\0\0\0\x11\0\0\0\0snps,dw-apb-uart\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02¡\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x02®\0\0\0\x02\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x01\x7fbaudclk\0apb_pclk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0Y\0\0\0\x13\0\0\0Z\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0-\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01serial@12010000\0\0\0\0\x03\0\0\0\x11\0\0\0\0snps,dw-apb-uart\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\x01\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02¡\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x02®\0\0\0\x02\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x01\x7fbaudclk\0apb_pclk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0[\0\0\0\x13\0\0\0\\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0.\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01serial@12020000\0\0\0\0\x03\0\0\0\x11\0\0\0\0snps,dw-apb-uart\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\x02\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02¡\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x02®\0\0\0\x02\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\x11\0\0\x01\x7fbaudclk\0apb_pclk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0]\0\0\0\x13\0\0\0^\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0/\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2c@12030000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0snps,designware-i2c\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\x03\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\x01(\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fref\0pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0O\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\00\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2c@12040000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0snps,designware-i2c\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\x04\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\x01)\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fref\0pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0P\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2c@12050000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0snps,designware-i2c\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\x05\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\x01*\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fref\0pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0Q\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\02\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\x01 \0\0\0\x03\0\0\0\x04\0\0\x02×\0\0\x01,\0\0\0\x03\0\0\0\x04\0\0\x02ì\0\0\x01þ\0\0\0\x03\0\0\0\x04\0\0\x03\x04\0\0\x01þ\0\0\0\x03\0\0\0\0\0\0\x03\x1c\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\02\0\0\0\x01eeprom@50\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0atmel,24c04\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0P\0\0\0\x03\0\0\0\x04\0\0\x04i\0\0\0\x10\0\0\0\x02\0\0\0\x01axp15060_reg@36\0\0\0\0\x03\0\0\0\x12\0\0\0\0x-powers,axp15060\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\06\0\0\0\x01regulators\0\0\0\0\0\x01ALDO1\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04r\0\0\0\x03\0\0\0\x06\0\0\x04aldo1\0\0\0\0\0\0\x03\0\0\0 \0\0\x04mipi_0p9\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04¨\0\r» \0\0\0\x03\0\0\0\x04\0\0\x04À\0\r» \0\0\0\x02\0\0\0\x01ALDO5\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04r\0\0\0\x03\0\0\0\x06\0\0\x04aldo5\0\0\0\0\0\0\x03\0\0\0 \0\0\x04hdmi_0p9\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04¨\0\r» \0\0\0\x03\0\0\0\x04\0\0\x04À\0\r» \0\0\0\x02\0\0\0\x01ALDO3\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04r\0\0\0\x03\0\0\0\x06\0\0\x04aldo3\0\0\0\0\0\0\x03\0\0\0 \0\0\x04hdmi_1p8\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04¨\0^[w@\0\0\0\x03\0\0\0\x04\0\0\x04À\0^[w@\0\0\0\x02\0\0\0\x01ALDO4\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04r\0\0\0\x03\0\0\0\0\0\0\x04Ø\0\0\0\x03\0\0\0\x06\0\0\x04aldo4\0\0\0\0\0\0\x03\0\0\0 \0\0\x04sdio_vdd\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04¨\0^[w@\0\0\0\x03\0\0\0\x04\0\0\x04À\0^[w@\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0>\0\0\0\x02\0\0\0\x01DCDC1\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04r\0\0\0\x03\0\0\0\0\0\0\x04Ø\0\0\0\x03\0\0\0\x06\0\0\x04dcdc1\0\0\0\0\0\0\x03\0\0\0\b\0\0\x04vcc_3v3\0\0\0\0\x03\0\0\0\x04\0\0\x04¨\02Z \0\0\0\x03\0\0\0\x04\0\0\x04À\02Z \0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0=\0\0\0\x02\0\0\0\x01DCDC2\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04r\0\0\0\x03\0\0\0\0\0\0\x04Ø\0\0\0\x03\0\0\0\x06\0\0\x04dcdc2\0\0\0\0\0\0\x03\0\0\0\b\0\0\x04cpu_vdd\0\0\0\0\x03\0\0\0\x04\0\0\x04¨\0\a¡ \0\0\0\x03\0\0\0\x04\0\0\x04À\0\x17\x7f \0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x04\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01i2c@12060000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0snps,designware-i2c\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\x06\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\x01+\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fref\0pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0R\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\03\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\09\0\x01 \0\0\0\x03\0\0\0\x04\0\0\x02×\0\0\x01,\0\0\0\x03\0\0\0\x04\0\0\x02ì\0\0\x01þ\0\0\0\x03\0\0\0\x04\0\0\x03\x04\0\0\x01þ\0\0\0\x03\0\0\0\0\0\0\x03\x1c\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\03\0\0\0\x01imx219@10\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0sony,imx219\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x10\0\0\0\x03\0\0\0\x04\0\0\x01x\0\0\04\0\0\0\x03\0\0\0\x05\0\0\x01\x7fxclk\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\x03F\0\0\0\x19\0\0\0\x12\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04ì\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04õ\0\0\0\x01\0\0\0\x01port\0\0\0\0\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\05\0\0\0\x03\0\0\0\x04\0\0\x05\x01\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x05
\0\0\0\x04\0\0\0\x03\0\0\0\b\0\0\x05\x16\0\0\0\0\0\0\0\x01\0\0\0\x03\0\0\0\f\0\0\x05!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x051\0\0\0\0^[.\x02\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0D\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01imx708@1a\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0sony,imx708\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x1a\0\0\0\x03\0\0\0\x04\0\0\x01x\0\0\04\0\0\0\x03\0\0\0\f\0\0\x03F\0\0\0\x19\0\0\0\x12\0\0\0\0\0\0\0\x01port\0\0\0\0\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\06\0\0\0\x03\0\0\0\b\0\0\x05\x16\0\0\0\x01\0\0\0\x02\0\0\0\x03\0\0\0\0\0\0\x05B\0\0\0\x03\0\0\0\b\0\0\x051\0\0\0\0\x1aÒt\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0E\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01ov4689@36\0\0\0\0\0\0\x03\0\0\0\f\0\0\0\0ovti,ov4689\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\06\0\0\0\x03\0\0\0\x04\0\0\x01x\0\0\04\0\0\0\x03\0\0\0\x05\0\0\x01\x7fxclk\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04ì\0\0\0´\0\0\0\x01port\0\0\0\0\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\07\0\0\0\x03\0\0\0\x04\0\0\x05\x01\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x05
\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x05\x16\0\0\0\x01\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0F\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01spi@12070000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl022\0arm,primecell\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\a\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fapb_pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0H\0\0\0\x03\0\0\0\b\0\0\x03]rst_apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\04\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10"\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01spi@12080000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl022\0arm,primecell\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\b\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fapb_pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0I\0\0\0\x03\0\0\0\b\0\0\x03]rst_apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\05\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10"\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01spi@12090000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl022\0arm,primecell\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12 \0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fapb_pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0J\0\0\0\x03\0\0\0\b\0\0\x03]rst_apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\06\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10"\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01spi@120A0000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl022\0arm,primecell\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12
\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0 \0\0\x01\x7fapb_pclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0K\0\0\0\x03\0\0\0\b\0\0\x03]rst_apb\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\07\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10"\0\0\0\x03\0\0\0\x04\0\0\x03\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01i2stx_4ch0@120b0000\0\0\0\0\x03\0\0\0^[\0\0\0\0starfive,jh7110-i2stx-4ch0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\v\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0<\0\0\x01x\0\0\0\x03\0\0\0\x11\0\0\0\x03\0\0\0¢\0\0\0\x03\0\0\0¤\0\0\0\x03\0\0\0\x12\0\0\0\x03\0\0\0¥\0\0\0\x03\0\0\0§\0\0\0\x03\0\0\0¡\0\0\0\x1f\0\0\0\x03\0\0\09\0\0\x01\x7fmclk_inner\0bclk_mst\0lrck_mst\0mclk\0bclk\0lrck\0apb\0mclk_ext\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0e\0\0\0\x13\0\0\0f\0\0\0\x03\0\0\0 \0\0\x03]apb\0bclk\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x03¨\0\0\0\x1d\0\0\0/\0\0\0\x03\0\0\0\x03\0\0\x03tx\0\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\08\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0d\0\0\0\x02\0\0\0\x01i2stx_4ch1@120c0000\0\0\0\0\x03\0\0\0^[\0\0\0\0starfive,jh7110-i2stx-4ch1\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\f\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\\0\0\x01x\0\0\0\x03\0\0\0\x10\0\0\0\x03\0\0\0\x11\0\0\0\x03\0\0\0©\0\0\0\x03\0\0\0«\0\0\0\x03\0\0\0\x12\0\0\0\x03\0\0\0¬\0\0\0\x03\0\0\0®\0\0\0\x03\0\0\0\x13\0\0\0\x03\0\0\0\f\0\0\0\x03\0\0\0¨\0\0\0\x1f\0\0\0*\0\0\0+\0\0\0\x03\0\0\0a\0\0\x01\x7faudroot\0mclk_inner\0bclk_mst\0lrck_mst\0mclk\0bclk\0lrck\0mclk_out\0apb0\0apb\0mclk_ext\0bclk_ext\0lrck_ext\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0g\0\0\0\x13\0\0\0h\0\0\0\x03\0\0\0\b\0\0\x03¨\0\0\0\x1d\0\0\00\0\0\0\x03\0\0\0\x03\0\0\x03tx\0\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\09\0\0\0\x02\0\0\0\x01pwm@120d0000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-pwm\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\r\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x020control\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0y\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0l\0\0\0\x03\0\0\0\x04\0\0\x05V\0\x1e\0\0\0\x03\0\0\0\x04\0\0\x05k\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0\x05v\0\0\0\b\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0:\0\0\0\x02\0\0\0\x01tmon@120e0000\0\0\0\0\0\0\x03\0\0\0\x15\0\0\0\0starfive,jh7110-temp\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x12\x0e\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0Q\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0
\0\0\x01\x7fsense\0bus\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0|\0\0\0\x13\0\0\0{\0\0\0\x03\0\0\0
\0\0\x03]sense\0bus\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x05\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0`\0\0\0\x02\0\0\0\x01spi@13010000\0\0\0\0\0\0\0\x03\0\0\0\x0e\0\0\0\0cdns,qspi-nor\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0\x13\x01\0\0\0\0\0\0\0\x01\0\0\0\0\0\0!\0\0\0\0\0\0\0\0@\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0\x19\0\0\0\x03\0\0\0(\0\0\x01x\0\0\0\x03\0\0\0Z\0\0\0\x03\0\0\0X\0\0\0\x03\0\0\0
\0\0\0\x03\0\0\0W\0\0\0\x03\0\0\0Y\0\0\0\x03\0\0\0%\0\0\x01\x7fclk_ref\0clk_apb\0ahb1\0clk_ahb\0clk_src\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0>\0\0\0\x13\0\0\0=\0\0\0\x13\0\0\0?\0\0\0\x03\0\0\0\x04\0\0\x05\0\0\x01\0\0\0\0\x03\0\0\0\x04\0\0\x05ª\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x05º\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03\x0eæ²\0\0\0\x01nor-flash@0\0\0\0\0\x03\0\0\0\x0e\0\0\0\0jedec,spi-nor\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x05Ï\0\0\0\x05\0\0\0\x03\0\0\0\x04\0\0\x03\x05õá\0\0\0\0\x03\0\0\0\x04\0\0\x05ß\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x05í\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x05û\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06 \0\0\0\x01\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x01partitions\0\0\0\0\0\x03\0\0\0\x11\0\0\0\0fixed-partitions\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x01\0\0\0\x01spl@0\0\0\0\0\0\0\x03\0\0\0\b\0\0\0d\0\0\0\0\0\x04\0\0\0\0\0\x02\0\0\0\x01uboot-env@100000\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\0d\0\x0f\0\0\0\x01\0\0\0\0\0\x02\0\0\0\x01uboot@100000\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\0d\0\x10\0\0\00\0\0\0\0\0\x02\0\0\0\x01data@f00000\0\0\0\0\x03\0\0\0\b\0\0\0d\0ð\0\0\0\x10\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01sys_syscon@13030000\0\0\0\0\x03\0\0\0\a\0\0\0\0syscon\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\x03\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0!\0\0\0\x02\0\0\0\x01gpio@13040000\0\0\0\0\0\0\x03\0\0\0\x1c\0\0\0\0starfive,jh7110-sys-pinctrl\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\x04\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x020control\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0p\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0V\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\x06\x17\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x06#\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x19\0\0\0\x01i2c0-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x16\0\0\0\x01i2c0-pins-scl\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\09\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\f\0\0p\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x05\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0 \0\0\0\x02\0\0\0\x01i2c0-pins-sda\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0:\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x0f\0\x03\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x06\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0
\0\0\0\x02\0\0\0\x02\0\0\0\x01i2c5-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\02\0\0\0\x01i2c5-pins-scl\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x13\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02\0\0\0\x1dà\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0*\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0O\0\0\0\x02\0\0\0\x01i2c5-pins-sda\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x14\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\0\0\0\0\a\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0+\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0P\0\0\0\x02\0\0\0\x02\0\0\0\x01i2c6-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\03\0\0\0\x01i2c6-pins-scl\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x10\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02\0\0\0\x14\0p\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0.\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0V\0\0\0\x02\0\0\0\x01i2c6-pins-sda\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x11\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02\0\0\0\x17\x03\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0/\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0W\0\0\0\x02\0\0\0\x02\0\0\0\x01pwmdac0-pins\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0 \0\0\0\x01pwmdac0-pins-left\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0!\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¤\0\0\0 \0\0\x0e\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x1c\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01pwmdac0-pins-right\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0"\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¤\0\0\0\f\0\0p\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x1d\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01pwm-pins\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0:\0\0\0\x01pwm_ch0-pins\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0.\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¨\0\0\0\x0f\0\x03\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x18\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0 \0\0\0\x02\0\0\0\x01pwm_ch1-pins\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0;\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x12\0\x1c\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x19\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0
\0\0\0\x02\0\0\0\x02\0\0\0\x01ssp0-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0^[\0\0\0\x01ssp0-pins_tx\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\04\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01ssp0-pins_rx\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\05\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x02\0\0\0\f\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\x1c\0\0\0\x02\0\0\0\x01ssp0-pins_clk\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\00\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¨\0\0\0\x15\0à\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x1e\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01ssp0-pins_cs\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\01\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¨\0\0\0\x18\a\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x1f\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie0_perst_default\0\0\0\0\x01perst-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x1a\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\x12\0\x1c\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie0_perst_active\0\0\0\0\0\x01perst-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x1a\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\x12\0\x1c\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie0_wake_default\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0V\0\0\0\x01wake-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0 \0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¤\0\0\0\x06\0\0\x01À\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie0_clkreq_default\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0W\0\0\0\x01clkreq-pins\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0^[\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\x15\0à\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie1_perst_default\0\0\0\0\x01perst-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x1c\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\x18\a\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie1_perst_active\0\0\0\0\0\x01perst-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x1c\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\x18\a\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie1_wake_default\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0Y\0\0\0\x01wake-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x15\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\x03\0\0\08\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x02\0\0\0\x02\0\0\0\x01pcie1_clkreq_default\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0Z\0\0\0\x01clkreq-pins\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x1d\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0^[8\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x02\0\0\0\x02\0\0\0\x01usb-pins\0\0\0\0\0\0\0\x01drive-vbus-pin\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x19\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02 \0\0\0\x0f\0\x03\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\a\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01i2srx-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0%\0\0\0\x01i2srx-pins0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0=\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x18\a\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\x17\0\0\0\x02\0\0\0\x02\0\0\0\x01i2s-clk0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0$\0\0\0\x01i2s-clk0_bclk\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0&\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¤\0\0\0\x17\x03\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\b\0\0\x06\0\0\0!\0\0\0\x1f\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x02\0\0\0\x01i2s-clk0_lrclk\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0?\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x1eÀ\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\b\0\0\x06\0\0\0"\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x02\0\0\0\x02\0\0\0\x01i2stx-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\09\0\0\0\x01i2stx-pins0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0,\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¨\0\0\0 \0\0\x0e\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0E\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01tdm0-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x1e\0\0\0\x01tdm0-pins-tx\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0,\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¨\0\0\0 \0\0\x0e\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0)\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01tdm0-pins-rx\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0=\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x18\a\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0$\0\0\0\x02\0\0\0\x01tdm0-pins-sync\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0?\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x1eÀ\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0%\0\0\0\x02\0\0\0\x01tdm0-pins-pcmclk\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0&\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¤\0\0\0\x17\x03\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0#\0\0\0\x02\0\0\0\x02\0\0\0\x01uart0-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x14\0\0\0\x01uart0-pins-tx\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x05\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\a\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x14\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01uart0-pins-rx\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x06\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02°\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\x0e\0\0\0\x02\0\0\0\x02\0\0\0\x01uart1-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x15\0\0\0\x01uart1-pins-tx\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0<\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\a\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0D\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01uart1-pins-rx\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0=\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0\x18\a\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\07\0\0\0\x02\0\0\0\x02\0\0\0\x01i2c2-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x17\0\0\0\x01i2c2-pins-scl\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x1e\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0;\0\0\0\x02\0\0\0\x01i2c2-pins-sda\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x1f\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0<\0\0\0\x02\0\0\0\x02\0\0\0\x01mmc0-pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0?\0\0\0\x01mmc0-pins-rest\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0>\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02¬\0\0\0^[8\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\x13\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01mmc0-pins-cLK\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0-\0\0\0\x02\0\0\0\x01mmc0-pins-cmd\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0A\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0B\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data1\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0C\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data2\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0D\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data3\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0E\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data4\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0F\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data5\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0G\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data6\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0H\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x01mmc0-pins-data7\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0I\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x02\0\0\0\x02\0\0\0\x01sdcard1-pins\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0@\0\0\0\x01sdcard1-pins0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0
\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02\0\0\0\x02\0\0\0\x1c\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0-\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\07\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\0\0\0\0\x02\0\0\0\x01sdcard1-pins1\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0 \0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02°\0\0\0\b\0\0\a\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\09\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x13\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0,\0\0\0\x02\0\0\0\x01sdcard1-pins2\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\v\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02\0\0\0\x05\0\0\0à\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0:\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x14\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0-\0\0\0\x02\0\0\0\x01sdcard1-pins3\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\f\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02\0\0\0\b\0\0\a\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0;\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x15\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0.\0\0\0\x02\0\0\0\x01sdcard1-pins4\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\a\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02°\0\0\0\x02\0\0\0\x1c\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0<\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x16\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0/\0\0\0\x02\0\0\0\x01sdcard1-pins5\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\b\0\0\0\x03\0\0\0\x10\0\0\x068\0\0\x02°\0\0\0\x05\0\0\0à\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\v\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0=\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x17\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\00\0\0\0\x02\0\0\0\x02\0\0\0\x01inno_hdmi-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0M\0\0\0\x01inno_hdmi-scl\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\v\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\x06\0\0\0\x02\0\0\0\x01inno_hdmi-sda\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0\f\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\a\0\0\0\x02\0\0\0\x01inno_hdmi-cec-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x0e\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x06^\0\0\0
\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\x05\0\0\0\x02\0\0\0\x01inno_hdmi-hpd-pins\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x0f\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\b\0\0\0\x02\0\0\0\x02\0\0\0\x01mclk_ext_pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\08\0\0\0\x01mclk_ext_pins\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06*\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x06H\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x06\0\0\0\x1e\0\0\0\x03\0\0\0\x04\0\0\x06u\0\0\0\x01\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01timer@13050000\0\0\0\0\0\x03\0\0\0\x17\0\0\0\0starfive,jh7110-timers\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\x05\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x02N\0\0\0E\0\0\0F\0\0\0G\0\0\0H\0\0\0\x03\0\0\0\x1c\0\0\x03Ètimer0\0timer1\0timer2\0timer3\0\0\0\0\x03\0\0\0(\0\0\x01x\0\0\0\x03\0\0\0}\0\0\0\x03\0\0\0~\0\0\0\x03\0\0\0\x7f\0\0\0\x03\0\0\0\0\0\0\x03\0\0\0|\0\0\0\x03\0\0\0$\0\0\x01\x7ftimer0\0timer1\0timer2\0timer3\0apb_clk\0\0\0\0\x03\0\0\0(\0\0\x02¸\0\0\0\x13\0\0\0v\0\0\0\x13\0\0\0w\0\0\0\x13\0\0\0x\0\0\0\x13\0\0\0y\0\0\0\x13\0\0\0u\0\0\0\x03\0\0\0$\0\0\x03]timer0\0timer1\0timer2\0timer3\0apb_rst\0\0\0\0\x03\0\0\0\x04\0\0\09\x01n6\0\0\0\0\x02\0\0\0\x01mailbox@13060000\0\0\0\0\0\0\0\x03\0\0\0\x12\0\0\0\0starfive,mail_box\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\x06\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0\x03\0\0\0q\0\0\0\x03\0\0\0\b\0\0\x01\x7fclk_apb\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0D\0\0\0\x03\0\0\0\b\0\0\x03]mbx_rre\0\0\0\0\x03\0\0\0\b\0\0\x02N\0\0\0\x1a\0\0\0^[\0\0\0\x03\0\0\0\x04\0\0\x06¢\0\0\0\x02\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\f\0\0\0\x02\0\0\0\x01wdog@13070000\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-wdt\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\a\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0D\0\0\0\x03\0\0\0\x05\0\0\x03Èwdog\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0{\0\0\0\x03\0\0\0z\0\0\0\x03\0\0\0\x11\0\0\x01\x7fcore_clk\0apb_clk\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0m\0\0\0\x13\0\0\0n\0\0\0\x03\0\0\0\x11\0\0\x03]rst_apb\0rst_core\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x06®\0\0\0\x0f\0\0\0\x02\0\0\0\x01jpu@13090000\0\0\0\0\0\0\0\x03\0\0\0\r\0\0\0\0starfive,jpu\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13 \0\0\0\0\0\0\0\0\x03\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0\x0e\0\0\0\x03\0\0\0 \0\0\x01x\0\0\0\x03\0\0\0B\0\0\0\x03\0\0\0C\0\0\0\x03\0\0\0D\0\0\0\x03\0\0\0L\0\0\0\x03\0\0\0!\0\0\x01\x7faxi_clk\0core_clk\0apb_clk\0noc_bus\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0,\0\0\0\x13\0\0\0-\0\0\0\x13\0\0\0.\0\0\0\x03\0\0\0\x19\0\0\x03]rst_axi\0rst_core\0rst_apb\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x06º\0\0\0;\0\0\0\x03\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01vpu_dec@130A0000\0\0\0\0\0\0\0\x03\0\0\0\x0e\0\0\0\0starfive,vdec\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13
\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0\r\0\0\0\x03\0\0\0(\0\0\x01x\0\0\0\x03\0\0\0F\0\0\0\x03\0\0\0G\0\0\0\x03\0\0\0H\0\0\0\x03\0\0\0I\0\0\0\x03\0\0\0L\0\0\0\x03\0\0\0(\0\0\x01\x7faxi_clk\0bpu_clk\0vce_clk\0apb_clk\0noc_bus\0\0\0\0\x03\0\0\0(\0\0\x02¸\0\0\0\x13\0\0\0/\0\0\0\x13\0\0\00\0\0\0\x13\0\0\01\0\0\0\x13\0\0\02\0\0\0\x13\0\0\05\0\0\0\x03\0\0\0)\0\0\x03]rst_axi\0rst_bpu\0rst_vce\0rst_apb\0rst_sram\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\x06È\0\0\0\x03\0\0\0\b\0\0\x06º\0\0\0;\0\0\0\x03\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01vpu_enc@130B0000\0\0\0\0\0\0\0\x03\0\0\0\x0e\0\0\0\0starfive,venc\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\v\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0\x0f\0\0\0\x03\0\0\0(\0\0\x01x\0\0\0\x03\0\0\0N\0\0\0\x03\0\0\0O\0\0\0\x03\0\0\0P\0\0\0\x03\0\0\0Q\0\0\0\x03\0\0\0R\0\0\0\x03\0\0\0(\0\0\x01\x7faxi_clk\0bpu_clk\0vce_clk\0apb_clk\0noc_bus\0\0\0\0\x03\0\0\0(\0\0\x02¸\0\0\0\x13\0\0\06\0\0\0\x13\0\0\07\0\0\0\x13\0\0\08\0\0\0\x13\0\0\09\0\0\0\x13\0\0\0:\0\0\0\x03\0\0\0)\0\0\x03]rst_axi\0rst_bpu\0rst_vce\0rst_apb\0rst_sram\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\x06ß\0\0\0\x03\0\0\0\b\0\0\x06º\0\0\0;\0\0\0\x06\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01can@130d0000\0\0\0\0\0\0\0\x03\0\0\0\x1d\0\0\0\0starfive,jh7110-can\0ipms,can\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\r\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0p\0\0\0\x03\0\0\0\x18\0\0\x01x\0\0\0\x03\0\0\0s\0\0\0\x03\0\0\0u\0\0\0\x03\0\0\0t\0\0\0\x03\0\0\0^[\0\0\x01\x7fapb_clk\0core_clk\0timer_clk\0\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0o\0\0\0\x13\0\0\0p\0\0\0\x13\0\0\0q\0\0\0\x03\0\0\0^[\0\0\x03]rst_apb\0rst_core\0rst_timer\0\0\0\0\0\x03\0\0\0\x04\0\0\0?\x02bZ\0\0\0\0\x03\0\0\0\x10\0\0\x03Ø\0\0\0!\0\0\0\x10\0\0\0\x03\0\0\0\b\0\0\0\x03\0\0\0\x04\0\0\x06ö\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01can@130e0000\0\0\0\0\0\0\0\x03\0\0\0\x1d\0\0\0\0starfive,jh7110-can\0ipms,can\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x13\x0e\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0q\0\0\0\x03\0\0\0\x18\0\0\x01x\0\0\0\x03\0\0\0v\0\0\0\x03\0\0\0x\0\0\0\x03\0\0\0w\0\0\0\x03\0\0\0^[\0\0\x01\x7fapb_clk\0core_clk\0timer_clk\0\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0r\0\0\0\x13\0\0\0s\0\0\0\x13\0\0\0t\0\0\0\x03\0\0\0^[\0\0\x03]rst_apb\0rst_core\0rst_timer\0\0\0\0\0\x03\0\0\0\x04\0\0\0?\x02bZ\0\0\0\0\x03\0\0\0\x10\0\0\x03Ø\0\0\0!\0\0\0\0\0\0\x12\0\x04\0\0\0\0\0\x03\0\0\0\x04\0\0\x06ö\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0Ëdisabled\0\0\0\0\0\0\0\x02\0\0\0\x01crypto@16000000\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-sec\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0\x16\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\x16\0\0\0\0\0\0\0\0@\0\0\0\0\x03\0\0\0\x0e\0\0\x020secreg\0secdma\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02N\0\0\0\x1c\0\0\0\x1d\0\0\0\x03\0\0\0\x0e\0\0\x03Èsecirq\0dmairq\0\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0Í\0\0\0\x03\0\0\0Î\0\0\0\x03\0\0\0\x11\0\0\x01\x7fsec_hclk\0sec_ahb\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x03\0\0\0\b\0\0\x03]sec_hre\0\0\0\0\x03\0\0\0\x05\0\0\a
true\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\a)true\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\x03¨\0\0\0<\0\0\0\x01\0\0\0\x02\0\0\0<\0\0\0\0\0\0\0\x02\0\0\0\x03\0\0\0\f\0\0\x03sec_m\0sec_p\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01sec_dma@16008000\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0arm,pl080\0arm,primecell\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x04\0\0\x03i\0\x04\x10\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x16\0\0\0\0\0\0\0\0@\0\0\0\0\x03\0\0\0\b\0\0\x020sec_dma\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0\x1d\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0Í\0\0\0\x03\0\0\0Î\0\0\0\x03\0\0\0\x12\0\0\x01\x7fsec_hclk\0apb_pclk\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x03\0\0\0\b\0\0\x03]sec_hre\0\0\0\0\x03\0\0\0\0\0\0\a4\0\0\0\x03\0\0\0\0\0\0\aK\0\0\0\x03\0\0\0\x04\0\0\ab\0\0\x01\0\0\0\0\x03\0\0\0\x04\0\0\at\0\0\0 \0\0\0\x03\0\0\0\x04\0\0\a
\0\0\0\x02\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0<\0\0\0\x02\0\0\0\x01trng@1600C000\0\0\0\0\0\0\x03\0\0\0\x15\0\0\0\0starfive,jh7110-trng\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x16\0À\0\0\0\0\0\0\0@\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0Í\0\0\0\x03\0\0\0Î\0\0\0\x03\0\0\0 \0\0\x01\x7fhclk\0ahb\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0\x1e\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01mmc@16010000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-mmc\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x16\x01\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0[\0\0\0\x03\0\0\0]\0\0\0\x03\0\0\0\b\0\0\x01\x7fbiu\0ciu\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0@\0\0\0\x03\0\0\0\x06\0\0\x03]reset\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0J\0\0\0\x03\0\0\0\x04\0\0\x05\0\0\0 \0\0\0\x03\0\0\0\0\0\0\a\0\0\0\x03\0\0\0\x04\0\0\a§\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03\x05õá\0\0\0\0\x03\0\0\0\b\0\0\a±\0\0\0\x03\0\0\0]\0\0\0\x03\0\0\0\x04\0\0\aÁ\x02úð\0\0\0\x03\0\0\0\x04\0\0\aÖ\0\0\x01,\0\0\0\x03\0\0\0\x04\0\0\a{\0\0\0\b\0\0\0\x03\0\0\0\0\0\0\aè\0\0\0\x03\0\0\0\0\0\0\aú\0\0\0\x03\0\0\0\0\0\0\b \0\0\0\x03\0\0\0\0\0\0\b\x17\0\0\0\x03\0\0\0\x04\0\0\b(\0\0\0È\0\0\0\x03\0\0\0\x04\0\0\b?\0\0\0=\0\0\0\x03\0\0\0\x04\0\0\bK\0\0\0>\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0?\0\0\0\x02\0\0\0\x01mmc@16020000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-mmc\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x16\x02\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0\\0\0\0\x03\0\0\0^\0\0\0\x03\0\0\0\b\0\0\x01\x7fbiu\0ciu\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0A\0\0\0\x03\0\0\0\x06\0\0\x03]reset\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0K\0\0\0\x03\0\0\0\x04\0\0\x05\0\0\0 \0\0\0\x03\0\0\0\0\0\0\a\0\0\0\x03\0\0\0\x04\0\0\a§\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03\x05õá\0\0\0\0\x03\0\0\0\b\0\0\a±\0\0\0\x03\0\0\0^\0\0\0\x03\0\0\0\x04\0\0\aÁ\x02úð\0\0\0\x03\0\0\0\x04\0\0\aÖ\0\0\x01,\0\0\0\x03\0\0\0\x04\0\0\a{\0\0\0\x04\0\0\0\x03\0\0\0\0\0\0\bX\0\0\0\x03\0\0\0\0\0\0\b`\0\0\0\x03\0\0\0\0\0\0\bg\0\0\0\x03\0\0\0\0\0\0\bq\0\0\0\x03\0\0\0\x04\0\0\b(\0\0\0È\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0@\0\0\0\x02\0\0\0\x01ethernet@16030000\0\0\0\0\0\0\x03\0\0\0 \0\0\0\0starfive,dwmac\0snps,dwmac-5.10a\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x16\x03\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0,\0\0\x01\x7fgtx\0tx\0ptp_ref\0stmmaceth\0pclk\0gtxc\0rmii_rtx\0\0\0\0\x03\0\0\08\0\0\x01x\0\0\0\x03\0\0\0l\0\0\0\x03\0\0\0à\0\0\0\x03\0\0\0m\0\0\0\x03\0\0\0Ý\0\0\0\x03\0\0\0Þ\0\0\0\x03\0\0\0o\0\0\0\x03\0\0\0ß\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0¡\0\0\0\x13\0\0\0 \0\0\0\x03\0\0\0\x0e\0\0\x03]ahb\0stmmaceth\0\0\0\0\0\0\x03\0\0\0\f\0\0\x02N\0\0\0\a\0\0\0\x06\0\0\0\x05\0\0\0\x03\0\0\0\x1c\0\0\x03Èmacirq\0eth_wake_irq\0eth_lpi\0\0\0\0\x03\0\0\0 \0\0\brgmii-id\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\b\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\b¦\0\0\0\b\0\0\0\x03\0\0\0\x04\0\0\bÂ\0\0\b\0\0\0\0\x03\0\0\0\x04\0\0\bÐ\0\0\b\0\0\0\0\x03\0\0\0\0\0\0\bÞ\0\0\0\x03\0\0\0\0\0\0\bï\0\0\0\x03\0\0\0\0\0\0\bþ\0\0\0\x03\0\0\0\x04\0\0 \x19\0\0\0A\0\0\0\x03\0\0\0\0\0\0 )\0\0\0\x03\0\0\0\0\0\0 2\0\0\0\x03\0\0\0\x04\0\0 M\0\0\0\x10\0\0\0\x03\0\0\0\x04\0\0 X\0\0\0\x10\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01ethernet-phy@0\0\0\0\0\0\x03\0\0\0\x04\0\0 c\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0 q\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0 }\0\0\0\x06\0\0\0\x03\0\0\0\x04\0\0 \0\0\0\0\0\0\0\x03\0\0\0\x04\0\0 \0\0\0
\0\0\0\x03\0\0\0\x04\0\0 ¥\0\0\0\x05\0\0\0\x03\0\0\0\x04\0\0 µ\0\0\0
\0\0\0\x03\0\0\0\x04\0\0 Â\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0 Ñ\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0 á\0\0\0\x01\0\0\0\x02\0\0\0\x02\0\0\0\x01ethernet@16040000\0\0\0\0\0\0\x03\0\0\0 \0\0\0\0starfive,dwmac\0snps,dwmac-5.10a\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x16\x04\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0,\0\0\x01\x7fgtx\0tx\0ptp_ref\0stmmaceth\0pclk\0gtxc\0rmii_rtx\0\0\0\0\x03\0\0\08\0\0\x01x\0\0\0\x03\0\0\0d\0\0\0\x03\0\0\0i\0\0\0\x03\0\0\0f\0\0\0\x03\0\0\0a\0\0\0\x03\0\0\0b\0\0\0\x03\0\0\0k\0\0\0\x03\0\0\0e\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0C\0\0\0\x13\0\0\0B\0\0\0\x03\0\0\0\x0e\0\0\x03]ahb\0stmmaceth\0\0\0\0\0\0\x03\0\0\0\f\0\0\x02N\0\0\0N\0\0\0M\0\0\0L\0\0\0\x03\0\0\0\x1c\0\0\x03Èmacirq\0eth_wake_irq\0eth_lpi\0\0\0\0\x03\0\0\0 \0\0\brgmii-id\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\b\0\0\0@\0\0\0\x03\0\0\0\x04\0\0\b¦\0\0\0\b\0\0\0\x03\0\0\0\x04\0\0\bÂ\0\0\b\0\0\0\0\x03\0\0\0\x04\0\0\bÐ\0\0\b\0\0\0\0\x03\0\0\0\0\0\0\bÞ\0\0\0\x03\0\0\0\0\0\0\bï\0\0\0\x03\0\0\0\0\0\0\bþ\0\0\0\x03\0\0\0\x04\0\0 \x19\0\0\0A\0\0\0\x03\0\0\0\0\0\0 )\0\0\0\x03\0\0\0\0\0\0 2\0\0\0\x03\0\0\0\x04\0\0 M\0\0\0\x10\0\0\0\x03\0\0\0\x04\0\0 X\0\0\0\x10\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01ethernet-phy@1\0\0\0\0\0\x03\0\0\0\x04\0\0 c\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0 q\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0 }\0\0\0\x06\0\0\0\x03\0\0\0\x04\0\0 ¥\0\0\0\x05\0\0\0\x03\0\0\0\x04\0\0 µ\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0 \0\0\0\0\0\0\0\x03\0\0\0\x04\0\0 \0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0 Â\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0 Ñ\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0 á\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01dma-controller@16050000\0\0\0\0\x03\0\0\0\x18\0\0\0\0starfive,jh7110-axi-dma\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x16\x05\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x18\0\0\x01x\0\0\0\x03\0\0\0Ù\0\0\0\x03\0\0\0Ú\0\0\0\x03\0\0\0`\0\0\0\x03\0\0\0\x1a\0\0\x01\x7fcore-clk\0cfgr-clk\0noc-clk\0\0\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0
\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\x1e\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0I\0\0\0\x03\0\0\0\x04\0\0\a
\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0 ò\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0 ÿ\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0
\x10\0\0\0\x03\0\0\0\x03\0\0\0\x10\0\0
\0\x01\0\0\0\x01\0\0\0\x01\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x10\0\0
0\0\0\0\0\0\0\0\x01\0\0\0\x02\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0
>\0\0\0\x0f\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x1d\0\0\0\x02\0\0\0\x01aon_syscon@17010000\0\0\0\0\x03\0\0\0\a\0\0\0\0syscon\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x17\x01\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0C\0\0\0\x02\0\0\0\x01gpio@17020000\0\0\0\0\0\0\x03\0\0\0\x1c\0\0\0\0starfive,jh7110-aon-pinctrl\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x17\x02\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x020control\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0¢\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0U\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\x06\x17\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x06#\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0_\0\0\0\x02\0\0\0\x01power-controller@17030000\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-pmu\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x17\x03\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0o\0\0\0\x03\0\0\0\x04\0\0
U\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0;\0\0\0\x02\0\0\0\x01rtc@17040000\0\0\0\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-rtc\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x17\x04\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\f\0\0\x02N\0\0\0
\0\0\0\v\0\0\0\f\0\0\0\x03\0\0\0\x1f\0\0\x03Èrtc_ms_pulse\0rtc_sec_pulse\0rtc\0\0\0\0\0\x03\0\0\0\x10\0\0\x01x\0\0\0\x03\0\0\0å\0\0\0\x03\0\0\0è\0\0\0\x03\0\0\0\r\0\0\x01\x7fpclk\0cal_clk\0\0\0\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0§\0\0\0\x13\0\0\0¥\0\0\0\x13\0\0\0¦\0\0\0\x03\0\0\0\x18\0\0\x03]rst_osc\0rst_apb\0rst_cal\0\0\0\0\x03\0\0\0\x04\0\0
i\0\x0fB@\0\0\0\x02\0\0\0\x01gpu@18000000\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\0\0img-gpu\0\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0\x18\0\0\0\0\0\0\0\0\x10\0\0\0\0\0\0\x010À\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\00\0\0\x01x\0\0\0\x03\0\0\0-\0\0\0\x03\0\0\00\0\0\0\x03\0\0\01\0\0\0\x03\0\0\0.\0\0\0\x03\0\0\0/\0\0\0\x03\0\0\02\0\0\0\x03\0\0\00\0\0\x01\x7fclk_bv\0clk_apb\0clk_rtc\0clk_core\0clk_sys\0clk_axi\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0\x15\0\0\0\x13\0\0\0\x16\0\0\0\x03\0\0\0\x11\0\0\x03]rst_apb\0rst_doma\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x06º\0\0\0;\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0R\0\0\0\x03\0\0\0\x04\0\0
|\0z\x12\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x02\0\0\0\x01vin_sysctl@19800000\0\0\0\0\x03\0\0\0\x14\0\0\0\0starfive,jh7110-vin\0\0\0\0\x03\0\0\0\0\0\0d\0\0\0\0\x19\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x19\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x19\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x19\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x19\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\x11\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x17\x03\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\x13\x02\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0+\0\0\x020csi2rx\0vclk\0vrst\0sctrl\0isp\0trst\0pmu\0syscrg\0\0\0\0\0\x03\0\0\0\0\0\x01x\0\0\0B\0\0\0\0\0\0\0B\0\0\0\x06\0\0\0B\0\0\0\a\0\0\0B\0\0\0\r\0\0\0B\0\0\0\x02\0\0\0B\0\0\0\f\0\0\0B\0\0\0\x01\0\0\0B\0\0\0\b\0\0\0B\0\0\0 \0\0\0B\0\0\0
\0\0\0B\0\0\0\v\0\0\0B\0\0\0\x03\0\0\0B\0\0\0\x04\0\0\0B\0\0\0\x05\0\0\0\x03\0\0\03\0\0\0\x03\0\0\04\0\0\0\x03\0\0\x01\x04\0\0\x01\x7fclk_apb_func\0clk_pclk\0clk_sys_clk\0clk_wrapper_clk_c\0clk_dvp_inv\0clk_axiwr\0clk_mipi_rx0_pxl\0clk_pixel_clk_if0\0clk_pixel_clk_if1\0clk_pixel_clk_if2\0clk_pixel_clk_if3\0clk_m31dphy_cfgclk_in\0clk_m31dphy_refclk_in\0clk_m31dphy_txclkesc_lan0\0clk_ispcore_2x\0clk_isp_axi\0\0\0\0\x03\0\0\0p\0\0\x02¸\0\0\0\x13\0\0\0À\0\0\0\x13\0\0\0Á\0\0\0\x13\0\0\0Ä\0\0\0\x13\0\0\0É\0\0\0\x13\0\0\0Ê\0\0\0\x13\0\0\0Ë\0\0\0\x13\0\0\0Å\0\0\0\x13\0\0\0Æ\0\0\0\x13\0\0\0Ç\0\0\0\x13\0\0\0È\0\0\0\x13\0\0\0Â\0\0\0\x13\0\0\0Ã\0\0\0\x13\0\0\0)\0\0\0\x13\0\0\0*\0\0\0\x03\0\0\0Ô\0\0\x03]rst_wrapper_p\0rst_wrapper_c\0rst_pclk\0rst_sys_clk\0rst_axird\0rst_axiwr\0rst_pixel_clk_if0\0rst_pixel_clk_if1\0rst_pixel_clk_if2\0rst_pixel_clk_if3\0rst_m31dphy_hw\0rst_m31dphy_b09_always_on\0rst_isp_top_n\0rst_isp_top_axi\0\0\0\0\x03\0\0\0\b\0\0
\0\0\0C\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x06º\0\0\0;\0\0\0\x05\0\0\0\x03\0\0\0\x14\0\0\x02N\0\0\0\\0\0\0W\0\0\0X\0\0\0Y\0\0\0Z\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x01ports\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01port@1\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01endpoint@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0D\0\0\0\x03\0\0\0\x04\0\0\x05\x01\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x05
\0\0\0\x04\0\0\0\x03\0\0\0\b\0\0\x05\x16\0\0\0\0\0\0\0\x01\0\0\0\x03\0\0\0\f\0\0\x05!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\05\0\0\0\x02\0\0\0\x01endpoint@1\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0E\0\0\0\x03\0\0\0\x04\0\0\x05\x01\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x05
\0\0\0\x04\0\0\0\x03\0\0\0\b\0\0\x05\x16\0\0\0\0\0\0\0\x01\0\0\0\x03\0\0\0\f\0\0\x05!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\06\0\0\0\x02\0\0\0\x01endpoint@2\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0F\0\0\0\x03\0\0\0\x04\0\0\x05\x01\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\x05
\0\0\0\x04\0\0\0\x03\0\0\0\b\0\0\x05\x16\0\0\0\0\0\0\0\x01\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\07\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01clock-controller@19810000\0\0\0\0\0\0\x03\0\0\0\x18\0\0\0\0starfive,jh7110-clk-isp\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0\x19\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x020isp\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\x01\0\0\0\x03\0\0\0 \0\0\x01x\0\0\0\x03\0\0\x01
\0\0\0\x03\0\0\03\0\0\0\x03\0\0\04\0\0\0\x03\0\0\05\0\0\0\x03\0\0\0\0\0\x01\x7fu0_dom_isp_top_clk_dom_isp_top_clk_dvp\0u0_dom_isp_top_clk_dom_isp_top_clk_ispcore_2x\0u0_dom_isp_top_clk_dom_isp_top_clk_isp_axi\0u0_sft7110_noc_bus_clk_isp_axi\0\0\0\0\0\x03\0\0\0\x18\0\0\x02¸\0\0\0\x13\0\0\0)\0\0\0\x13\0\0\0*\0\0\0\x13\0\0\0\x1c\0\0\0\x03\0\0\00\0\0\x03]rst_isp_top_n\0rst_isp_top_axi\0rst_isp_noc_bus_n\0\0\0\0\x03\0\0\0\b\0\0\x06º\0\0\0;\0\0\0\x05\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0B\0\0\0\x02\0\0\0\x01dc8200@29400000\0\0\0\0\x03\0\0\0*\0\0\0\0starfive,jh7110-dc8200\0verisilicon,dc8200\0\0\0\0\0\0\x03\0\0\0\x04\0\0
\0\0\0G\0\0\0\x03\0\0\00\0\0\0d\0\0\0\0)@\0\0\0\0\0\0\0\0\x01\0\0\0\0\0)@\b\0\0\0\0\0\0\0 \0\0\0\0\0\x17\x03\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0_\0\0\0\x03\0\0\0t\0\0\x01x\0\0\0\x03\0\0\0<\0\0\0\x03\0\0\0:\0\0\0\x03\0\0\0>\0\0\0\x03\0\0\0=\0\0\0H\0\0\0\a\0\0\0H\0\0\0\b\0\0\0H\0\0\0\x04\0\0\0H\0\0\0\x05\0\0\0H\0\0\0\x06\0\0\0\x03\0\0\0>\0\0\0H\0\0\0 \0\0\0I\0\0\0H\0\0\0\x01\0\0\0H\0\0\0'\0\0\0H\0\0\0(\0\0\0\x03\0\0\0¯\0\0\x01\x7fnoc_disp\0vout_src\0top_vout_axi\0top_vout_ahb\0pix_clk\0vout_pix1\0axi_clk\0core_clk\0vout_ahb\0vout_top_axi\0vout_top_lcd\0hdmitx0_pixelclk\0dc8200_pix0\0dc8200_pix0_out\0dc8200_pix1_out\0\0\0\0\0\x03\0\0\0(\0\0\x02¸\0\0\0\x13\0\0\0+\0\0\0\x13\0\0\0à\0\0\0\x13\0\0\0á\0\0\0\x13\0\0\0â\0\0\0\x13\0\0\0\x1a\0\0\0\x03\0\0\03\0\0\x03]rst_vout_src\0rst_axi\0rst_ahb\0rst_core\0rst_noc_disp\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x01port\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01endpoint@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0J\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0 \0\0\0\x02\0\0\0\x01endpoint@1\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0K\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0N\0\0\0\x02\0\0\0\x01endpoint@2\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0L\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0
\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01hdmi@29590000\0\0\0\0\0\0\x03\0\0\0\x1f\0\0\0\0starfive,jh7110-hdmi\0inno,hdmi\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0)Y\0\0\0\0\0\0\0\0@\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0c\0\0\0\x03\0\0\0\x1c\0\0\x01x\0\0\0H\0\0\0\x11\0\0\0H\0\0\0\x0f\0\0\0H\0\0\0\x10\0\0\0I\0\0\0\x03\0\0\0\x16\0\0\x01\x7fsysclk\0mclk\0bclk\0pclk\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0é\0\0\0\x03\0\0\0\b\0\0\x03]hdmi_tx\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\x04\0\0\x02Í\0\0\0M\0\0\0\x03\0\0\0\f\0\0
µ\0\0\0\x19\0\0\0\x0f\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0e\0\0\0\x01port\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01endpoint@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0N\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0K\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01dssctrl@295B0000\0\0\0\0\0\0\0\x03\0\0\04\0\0\0\0starfive,jh7110-dssctrl\0verisilicon,dss-ctrl\0syscon\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0)[\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0G\0\0\0\x02\0\0\0\x01clock-controller@295C0000\0\0\0\0\0\0\x03\0\0\0\x19\0\0\0\0starfive,jh7110-clk-vout\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0)\\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x05\0\0\x020vout\0\0\0\0\0\0\0\x03\0\0\0\x1c\0\0\x01x\0\0\0I\0\0\0O\0\0\0P\0\0\0\x03\0\0\0:\0\0\0\x03\0\0\0=\0\0\0\x03\0\0\0N\0\0\x01\x7fhdmitx0_pixelclk\0mipitx_dphy_rxesc\0mipitx_dphy_txbytehs\0vout_src\0vout_top_ahb\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0+\0\0\0\x03\0\0\0 \0\0\x03]vout_src\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0,\0\0\0\x01\0\0\0\x03\0\0\0\b\0\0\x06º\0\0\0;\0\0\0\x04\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0H\0\0\0\x02\0\0\0\x01mipi@295d0000\0\0\0\0\0\0\x03\0\0\0"\0\0\0\0starfive,jh7110-mipi_dsi\0cdns,dsi\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0)]\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\0b\0\0\0\x03\0\0\0\x04\0\0\x020dsi\0\0\0\0\x03\0\0\0 \0\0\x01x\0\0\0H\0\0\0\v\0\0\0H\0\0\0
\0\0\0H\0\0\0\r\0\0\0H\0\0\0\f\0\0\0\x03\0\0\0\x12\0\0\x01\x7fdpi\0apb\0txesc\0sys\0\0\0\0\0\0\x03\0\0\00\0\0\x02¸\0\0\0\x13\0\0\0ã\0\0\0\x13\0\0\0ä\0\0\0\x13\0\0\0å\0\0\0\x13\0\0\0æ\0\0\0\x13\0\0\0ç\0\0\0\x13\0\0\0è\0\0\0\x03\0\0\09\0\0\x03]dsi_dpi\0dsi_apb\0dsi_rxesc\0dsi_sys\0dsi_txbytehs\0dsi_txesc\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0
¾\0\0\0Q\0\0\0\x03\0\0\0\x05\0\0\x04(dphy\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x01ports\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01port@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x01endpoint@0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0R\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x18\0\0\0\x02\0\0\0\x01endpoint@1\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0S\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\x1a\0\0\0\x02\0\0\0\x02\0\0\0\x01port@1\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\x01\0\0\0\x01endpoint\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x01Ì\0\0\0T\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\v\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01mipi-dphy@295e0000\0\0\0\0\0\x03\0\0\0.\0\0\0\0starfive,jh7110-mipi-dphy-tx\0m31,mipi-dphy-tx\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0)^\0\0\0\0\0\0\0\x01\0\0\0\0\0\x03\0\0\0\b\0\0\x01x\0\0\0H\0\0\0\x0e\0\0\0\x03\0\0\0\v\0\0\x01\x7fdphy_txesc\0\0\0\0\0\x03\0\0\0\x10\0\0\x02¸\0\0\0\x13\0\0\0ê\0\0\0\x13\0\0\0ë\0\0\0\x03\0\0\0\x17\0\0\x03]dphy_sys\0dphy_txbytehs\0\0\0\0\0\x03\0\0\0\x04\0\0
Ã\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0Q\0\0\0\x02\0\0\0\x01pcie@2B000000\0\0\0\0\0\0\x03\0\0\0.\0\0\0\0starfive,jh7110-pcie\0plda,pci-xpressrich3-axi\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0+\0\0\0\0\0\0\0\x01\0\0\0\0\0\0 @\0\0\0\0\0\0\0\x10\0\0\0\0\0\0\x03\0\0\0\v\0\0\x020reg\0config\0\0\0\0\0\x03\0\0\0\x04\0\0\0hpci\0\0\0\0\x03\0\0\0\x14\0\0\x03ì\0\0\0&\0\0\0À\0\0\0Ä\0\0\x010\0\0\x01¸\0\0\0\x03\0\0\0\f\0\0
Î\0\0\0U\0\0\0(\0\0\0\0\0\0\x03\0\0\0\b\0\0
ß\0\0\0\0\0\0\0ÿ\0\0\0\x03\0\0\08\0\0\x02)\0\0\0\0\0\0\00\0\0\0\0\0\0\00\0\0\0\0\0\0\0\b\0\0\0Ã\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\0@\0\0\0\0\0\0\x03\0\0\0\x04\0\0
é\0\0\0\r\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\08\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\x03Èmsi\0\0\0\0\x03\0\0\0\x04\0\0\x02\x18\0\0\0\r\0\0\0\x03\0\0\0\x10\0\0
ô\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\x03\0\0\0`\0\0\v\a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\r\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\r\0\0\0\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\r\0\0\0\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\r\0\0\0\x04\0\0\0\x03\0\0\00\0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x03\0\0\03\0\0\x03]rst_mst0\0rst_slv0\0rst_slv\0rst_brg\0rst_core\0rst_apb\0\0\0\0\0\x03\0\0\0 \0\0\x01x\0\0\0\x03\0\0\0`\0\0\0\x03\0\0\0È\0\0\0\x03\0\0\0Æ\0\0\0\x03\0\0\0Ç\0\0\0\x03\0\0\0\x14\0\0\x01\x7fnoc\0tl\0axi_mst0\0apb\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\b\0\0\x02Í\0\0\0V\0\0\0W\0\0\0\x03\0\0\0\f\0\0\x03:\0\0\0\x19\0\0\0\x1a\0\0\0\x01\0\0\0\x02\0\0\0\x01pcie@2C000000\0\0\0\0\0\0\x03\0\0\0.\0\0\0\0starfive,jh7110-pcie\0plda,pci-xpressrich3-axi\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x03\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0ç\0\0\0\x01\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0,\0\0\0\0\0\0\0\x01\0\0\0\0\0\0 À\0\0\0\0\0\0\0\x10\0\0\0\0\0\0\x03\0\0\0\v\0\0\x020reg\0config\0\0\0\0\0\x03\0\0\0\x04\0\0\0hpci\0\0\0\0\x03\0\0\0\x14\0\0\x03ì\0\0\0&\0\0\x02p\0\0\x02t\0\0\x02à\0\0\x03h\0\0\0\x03\0\0\0\f\0\0
Î\0\0\0X\0\0\0(\0\0\0\0\0\0\x03\0\0\0\b\0\0
ß\0\0\0\0\0\0\0ÿ\0\0\0\x03\0\0\08\0\0\x02)\0\0\0\0\0\0\08\0\0\0\0\0\0\08\0\0\0\0\0\0\0\b\0\0\0Ã\0\0\0\0\0\0 \0\0\0\0\0\0 \0\0\0\0\0\0\0@\0\0\0\0\0\0\x03\0\0\0\x04\0\0
é\0\0\0\r\0\0\0\x03\0\0\0\x04\0\0\x02N\0\0\09\0\0\0\x03\0\0\0\0\0\0\0Ò\0\0\0\x03\0\0\0\x04\0\0\x03Èmsi\0\0\0\0\x03\0\0\0\x04\0\0\x02\x18\0\0\0\r\0\0\0\x03\0\0\0\x10\0\0
ô\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\x03\0\0\0`\0\0\v\a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\r\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\r\0\0\0\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\r\0\0\0\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\r\0\0\0\x04\0\0\0\x03\0\0\00\0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x13\0\0\0\0\0\0\x03\0\0\03\0\0\x03]rst_mst0\0rst_slv0\0rst_slv\0rst_brg\0rst_core\0rst_apb\0\0\0\0\0\x03\0\0\0 \0\0\x01x\0\0\0\x03\0\0\0`\0\0\0\x03\0\0\0Ë\0\0\0\x03\0\0\0É\0\0\0\x03\0\0\0Ê\0\0\0\x03\0\0\0\x14\0\0\x01\x7fnoc\0tl\0axi_mst0\0apb\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¿default\0\0\0\0\x03\0\0\0\b\0\0\x02Í\0\0\0Y\0\0\0Z\0\0\0\x03\0\0\0\f\0\0\x03:\0\0\0\x19\0\0\0\x1c\0\0\0\x01\0\0\0\x02\0\0\0\x01e24\0\0\0\0\x03\0\0\0\r\0\0\0\0starfive,e24\0\0\0\0\0\0\0\x03\0\0\0\0\0\0\x04^[\0\0\0\x03\0\0\0 \0\0\0d\0\0\0\0n!\0\0\0\0\0\0\0\0\x10\0\0\0\0\0n!\x10\0\0\0\0\0\0\x03ð\0\0\0\0\x03\0\0\0\f\0\0\x020ecmd\0espace\0\0\0\0\x03\0\0\0\x18\0\0\x01x\0\0\0\x03\0\0\0Ö\0\0\0\x03\0\0\0×\0\0\0\x03\0\0\0Ø\0\0\0\x03\0\0\0\x19\0\0\x01\x7fclk_rtc\0clk_core\0clk_dbg\0\0\0\0\0\0\0\x03\0\0\0\b\0\0\x02¸\0\0\0\x13\0\0\0\0\0\0\x03\0\0\0 \0\0\x03]e24_core\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x03ì\0\0\0&\0\0\0\x03\0\0\0\x04\0\0\x02\x18\0\0\0\r\0\0\0\x03\0\0\0\b\0\0\x04Me24_elf\0\0\0\0\x03\0\0\0\x04\0\0\v\x15\0\0\0\x01\0\0\0\x03\0\0\0\x06\0\0\x01Ütx\0rx\0\0\0\0\0\0\x03\0\0\0\x18\0\0\x01ç\0\0\0\f\0\0\0\0\0\0\0\x02\0\0\0\f\0\0\0\x02\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x01\0\0\0\x03\0\0\0\x10\0\0\x02)là\0\0\0\0\0\0là\0\0\x01`\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x04[\0\0\0[\0\0\0\x01dsp@0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01pwmdac-transmitter\0\0\0\0\0\x03\0\0\0^[\0\0\0\0starfive,jh7110-pwmdac-dit\0\0\0\0\0\x03\0\0\0\x04\0\0\x03·\0\0\0\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0^\0\0\0\x02\0\0\0\x01snd-card3\0\0\0\0\0\0\x03\0\0\0\x12\0\0\0\0simple-audio-card\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0^[\0\0\v\x1eStarfive-PWMDAC-Sound-Card\0\0\0\0\0\x01simple-audio-card,dai-link@0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\a\0\0\v5left_j\0\0\0\0\0\x03\0\0\0\x04\0\0\v<\0\0\0\\0\0\0\x03\0\0\0\x04\0\0\vL\0\0\0\\0\0\0\x01cpu\0\0\0\0\x03\0\0\0\x04\0\0\vY\0\0\0]\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0\\0\0\0\x02\0\0\0\x01codec\0\0\0\0\0\0\x03\0\0\0\x04\0\0\vY\0\0\0^\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01aliases\0\0\0\0\x03\0\0\0\x12\0\0\vc/soc/spi@13010000\0\0\0\0\0\0\x03\0\0\0\x13\0\0\vh/soc/gpio@13040000\0\0\0\0\0\x03\0\0\0\x17\0\0\vn/soc/ethernet@16030000\0\0\0\0\0\x03\0\0\0\x17\0\0\vx/soc/ethernet@16040000\0\0\0\0\0\x03\0\0\0\x12\0\0\v/soc/mmc@16010000\0\0\0\0\0\0\x03\0\0\0\x12\0\0\v/soc/mmc@16020000\0\0\0\0\0\0\x03\0\0\0\x15\0\0\v/soc/serial@10000000\0\0\0\0\0\0\0\x03\0\0\0\x15\0\0\v/soc/serial@10010000\0\0\0\0\0\0\0\x03\0\0\0\x15\0\0\v/soc/serial@12000000\0\0\0\0\0\0\0\x03\0\0\0\x12\0\0\v¤/soc/i2c@10030000\0\0\0\0\0\0\x03\0\0\0\x12\0\0\v©/soc/i2c@10040000\0\0\0\0\0\0\x03\0\0\0\x12\0\0\v®/soc/i2c@10050000\0\0\0\0\0\0\x03\0\0\0\x12\0\0\v³/soc/i2c@12030000\0\0\0\0\0\0\x03\0\0\0\x12\0\0\v¸/soc/i2c@12040000\0\0\0\0\0\0\x03\0\0\0\x12\0\0\v½/soc/i2c@12050000\0\0\0\0\0\0\x03\0\0\0\x12\0\0\vÂ/soc/i2c@12060000\0\0\0\0\0\0\x02\0\0\0\x01chosen\0\0\0\0\0\x03\0\0\0\b\0\0\vÇ\0\0\0\0F\x10\0\0\0\0\0\x03\0\0\0\b\0\0\vÚ\0\0\0\0L\0\0\0\0\0\0\x03\0\0\0\x0f\0\0\vëserial0:115200\0\0\0\0\0\x03\0\0\0\x1d\0\0\v÷debug console=ttyS0 rootwait\0\0\0\0\0\0\0\x02\0\0\0\x01memory@40000000\0\0\0\0\x03\0\0\0\a\0\0\0hmemory\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0@\0\0\0\0\0\0\x02\0\0\0\0\0\0\0\x02\0\0\0\x01reserved-memory\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x02\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\x02\0\0\0\x03\0\0\0\0\0\0\x02)\0\0\0\x01linux,cma\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0\0shared-dma-pool\0\0\0\0\x03\0\0\0\0\0\0\f\x01\0\0\0\x03\0\0\0\b\0\0\0\0\0\0\0 \0\0\0\0\0\0\x03\0\0\0\b\0\0\f
\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x10\0\0\f\x14\0\0\0\0p\0\0\0\0\0\0\0 \0\0\0\0\0\0\x03\0\0\0\0\0\0\f!\0\0\0\x02\0\0\0\x01e24@c0000000\0\0\0\0\0\0\0\x03\0\0\0\x10\0\0\0d\0\0\0\0là\0\0\0\0\0\0\x01`\0\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0[\0\0\0\x02\0\0\0\x01xrpbuffer@f0000000\0\0\0\0\0\x03\0\0\0@\0\0\0d\0\0\0\0iÀ\0\0\0\0\0\0\x01ÿÿÿ\0\0\0\0kÀ\0\0\0\0\0\0\0\0\x10\0\0\0\0\0kÀ\x10\0\0\0\0\0\0ÿð\0\0\0\0\0lÀ\0\0\0\0\0\0\0\0\x10\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\01\0\0\0\x02\0\0\0\x02\0\0\0\x01leds\0\0\0\0\0\0\0\x03\0\0\0
\0\0\0\0gpio-leds\0\0\0\0\0\0\x01led-ack\0\0\0\0\x03\0\0\0\f\0\0\x034\0\0\0_\0\0\0\x03\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\f3\0\0\0\x02\0\0\0\x03\0\0\0
\0\0\f9heartbeat\0\0\0\0\0\0\x03\0\0\0
\0\0\fBheartbeat\0\0\0\0\0\0\x03\0\0\0\x04\0\0\fXack\0\0\0\0\x02\0\0\0\x02\0\0\0\x01thermal-zones\0\0\0\0\0\0\x01cpu-thermal\0\0\0\0\x03\0\0\0\x04\0\0\f^\0\0\0ú\0\0\0\x03\0\0\0\x04\0\0\ft\0\0:\0\0\0\x03\0\0\0\x04\0\0\f\0\0\0`\0\0\0\x01trips\0\0\0\0\0\0\x01cpu_alert0\0\0\0\0\0\x03\0\0\0\x04\0\0\f\0\x01L\b\0\0\0\x03\0\0\0\x04\0\0\f\0\0\aÐ\0\0\0\x03\0\0\0\b\0\0\0opassive\0\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0a\0\0\0\x02\0\0\0\x01cpu_crit\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\f\0\x01 \0\0\0\x03\0\0\0\x04\0\0\f\0\0\0\0\0\0\0\x03\0\0\0 \0\0\0ocritical\0\0\0\0\0\0\0\x02\0\0\0\x02\0\0\0\x01cooling-maps\0\0\0\0\0\0\0\x01map0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\f©\0\0\0a\0\0\0\x03\0\0\00\0\0\f®\0\0\0bÿÿÿÿÿÿÿÿ\0\0\0\x05ÿÿÿÿÿÿÿÿ\0\0\0\x06ÿÿÿÿÿÿÿÿ\0\0\0\aÿÿÿÿÿÿÿÿ\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01snd-card1\0\0\0\0\0\0\x03\0\0\0\x12\0\0\0\0simple-audio-card\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0\v\0\0\0\x01\0\0\0\x03\0\0\0\x04\0\0\0\x1a\0\0\0\0\0\0\0\x03\0\0\0\x19\0\0\v\x1eStarfive-HDMI-Sound-Card\0\0\0\0\0\0\0\x01simple-audio-card,dai-link@0\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\0d\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\v5i2s\0\0\0\0\x03\0\0\0\x04\0\0\v<\0\0\0c\0\0\0\x03\0\0\0\x04\0\0\vL\0\0\0c\0\0\0\x03\0\0\0\x04\0\0\f½\0\0\x01\0\0\0\0\x03\0\0\0\x05\0\0\0Ëokay\0\0\0\0\0\0\0\x01cpu\0\0\0\0\x03\0\0\0\x04\0\0\vY\0\0\0d\0\0\0\x03\0\0\0\x04\0\0\0I\0\0\0c\0\0\0\x02\0\0\0\x01codec\0\0\0\0\0\0\x03\0\0\0\x04\0\0\vY\0\0\0e\0\0\0\x02\0\0\0\x02\0\0\0\x02\0\0\0\x01gpio-restart\0\0\0\0\0\0\0\x03\0\0\0\r\0\0\0\0gpio-restart\0\0\0\0\0\0\0\x03\0\0\0\f\0\0\x034\0\0\0\x19\0\0\0#\0\0\0\0\0\0\0\x03\0\0\0\x04\0\0\x02\0\0\0 \0\0\0\x02\0\0\0\x02\0\0\0 compatible\0#address-cells\0#size-cells\0model\0#clock-cells\0clock-frequency\0phandle\0timebase-frequency\0reg\0device_type\0i-cache-block-size\0i-cache-sets\0i-cache-size\0next-level-cache\0riscv,isa\0#cooling-cells\0status\0interrupt-controller\0#interrupt-cells\0d-cache-block-size\0d-cache-sets\0d-cache-size\0d-tlb-sets\0d-tlb-size\0i-tlb-sets\0i-tlb-size\0mmu-type\0tlb-split\0operating-points-v2\0clocks\0clock-names\0cpu-supply\0cpu\0opp-shared\0opp-hz\0opp-microvolt\0opp-suspend\0ports\0remote-endpoint\0mbox-names\0mboxes\0snps,wr_osr_lmt\0snps,rd_osr_lmt\0snps,blen\0interrupt-parent\0ranges\0reg-names\0interrupts-extended\0interrupts\0cache-level\0cache-unified\0uncached-offset\0riscv,max-priority\0riscv,ndev\0reg-io-width\0reg-shift\0resets\0pinctrl-names\0pinctrl-0\0i2c-sda-hold-time-ns\0i2c-sda-falling-time-ns\0i2c-scl-falling-time-ns\0auto_calc_scl_lhcnt\0irq-gpios\0reset-gpios\0reset-gpio\0enable-gpio\0reset-names\0arm,primecell-periphid\0num-cs\0pl022,com-mode\0spi-max-frequency\0dmas\0dma-names\0#sound-dai-cells\0interrupt-names\0starfive,sys-syscon\0starfive,stg-syscon\0starfive,usb2-only\0dr_mode\0dma-coherent\0phy-names\0maximum-speed\0#reset-cells\0firmware-name\0memory-region\0pagesize\0regulator-boot-on\0regulator-compatible\0regulator-name\0regulator-min-microvolt\0regulator-max-microvolt\0regulator-always-on\0rotation\0orientation\0bus-type\0clock-lanes\0data-lanes\0lane-polarities\0link-frequencies\0clock-noncontinuous\0starfive,approx-freq\0#pwm-cells\0starfive,npwm\0#thermal-sensor-cells\0cdns,fifo-depth\0cdns,fifo-width\0cdns,trigger-address\0cdns,read-delay\0cdns,tshsl-ns\0cdns,tsd2d-ns\0cdns,tchsh-ns\0cdns,tslch-ns\0#gpio-cells\0ngpios\0starfive,pins\0starfive,pinmux\0starfive,pin-ioconfig\0starfive,pin-gpio-dout\0starfive,pin-gpio-doen\0starfive,pin-gpio-din\0#mbox-cells\0timeout-sec\0power-domains\0starfive,vdec_noc_ctrl\0starfive,venc_noc_ctrl\0syscon,can_or_canfd\0enable-side-channel-mitigation\0enable-dma\0lli-bus-interface-ahb1\0mem-bus-interface-ahb1\0memcpy-burst-size\0memcpy-bus-width\0#dma-cells\0fifo-watermark-aligned\0data-addr\0assigned-clocks\0assigned-clock-rates\0card-detect-delay\0cap-mmc-highspeed\0mmc-hs200-1_8v\0non-removable\0cap-mmc-hw-reset\0post-power-on-delay-ms\0vmmc-supply\0vqmmc-supply\0no-sdio\0no-mmc\0broken-cd\0cap-sd-highspeed\0phy-mode\0snps,multicast-filter-bins\0snps,perfect-filter-entries\0rx-fifo-depth\0tx-fifo-depth\0snps,fixed-burst\0snps,no-pbl-x8\0snps,force_thresh_dma_mode\0snps,axi-config\0snps,tso\0snps,en-tx-lpi-clockgating\0snps,txpbl\0snps,rxpbl\0rgmii_sw_dr_2\0rgmii_sw_dr\0rgmii_sw_dr_rxc\0rxc_dly_en\0rx_delay_sel\0tx_delay_sel_fe\0tx_delay_sel\0tx_inverted_10\0tx_inverted_100\0tx_inverted_1000\0dma-channels\0snps,dma-masters\0snps,data-width\0snps,block-size\0snps,priority\0snps,axi-max-burst-len\0#power-domain-cells\0rtc,cal-clock-freq\0current-clock\0starfive,aon-syscon\0verisilicon,dss-syscon\0hpd-gpio\0phys\0#phy-cells\0starfive,phyctrl\0bus-range\0msi-parent\0interrupt-map-mask\0interrupt-map\0irq-mode\0simple-audio-card,name\0format\0bitclock-master\0frame-master\0sound-dai\0spi0\0gpio0\0ethernet0\0ethernet1\0mmc0\0mmc1\0serial0\0serial1\0serial3\0i2c0\0i2c1\0i2c2\0i2c3\0i2c4\0i2c5\0i2c6\0linux,initrd-start\0linux,initrd-end\0stdout-path\0#bootargs\0reusable\0alignment\0alloc-ranges\0linux,cma-default\0color\0function\0linux,default-trigger\0label\0polling-delay-passive\0polling-delay\0thermal-sensors\0temperature\0hysteresis\0trip\0cooling-device\0mclk-fs\0
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw
2024-08-01 4:20 ` WHR
@ 2024-08-01 14:49 ` Rob Herring
2024-08-02 11:32 ` WHR
2024-08-02 11:45 ` WHR
0 siblings, 2 replies; 7+ messages in thread
From: Rob Herring @ 2024-08-01 14:49 UTC (permalink / raw)
To: WHR; +Cc: Saravana Kannan, devicetree, linux-kernel
On Wed, Jul 31, 2024 at 10:22 PM WHR <whr@rivoreo.one> wrote:
>
> > On Mon, Jul 29, 2024 at 11:54 PM WHR <whr@rivoreo.one> wrote:
> >>
> >> Commit 935df1bd40d43c4ee91838c42a20e9af751885cc has removed an
> >> assignment statement for 'out_irq->np' right after label 'skiplevel',
> >> causing the new parent acquired from function of_irq_find_parent didn't
> >> being stored to 'out_irq->np' as it supposed to. Under some conditions
> >> this can resuit in multiple corruptions and leakages to device nodes.
> >
> > Under what conditions? Please provide a specific platform and DT.
>
> I have a previous email sent to you before I came up with the fix. The kernel
> log for debugging and the device tree blob are attached again.
Thanks. The patch needs to stand on its own with this detail, not
require that I've read (and remember) some other email among the
1000s.
"multiple corruptions and leakages to device nodes" is meaningless. Be
exact, it's device_node refcounts we're talking about. The issue is
out_irq->np is not updated from 'usbdrd' node to the real interrupt
parent, the 'plic' node. In the next iteration of the loop, we find
'interrupt-controller' in the plic node and return, but out_irq is not
pointing to the plic. Then of_irq_get() fails to get the irq host and
does a put on out_irq->np which is usbdrd, not plic node.
So please update the commit msg and provide your name, not initials.
>
> > Honestly, I think the DT is wrong if you get to this point. We'd have
> > to have the initial interrupt parent with #interrupt-cells, but not an
> > interrupt-controller nor interrupt-map property to get here. Maybe
> > that happens in some ancient platform, but if so, I want to know which
> > one and what exactly we need to handle.
>
> So you suggest the #interrupt-cells is erroneous in that node, and should be
> removed?
Yes. dtc warns about this. dtschema would too if there was a schema
(there is, but not since you use a downstream binding).
The clint node has the same issue.
> This is a device vendor-provided DT, so any issue in it will have to be fixed
> locally.
Complain to your vendor...
Rob
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw
2024-08-01 14:49 ` Rob Herring
@ 2024-08-02 11:32 ` WHR
2024-08-02 11:45 ` WHR
1 sibling, 0 replies; 7+ messages in thread
From: WHR @ 2024-08-02 11:32 UTC (permalink / raw)
To: Rob Herring; +Cc: Saravana Kannan, devicetree, linux-kernel
> On Wed, Jul 31, 2024 at 10:22 PM WHR <whr@rivoreo.one> wrote:
>>
>> > On Mon, Jul 29, 2024 at 11:54 PM WHR <whr@rivoreo.one> wrote:
>> >>
>> >> Commit 935df1bd40d43c4ee91838c42a20e9af751885cc has removed an
>> >> assignment statement for 'out_irq->np' right after label 'skiplevel',
>> >> causing the new parent acquired from function of_irq_find_parent didn't
>> >> being stored to 'out_irq->np' as it supposed to. Under some conditions
>> >> this can resuit in multiple corruptions and leakages to device nodes.
>> >
>> > Under what conditions? Please provide a specific platform and DT.
>>
>> I have a previous email sent to you before I came up with the fix. The
>> kernel
>> log for debugging and the device tree blob are attached again.
>
> Thanks. The patch needs to stand on its own with this detail, not
> require that I've read (and remember) some other email among the
> 1000s.
>
> "multiple corruptions and leakages to device nodes" is meaningless. Be
> exact, it's device_node refcounts we're talking about. The issue is
> out_irq->np is not updated from 'usbdrd' node to the real interrupt
> parent, the 'plic' node. In the next iteration of the loop, we find
> 'interrupt-controller' in the plic node and return, but out_irq is not
> pointing to the plic. Then of_irq_get() fails to get the irq host and
> does a put on out_irq->np which is usbdrd, not plic node.
>
> So please update the commit msg and provide your name, not initials.
Since the fix for this regression is really trivial, I think you'll be able to
commit it by yourself instead.
>> > Honestly, I think the DT is wrong if you get to this point. We'd have
>> > to have the initial interrupt parent with #interrupt-cells, but not an
>> > interrupt-controller nor interrupt-map property to get here. Maybe
>> > that happens in some ancient platform, but if so, I want to know which
>> > one and what exactly we need to handle.
>>
>> So you suggest the #interrupt-cells is erroneous in that node, and should
>> be
>> removed?
>
> Yes. dtc warns about this. dtschema would too if there was a schema
> (there is, but not since you use a downstream binding).
>
> The clint node has the same issue.
>
>> This is a device vendor-provided DT, so any issue in it will have to be
>> fixed
>> locally.
>
> Complain to your vendor...
Thanks for help diagnosing the issues.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw
2024-08-01 14:49 ` Rob Herring
2024-08-02 11:32 ` WHR
@ 2024-08-02 11:45 ` WHR
1 sibling, 0 replies; 7+ messages in thread
From: WHR @ 2024-08-02 11:45 UTC (permalink / raw)
To: Rob Herring; +Cc: Saravana Kannan, devicetree, linux-kernel
> On Wed, Jul 31, 2024 at 10:22 PM WHR <whr@rivoreo.one> wrote:
>>
>> > On Mon, Jul 29, 2024 at 11:54 PM WHR <whr@rivoreo.one> wrote:
>> >>
>> >> Commit 935df1bd40d43c4ee91838c42a20e9af751885cc has removed an
>> >> assignment statement for 'out_irq->np' right after label 'skiplevel',
>> >> causing the new parent acquired from function of_irq_find_parent didn't
>> >> being stored to 'out_irq->np' as it supposed to. Under some conditions
>> >> this can resuit in multiple corruptions and leakages to device nodes.
>> >
>> > Under what conditions? Please provide a specific platform and DT.
>>
>> I have a previous email sent to you before I came up with the fix. The
>> kernel
>> log for debugging and the device tree blob are attached again.
>
> Thanks. The patch needs to stand on its own with this detail, not
> require that I've read (and remember) some other email among the
> 1000s.
For referencing the mentioned email in mailing list archive:
https://lore.kernel.org/linux-devicetree/a373cf98c2d35f2bd828261f078471a5.squirrel@_/
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-08-02 11:47 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-30 5:52 [PATCH v2] of/irq: Make sure to update out_irq->np to the new parent in of_irq_parse_raw WHR
2024-07-31 21:58 ` Rob Herring
2024-08-01 4:14 ` WHR
2024-08-01 4:20 ` WHR
2024-08-01 14:49 ` Rob Herring
2024-08-02 11:32 ` WHR
2024-08-02 11:45 ` WHR
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).