This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] TDA4VH-Q1:Linux 原生驱动程序中的四个 SGMII 端口设置

Guru**** 657930 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1216735/tda4vh-q1-four-sgmii-port-setting-in-linux-native-driver

器件型号:TDA4VH-Q1
主题中讨论的其他器件:TDA4VH

尊敬的 TI:

我们的客户板配置端口如下所示:

serdes1->sgmi1/sgmi2/sgmiii3/sgmi4

serdes2->sgmii5/sgmi6/sgmi7/sgmi8

在 DTS 中、服务1和服务2 REFCLK 默认为内部时钟还是外部时钟?

如何设置内部 REFCLK?  

请指导我们如何正确配置 SerDes 端口、谢谢

QSGMII 模式:

// SPDX-License-Identifier: GPL-2.0
/**
 * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
 * J7AHP board.
 *
 * Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
 */

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/mux/ti-serdes.h>
#include <dt-bindings/phy/phy-cadence.h>
#include <dt-bindings/phy/phy.h>
#include <dt-bindings/pinctrl/k3.h>

/ {
aliases {
	ethernet0 = "/bus@100000/ethernet@c000000/ethernet-ports/port@1";
	ethernet1 = "/bus@100000/ethernet@c000000/ethernet-ports/port@2";
	ethernet2 = "/bus@100000/ethernet@c000000/ethernet-ports/port@3";
	ethernet3 = "/bus@100000/ethernet@c000000/ethernet-ports/port@4";
	ethernet4 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
	ethernet5 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
	ethernet6 = "/bus@100000/ethernet@c000000/ethernet-ports/port@7";
	ethernet7 = "/bus@100000/ethernet@c000000/ethernet-ports/port@8";
};
};

&main_cpsw0 {
	status = "okay";
	pinctrl-names = "default";
	pinctrl-0 = <&mdio_pins_default>;
};

&main_cpsw0_port1 {
	status = "okay";
	phy-handle = <&cpsw9g_phy0>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 1>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port2 {
	status = "okay";
	phy-handle = <&cpsw9g_phy1>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 2>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port3 {
	status = "okay";
	phy-handle = <&cpsw9g_phy2>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 3>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port4 {
	status = "okay";
	phy-handle = <&cpsw9g_phy3>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 4>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port5 {
	status = "okay";
	phy-handle = <&cpsw9g_phy4>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 5>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port6 {
	status = "okay";
	phy-handle = <&cpsw9g_phy5>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 6>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port7 {
	status = "okay";
	phy-handle = <&cpsw9g_phy6>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 7>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port8 {
	status = "okay";
	phy-handle = <&cpsw9g_phy7>;
	phy-mode = "qsgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 8>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_mdio {
	bus_freq = <500000>;  //设置500KB
	#address-cells = <1>;
	#size-cells = <0>;

	cpsw9g_phy0: ethernet-phy@0 {
		reg = <0>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "10000";
	};
	cpsw9g_phy1: ethernet-phy@1 {
		reg = <1>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "10000";
	};
	cpsw9g_phy2: ethernet-phy@2 {
		reg = <2>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy3: ethernet-phy@3 {
		reg = <3>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy4: ethernet-phy@4 {
		reg = <4>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy5: ethernet-phy@5 {
		reg = <5>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy6: ethernet-phy@6 {
		reg = <6>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy7: ethernet-phy@7 {
		reg = <7>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
};

&cpsw9g_virt_mac {
	status = "disabled";
};

&cpsw9g_virt_maconly {
	status = "disabled";
};

&main_pmx0 {
	mdio_pins_default: mdio_pins_default {
		pinctrl-single,pins = <
			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
		>;
	};
};

&main_r5fss0_core0 {
	firmware-name = "pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f";
};

&serdes_ln_ctrl {
	idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
		      <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
		      <J784S4_SERDES1_LANE0_QSGMII_LANE3>, <J784S4_SERDES1_LANE1_QSGMII_LANE4>,
		      <J784S4_SERDES1_LANE2_QSGMII_LANE1>, <J784S4_SERDES1_LANE3_QSGMII_LANE2>,
		      <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
		      <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
};

&serdes_wiz2 {
	status = "okay";
};

&serdes_wiz1 {
	status = "okay";
};

&serdes2 {
	status = "okay";
	serdes2_qsgmii_link: phy@0 {
		reg = <0>;
		cdns,num-lanes = <4>;
		#phy-cells = <0>;
		cdns,phy-type = <PHY_TYPE_QSGMII>;
		resets = <&serdes_wiz2 1>, <&serdes_wiz2 2>, <&serdes_wiz2 3>, <&serdes_wiz2 4>;   
	};
};

&serdes1 {
	status = "okay";
	serdes1_qsgmii_link: phy@0 {
		reg = <0>;
		cdns,num-lanes = <4>;
		#phy-cells = <0>;
		cdns,phy-type = <PHY_TYPE_QSGMII>;
		resets = <&serdes_wiz1 1>, <&serdes_wiz1 2>, <&serdes_wiz1 3>, <&serdes_wiz1 4>;
	};
};

SGMII 模式:

// SPDX-License-Identifier: GPL-2.0
/**
 * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
 * J7AHP board.
 *
 * Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
 */

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/mux/ti-serdes.h>
#include <dt-bindings/phy/phy-cadence.h>
#include <dt-bindings/phy/phy.h>
#include <dt-bindings/pinctrl/k3.h>

/ {
aliases {
	ethernet0 = "/bus@100000/ethernet@c000000/ethernet-ports/port@1";
	ethernet1 = "/bus@100000/ethernet@c000000/ethernet-ports/port@2";
	ethernet2 = "/bus@100000/ethernet@c000000/ethernet-ports/port@3";
	ethernet3 = "/bus@100000/ethernet@c000000/ethernet-ports/port@4";
	ethernet4 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
	ethernet5 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
	ethernet6 = "/bus@100000/ethernet@c000000/ethernet-ports/port@7";
	ethernet7 = "/bus@100000/ethernet@c000000/ethernet-ports/port@8";
};
};

&main_cpsw0 {
	status = "okay";
	pinctrl-names = "default";
	pinctrl-0 = <&mdio_pins_default>;
};

&main_cpsw0_port1 {
	status = "okay";
	phy-handle = <&cpsw9g_phy0>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 1>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port2 {
	status = "okay";
	phy-handle = <&cpsw9g_phy1>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 2>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port3 {
	status = "okay";
	phy-handle = <&cpsw9g_phy2>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 3>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port4 {
	status = "okay";
	phy-handle = <&cpsw9g_phy3>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 4>, <&serdes1_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port5 {
	status = "okay";
	phy-handle = <&cpsw9g_phy4>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 5>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port6 {
	status = "okay";
	phy-handle = <&cpsw9g_phy5>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 6>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port7 {
	status = "okay";
	phy-handle = <&cpsw9g_phy6>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 7>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_port8 {
	status = "okay";
	phy-handle = <&cpsw9g_phy7>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&phy_gmii_sel_cpsw0 8>, <&serdes2_qsgmii_link>;
	phy-names = "portmode", "serdes-phy";
};

&main_cpsw0_mdio {
	bus_freq = <500000>;  //设置500KB
	#address-cells = <1>;
	#size-cells = <0>;

	cpsw9g_phy0: ethernet-phy@0 {
		reg = <0>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "10000";
	};
	cpsw9g_phy1: ethernet-phy@1 {
		reg = <1>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "10000";
	};
	cpsw9g_phy2: ethernet-phy@2 {
		reg = <2>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy3: ethernet-phy@3 {
		reg = <3>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy4: ethernet-phy@4 {
		reg = <4>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy5: ethernet-phy@5 {
		reg = <5>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy6: ethernet-phy@6 {
		reg = <6>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
	cpsw9g_phy7: ethernet-phy@7 {
		reg = <7>;
		compatible = "ethernet-phy-ieee802.3-c22";
		ethphy-mode = "master";
		ethphy-speed = "100";
	};
};

&cpsw9g_virt_mac {
	status = "disabled";
};

&cpsw9g_virt_maconly {
	status = "disabled";
};

&main_pmx0 {
	mdio_pins_default: mdio_pins_default {
		pinctrl-single,pins = <
			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
		>;
	};
};

&main_r5fss0_core0 {
	firmware-name = "pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f";
};

&serdes_ln_ctrl {
	idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
		      <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
		      <J784S4_SERDES1_LANE0_QSGMII_LANE3>, <J784S4_SERDES1_LANE1_QSGMII_LANE4>,
		      <J784S4_SERDES1_LANE2_QSGMII_LANE1>, <J784S4_SERDES1_LANE3_QSGMII_LANE2>,
		      <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
		      <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
};

&serdes_wiz2 {
	status = "okay";
};

&serdes_wiz1 {
	status = "okay";
};

&serdes2 {
	status = "okay";
	serdes2_qsgmii_link: phy@0 {
		reg = <0>;
		cdns,num-lanes = <4>;
		#phy-cells = <0>;
		cdns,phy-type = <PHY_TYPE_SGMII>;
		resets = <&serdes_wiz2 1>, <&serdes_wiz2 2>, <&serdes_wiz2 3>, <&serdes_wiz2 4>;   
	};
};

&serdes1 {
	status = "okay";
	serdes1_qsgmii_link: phy@0 {
		reg = <0>;
		cdns,num-lanes = <4>;
		#phy-cells = <0>;
		cdns,phy-type = <PHY_TYPE_SGMII>;
		resets = <&serdes_wiz1 1>, <&serdes_wiz1 2>, <&serdes_wiz1 3>, <&serdes_wiz1 4>;
	};
};

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TI:

    n‘t QSGMII 模式时,可以找到 PHY 链路接通,、但执行 ping IP 地址

    但当我们设置 SGMII 模式时,找不到 eth3/eth4 /eth5/eth6节点,SGMII 模式日志 是:

    错误源代码:

    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
    [    0.000000] Linux version 5.10.153-yocto-standard (oe-user@oe-host) (aarch64-wrs-linux-gcc (GCC) 10.3.0, GNU ld (GNU Binutils) 2.36.1.20210703) #1 SMP PREEMPT Wed Apr 12 05:37:37 UTC 2023
    [    0.000000] Machine model: Texas Instruments J784S4 EVM
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a0000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a0100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a1000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a1100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a2000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a2100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a3000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a3100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a4000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a4100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a5000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a5100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a6000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a6100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a7000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a7100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node c71-dma-memory@a8000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node c71-memory@a8100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node c71-dma-memory@a9000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a9100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node c71-memory@a9100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node c71-dma-memory@aa000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node c71-memory@aa100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ab000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node c71-dma-memory@ab000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ab100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node c71-memory@ab100000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x0000000ffffeffff]
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e7fffff]
    [    0.000000]   node   0: [mem 0x000000009e800000-0x00000000abffffff]
    [    0.000000]   node   0: [mem 0x00000000ac000000-0x00000000fffeffff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x0000000ffffeffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000ffffeffff]
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] cma: Reserved 512 MiB at 0x00000000c0000000
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.2
    [    0.000000] percpu: Embedded 10 pages/cpu s574296 r8192 d72872 u655360
    [    0.000000] Detected PIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
    [    0.000000] CPU features: detected: Spectre-BHB
    [    0.000000] CPU features: detected: ARM erratum 1742098
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 523774
    [    0.000000] Kernel command line:  androidboot.hardware=j784s4-evm androidboot.product=J7_EVM androidboot.hwversion=v1_1 androidboot.serialno=315e00000101dcc6 mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc.u-boot),256k(hbmc.env),-@8m(hbmc.rootfs) androidboot.boot_device_root=mmcblk0 androidboot.verifiedbootstate=orange androidboot.slot_suffix=_a root=PARTUUID=1aa75fea-36be-4992-9da6-a9bf156464b8 androidboot.vbmeta.device=PARTUUID=69d4a052-6df3-4c47-bebc-b7d3b03799be androidboot.vbmeta.avb_version=1.1 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=1152 androidboot.vbmeta.digest=530aef8308de7a0c3eb469e4f120e88902c9189cd31da624a4912f0a2e6161e8 androidboot.veritymode=disabled androidboot.keystore=software androidboot.rebootreason=cold,powerkey androidboot.pm_resetreason=POR
    [    0.000000] Dentry cache hash table entries: 4194304 (order: 9, 33554432 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 2097152 (order: 8, 16777216 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbff0000-0x00000000ffff0000] (64MB)
    [    0.000000] Memory: 32623488K/33554304K available (14400K kernel code, 2252K rwdata, 3712K rodata, 4992K init, 1786K bss, 406528K reserved, 524288K cma-reserved)
    [    0.000000] S
                    [    0.003856] EFI services will not be available.
    [    0.004568] smp: Bringing up secondary CPUs ...
    [    0.013364] Detected PIPT I-cache on CPU1
    [    0.013387] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
    [    0.013400] GICv3: CPU1: using allocated LPI pending table @0x0000000880320000
    [    0.013440] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
    [    0.022343] Detected PIPT I-cache on CPU2
    [    0.022366] GICv3: CPU2: found redistributor 2 region 0:0x0000000001940000
    [    0.022380] GICv3: CPU2: using allocated LPI pending table @0x0000000880330000
    [    0.022421] CPU2: Booted secondary processor 0x0000000002 [0x411fd080]
    [    0.031322] Detected PIPT I-cache on CPU3
    [    0.031349] GICv3: CPU3: found redistributor 3 region 0:0x0000000001960000
    [    0.031363] GICv3: CPU3: using allocated LPI pending table @0x0000000880340000
    [    0.031404] CPU3: Booted secondary processor 0x0000000003 [0x411fd080]
    [    0.040354] Detected PIPT I-cache on CPU4
    [    0.040382] GICv3: CPU4: found redistributor 100 region 0:0x0000000001980000
    [    0.040395] GICv3: CPU4: using allocated LPI pending table @0x0000000880350000
    [    0.040437] CPU4: Booted secondary processor 0x0000000100 [0x411fd080]
    [    0.049330] Detected PIPT I-cache on CPU5
    [    0.049358] GICv3: CPU5: found redistributor 101 region 0:0x00000000019a0000
    [    0.049372] GICv3: CPU5: using allocated LPI pending table @0x0000000880360000
    [    0.049412] CPU5: Booted secondary processor 0x0000000101 [0x411fd080]
    [    0.058293] Detected PIPT I-cache on CPU6
    [    0.058322] GICv3: CPU6: found redistributor 102 region 0:0x00000000019c0000
    [    0.058335] GICv3: CPU6: using allocated LPI pending table @0x0000000880370000
    [    0.058378] CPU6: Booted secondary processor 0x0000000102 [0x411fd080]
    [    0.067269] Detected PIPT I-cache on CPU7
    [    0.067301] GICv3: CPU7: found redistributor 103 region 0:0x00000000019e0000
    [    0.067316] GICv3: CPU7: using allocated LPI pending table @0x0000000880380000
    [    0.067355] CPU7: Booted secondary processor 0x0000000103 [0x411fd080]
    [    0.067473] smp: Brought up 1 node, 8 CPUs
    [    0.067570] SMP: Total of 8 processors activated.
    [    0.067578] CPU features: detected: 32-bit EL0 Support
    [    0.067584] CPU features: detected: CRC32 instructions
    [    0.067695] CPU: All CPU(s) started at EL2
    [    0.067757] alternatives: patching kernel code
    [    0.068529] devtmpfs: initialized
    [    0.074691] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.074714] futex hash table entries: 2048 (order: 1, 131072 bytes, linear)
    [    0.075283] pinctrl core: initialized pinctrl subsystem
    [    0.075775] DMI not present or invalid.
    [    0.076058] NET: Registered protocol family 16
    [    0.083624] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
    [    0.084330] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.085050] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.085114] audit: initializing netlink subsys (disabled)
    [    0.085368] audit: type=2000 audit(0.084:1): state=initialized audit_enabled=0 res=1
    [    0.085740] thermal_sys: Registered thermal governor 'step_wise'
    [    0.086044] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.086271] ASID allocator initialised with 65536 entries
    [    0.113557] HugeTLB registered 16.0 GiB page size, pre-allocated 0 pages
    [    0.113573] HugeTLB registered 512 MiB page size, pre-allocated 0 pages
    [    0.113579] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.189010] raid6: neonx8   gen()   726 MB/s
    [    0.256864] raid6: neonx8   xor()  1089 MB/s
    [    0.325857] raid6: neonx4   gen()   369 MB/s
    [    0.393507] raid6: neonx4   xor()   380 MB/s
    [    0.461808] raid6: neonx2   gen()   375 MB/s
    [    0.529759] raid6: neonx2   xor()   331 MB/s
    [    0.597985] raid6: neault 64
    [    1.483945] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
    [    1.485605] workingset: timestamp_bits=46 max_order=19 bucket_order=0
    [    1.490295] NFS: Registering the id_resolver key type
    [    1.490343] Key type id_resolver registered
    [    1.490352] Key type id_legacy registered
    [    1.491188] Key type cifs.idmap registered
    [    1.491213] jffs2: version 2.2. (NAND) ÂCopyright 2001-2006 Red Hat, Inc.
    [    1.512278] xor: measuring software checksum speed
    [    1.513561]    8regs           :  7835 MB/sec
    [    1.514686]    32regs          :  8831 MB/sec
    [    1.516831]    arm64_neon      :  4731 MB/sec
    [    1.516842] xor: using function: 32regs (8831 MB/sec)
    [    1.516852] async_tx: api initialized (async)
    [    1.516899] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    1.517074] io scheduler mq-deadline registered
    [    1.517089] io scheduler kyber registered
    [    1.520311] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
    [    1.520610] pinctrl-single 11c000.pinctrl: 72 pins, size 288
    [    1.522905] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
    [    1.523012] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
    [    1.523721] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    1.535613] brd: module loaded
    [    1.538615] CAN device driver interface
    [    1.539787] usbcore: registered new interface driver asix
    [    1.539834] usbcore: registered new interface driver ax88179_178a
    [    1.539871] usbcore: registered new interface driver cdc_ether
    [    1.539904] usbcore: registered new interface driver net1080
    [    1.539938] usbcore: registered new interface driver cdc_subset
    [    1.539972] usbcore: registered new interface driver zaurus
    [    1.540026] usbcore: registered new interface driver cdc_ncm
    [    1.541451] usbcore: registered new interface driver usb-storage
    [    1.541686] i2c /dev entries driver
    [    1.542890] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
    [    1.543860] sdhci: Secure Digital Host Controller Interface driver
    [    1.543875] sdhci: Copyright(c) Pierre Ossman
    [    1.544143] sdhci-pltfm: SDHCI platform and OF driver helper
    [    1.544594] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    1.545198] usbcore: registered new interface driver usbhid
    [    1.545210] usbhid: USB HID core driver
    [    1.545712] optee: probing for conduit method.
    [    1.545737] optee: revision 3.13 (d2d49c3d)
    [    1.545997] optee: dynamic shared memory is enabled
    [    1.546185] optee: initialized driver
    [    1.547765] u32 classifier
    [    1.547779]     input device check on
    [    1.547783]     Actions configured
    [    1.548242] NET: Registered protocol family 10
    [    1.549113] Segment Routing with IPv6
    [    1.549169] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [    1.549566] NET: Registered protocol family 17
    [    1.549636] Bridge firewalling registered
    [    1.549645] can: controller area network core
    [    1.549687] NET: Registered protocol family 29
    [    1.549697] can: raw protocol
    [    1.549705] can: broadcast manager protocol
    [    1.549716] can: netlink gateway - max_hops=1
    [    1.549853] Key type dns_resolver registered
    [    1.550021] NET: Registered protocol family 40
    [    1.550312] registered taskstats version 1
    [    1.550386] Key type ._fscrypt registered
    [    1.550398] Key type .fscrypt registered
    [    1.550405] Key type fscrypt-provisioning registered
    [    1.551561] Btrfs loaded, crc32c=crc32c-generic
    [    1.553010] Key type encrypted registered
    [    1.557846] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
    [    1.558017] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
    [    1.560703] ti-sci 44083000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.5.2--v08.05.02 (Chill Capybar')
    [    1.605993] pca953x 0-0020: supply vcc not found, using dummy regulator
      4.703196] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
    [    4.703202] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64
    [    4.703866] 2880000.serial: ttyS2 at MMIO 0x2880000 (irq = 21, base_baud = 3000000) is a 8250
    [    6.811729] printk: console [ttyS2] enabled
    [    6.859702] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    6.869665] bcm89883_match_phy_device phydev->phy_id:0x0
    [    6.875091] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver unknown
    [    6.883179] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    6.896100] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    6.903328] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    6.947705] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 500000
    [    6.956468] mdio_bus c000f00.mdio: MDIO device at address 0 is missing.
    [    6.964534] mdio_bus c000f00.mdio: MDIO device at address 1 is missing.
    [    6.974447] bcm89883_match_phy_device phydev->phy_id:0xae02503a
    [    6.980498] bcm89883_probe ruijie
    [    6.983931] Broadcom BCM89883 c000f00.mdio:02: bcm89883_probe id = 0xffffffff
    [    6.993752] mdio_bus c000f00.mdio: MDIO device at address 3 is missing.
    [    7.003840] bcm89883_match_phy_device phydev->phy_id:0xae02503a
    [    7.009889] bcm89883_probe ruijie
    [    7.013320] Broadcom BCM89883 c000f00.mdio:04: bcm89883_probe id = 0xffffffff
    [    7.023025] mdio_bus c000f00.mdio: MDIO device at address 5 is missing.
    [    7.030914] mdio_bus c000f00.mdio: MDIO device at address 6 is missing.
    [    7.039014] mdio_bus c000f00.mdio: MDIO device at address 7 is missing.
    [    7.045641] davinci_mdio c000f00.mdio: phy[2]: device c000f00.mdio:02, driver Broadcom BCM89883
    [    7.054336] davinci_mdio c000f00.mdio: phy[4]: device c000f00.mdio:04, driver Broadcom BCM89883
    [    7.063116] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA03102, cpsw version 0x6BA82902 Ports: 9 quirks:00000000
    [    7.077076] phy-gmii-sel 104044.phy: port1: unsupported mode: "sgmii"
    [    7.083551] am65-cpsw-nuss c000000.ethernet: /bus@100000/ethernet@c000000/ethernet-ports/port@1 error setting phy mode -22
    [    7.095274] am65-cpsw-nuss: probe of c000000.ethernet failed with error -22
    [    7.143701] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    7.152125] mdio_bus c200f00.mdio: MDIO device at address 0 is missing.
    [    7.158832] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA0210
                                                                                                 [    7.201939] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
    [    7.208992] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
    [    7.216096] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
    [    7.223136] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fca100
    [    7.230170] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
    [    7.235732] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
    [    7.237231] omap-mailbox 31f85000.mailbox: omap mailbox rev 0x66fca100
    [    7.342693] mmc0: Command Queue Engine enabled
    [    7.347161] mmc0: new HS400 MMC card at address 0001
    [    7.352602] mmcblk0: mmc0:0001 064GB2 58.2 GiB
    [    7.357333] mmcblk0boot0: mmc0:0001 064GB2 partition 1 8.00 MiB
    [    7.363434] mmcblk0boot1: mmc0:0001 064GB2 partition 2 8.00 MiB
    [    7.369522] mmcblk0rpmb: mmc0:0001 064GB2 partition 3 4.00 MiB, chardev (245:0)
    [    7.379553] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    7.386961] GPT:29360127 != 122142719
    [    7.390627] GPT:Alternate GPT header not at the end of the disk.
    [    7.396631] GPT:29360127 != 122142719
    [    7.400292] GPT: Use GNU Parted to correct GPT errors.
    [    7.405455]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17
    [    7.968261] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    7.975781] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    7.983886] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    7.991991] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    8.000757] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    8.008280] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    8.016407] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    8.024517] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    8.033899] ti-udma 285c0000.dma-controller: Channels: 22 (tchan: 11, rchan: 11, gp-rflow: 8)
    [    8.045092] ti-udma 31150000.dma-controller: Channels: 66 (tchan: 33, rchan: 33, gp-rflow: 16)
    [    8.058980] spi-nor spi0.0: unrecognized JEDEC id bytes: ff ff ff ff ff ff
    [    8.065896] spi-nor: probe of spi0.0 failed with error -2
    [    8.138308] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    8.145842] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    8.153950] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    8.162056] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    8.170825] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    8.178348] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    8.186453] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    8.194559] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    8.206042] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    8.213608] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    8.221754] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    8.229886] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    8.238751] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    8.246288] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    8.254422] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    8.262547] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    8.273608] debugfs: Directory 'pd:73' with parent 'pm_genpd' already present!
    [    8.280903] debugfs: Directory 'pd:72' with parent 'pm_genpd' already present!
    [    8.289045] debugfs: Directory 'pd:333' with parent 'pm_genpd' already present!
    [    8.296429] debugfs: Directory 'pd:332' with parent 'pm_genpd' already present!
    [    8.305646] printk: console [netcon0] enabled
    [    8.310029] netconsole: network logging started
    [    8.321422] ALSA device list:
    [    8.324406]   No soundcards found.
    [    8.328074] md: Waiting for all devices to be available before autodetect
    [    8.334886] md: If you don't use raid, use raid=noautodetect
    [    8.340551] md: Autodetecting RAID arrays.
    [    8.344646] md: autorun ...
    [    8.347430] md: ... autorun DONE.
    [    8.355793] EXT4-fs (mmcblk0p12): mounted filesystem with ordered data mode. Opts: (null)
    [    8.364042] VFS: Mounted root (ext4 filesystem) readonly on device 259:4.
    [    8.371892] devtmpfs: mounted
    [    8.377024] Freeing unused kernel memory: 4992K
    [    8.381602] Run /sbin/init as init process
    [    8.584084] SELinux:  Class rpmsg_socket not defined in policy.
    [    8.590029] SELinux: the above unknown classes and permissions will be allowed
    [    8.606171] SELinux:  policy capability network_peer_controls=1
    [    8.612122] SELinux:  policy capability open_perms=1
    [    8.617091] SELinux:  policy capability extended_socket_class=1
    [    8.623009] SELinux:  policy capability always_check_network=0
    [    8.628838] SELinux:  policy capability cgroup_seclabel=1
    [    8.634235] SELinux:  policy capability nnp_nosuid_transition=1
    [    8.640151] SELinux:  policy capability genfs_seclabel_symlinks=0
    [    8.646240] SELinux:  policy capability ioctl_skip_cloexec=0
    [    8.735762] audit: type=1403 audit(8.732:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
    [    8.742932] systemd[1]: Successfully loaded SELinux policy in 290.312ms.
    [    8.766972] systemd[1]: System time before build time, advancing clock.
    [    8.847424] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 45.007ms.
    [    8.868899] systemd[1]: systemd 247.6+ running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    8.891860] systemd[1]: Detected architecture arm64.
    
    Welcome to Wind River Linux LTS 21.20 Update 13!
    
    [    8.909058] systemd[1]: Set hostname to <j784s4-evm>.
    [    8.918237] random: systemd: uninitialized urandom read (16 bytes read)
    [    8.924933] systemd[1]: Initializing machine ID from random generator.
    [    8.931888] systemd[1]: Installed transient /etc/machine-id file.
    [    9.192224] systemd[1]: Queued start job for default target Multi-User System.
    [    9.200382] random: systemd: uninitialized urandom read (16 bytes read)
    [    9.208423] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [    9.235861] random: systemd: uninitialized urandom read (16 bytes read)
    [    9.243201] systemd[1]: Created slice system-modprobe.slice.
    [  OK  ] Created slice system-modprobe.slice.
    [    9.264546] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice system-serial\x2dgetty.slice.
    [    9.288535] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [  OK  ] Created slice system-systemd\x2dfsck.slice.
    [    9.316549] systemd[1]: Created slice system-systemd\x2dmakefs.slice.
    [  OK  ] Created slice system-systemd\x2dmakefs.slice.
    [    9.340441] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    9.364070] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Paths.
    [    9.379921] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    9.399906] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Slices.
    [    9.415930] systemd[1]: Reached target Swap.
    [  OK  ] Reached target Swap.
    [    9.444602] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    9.467950] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    9.490404] systemd[1]: Listening on Syslog Socket.
    [  OK  ] Listening on Syslog Socket.
    [    9.505581] systemd[1]: Listening on Journal Audit Socket.
    [  OK  ] Listening on Journal Audit Socket.
    [    9.532981] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    9.557531] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    9.573220] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    9.602899] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    9.629193] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    9.657768] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    9.683653] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    9.702977] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    9.727192] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    9.751281] systemd[1]: Mounting Kernel Trace File System...
             Mounting Kernel Trace File System...
    [    9.772236] systemd[1]: Mounting Temporary Directory (/tmp)...
             Mounting Temporary Directory (/tmp)...
    [    9.791602] systemd[1]: Starting Create list of static device nodes for the current kernel...
             Starting Create list of st…odes for the current kernel...
    [    9.818709] systemd[1]: Started Translates SELinux MCS/MLS labels to human readable form.
    [  OK  ] Started Translates SELinux…labels to human readable form.
    [    9.848112] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    9.867127] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    9.886820] systemd[1]: Starting SELinux autorelabel service loading...
             Starting SELinux autorelabel service loading...
    [    9.911186] systemd[1]: Starting SELinux init for /dev service loading...
             Starting SELinux init for /dev service loading...
    [    9.940081] random: systemd: uninitialized urandom read (16 bytes read)
    [    9.953332] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    9.970855] random: systemd: uninitialized urandom read (16 bytes read)
    [    9.976352] audit: type=1400 audit(1640966401.208:3): avc:  denied  { read } for  pid=214 comm="systemd-journal" name="machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
    [    9.980571] random: systemd-journal: uninitialized urandom read (16 bytes read)
    [    9.981641] systemd[1]: Starting Load Kernel Modules...
    [    9.999952] audit: type=1400 audit(1640966401.208:4): avc:  denied  { open } for  pid=214 comm="systemd-journal" path="/etc/machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
             Starting Load Kernel Modules...
    [   10.037617] cryptodev: loading out-of-tree module taints kernel.
    [   10.048281] cryptodev: driver 1.12 loaded.
    [   10.051778] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [   10.081964] systemd[1]: Starting Coldplug All udev Devices...
    [   10.084819] EXT4-fs (mmcblk0p12): re-mounted. Opts: (null)
             Starting Coldplug All udev Devices...
    [   10.118326] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [   10.136119] audit: type=1130 audit(1640966401.368:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=rpcbind comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   10.137359] systemd[1]: Mounted Huge Pages File System.
    [  OK  ] Mounted Huge Pages File System.
    [   10.180638] systemd[1]: Mounted POSIX Message Queue File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [   10.204681] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [   10.220387] audit: type=1130 audit(1640966401.452:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-journald comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Kernel Trace File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Finished Create list of st… nodes for the current kernel.
    [   10.307915] audit: type=1130 audit(1640966401.540:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=kmod-static-nodes comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   10.329053] audit: type=1131 audit(1640966401.540:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=mcstrans comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
    [  OK  ] Finished Load Kernel Module configfs.
    [   10.363922] audit: type=1130 audit(1640966401.596:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=modprobe@configfs comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   10.385060] audit: type=1131 audit(1640966401.596:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=modprobe@configfs comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [FAILED] Failed to start SELinux autorelabel service loading.
    See 'systemctl status selinux-autorelabel.service' for details.
    [   10.439908] audit: type=1130 audit(1640966401.672:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=selinux-autorelabel comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
    [  OK  ] Finished SELinux init for /dev service loading.
    [  OK  ] Finished Load Kernel Modules.
    [  OK  ] Finished Remount Root and Kernel File Systems.
    [  OK  ] Reached target Local File Systems (Pre).
             Mounting NFSD configuration filesystem...
             Mounting Kernel Configuration File System...
    [   10.569136] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
             Mounting /var/volatile...
             Starting Apply Kernel Variables...
             Starting Rule-based Manage…for Device Events and Files...
    [  OK  ] Mounted NFSD configuration filesystem.
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
             Starting Network Service...
             Starting Bind mount volatile /var/cache...
             Starting Bind mount volatile /var/lib...
             Starting Bind mount volatile /var/spool...
             Starting Bind mount volatile /srv...
    [  OK  ] Finished Bind mount volatile /var/cache.
    [  OK  ] Finished Bind mount volatile /var/spool.
    [  OK  ] Finished Bind mount volatile /srv.
    [  OK  ] Started Network Service.
    [   11.199309] random: systemd: uninitialized urandom read (16 bytes read)
    [   11.208862] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   11.216498] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   11.226009] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   11.234235] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   11.234737] random: systemd: uninitialized urandom read (16 bytes read)
    [   11.242792] cdns-mhdp8546 a000000.dp-bridge: Direct firmware load for cadence/mhdp8546.bin failed with error -2
    [   11.253960] k3-dsp-rproc 64800000.dsp: assigned reserved memory node c71-dma-memory@a8000000
    [   11.254229] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   11.254283] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   11.254314] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   11.254347] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   11.254684] random: systemd: uninitialized urandom read (16 bytes read)
    [   11.264263] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   11.276447] cdns-mhdp8546 a000000.dp-bridge: cdns_mhdp_fw_cb: No firmware.
    [   11.284238] k3-dsp-rproc 64800000.dsp: configured DSP for remoteproc mode
    [   11.289138] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   11.289163] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   11.289205] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   11.292558] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   11.304793] remoteproc remoteproc0: 64800000.dsp is available
    [   11.307073] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   11.309554] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.309757] platform 41000000.r5f: configured R5F for IPC-only mode
    [   11.309816] platform 41000000.r5f: assigned reserved memory node r5f-dma-memory@a0000000
    [   11.316518] remoteproc remoteproc0: Direct firmware load for j784s4-c71_0-fw failed with error -2
    [   11.321619] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   11.328344] remoteproc remoteproc0: powering up 64800000.dsp
    [   11.336670] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   11.343149] remoteproc remoteproc1: 41000000.r5f is available
    [   11.343354] remoteproc remoteproc1: attaching to 41000000.r5f
    [   11.343641] platform 41000000.r5f: R5F core initialized in IPC-only mode
    [   11.343702]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@a0000000
    [   11.343872]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    [   11.343882] remoteproc remoteproc1: remote processor 41000000.r5f is now attached
    [   11.344756] remoteproc remoteproc0: Direct firmware load for j784s4-c71_0-fw failed with error -2
    [   11.355915] platform 5c00000.r5f: configured R5F for remoteproc mode
    [   11.360566] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [   11.361412] remoteproc remoteproc0: request_firmware failed: -2
    [   11.363831] k3-dsp-rproc 65800000.dsp: assigned reserved memory node c71-dma-memory@a9000000
    [   11.364070] k3-dsp-rproc 65800000.dsp: configured DSP for remoteproc mode
    [   11.376531] platform 5c00000.r5f: assigned reserved memory node r5f-dma-memory@a2000000
    [   11.386271] j721e-pcie 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [   11.390584] remoteproc remoteproc3: 65800000.dsp is available
    [   11.391978] k3-dsp-rproc 66800000.dsp: assigned reserved memory node c71-dma-memory@aa000000
    [   11.392298] k3-dsp-rproc 66800000.dsp: configured DSP for remoteproc mode
    [   11.392465] remoteproc remoteproc4: 66800000.dsp is available
    [   11.392990] remoteproc remoteproc3: Direct firmware load for j784s4-c71_1-fw failed with error -2
    [   11.392994] remoteproc remoteproc2: 5c00000.r5f is available
    [   11.393308] remoteproc remoteproc2: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
    [   11.393318] remoteproc remoteproc2: powering up 5c00000.r5f
    [   11.393382] remoteproc remoteproc2: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
    [   11.393390] remoteproc remoteproc2: request_firmware failed: -2
    [   11.393397] k3-dsp-rproc 67800000.dsp: assigned reserved memory node c71-dma-memory@ab000000
    [   11.393823] k3-dsp-rproc 67800000.dsp: configured DSP for remoteproc mode
    [   11.394020] remoteproc remoteproc5: 67800000.dsp is available
    [   11.395404] remoteproc remoteproc4: Direct firmware load for j784s4-c71_2-fw failed with error -2
    [   11.395423] remoteproc remoteproc4: powering up 66800000.dsp
    [   11.395508] remoteproc remoteproc4: Direct firmware load for j784s4-c71_2-fw failed with error -2
    [   11.395518] remoteproc remoteproc4: request_firmware failed: -2
    [   11.395726] remoteproc remoteproc5: Direct firmware load for j784s4-c71_3-fw failed with error -2
    [   11.395739] remoteproc remoteproc5: powering up 67800000.dsp
    [   11.395822] remoteproc remoteproc5: Direct firmware load for j784s4-c71_3-fw failed with error -2
    [   11.395834] remoteproc remoteproc5: request_firmware failed: -2
    [   11.397273] platform 5e00000.r5f: configured R5F for remoteproc mode
    [   11.397969] platform 5e00000.r5f: assigned reserved memory node r5f-dma-memory@a4000000
    [   11.398322] remoteproc remoteproc6: 5e00000.r5f is available
    [   11.398658] remoteproc remoteproc6: Direct firmware load for j784s4-main-r5f1_0-fw failed with error -2
    [   11.398672] remoteproc remoteproc6: powering up 5e00000.r5f
    [   11.398756] remoteproc remoteproc6: Direct firmware load for j784s4-main-r5f1_0-fw failed with error -2
    [   11.398767] remoteproc remoteproc6: request_firmware failed: -2
    [   11.401545] j721e-pcie 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [   11.402000] platform 5900000.r5f: configured R5F for remoteproc mode
    [   11.402701] platform 5900000.r5f: assigned reserved memory node r5f-dma-memory@a6000000
    [   11.402981] remoteproc remoteproc7: 5900000.r5f is available
    [   11.403261] remoteproc remoteproc7: Direct firmware load for j784s4-main-r5f2_0-fw failed with error -2
    [   11.403271] remoteproc remoteproc7: powering up 5900000.r5f
    [   11.403336] remoteproc remoteproc7: Direct firmware load for j784s4-main-r5f2_0-fw failed with error -2
    [   11.403347] remoteproc remoteproc7: request_firmware failed: -2
    [   11.411567] remoteproc remoteproc3: powering up 65800000.dsp
    [   11.449391] j721e-pcie 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   11.503398] remoteproc remoteproc3: Direct firmware load for j784s4-c71_1-fw failed with error -2
    [   11.513871] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [   11.526919] remoteproc remoteproc3: request_firmware failed: -2
    [   11.545192] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [   11.588271] am65_cpsw_nuss_ndo_slave_open ruijie
    [   11.591764] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [   11.603843] am65-cpsw-nuss c200000.ethernet: down msc_sl e0000000 tmo 0
    [   11.609238] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [   11.782694] cdns-csi2rx: probe of 4504000.csi-bridge failed with error -22
    [   11.786753] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.795417] am65-cpsw-nuss c200000.ethernet: set new flow-id-base 82
    [   11.807375] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.835056] cdns-csi2rx: probe of 4514000.csi-bridge failed with error -22
    [   11.843092] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [   11.862898] phylink_of_phy_connect ruijie
    [   11.915172] fwnode_get_phy_node ruijie 1
    [   11.919164] phylink_
                           [  OK  ] Reached target Hardware activated USB gadget.
    [  OK  ] Finished Coldplug All udev Devices.
    [   12.493301] random: systemd: uninitialized urandom read (16 bytes read)
    [  OK  ] Found device /dev/disk/by-partlabel/data.
    [  OK  ] Found device /dev/disk/by-partlabel/update.
             Starting Make File System …/dev/disk/by-partlabel/data...
             Starting Make File System …ev/disk/by-partlabel/update...
    [  OK  ] Finished Make File System on /dev/disk/by-partlabel/data.
    [  OK  ] Finished Make File System …/dev/disk/by-partlabel/update.
             Starting File System Check…/dev/disk/by-partlabel/data...
             Starting File System Check…ev/disk/by-partlabel/update...
    [  OK  ] Finished Bind mount volatile /var/lib.
    [  OK  ] Finished File System Check…/dev/disk/by-partlabel/update.
             Mounting /update...
    [   12.966924] EXT4-fs (mmcblk0p16): mounted filesystem with ordered data mode. Opts: (null)
    [  OK  ] Mounted /update.
    [  OK  ] Finished File System Check…n /dev/disk/by-partlabel/data.
             Mounting /data...
    [   13.028760] EXT4-fs (mmcblk0p17): mounted filesystem with ordered data mode. Opts: (null)
    [  OK  ] Mounted /data.
    [  OK  ] Reached target Local File Systems.
             Starting Mount partitions dual service loading...
             Starting SELinux init service loading...
    [   13.108424] EXT4-fs (mmcblk0p14): mounted filesystem without journal. Opts: noload
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Mount partitions dual service loading.
    [  OK  ] Finished SELinux init service loading.
    [  OK  ] Finished Create Volatile Files and Directories.
             Starting Security Auditing Service...
             Starting Network Name Resolution...
    [  OK  ] Started Security Auditing Service.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily rotation of log files.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
             Starting Configure Crash Handler...
    [  OK  ] Started Periodic Command Scheduler.
    [  OK  ] Started D-Bus System Message Bus.
             Starting Dump Pstore...
             Starting system property service...
             Starting System Logging Service...
             Starting User Login Management...
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Finished Dump Pstore.
    [  OK  ] Finished Configure Crash Handler.
    [  OK  ] Started system property service.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Started NFS Mount Daemon.
             Starting NFS server and services...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting /etc/rc.local Compatibility...
             Starting Permit User Sessions...
    [  OK  ] Started System Logging Service.
    [  OK  ] Started /etc/rc.local Compatibility.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started User Login Management.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS0.
    [  OK  ] Started Serial Getty on ttyS2.
    [   13.943357] file system registered
    [  OK  ] Reached target Login Prompts.
    [  OK  ] Reached target Multi-User System.
    [   14.137050] read descriptors
    [   14.140313] read strings
    [   14.912087] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
    [   14.920000] NFSD: Using legacy client tracking operations.
    [   14.925527] NFSD: starting 90-second grace period (net f0000081)
    [  OK  ] Finished NFS server and services.
    
    Wind River Linux LTS 21.20 Update 13 j784s4-evm ttyS2
    
    

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的,

    我们更改 qsgmii-main-ports 值:

    使用 cpsw9g port5 ping ip、但不使用 ping

    设置 cpsw9g 环回模式、 是否可以设置 cpsw 配置? 谢谢

     

    root@j784s4-evm:/data# ethtool -S eth1 | grep good
         p0_rx_good_frames: 94
         p0_tx_good_frames: 0
         rx_good_frames: 0
         tx_good_frames: 46
    root@j784s4-evm:/data# ./devmem2  0xc026330
    /dev/mem opened.
    Memory mapped at address 0x3ff95810000.
    Read at address  0x0C026330 (0x3ff95816330): 0x00020002
    root@j784s4-evm:/data#

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好、根据下面的 PSDK Linux 用户指南、您能否检查您使用的是本机 Linux 以太网还是需要 R5上的 ethfw 来桥接设置的虚拟客户端模式?

    在本地模式下工作时、您是否遵循了"k3-j784s4-quad-port-eth1-exp.dtbo"中的示例

    https://software-dl.ti.com/jacinto7/esd/processor-sdk-linux-jacinto7/latest/exports/docs/linux/Foundational_Components/Kernel/Kernel_Drivers/Network/CPSWng.html#cpswng 

    https://software-dl.ti.com/jacinto7/esd/processor-sdk-linux-jacinto7/latest/exports/docs/linux/Foundational_Components/Kernel/Kernel_Drivers/Network/CPSWng-Native-Ethernet.html#cpswng-native-ethernet 

    J784S4 QSGMII k3-j784s4-quad-port-eth1-exp.dtbo
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TI:

    设置 SGMII 控制环回后、 我们发现 SGMII 环回失败、没有 Rx 良好帧

    设置 Mac 环回时、Rx goog 帧具有数据编号

    请帮助检查这个问题、谢谢

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TI:

    设置 SGMII 控制环回后、 我们发现 SGMII 环回失败、没有 Rx 良好帧

    设置 Mac 环回时、Rx goog 帧具有数据编号

    请帮助检查这个问题、谢谢

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Ruijie、您对此问题的描述不清楚。

    1)请1)将您的原理图附加到此部分以演示连接2)选择一个主题(QSGMII 或 SGMII)并满足您的意图3)将您的更改上传至 DTS 文件、并描述您为什么要这样做(根据客户电路板调整或做什么)? 之后、我们的以太网 BU 专家会研究一下。  

    谢谢。  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Daer ti,

    我们的电路板原理图为:

    2) 2)在 Linux 本机驱动程序中使用 qsgmii、phy 可以建立链路、但不能 ping

      使用 SGMII 模式、不使用 ping

     我们测试 cpsw Mac 环回和 SGMII 环回

      MAC 备份正常、但 SGMII 环回失败

    3) DTS 是:

    // SPDX-License-Identifier: GPL-2.0
    /**
     * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
     * J7AHP board.
     *
     * Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
     */
    
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/mux/ti-serdes.h>
    #include <dt-bindings/phy/phy-cadence.h>
    #include <dt-bindings/phy/phy.h>
    #include <dt-bindings/pinctrl/k3.h>
    
    / {
    aliases {
    	ethernet4 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
    	ethernet5 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
    	ethernet6 = "/bus@100000/ethernet@c000000/ethernet-ports/port@7";
    	ethernet7 = "/bus@100000/ethernet@c000000/ethernet-ports/port@8";
    };
    };
    
    &main_cpsw0 {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&mdio_pins_default &phy_enable_default>;
    };
    
    
    &main_cpsw0_port5 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy4>;
    	phy-mode = "qsgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 5>, <&serdes2_qsgmii_link>;
    	phy-names = "portmode", "serdes-phy";
    };
    
    &main_cpsw0_port6 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy5>;
    	phy-mode = "qsgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 6>, <&serdes2_qsgmii_link>;
    	phy-names = "portmode", "serdes-phy";
    };
    
    &main_cpsw0_port7 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy6>;
    	phy-mode = "qsgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 7>, <&serdes2_qsgmii_link>;
    	phy-names = "portmode", "serdes-phy";
    	
    };
    
    &main_cpsw0_port8 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy7>;
    	phy-mode = "qsgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 8>, <&serdes2_qsgmii_link>;
    	phy-names = "portmode", "serdes-phy";
    };
    
    &main_cpsw0_mdio {
    	bus_freq = <500000>;  //设置500KB
    	#address-cells = <1>;
    	#size-cells = <0>;
    
    	cpsw9g_phy4: ethernet-phy@4 {
    		reg = <4>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy5: ethernet-phy@5 {
    		reg = <5>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy6: ethernet-phy@6 {
    		reg = <6>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy7: ethernet-phy@7 {
    		reg = <7>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    };
    
    &cpsw9g_virt_mac {
    	status = "disabled";
    };
    
    &cpsw9g_virt_maconly {
    	status = "disabled";
    };
    
    &main_pmx0 {
    	mdio_pins_default: mdio_pins_default {
    		pinctrl-single,pins = <
    			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
    			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
    		>;
    	};
    	
    	phy_enable_default: phy_enable_default {
                   pinctrl-single,pins = <
                           J784S4_IOPAD(0x044, PIN_OUTPUT, 7)
                   >;
          };
    };
    
    &main_r5fss0_core0 {
    	firmware-name = "pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f";
    };
    
    &serdes_ln_ctrl {
            idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
                          <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
                          <J784S4_SERDES1_LANE0_PCIE0_LANE0>, <J784S4_SERDES1_LANE1_PCIE0_LANE1>,
                          <J784S4_SERDES1_LANE2_PCIE0_LANE2>, <J784S4_SERDES1_LANE3_PCIE0_LANE3>,
                          <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
                          <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
    };
    
    
    &serdes_wiz2 {
    	status = "okay";
    };
    
    
    &serdes2 {
    	status = "okay";
    	serdes2_qsgmii_link: phy@0 {
    		reg = <0>;
    		cdns,num-lanes = <4>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_QSGMII>;
    		resets = <&serdes_wiz2 1>, <&serdes_wiz2 2>, <&serdes_wiz2 3>, <&serdes_wiz2 4>;
    	};
    };
    

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TI:  

    该寄存器是否可以使用检测 SGMII 链路状态?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    是的、第0位表示链路建立。 BTW、恐怕您不会在寻找适用于 TDA4VH 的 TRM、请仔细检查一下。 谢谢。  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Xu,

    您可以帮助发送适用于 TDA4VH 的 TRM 吗? 谢谢

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您可以从 TI.com 下载所有文档和应用手册、

    https://www.ti.com/product/TDA4VH-Q1#tech-docs 

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TI:

    谢谢、我们转储寄存器、值为0x0、没有链路、对吧? 问题是 Cpsw SGMII 未正确设置?

    32 78h CPSW_NUSS_VBUSP cpsw_9xuss_j7m_status_SGMII_link_REG 0h SGMII 链路状态寄存器
    32 78h CPSW_NUSS_VBUSP cpsw_9xuss_j7m_status_SGMII_link_REG   保留 0h 保留
    32 78h CPSW_NUSS_VBUSP cpsw_9xuss_j7m_status_SGMII_link_REG 1 SGMII2_link R 0h 端口2 SGMII 链路指示器
     
    32 78h CPSW_NUSS_VBUSP cpsw_9xuss_j7m_status_SGMII_link_REG 0 SGMII1_LINK R 0h 端口1 SGMII 链路指示器
     
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TI:

    端口5寄存器的值为0x00000032

    root@j784s4-evm:/data#./devmem2 0xc000514
    /dev/mem 打开。
    在地址0x3ff9ff50000上映射的存储器。
    在地址0x0C000514 (0x3ff9ff50514)处读取:0x00000032

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    本主题的内容摘要。

    大家好、BU 专家、在与客户进行通信并与客户保持一致后、BRCM 的4个单端口 PHY 不支持 QSGMII、因此客户需要我们团队的支持来在原生 Linux 驱动程序中启用 SGMII。  

    请求本机 Linux 驱动程序的原因是、仅提供 TSN 支持、而不提供 RTOS SDK。  

    请在 PSDK8.6上为 TDA4VH 提供补丁。 谢谢。  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    通过 RTOS SGMII 驱动程序修复了该问题、但需要 BU 支持在 Linux 内核上提供补丁来支持4个 SGMII 而非 QSGMII。  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TI:

    Linux 本机驱动程序何时支持 SGMII? 我们的项目很紧急、想要制定计划、还是您能告诉我、

    哪些 CPSW 寄存器会影响 SGMII 自动协商? 因为 RTOS 代码可以、但 Linux 无法

    谢谢。

    瑞杰

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Ruijie:

    您能否应用以下补丁并尝试 SGMII 模式

    补丁: e2e.ti.com/.../add_2D00_sgmii_2D00_support_2D00_j784s4.patch

    其余的支持已经存在。

    此致、
    坦迈

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TanMay,

    我们已添加补丁来测试

    但发现 SGMII 未链接, 在 Linux 中自动协商失败,但 RTOS 代码成功

    在 Linux μ,中、寄存器值为0x32、而在 RTOS 中、寄存器值为0x3D

    比较 RTOS 和 Linux 代码、自动协商功能并不相同

    RTOS 代码为:

    但在 Linux 中,代码是:μ m

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Ruijie:

    您能否共享寄存器0x0c000118 +(port_num * 0x100)和 0x0c000120 +(port_num * 0x100)的值。

    此致、
    坦迈

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TanMay,

    Linux 寄存器:

    MACPORT 4:

    root@j784s4-evm:/data#./devmem2 0xc000518
    /dev/mem 打开。
    在地址0x3ffbb140000处映射的存储器。
    在地址0x0C000518 (0x3ffbb140518)处读取:0x00000001
    root@j784s4-evm:/data#./devmem2 0xc000519
    /dev/mem 打开。
    在地址0x3ffa31f0000处映射的存储器。
    在地址0x0C000519 (0x3ffa31f0518)处读取:0x00000001
    root@j784s4-evm:/data#./devmem2 0xc000520
    /dev/mem 打开。
    在地址0x3ff9b810000处映射的存储器。
    在地址0x0C000520 (0x3ff9b810520)处读取:0x00004000
    root@j784s4-EVM:/data#

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    RTOS 寄存器转储:

    root@megatron:/data#./devmem2 0xc000514
    /dev/mem 打开。
    在地址0x3ffbbab0000处映射的存储器。
    在地址0x0C000514 (0x3ffbbab0514)处读取:0x0000003D
    root@megatron:/data#./devmem2 0xc000518
    /dev/mem 打开。
    存储器映射在地址0x3ff8bb30000处。
    在地址0x0C000518 (0x3ff8bb30518)上读取:0x00009801
    root@megatron:/data#./devmem2 0xc000519
    /dev/mem 打开。
    在地址0x3ff94940000处映射存储器。
    在地址0x0C000519 (0x3ff94940518)处读取:0x00009801
    root@megatron:/data#./devmem2 0xc000520
    /dev/mem 打开。
    在地址0x3ffa8fd0000处映射的存储器。
    在地址0x0C000520 (0x3ffa8fd0520):0x00005001处读取
    根@兆位:/data#

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Ruijie:  

    我们可以尝试使用此(e2e.ti.com/.../0724.add_2D00_sgmii_2D00_support_2D00_j784s4.patch)补丁吗?

    我正在尝试将 Linux 配置与 RTOS 相匹配、但理想情况下不需要该配置。

    此致、
    坦迈

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    Ruijie、请上传我的 Dtso 供 TanMay 查看、并在此处共享0x5060 040C (serdes0的内部 PLL 分配)回读。  

    TanMay,我与 DTS 一起检查了内核源代码,其中不使用焊盘中的外部参考时钟,从 A72/内核转储寄存器的回读表明我们已经在内部 PLL 上。   

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Tabmay:

    Linux DTS

    // SPDX-License-Identifier: GPL-2.0
    /**
     * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
     * J7AHP board.
     *
     * Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
     */
    
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/mux/ti-serdes.h>
    #include <dt-bindings/phy/phy-cadence.h>
    #include <dt-bindings/phy/phy.h>
    #include <dt-bindings/pinctrl/k3.h>
    
    / {
    aliases {
    	ethernet4 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
    	ethernet5 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
    	ethernet6 = "/bus@100000/ethernet@c000000/ethernet-ports/port@7";
    	ethernet7 = "/bus@100000/ethernet@c000000/ethernet-ports/port@8";
    };
    };
    
    &main_cpsw0 {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&mdio_pins_default>;
    };
    
    
    &main_cpsw0_port5 {
    	status = "okay";
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 5>, <&serdes2_sgmii_link1>;
    	phy-names = "portmode", "serdes-phy";
    	phy-handle = <&cpsw9g_phy4>;
    };
    
    &main_cpsw0_port6 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy5>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 6>, <&serdes2_sgmii_link2>;
    	phy-names = "portmode", "serdes-phy";
    };
    
    &main_cpsw0_port7 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy6>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 7>, <&serdes2_sgmii_link3>;
    	phy-names = "portmode", "serdes-phy";
    	
    };
    
    &main_cpsw0_port8 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy7>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 8>, <&serdes2_sgmii_link4>;
    	phy-names = "portmode", "serdes-phy";
    };
    
    &main_cpsw0_mdio {
    	bus_freq = <500000>;  //设置500KB
    	#address-cells = <1>;
    	#size-cells = <0>;
    
    	cpsw9g_phy4: ethernet-phy@4 {
    		reg = <4>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy5: ethernet-phy@5 {
    		reg = <5>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy6: ethernet-phy@6 {
    		reg = <6>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy7: ethernet-phy@7 {
    		reg = <7>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    };
    
    &cpsw9g_virt_mac {
    	status = "disabled";
    };
    
    &cpsw9g_virt_maconly {
    	status = "disabled";
    };
    
    &main_pmx0 {
    	mdio_pins_default: mdio_pins_default {
    		pinctrl-single,pins = <
    			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
    			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
    		>;
    	};
    
    };
    
    &main_r5fss0_core0 {
    	firmware-name = "pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f";
    };
    
    &serdes_ln_ctrl {
            idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
                          <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
                          <J784S4_SERDES1_LANE0_PCIE0_LANE0>, <J784S4_SERDES1_LANE1_PCIE0_LANE1>,
                          <J784S4_SERDES1_LANE2_PCIE0_LANE2>, <J784S4_SERDES1_LANE3_PCIE0_LANE3>,
                          <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
                          <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
    };
    
    
    &serdes_wiz2 {
    	status = "okay";
    };
    
    
    &serdes2 {
    	status = "okay";
    	serdes2_sgmii_link1: phy@0 {
    		reg = <0>;
    		cdns,num-lanes = <1>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_SGMII>;
    		resets = <&serdes_wiz2 1>;
    	};
    	serdes2_sgmii_link2: phy@0 {
    		reg = <0>;
    		cdns,num-lanes = <1>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_SGMII>;
    		resets = <&serdes_wiz2 2>;
    	};
    	serdes2_sgmii_link3: phy@0 {
    		reg = <0>;
    		cdns,num-lanes = <1>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_SGMII>;
    		resets = <&serdes_wiz2 3>;
    	};
    	serdes2_sgmii_link4: phy@0 {
    		reg = <0>;
    		cdns,num-lanes = <1>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_SGMII>;
    		resets = <&serdes_wiz2 4>;
    	};
    };
    

    补丁 0724.add-SGMII-support-j784s4.patch 也失败

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    当  在 Linux 中添加0724.add-SGMII-support-j784s4.patch 时、寄存器转储为:

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    当  在 Linux 中添加0724.add-SGMII-support-j784s4.patch 时、寄存器转储为:

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Ruijie:

    此问题出现在串行器/解串器配置中。

    您是否可以在 DTS 文件中使用以下配置:

    // SPDX-License-Identifier: GPL-2.0
    /**
     * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
     * J7AHP board.
     *
     * Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
     */
    
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/mux/ti-serdes.h>
    #include <dt-bindings/phy/phy-cadence.h>
    #include <dt-bindings/phy/phy.h>
    #include <dt-bindings/pinctrl/k3.h>
    
    / {
    aliases {
    	ethernet4 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
    	ethernet5 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
    	ethernet6 = "/bus@100000/ethernet@c000000/ethernet-ports/port@7";
    	ethernet7 = "/bus@100000/ethernet@c000000/ethernet-ports/port@8";
    };
    };
    
    &main_cpsw0 {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&mdio_pins_default>;
    };
    
    
    &main_cpsw0_port5 {
    	status = "okay";
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 5>, <&serdes2_sgmii_link>;
    	phy-names = "portmode", "serdes-phy";
    	phy-handle = <&cpsw9g_phy4>;
    };
    
    &main_cpsw0_port6 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy5>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 6>;
    	phy-names = "portmode";
    };
    
    &main_cpsw0_port7 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy6>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 7>;
    	phy-names = "portmode";
    	
    };
    
    &main_cpsw0_port8 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy7>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&phy_gmii_sel_cpsw0 8>;
    	phy-names = "portmode";
    };
    
    &main_cpsw0_mdio {
    	bus_freq = <500000>;  //设置500KB
    	#address-cells = <1>;
    	#size-cells = <0>;
    
    	cpsw9g_phy4: ethernet-phy@4 {
    		reg = <4>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy5: ethernet-phy@5 {
    		reg = <5>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy6: ethernet-phy@6 {
    		reg = <6>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    	cpsw9g_phy7: ethernet-phy@7 {
    		reg = <7>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    };
    
    &cpsw9g_virt_mac {
    	status = "disabled";
    };
    
    &cpsw9g_virt_maconly {
    	status = "disabled";
    };
    
    &main_pmx0 {
    	mdio_pins_default: mdio_pins_default {
    		pinctrl-single,pins = <
    			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
    			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
    		>;
    	};
    
    };
    
    &main_r5fss0_core0 {
    	firmware-name = "pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f";
    };
    
    &serdes_ln_ctrl {
            idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
                          <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
                          <J784S4_SERDES1_LANE0_PCIE0_LANE0>, <J784S4_SERDES1_LANE1_PCIE0_LANE1>,
                          <J784S4_SERDES1_LANE2_PCIE0_LANE2>, <J784S4_SERDES1_LANE3_PCIE0_LANE3>,
                          <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
                          <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
    };
    
    
    &serdes_wiz2 {
    	status = "okay";
    };
    
    
    &serdes2 {
    	status = "okay";
    	serdes2_sgmii_link: phy@0 {
    		reg = <0>;
    		cdns,num-lanes = <4>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_SGMII>;
    		resets = <&serdes_wiz2 1>, <&serdes_wiz2 2>, <&serdes_wiz2 3>, <&serdes_wiz2 4>;
    	};
    };

    此致、
    坦迈

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TanMay,

    使用新的 DTS,测试也失败,寄存器转储:

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您是否使用了 Tanmay 的补丁和 DTS? 我还尝试在 J784s4的 Serdes2上配置 SGMII、

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Emily,

    对不起,SGMII 无法使用补丁和来自 TanMay 的 DTS,SGMII 无法链接

    谢谢

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 Emily,

    您是否有 SGMII 测试? 它是否正常工作?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好、Tanmay、请尽可能创建一个补丁并通过 EVM 进行验证、谢谢。  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的,

    有更新吗?

    谢谢,

    瑞杰

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好!

    已验证 SGMII 能够在 EVM 上运行。

    您是否可以执行以下操作:

    1. 运行 MAC 回送测试(如何执行 MAC 回送)
    2. 运行 phy 环回测试
    3. 您能否将整个 Linux 内核引导日志

    此致、
    坦迈

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TanMay,

    1)MACPORT 的 MAC 环回测试5

       

    root@megatron:/data# ./devmem2 0xc026330 w 0xA3
    /dev/mem opened.
    Memory mapped at address 0x3ff9f4f0000.
    Read at address  0x0C026330 (0x3ff9f4f6330): 0x000000A3
    Write at address 0x0C026330 (0x3ff9f4f6330): 0x000000A3, readback 0x000000A3
    root@megatron:/data# ethtool -s eth0 | grep good
    root@megatron:/data# ethtool -S eth0 | grep good
         p0_rx_good_frames: 166
         p0_tx_good_frames: 124
         rx_good_frames: 590
         tx_good_frames: 166
    root@megatron:/data# ping -c 5 192.168.11.100
    PING 192.168.11.100 (192.168.11.100) 56(84) bytes of data.
    From 192.168.11.1 icmp_seq=1 Destination Host Unreachable
    From 192.168.11.1 icmp_seq=2 Destination Host Unreachable
    From 192.168.11.1 icmp_seq=3 Destination Host Unreachable
    From 192.168.11.1 icmp_seq=4 Destination Host Unreachable
    From 192.168.11.1 icmp_seq=5 Destination Host Unreachable
    
    --- 192.168.11.100 ping statistics ---
    5 packets transmitted, 0 received, +5 errors, 100% packet loss, time 4078ms
    pipe 4
    root@megatron:/data# ethtool -S eth0 | grep good
         p0_rx_good_frames: 172
         p0_tx_good_frames: 124
         rx_good_frames: 596
         tx_good_frames: 172
    root@megatron:/data#

    2)PHY 环回测试

       将 phy 驱动器本地环回设置为测试

        

    root@megatron:/# ethtool -S eth0 | grep good
         p0_rx_good_frames: 28
         p0_tx_good_frames: 93
         rx_good_frames: 309
         tx_good_frames: 28
    root@megatron:/# ping -c 5 192.168.11.100
    PING 192.168.11.100 (192.168.11.100) 56(84) bytes of data.
    From 192.168.11.1 icmp_seq=1 Destination Host Unreachable
    From 192.168.11.1 icmp_seq=2 Destination Host Unreachable
    From 192.168.11.1 icmp_seq=5 Destination Host Unreachable
    
    --- 192.168.11.100 ping statistics ---
    5 packets transmitted, 0 received, +3 errors, 100% packet loss, time 4102ms
    pipe 4
    root@megatron:/# ethtool -S eth0 | grep good
         p0_rx_good_frames: 35
         p0_tx_good_frames: 205
         rx_good_frames: 691
         tx_good_frames: 35
    root@megatron:/# ifconfig eth0
    eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet 192.168.11.1  netmask 255.255.255.0  broadcast 192.168.11.255
            inet6 fe80::4c45:feff:fe56:555b  prefixlen 64  scopeid 0x20<link>
            ether 4e:45:fe:56:55:5b  txqueuelen 1000  (Ethernet)
            RX packets 0  bytes 0 (0.0 B)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 36  bytes 2272 (2.2 KiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    root@megatron:/#

     3)Linux 内核引导日志

    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
    [    0.000000] Linux version 5.10.153-rt76-yocto-preempt-rt (oe-user@oe-host) (aarch64-wrs-linux-gcc (GCC) 10.3.0, GNU ld (GNU Binutils) 2.36.1.20210703) #1 SMP PREEMPT_RT Tue Jun 27 04:44:05 UTC 2023
    [    0.000000] Machine model: Texas Instruments J784S4 EVM
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a8000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a8100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@aa000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@aa100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 48 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-rtos-ipc-memory-region@ac000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000af000000, size 80 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@af000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@b4000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b4100000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@b4100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b7400000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@b7400000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b7500000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory@b7500000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ba800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-dma-memory@ba800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ba900000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-memory@ba900000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000bdc00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-dma-memory@bdc00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000bdd00000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-memory@bdd00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000e1000000, size 80 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@e1000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000e6000000, size 8 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-queues@e6000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000e6800000, size 24 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-buffers@e6800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 1024 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x0000000ffffeffff]
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e7fffff]
    [    0.000000]   node   0: [mem 0x000000009e800000-0x00000000c0ffffff]
    [    0.000000]   node   0: [mem 0x00000000c1000000-0x00000000e0ffffff]
    [    0.000000]   node   0: [mem 0x00000000e1000000-0x00000000e7ffffff]
    [    0.000000]   node   0: [mem 0x00000000e8000000-0x00000000fffeffff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x00000008bfffffff]
    [    0.000000]   node   0: [mem 0x00000008c0000000-0x0000000ffffeffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000ffffeffff]
    [    0.000000] On node 0 totalpages: 524286
    [    0.000000]   DMA zone: 32 pages used for memmap
    [    0.000000]   DMA zone: 0 pages reserved
    [    0.000000]   DMA zone: 32767 pages, LIFO batch:3
    [    0.000000]   Normal zone: 480 pages used for memmap
    [    0.000000]   Normal zone: 491519 pages, LIFO batch:3
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] cma: Failed to reserve 512 MiB
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.2
    [    0.000000] percpu: Embedded 10 pages/cpu s553856 r8192 d93312 u655360
    [    0.000000] pcpu-alloc: s553856 r8192 d93312 u655360 alloc=10*65536
    [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
    [    0.000000] Detected PIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
    [    0.000000] CPU features: detected: Spectre-BHB
    [    0.000000] CPU features: detected: ARM erratum 1742098
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 523774
    [    0.000000] Kernel command line:  androidboot.hardware=megatron androidboot.product=HH25-1 androidboot.hwversion=v1_1 androidboot.soc_type=TI K3_J784S4 androidboot.vin=VINVIN12345678901 androidboot.serialno=1236574 mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc.u-boot),256k(hbmc.env),-@8m(hbmc.rootfs) androidboot.boot_device_root=mmcblk0 androidboot.verifiedbootstate=orange androidboot.slot_suffix=_a dm-mod.create="vroot,,,ro,0 3604480 verity 1 PARTUUID=1b578af4-4f52-41ba-bf1d-3387d6ba8f4e PARTUUID=1b578af4-4f52-41ba-bf1d-3387d6ba8f4e 4096 4096 450560 450560 sha1 5cbedeaaf12e8a79e0d5ee314b7cff2a96a6123c 23e11b385efcb9c1cad1dc67932507ba13ba0df23885f99e6647f05978fb46e2 10 restart_on_corruption ignore_zero_blocks use_fec_from_device PARTUUID=1b578af4-4f52-41ba-bf1d-3387d6ba8f4e fec_roots 2 fec_blocks 454109 fec_start 454109
    [    0.000000] Dentry cache hash table entries: 4194304 (order: 9, 33554432 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 2097152 (order: 8, 16777216 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbff0000-0x00000000ffff0000] (64MB)
    [    0.000000] Memory: 31118912K/33554304K available (12992K kernel code, 2212K rwdata, 3392K rodata, 4608K init, 1337K bss, 2435392K reserved, 0K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [    0.000000] ftrace: allocating 41767 entries in 11 pages
    [    0.000000] ftrace: allocated 11 pages with 3 groups
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu:     RCU event tracing is enabled.
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
    [    0.000000] rcu:     RCU priority boosting: priority 1 delay 500 ms.
    [    0.000000] rcu:     RCU_SOFTIRQ processing moved to rcuc kthreads.
    [    0.000000]  No expedited grace period (rcu_normal_after_boot).
    [    0.000000]  Trampoline variant of Tasks RCU enabled.
    [    0.000000]  Rude variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 960 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] GICv3: Distributor has no Range Selector support
    [    0.000000] GICv3: 16 PPIs implemented
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: allocated 1048576 Devices @8c0800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x00000008c0310000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008c0320000
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.000189] Console: colour dummy device 80x25
    [    0.000197] printk: console [tty0] enabled
    [    0.000257] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.000263] pid_max: default: 32768 minimum: 301
    [    0.000365] LSM: Security Framework initializing
    [    0.000400] SELinux:  Initializing.
    [    0.000603] Mount-cache hash table entries: 65536 (order: 3, 524288 bytes, linear)
    [    0.000707] Mountpoint-cache hash table entries: 65536 (order: 3, 524288 bytes, linear)
    [    0.006570] rcu: Hierarchical SRCU implementation.
    [    0.008870] Platform MSI: msi-controller@1820000 domain created
    [    0.009130] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.009336] EFI services will not be available.
    [    0.010950] smp: Bringing up secondary CPUs ...
    [    0.021025] Detected PIPT I-cache on CPU1
    [    0.021050] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
    [    0.021065] GICv3: CPU1: using allocated LPI pending table @0x00000008c0330000
    [    0.021110] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
    [    0.031390] Detected PIPT I-cache on CPU2
    [    0.031415] GICv3: CPU2: found redistributor 2 region 0:0x0000000001940000
    [    0.031431] GICv3: CPU2: using allocated LPI pending table @0x00000008c0340000
    [    0.031475] CPU2: Booted secondary processor 0x0000000002 [0x411fd080]
    [    0.041745] Detected PIPT I-cache on CPU3
    [    0.041773] GICv3: CPU3: found redistributor 3 region 0:0x0000000001960000
    [    0.041788] GICv3: CPU3: using allocated LPI pending table @0x00000008c0350000
    [    0.041831] CPU3: Booted secondary processor 0x0000000003 [0x411fd080]
    [    0.052028] Detected PIPT I-cache on CPU4
    [    0.052055] GICv3: CPU4: found redistributor 100 region 0:0x0000000001980000
    [    0.052071] GICv3: CPU4: using allocated LPI pending table @0x00000008c0360000
    [    0.052115] CPU4: Booted secondary processor 0x0000000100 [0x411fd080]
    [    0.062350] Detected PIPT I-cache on CPU5
    [    0.062381] GICv3: CPU5: found redistributor 101 region 0:0x00000000019a0000
    [    0.062398] GICv3: CPU5: using allocated LPI pending table @0x00000008c0370000
    [    0.062442] CPU5: Booted secondary processor 0x0000000101 [0x411fd080]
    [    0.072731] Detected PIPT I-cache on CPU6
    [    0.072762] GICv3: CPU6: found redistributor 102 region 0:0x00000000019c0000
    [    0.072779] GICv3: CPU6: using allocated LPI pending table @0x00000008c0380000
    [    0.072823] CPU6: Booted secondary processor 0x0000000102 [0x411fd080]
    [    0.082974] Detected PIPT I-cache on CPU7
    [    0.083008] GICv3: CPU7: found redistributor 103 region 0:0x00000000019e0000
    [    0.083024] GICv3: CPU7: using allocated LPI pending table @0x00000008c0390000
    [    0.083069] CPU7: Booted secondary processor 0x0000000103 [0x411fd080]
    [    0.083287] smp: Brought up 1 node, 8 CPUs
    [    0.083300] SMP: Total of 8 processors activated.
    [    0.083309] CPU features: detected: 32-bit EL0 Support
    [    0.083319] CPU features: detected: CRC32 instructions
    [    0.083536] CPU: All CPU(s) started at EL2
    [    0.083684] alternatives: patching kernel code
    [    0.085469] devtmpfs: initialized
    [    0.133842] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.133873] futex hash table entries: 2048 (order: 2, 262144 bytes, linear)
    [    0.134451] pinctrl core: initialized pinctrl subsystem
    [    0.136456] DMI not present or invalid.
    [    0.137414] NET: Registered protocol family 16
    [    0.140073] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
    [    0.140812] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.141616] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.141871] audit: initializing netlink subsys (disabled)
    [    0.142322] audit: type=2000 audit(0.140:1): state=initialized audit_enabled=0 res=1
    [    0.143833] thermal_sys: Registered thermal governor 'step_wise'
    [    0.145013] ASID allocator initialised with 65536 entries
    [    0.303807] HugeTLB registered 16.0 GiB page size, pre-allocated 0 pages
    [    0.303818] HugeTLB registered 512 MiB page size, pre-allocated 0 pages
    [    0.303826] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.384009] raid6: neonx8   gen()   580 MB/s
    [    0.452197] raid6: neonx8   xor()  1045 MB/s
    [    0.521581] raid6: neonx4   gen()   351 MB/s
    [    0.589406] raid6: neonx4   xor()   413 MB/s
    [    0.658226] raid6: neonx2   gen()   345 MB/s
    [    0.725715] raid6: neonx2   xor()   313 MB/s
    [    0.794505] raid6: neonx1   gen()   222 MB/s
    [    0.862060] raid6: neonx1   xor()   249 MB/s
    [    0.930410] raid6: int64x8  gen()   380 MB/s
    [    0.998404] raid6: int64x8  xor()   454 MB/s
    [    1.067239] raid6: int64x4  gen()   216 MB/s
    [    1.135059] raid6: int64x4  xor()   240 MB/s
    [    1.204839] raid6: int64x2  gen()   169 MB/s
    [    1.271777] raid6: int64x2  xor()   216 MB/s
    [    1.339750] raid6: int64x1  gen()    93 MB/s
    [    1.410193] raid6: int64x1  xor()    73 MB/s
    [    1.410206] raid6: using algorithm neonx8 gen() 580 MB/s
    [    1.410214] raid6: .... xor() 1045 MB/s, rmw enabled
    [    1.410221] raid6: using neon recovery algorithm
    [    1.411563] k3-chipinfo 43000014.chipid: Family:J784S4 rev:SR1.0 JTAGID[0x0bb8002f] Detected
    [    1.414598] vsys_3v3: supplied by evm_12v0
    [    1.416398] vsys_5v0: supplied by evm_12v0
    [    1.422015] iommu: Default domain type: Translated
    [    1.422438] vgaarb: loaded
    [    1.423461] SCSI subsystem initialized
    [    1.424215] usbcore: registered new interface driver usbfs
    [    1.424359] usbcore: registered new interface driver hub
    [    1.424528] usbcore: registered new device driver usb
    [    1.425812] mc: Linux media interface: v0.10
    [    1.425903] videodev: Linux video capture interface: v2.00
    [    1.431585] Advanced Linux Sound Architecture Driver Initialized.
    [    1.434737] clocksource: Switched to clocksource arch_sys_counter
    [    2.120845] Carveout Heap: Exported 512 MiB at 0x00000000c1000000
    [    2.121064] NET: Registered protocol family 2
    [    2.121814] IP idents hash table entries: 262144 (order: 5, 2097152 bytes, linear)
    [    2.126998] tcp_listen_portaddr_hash hash table entries: 16384 (order: 4, 1048576 bytes, linear)
    [    2.127361] TCP established hash table entries: 262144 (order: 5, 2097152 bytes, linear)
    [    2.128262] TCP bind hash table entries: 65536 (order: 5, 3670016 bytes, linear)
    [    2.129313] TCP: Hash tables configured (established 262144 bind 65536)
    [    2.130164] UDP hash table entries: 16384 (order: 5, 2097152 bytes, linear)
    [    2.131009] UDP-Lite hash table entries: 16384 (order: 5, 2097152 bytes, linear)
    [    2.132989] NET: Registered protocol family 1
    [    2.134540] RPC: Registered named UNIX socket transport module.
    [    2.134555] RPC: Registered udp transport module.
    [    2.134565] RPC: Registered tcp transport module.
    [    2.134575] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    2.134601] PCI: CLS 0 bytes, default 64
    [    2.141512] workingset: timestamp_bits=46 max_order=19 bucket_order=0
    [    2.180412] NFS: Registering the id_resolver key type
    [    2.180464] Key type id_resolver registered
    [    2.180481] Key type id_legacy registered
    [    2.180633] jffs2: version 2.2. (NAND) \xc2\xa9 2001-2006 Red Hat, Inc.
    [    2.204685] xor: measuring software checksum speed
    [    2.208997]    8regs           :  2360 MB/sec
    [    2.213333]    32regs          :  2357 MB/sec
    [    2.232932]    arm64_neon      :   518 MB/sec
    [    2.232944] xor: using function: 8regs (2360 MB/sec)
    [    2.233090] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
    [    2.233403] io scheduler mq-deadline registered
    [    2.233420] io scheduler kyber registered
    [    2.249877] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
    [    2.251382] pinctrl-single 11c000.pinctrl: 72 pins, size 288
    [    2.262269] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
    [    2.262820] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
    [    2.266190] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    2.308859] brd: module loaded
    [    2.323097] CAN device driver interface
    [    2.328319] usbcore: registered new interface driver asix
    [    2.328422] usbcore: registered new interface driver ax88179_178a
    [    2.328519] usbcore: registered new interface driver cdc_ether
    [    2.328615] usbcore: registered new interface driver net1080
    [    2.328712] usbcore: registered new interface driver cdc_subset
    [    2.328807] usbcore: registered new interface driver zaurus
    [    2.328961] usbcore: registered new interface driver cdc_ncm
    [    2.336031] usbcore: registered new interface driver usb-storage
    [    2.337084] i2c /dev entries driver
    [    2.340604] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
    [    2.344665] sdhci: Secure Digital Host Controller Interface driver
    [    2.344674] sdhci: Copyright(c) Pierre Ossman
    [    2.345742] sdhci-pltfm: SDHCI platform and OF driver helper
    [    2.347598] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    2.350045] usbcore: registered new interface driver usbhid
    [    2.350054] usbhid: USB HID core driver
    [    2.352249] optee: probing for conduit method.
    [    2.352275] optee: revision 3.13 (8c1ebf3d)
    [    2.352927] optee: dynamic shared memory is enabled
    [    2.353225] optee: initialized driver
    [    2.360876] u32 classifier
    [    2.360886]     input device check on
    [    2.360891]     Actions configured
    [    2.363001] NET: Registered protocol family 10
    [    2.367328] Segment Routing with IPv6
    [    2.367518] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [    2.369027] NET: Registered protocol family 17
    [    2.369099] can: controller area network core
    [    2.369465] NET: Registered protocol family 29
    [    2.369482] can: raw protocol
    [    2.369507] can: broadcast manager protocol
    [    2.369570] can: netlink gateway - max_hops=1
    [    2.370291] Key type dns_resolver registered
    [    2.370654] NET: Registered protocol family 40
    [    2.371603] printk: console [tty0]: printing thread started
    [    2.372160] registered taskstats version 1
    [    2.372319] Key type ._fscrypt registered
    [    2.372337] Key type .fscrypt registered
    [    2.372354] Key type fscrypt-provisioning registered
    [    2.377702] Btrfs loaded, crc32c=crc32c-generic
    [    2.379740] Key type encrypted registered
    [    2.405989] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
    [    2.407031] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
    [    2.421061] ti-sci 44083000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.5.2--v08.05.02 (Chill Capybar')
    [    2.634644] pca953x 0-0020: supply vcc not found, using dummy regulator
    [    2.635325] pca953x 0-0020: using no AI
    [    2.658831] pca953x 0-0020: failed writing register
    [    2.659555] pca953x: probe of 0-0020 failed with error -121
    [    2.662165] pca953x 0-0022: supply vcc not found, using dummy regulator
    [    2.662866] pca953x 0-0022: using AI
    [    2.663077] pca953x 0-0022: failed writing register
    [    2.663792] pca953x: probe of 0-0022 failed with error -121
    [    2.663862] omap_i2c 2000000.i2c: bus 0 rev0.12 at 400 kHz
    [    2.672013] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 177 domain created
    [    2.672788] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 10 domain created
    [    2.673641] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 283 domain created
    [    2.674946] ti-sci-inta 33d00000.msi-controller: Interrupt Aggregator domain 321 created
    [    2.717429] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:328
    [    2.717446] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
    [    2.717456] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66349100, num_proxies:64
    [    2.733328] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[878,128] sci-dev-id:315
    [    2.733346] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
    [    2.733355] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64
    [    2.736109] 2880000.serial: ttyS2 at MMIO 0x2880000 (irq = 21, base_baud = 3000000) is a 8250
    [    2.736400] printk: console [ttyS2]: printing thread started
    [    2.736446] printk: console [ttyS2] enabled
    [    2.754805] am65_cpsw_nuss_probe ruijie
    [    2.802824] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 500000
    [    2.811269] bcm89883_probe ruijie phy_speed 1000
    [    2.811284] Broadcom BCM89883 c000f00.mdio:04: bcm89883_probe id = 0xae02503a
    [    2.821563] bcm89883_probe ruijie phy_speed 1000
    [    2.821575] Broadcom BCM89883 c000f00.mdio:05: bcm89883_probe id = 0xae02503a
    [    2.831808] bcm89883_probe ruijie phy_speed 1000
    [    2.831820] Broadcom BCM89883 c000f00.mdio:06: bcm89883_probe id = 0xae02503a
    [    2.833454] davinci_mdio c000f00.mdio: phy[4]: device c000f00.mdio:04, driver Broadcom BCM89883
    [    2.833466] davinci_mdio c000f00.mdio: phy[5]: device c000f00.mdio:05, driver Broadcom BCM89883
    [    2.833474] davinci_mdio c000f00.mdio: phy[6]: device c000f00.mdio:06, driver Broadcom BCM89883
    [    2.833747] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA03102, cpsw version 0x6BA82902 Ports: 9 quirks:00000000
    [    2.836302] phy_gmii_sel_mode PHY_INTERFACE_MODE_SGMII extra:0x10040010
    [    2.836314] phy_gmii_sel_mode id:5 mode:4 rgmii_id:0 rmii_clk_ext:0
    [    2.836700] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    2.837082] phy_gmii_sel_mode PHY_INTERFACE_MODE_SGMII extra:0x10040010
    [    2.837091] phy_gmii_sel_mode id:6 mode:4 rgmii_id:0 rmii_clk_ext:0
    [    2.837470] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    2.837835] phy_gmii_sel_mode PHY_INTERFACE_MODE_SGMII extra:0x10040010
    [    2.837845] phy_gmii_sel_mode id:7 mode:4 rgmii_id:0 rmii_clk_ext:0
    [    2.838221] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    2.838270] am65-cpsw-nuss c000000.ethernet: initialized cpsw ale version 1.5
    [    2.838279] am65-cpsw-nuss c000000.ethernet: ALE Table size 512
    [    2.849186] am65_cpsw_nuss_probe ruijie end
    [    2.851435] am65_cpsw_nuss_probe ruijie
    [    2.898753] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    2.901588] davinci_mdio c200f00.mdio: phy[1]: device c200f00.mdio:01, driver Micrel KSZ9031 Gigabit PHY
    [    2.901859] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    2.902214] phy_gmii_sel_mode id:1 mode:11 rgmii_id:0 rmii_clk_ext:0
    [    2.902605] am65-cpsw-nuss c200000.ethernet: Use random MAC address
    [    2.902630] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
    [    2.902638] am65-cpsw-nuss c200000.ethernet: ALE Table size 64
    [    2.905775] am65_cpsw_nuss_probe ruijie end
    [    2.914960] mmc0: CQHCI version 5.10
    [    2.949680] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
    [    2.951365] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
    [    2.953001] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
    [    2.954608] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fca100
    [    2.956434] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
    [    2.956849] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
    [    2.958534] omap-mailbox 31f85000.mailbox: omap mailbox rev 0x66fca100
    [    3.063124] mmc0: Command Queue Engine enabled
    [    3.063139] mmc0: new HS400 MMC card at address 0001
    [    3.063832] mmcblk0: mmc0:0001 064GB2 58.2 GiB
    [    3.064055] mmcblk0boot0: mmc0:0001 064GB2 partition 1 8.00 MiB
    [    3.064280] mmcblk0boot1: mmc0:0001 064GB2 partition 2 8.00 MiB
    [    3.064485] mmcblk0rpmb: mmc0:0001 064GB2 partition 3 4.00 MiB, chardev (246:0)
    [    3.067474] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    3.067480] GPT:117440511 != 122142719
    [    3.067484] GPT:Alternate GPT header not at the end of the disk.
    [    3.067485] GPT:117440511 != 122142719
    [    3.067486] GPT: Use GNU Parted to correct GPT errors.
    [    3.067517]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17
    [    3.695668] ti-udma 285c0000.dma-controller: Channels: 22 (tchan: 11, rchan: 11, gp-rflow: 8)
    [    3.709719] ti-udma 31150000.dma-controller: Channels: 66 (tchan: 33, rchan: 33, gp-rflow: 16)
    [    3.734612] spi-nor spi0.0: unrecognized JEDEC id bytes: ff ff ff ff ff ff
    [    3.734656] spi-nor: probe of spi0.0 failed with error -2
    [    3.841437] debugfs: Directory 'pd:73' with parent 'pm_genpd' already present!
    [    3.841829] debugfs: Directory 'pd:72' with parent 'pm_genpd' already present!
    [    3.850124] debugfs: Directory 'pd:333' with parent 'pm_genpd' already present!
    [    3.850521] debugfs: Directory 'pd:332' with parent 'pm_genpd' already present!
    [    3.875187] printk: console [netcon0]: printing thread started
    [    3.875349] printk: console [netcon0] enabled
    [    3.875359] netconsole: network logging started
    [    3.876345] device-mapper: init: waiting for all devices to be available before creating mapped devices
    [    3.878428] device-mapper: verity: sha1 using implementation "sha1-sa2ul"
    [    3.882430] device-mapper: ioctl: dm-0 (vroot) is ready
    [    3.899481] ALSA device list:
    [    3.899492]   No soundcards found.
    [    3.919345] md: Waiting for all devices to be available before autodetect
    [    3.919359] md: If you don't use raid, use raid=noautodetect
    [    3.919379] md: Autodetecting RAID arrays.
    [    3.919388] md: autorun ...
    [    3.919394] md: ... autorun DONE.
    [    3.943137] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
    [    3.943312] VFS: Mounted root (ext4 filesystem) readonly on device 252:0.
    [    3.945731] devtmpfs: mounted
    [    3.953180] Freeing unused kernel memory: 4608K
    [    3.953246] Run /sbin/init as init process
    [    3.953254]   with arguments:
    [    3.953259]     /sbin/init
    [    3.953266]     K3_J784S4
    [    3.953273]   with environment:
    [    3.953278]     HOME=/
    [    3.953285]     TERM=linux
    [    4.321036] SELinux:  Class rpmsg_socket not defined in policy.
    [    4.321061] SELinux: the above unknown classes and permissions will be allowed
    [    4.398876] SELinux:  policy capability network_peer_controls=1
    [    4.398892] SELinux:  policy capability open_perms=1
    [    4.398900] SELinux:  policy capability extended_socket_class=1
    [    4.398907] SELinux:  policy capability always_check_network=0
    [    4.398916] SELinux:  policy capability cgroup_seclabel=1
    [    4.398923] SELinux:  policy capability nnp_nosuid_transition=1
    [    4.398930] SELinux:  policy capability genfs_seclabel_symlinks=0
    [    4.398937] SELinux:  policy capability ioctl_skip_cloexec=0
    [    4.978913] audit: type=1403 audit(4.968:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
    [    4.993656] systemd[1]: Successfully loaded SELinux policy in 780.076ms.
    [    5.017047] systemd[1]: System time before build time, advancing clock.
    [    5.134127] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 79.511ms.
    [    5.173047] systemd[1]: systemd 247.6+ running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    5.176113] systemd[1]: Detected architecture arm64.
    [    5.221040] systemd[1]: Set hostname to <megatron>.
    [    5.234669] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.234940] systemd[1]: Initializing machine ID from random generator.
    [    5.236022] systemd[1]: Installed transient /etc/machine-id file.
    [    5.414442] systemd-sysv-generator[221]: SysV service '/etc/init.d/rc.pvr' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    5.419741] audit: type=1400 audit(1640966400.400:3): avc:  denied  { getattr } for  pid=214 comm="systemd-fstab-g" path="/data" dev="dm-0" ino=159 scontext=system_u:system_r:systemd_generator_t tcontext=system_u:object_r:data_t tclass=dir permissive=1
    [    5.860620] systemd[1]: Queued start job for default target Multi-User System.
    [    5.863062] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.867662] systemd[1]: Created slice system-getty.slice.
    [    5.895280] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.897263] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [    5.917276] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [    5.940989] systemd[1]: Created slice system-systemd\x2dmakefs.slice.
    [    5.968917] systemd[1]: Created slice User and Session Slice.
    [    5.995474] systemd[1]: Reached target Paths.
    [    6.007302] systemd[1]: Reached target Remote File Systems.
    [    6.031237] systemd[1]: Reached target Slices.
    [    6.043284] systemd[1]: Reached target Swap.
    [    6.068014] systemd[1]: Listening on RPCbind Server Activation Socket.
    [    6.095263] systemd[1]: Reached target RPC Port Mapper.
    [    6.121642] systemd[1]: Listening on Syslog Socket.
    [    6.135532] systemd[1]: Listening on Journal Audit Socket.
    [    6.158644] systemd[1]: Listening on Journal Socket (/dev/log).
    [    6.188317] systemd[1]: Listening on Journal Socket.
    [    6.207039] systemd[1]: Listening on Network Service Netlink Socket.
    [    6.235287] systemd[1]: Listening on udev Control Socket.
    [    6.255297] random: systemd: uninitialized urandom read (16 bytes read)
    [    6.258235] systemd[1]: Listening on udev Kernel Socket.
    [    6.287135] random: systemd: uninitialized urandom read (16 bytes read)
    [    6.290930] systemd[1]: Listening on User Database Manager Socket.
    [    6.325186] random: systemd: uninitialized urandom read (16 bytes read)
    [    6.335540] systemd[1]: Mounting Huge Pages File System...
    [    6.361492] systemd[1]: Mounting POSIX Message Queue File System...
    [    6.394271] systemd[1]: Mounting Kernel Configuration File System...
    [    6.426380] systemd[1]: Mounting Kernel Debug File System...
    [    6.458043] systemd[1]: Mounting Kernel Trace File System...
    [    6.490223] systemd[1]: Mounting Temporary Directory (/tmp)...
    [    6.523902] systemd[1]: Starting Create list of static device nodes for the current kernel...
    [    6.556302] systemd[1]: Started Translates SELinux MCS/MLS labels to human readable form.
    [    6.589769] systemd[1]: Starting RPC Bind...
    [    6.618286] systemd[1]: Starting SELinux init for /dev service loading...
    [    6.648026] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
    [    6.648064] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
    [    6.658020] systemd[1]: Starting Journal Service...
    [    6.686636] audit: type=1400 audit(1640966401.664:4): avc:  denied  { read } for  pid=232 comm="systemd-journal" name="machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
    [    6.687080] audit: type=1400 audit(1640966401.664:5): avc:  denied  { open } for  pid=232 comm="systemd-journal" path="/etc/machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
    [    6.705924] systemd[1]: Starting Load Kernel Modules...
    [    6.743780] cryptodev: loading out-of-tree module taints kernel.
    [    6.753120] cryptodev: driver 1.12 loaded.
    [    6.761755] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    6.803916] systemd[1]: Starting Coldplug All udev Devices...
    [    6.816317] EXT4-fs (dm-0): re-mounted. Opts: (null)
    [    6.853149] systemd[1]: Started RPC Bind.
    [    6.867757] audit: type=1130 audit(1640966401.848:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=rpcbind comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    6.871036] systemd[1]: Mounted Huge Pages File System.
    [    6.917319] systemd[1]: Mounted POSIX Message Queue File System.
    [    6.944833] systemd[1]: Started Journal Service.
    [    6.959914] audit: type=1130 audit(1640966401.940:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-journald comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    7.095223] audit: type=1130 audit(1640966402.076:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=kmod-static-nodes comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    7.106459] audit: type=1131 audit(1640966402.084:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=mcstrans comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
    [    7.155248] audit: type=1130 audit(1640966402.136:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=selinux-labeldev comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    7.155488] audit: type=1131 audit(1640966402.136:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=selinux-labeldev comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    7.211355] audit: type=1130 audit(1640966402.192:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-modules-load comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    7.261300] random: systemd-journal: uninitialized urandom read (16 bytes read)
    [    7.278556] random: systemd: uninitialized urandom read (16 bytes read)
    [    7.294262] random: systemd-journal: uninitialized urandom read (16 bytes read)
    [    7.350295] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
    [    8.792481] random: systemd: uninitialized urandom read (16 bytes read)
    [   10.162023] PVR_K:  279: Read BVNC 36.53.104.796 from HW device registers
    [   10.162041] PVR_K:  279: RGX Device registered BVNC 36.53.104.796 with 1 core in the system
    [   10.193810] [drm] Initialized pvr 1.15.6133109 20170530 for 4e20000000.gpu on minor 0
    [   10.243830] vdec 4210000.video-codec: sram node not found
    [   10.325024] vdec 4220000.video-codec: sram node not found
    [   10.333362] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b4000000
    [   10.333766] k3-dsp-rproc 64800000.dsp: configured DSP for IPC-only mode
    [   10.364056] remoteproc remoteproc0: 64800000.dsp is available
    [   10.364538] remoteproc remoteproc0: attaching to 64800000.dsp
    [   10.390191] remoteproc remoteproc0: unsupported resource 65538
    [   10.391190] k3-dsp-rproc 64800000.dsp: DSP initialized in IPC-only mode
    [   10.391228]  remoteproc0#vdev0buffer: assigned reserved memory node vision-apps-c71-dma-memory@b4000000
    [   10.441017]  remoteproc0#vdev0buffer: registered virtio0 (type 7)
    [   10.441036] remoteproc remoteproc0: remote processor 64800000.dsp is now attached
    [   10.507079] k3-dsp-rproc 65800000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@b7400000
    [   10.507499] k3-dsp-rproc 65800000.dsp: configured DSP for IPC-only mode
    [   10.561503] remoteproc remoteproc1: 65800000.dsp is available
    [   10.561670] remoteproc remoteproc1: attaching to 65800000.dsp
    [   10.583655] remoteproc remoteproc1: unsupported resource 65538
    [   10.584042] k3-dsp-rproc 65800000.dsp: DSP initialized in IPC-only mode
    [   10.584075]  remoteproc1#vdev0buffer: assigned reserved memory node vision-apps-c71_1-dma-memory@b7400000
    [   10.635898]  remoteproc1#vdev0buffer: registered virtio1 (type 7)
    [   10.635921] remoteproc remoteproc1: remote processor 65800000.dsp is now attached
    [   10.675961] k3-dsp-rproc 66800000.dsp: assigned reserved memory node vision-apps-c71_2-dma-memory@ba800000
    [   10.676283] k3-dsp-rproc 66800000.dsp: configured DSP for IPC-only mode
    [   10.720343] remoteproc remoteproc2: 66800000.dsp is available
    [   10.720565] remoteproc remoteproc2: attaching to 66800000.dsp
    [   10.738675] remoteproc remoteproc2: unsupported resource 65538
    [   10.739591] k3-dsp-rproc 66800000.dsp: DSP initialized in IPC-only mode
    [   10.739639]  remoteproc2#vdev0buffer: assigned reserved memory node vision-apps-c71_2-dma-memory@ba800000
    [   10.790937]  remoteproc2#vdev0buffer: registered virtio2 (type 7)
    [   10.790952] remoteproc remoteproc2: remote processor 66800000.dsp is now attached
    [   10.849846] k3-dsp-rproc 67800000.dsp: assigned reserved memory node vision-apps-c71_3-dma-memory@bdc00000
    [   10.850286] k3-dsp-rproc 67800000.dsp: configured DSP for IPC-only mode
    [   10.903814] remoteproc remoteproc3: 67800000.dsp is available
    [   10.903966] remoteproc remoteproc3: attaching to 67800000.dsp
    [   10.938437] remoteproc remoteproc3: unsupported resource 65538
    [   10.939180] k3-dsp-rproc 67800000.dsp: DSP initialized in IPC-only mode
    [   10.939227]  remoteproc3#vdev0buffer: assigned reserved memory node vision-apps-c71_3-dma-memory@bdc00000
    [   11.051695]  remoteproc3#vdev0buffer: registered virtio3 (type 7)
    [   11.051717] remoteproc remoteproc3: remote processor 67800000.dsp is now attached
    [   11.058901] random: crng init done
    [   11.058912] random: 106 urandom warning(s) missed due to ratelimiting
    [   11.195958] kauditd_printk_skb: 14 callbacks suppressed
    [   11.195970] audit: type=1130 audit(1640966406.176:27): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-random-seed comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   11.292225] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   11.296912] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
    [   11.303760] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   11.308582] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
    [   11.309456] virtio_rpmsg_bus virtio2: rpmsg host is online
    [   11.314059] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xd
    [   11.314666] virtio_rpmsg_bus virtio3: rpmsg host is online
    [   11.319624] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xd
    [   11.422457] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [   11.422801] platform 41000000.r5f: configured R5F for IPC-only mode
    [   11.422858] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [   11.446071] remoteproc remoteproc4: 41000000.r5f is available
    [   11.446268] remoteproc remoteproc4: attaching to 41000000.r5f
    [   11.453598] platform 41000000.r5f: R5F core initialized in IPC-only mode
    [   11.453623]  remoteproc4#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [   11.466414] virtio_rpmsg_bus virtio4: rpmsg host is online
    [   11.467034]  remoteproc4#vdev0buffer: registered virtio4 (type 7)
    [   11.467049] remoteproc remoteproc4: remote processor 41000000.r5f is now attached
    [   11.481113] virtio_rpmsg_bus virtio4: creating channel ti.ipc4.ping-pong addr 0xd
    [   11.498025] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xe
    [   11.540284] platform 5c00000.r5f: configured R5F for IPC-only mode
    [   11.540338] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [   11.556048] remoteproc remoteproc5: 5c00000.r5f is available
    [   11.556263] remoteproc remoteproc5: attaching to 5c00000.r5f
    [   11.565398] platform 5c00000.r5f: R5F core initialized in IPC-only mode
    [   11.565420]  remoteproc5#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [   11.582206] virtio_rpmsg_bus virtio5: rpmsg host is online
    [   11.582634]  remoteproc5#vdev0buffer: registered virtio5 (type 7)
    [   11.582645] remoteproc remoteproc5: remote processor 5c00000.r5f is now attached
    [   11.583118] platform 5d00000.r5f: configured R5F for IPC-only mode
    [   11.583177] platform 5d00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
    [   11.603692] remoteproc remoteproc6: 5d00000.r5f is available
    [   11.603981] remoteproc remoteproc6: attaching to 5d00000.r5f
    [   11.604127] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0xd
    [   11.612073] platform 5d00000.r5f: R5F core initialized in IPC-only mode
    [   11.612096]  remoteproc6#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
    [   11.632216] virtio_rpmsg_bus virtio6: rpmsg host is online
    [   11.633106]  remoteproc6#vdev0buffer: registered virtio6 (type 7)
    [   11.633117] remoteproc remoteproc6: remote processor 5d00000.r5f is now attached
    [   11.653865] virtio_rpmsg_bus virtio6: creating channel rpmsg_chrdev addr 0xd
    [   11.719573] platform 5e00000.r5f: configured R5F for IPC-only mode
    [   11.719627] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
    [   11.739927] remoteproc remoteproc7: 5e00000.r5f is available
    [   11.740090] remoteproc remoteproc7: attaching to 5e00000.r5f
    [   11.755964] platform 5e00000.r5f: R5F core initialized in IPC-only mode
    [   11.755988]  remoteproc7#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
    [   11.786043] virtio_rpmsg_bus virtio7: rpmsg host is online
    [   11.786457]  remoteproc7#vdev0buffer: registered virtio7 (type 7)
    [   11.786470] remoteproc remoteproc7: remote processor 5e00000.r5f is now attached
    [   11.790830] platform 5f00000.r5f: configured R5F for IPC-only mode
    [   11.790963] platform 5f00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
    [   11.807098] virtio_rpmsg_bus virtio7: creating channel rpmsg_chrdev addr 0xd
    [   11.832660] remoteproc remoteproc8: 5f00000.r5f is available
    [   11.832814] remoteproc remoteproc8: attaching to 5f00000.r5f
    [   11.839725] platform 5f00000.r5f: R5F core initialized in IPC-only mode
    [   11.839748]  remoteproc8#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
    [   11.844030] audit: type=1130 audit(1640966406.824:28): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-makefs@dev-disk-by\x2dpartlabel-data comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   11.857612] virtio_rpmsg_bus virtio8: rpmsg host is online
    [   11.858003]  remoteproc8#vdev0buffer: registered virtio8 (type 7)
    [   11.858012] remoteproc remoteproc8: remote processor 5f00000.r5f is now attached
    [   11.878876] virtio_rpmsg_bus virtio8: creating channel rpmsg_chrdev addr 0xd
    [   11.922825] platform 5900000.r5f: configured R5F for IPC-only mode
    [   11.922881] platform 5900000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a8000000
    [   11.941587] remoteproc remoteproc9: 5900000.r5f is available
    [   11.941741] remoteproc remoteproc9: attaching to 5900000.r5f
    [   11.953157] platform 5900000.r5f: R5F core initialized in IPC-only mode
    [   11.953176]  remoteproc9#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a8000000
    [   11.965121] virtio_rpmsg_bus virtio9: rpmsg host is online
    [   11.965494]  remoteproc9#vdev0buffer: registered virtio9 (type 7)
    [   11.965505] remoteproc remoteproc9: remote processor 5900000.r5f is now attached
    [   11.965924] platform 5a00000.r5f: configured R5F for IPC-only mode
    [   11.965979] platform 5a00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@aa000000
    [   11.980196] remoteproc remoteproc10: 5a00000.r5f is available
    [   11.980405] remoteproc remoteproc10: attaching to 5a00000.r5f
    [   11.986248] virtio_rpmsg_bus virtio9: creating channel rpmsg_chrdev addr 0xd
    [   11.991140] audit: type=1130 audit(1640966406.972:29): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-makefs@dev-disk-by\x2dpartlabel-update comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   11.991872] platform 5a00000.r5f: R5F core initialized in IPC-only mode
    [   11.991898]  remoteproc10#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@aa000000
    [   12.008198] virtio_rpmsg_bus virtio10: rpmsg host is online
    [   12.008865]  remoteproc10#vdev0buffer: registered virtio10 (type 7)
    [   12.008878] remoteproc remoteproc10: remote processor 5a00000.r5f is now attached
    [   12.029266] virtio_rpmsg_bus virtio10: creating channel rpmsg_chrdev addr 0xd
    [   12.030018] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
    [   12.030272] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0x15
    [   12.030355] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0x15
    [   12.030835] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0x15
    [   12.031280] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0x15
    [   12.031566] virtio_rpmsg_bus virtio6: creating channel rpmsg_chrdev addr 0x15
    [   12.032005] virtio_rpmsg_bus virtio7: creating channel rpmsg_chrdev addr 0x15
    [   12.032313] virtio_rpmsg_bus virtio8: creating channel rpmsg_chrdev addr 0x15
    [   12.034784] virtio_rpmsg_bus virtio9: creating channel rpmsg_chrdev addr 0x15
    [   12.089941] virtio_rpmsg_bus virtio10: creating channel rpmsg_chrdev addr 0x15
    [   12.092346] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.094367] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.096564] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.098437] virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.103940] virtio_rpmsg_bus virtio6: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.105793] virtio_rpmsg_bus virtio7: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.108437] virtio_rpmsg_bus virtio8: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.111994] virtio_rpmsg_bus virtio9: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.155549] virtio_rpmsg_bus virtio10: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.189545] virtio_rpmsg_bus virtio5: creating channel ti.ethfw.notifyservice addr 0x1e
    [   12.213692] virtio_rpmsg_bus virtio5: creating channel rpmsg-kdrv addr 0x1a
    [   12.245367] rpmsg-kdrv-eth-switch rpmsg-kdrv-1-mpu_1_0_ethswitch-device-0: Device info: permissions: 3FFFFFFF uart_id: 2
    [   12.245380] rpmsg-kdrv-eth-switch rpmsg-kdrv-1-mpu_1_0_ethswitch-device-0: FW ver 0.2 (rev 0) 13/Jun/2023 SHA:cfd413d4
    [   12.323241] virtio_rpmsg_bus virtio5: creating channel ti.ipc4.ping-pong addr 0xe
    [   12.540490] audit: type=1400 audit(1640966407.520:30): avc:  denied  { read } for  pid=326 comm="systemd-network" name="machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:systemd_networkd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
    [   12.540645] audit: type=1400 audit(1640966407.520:30): avc:  denied  { open } for  pid=326 comm="systemd-network" path="/etc/machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:systemd_networkd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
    [   12.542861] am65-cpsw-nuss c000000.ethernet: down msc_sl f0000008 tmo 0
    [   12.543228] audit: type=1130 audit(1640966407.524:31): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-fsck@dev-disk-by\x2dpartlabel-data comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   12.680372] am65-cpsw-nuss c000000.ethernet: set new flow-id-base 82
    [   12.684004] am65-cpsw-nuss c000000.ethernet: PSI-L request err -22
    [   12.694360] bcm89883_soft_reset ruijie
    [   12.694883] bcm89883_config_init ruijie
    [   12.712441] Broadcom BCM89883 c000f00.mdio:05: bcm89883 master config init complete
    [   12.714117] bcm89883_soft_reset ruijie
    [   12.727640] bcm89883_config_init ruijie
    [   12.731233] audit: type=1130 audit(1640966407.712:32): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-fsck@dev-disk-by\x2dpartlabel-update comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [   12.753122] audit: type=1400 audit(1640966407.732:33): avc:  denied  { getattr } for  pid=1 comm="systemd" path="/data" dev="dm-0" ino=159 scontext=system_u:system_r:init_t tcontext=system_u:object_r:data_t tclass=dir permissive=1
    [   12.753552] audit: type=1400 audit(1640966407.732:34): avc:  denied  { read } for  pid=1 comm="systemd" name="data" dev="dm-0" ino=159 scontext=system_u:system_r:init_t tcontext=system_u:object_r:data_t tclass=dir permissive=1
    [   12.753662] audit: type=1400 audit(1640966407.732:35): avc:  denied  { open } for  pid=1 comm="systemd" path="/data" dev="dm-0" ino=159 scontext=system_u:system_r:init_t tcontext=system_u:object_r:data_t tclass=dir permissive=1
    [   12.762808] Broadcom BCM89883 c000f00.mdio:05: bcm89883 master config init complete
    [   12.762819] phylink_bringup_phy ruijie interface:4
    [   12.762830] am65-cpsw-nuss c000000.ethernet eth1: PHY [c000f00.mdio:05] driver [Broadcom BCM89883] (irq=POLL)
    [   12.762847] am65-cpsw-nuss c000000.ethernet eth1: configuring for phy/sgmii link mode
    [   12.762870] bcm89883_soft_reset ruijie
    [   12.778800] bcm89883_config_init ruijie
    [   12.802971] Broadcom BCM89883 c000f00.mdio:05: bcm89883 master config init complete
    [   12.806178] bcm89883_config_aneg ruijie master 1000M
    [   12.882594] EXT4-fs (mmcblk0p17): mounted filesystem with ordered data mode. Opts: (null)
    [   12.883910] m_can_platform 40528000.can: m_can device registered (irq=15, version=32)
    [   12.969525] EXT4-fs (mmcblk0p16): mounted filesystem with ordered data mode. Opts: (null)
    [   12.992712] m_can_platform 40568000.can: m_can device registered (irq=17, version=32)
    [   13.064719] m_can_platform 2751000.can: m_can device registered (irq=28, version=32)
    [   13.132330] m_can_platform 26a1000.can: m_can device registered (irq=30, version=32)
    [   13.324841] EXT4-fs (mmcblk0p14): mounted filesystem without journal. Opts: noload
    [   14.419843] file system registered
    [   15.223032] read descriptors
    [   15.223052] read strings
    [   15.363332] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
    [   15.363374] NFSD: Using legacy client tracking operations.
    [   15.363377] NFSD: starting 90-second grace period (net f0000081)
    [   28.023397] am65-cpsw-nuss c000000.ethernet: down msc_sl f0000018 tmo 0
    [   28.052107] bcm89883_soft_reset ruijie
    [   28.052806] bcm89883_config_init ruijie
    [   28.064349] Broadcom BCM89883 c000f00.mdio:04: bcm89883 master config init complete
    [   28.065894] bcm89883_soft_reset ruijie
    [   28.074806] bcm89883_config_init ruijie
    [   28.092339] Broadcom BCM89883 c000f00.mdio:04: bcm89883 master config init complete
    [   28.092348] phylink_bringup_phy ruijie interface:4
    [   28.092357] am65-cpsw-nuss c000000.ethernet eth0: PHY [c000f00.mdio:04] driver [Broadcom BCM89883] (irq=POLL)
    [   28.092369] am65-cpsw-nuss c000000.ethernet eth0: configuring for phy/sgmii link mode
    [   28.092383] bcm89883_soft_reset ruijie
    [   28.102795] bcm89883_config_init ruijie
    [   28.116373] Broadcom BCM89883 c000f00.mdio:04: bcm89883 master config init complete
    [   28.119567] bcm89883_config_aneg ruijie master 1000M
    [   30.190544] am65-cpsw-nuss c000000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
    [   30.190573] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready

      

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的 TanMay,

    上面的日志 正在加载哪个以太网功能正常的 MCU2_0固件,

    下面删除了 MCU2_0固件  

    1) Mac 环回

    2) phy 环回

    3) Linux 日志

    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
    [    0.000000] Linux version 5.10.153-rt76-yocto-preempt-rt (oe-user@oe-host) (aarch64-wrs-linux-gcc (GCC) 10.3.0, GNU ld (GNU Binutils) 2.36.1.20210703) #1 SMP PREEMPT_RT Tue Jun 27 04:44:05 UTC 2023
    [    0.000000] Machine model: Texas Instruments J784S4 EVM
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a8000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a8100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@aa000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@aa100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 48 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-rtos-ipc-memory-region@ac000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000af000000, size 80 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@af000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@b4000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b4100000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@b4100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b7400000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@b7400000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b7500000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory@b7500000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ba800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-dma-memory@ba800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ba900000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-memory@ba900000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000bdc00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-dma-memory@bdc00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000bdd00000, size 51 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-memory@bdd00000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000e1000000, size 80 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@e1000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000e6000000, size 8 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-queues@e6000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000e6800000, size 24 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-buffers@e6800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 1024 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x0000000ffffeffff]
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e7fffff]
    [    0.000000]   node   0: [mem 0x000000009e800000-0x00000000c0ffffff]
    [    0.000000]   node   0: [mem 0x00000000c1000000-0x00000000e0ffffff]
    [    0.000000]   node   0: [mem 0x00000000e1000000-0x00000000e7ffffff]
    [    0.000000]   node   0: [mem 0x00000000e8000000-0x00000000fffeffff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x00000008bfffffff]
    [    0.000000]   node   0: [mem 0x00000008c0000000-0x0000000ffffeffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000ffffeffff]
    [    0.000000] On node 0 totalpages: 524286
    [    0.000000]   DMA zone: 32 pages used for memmap
    [    0.000000]   DMA zone: 0 pages reserved
    [    0.000000]   DMA zone: 32767 pages, LIFO batch:3
    [    0.000000]   Normal zone: 480 pages used for memmap
    [    0.000000]   Normal zone: 491519 pages, LIFO batch:3
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] cma: Failed to reserve 512 MiB
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.2
    [    0.000000] percpu: Embedded 10 pages/cpu s553856 r8192 d93312 u655360
    [    0.000000] pcpu-alloc: s553856 r8192 d93312 u655360 alloc=10*65536
    [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
    [    0.000000] Detected PIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
    [    0.000000] CPU features: detected: Spectre-BHB
    [    0.000000] CPU features: detected: ARM erratum 1742098
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 523774
    [    0.000000] Kernel command line:  androidboot.hardware=megatron androidboot.product=HH25-1 androidboot.hwversion=v1_1 androidboot.soc_type=TI K3_J784S4 androidboot.vin=VINVIN12345678901 androidboot.serialno=1236574 mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc.u-boot),256k(hbmc.env),-@8m(hbmc.rootfs) androidboot.boot_device_root=mmcblk0 androidboot.verifiedbootstate=orange androidboot.slot_suffix=_a dm-mod.create="vroot,,,ro,0 3604480 verity 1 PARTUUID=1b578af4-4f52-41ba-bf1d-3387d6ba8f4e PARTUUID=1b578af4-4f52-41ba-bf1d-3387d6ba8f4e 4096 4096 450560 450560 sha1 5cbedeaaf12e8a79e0d5ee314b7cff2a96a6123c 23e11b385efcb9c1cad1dc67932507ba13ba0df23885f99e6647f05978fb46e2 10 restart_on_corruption ignore_zero_blocks use_fec_from_device PARTUUID=1b578af4-4f52-41ba-bf1d-3387d6ba8f4e fec_roots 2 fec_blocks 454109 fec_start 454109
    [    0.000000] Dentry cache hash table entries: 4194304 (order: 9, 33554432 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 2097152 (order: 8, 16777216 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbff0000-0x00000000ffff0000] (64MB)
    [    0.000000] Memory: 31118912K/33554304K available (12992K kernel code, 2212K rwdata, 3392K rodata, 4608K init, 1337K bss, 2435392K reserved, 0K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [    0.000000] ftrace: allocating 41767 entries in 11 pages
    [    0.000000] ftrace: allocated 11 pages with 3 groups
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu:     RCU event tracing is enabled.
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
    [    0.000000] rcu:     RCU priority boosting: priority 1 delay 500 ms.
    [    0.000000] rcu:     RCU_SOFTIRQ processing moved to rcuc kthreads.
    [    0.000000]  No expedited grace period (rcu_normal_after_boot).
    [    0.000000]  Trampoline variant of Tasks RCU enabled.
    [    0.000000]  Rude variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 960 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] GICv3: Distributor has no Range Selector support
    [    0.000000] GICv3: 16 PPIs implemented
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: allocated 1048576 Devices @8c0800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x00000008c0310000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008c0320000
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.000198] Console: colour dummy device 80x25
    [    0.000206] printk: console [tty0] enabled
    [    0.000263] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.000269] pid_max: default: 32768 minimum: 301
    [    0.000370] LSM: Security Framework initializing
    [    0.000403] SELinux:  Initializing.
    [    0.000568] Mount-cache hash table entries: 65536 (order: 3, 524288 bytes, linear)
    [    0.000639] Mountpoint-cache hash table entries: 65536 (order: 3, 524288 bytes, linear)
    [    0.003005] rcu: Hierarchical SRCU implementation.
    [    0.003827] Platform MSI: msi-controller@1820000 domain created
    [    0.004046] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.004172] EFI services will not be available.
    [    0.004728] smp: Bringing up secondary CPUs ...
    [    0.013787] Detected PIPT I-cache on CPU1
    [    0.013812] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
    [    0.013828] GICv3: CPU1: using allocated LPI pending table @0x00000008c0330000
    [    0.013870] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
    [    0.023034] Detected PIPT I-cache on CPU2
    [    0.023058] GICv3: CPU2: found redistributor 2 region 0:0x0000000001940000
    [    0.023073] GICv3: CPU2: using allocated LPI pending table @0x00000008c0340000
    [    0.023113] CPU2: Booted secondary processor 0x0000000002 [0x411fd080]
    [    0.032344] Detected PIPT I-cache on CPU3
    [    0.032370] GICv3: CPU3: found redistributor 3 region 0:0x0000000001960000
    [    0.032387] GICv3: CPU3: using allocated LPI pending table @0x00000008c0350000
    [    0.032428] CPU3: Booted secondary processor 0x0000000003 [0x411fd080]
    [    0.041593] Detected PIPT I-cache on CPU4
    [    0.041621] GICv3: CPU4: found redistributor 100 region 0:0x0000000001980000
    [    0.041637] GICv3: CPU4: using allocated LPI pending table @0x00000008c0360000
    [    0.041679] CPU4: Booted secondary processor 0x0000000100 [0x411fd080]
    [    0.050848] Detected PIPT I-cache on CPU5
    [    0.050878] GICv3: CPU5: found redistributor 101 region 0:0x00000000019a0000
    [    0.050894] GICv3: CPU5: using allocated LPI pending table @0x00000008c0370000
    [    0.050934] CPU5: Booted secondary processor 0x0000000101 [0x411fd080]
    [    0.060100] Detected PIPT I-cache on CPU6
    [    0.060132] GICv3: CPU6: found redistributor 102 region 0:0x00000000019c0000
    [    0.060148] GICv3: CPU6: using allocated LPI pending table @0x00000008c0380000
    [    0.060195] CPU6: Booted secondary processor 0x0000000102 [0x411fd080]
    [    0.069362] Detected PIPT I-cache on CPU7
    [    0.069393] GICv3: CPU7: found redistributor 103 region 0:0x00000000019e0000
    [    0.069410] GICv3: CPU7: using allocated LPI pending table @0x00000008c0390000
    [    0.069452] CPU7: Booted secondary processor 0x0000000103 [0x411fd080]
    [    0.069596] smp: Brought up 1 node, 8 CPUs
    [    0.069604] SMP: Total of 8 processors activated.
    [    0.069608] CPU features: detected: 32-bit EL0 Support
    [    0.069612] CPU features: detected: CRC32 instructions
    [    0.069721] CPU: All CPU(s) started at EL2
    [    0.069774] alternatives: patching kernel code
    [    0.070498] devtmpfs: initialized
    [    0.078155] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.078170] futex hash table entries: 2048 (order: 2, 262144 bytes, linear)
    [    0.078419] pinctrl core: initialized pinctrl subsystem
    [    0.078888] DMI not present or invalid.
    [    0.079225] NET: Registered protocol family 16
    [    0.080493] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
    [    0.081158] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.081799] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.081857] audit: initializing netlink subsys (disabled)
    [    0.082107] audit: type=2000 audit(0.080:1): state=initialized audit_enabled=0 res=1
    [    0.082515] thermal_sys: Registered thermal governor 'step_wise'
    [    0.082842] ASID allocator initialised with 65536 entries
    [    0.109230] HugeTLB registered 16.0 GiB page size, pre-allocated 0 pages
    [    0.109236] HugeTLB registered 512 MiB page size, pre-allocated 0 pages
    [    0.109239] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.184979] raid6: neonx8   gen()   603 MB/s
    [    0.252972] raid6: neonx8   xor()  1078 MB/s
    [    0.321769] raid6: neonx4   gen()   369 MB/s
    [    0.389485] raid6: neonx4   xor()   424 MB/s
    [    0.458007] raid6: neonx2   gen()   375 MB/s
    [    0.526292] raid6: neonx2   xor()   331 MB/s
    [    0.594442] raid6: neonx1   gen()   246 MB/s
    [    0.662787] raid6: neonx1   xor()   260 MB/s
    [    0.731114] raid6: int64x8  gen()   404 MB/s
    [    0.798844] raid6: int64x8  xor()   483 MB/s
    [    0.867057] raid6: int64x4  gen()   228 MB/s
    [    0.935750] raid6: int64x4  xor()   240 MB/s
    [    1.005126] raid6: int64x2  gen()   181 MB/s
    [    1.072139] raid6: int64x2  xor()   225 MB/s
    [    1.142945] raid6: int64x1  gen()   105 MB/s
    [    1.209100] raid6: int64x1  xor()    73 MB/s
    [    1.209107] raid6: using algorithm neonx8 gen() 603 MB/s
    [    1.209109] raid6: .... xor() 1078 MB/s, rmw enabled
    [    1.209111] raid6: using neon recovery algorithm
    [    1.209592] k3-chipinfo 43000014.chipid: Family:J784S4 rev:SR1.0 JTAGID[0x0bb8002f] Detected
    [    1.210183] vsys_3v3: supplied by evm_12v0
    [    1.210629] vsys_5v0: supplied by evm_12v0
    [    1.211686] iommu: Default domain type: Translated
    [    1.211927] vgaarb: loaded
    [    1.212239] SCSI subsystem initialized
    [    1.212423] usbcore: registered new interface driver usbfs
    [    1.212463] usbcore: registered new interface driver hub
    [    1.212539] usbcore: registered new device driver usb
    [    1.212881] mc: Linux media interface: v0.10
    [    1.212906] videodev: Linux video capture interface: v2.00
    [    1.214209] Advanced Linux Sound Architecture Driver Initialized.
    [    1.215313] clocksource: Switched to clocksource arch_sys_counter
    [    1.486983] Carveout Heap: Exported 512 MiB at 0x00000000c1000000
    [    1.487078] NET: Registered protocol family 2
    [    1.487484] IP idents hash table entries: 262144 (order: 5, 2097152 bytes, linear)
    [    1.491142] tcp_listen_portaddr_hash hash table entries: 16384 (order: 4, 1048576 bytes, linear)
    [    1.491545] TCP established hash table entries: 262144 (order: 5, 2097152 bytes, linear)
    [    1.492356] TCP bind hash table entries: 65536 (order: 5, 3670016 bytes, linear)
    [    1.493230] TCP: Hash tables configured (established 262144 bind 65536)
    [    1.493374] UDP hash table entries: 16384 (order: 5, 2097152 bytes, linear)
    [    1.493930] UDP-Lite hash table entries: 16384 (order: 5, 2097152 bytes, linear)
    [    1.494683] NET: Registered protocol family 1
    [    1.495505] RPC: Registered named UNIX socket transport module.
    [    1.495512] RPC: Registered udp transport module.
    [    1.495514] RPC: Registered tcp transport module.
    [    1.495516] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    1.495524] PCI: CLS 0 bytes, default 64
    [    1.497534] workingset: timestamp_bits=46 max_order=19 bucket_order=0
    [    1.503241] NFS: Registering the id_resolver key type
    [    1.503265] Key type id_resolver registered
    [    1.503268] Key type id_legacy registered
    [    1.503465] jffs2: version 2.2. (NAND) \xc2\xa9 2001-2006 Red Hat, Inc.
    [    1.523844] xor: measuring software checksum speed
    [    1.525121]    8regs           :  7804 MB/sec
    [    1.526242]    32regs          :  8831 MB/sec
    [    1.529675]    arm64_neon      :  3155 MB/sec
    [    1.529681] xor: using function: 32regs (8831 MB/sec)
    [    1.529728] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
    [    1.529893] io scheduler mq-deadline registered
    [    1.529899] io scheduler kyber registered
    [    1.532932] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
    [    1.533162] pinctrl-single 11c000.pinctrl: 72 pins, size 288
    [    1.535206] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
    [    1.535448] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
    [    1.536102] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    1.548056] brd: module loaded
    [    1.551257] CAN device driver interface
    [    1.552316] usbcore: registered new interface driver asix
    [    1.552348] usbcore: registered new interface driver ax88179_178a
    [    1.552377] usbcore: registered new interface driver cdc_ether
    [    1.552404] usbcore: registered new interface driver net1080
    [    1.552432] usbcore: registered new interface driver cdc_subset
    [    1.552457] usbcore: registered new interface driver zaurus
    [    1.552504] usbcore: registered new interface driver cdc_ncm
    [    1.553745] usbcore: registered new interface driver usb-storage
    [    1.554031] i2c /dev entries driver
    [    1.554724] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
    [    1.555715] sdhci: Secure Digital Host Controller Interface driver
    [    1.555720] sdhci: Copyright(c) Pierre Ossman
    [    1.556181] sdhci-pltfm: SDHCI platform and OF driver helper
    [    1.556524] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    1.557043] usbcore: registered new interface driver usbhid
    [    1.557049] usbhid: USB HID core driver
    [    1.557532] optee: probing for conduit method.
    [    1.557546] optee: revision 3.13 (8c1ebf3d)
    [    1.557798] optee: dynamic shared memory is enabled
    [    1.557967] optee: initialized driver
    [    1.559568] u32 classifier
    [    1.559573]     input device check on
    [    1.559574]     Actions configured
    [    1.559937] NET: Registered protocol family 10
    [    1.561022] Segment Routing with IPv6
    [    1.561064] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [    1.561442] NET: Registered protocol family 17
    [    1.561462] can: controller area network core
    [    1.561514] NET: Registered protocol family 29
    [    1.561519] can: raw protocol
    [    1.561527] can: broadcast manager protocol
    [    1.561537] can: netlink gateway - max_hops=1
    [    1.561684] Key type dns_resolver registered
    [    1.561846] NET: Registered protocol family 40
    [    1.562205] printk: console [tty0]: printing thread started
    [    1.562310] registered taskstats version 1
    [    1.562367] Key type ._fscrypt registered
    [    1.562372] Key type .fscrypt registered
    [    1.562375] Key type fscrypt-provisioning registered
    [    1.564034] Btrfs loaded, crc32c=crc32c-generic
    [    1.565494] Key type encrypted registered
    [    1.569646] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
    [    1.569783] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
    [    1.572500] ti-sci 44083000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.5.2--v08.05.02 (Chill Capybar')
    [    1.619851] pca953x 0-0020: supply vcc not found, using dummy regulator
    [    1.619976] pca953x 0-0020: using no AI
    [    1.635409] pca953x 0-0020: failed writing register
    [    1.635545] pca953x: probe of 0-0020 failed with error -121
    [    1.635916] pca953x 0-0022: supply vcc not found, using dummy regulator
    [    1.636036] pca953x 0-0022: using AI
    [    1.636156] pca953x 0-0022: failed writing register
    [    1.636279] pca953x: probe of 0-0022 failed with error -121
    [    1.636301] omap_i2c 2000000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.637769] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 177 domain created
    [    1.638098] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 10 domain created
    [    1.638425] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 283 domain created
    [    1.638767] ti-sci-inta 33d00000.msi-controller: Interrupt Aggregator domain 321 created
    [    1.647888] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:328
    [    1.647898] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
    [    1.647901] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66349100, num_proxies:64
    [    1.651070] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[878,128] sci-dev-id:315
    [    1.651078] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
    [    1.651081] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64
    [    1.651909] 2880000.serial: ttyS2 at MMIO 0x2880000 (irq = 21, base_baud = 3000000) is a 8250
    [    1.652095] printk: console [ttyS2]: printing thread started
    [    1.652108] printk: console [ttyS2] enabled
    [    1.656940] am65_cpsw_nuss_probe ruijie
    [    1.695399] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 500000
    [    1.702431] bcm89883_probe ruijie phy_speed 1000
    [    1.702440] Broadcom BCM89883 c000f00.mdio:04: bcm89883_probe id = 0xae02503a
    [    1.710626] bcm89883_probe ruijie phy_speed 1000
    [    1.710634] Broadcom BCM89883 c000f00.mdio:05: bcm89883_probe id = 0xae02503a
    [    1.718591] bcm89883_probe ruijie phy_speed 1000
    [    1.718599] Broadcom BCM89883 c000f00.mdio:06: bcm89883_probe id = 0xae02503a
    [    1.719989] davinci_mdio c000f00.mdio: phy[4]: device c000f00.mdio:04, driver Broadcom BCM89883
    [    1.719996] davinci_mdio c000f00.mdio: phy[5]: device c000f00.mdio:05, driver Broadcom BCM89883
    [    1.719998] davinci_mdio c000f00.mdio: phy[6]: device c000f00.mdio:06, driver Broadcom BCM89883
    [    1.720072] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA03102, cpsw version 0x6BA82902 Ports: 9 quirks:00000000
    [    1.721383] phy_gmii_sel_mode PHY_INTERFACE_MODE_SGMII extra:0x10040010
    [    1.721389] phy_gmii_sel_mode id:5 mode:4 rgmii_id:0 rmii_clk_ext:0
    [    1.721440] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    1.721532] phy_gmii_sel_mode PHY_INTERFACE_MODE_SGMII extra:0x10040010
    [    1.721536] phy_gmii_sel_mode id:6 mode:4 rgmii_id:0 rmii_clk_ext:0
    [    1.721575] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    1.721657] phy_gmii_sel_mode PHY_INTERFACE_MODE_SGMII extra:0x10040010
    [    1.721661] phy_gmii_sel_mode id:7 mode:4 rgmii_id:0 rmii_clk_ext:0
    [    1.721700] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    1.721711] am65-cpsw-nuss c000000.ethernet: initialized cpsw ale version 1.5
    [    1.721713] am65-cpsw-nuss c000000.ethernet: ALE Table size 512
    [    1.724976] am65_cpsw_nuss_probe ruijie end
    [    1.725593] am65_cpsw_nuss_probe ruijie
    [    1.767410] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.768964] davinci_mdio c200f00.mdio: phy[1]: device c200f00.mdio:01, driver Micrel KSZ9031 Gigabit PHY
    [    1.769043] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    1.769135] phy_gmii_sel_mode id:1 mode:11 rgmii_id:0 rmii_clk_ext:0
    [    1.769189] am65-cpsw-nuss c200000.ethernet: Use random MAC address
    [    1.769208] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
    [    1.769210] am65-cpsw-nuss c200000.ethernet: ALE Table size 64
    [    1.769939] am65_cpsw_nuss_probe ruijie end
    [    1.772277] mmc0: CQHCI version 5.10
    [    1.781198] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
    [    1.781743] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
    [    1.782276] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
    [    1.782803] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fca100
    [    1.783447] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
    [    1.783994] omap-mailbox 31f85000.mailbox: omap mailbox rev 0x66fca100
    [    1.813809] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
    [    1.920397] mmc0: Command Queue Engine enabled
    [    1.920412] mmc0: new HS400 MMC card at address 0001
    [    1.920966] mmcblk0: mmc0:0001 064GB2 58.2 GiB
    [    1.921165] mmcblk0boot0: mmc0:0001 064GB2 partition 1 8.00 MiB
    [    1.921361] mmcblk0boot1: mmc0:0001 064GB2 partition 2 8.00 MiB
    [    1.921523] mmcblk0rpmb: mmc0:0001 064GB2 partition 3 4.00 MiB, chardev (246:0)
    [    1.923548] GPT:Primary header thinks Alt. header is not at the end of the disk.
    [    1.923554] GPT:117440511 != 122142719
    [    1.923557] GPT:Alternate GPT header not at the end of the disk.
    [    1.923558] GPT:117440511 != 122142719
    [    1.923560] GPT: Use GNU Parted to correct GPT errors.
    [    1.923581]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17
    [    2.504746] ti-udma 285c0000.dma-controller: Channels: 22 (tchan: 11, rchan: 11, gp-rflow: 8)
    [    2.508030] ti-udma 31150000.dma-controller: Channels: 66 (tchan: 33, rchan: 33, gp-rflow: 16)
    [    2.514492] spi-nor spi0.0: unrecognized JEDEC id bytes: ff ff ff ff ff ff
    [    2.514512] spi-nor: probe of spi0.0 failed with error -2
    [    2.590766] debugfs: Directory 'pd:73' with parent 'pm_genpd' already present!
    [    2.590819] debugfs: Directory 'pd:72' with parent 'pm_genpd' already present!
    [    2.591785] debugfs: Directory 'pd:333' with parent 'pm_genpd' already present!
    [    2.591826] debugfs: Directory 'pd:332' with parent 'pm_genpd' already present!
    [    2.594096] printk: console [netcon0]: printing thread started
    [    2.594120] printk: console [netcon0] enabled
    [    2.594123] netconsole: network logging started
    [    2.594342] device-mapper: init: waiting for all devices to be available before creating mapped devices
    [    2.595105] device-mapper: verity: sha1 using implementation "sha1-sa2ul"
    [    2.596250] device-mapper: ioctl: dm-0 (vroot) is ready
    [    2.605548] ALSA device list:
    [    2.605555]   No soundcards found.
    [    2.620372] md: Waiting for all devices to be available before autodetect
    [    2.620378] md: If you don't use raid, use raid=noautodetect
    [    2.620380] md: Autodetecting RAID arrays.
    [    2.620382] md: autorun ...
    [    2.620384] md: ... autorun DONE.
    [    2.632892] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
    [    2.632946] VFS: Mounted root (ext4 filesystem) readonly on device 252:0.
    [    2.634763] devtmpfs: mounted
    [    2.636814] Freeing unused kernel memory: 4608K
    [    2.663416] Run /sbin/init as init process
    [    2.663422]   with arguments:
    [    2.663423]     /sbin/init
    [    2.663424]     K3_J784S4
    [    2.663425]   with environment:
    [    2.663426]     HOME=/
    [    2.663427]     TERM=linux
    [    2.891021] SELinux:  Class rpmsg_socket not defined in policy.
    [    2.891039] SELinux: the above unknown classes and permissions will be allowed
    [    2.898795] SELinux:  policy capability network_peer_controls=1
    [    2.898804] SELinux:  policy capability open_perms=1
    [    2.898806] SELinux:  policy capability extended_socket_class=1
    [    2.898808] SELinux:  policy capability always_check_network=0
    [    2.898810] SELinux:  policy capability cgroup_seclabel=1
    [    2.898812] SELinux:  policy capability nnp_nosuid_transition=1
    [    2.898813] SELinux:  policy capability genfs_seclabel_symlinks=0
    [    2.898814] SELinux:  policy capability ioctl_skip_cloexec=0
    [    3.023487] audit: type=1403 audit(3.016:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
    [    3.030302] systemd[1]: Successfully loaded SELinux policy in 190.037ms.
    [    3.047883] systemd[1]: System time before build time, advancing clock.
    [    3.121894] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 33.391ms.
    [    3.167990] systemd[1]: systemd 247.6+ running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    3.168795] systemd[1]: Detected architecture arm64.
    [    3.289696] systemd[1]: Set hostname to <megatron>.
    [    3.297913] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.297969] systemd[1]: Initializing machine ID from random generator.
    [    3.298369] systemd[1]: Installed transient /etc/machine-id file.
    [    3.410887] systemd-sysv-generator[219]: SysV service '/etc/init.d/rc.pvr' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    3.416674] audit: type=1400 audit(1640966400.364:3): avc:  denied  { getattr } for  pid=213 comm="systemd-fstab-g" path="/data" dev="dm-0" ino=159 scontext=system_u:system_r:systemd_generator_t tcontext=system_u:object_r:data_t tclass=dir permissive=1
    [    3.627813] systemd[1]: Queued start job for default target Multi-User System.
    [    3.628640] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.629810] systemd[1]: Created slice system-getty.slice.
    [    3.693446] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.694090] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [    3.948487] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [    3.988072] systemd[1]: Created slice system-systemd\x2dmakefs.slice.
    [    4.012021] systemd[1]: Created slice User and Session Slice.
    [    4.031747] systemd[1]: Reached target Paths.
    [    4.043669] systemd[1]: Reached target Remote File Systems.
    [    4.067623] systemd[1]: Reached target Slices.
    [    4.083608] systemd[1]: Reached target Swap.
    [    4.099237] systemd[1]: Listening on RPCbind Server Activation Socket.
    [    4.123660] systemd[1]: Reached target RPC Port Mapper.
    [    4.145577] systemd[1]: Listening on Syslog Socket.
    [    4.165195] systemd[1]: Listening on Journal Audit Socket.
    [    4.188798] systemd[1]: Listening on Journal Socket (/dev/log).
    [    4.213062] systemd[1]: Listening on Journal Socket.
    [    4.228849] systemd[1]: Listening on Network Service Netlink Socket.
    [    4.254991] systemd[1]: Listening on udev Control Socket.
    [    4.280551] systemd[1]: Listening on udev Kernel Socket.
    [    4.303611] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.304762] systemd[1]: Listening on User Database Manager Socket.
    [    4.322749] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.326222] systemd[1]: Mounting Huge Pages File System...
    [    4.343953] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.346533] systemd[1]: Mounting POSIX Message Queue File System...
    [    4.366475] systemd[1]: Mounting Kernel Configuration File System...
    [    4.395119] systemd[1]: Mounting Kernel Debug File System...
    [    4.414398] systemd[1]: Mounting Kernel Trace File System...
    [    4.431781] systemd[1]: Mounting Temporary Directory (/tmp)...
    [    4.448495] systemd[1]: Starting Create list of static device nodes for the current kernel...
    [    4.474500] systemd[1]: Started Translates SELinux MCS/MLS labels to human readable form.
    [    4.502891] systemd[1]: Starting RPC Bind...
    [    4.520412] systemd[1]: Starting SELinux init for /dev service loading...
    [    4.544129] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
    [    4.544144] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
    [    4.547589] systemd[1]: Starting Journal Service...
    [    4.571576] audit: type=1400 audit(1640966401.520:4): avc:  denied  { read } for  pid=230 comm="systemd-journal" name="machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
    [    4.571606] audit: type=1400 audit(1640966401.520:5): avc:  denied  { open } for  pid=230 comm="systemd-journal" path="/etc/machine-id" dev="tmpfs" ino=12 scontext=system_u:system_r:syslogd_t tcontext=system_u:object_r:init_runtime_t tclass=file permissive=1
    [    4.604644] systemd[1]: Starting Load Kernel Modules...
    [    4.636284] cryptodev: loading out-of-tree module taints kernel.
    [    4.636814] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    4.638621] cryptodev: driver 1.12 loaded.
    [    4.660876] systemd[1]: Starting Coldplug All udev Devices...
    [    4.665339] EXT4-fs (dm-0): re-mounted. Opts: (null)
    [    4.687841] systemd[1]: Started RPC Bind.
    [    4.703731] audit: type=1130 audit(1640966401.652:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=rpcbind comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    4.704831] systemd[1]: Mounted Huge Pages File System.
    [    4.740288] systemd[1]: Started Journal Service.
    [    4.760089] audit: type=1130 audit(1640966401.708:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-journald comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    4.887684] audit: type=1130 audit(1640966401.836:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=kmod-static-nodes comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    4.890713] audit: type=1131 audit(1640966401.836:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=mcstrans comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
    [    4.947604] audit: type=1130 audit(1640966401.896:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=selinux-labeldev comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    5.045846] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
    [    5.128153] kauditd_printk_skb: 3 callbacks suppressed
    [    5.128165] audit: type=1130 audit(1640966402.076:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-sysctl comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    5.175668] audit: type=1130 audit(1640966402.124:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    5.276578] audit: type=1400 audit(1640966402.224:16): avc:  denied  { search } for  pid=260 comm="systemd-udevd" name="data" dev="dm-0" ino=159 scontext=system_u:system_r:udev_t tcontext=system_u:object_r:data_t tclass=dir permissive=1
    [    5.278271] audit: type=1400 audit(1640966402.224:17): avc:  denied  { getattr } for  pid=260 comm="systemd-udevd" path="/data" dev="dm-0" ino=159 scontext=system_u:system_r:udev_t tcontext=system_u:object_r:data_t tclass=dir permissive=1
    [    5.335864] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.426602] random: systemd-journal: uninitialized urandom read (16 bytes read)
    [    5.434042] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.637977] audit: type=1400 audit(1640966402.584:18): avc:  denied  { mounton } for  pid=312 comm="mount" path="/var/spool" dev="dm-0" ino=14860 scontext=system_u:system_r:mount_t tcontext=system_u:object_r:var_spool_t tclass=dir permissive=1
    [    5.996078] audit: type=1130 audit(1640966402.944:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=systemd-udevd comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    6.103754] audit: type=1130 audit(1640966403.052:20): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=var-volatile-cache comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    6.156064] audit: type=1130 audit(1640966403.104:21): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=var-volatile-spool comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    6.199686] audit: type=1130 audit(1640966403.148:22): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=var-volatile-srv comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    6.275847] audit: type=1130 audit(1640966403.224:23): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t msg='unit=var-volatile-lib comm="systemd" exe="/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
    [    6.459210] random: systemd: uninitialized urandom read (16 bytes read)
    [    6.570763] PVR_K:  277: Read BVNC 36.53.104.796 from HW device registers
    [    6.570779] PVR_K:  277: RGX Device registered BVNC 36.53.104.796 with 1 core in the system
    [    6.610841] [drm] Initialized pvr 1.15.6133109 20170530 for 4e20000000.gpu on minor 0
    [    6.671934] vdec 4210000.video-codec: sram node not found
    [    6.684813] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b4000000
    [    6.685079] k3-dsp-rproc 64800000.dsp: configured DSP for remoteproc mode
    [    6.711088] remoteproc remoteproc0: 64800000.dsp is available
    [    6.715485] remoteproc remoteproc0: Direct firmware load for j784s4-c71_0-fw failed with error -2
    [    6.715500] remoteproc remoteproc0: powering up 64800000.dsp
    [    6.715532] remoteproc remoteproc0: Direct firmware load for j784s4-c71_0-fw failed with error -2
    [    6.715539] remoteproc remoteproc0: request_firmware failed: -2
    [    6.759841] k3-dsp-rproc 65800000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@b7400000
    [    6.760118] k3-dsp-rproc 65800000.dsp: configured DSP for remoteproc mode
    [    6.790394] remoteproc remoteproc1: 65800000.dsp is available
    [    6.790699] remoteproc remoteproc1: Direct firmware load for j784s4-c71_1-fw failed with error -2
    [    6.790720] remoteproc remoteproc1: powering up 65800000.dsp
    [    6.790792] remoteproc remoteproc1: Direct firmware load for j784s4-c71_1-fw failed with error -2
    [    6.790807] remoteproc remoteproc1: request_firmware failed: -2
    [    6.816023] vdec 4220000.video-codec: sram node not found
    [    6.816513] k3-dsp-rproc 66800000.dsp: assigned reserved memory node vision-apps-c71_2-dma-memory@ba800000
    [    6.816758] k3-dsp-rproc 66800000.dsp: configured DSP for remoteproc mode
    [    6.848804] remoteproc remoteproc2: 66800000.dsp is available
    [    6.849086] remoteproc remoteproc2: Direct firmware load for j784s4-c71_2-fw failed with error -2
    [    6.849104] remoteproc remoteproc2: powering up 66800000.dsp
    [    6.849152] remoteproc remoteproc2: Direct firmware load for j784s4-c71_2-fw failed with error -2
    [    6.849162] remoteproc remoteproc2: request_firmware failed: -2
    [    6.875044] k3-dsp-rproc 67800000.dsp: assigned reserved memory node vision-apps-c71_3-dma-memory@bdc00000
    [    6.875233] k3-dsp-rproc 67800000.dsp: configured DSP for remoteproc mode
    [    6.904304] remoteproc remoteproc3: 67800000.dsp is available
    [    6.904595] remoteproc remoteproc3: Direct firmware load for j784s4-c71_3-fw failed with error -2
    [    6.904611] remoteproc remoteproc3: powering up 67800000.dsp
    [    6.904658] remoteproc remoteproc3: Direct firmware load for j784s4-c71_3-fw failed with error -2
    [    6.904667] remoteproc remoteproc3: request_firmware failed: -2
    [    7.615860] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    7.616071] platform 41000000.r5f: configured R5F for IPC-only mode
    [    7.616125] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [    7.640839] remoteproc remoteproc4: 41000000.r5f is available
    [    7.641114] remoteproc remoteproc4: attaching to 41000000.r5f
    [    7.647774] platform 41000000.r5f: R5F core initialized in IPC-only mode
    [    7.647794]  remoteproc4#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [    7.658784]  remoteproc4#vdev0buffer: registered virtio0 (type 7)
    [    7.658800] remoteproc remoteproc4: remote processor 41000000.r5f is now attached
    [    7.728204] platform 5c00000.r5f: configured R5F for remoteproc mode
    [    7.728913] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [    7.757245] remoteproc remoteproc5: 5c00000.r5f is available
    [    7.757511] remoteproc remoteproc5: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
    [    7.757523] remoteproc remoteproc5: powering up 5c00000.r5f
    [    7.757559] remoteproc remoteproc5: Direct firmware load for pdk-ipc/ipc_echo_test_mcu2_0_release_strip.xer5f failed with error -2
    [    7.757566] remoteproc remoteproc5: request_firmware failed: -2
    [    7.851079] platform 5e00000.r5f: configured R5F for remoteproc mode
    [    7.852061] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
    [    7.866658] remoteproc remoteproc6: 5e00000.r5f is available
    [    7.867040] remoteproc remoteproc6: Direct firmware load for j784s4-main-r5f1_0-fw failed with error -2
    [    7.867056] remoteproc remoteproc6: powering up 5e00000.r5f
    [    7.867104] remoteproc remoteproc6: Direct firmware load for j784s4-main-r5f1_0-fw failed with error -2
    [    7.867116] remoteproc remoteproc6: request_firmware failed: -2
    [    7.937323] platform 5900000.r5f: configured R5F for remoteproc mode
    [    7.938159] platform 5900000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a8000000
    [    7.953616] remoteproc remoteproc7: 5900000.r5f is available
    [    7.953948] remoteproc remoteproc7: Direct firmware load for j784s4-main-r5f2_0-fw failed with error -2
    [    7.953972] remoteproc remoteproc7: powering up 5900000.r5f
    [    7.954038] remoteproc remoteproc7: Direct firmware load for j784s4-main-r5f2_0-fw failed with error -2
    [    7.954050] remoteproc remoteproc7: request_firmware failed: -2
    [    8.167053] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    8.186623] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    8.203700] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [    8.327428] random: crng init done
    [    8.327440] random: 198 urandom warning(s) missed due to ratelimiting
    [    8.482605] m_can_platform 40528000.can: m_can device registered (irq=15, version=32)
    [    8.517669] am65-cpsw-nuss c000000.ethernet: down msc_sl e0000008 tmo 0
    [    8.677163] am65-cpsw-nuss c000000.ethernet: set new flow-id-base 82
    [    8.691827] bcm89883_soft_reset ruijie
    [    8.692615] bcm89883_config_init ruijie
    [    8.704949] Broadcom BCM89883 c000f00.mdio:05: bcm89883 master config init complete
    [    8.706477] bcm89883_soft_reset ruijie
    [    8.715429] bcm89883_config_init ruijie
    [    8.729001] Broadcom BCM89883 c000f00.mdio:05: bcm89883 master config init complete
    [    8.729014] phylink_bringup_phy ruijie interface:4
    [    8.729025] am65-cpsw-nuss c000000.ethernet eth1: PHY [c000f00.mdio:05] driver [Broadcom BCM89883] (irq=POLL)
    [    8.729039] am65-cpsw-nuss c000000.ethernet eth1: configuring for phy/sgmii link mode
    [    8.729062] bcm89883_soft_reset ruijie
    [    8.739418] bcm89883_config_init ruijie
    [    8.752919] Broadcom BCM89883 c000f00.mdio:05: bcm89883 master config init complete
    [    8.756162] bcm89883_config_aneg ruijie master 1000M
    [    8.813506] m_can_platform 40568000.can: m_can device registered (irq=17, version=32)
    [    8.823274] EXT4-fs (mmcblk0p17): mounted filesystem with ordered data mode. Opts: (null)
    [    8.861538] EXT4-fs (mmcblk0p16): mounted filesystem with ordered data mode. Opts: (null)
    [    8.875774] m_can_platform 2751000.can: m_can device registered (irq=28, version=32)
    [    8.973453] m_can_platform 26a1000.can: m_can device registered (irq=30, version=32)
    [    9.251990] EXT4-fs (mmcblk0p14): mounted filesystem without journal. Opts: noload
    [   10.262915] file system registered
    [   10.957549] read descriptors
    [   10.957567] read strings
    [   11.260123] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
    [   11.260165] NFSD: Using legacy client tracking operations.
    [   11.260168] NFSD: starting 90-second grace period (net f0000081)
    [   33.767413] tlv71033: disabling
    [   89.631584] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    [  141.474080] am65-cpsw-nuss c000000.ethernet: down msc_sl e0000018 tmo 0
    [  141.504774] bcm89883_soft_reset ruijie
    [  141.505469] bcm89883_config_init ruijie
    [  141.516732] Broadcom BCM89883 c000f00.mdio:04: bcm89883 master config init complete
    [  141.518276] bcm89883_soft_reset ruijie
    [  141.531410] bcm89883_config_init ruijie
    [  141.548719] Broadcom BCM89883 c000f00.mdio:04: bcm89883 master config init complete
    [  141.548728] phylink_bringup_phy ruijie interface:4
    [  141.548738] am65-cpsw-nuss c000000.ethernet eth0: PHY [c000f00.mdio:04] driver [Broadcom BCM89883] (irq=POLL)
    [  141.548748] am65-cpsw-nuss c000000.ethernet eth0: configuring for phy/sgmii link mode
    [  141.548761] bcm89883_soft_reset ruijie
    [  141.559388] bcm89883_config_init ruijie
    [  141.576724] Broadcom BCM89883 c000f00.mdio:04: bcm89883 master config init complete
    [  141.579909] bcm89883_config_aneg ruijie master 1000M
    [  141.587938] am65-cpsw-nuss c000000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
    [  141.615652] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    关于这一主题,请作出结论吗?  

    默认情况下、我们是否已为即将发布的9.0版本准备好此 Linux 本机驱动程序?

    谢谢。  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好、Tanmay、

    我们发现 Serdes2配置导致 Linux 本机驱动程序 SGMII 链路失败,

    1 μ s)RTOS SerDes 配置  

     /**
         * serdes 2
         */
        memset(&serdesLaneEnableParams, 0, sizeof(serdesLaneEnableParams));
        serdesLaneEnableParams.serdesInstance    = (CSL_SerdesInstance)CSL_TORRENT_SERDES2;
        serdesLaneEnableParams.baseAddr          = CSL_WIZ16B8M4CT3_2_WIZ16B8M4CT3_BASE;
        serdesLaneEnableParams.refClock          = CSL_SERDES_REF_CLOCK_100M;
        serdesLaneEnableParams.refClkSrc         = CSL_SERDES_REF_CLOCK_INT0;
        serdesLaneEnableParams.linkRate          = CSL_SERDES_LINK_RATE_1p25G;
        serdesLaneEnableParams.numLanes          = numLanes;
        serdesLaneEnableParams.laneMask          = laneMask;
        serdesLaneEnableParams.SSC_mode          = CSL_SERDES_NO_SSC;
        serdesLaneEnableParams.phyType           = CSL_SERDES_PHY_TYPE_SGMII;
        serdesLaneEnableParams.operatingMode     = CSL_SERDES_FUNCTIONAL_MODE;
        serdesLaneEnableParams.phyInstanceNum    = BOARD_SERDES_LANE_SELECT_CPSW;
        serdesLaneEnableParams.pcieGenType       = CSL_SERDES_PCIE_GEN3;
    
        for (laneNum = 0; laneNum < numLanes; laneNum++) {
            serdesLaneEnableParams.laneCtrlRate[laneNum] = CSL_SERDES_LANE_FULL_RATE;
            serdesLaneEnableParams.loopbackMode[laneNum] = CSL_SERDES_LOOPBACK_DISABLED;
        }
    
        CSL_serdesPorReset(serdesLaneEnableParams.baseAddr);
    
        for (laneNum = 0; laneNum < numLanes; laneNum++) {
            /* Select the IP type, IP instance num, Serdes Lane Number */
            CSL_serdesIPSelect(CSL_CTRL_MMR0_CFG0_BASE,
                               serdesLaneEnableParams.phyType,
                               serdesLaneEnableParams.phyInstanceNum,
                               serdesLaneEnableParams.serdesInstance,
                               laneNum);
        }
    
        result = CSL_serdesRefclkSel(CSL_CTRL_MMR0_CFG0_BASE,
                                     serdesLaneEnableParams.baseAddr,
                                     serdesLaneEnableParams.refClock,
                                     serdesLaneEnableParams.refClkSrc,
                                     serdesLaneEnableParams.serdesInstance,
                                     serdesLaneEnableParams.phyType);
    
        if (result != CSL_SERDES_NO_ERR)
        {
            return BOARD_FAIL;
        }
        /* Assert PHY reset and disable all lanes */
        CSL_serdesDisablePllAndLanes(serdesLaneEnableParams.baseAddr,
                                     serdesLaneEnableParams.numLanes,
                                     serdesLaneEnableParams.laneMask);
    
        /* Load the Serdes Config File */
        result = CSL_serdesEthernetInit(&serdesLaneEnableParams);
        /* Return error if input params are invalid */
        if (result != CSL_SERDES_NO_ERR)
        {
            return BOARD_FAIL;
        }
    
        /* Common Lane Enable API for lane enable, pll enable etc */
        laneRetVal = CSL_serdesLaneEnable(&serdesLaneEnableParams);
        if (laneRetVal != 0)
        {
            return BOARD_FAIL;
        }
        return BOARD_SOK;

    SGMII 为 link,serdes2寄存器 dump:

    Read at address  0x05020000 (0x3ff96320000): 0x00007364
    Read at address  0x05020004 (0x3ffa2060004): 0x08010000
    Read at address  0x05020008 (0x3ffa04a0008): 0x00000130
    Read at address  0x0502000C (0x3ff9f20000c): 0x00000000
    Read at address  0x05020010 (0x3ff9d2b0010): 0x00160074
    Read at address  0x05020014 (0x3ff8f170014): 0x63006666
    Read at address  0x05020018 (0x3ff9a810018): 0x02020120
    Read at address  0x0502001C (0x3ff9e27001c): 0x00000000
    Read at address  0x05020020 (0x3ff9c2f0020): 0x00041020
    Read at address  0x05020024 (0x3ff98030024): 0x00200000
    Read at address  0x05020028 (0x3ff814f0028): 0x00000155
    Read at address  0x0502002C (0x3ff83da002c): 0x00000000
    Read at address  0x05020030 (0x3ff8a5d0030): 0x00000000
    Read at address  0x05020034 (0x3ff8ba90034): 0x00000000
    Read at address  0x05020038 (0x3ff85340038): 0x00000000
    Read at address  0x0502003C (0x3ffb673003c): 0x00000000
    Read at address  0x05020040 (0x3ffa6390040): 0x00010003
    Read at address  0x05020044 (0x3ffa9820044): 0x00000019
    Read at address  0x05020048 (0x3ff907a0048): 0x00000000
    Read at address  0x0502004C (0x3ffa26c004c): 0x00010000
    Read at address  0x05020050 (0x3ff7f850050): 0x00040001
    Read at address  0x05020054 (0x3ffa9160054): 0x00010032
    Read at address  0x05020058 (0x3ff8f100058): 0x000100D1
    Read at address  0x0502005C (0x3ffa71f005c): 0x00000000
    Read at address  0x05020060 (0x3ff91610060): 0x00040001
    Read at address  0x05020064 (0x3ff94de0064): 0x00010032
    Read at address  0x05020068 (0x3ff8c3c0068): 0x000100D1
    Read at address  0x0502006C (0x3ff9ed5006c): 0x00000000
    Read at address  0x05020070 (0x3ffaf350070): 0x00000000
    Read at address  0x05020074 (0x3ff96a40074): 0x00000000
    Read at address  0x05020078 (0x3ffab590078): 0x00000000
    Read at address  0x0502007C (0x3ff99c8007c): 0x00000000
    Read at address  0x05020080 (0x3ffa3a10080): 0x01240101
    Read at address  0x05020084 (0x3ff91090084): 0x0124003B
    Read at address  0x05020088 (0x3ff88250088): 0x0424003B
    Read at address  0x0502008C (0x3ffa228008c): 0x012400A6
    Read at address  0x05020090 (0x3ff8c5e0090): 0x0424003B
    Read at address  0x05020094 (0x3ffb97e0094): 0x000000A4
    Read at address  0x05020098 (0x3ffb66a0098): 0x00000108
    Read at address  0x0502009C (0x3ffa1f3009c): 0x00000005
    Read at address  0x050200A0 (0x3ffa9e200a0): 0x00000242
    Read at address  0x050200A4 (0x3ff835100a4): 0x00000000
    Read at address  0x050200A8 (0x3ff7fe500a8): 0x00000000
    Read at address  0x050200AC (0x3ff8dbc00ac): 0x00000000
    Read at address  0x050200B0 (0x3ffbc0600b0): 0x00000000
    Read at address  0x050200B4 (0x3ffb72c00b4): 0x00000000
    Read at address  0x050200B8 (0x3ff9de500b8): 0x00030000
    Read at address  0x050200BC (0x3ff7fdb00bc): 0x00000000
    Read at address  0x050200C0 (0x3ff906700c0): 0x00000000
    Read at address  0x050200C4 (0x3ff905000c4): 0x00000000
    Read at address  0x050200C8 (0x3ff888500c8): 0x007D007D
    Read at address  0x050200CC (0x3ffa63900cc): 0x00000000
    Read at address  0x050200D0 (0x3ffaeb700d0): 0x00000000
    Read at address  0x050200D4 (0x3ffb42700d4): 0x00000000
    Read at address  0x050200D8 (0x3ffad9300d8): 0x00000000
    Read at address  0x050200DC (0x3ff93ef00dc): 0x00000000
    Read at address  0x050200E0 (0x3ff9abf00e0): 0x00000000
    Read at address  0x050200E4 (0x3ff977600e4): 0x0000001F
    Read at address  0x050200E8 (0x3ffb02900e8): 0x00070019
    Read at address  0x050200EC (0x3ffb64800ec): 0x00000000
    Read at address  0x050200F0 (0x3ffa1f700f0): 0x00000000
    Read at address  0x050200F4 (0x3ffa42100f4): 0x00000000
    Read at address  0x050200F8 (0x3ffa7ad00f8): 0x00000000
    Read at address  0x050200FC (0x3ffb1b000fc): 0x00000000
    Read at address  0x05020100 (0x3ff97d70100): 0x2028002A
    Read at address  0x05020104 (0x3ff83920104): 0x00000003
    Read at address  0x05020108 (0x3ffa1890108): 0x001003E8
    Read at address  0x0502010C (0x3ffa712010c): 0x00000C5F
    Read at address  0x05020110 (0x3ffbb630110): 0x00000C5F
    Read at address  0x05020114 (0x3ff89b40114): 0x00000000
    Read at address  0x05020118 (0x3ffa6530118): 0x00000000
    Read at address  0x0502011C (0x3ff9cae011c): 0x00000000
    Read at address  0x05020120 (0x3ffa8b50120): 0x00000000
    Read at address  0x05020124 (0x3ff90470124): 0x00000000
    Read at address  0x05020128 (0x3ff8c990128): 0x001E4004
    Read at address  0x0502012C (0x3ff8264012c): 0x0000000C
    Read at address  0x05020130 (0x3ffb3a00130): 0x00000002
    Read at address  0x05020134 (0x3ff957b0134): 0x00000000
    Read at address  0x05020138 (0x3ff99480138): 0x000400C8
    Read at address  0x0502013C (0x3ffb98c013c): 0x000300C8
    Read at address  0x05020140 (0x3ff97ae0140): 0x00000000
    Read at address  0x05020144 (0x3ff88af0144): 0x00000000
    Read at address  0x05020148 (0x3ffacdc0148): 0x00104004
    Read at address  0x0502014C (0x3ffae87014c): 0x00000010
    Read at address  0x05020150 (0x3ff94070150): 0x00000002
    Read at address  0x05020154 (0x3ff92d50154): 0x00000000
    Read at address  0x05020158 (0x3ffb6840158): 0x00000000
    Read at address  0x0502015C (0x3ffba8b015c): 0x00000000
    Read at address  0x05020160 (0x3ff91870160): 0x00000000
    Read at address  0x05020164 (0x3ff86f60164): 0x00000000
    Read at address  0x05020168 (0x3ff934c0168): 0x00000000
    Read at address  0x0502016C (0x3ffbb9a016c): 0x00000000
    Read at address  0x05020170 (0x3ffa6e00170): 0x00000000
    Read at address  0x05020174 (0x3ff95710174): 0x00000000
    Read at address  0x05020178 (0x3ffa8ca0178): 0x00000000
    Read at address  0x0502017C (0x3ff8c9d017c): 0x00000000
    Read at address  0x05020180 (0x3ff8d960180): 0x2028002A
    Read at address  0x05020184 (0x3ff8bc60184): 0x00000003
    Read at address  0x05020188 (0x3ff85200188): 0x001003E8
    Read at address  0x0502018C (0x3ff9bc6018c): 0x00000C5F
    Read at address  0x05020190 (0x3ff87c70190): 0x00000C5F
    Read at address  0x05020194 (0x3ffba880194): 0x00000000
    Read at address  0x05020198 (0x3ff8b340198): 0x00000000
    Read at address  0x0502019C (0x3ff9809019c): 0x00000000
    Read at address  0x050201A0 (0x3ff8d8c01a0): 0x00000000
    Read at address  0x050201A4 (0x3ffae7b01a4): 0x00000000
    Read at address  0x050201A8 (0x3ff937a01a8): 0x001E4004
    Read at address  0x050201AC (0x3ff8a4c01ac): 0x0000000C
    Read at address  0x050201B0 (0x3ff83f601b0): 0x00000002
    Read at address  0x050201B4 (0x3ff9bce01b4): 0x00000000
    Read at address  0x050201B8 (0x3ffb27101b8): 0x000400C8
    Read at address  0x050201BC (0x3ff926d01bc): 0x000300C8
    Read at address  0x050201C0 (0x3ffad4701c0): 0x00000000
    Read at address  0x050201C4 (0x3ffa38601c4): 0x00000000
    Read at address  0x050201C8 (0x3ffb5f001c8): 0x00000000
    Read at address  0x050201CC (0x3ffb61901cc): 0x00000000
    Read at address  0x050201D0 (0x3ff965401d0): 0x00000000
    Read at address  0x050201D4 (0x3ffa47101d4): 0x00000000
    Read at address  0x050201D8 (0x3ffbe7301d8): 0x00000000
    Read at address  0x050201DC (0x3ffa98a01dc): 0x00000000
    Read at address  0x050201E0 (0x3ff95d101e0): 0x00000000
    Read at address  0x050201E4 (0x3ff8bd401e4): 0x00000000
    Read at address  0x050201E8 (0x3ffae9001e8): 0x00000000
    Read at address  0x050201EC (0x3ff8e6101ec): 0x00000000
    Read at address  0x050201F0 (0x3ff93a501f0): 0x00000000
    Read at address  0x050201F4 (0x3ffba4301f4): 0x00000000
    Read at address  0x050201F8 (0x3ffa4df01f8): 0x00000000
    Read at address  0x050201FC (0x3ff85d801fc): 0x00000000
    Read at address  0x05020200 (0x3ffa8290200): 0x00000000
    Read at address  0x05020204 (0x3ff97150204): 0x0000002D
    Read at address  0x05020208 (0x3ff990a0208): 0x0006001E
    Read at address  0x0502020C (0x3ffa924020c): 0x00000000
    Read at address  0x05020210 (0x3ffb3de0210): 0x00000000
    Read at address  0x05020214 (0x3ff9b650214): 0x0000802D
    Read at address  0x05020218 (0x3ffaa910218): 0x0006001E
    Read at address  0x0502021C (0x3ffb5c6021c): 0x00000000
    Read at address  0x05020220 (0x3ff905f0220): 0x00000000
    Read at address  0x05020224 (0x3ff7ed40224): 0x00000008
    Read at address  0x05020228 (0x3ff8fba0228): 0x000602EE
    Read at address  0x0502022C (0x3ff99b9022c): 0x00000000
    Read at address  0x05020230 (0x3ff989a0230): 0x00000000
    Read at address  0x05020234 (0x3ff98de0234): 0x00000000
    Read at address  0x05020238 (0x3ff88b50238): 0x00000000
    Read at address  0x0502023C (0x3ff881c023c): 0x00000000
    Read at address  0x05020240 (0x3ff87ae0240): 0x101E0000
    Read at address  0x05020244 (0x3ff8c750244): 0x00000001
    Read at address  0x05020248 (0x3ff8f2e0248): 0x00020006
    Read at address  0x0502024C (0x3ffaa5c024c): 0x0000000E
    Read at address  0x05020250 (0x3ffa8820250): 0x0000012B
    Read at address  0x05020254 (0x3ff89bd0254): 0x00000000
    Read at address  0x05020258 (0x3ffa3000258): 0x00000000
    Read at address  0x0502025C (0x3ff9579025c): 0x00000000
    Read at address  0x05020260 (0x3ff8b220260): 0x00000000
    Read at address  0x05020264 (0x3ffa7b70264): 0x00000000
    Read at address  0x05020268 (0x3ff86880268): 0x00000000
    Read at address  0x0502026C (0x3ff904b026c): 0x00000000
    Read at address  0x05020270 (0x3ff87140270): 0x00000000
    Read at address  0x05020274 (0x3ffb4920274): 0x00000000
    Read at address  0x05020278 (0x3ff7f070278): 0x00000000
    Read at address  0x0502027C (0x3ff9a03027c): 0x00000000
    Read at address  0x05020280 (0x3ff9fe40280): 0x00000000
    Read at address  0x05020284 (0x3ffb4c70284): 0x00000000
    Read at address  0x05020288 (0x3ff85c10288): 0x00000000
    Read at address  0x0502028C (0x3ff9472028c): 0x00000000
    Read at address  0x05020290 (0x3ffa2b30290): 0x00000000
    Read at address  0x05020294 (0x3ffa87a0294): 0x00000000
    Read at address  0x05020298 (0x3ff9e540298): 0x00000000
    Read at address  0x0502029C (0x3ffb01d029c): 0x00000000
    Read at address  0x050202A0 (0x3ff955402a0): 0x00000000
    Read at address  0x050202A4 (0x3ff976e02a4): 0x00000000
    Read at address  0x050202A8 (0x3ff8d5d02a8): 0x00000000
    Read at address  0x050202AC (0x3ffab0d02ac): 0x00000000
    Read at address  0x050202B0 (0x3ffb1b602b0): 0x00000000
    Read at address  0x050202B4 (0x3ff95c902b4): 0x00000000
    Read at address  0x050202B8 (0x3ffbc9202b8): 0x00000000
    Read at address  0x050202BC (0x3ff8c9b02bc): 0x00000000
    Read at address  0x050202C0 (0x3ff9bb002c0): 0x00000000
    Read at address  0x050202C4 (0x3ff87da02c4): 0x00000000
    Read at address  0x050202C8 (0x3ff7f8e02c8): 0x00000000
    Read at address  0x050202CC (0x3ffbc2802cc): 0x00000000
    Read at address  0x050202D0 (0x3ff82c302d0): 0x00000000
    Read at address  0x050202D4 (0x3ffb60a02d4): 0x00000000
    Read at address  0x050202D8 (0x3ff847f02d8): 0x00000000
    Read at address  0x050202DC (0x3ffa8c902dc): 0x00000000
    Read at address  0x050202E0 (0x3ffa7eb02e0): 0x00000000
    Read at address  0x050202E4 (0x3ff826402e4): 0x00000000
    Read at address  0x050202E8 (0x3ff9cb902e8): 0x00000000
    Read at address  0x050202EC (0x3ffae8f02ec): 0x00000000
    Read at address  0x050202F0 (0x3ff959d02f0): 0x00000000
    Read at address  0x050202F4 (0x3ff872802f4): 0x00000000
    Read at address  0x050202F8 (0x3ff866102f8): 0x00000000
    Read at address  0x050202FC (0x3ff830a02fc): 0x00000000
    Read at address  0x05020300 (0x3ffb8c00300): 0x00000000
    Read at address  0x05020304 (0x3ff8c0e0304): 0x00000000
    Read at address  0x05020308 (0x3ff91990308): 0x00000000
    Read at address  0x0502030C (0x3ffbc35030c): 0x00000000
    Read at address  0x05020310 (0x3ffb5580310): 0x00000000
    Read at address  0x05020314 (0x3ffb5a30314): 0x00000000
    Read at address  0x05020318 (0x3ffaca00318): 0x00000000
    Read at address  0x0502031C (0x3ffb15b031c): 0x00000000
    Read at address  0x05020320 (0x3ff9aa60320): 0x00000000
    Read at address  0x05020324 (0x3ff97a70324): 0x00000000
    Read at address  0x05020328 (0x3ff9b8c0328): 0x00000000
    Read at address  0x0502032C (0x3ff9f7f032c): 0x00000000
    Read at address  0x05020330 (0x3ffb8e00330): 0x00000000
    Read at address  0x05020334 (0x3ff8c570334): 0x00000000
    Read at address  0x05020338 (0x3ff89d70338): 0x00000000
    Read at address  0x0502033C (0x3ff8db7033c): 0x00000000
    Read at address  0x05020340 (0x3ffa5b90340): 0x06011012
    Read at address  0x05020344 (0x3ff87640344): 0x000F0000
    Read at address  0x05020348 (0x3ffb9b20348): 0x08080028
    Read at address  0x0502034C (0x3ff8f29034c): 0x00010000
    Read at address  0x05020350 (0x3ff8e1b0350): 0x00000000
    Read at address  0x05020354 (0x3ff9d2a0354): 0x00000000
    Read at address  0x05020358 (0x3ff886f0358): 0x00000000
    Read at address  0x0502035C (0x3ff9ae2035c): 0x00000000
    Read at address  0x05020360 (0x3ff7f7d0360): 0x04001012
    Read at address  0x05020364 (0x3ffb4240364): 0x000F0000
    Read at address  0x05020368 (0x3ff81650368): 0x08080128
    Read at address  0x0502036C (0x3ffafeb036c): 0x00010000
    Read at address  0x05020370 (0x3ff81da0370): 0x00000000
    Read at address  0x05020374 (0x3ffbc0c0374): 0x00000000
    Read at address  0x05020378 (0x3ff8ea20378): 0x00000000
    Read at address  0x0502037C (0x3ffadbc037c): 0x00000000
    Read at address  0x05020380 (0x3ffa4b70380): 0x04001012
    Read at address  0x05020384 (0x3ff83990384): 0x000F0000
    Read at address  0x05020388 (0x3ff8c080388): 0x08080028
    Read at address  0x0502038C (0x3ff83ad038c): 0x00010000
    Read at address  0x05020390 (0x3ff7ebc0390): 0x00000000
    Read at address  0x05020394 (0x3ff9e3a0394): 0x00000000
    Read at address  0x05020398 (0x3ff817a0398): 0x00000000
    Read at address  0x0502039C (0x3ff884f039c): 0x00000000
    Read at address  0x050203A0 (0x3ffbada03a0): 0x00000000
    Read at address  0x050203A4 (0x3ffba1b03a4): 0x00000000
    Read at address  0x050203A8 (0x3ff888f03a8): 0x00000000
    Read at address  0x050203AC (0x3ff850c03ac): 0x00000000
    Read at address  0x050203B0 (0x3ff8a5203b0): 0x00000000
    Read at address  0x050203B4 (0x3ffba9a03b4): 0x00000000
    Read at address  0x050203B8 (0x3ff973103b8): 0x00000000
    Read at address  0x050203BC (0x3ffb48b03bc): 0x00000000
    Read at address  0x050203C0 (0x3ff8a3103c0): 0x36000E05
    Read at address  0x050203C4 (0x3ffb14603c4): 0x00000000
    Read at address  0x050203C8 (0x3ff87d403c8): 0x00220000
    Read at address  0x050203CC (0x3ffac4203cc): 0x000C2D09
    Read at address  0x050203D0 (0x3ff943203d0): 0x00000000
    Read at address  0x050203D4 (0x3ffa28603d4): 0x00000000
    Read at address  0x050203D8 (0x3ffb46603d8): 0x01FF0011
    Read at address  0x050203DC (0x3ffbcde03dc): 0x00000000
    Read at address  0x050203E0 (0x3ff837003e0): 0x00000000
    Read at address  0x050203E4 (0x3ffb3b203e4): 0x00000000
    Read at address  0x050203E8 (0x3ff854503e8): 0x00000000
    Read at address  0x050203EC (0x3ffbbab03ec): 0x00000000
    Read at address  0x050203F0 (0x3ffbcb803f0): 0x00000000
    Read at address  0x050203F4 (0x3ff9f4703f4): 0x00000000
    Read at address  0x050203F8 (0x3ff81ca03f8): 0x00000000
    Read at address  0x050203FC (0x3ff812903fc): 0x00000000
    Read at address  0x05020400 (0x3ffaf6d0400): 0x698B4803
    Read at address  0x05020404 (0x3ff7f810404): 0x00000000
    Read at address  0x05020408 (0x3ffac0d0408): 0x18100000
    Read at address  0x0502040C (0x3ff9b27040c): 0xA2800000
    Read at address  0x05020410 (0x3ff98620410): 0x00000000
    Read at address  0x05020414 (0x3ff9fca0414): 0x00000000
    Read at address  0x05020418 (0x3ff98b80418): 0x00000000
    Read at address  0x0502041C (0x3ffa55e041c): 0x00000000
    Read at address  0x05020420 (0x3ff96bd0420): 0x00000000
    Read at address  0x05020424 (0x3ffb5c60424): 0x00000000
    Read at address  0x05020428 (0x3ff81f80428): 0x00000000
    Read at address  0x0502042C (0x3ffa2ba042c): 0x00000000
    Read at address  0x05020430 (0x3ff956b0430): 0x00000000
    Read at address  0x05020434 (0x3ffa87e0434): 0x00000000
    Read at address  0x05020438 (0x3ff88c70438): 0x00000000
    Read at address  0x0502043C (0x3ffaf8f043c): 0x00000000
    Read at address  0x05020440 (0x3ffa4880440): 0x00000000
    Read at address  0x05020444 (0x3ffbbab0444): 0x00000000
    Read at address  0x05020448 (0x3ffa1800448): 0x00000000
    Read at address  0x0502044C (0x3ff9000044c): 0x00000000
    Read at address  0x05020450 (0x3ff87960450): 0x00000000
    Read at address  0x05020454 (0x3ff7fdc0454): 0x00000000
    Read at address  0x05020458 (0x3ffb4690458): 0x00000000
    Read at address  0x0502045C (0x3ffa9ee045c): 0x00000000
    Read at address  0x05020460 (0x3ffb3f90460): 0x00000000
    Read at address  0x05020464 (0x3ffb5760464): 0x00000000
    Read at address  0x05020468 (0x3ffa79d0468): 0x00000000
    Read at address  0x0502046C (0x3ff8102046c): 0x00000000
    Read at address  0x05020470 (0x3ff88ab0470): 0x00000000
    Read at address  0x05020474 (0x3ffa6dd0474): 0x00000000
    Read at address  0x05020478 (0x3ffbda80478): 0x00000000
    Read at address  0x0502047C (0x3ffac80047c): 0x00000000
    Read at address  0x05020480 (0x3ff98510480): 0x70800000
    Read at address  0x05020484 (0x3ff94ad0484): 0x00010002
    Read at address  0x05020488 (0x3ff8b2e0488): 0x00000107
    Read at address  0x0502048C (0x3ffa694048c): 0x00000002
    Read at address  0x05020490 (0x3ff910e0490): 0x00000000
    Read at address  0x05020494 (0x3ff8bb70494): 0x00000000
    Read at address  0x05020498 (0x3ffa3c60498): 0x00000000
    Read at address  0x0502049C (0x3ff7f86049c): 0x00000000
    Read at address  0x050204A0 (0x3ff995504a0): 0x00000000
    Read at address  0x050204A4 (0x3ffa5f304a4): 0x00000000
    Read at address  0x050204A8 (0x3ff926804a8): 0x00000000
    Read at address  0x050204AC (0x3ff8d6104ac): 0x00000000
    Read at address  0x050204B0 (0x3ff89d404b0): 0x00000000
    Read at address  0x050204B4 (0x3ff86cf04b4): 0x00000000
    Read at address  0x050204B8 (0x3ffa8dc04b8): 0x00000000
    Read at address  0x050204BC (0x3ff9ac404bc): 0x00000000
    Read at address  0x050204C0 (0x3ff945104c0): 0x70800000
    Read at address  0x050204C4 (0x3ffb77e04c4): 0x00010002
    Read at address  0x050204C8 (0x3ffb6dd04c8): 0x00000100
    Read at address  0x050204CC (0x3ffa74904cc): 0x00000002
    Read at address  0x050204D0 (0x3ff863f04d0): 0x00000000
    Read at address  0x050204D4 (0x3ffbd1604d4): 0x00000000
    Read at address  0x050204D8 (0x3ff7f5704d8): 0x00000000
    Read at address  0x050204DC (0x3ffa1d104dc): 0x00000000
    Read at address  0x050204E0 (0x3ff876104e0): 0x00000000
    Read at address  0x050204E4 (0x3ffba6404e4): 0x00000000
    Read at address  0x050204E8 (0x3ffadbf04e8): 0x00000000
    Read at address  0x050204EC (0x3ff943604ec): 0x00000000
    Read at address  0x050204F0 (0x3ff9a9d04f0): 0x00000000
    Read at address  0x050204F4 (0x3ffa53a04f4): 0x00000000
    Read at address  0x050204F8 (0x3ffba4e04f8): 0x00000000
    Read at address  0x050204FC (0x3ffa59604fc): 0x00000000
    Read at address  0x05020500 (0x3ff962d0500): 0x70800000
    Read at address  0x05020504 (0x3ffa6d70504): 0x00010002
    Read at address  0x05020508 (0x3ffaf840508): 0x00000105
    Read at address  0x0502050C (0x3ff98d4050c): 0x00000012
    Read at address  0x05020510 (0x3ffbdf80510): 0x00000000
    Read at address  0x05020514 (0x3ffb7270514): 0x00000000
    Read at address  0x05020518 (0x3ffa5730518): 0x00000000
    Read at address  0x0502051C (0x3ff9fc0051c): 0x00000000
    Read at address  0x05020520 (0x3ffb8230520): 0x00000000
    Read at address  0x05020524 (0x3ff99af0524): 0x00000000
    Read at address  0x05020528 (0x3ff900e0528): 0x00000000
    Read at address  0x0502052C (0x3ff8f1e052c): 0x00000000
    Read at address  0x05020530 (0x3ffab780530): 0x00000000
    Read at address  0x05020534 (0x3ff877d0534): 0x00000000
    Read at address  0x05020538 (0x3ffbd560538): 0x00000000
    Read at address  0x0502053C (0x3ff94ac053c): 0x00000000
    Read at address  0x05020540 (0x3ffbd480540): 0x70800000
    Read at address  0x05020544 (0x3ff91bb0544): 0x00010002
    Read at address  0x05020548 (0x3ff8ba00548): 0x00000101
    Read at address  0x0502054C (0x3ff8c3c054c): 0x00000012
    Read at address  0x05020550 (0x3ff831c0550): 0x00000000
    Read at address  0x05020554 (0x3ff804e0554): 0x00000000
    Read at address  0x05020558 (0x3ff82a10558): 0x00000000
    Read at address  0x0502055C (0x3ffb23e055c): 0x00000000
    Read at address  0x05020560 (0x3ff8bf70560): 0x00000000
    Read at address  0x05020564 (0x3ff94d10564): 0x00000000
    Read at address  0x05020568 (0x3ffa0510568): 0x00000000
    Read at address  0x0502056C (0x3ffb7df056c): 0x00000000
    Read at address  0x05020570 (0x3ffaf980570): 0x00000000
    Read at address  0x05020574 (0x3ff9fef0574): 0x00000000
    Read at address  0x05020578 (0x3ffb75b0578): 0x00000000
    Read at address  0x0502057C (0x3ffa6e0057c): 0x00000000
    Read at address  0x05020580 (0x3ffa68c0580): 0x00000000
    Read at address  0x05020584 (0x3ff9d550584): 0x00000000
    Read at address  0x05020588 (0x3ffa4300588): 0x00000000
    Read at address  0x0502058C (0x3ffa292058c): 0x00000000
    Read at address  0x05020590 (0x3ffb6ef0590): 0x00000000
    Read at address  0x05020594 (0x3ffbdb10594): 0x00000000
    Read at address  0x05020598 (0x3ffa7750598): 0x00000000
    Read at address  0x0502059C (0x3ff8c42059c): 0x00000000
    Read at address  0x050205A0 (0x3ffae2905a0): 0x00000000
    Read at address  0x050205A4 (0x3ffbaa605a4): 0x00000000
    Read at address  0x050205A8 (0x3ff857405a8): 0x00000000
    Read at address  0x050205AC (0x3ff954505ac): 0x00000000
    Read at address  0x050205B0 (0x3ffbcfa05b0): 0x00000000
    Read at address  0x050205B4 (0x3ff8d5105b4): 0x00000000
    Read at address  0x050205B8 (0x3ff933305b8): 0x00000000
    Read at address  0x050205BC (0x3ff965b05bc): 0x00000000
    Read at address  0x050205C0 (0x3ffb11305c0): 0x00000000
    Read at address  0x050205C4 (0x3ff99ff05c4): 0x00000000
    Read at address  0x050205C8 (0x3ff944505c8): 0x00000000
    Read at address  0x050205CC (0x3ffa19005cc): 0x00000000
    Read at address  0x050205D0 (0x3ffab1405d0): 0x00000000
    Read at address  0x050205D4 (0x3ff8d4e05d4): 0x00000000
    Read at address  0x050205D8 (0x3ffb4f105d8): 0x00000000
    Read at address  0x050205DC (0x3ff9d4905dc): 0x00000000
    Read at address  0x050205E0 (0x3ff94e005e0): 0x00000000
    Read at address  0x050205E4 (0x3ffb1bf05e4): 0x00000000
    Read at address  0x050205E8 (0x3ffb0b805e8): 0x00000000
    Read at address  0x050205EC (0x3ff8b5005ec): 0x00000000
    Read at address  0x050205F0 (0x3ffb5a605f0): 0x00000000
    Read at address  0x050205F4 (0x3ffadba05f4): 0x00000000
    Read at address  0x050205F8 (0x3ffb2f705f8): 0x00000000
    Read at address  0x050205FC (0x3ff924b05fc): 0x00000000
    Read at address  0x05020600 (0x3ff81be0600): 0x00000000
    Read at address  0x05020604 (0x3ff9d260604): 0x00000000
    Read at address  0x05020608 (0x3ff9ef70608): 0x00000000
    Read at address  0x0502060C (0x3ffb3f3060c): 0x00000000
    Read at address  0x05020610 (0x3ff8a0e0610): 0x00000000
    Read at address  0x05020614 (0x3ff8a490614): 0x00000000
    Read at address  0x05020618 (0x3ffab370618): 0x00000000
    Read at address  0x0502061C (0x3ffba7a061c): 0x00000000
    Read at address  0x05020620 (0x3ffaa0d0620): 0x00000000
    Read at address  0x05020624 (0x3ffb0310624): 0x00000000
    Read at address  0x05020628 (0x3ff8c350628): 0x00000000
    Read at address  0x0502062C (0x3ffbc1c062c): 0x00000000
    Read at address  0x05020630 (0x3ff96050630): 0x00000000
    Read at address  0x05020634 (0x3ff8f990634): 0x00000000
    Read at address  0x05020638 (0x3ff9d090638): 0x00000000
    Read at address  0x0502063C (0x3ff83d0063c): 0x00000000
    Read at address  0x05020640 (0x3ff8b3c0640): 0x00000000
    Read at address  0x05020644 (0x3ffa8da0644): 0x00000000
    Read at address  0x05020648 (0x3ff815b0648): 0x00000000
    Read at address  0x0502064C (0x3ffa56a064c): 0x00000000
    Read at address  0x05020650 (0x3ff95910650): 0x00000000
    Read at address  0x05020654 (0x3ffbc840654): 0x00000000
    Read at address  0x05020658 (0x3ffa3020658): 0x00000000
    Read at address  0x0502065C (0x3ff983f065c): 0x00000000
    Read at address  0x05020660 (0x3ffa4ba0660): 0x00000000
    Read at address  0x05020664 (0x3ff96750664): 0x00000000
    Read at address  0x05020668 (0x3ffa55a0668): 0x00000000
    Read at address  0x0502066C (0x3ff965e066c): 0x00000000
    Read at address  0x05020670 (0x3ff9d8a0670): 0x00000000
    Read at address  0x05020674 (0x3ff9afd0674): 0x00000000
    Read at address  0x05020678 (0x3ffb8760678): 0x00000000
    Read at address  0x0502067C (0x3ffb648067c): 0x00000000
    Read at address  0x05020680 (0x3ff99690680): 0x00000000
    Read at address  0x05020684 (0x3ff9f230684): 0x00000000
    Read at address  0x05020688 (0x3ffadf90688): 0x00000000
    Read at address  0x0502068C (0x3ffb3d4068c): 0x00000000
    Read at address  0x05020690 (0x3ff98fc0690): 0x00000000
    Read at address  0x05020694 (0x3ff97f00694): 0x00000000
    Read at address  0x05020698 (0x3ffb8270698): 0x00000000
    Read at address  0x0502069C (0x3ff8052069c): 0x00000000
    Read at address  0x050206A0 (0x3ff88fb06a0): 0x00000000
    Read at address  0x050206A4 (0x3ff9e2d06a4): 0x00000000
    Read at address  0x050206A8 (0x3ffb38a06a8): 0x00000000
    Read at address  0x050206AC (0x3ffb27306ac): 0x00000000
    Read at address  0x050206B0 (0x3ffbc3306b0): 0x00000000
    Read at address  0x050206B4 (0x3ffb54b06b4): 0x00000000
    Read at address  0x050206B8 (0x3ff9fae06b8): 0x00000000
    Read at address  0x050206BC (0x3ff94db06bc): 0x00000000
    Read at address  0x050206C0 (0x3ffb91f06c0): 0x00000000
    Read at address  0x050206C4 (0x3ffb2eb06c4): 0x00000000
    Read at address  0x050206C8 (0x3ff99a106c8): 0x00000000
    Read at address  0x050206CC (0x3ffb10906cc): 0x00000000
    Read at address  0x050206D0 (0x3ff88b506d0): 0x00000000
    Read at address  0x050206D4 (0x3ff87fd06d4): 0x00000000
    Read at address  0x050206D8 (0x3ff820406d8): 0x00000000
    Read at address  0x050206DC (0x3ff972806dc): 0x00000000
    Read at address  0x050206E0 (0x3ffb40d06e0): 0x00000000
    Read at address  0x050206E4 (0x3ff9ccd06e4): 0x00000000
    Read at address  0x050206E8 (0x3ff7f9706e8): 0x00000000
    Read at address  0x050206EC (0x3ff80ad06ec): 0x00000000
    Read at address  0x050206F0 (0x3ff8df206f0): 0x00000000
    Read at address  0x050206F4 (0x3ffa66706f4): 0x00000000
    Read at address  0x050206F8 (0x3ff993906f8): 0x00000000
    Read at address  0x050206FC (0x3ff99d206fc): 0x00000000
    Read at address  0x05020700 (0x3ffae300700): 0x00000000
    Read at address  0x05020704 (0x3ff9cd60704): 0x00000000
    Read at address  0x05020708 (0x3ff835c0708): 0x00000000
    Read at address  0x0502070C (0x3ffb51d070c): 0x00000000
    Read at address  0x05020710 (0x3ff8d8a0710): 0x00000000
    Read at address  0x05020714 (0x3ff8b640714): 0x00000000
    Read at address  0x05020718 (0x3ffa1100718): 0x00000000
    Read at address  0x0502071C (0x3ff9600071c): 0x00000000
    Read at address  0x05020720 (0x3ffbd7a0720): 0x00000000
    Read at address  0x05020724 (0x3ffa93a0724): 0x00000000
    Read at address  0x05020728 (0x3ff84370728): 0x00000000
    Read at address  0x0502072C (0x3ff9d6e072c): 0x00000000
    Read at address  0x05020730 (0x3ffb95d0730): 0x00000000
    Read at address  0x05020734 (0x3ff91bb0734): 0x00000000
    Read at address  0x05020738 (0x3ff93890738): 0x00000000
    Read at address  0x0502073C (0x3ffb4b1073c): 0x00000000
    Read at address  0x05020740 (0x3ffbbcc0740): 0x00000000
    Read at address  0x05020744 (0x3ff842f0744): 0x00000000
    Read at address  0x05020748 (0x3ffa7d50748): 0x00000000
    Read at address  0x0502074C (0x3ff9141074c): 0x00000000
    Read at address  0x05020750 (0x3ff93760750): 0x00000000
    Read at address  0x05020754 (0x3ff9c600754): 0x00000000
    Read at address  0x05020758 (0x3ff92990758): 0x00000000
    Read at address  0x0502075C (0x3ffb81b075c): 0x00000000
    Read at address  0x05020760 (0x3ffa02b0760): 0x00000000
    Read at address  0x05020764 (0x3ffa67b0764): 0x00000000
    Read at address  0x05020768 (0x3ffaeea0768): 0x00000000
    Read at address  0x0502076C (0x3ffaef0076c): 0x00000000
    Read at address  0x05020770 (0x3ffa48c0770): 0x00000000
    Read at address  0x05020774 (0x3ff8d6a0774): 0x00000000
    Read at address  0x05020778 (0x3ff9be70778): 0x00000000
    Read at address  0x0502077C (0x3ffbb99077c): 0x00000000
    Read at address  0x05020780 (0x3ff8b650780): 0x00000000
    Read at address  0x05020784 (0x3ff9ffb0784): 0x00000000
    Read at address  0x05020788 (0x3ffae130788): 0x00000000
    Read at address  0x0502078C (0x3ff9c07078c): 0x00000000
    Read at address  0x05020790 (0x3ffa6a10790): 0x00000000
    Read at address  0x05020794 (0x3ff9faa0794): 0x00000000
    Read at address  0x05020798 (0x3ff96170798): 0x00000000
    Read at address  0x0502079C (0x3ffb84f079c): 0x00000000
    Read at address  0x050207A0 (0x3ffa5c407a0): 0x00000000
    Read at address  0x050207A4 (0x3ff9c8907a4): 0x00000000
    Read at address  0x050207A8 (0x3ffb93007a8): 0x00000000
    Read at address  0x050207AC (0x3ff9c1f07ac): 0x00000000
    Read at address  0x050207B0 (0x3ffb4ef07b0): 0x00000000
    Read at address  0x050207B4 (0x3ff880807b4): 0x00000000
    Read at address  0x050207B8 (0x3ff94cb07b8): 0x00000000
    Read at address  0x050207BC (0x3ff97d707bc): 0x00000000
    Read at address  0x050207C0 (0x3ffa8f807c0): 0x00000000
    Read at address  0x050207C4 (0x3ffb7ab07c4): 0x00000000
    Read at address  0x050207C8 (0x3ffbcc507c8): 0x00000000
    Read at address  0x050207CC (0x3ffafc707cc): 0x00000000
    Read at address  0x050207D0 (0x3ffb01c07d0): 0x00000000
    Read at address  0x050207D4 (0x3ff86ce07d4): 0x00000000
    Read at address  0x050207D8 (0x3ff8a8a07d8): 0x00000000
    Read at address  0x050207DC (0x3ff942007dc): 0x00000000
    Read at address  0x050207E0 (0x3ffaafd07e0): 0x00000000
    Read at address  0x050207E4 (0x3ffb22c07e4): 0x00000000
    Read at address  0x050207E8 (0x3ffbe1607e8): 0x00000000
    Read at address  0x050207EC (0x3ff86c207ec): 0x00000000
    Read at address  0x050207F0 (0x3ffa62107f0): 0x00000000
    Read at address  0x050207F4 (0x3ffb59607f4): 0x00000000
    Read at address  0x050207F8 (0x3ffbada07f8): 0x00000000
    Read at address  0x050207FC (0x3ffb16607fc): 0x00000000
    Read at address  0x05020800 (0x3ff90130800): 0x00000000
    Read at address  0x05020804 (0x3ff91900804): 0x00000000
    Read at address  0x05020808 (0x3ffb0870808): 0x00000000
    Read at address  0x0502080C (0x3ffa68d080c): 0x00000000
    Read at address  0x05020810 (0x3ff88b60810): 0x00000000
    Read at address  0x05020814 (0x3ff8a700814): 0x00000000
    Read at address  0x05020818 (0x3ffac270818): 0x00000000
    Read at address  0x0502081C (0x3ffab3a081c): 0x00000000
    Read at address  0x05020820 (0x3ff80df0820): 0x00000000
    Read at address  0x05020824 (0x3ff871f0824): 0x00000000
    Read at address  0x05020828 (0x3ff83240828): 0x00000000
    Read at address  0x0502082C (0x3ff9d10082c): 0x00000000
    Read at address  0x05020830 (0x3ffa96f0830): 0x00000000
    Read at address  0x05020834 (0x3ff96120834): 0x00000000
    Read at address  0x05020838 (0x3ff841e0838): 0x00000000
    Read at address  0x0502083C (0x3ffb402083c): 0x00000000
    Read at address  0x05020840 (0x3ff99920840): 0x00000000
    Read at address  0x05020844 (0x3ff97aa0844): 0x00000000
    Read at address  0x05020848 (0x3ff9c290848): 0x00000000
    Read at address  0x0502084C (0x3ff899a084c): 0x00000000
    Read at address  0x05020850 (0x3ffb6f00850): 0x00000000
    Read at address  0x05020854 (0x3ff999c0854): 0x00000000
    Read at address  0x05020858 (0x3ffbd270858): 0x00000000
    Read at address  0x0502085C (0x3ff8540085c): 0x00000000
    Read at address  0x05020860 (0x3ff88740860): 0x00000000
    Read at address  0x05020864 (0x3ffb68e0864): 0x00000000
    Read at address  0x05020868 (0x3ffbb9a0868): 0x00000000
    Read at address  0x0502086C (0x3ffab5a086c): 0x00000000
    Read at address  0x05020870 (0x3ff88540870): 0x00000000
    Read at address  0x05020874 (0x3ff9ad00874): 0x00000000
    Read at address  0x05020878 (0x3ffb9110878): 0x00000000
    Read at address  0x0502087C (0x3ff8e63087c): 0x00000000
    Read at address  0x05020880 (0x3ffbaae0880): 0x00000000
    Read at address  0x05020884 (0x3ffa5bd0884): 0x00000000
    Read at address  0x05020888 (0x3ffa69d0888): 0x00000000
    Read at address  0x0502088C (0x3ffbb6a088c): 0x00000000
    Read at address  0x05020890 (0x3ff923a0890): 0x00000000
    Read at address  0x05020894 (0x3ff9c9d0894): 0x00000000
    Read at address  0x05020898 (0x3ffacd20898): 0x00000000
    Read at address  0x0502089C (0x3ff847f089c): 0x00000000
    Read at address  0x050208A0 (0x3ff8ae208a0): 0x00000000
    Read at address  0x050208A4 (0x3ffa9bd08a4): 0x00000000
    Read at address  0x050208A8 (0x3ff9f2608a8): 0x00000000
    Read at address  0x050208AC (0x3ffb87f08ac): 0x00000000
    Read at address  0x050208B0 (0x3ff930308b0): 0x00000000
    Read at address  0x050208B4 (0x3ff962908b4): 0x00000000
    Read at address  0x050208B8 (0x3ffa29008b8): 0x00000000
    Read at address  0x050208BC (0x3ff980508bc): 0x00000000
    Read at address  0x050208C0 (0x3ffb9b408c0): 0x00000000
    Read at address  0x050208C4 (0x3ff8a8a08c4): 0x00000000
    Read at address  0x050208C8 (0x3ff958608c8): 0x00000000
    Read at address  0x050208CC (0x3ffa21f08cc): 0x00000000
    Read at address  0x050208D0 (0x3ff841608d0): 0x00000000
    Read at address  0x050208D4 (0x3ffb0f108d4): 0x00000000
    Read at address  0x050208D8 (0x3ff8de408d8): 0x00000000
    Read at address  0x050208DC (0x3ffbc7708dc): 0x00000000
    Read at address  0x050208E0 (0x3ff9e1308e0): 0x00000000
    Read at address  0x050208E4 (0x3ff944108e4): 0x00000000
    Read at address  0x050208E8 (0x3ffb9be08e8): 0x00000000
    Read at address  0x050208EC (0x3ffa9d208ec): 0x00000000
    Read at address  0x050208F0 (0x3ffb2f508f0): 0x00000000
    Read at address  0x050208F4 (0x3ff9d9c08f4): 0x00000000
    Read at address  0x050208F8 (0x3ff909408f8): 0x00000000
    Read at address  0x050208FC (0x3ff9a6d08fc): 0x00000000
    Read at address  0x05020900 (0x3ffadef0900): 0x00000000
    Read at address  0x05020904 (0x3ff82f60904): 0x00000000
    Read at address  0x05020908 (0x3ffae3e0908): 0x00000000
    Read at address  0x0502090C (0x3ff9039090c): 0x00000000
    Read at address  0x05020910 (0x3ffb8160910): 0x00000000
    Read at address  0x05020914 (0x3ff94aa0914): 0x00000000
    Read at address  0x05020918 (0x3ff9f3a0918): 0x00000000
    Read at address  0x0502091C (0x3ffaec5091c): 0x00000000
    Read at address  0x05020920 (0x3ff862b0920): 0x00000000
    Read at address  0x05020924 (0x3ff80880924): 0x00000000
    Read at address  0x05020928 (0x3ff90550928): 0x00000000
    Read at address  0x0502092C (0x3ffab81092c): 0x00000000
    Read at address  0x05020930 (0x3ffbe5e0930): 0x00000000
    Read at address  0x05020934 (0x3ff97580934): 0x00000000
    Read at address  0x05020938 (0x3ffbad60938): 0x00000000
    Read at address  0x0502093C (0x3ff8f81093c): 0x00000000
    Read at address  0x05020940 (0x3ff85a40940): 0x00000000
    Read at address  0x05020944 (0x3ff7ea00944): 0x00000000
    Read at address  0x05020948 (0x3ffbac60948): 0x00000000
    Read at address  0x0502094C (0x3ffb301094c): 0x00000000
    Read at address  0x05020950 (0x3ff9dcb0950): 0x00000000
    Read at address  0x05020954 (0x3ff8d750954): 0x00000000
    Read at address  0x05020958 (0x3ff7ede0958): 0x00000000
    Read at address  0x0502095C (0x3ff92ee095c): 0x00000000
    Read at address  0x05020960 (0x3ff97160960): 0x00000000
    Read at address  0x05020964 (0x3ff84d60964): 0x00000000
    Read at address  0x05020968 (0x3ff88ba0968): 0x00000000
    Read at address  0x0502096C (0x3ffbb8f096c): 0x00000000
    Read at address  0x05020970 (0x3ffa1040970): 0x00000000
    Read at address  0x05020974 (0x3ffa96a0974): 0x00000000
    Read at address  0x05020978 (0x3ffbc4e0978): 0x00000000
    Read at address  0x0502097C (0x3ff9589097c): 0x00000000
    Read at address  0x05020980 (0x3ffb86e0980): 0x00000000
    Read at address  0x05020984 (0x3ff91650984): 0x00000000
    Read at address  0x05020988 (0x3ff8b5e0988): 0x00000000
    Read at address  0x0502098C (0x3ff8992098c): 0x00000000
    Read at address  0x05020990 (0x3ffb26b0990): 0x00000000
    Read at address  0x05020994 (0x3ffa7f50994): 0x00000000
    Read at address  0x05020998 (0x3ffbb2f0998): 0x00000000
    Read at address  0x0502099C (0x3ff914d099c): 0x00000000
    Read at address  0x050209A0 (0x3ffae9a09a0): 0x00000000
    Read at address  0x050209A4 (0x3ffb91f09a4): 0x00000000
    Read at address  0x050209A8 (0x3ff930c09a8): 0x00000000
    Read at address  0x050209AC (0x3ff954909ac): 0x00000000
    Read at address  0x050209B0 (0x3ff96fc09b0): 0x00000000
    Read at address  0x050209B4 (0x3ff97b609b4): 0x00000000
    Read at address  0x050209B8 (0x3ffb6bf09b8): 0x00000000
    Read at address  0x050209BC (0x3ff9af309bc): 0x00000000
    Read at address  0x050209C0 (0x3ff8bda09c0): 0x00000000
    Read at address  0x050209C4 (0x3ffb8af09c4): 0x00000000
    Read at address  0x050209C8 (0x3ff85af09c8): 0x00000000
    Read at address  0x050209CC (0x3ff8eef09cc): 0x00000000
    Read at address  0x050209D0 (0x3ffae0e09d0): 0x00000000
    Read at address  0x050209D4 (0x3ffab1e09d4): 0x00000000
    Read at address  0x050209D8 (0x3ff9c2009d8): 0x00000000
    Read at address  0x050209DC (0x3ffa01c09dc): 0x00000000
    Read at address  0x050209E0 (0x3ff8f7e09e0): 0x00000000
    Read at address  0x050209E4 (0x3ffb6e609e4): 0x00000000
    Read at address  0x050209E8 (0x3ff8d3609e8): 0x00000000
    Read at address  0x050209EC (0x3ff978109ec): 0x00000000
    Read at address  0x050209F0 (0x3ffb56909f0): 0x00000000
    Read at address  0x050209F4 (0x3ff9e8309f4): 0x00000000
    Read at address  0x050209F8 (0x3ff99ca09f8): 0x00000000
    Read at address  0x050209FC (0x3ffb88309fc): 0x00000000
    Read at address  0x05020A00 (0x3ffaaa00a00): 0x00000000
    Read at address  0x05020A04 (0x3ff9ccd0a04): 0x00000000
    Read at address  0x05020A08 (0x3ff8b4a0a08): 0x00000000
    Read at address  0x05020A0C (0x3ff86860a0c): 0x00000000
    Read at address  0x05020A10 (0x3ff9dbe0a10): 0x00000000
    Read at address  0x05020A14 (0x3ff9d3a0a14): 0x00000000
    Read at address  0x05020A18 (0x3ff8c810a18): 0x00000000
    Read at address  0x05020A1C (0x3ff936e0a1c): 0x00000000
    Read at address  0x05020A20 (0x3ff9d980a20): 0x00000000
    Read at address  0x05020A24 (0x3ff92010a24): 0x00000000
    Read at address  0x05020A28 (0x3ffb8c60a28): 0x00000000
    Read at address  0x05020A2C (0x3ff9ef40a2c): 0x00000000
    Read at address  0x05020A30 (0x3ffba960a30): 0x00000000
    Read at address  0x05020A34 (0x3ffbaba0a34): 0x00000000
    Read at address  0x05020A38 (0x3ff846a0a38): 0x00000000
    Read at address  0x05020A3C (0x3ff86880a3c): 0x00000000
    Read at address  0x05020A40 (0x3ffa3d00a40): 0x00000000
    Read at address  0x05020A44 (0x3ff9e7a0a44): 0x00000000
    Read at address  0x05020A48 (0x3ff9eed0a48): 0x00000000
    Read at address  0x05020A4C (0x3ffba280a4c): 0x00000000
    Read at address  0x05020A50 (0x3ffba120a50): 0x00000000
    Read at address  0x05020A54 (0x3ffaf960a54): 0x00000000
    Read at address  0x05020A58 (0x3ffa1f30a58): 0x00000000
    Read at address  0x05020A5C (0x3ffa7cd0a5c): 0x00000000
    Read at address  0x05020A60 (0x3ffafac0a60): 0x00000000
    Read at address  0x05020A64 (0x3ff81610a64): 0x00000000
    Read at address  0x05020A68 (0x3ffbe090a68): 0x00000000
    Read at address  0x05020A6C (0x3ff8c180a6c): 0x00000000
    Read at address  0x05020A70 (0x3ffae880a70): 0x00000000
    Read at address  0x05020A74 (0x3ffb5410a74): 0x00000000
    Read at address  0x05020A78 (0x3ff95da0a78): 0x00000000
    Read at address  0x05020A7C (0x3ff91870a7c): 0x00000000
    Read at address  0x05020A80 (0x3ffb7570a80): 0x00000000
    Read at address  0x05020A84 (0x3ffbc5d0a84): 0x00000000
    Read at address  0x05020A88 (0x3ffbb490a88): 0x00000000
    Read at address  0x05020A8C (0x3ffb8980a8c): 0x00000000
    Read at address  0x05020A90 (0x3ffa2120a90): 0x00000000
    Read at address  0x05020A94 (0x3ffb6a50a94): 0x00000000
    Read at address  0x05020A98 (0x3ffa6cf0a98): 0x00000000
    Read at address  0x05020A9C (0x3ffa4f00a9c): 0x00000000
    Read at address  0x05020AA0 (0x3ff9ee90aa0): 0x00000000
    Read at address  0x05020AA4 (0x3ff97fa0aa4): 0x00000000
    Read at address  0x05020AA8 (0x3ff9b280aa8): 0x00000000
    Read at address  0x05020AAC (0x3ff94d30aac): 0x00000000
    Read at address  0x05020AB0 (0x3ff9ad60ab0): 0x00000000
    Read at address  0x05020AB4 (0x3ff90780ab4): 0x00000000
    Read at address  0x05020AB8 (0x3ff82fb0ab8): 0x00000000
    Read at address  0x05020ABC (0x3ff97330abc): 0x00000000
    Read at address  0x05020AC0 (0x3ffbe690ac0): 0x00000000
    Read at address  0x05020AC4 (0x3ff85860ac4): 0x00000000
    Read at address  0x05020AC8 (0x3ff8fb60ac8): 0x00000000
    Read at address  0x05020ACC (0x3ff93c00acc): 0x00000000
    Read at address  0x05020AD0 (0x3ffa4750ad0): 0x00000000
    Read at address  0x05020AD4 (0x3ffa0f10ad4): 0x00000000
    Read at address  0x05020AD8 (0x3ffbb120ad8): 0x00000000
    Read at address  0x05020ADC (0x3ff91b10adc): 0x00000000
    Read at address  0x05020AE0 (0x3ff94d00ae0): 0x00000000
    Read at address  0x05020AE4 (0x3ffba5a0ae4): 0x00000000
    Read at address  0x05020AE8 (0x3ff9b390ae8): 0x00000000
    Read at address  0x05020AEC (0x3ffab410aec): 0x00000000
    Read at address  0x05020AF0 (0x3ffa48d0af0): 0x00000000
    Read at address  0x05020AF4 (0x3ffabab0af4): 0x00000000
    Read at address  0x05020AF8 (0x3ff82ca0af8): 0x00000000
    Read at address  0x05020AFC (0x3ffad090afc): 0x00000000
    Read at address  0x05020B00 (0x3ffaa270b00): 0x00000000
    Read at address  0x05020B04 (0x3ffbba60b04): 0x00000000
    Read at address  0x05020B08 (0x3ffacd50b08): 0x00000000
    Read at address  0x05020B0C (0x3ffa65a0b0c): 0x00000000
    Read at address  0x05020B10 (0x3ffa91b0b10): 0x00000000
    Read at address  0x05020B14 (0x3ffae340b14): 0x00000000
    Read at address  0x05020B18 (0x3ff82bb0b18): 0x00000000
    Read at address  0x05020B1C (0x3ff9c4c0b1c): 0x00000000
    Read at address  0x05020B20 (0x3ffb95a0b20): 0x00000000
    Read at address  0x05020B24 (0x3ffb78c0b24): 0x00000000
    Read at address  0x05020B28 (0x3ffb5ff0b28): 0x00000000
    Read at address  0x05020B2C (0x3ff984f0b2c): 0x00000000
    Read at address  0x05020B30 (0x3ffa3190b30): 0x00000000
    Read at address  0x05020B34 (0x3ff94720b34): 0x00000000
    Read at address  0x05020B38 (0x3ffb19c0b38): 0x00000000
    Read at address  0x05020B3C (0x3ff9f310b3c): 0x00000000
    Read at address  0x05020B40 (0x3ffa3170b40): 0x00000000
    Read at address  0x05020B44 (0x3ff95710b44): 0x00000000
    Read at address  0x05020B48 (0x3ffa7930b48): 0x00000000
    Read at address  0x05020B4C (0x3ff8f560b4c): 0x00000000
    Read at address  0x05020B50 (0x3ffaada0b50): 0x00000000
    Read at address  0x05020B54 (0x3ffa0be0b54): 0x00000000
    Read at address  0x05020B58 (0x3ff946a0b58): 0x00000000
    Read at address  0x05020B5C (0x3ffb4210b5c): 0x00000000
    Read at address  0x05020B60 (0x3ff97b20b60): 0x00000000
    Read at address  0x05020B64 (0x3ff81e00b64): 0x00000000
    Read at address  0x05020B68 (0x3ff8baf0b68): 0x00000000
    Read at address  0x05020B6C (0x3ffbd210b6c): 0x00000000
    Read at address  0x05020B70 (0x3ff94fc0b70): 0x00000000
    Read at address  0x05020B74 (0x3ffbd020b74): 0x00000000
    Read at address  0x05020B78 (0x3ff88050b78): 0x00000000
    Read at address  0x05020B7C (0x3ff907a0b7c): 0x00000000
    Read at address  0x05020B80 (0x3ff95630b80): 0x00000000
    Read at address  0x05020B84 (0x3ffb25a0b84): 0x00000000
    Read at address  0x05020B88 (0x3ffb7530b88): 0x00000000
    Read at address  0x05020B8C (0x3ff998e0b8c): 0x00000000
    Read at address  0x05020B90 (0x3ff935b0b90): 0x00000000
    Read at address  0x05020B94 (0x3ffb5eb0b94): 0x00000000
    Read at address  0x05020B98 (0x3ffb86c0b98): 0x00000000
    Read at address  0x05020B9C (0x3ff92530b9c): 0x00000000
    Read at address  0x05020BA0 (0x3ff9c6d0ba0): 0x00000000
    Read at address  0x05020BA4 (0x3ffa2e90ba4): 0x00000000
    Read at address  0x05020BA8 (0x3ffb4310ba8): 0x00000000
    Read at address  0x05020BAC (0x3ffa2f70bac): 0x00000000
    Read at address  0x05020BB0 (0x3ffb27c0bb0): 0x00000000
    Read at address  0x05020BB4 (0x3ff9e8d0bb4): 0x00000000
    Read at address  0x05020BB8 (0x3ffa66d0bb8): 0x00000000
    Read at address  0x05020BBC (0x3ff9ae10bbc): 0x00000000
    Read at address  0x05020BC0 (0x3ff94bd0bc0): 0x00000000
    Read at address  0x05020BC4 (0x3ffa75b0bc4): 0x00000000
    Read at address  0x05020BC8 (0x3ffb8bd0bc8): 0x00000000
    Read at address  0x05020BCC (0x3ff7f350bcc): 0x00000000
    Read at address  0x05020BD0 (0x3ff99ee0bd0): 0x00000000
    Read at address  0x05020BD4 (0x3ff9ae60bd4): 0x00000000
    Read at address  0x05020BD8 (0x3ffa4ac0bd8): 0x00000000
    Read at address  0x05020BDC (0x3ff98a30bdc): 0x00000000
    Read at address  0x05020BE0 (0x3ff94880be0): 0x00000000
    Read at address  0x05020BE4 (0x3ff88cb0be4): 0x00000000
    Read at address  0x05020BE8 (0x3ffa5980be8): 0x00000000
    Read at address  0x05020BEC (0x3ffb3910bec): 0x00000000
    Read at address  0x05020BF0 (0x3ffb6b10bf0): 0x00000000
    Read at address  0x05020BF4 (0x3ffa6070bf4): 0x00000000
    Read at address  0x05020BF8 (0x3ffad240bf8): 0x00000000
    Read at address  0x05020BFC (0x3ffa3a70bfc): 0x00000000
    Read at address  0x05020C00 (0x3ffba320c00): 0x00000000
    Read at address  0x05020C04 (0x3ffa58f0c04): 0x00000000
    Read at address  0x05020C08 (0x3ffb6970c08): 0x00000000
    Read at address  0x05020C0C (0x3ff9c970c0c): 0x00000000
    Read at address  0x05020C10 (0x3ffa0ad0c10): 0x00000000
    Read at address  0x05020C14 (0x3ffbb9d0c14): 0x00000000
    Read at address  0x05020C18 (0x3ff89860c18): 0x00000000
    Read at address  0x05020C1C (0x3ff8a350c1c): 0x00000000
    Read at address  0x05020C20 (0x3ff7fe50c20): 0x00000000
    Read at address  0x05020C24 (0x3ffb03e0c24): 0x00000000
    Read at address  0x05020C28 (0x3ff8be10c28): 0x00000000
    Read at address  0x05020C2C (0x3ff90cd0c2c): 0x00000000
    Read at address  0x05020C30 (0x3ff88d60c30): 0x00000000
    Read at address  0x05020C34 (0x3ff85aa0c34): 0x00000000
    Read at address  0x05020C38 (0x3ff9fc20c38): 0x00000000
    Read at address  0x05020C3C (0x3ffa3c50c3c): 0x00000000
    Read at address  0x05020C40 (0x3ff9f840c40): 0x00000000
    Read at address  0x05020C44 (0x3ff8cdb0c44): 0x00000000
    Read at address  0x05020C48 (0x3ff85990c48): 0x00000000
    Read at address  0x05020C4C (0x3ffaea00c4c): 0x00000000
    Read at address  0x05020C50 (0x3ffbbd90c50): 0x00000000
    Read at address  0x05020C54 (0x3ffa2d50c54): 0x00000000
    Read at address  0x05020C58 (0x3ff87200c58): 0x00000000
    Read at address  0x05020C5C (0x3ffa3890c5c): 0x00000000
    Read at address  0x05020C60 (0x3ff7edb0c60): 0x00000000
    Read at address  0x05020C64 (0x3ff94fe0c64): 0x00000000
    Read at address  0x05020C68 (0x3ffa1cf0c68): 0x00000000
    Read at address  0x05020C6C (0x3ffb11c0c6c): 0x00000000
    Read at address  0x05020C70 (0x3ffa61d0c70): 0x00000000
    Read at address  0x05020C74 (0x3ff9fd10c74): 0x00000000
    Read at address  0x05020C78 (0x3ff95770c78): 0x00000000
    Read at address  0x05020C7C (0x3ffba1c0c7c): 0x00000000
    Read at address  0x05020C80 (0x3ff83740c80): 0x00000000
    Read at address  0x05020C84 (0x3ff8d5b0c84): 0x00000000
    Read at address  0x05020C88 (0x3ffbd4a0c88): 0x00000000
    Read at address  0x05020C8C (0x3ffa82c0c8c): 0x00000000
    Read at address  0x05020C90 (0x3ff852a0c90): 0x00000000
    Read at address  0x05020C94 (0x3ffb4550c94): 0x00000000
    Read at address  0x05020C98 (0x3ff921a0c98): 0x00000000
    Read at address  0x05020C9C (0x3ff7e8e0c9c): 0x00000000
    Read at address  0x05020CA0 (0x3ffb6a90ca0): 0x00000000
    Read at address  0x05020CA4 (0x3ff92590ca4): 0x00000000
    Read at address  0x05020CA8 (0x3ff95300ca8): 0x00000000
    Read at address  0x05020CAC (0x3ffb8550cac): 0x00000000
    Read at address  0x05020CB0 (0x3ffab660cb0): 0x00000000
    Read at address  0x05020CB4 (0x3ffaaa40cb4): 0x00000000
    Read at address  0x05020CB8 (0x3ff9f5e0cb8): 0x00000000
    Read at address  0x05020CBC (0x3ff87c10cbc): 0x00000000
    Read at address  0x05020CC0 (0x3ff9a1d0cc0): 0x00000000
    Read at address  0x05020CC4 (0x3ffb0200cc4): 0x00000000
    Read at address  0x05020CC8 (0x3ffa6b30cc8): 0x00000000
    Read at address  0x05020CCC (0x3ffb3d90ccc): 0x00000000
    Read at address  0x05020CD0 (0x3ff8dff0cd0): 0x00000000
    Read at address  0x05020CD4 (0x3ff826e0cd4): 0x00000000
    Read at address  0x05020CD8 (0x3ff83a80cd8): 0x00000000
    Read at address  0x05020CDC (0x3ffa7ae0cdc): 0x00000000
    Read at address  0x05020CE0 (0x3ffb2db0ce0): 0x00000000
    Read at address  0x05020CE4 (0x3ffa4840ce4): 0x00000000
    Read at address  0x05020CE8 (0x3ffaecb0ce8): 0x00000000
    Read at address  0x05020CEC (0x3ffa0c00cec): 0x00000000
    Read at address  0x05020CF0 (0x3ff854b0cf0): 0x00000000
    Read at address  0x05020CF4 (0x3ffa29a0cf4): 0x00000000
    Read at address  0x05020CF8 (0x3ffa66c0cf8): 0x00000000
    Read at address  0x05020CFC (0x3ffbad00cfc): 0x00000000
    Read at address  0x05020D00 (0x3ffae3b0d00): 0x00000000
    Read at address  0x05020D04 (0x3ff8d110d04): 0x00000000
    Read at address  0x05020D08 (0x3ff902b0d08): 0x00000000
    Read at address  0x05020D0C (0x3ff8a8e0d0c): 0x00000000
    Read at address  0x05020D10 (0x3ff8fa40d10): 0x00000000
    Read at address  0x05020D14 (0x3ff8fbb0d14): 0x00000000
    Read at address  0x05020D18 (0x3ff97f70d18): 0x00000000
    Read at address  0x05020D1C (0x3ffb5190d1c): 0x00000000
    Read at address  0x05020D20 (0x3ffb1bf0d20): 0x00000000
    Read at address  0x05020D24 (0x3ff990a0d24): 0x00000000
    Read at address  0x05020D28 (0x3ff902b0d28): 0x00000000
    Read at address  0x05020D2C (0x3ff9d0a0d2c): 0x00000000
    Read at address  0x05020D30 (0x3ff9fee0d30): 0x00000000
    Read at address  0x05020D34 (0x3ff948b0d34): 0x00000000
    Read at address  0x05020D38 (0x3ff9b560d38): 0x00000000
    Read at address  0x05020D3C (0x3ffaff10d3c): 0x00000000
    Read at address  0x05020D40 (0x3ff9ec80d40): 0x00000000
    Read at address  0x05020D44 (0x3ffb7f70d44): 0x00000000
    Read at address  0x05020D48 (0x3ffb40c0d48): 0x00000000
    Read at address  0x05020D4C (0x3ffb9290d4c): 0x00000000
    Read at address  0x05020D50 (0x3ffb4120d50): 0x00000000
    Read at address  0x05020D54 (0x3ff957c0d54): 0x00000000
    Read at address  0x05020D58 (0x3ff9fc30d58): 0x00000000
    Read at address  0x05020D5C (0x3ffbaaa0d5c): 0x00000000
    Read at address  0x05020D60 (0x3ff96f10d60): 0x00000000
    Read at address  0x05020D64 (0x3ffb0900d64): 0x00000000
    Read at address  0x05020D68 (0x3ffac590d68): 0x00000000
    Read at address  0x05020D6C (0x3ffa3040d6c): 0x00000000
    Read at address  0x05020D70 (0x3ffb0960d70): 0x00000000
    Read at address  0x05020D74 (0x3ff93130d74): 0x00000000
    Read at address  0x05020D78 (0x3ff97130d78): 0x00000000
    Read at address  0x05020D7C (0x3ff83210d7c): 0x00000000
    Read at address  0x05020D80 (0x3ff81680d80): 0x00000000
    Read at address  0x05020D84 (0x3ffb9a40d84): 0x00000000
    Read at address  0x05020D88 (0x3ff846f0d88): 0x00000000
    Read at address  0x05020D8C (0x3ff86400d8c): 0x00000000
    Read at address  0x05020D90 (0x3ff87820d90): 0x00000000
    Read at address  0x05020D94 (0x3ffb6820d94): 0x00000000
    Read at address  0x05020D98 (0x3ff81b80d98): 0x00000000
    Read at address  0x05020D9C (0x3ffae0a0d9c): 0x00000000
    Read at address  0x05020DA0 (0x3ff89970da0): 0x00000000
    Read at address  0x05020DA4 (0x3ffb8590da4): 0x00000000
    Read at address  0x05020DA8 (0x3ff9e3f0da8): 0x00000000
    Read at address  0x05020DAC (0x3ffa8270dac): 0x00000000
    Read at address  0x05020DB0 (0x3ffb9e10db0): 0x00000000
    Read at address  0x05020DB4 (0x3ffb2cc0db4): 0x00000000
    Read at address  0x05020DB8 (0x3ffab530db8): 0x00000000
    Read at address  0x05020DBC (0x3ffa7450dbc): 0x00000000
    Read at address  0x05020DC0 (0x3ff89c10dc0): 0x00000000
    Read at address  0x05020DC4 (0x3ffb3e40dc4): 0x00000000
    Read at address  0x05020DC8 (0x3ffa4a20dc8): 0x00000000
    Read at address  0x05020DCC (0x3ff896e0dcc): 0x00000000
    Read at address  0x05020DD0 (0x3ffa5dc0dd0): 0x00000000
    Read at address  0x05020DD4 (0x3ffad850dd4): 0x00000000
    Read at address  0x05020DD8 (0x3ff9caa0dd8): 0x00000000
    Read at address  0x05020DDC (0x3ff84890ddc): 0x00000000
    Read at address  0x05020DE0 (0x3ffa2ae0de0): 0x00000000
    Read at address  0x05020DE4 (0x3ff8d4f0de4): 0x00000000
    Read at address  0x05020DE8 (0x3ff8e4f0de8): 0x00000000
    Read at address  0x05020DEC (0x3ff87f40dec): 0x00000000
    Read at address  0x05020DF0 (0x3ff8b860df0): 0x00000000
    Read at address  0x05020DF4 (0x3ffbccc0df4): 0x00000000
    Read at address  0x05020DF8 (0x3ffa8320df8): 0x00000000
    Read at address  0x05020DFC (0x3ffb4e80dfc): 0x00000000
    Read at address  0x05020E00 (0x3ffb7000e00): 0x00000000
    Read at address  0x05020E04 (0x3ffbd2d0e04): 0x00000000
    Read at address  0x05020E08 (0x3ff9e4f0e08): 0x00000000
    Read at address  0x05020E0C (0x3ff8ffc0e0c): 0x00000000
    Read at address  0x05020E10 (0x3ffab160e10): 0x00000000
    Read at address  0x05020E14 (0x3ff81490e14): 0x00000000
    Read at address  0x05020E18 (0x3ff931d0e18): 0x00000000
    Read at address  0x05020E1C (0x3ff98460e1c): 0x00000000
    Read at address  0x05020E20 (0x3ff81a30e20): 0x00000000
    Read at address  0x05020E24 (0x3ffa90b0e24): 0x00000000
    Read at address  0x05020E28 (0x3ff84050e28): 0x00000000
    Read at address  0x05020E2C (0x3ffaf460e2c): 0x00000000
    Read at address  0x05020E30 (0x3ffb6630e30): 0x00000000
    Read at address  0x05020E34 (0x3ff99840e34): 0x00000000
    Read at address  0x05020E38 (0x3ffb8b90e38): 0x00000000
    Read at address  0x05020E3C (0x3ffba020e3c): 0x00000000
    Read at address  0x05020E40 (0x3ffaefe0e40): 0x00000000
    Read at address  0x05020E44 (0x3ff982d0e44): 0x00000000
    Read at address  0x05020E48 (0x3ffa48c0e48): 0x00000000
    Read at address  0x05020E4C (0x3ffada20e4c): 0x00000000
    Read at address  0x05020E50 (0x3ffae760e50): 0x00000000
    Read at address  0x05020E54 (0x3ff88f40e54): 0x00000000
    Read at address  0x05020E58 (0x3ffade10e58): 0x00000000
    Read at address  0x05020E5C (0x3ff8c7e0e5c): 0x00000000
    Read at address  0x05020E60 (0x3ff803c0e60): 0x00000000
    Read at address  0x05020E64 (0x3ffaa910e64): 0x00000000
    Read at address  0x05020E68 (0x3ff9e370e68): 0x00000000
    Read at address  0x05020E6C (0x3ffbc4a0e6c): 0x00000000
    Read at address  0x05020E70 (0x3ff82c60e70): 0x00000000
    Read at address  0x05020E74 (0x3ffb2cf0e74): 0x00000000
    Read at address  0x05020E78 (0x3ffaf8a0e78): 0x00000000
    Read at address  0x05020E7C (0x3ffa6780e7c): 0x00000000
    Read at address  0x05020E80 (0x3ffa2bb0e80): 0x00000000
    Read at address  0x05020E84 (0x3ffba7c0e84): 0x00000000
    Read at address  0x05020E88 (0x3ffa9820e88): 0x00000000
    Read at address  0x05020E8C (0x3ff9e3d0e8c): 0x00000000
    Read at address  0x05020E90 (0x3ff96ad0e90): 0x00000000
    Read at address  0x05020E94 (0x3ff9f390e94): 0x00000000
    Read at address  0x05020E98 (0x3ffaa0f0e98): 0x00000000
    Read at address  0x05020E9C (0x3ffb0420e9c): 0x00000000
    Read at address  0x05020EA0 (0x3ff86940ea0): 0x00000000
    Read at address  0x05020EA4 (0x3ffb3a20ea4): 0x00000000
    Read at address  0x05020EA8 (0x3ff9bc20ea8): 0x00000000
    Read at address  0x05020EAC (0x3ff8da80eac): 0x00000000
    Read at address  0x05020EB0 (0x3ffa5a70eb0): 0x00000000
    Read at address  0x05020EB4 (0x3ff85ea0eb4): 0x00000000
    Read at address  0x05020EB8 (0x3ffb4e40eb8): 0x00000000
    Read at address  0x05020EBC (0x3ffa3660ebc): 0x00000000
    Read at address  0x05020EC0 (0x3ff9a8e0ec0): 0x00000000
    Read at address  0x05020EC4 (0x3ffb22e0ec4): 0x00000000
    Read at address  0x05020EC8 (0x3ff84860ec8): 0x00000000
    Read at address  0x05020ECC (0x3ffa6570ecc): 0x00000000
    Read at address  0x05020ED0 (0x3ff9f850ed0): 0x00000000
    Read at address  0x05020ED4 (0x3ffbb8a0ed4): 0x00000000
    Read at address  0x05020ED8 (0x3ff8ae30ed8): 0x00000000
    Read at address  0x05020EDC (0x3ffa1270edc): 0x00000000
    Read at address  0x05020EE0 (0x3ff9cd80ee0): 0x00000000
    Read at address  0x05020EE4 (0x3ffbcd20ee4): 0x00000000
    Read at address  0x05020EE8 (0x3ffba2d0ee8): 0x00000000
    Read at address  0x05020EEC (0x3ffae620eec): 0x00000000
    Read at address  0x05020EF0 (0x3ff7f760ef0): 0x00000000
    Read at address  0x05020EF4 (0x3ff8f3a0ef4): 0x00000000
    Read at address  0x05020EF8 (0x3ffaebf0ef8): 0x00000000
    Read at address  0x05020EFC (0x3ffbb9f0efc): 0x00000000
    Read at address  0x05020F00 (0x3ffaa310f00): 0x00000000
    Read at address  0x05020F04 (0x3ff91bc0f04): 0x00000000
    Read at address  0x05020F08 (0x3ff9cba0f08): 0x00000000
    Read at address  0x05020F0C (0x3ffad800f0c): 0x00000000
    Read at address  0x05020F10 (0x3ffaa9b0f10): 0x00000000
    Read at address  0x05020F14 (0x3ff97860f14): 0x00000000
    Read at address  0x05020F18 (0x3ffa3ce0f18): 0x00000000
    Read at address  0x05020F1C (0x3ffa8940f1c): 0x00000000
    Read at address  0x05020F20 (0x3ffbab50f20): 0x00000000
    Read at address  0x05020F24 (0x3ffbd1d0f24): 0x00000000
    Read at address  0x05020F28 (0x3ffb62c0f28): 0x00000000
    Read at address  0x05020F2C (0x3ffaa950f2c): 0x00000000
    Read at address  0x05020F30 (0x3ff91d40f30): 0x00000000
    Read at address  0x05020F34 (0x3ffa5c80f34): 0x00000000
    Read at address  0x05020F38 (0x3ff8c770f38): 0x00000000
    Read at address  0x05020F3C (0x3ff9e1b0f3c): 0x00000000
    Read at address  0x05020F40 (0x3ffa9a60f40): 0x00000000
    Read at address  0x05020F44 (0x3ffaabb0f44): 0x00000000
    Read at address  0x05020F48 (0x3ff84770f48): 0x00000000
    Read at address  0x05020F4C (0x3ff7ea50f4c): 0x00000000
    Read at address  0x05020F50 (0x3ff92bc0f50): 0x00000000
    Read at address  0x05020F54 (0x3ff91220f54): 0x00000000
    Read at address  0x05020F58 (0x3ff92340f58): 0x00000000
    Read at address  0x05020F5C (0x3ff88a90f5c): 0x00000000
    Read at address  0x05020F60 (0x3ffb0360f60): 0x00000000
    Read at address  0x05020F64 (0x3ffa13b0f64): 0x00000000
    Read at address  0x05020F68 (0x3ffb1fc0f68): 0x00000000
    Read at address  0x05020F6C (0x3ff94110f6c): 0x00000000
    Read at address  0x05020F70 (0x3ffba7f0f70): 0x00000000
    Read at address  0x05020F74 (0x3ffa6740f74): 0x00000000
    Read at address  0x05020F78 (0x3ff9c210f78): 0x00000000
    Read at address  0x05020F7C (0x3ff9a770f7c): 0x00000000
    Read at address  0x05020F80 (0x3ff83630f80): 0x00000000
    Read at address  0x05020F84 (0x3ff7f6e0f84): 0x00000000
    Read at address  0x05020F88 (0x3ffa0d80f88): 0x00000000
    Read at address  0x05020F8C (0x3ff80f30f8c): 0x00000000
    Read at address  0x05020F90 (0x3ff9f5d0f90): 0x00000000
    Read at address  0x05020F94 (0x3ffb83a0f94): 0x00000000
    Read at address  0x05020F98 (0x3ff8b5d0f98): 0x00000000
    Read at address  0x05020F9C (0x3ffa0140f9c): 0x00000000
    Read at address  0x05020FA0 (0x3ff922c0fa0): 0x00000000
    Read at address  0x05020FA4 (0x3ff8a850fa4): 0x00000000
    Read at address  0x05020FA8 (0x3ffab470fa8): 0x00000000
    Read at address  0x05020FAC (0x3ff9f290fac): 0x00000000
    Read at address  0x05020FB0 (0x3ff96ea0fb0): 0x00000000
    Read at address  0x05020FB4 (0x3ff9ec30fb4): 0x00000000
    Read at address  0x05020FB8 (0x3ff8aa70fb8): 0x00000000
    Read at address  0x05020FBC (0x3ffaf550fbc): 0x00000000
    Read at address  0x05020FC0 (0x3ffa6580fc0): 0x00000000
    Read at address  0x05020FC4 (0x3ffb92e0fc4): 0x00000000
    Read at address  0x05020FC8 (0x3ff7ed60fc8): 0x00000000
    Read at address  0x05020FCC (0x3ff95970fcc): 0x00000000
    Read at address  0x05020FD0 (0x3ff80410fd0): 0x00000000
    Read at address  0x05020FD4 (0x3ff85470fd4): 0x00000000
    Read at address  0x05020FD8 (0x3ffa6c20fd8): 0x00000000
    Read at address  0x05020FDC (0x3ffb09d0fdc): 0x00000000
    Read at address  0x05020FE0 (0x3ff7fe00fe0): 0x00000000
    Read at address  0x05020FE4 (0x3ff94ef0fe4): 0x00000000
    Read at address  0x05020FE8 (0x3ffb4410fe8): 0x00000000
    Read at address  0x05020FEC (0x3ffaf0d0fec): 0x00000000
    Read at address  0x05020FF0 (0x3ffa7b00ff0): 0x00000000
    Read at address  0x05020FF4 (0x3ffb57e0ff4): 0x00000000
    Read at address  0x05020FF8 (0x3ff87830ff8): 0x00000000
    Read at address  0x05020FFC (0x3ffa5f90ffc): 0x00000000
    root@megatron:/data#

    2)执行n‘t 添加 RTOS SerDes 配置,SGMII 未链接

    serdes2寄存器转储:

    root@megatron:/data# ./test.sh
    Read at address  0x05020000 (0x3ffaa440000): 0x00007364
    Read at address  0x05020004 (0x3ffa16b0004): 0x08010000
    Read at address  0x05020008 (0x3ffb1880008): 0x00000130
    Read at address  0x0502000C (0x3ff9813000c): 0x00000000
    Read at address  0x05020010 (0x3ff8ebe0010): 0x00160074
    Read at address  0x05020014 (0x3ff8cda0014): 0x63006666
    Read at address  0x05020018 (0x3ffa8ce0018): 0x02020120
    Read at address  0x0502001C (0x3ff9c92001c): 0x00000000
    Read at address  0x05020020 (0x3ff8af00020): 0x00041020
    Read at address  0x05020024 (0x3ff84340024): 0x00200000
    Read at address  0x05020028 (0x3ff85500028): 0x00000155
    Read at address  0x0502002C (0x3ff89d4002c): 0x00000000
    Read at address  0x05020030 (0x3ff9b6b0030): 0x00000000
    Read at address  0x05020034 (0x3ffa9ef0034): 0x00000000
    Read at address  0x05020038 (0x3ffb2910038): 0x00000000
    Read at address  0x0502003C (0x3ff8756003c): 0x00000000
    Read at address  0x05020040 (0x3ff9b4b0040): 0x00010003
    Read at address  0x05020044 (0x3ff99900044): 0x00000019
    Read at address  0x05020048 (0x3ffb9fb0048): 0x00000000
    Read at address  0x0502004C (0x3ff9fb3004c): 0x00010000
    Read at address  0x05020050 (0x3ff85860050): 0x00040001
    Read at address  0x05020054 (0x3ffa5b50054): 0x00010032
    Read at address  0x05020058 (0x3ff83730058): 0x000100D1
    Read at address  0x0502005C (0x3ffaf16005c): 0x00000000
    Read at address  0x05020060 (0x3ff88890060): 0x00040001
    Read at address  0x05020064 (0x3ff9c630064): 0x00010032
    Read at address  0x05020068 (0x3ffa73f0068): 0x000100D1
    Read at address  0x0502006C (0x3ffab07006c): 0x00000000
    Read at address  0x05020070 (0x3ff93b60070): 0x00000000
    Read at address  0x05020074 (0x3ffaaa50074): 0x00000000
    Read at address  0x05020078 (0x3ff852a0078): 0x00000000
    Read at address  0x0502007C (0x3ffa4c0007c): 0x00000000
    Read at address  0x05020080 (0x3ff8e870080): 0x01240101
    Read at address  0x05020084 (0x3ffb5fe0084): 0x0124003B
    Read at address  0x05020088 (0x3ffb92f0088): 0x0424003B
    Read at address  0x0502008C (0x3ff9c72008c): 0x012400A6
    Read at address  0x05020090 (0x3ff9d4c0090): 0x0424003B
    Read at address  0x05020094 (0x3ff9e0f0094): 0x000000A4
    Read at address  0x05020098 (0x3ffa8680098): 0x00000108
    Read at address  0x0502009C (0x3ff8cb4009c): 0x00000005
    Read at address  0x050200A0 (0x3ff86c300a0): 0x00000242
    Read at address  0x050200A4 (0x3ff9ae500a4): 0x00000000
    Read at address  0x050200A8 (0x3ffafbf00a8): 0x00000000
    Read at address  0x050200AC (0x3ffb4ac00ac): 0x00000000
    Read at address  0x050200B0 (0x3ffbd2100b0): 0x00000000
    Read at address  0x050200B4 (0x3ff94c500b4): 0x00000000
    Read at address  0x050200B8 (0x3ff9f6a00b8): 0x00030000
    Read at address  0x050200BC (0x3ffbe1600bc): 0x00000000
    Read at address  0x050200C0 (0x3ffb35e00c0): 0x00000000
    Read at address  0x050200C4 (0x3ff876700c4): 0x00000000
    Read at address  0x050200C8 (0x3ff8e2f00c8): 0x007D007D
    Read at address  0x050200CC (0x3ffacf100cc): 0x00000000
    Read at address  0x050200D0 (0x3ff809400d0): 0x00000000
    Read at address  0x050200D4 (0x3ffa99900d4): 0x00000000
    Read at address  0x050200D8 (0x3ffb9f200d8): 0x00000000
    Read at address  0x050200DC (0x3ffba4800dc): 0x00000000
    Read at address  0x050200E0 (0x3ff995400e0): 0x00000000
    Read at address  0x050200E4 (0x3ff8bc600e4): 0x0000001F
    Read at address  0x050200E8 (0x3ff910400e8): 0x00070019
    Read at address  0x050200EC (0x3ffaca900ec): 0x00000000
    Read at address  0x050200F0 (0x3ffb4a000f0): 0x00000000
    Read at address  0x050200F4 (0x3ff90b800f4): 0x00000000
    Read at address  0x050200F8 (0x3ff81d000f8): 0x00000000
    Read at address  0x050200FC (0x3ff8d0900fc): 0x00000000
    Read at address  0x05020100 (0x3ffbaeb0100): 0x2028002A
    Read at address  0x05020104 (0x3ff86470104): 0x00000003
    Read at address  0x05020108 (0x3ff8c8b0108): 0x001003E8
    Read at address  0x0502010C (0x3ff93d2010c): 0x00000C5F
    Read at address  0x05020110 (0x3ff9ab60110): 0x00000C5F
    Read at address  0x05020114 (0x3ff8e520114): 0x00000000
    Read at address  0x05020118 (0x3ff95be0118): 0x00000000
    Read at address  0x0502011C (0x3ffb8eb011c): 0x00000000
    Read at address  0x05020120 (0x3ff9f920120): 0x00000000
    Read at address  0x05020124 (0x3ffb2a40124): 0x00000000
    Read at address  0x05020128 (0x3ff94180128): 0x001E4004
    Read at address  0x0502012C (0x3ffb53e012c): 0x0000000C
    Read at address  0x05020130 (0x3ffab0a0130): 0x00000002
    Read at address  0x05020134 (0x3ffab180134): 0x00000000
    Read at address  0x05020138 (0x3ff93080138): 0x000400C8
    Read at address  0x0502013C (0x3ffa9ba013c): 0x000300C8
    Read at address  0x05020140 (0x3ffae100140): 0x00000000
    Read at address  0x05020144 (0x3ff8b2b0144): 0x00000000
    Read at address  0x05020148 (0x3ff8bb40148): 0x00104004
    Read at address  0x0502014C (0x3ffb7dd014c): 0x00000010
    Read at address  0x05020150 (0x3ffa36d0150): 0x00000002
    Read at address  0x05020154 (0x3ffacb60154): 0x00000000
    Read at address  0x05020158 (0x3ffa7410158): 0x00000000
    Read at address  0x0502015C (0x3ffac59015c): 0x00000000
    Read at address  0x05020160 (0x3ff8bf60160): 0x00000000
    Read at address  0x05020164 (0x3ffa8150164): 0x00000000
    Read at address  0x05020168 (0x3ff8c820168): 0x00000000
    Read at address  0x0502016C (0x3ff8ec8016c): 0x00000000
    Read at address  0x05020170 (0x3ff9bf70170): 0x00000000
    Read at address  0x05020174 (0x3ffa7e10174): 0x00000000
    Read at address  0x05020178 (0x3ff835a0178): 0x00000000
    Read at address  0x0502017C (0x3ffbbf1017c): 0x00000000
    Read at address  0x05020180 (0x3ffa4140180): 0x2028002A
    Read at address  0x05020184 (0x3ff98230184): 0x00000003
    Read at address  0x05020188 (0x3ff8a6f0188): 0x001003E8
    Read at address  0x0502018C (0x3ff845f018c): 0x00000C5F
    Read at address  0x05020190 (0x3ffae6a0190): 0x00000C5F
    Read at address  0x05020194 (0x3ff91eb0194): 0x00000000
    Read at address  0x05020198 (0x3ffa2d10198): 0x00000000
    Read at address  0x0502019C (0x3ff8040019c): 0x00000000
    Read at address  0x050201A0 (0x3ff967c01a0): 0x00000000
    Read at address  0x050201A4 (0x3ffba8501a4): 0x00000000
    Read at address  0x050201A8 (0x3ffa71801a8): 0x001E4004
    Read at address  0x050201AC (0x3ff9c8401ac): 0x0000000C
    Read at address  0x050201B0 (0x3ff940201b0): 0x00000002
    Read at address  0x050201B4 (0x3ff89ed01b4): 0x00000000
    Read at address  0x050201B8 (0x3ffa59f01b8): 0x000400C8
    Read at address  0x050201BC (0x3ffa9ed01bc): 0x000300C8
    Read at address  0x050201C0 (0x3ffa48401c0): 0x00000000
    Read at address  0x050201C4 (0x3ffa27f01c4): 0x00000000
    Read at address  0x050201C8 (0x3ffa70001c8): 0x00000000
    Read at address  0x050201CC (0x3ff8ea601cc): 0x00000000
    Read at address  0x050201D0 (0x3ffabd501d0): 0x00000000
    Read at address  0x050201D4 (0x3ff861e01d4): 0x00000000
    Read at address  0x050201D8 (0x3ff826101d8): 0x00000000
    Read at address  0x050201DC (0x3ff83b201dc): 0x00000000
    Read at address  0x050201E0 (0x3ffbaba01e0): 0x00000000
    Read at address  0x050201E4 (0x3ffae4001e4): 0x00000000
    Read at address  0x050201E8 (0x3ff7f1201e8): 0x00000000
    Read at address  0x050201EC (0x3ff9f1a01ec): 0x00000000
    Read at address  0x050201F0 (0x3ffa33101f0): 0x00000000
    Read at address  0x050201F4 (0x3ffac3101f4): 0x00000000
    Read at address  0x050201F8 (0x3ffa78a01f8): 0x00000000
    Read at address  0x050201FC (0x3ffb8c501fc): 0x00000000
    Read at address  0x05020200 (0x3ffbbf60200): 0x00000000
    Read at address  0x05020204 (0x3ff82ed0204): 0x0000002D
    Read at address  0x05020208 (0x3ffb81d0208): 0x0006001E
    Read at address  0x0502020C (0x3ff865a020c): 0x00000000
    Read at address  0x05020210 (0x3ffa2200210): 0x00000000
    Read at address  0x05020214 (0x3ffbca10214): 0x0000802D
    Read at address  0x05020218 (0x3ff8f740218): 0x0006001E
    Read at address  0x0502021C (0x3ff808b021c): 0x00000000
    Read at address  0x05020220 (0x3ffba740220): 0x00000000
    Read at address  0x05020224 (0x3ff984a0224): 0x00000008
    Read at address  0x05020228 (0x3ff81700228): 0x000602EE
    Read at address  0x0502022C (0x3ff9ccc022c): 0x00000000
    Read at address  0x05020230 (0x3ffbe200230): 0x00000000
    Read at address  0x05020234 (0x3ff8fdf0234): 0x00000000
    Read at address  0x05020238 (0x3ff99a40238): 0x00000000
    Read at address  0x0502023C (0x3ff9d48023c): 0x00000000
    Read at address  0x05020240 (0x3ff880a0240): 0x101E0000
    Read at address  0x05020244 (0x3ff89f20244): 0x00000001
    Read at address  0x05020248 (0x3ffb5ff0248): 0x00020006
    Read at address  0x0502024C (0x3ff8665024c): 0x0000000E
    Read at address  0x05020250 (0x3ffb8420250): 0x0000012B
    Read at address  0x05020254 (0x3ffa7d50254): 0x00000000
    Read at address  0x05020258 (0x3ffa3880258): 0x00000000
    Read at address  0x0502025C (0x3ffb3ee025c): 0x00000000
    Read at address  0x05020260 (0x3ff9ddf0260): 0x00000000
    Read at address  0x05020264 (0x3ffa6680264): 0x00000000
    Read at address  0x05020268 (0x3ffa1050268): 0x00000000
    Read at address  0x0502026C (0x3ff81a2026c): 0x00000000
    Read at address  0x05020270 (0x3ff8bd40270): 0x00000000
    Read at address  0x05020274 (0x3ff8d450274): 0x00000000
    Read at address  0x05020278 (0x3ff98440278): 0x00000000
    Read at address  0x0502027C (0x3ff8fb0027c): 0x00000000
    Read at address  0x05020280 (0x3ff86470280): 0x00000000
    Read at address  0x05020284 (0x3ffb7bd0284): 0x00000000
    Read at address  0x05020288 (0x3ffa5870288): 0x00000000
    Read at address  0x0502028C (0x3ffbd67028c): 0x00000000
    Read at address  0x05020290 (0x3ffb4ad0290): 0x00000000
    Read at address  0x05020294 (0x3ff884a0294): 0x00000000
    Read at address  0x05020298 (0x3ff848b0298): 0x00000000
    Read at address  0x0502029C (0x3ff8ca3029c): 0x00000000
    Read at address  0x050202A0 (0x3ffba9d02a0): 0x00000000
    Read at address  0x050202A4 (0x3ffad5602a4): 0x00000000
    Read at address  0x050202A8 (0x3ffb38b02a8): 0x00000000
    Read at address  0x050202AC (0x3ffb95202ac): 0x00000000
    Read at address  0x050202B0 (0x3ff940902b0): 0x00000000
    Read at address  0x050202B4 (0x3ff859402b4): 0x00000000
    Read at address  0x050202B8 (0x3ff8f6c02b8): 0x00000000
    Read at address  0x050202BC (0x3ff9dd902bc): 0x00000000
    Read at address  0x050202C0 (0x3ffa91702c0): 0x00000000
    Read at address  0x050202C4 (0x3ffa37102c4): 0x00000000
    Read at address  0x050202C8 (0x3ff85a302c8): 0x00000000
    Read at address  0x050202CC (0x3ff8b8202cc): 0x00000000
    Read at address  0x050202D0 (0x3ffbb4e02d0): 0x00000000
    Read at address  0x050202D4 (0x3ff812102d4): 0x00000000
    Read at address  0x050202D8 (0x3ffb31e02d8): 0x00000000
    Read at address  0x050202DC (0x3ffac3a02dc): 0x00000000
    Read at address  0x050202E0 (0x3ffa58e02e0): 0x00000000
    Read at address  0x050202E4 (0x3ffa61502e4): 0x00000000
    Read at address  0x050202E8 (0x3ffac2802e8): 0x00000000
    Read at address  0x050202EC (0x3ffa7d102ec): 0x00000000
    Read at address  0x050202F0 (0x3ffb4ca02f0): 0x00000000
    Read at address  0x050202F4 (0x3ff991d02f4): 0x00000000
    Read at address  0x050202F8 (0x3ffb23a02f8): 0x00000000
    Read at address  0x050202FC (0x3ff9c9902fc): 0x00000000
    Read at address  0x05020300 (0x3ff963d0300): 0x00000000
    Read at address  0x05020304 (0x3ff99090304): 0x00000000
    Read at address  0x05020308 (0x3ff971b0308): 0x00000000
    Read at address  0x0502030C (0x3ff8258030c): 0x00000000
    Read at address  0x05020310 (0x3ff97740310): 0x00000000
    Read at address  0x05020314 (0x3ff97d90314): 0x00000000
    Read at address  0x05020318 (0x3ffb4c60318): 0x00000000
    Read at address  0x0502031C (0x3ff8869031c): 0x00000000
    Read at address  0x05020320 (0x3ff8dd30320): 0x00000000
    Read at address  0x05020324 (0x3ff97e80324): 0x00000000
    Read at address  0x05020328 (0x3ffb2eb0328): 0x00000000
    Read at address  0x0502032C (0x3ff9857032c): 0x00000000
    Read at address  0x05020330 (0x3ffb07f0330): 0x00000000
    Read at address  0x05020334 (0x3ff882f0334): 0x00000000
    Read at address  0x05020338 (0x3ff8db60338): 0x00000000
    Read at address  0x0502033C (0x3ff96cc033c): 0x00000000
    Read at address  0x05020340 (0x3ffa1ff0340): 0x06011012
    Read at address  0x05020344 (0x3ff85980344): 0x000F0000
    Read at address  0x05020348 (0x3ffa15d0348): 0x08080028
    Read at address  0x0502034C (0x3ff8714034c): 0x00010000
    Read at address  0x05020350 (0x3ff97cb0350): 0x00000000
    Read at address  0x05020354 (0x3ffbaf10354): 0x00000000
    Read at address  0x05020358 (0x3ff83560358): 0x00000000
    Read at address  0x0502035C (0x3ff9022035c): 0x00000000
    Read at address  0x05020360 (0x3ff9cde0360): 0x04001012
    Read at address  0x05020364 (0x3ffb3960364): 0x000F0000
    Read at address  0x05020368 (0x3ff9ffe0368): 0x08080128
    Read at address  0x0502036C (0x3ff96d9036c): 0x00010000
    Read at address  0x05020370 (0x3ffb25b0370): 0x00000000
    Read at address  0x05020374 (0x3ffbd010374): 0x00000000
    Read at address  0x05020378 (0x3ff9db60378): 0x00000000
    Read at address  0x0502037C (0x3ff964b037c): 0x00000000
    Read at address  0x05020380 (0x3ffa62a0380): 0x04001012
    Read at address  0x05020384 (0x3ff8c470384): 0x000F0000
    Read at address  0x05020388 (0x3ff9cd10388): 0x08080028
    Read at address  0x0502038C (0x3ffb69e038c): 0x00010000
    Read at address  0x05020390 (0x3ff936f0390): 0x00000000
    Read at address  0x05020394 (0x3ffb2f20394): 0x00000000
    Read at address  0x05020398 (0x3ff957d0398): 0x00000000
    Read at address  0x0502039C (0x3ff7fd5039c): 0x00000000
    Read at address  0x050203A0 (0x3ffa0b503a0): 0x00000000
    Read at address  0x050203A4 (0x3ff9b4703a4): 0x00000000
    Read at address  0x050203A8 (0x3ffb52b03a8): 0x00000000
    Read at address  0x050203AC (0x3ffad3d03ac): 0x00000000
    Read at address  0x050203B0 (0x3ffb6e103b0): 0x00000000
    Read at address  0x050203B4 (0x3ff8eab03b4): 0x00000000
    Read at address  0x050203B8 (0x3ff7e9703b8): 0x00000000
    Read at address  0x050203BC (0x3ff907d03bc): 0x00000000
    Read at address  0x050203C0 (0x3ffb5be03c0): 0x36000E05
    Read at address  0x050203C4 (0x3ffa48d03c4): 0x00000000
    Read at address  0x050203C8 (0x3ff8fb003c8): 0x00220000
    Read at address  0x050203CC (0x3ff97e803cc): 0x000C2D09
    Read at address  0x050203D0 (0x3ffa23d03d0): 0x00000000
    Read at address  0x050203D4 (0x3ffbb5503d4): 0x00000000
    Read at address  0x050203D8 (0x3ff830f03d8): 0x01FF0011
    Read at address  0x050203DC (0x3ffbcdf03dc): 0x00000000
    Read at address  0x050203E0 (0x3ff9ac003e0): 0x00000000
    Read at address  0x050203E4 (0x3ffb28503e4): 0x00000000
    Read at address  0x050203E8 (0x3ff852903e8): 0x00000000
    Read at address  0x050203EC (0x3ff8d1d03ec): 0x00000000
    Read at address  0x050203F0 (0x3ffb48003f0): 0x00000000
    Read at address  0x050203F4 (0x3ffac1003f4): 0x00000000
    Read at address  0x050203F8 (0x3ff8a4403f8): 0x00000000
    Read at address  0x050203FC (0x3ffb4c703fc): 0x00000000
    Read at address  0x05020400 (0x3ffb0150400): 0x698B4803
    Read at address  0x05020404 (0x3ff8a9c0404): 0x00000000
    Read at address  0x05020408 (0x3ffb6fd0408): 0x18100000
    Read at address  0x0502040C (0x3ffb0dc040c): 0xA2800000
    Read at address  0x05020410 (0x3ff93190410): 0x00000000
    Read at address  0x05020414 (0x3ffb3540414): 0x00000000
    Read at address  0x05020418 (0x3ff8cb00418): 0x00000000
    Read at address  0x0502041C (0x3ffb48c041c): 0x00000000
    Read at address  0x05020420 (0x3ffaf9c0420): 0x00000000
    Read at address  0x05020424 (0x3ff90310424): 0x00000000
    Read at address  0x05020428 (0x3ff8f4f0428): 0x00000000
    Read at address  0x0502042C (0x3ff8804042c): 0x00000000
    Read at address  0x05020430 (0x3ff9da40430): 0x00000000
    Read at address  0x05020434 (0x3ff8a350434): 0x00000000
    Read at address  0x05020438 (0x3ff9dcc0438): 0x00000000
    Read at address  0x0502043C (0x3ffa04a043c): 0x00000000
    Read at address  0x05020440 (0x3ffaa350440): 0x00000000
    Read at address  0x05020444 (0x3ff83320444): 0x00000000
    Read at address  0x05020448 (0x3ffb7250448): 0x00000000
    Read at address  0x0502044C (0x3ffb05a044c): 0x00000000
    Read at address  0x05020450 (0x3ff7f020450): 0x00000000
    Read at address  0x05020454 (0x3ff96100454): 0x00000000
    Read at address  0x05020458 (0x3ffae9f0458): 0x00000000
    Read at address  0x0502045C (0x3ff935f045c): 0x00000000
    Read at address  0x05020460 (0x3ffab630460): 0x00000000
    Read at address  0x05020464 (0x3ffba650464): 0x00000000
    Read at address  0x05020468 (0x3ffab4c0468): 0x00000000
    Read at address  0x0502046C (0x3ffa3bf046c): 0x00000000
    Read at address  0x05020470 (0x3ff891c0470): 0x00000000
    Read at address  0x05020474 (0x3ff97840474): 0x00000000
    Read at address  0x05020478 (0x3ffb7af0478): 0x00000000
    Read at address  0x0502047C (0x3ffb06f047c): 0x00000000
    Read at address  0x05020480 (0x3ffb6c90480): 0x70000000
    Read at address  0x05020484 (0x3ffba510484): 0x00010002
    Read at address  0x05020488 (0x3ff849e0488): 0x00000105
    Read at address  0x0502048C (0x3ffa31d048c): 0x00000002
    Read at address  0x05020490 (0x3ff87360490): 0x00000000
    Read at address  0x05020494 (0x3ff90280494): 0x00000000
    Read at address  0x05020498 (0x3ffa9960498): 0x00000000
    Read at address  0x0502049C (0x3ff9af0049c): 0x00000000
    Read at address  0x050204A0 (0x3ffaaf304a0): 0x00000000
    Read at address  0x050204A4 (0x3ff947104a4): 0x00000000
    Read at address  0x050204A8 (0x3ff890e04a8): 0x00000000
    Read at address  0x050204AC (0x3ff8a8e04ac): 0x00000000
    Read at address  0x050204B0 (0x3ffb66104b0): 0x00000000
    Read at address  0x050204B4 (0x3ffb83f04b4): 0x00000000
    Read at address  0x050204B8 (0x3ffa1e104b8): 0x00000000
    Read at address  0x050204BC (0x3ffa1e304bc): 0x00000000
    Read at address  0x050204C0 (0x3ffbd1304c0): 0x70000000
    Read at address  0x050204C4 (0x3ff8d9f04c4): 0x00010002
    Read at address  0x050204C8 (0x3ffa6c404c8): 0x00000105
    Read at address  0x050204CC (0x3ffbe5204cc): 0x00000002
    Read at address  0x050204D0 (0x3ff836f04d0): 0x00000000
    Read at address  0x050204D4 (0x3ff8f8804d4): 0x00000000
    Read at address  0x050204D8 (0x3ff983004d8): 0x00000000
    Read at address  0x050204DC (0x3ffa17804dc): 0x00000000
    Read at address  0x050204E0 (0x3ffa04704e0): 0x00000000
    Read at address  0x050204E4 (0x3ff8cd604e4): 0x00000000
    Read at address  0x050204E8 (0x3ff906504e8): 0x00000000
    Read at address  0x050204EC (0x3ff9a6504ec): 0x00000000
    Read at address  0x050204F0 (0x3ffaa1704f0): 0x00000000
    Read at address  0x050204F4 (0x3ff963c04f4): 0x00000000
    Read at address  0x050204F8 (0x3ff93f404f8): 0x00000000
    Read at address  0x050204FC (0x3ffb6e704fc): 0x00000000
    Read at address  0x05020500 (0x3ff93550500): 0x70000000
    Read at address  0x05020504 (0x3ff888e0504): 0x00010002
    Read at address  0x05020508 (0x3ff85660508): 0x00000109
    Read at address  0x0502050C (0x3ffa22f050c): 0x00000002
    Read at address  0x05020510 (0x3ff98cf0510): 0x00000000
    Read at address  0x05020514 (0x3ffa4c60514): 0x00000000
    Read at address  0x05020518 (0x3ffb1fd0518): 0x00000000
    Read at address  0x0502051C (0x3ff8921051c): 0x00000000
    Read at address  0x05020520 (0x3ffad1b0520): 0x00000000
    Read at address  0x05020524 (0x3ff993b0524): 0x00000000
    Read at address  0x05020528 (0x3ff9ba70528): 0x00000000
    Read at address  0x0502052C (0x3ff7fa0052c): 0x00000000
    Read at address  0x05020530 (0x3ffa5f40530): 0x00000000
    Read at address  0x05020534 (0x3ffbdde0534): 0x00000000
    Read at address  0x05020538 (0x3ffbd0b0538): 0x00000000
    Read at address  0x0502053C (0x3ffba44053c): 0x00000000
    Read at address  0x05020540 (0x3ff85d80540): 0x70000000
    Read at address  0x05020544 (0x3ff91700544): 0x00010002
    Read at address  0x05020548 (0x3ff88ff0548): 0x00000000
    Read at address  0x0502054C (0x3ff8081054c): 0x00000002
    Read at address  0x05020550 (0x3ffa9e90550): 0x00000000
    Read at address  0x05020554 (0x3ffa1610554): 0x00000000
    Read at address  0x05020558 (0x3ff94040558): 0x00000000
    Read at address  0x0502055C (0x3ffb83b055c): 0x00000000
    Read at address  0x05020560 (0x3ff82cc0560): 0x00000000
    Read at address  0x05020564 (0x3ff86f20564): 0x00000000
    Read at address  0x05020568 (0x3ffac700568): 0x00000000
    Read at address  0x0502056C (0x3ff8515056c): 0x00000000
    Read at address  0x05020570 (0x3ff8bbc0570): 0x00000000
    Read at address  0x05020574 (0x3ff8c070574): 0x00000000
    Read at address  0x05020578 (0x3ff811f0578): 0x00000000
    Read at address  0x0502057C (0x3ffa78f057c): 0x00000000
    Read at address  0x05020580 (0x3ff925a0580): 0x00000000
    Read at address  0x05020584 (0x3ffbb3c0584): 0x00000000
    Read at address  0x05020588 (0x3ff94a40588): 0x00000000
    Read at address  0x0502058C (0x3ffb39e058c): 0x00000000
    Read at address  0x05020590 (0x3ffb0790590): 0x00000000
    Read at address  0x05020594 (0x3ffbaf50594): 0x00000000
    Read at address  0x05020598 (0x3ff85590598): 0x00000000
    Read at address  0x0502059C (0x3ffa8cc059c): 0x00000000
    Read at address  0x050205A0 (0x3ff833705a0): 0x00000000
    Read at address  0x050205A4 (0x3ff934905a4): 0x00000000
    Read at address  0x050205A8 (0x3ff8d4d05a8): 0x00000000
    Read at address  0x050205AC (0x3ff8d8305ac): 0x00000000
    Read at address  0x050205B0 (0x3ff9d1305b0): 0x00000000
    Read at address  0x050205B4 (0x3ffad7c05b4): 0x00000000
    Read at address  0x050205B8 (0x3ffb24805b8): 0x00000000
    Read at address  0x050205BC (0x3ff9c9105bc): 0x00000000
    Read at address  0x050205C0 (0x3ffa00105c0): 0x00000000
    Read at address  0x050205C4 (0x3ff9aec05c4): 0x00000000
    Read at address  0x050205C8 (0x3ffa59405c8): 0x00000000
    Read at address  0x050205CC (0x3ff905805cc): 0x00000000
    Read at address  0x050205D0 (0x3ffa91005d0): 0x00000000
    Read at address  0x050205D4 (0x3ffa40c05d4): 0x00000000
    Read at address  0x050205D8 (0x3ffa61e05d8): 0x00000000
    Read at address  0x050205DC (0x3ffa33d05dc): 0x00000000
    Read at address  0x050205E0 (0x3ffacc505e0): 0x00000000
    Read at address  0x050205E4 (0x3ffaa6c05e4): 0x00000000
    Read at address  0x050205E8 (0x3ffba7e05e8): 0x00000000
    Read at address  0x050205EC (0x3ffa3eb05ec): 0x00000000
    Read at address  0x050205F0 (0x3ff99df05f0): 0x00000000
    Read at address  0x050205F4 (0x3ff9b8705f4): 0x00000000
    Read at address  0x050205F8 (0x3ffb6da05f8): 0x00000000
    Read at address  0x050205FC (0x3ffa97705fc): 0x00000000
    Read at address  0x05020600 (0x3ff848a0600): 0x00000000
    Read at address  0x05020604 (0x3ff990e0604): 0x00000000
    Read at address  0x05020608 (0x3ffa44d0608): 0x00000000
    Read at address  0x0502060C (0x3ff81f6060c): 0x00000000
    Read at address  0x05020610 (0x3ffa0570610): 0x00000000
    Read at address  0x05020614 (0x3ff94e20614): 0x00000000
    Read at address  0x05020618 (0x3ffa5920618): 0x00000000
    Read at address  0x0502061C (0x3ffb6bd061c): 0x00000000
    Read at address  0x05020620 (0x3ff92000620): 0x00000000
    Read at address  0x05020624 (0x3ffa1390624): 0x00000000
    Read at address  0x05020628 (0x3ffab9f0628): 0x00000000
    Read at address  0x0502062C (0x3ff8de8062c): 0x00000000
    Read at address  0x05020630 (0x3ff85d50630): 0x00000000
    Read at address  0x05020634 (0x3ff83d40634): 0x00000000
    Read at address  0x05020638 (0x3ff93a80638): 0x00000000
    Read at address  0x0502063C (0x3ffa393063c): 0x00000000
    Read at address  0x05020640 (0x3ff89ad0640): 0x00000000
    Read at address  0x05020644 (0x3ffa7e90644): 0x00000000
    Read at address  0x05020648 (0x3ffbbb30648): 0x00000000
    Read at address  0x0502064C (0x3ffb376064c): 0x00000000
    Read at address  0x05020650 (0x3ff83220650): 0x00000000
    Read at address  0x05020654 (0x3ffa9730654): 0x00000000
    Read at address  0x05020658 (0x3ffb8880658): 0x00000000
    Read at address  0x0502065C (0x3ffb871065c): 0x00000000
    Read at address  0x05020660 (0x3ffb1bb0660): 0x00000000
    Read at address  0x05020664 (0x3ffb5e10664): 0x00000000
    Read at address  0x05020668 (0x3ffbad70668): 0x00000000
    Read at address  0x0502066C (0x3ff92e9066c): 0x00000000
    Read at address  0x05020670 (0x3ffa4e60670): 0x00000000
    Read at address  0x05020674 (0x3ffa4090674): 0x00000000
    Read at address  0x05020678 (0x3ffa1c00678): 0x00000000
    Read at address  0x0502067C (0x3ff94a6067c): 0x00000000
    Read at address  0x05020680 (0x3ff7f340680): 0x00000000
    Read at address  0x05020684 (0x3ffacd20684): 0x00000000
    Read at address  0x05020688 (0x3ff8f3c0688): 0x00000000
    Read at address  0x0502068C (0x3ffb052068c): 0x00000000
    Read at address  0x05020690 (0x3ffb7190690): 0x00000000
    Read at address  0x05020694 (0x3ffb3580694): 0x00000000
    Read at address  0x05020698 (0x3ffb8e60698): 0x00000000
    Read at address  0x0502069C (0x3ff8d86069c): 0x00000000
    Read at address  0x050206A0 (0x3ffb4bf06a0): 0x00000000
    Read at address  0x050206A4 (0x3ff8ae206a4): 0x00000000
    Read at address  0x050206A8 (0x3ff911306a8): 0x00000000
    Read at address  0x050206AC (0x3ff9dea06ac): 0x00000000
    Read at address  0x050206B0 (0x3ff977f06b0): 0x00000000
    Read at address  0x050206B4 (0x3ffa08406b4): 0x00000000
    Read at address  0x050206B8 (0x3ffa33a06b8): 0x00000000
    Read at address  0x050206BC (0x3ff813c06bc): 0x00000000
    Read at address  0x050206C0 (0x3ff8e8206c0): 0x00000000
    Read at address  0x050206C4 (0x3ff9b8106c4): 0x00000000
    Read at address  0x050206C8 (0x3ff843606c8): 0x00000000
    Read at address  0x050206CC (0x3ff9e2e06cc): 0x00000000
    Read at address  0x050206D0 (0x3ffb7f606d0): 0x00000000
    Read at address  0x050206D4 (0x3ff92c806d4): 0x00000000
    Read at address  0x050206D8 (0x3ffbcfe06d8): 0x00000000
    Read at address  0x050206DC (0x3ffaa6b06dc): 0x00000000
    Read at address  0x050206E0 (0x3ffa77806e0): 0x00000000
    Read at address  0x050206E4 (0x3ffbb1206e4): 0x00000000
    Read at address  0x050206E8 (0x3ff8deb06e8): 0x00000000
    Read at address  0x050206EC (0x3ff873f06ec): 0x00000000
    Read at address  0x050206F0 (0x3ffb0e006f0): 0x00000000
    Read at address  0x050206F4 (0x3ffb52a06f4): 0x00000000
    Read at address  0x050206F8 (0x3ff90c406f8): 0x00000000
    Read at address  0x050206FC (0x3ffbb0106fc): 0x00000000
    Read at address  0x05020700 (0x3ff7faa0700): 0x00000000
    Read at address  0x05020704 (0x3ff9be00704): 0x00000000
    Read at address  0x05020708 (0x3ffba220708): 0x00000000
    Read at address  0x0502070C (0x3ffb918070c): 0x00000000
    Read at address  0x05020710 (0x3ff8f050710): 0x00000000
    Read at address  0x05020714 (0x3ffaa820714): 0x00000000
    Read at address  0x05020718 (0x3ff9f6f0718): 0x00000000
    Read at address  0x0502071C (0x3ff8b2e071c): 0x00000000
    Read at address  0x05020720 (0x3ffbbaf0720): 0x00000000
    Read at address  0x05020724 (0x3ff9a0d0724): 0x00000000
    Read at address  0x05020728 (0x3ffaea00728): 0x00000000
    Read at address  0x0502072C (0x3ffb8d5072c): 0x00000000
    Read at address  0x05020730 (0x3ffadd10730): 0x00000000
    Read at address  0x05020734 (0x3ff83830734): 0x00000000
    Read at address  0x05020738 (0x3ff9f760738): 0x00000000
    Read at address  0x0502073C (0x3ffb72b073c): 0x00000000
    Read at address  0x05020740 (0x3ff9ac10740): 0x00000000
    Read at address  0x05020744 (0x3ff91a80744): 0x00000000
    Read at address  0x05020748 (0x3ff8cf50748): 0x00000000
    Read at address  0x0502074C (0x3ff99ec074c): 0x00000000
    Read at address  0x05020750 (0x3ff80f90750): 0x00000000
    Read at address  0x05020754 (0x3ff87fb0754): 0x00000000
    Read at address  0x05020758 (0x3ffa7210758): 0x00000000
    Read at address  0x0502075C (0x3ffb65c075c): 0x00000000
    Read at address  0x05020760 (0x3ff8c8a0760): 0x00000000
    Read at address  0x05020764 (0x3ff9d5b0764): 0x00000000
    Read at address  0x05020768 (0x3ffbe5b0768): 0x00000000
    Read at address  0x0502076C (0x3ffaa23076c): 0x00000000
    Read at address  0x05020770 (0x3ff90790770): 0x00000000
    Read at address  0x05020774 (0x3ff867d0774): 0x00000000
    Read at address  0x05020778 (0x3ff87060778): 0x00000000
    Read at address  0x0502077C (0x3ffaee2077c): 0x00000000
    Read at address  0x05020780 (0x3ff95db0780): 0x00000000
    Read at address  0x05020784 (0x3ff8d540784): 0x00000000
    Read at address  0x05020788 (0x3ff9acd0788): 0x00000000
    Read at address  0x0502078C (0x3ff8a5a078c): 0x00000000
    Read at address  0x05020790 (0x3ff7e960790): 0x00000000
    Read at address  0x05020794 (0x3ff80e00794): 0x00000000
    Read at address  0x05020798 (0x3ff91750798): 0x00000000
    Read at address  0x0502079C (0x3ff8b43079c): 0x00000000
    Read at address  0x050207A0 (0x3ff9a8e07a0): 0x00000000
    Read at address  0x050207A4 (0x3ff865f07a4): 0x00000000
    Read at address  0x050207A8 (0x3ffa47707a8): 0x00000000
    Read at address  0x050207AC (0x3ff90b007ac): 0x00000000
    Read at address  0x050207B0 (0x3ffa0b007b0): 0x00000000
    Read at address  0x050207B4 (0x3ff7f3107b4): 0x00000000
    Read at address  0x050207B8 (0x3ff8ef607b8): 0x00000000
    Read at address  0x050207BC (0x3ff8a9807bc): 0x00000000
    Read at address  0x050207C0 (0x3ff93c707c0): 0x00000000
    Read at address  0x050207C4 (0x3ffa90107c4): 0x00000000
    Read at address  0x050207C8 (0x3ff87d307c8): 0x00000000
    Read at address  0x050207CC (0x3ffa4c307cc): 0x00000000
    Read at address  0x050207D0 (0x3ffa56707d0): 0x00000000
    Read at address  0x050207D4 (0x3ff85e707d4): 0x00000000
    Read at address  0x050207D8 (0x3ffb58c07d8): 0x00000000
    Read at address  0x050207DC (0x3ffb99507dc): 0x00000000
    Read at address  0x050207E0 (0x3ffb35d07e0): 0x00000000
    Read at address  0x050207E4 (0x3ff974f07e4): 0x00000000
    Read at address  0x050207E8 (0x3ff9b5107e8): 0x00000000
    Read at address  0x050207EC (0x3ff9a5107ec): 0x00000000
    Read at address  0x050207F0 (0x3ffb81d07f0): 0x00000000
    Read at address  0x050207F4 (0x3ff9eb907f4): 0x00000000
    Read at address  0x050207F8 (0x3ffa22907f8): 0x00000000
    Read at address  0x050207FC (0x3ff957d07fc): 0x00000000
    Read at address  0x05020800 (0x3ffa0ed0800): 0x00000000
    Read at address  0x05020804 (0x3ffa4ab0804): 0x00000000
    Read at address  0x05020808 (0x3ffa43a0808): 0x00000000
    Read at address  0x0502080C (0x3ffa8c2080c): 0x00000000
    Read at address  0x05020810 (0x3ff9c090810): 0x00000000
    Read at address  0x05020814 (0x3ff8ba90814): 0x00000000
    Read at address  0x05020818 (0x3ff9a460818): 0x00000000
    Read at address  0x0502081C (0x3ff7e9b081c): 0x00000000
    Read at address  0x05020820 (0x3ff93bd0820): 0x00000000
    Read at address  0x05020824 (0x3ff83370824): 0x00000000
    Read at address  0x05020828 (0x3ff8e860828): 0x00000000
    Read at address  0x0502082C (0x3ffb48c082c): 0x00000000
    Read at address  0x05020830 (0x3ff8dc90830): 0x00000000
    Read at address  0x05020834 (0x3ffa53d0834): 0x00000000
    Read at address  0x05020838 (0x3ffae440838): 0x00000000
    Read at address  0x0502083C (0x3ffa8ea083c): 0x00000000
    Read at address  0x05020840 (0x3ff97ed0840): 0x00000000
    Read at address  0x05020844 (0x3ff89910844): 0x00000000
    Read at address  0x05020848 (0x3ff96f30848): 0x00000000
    Read at address  0x0502084C (0x3ff9ea5084c): 0x00000000
    Read at address  0x05020850 (0x3ffb6a40850): 0x00000000
    Read at address  0x05020854 (0x3ff992e0854): 0x00000000
    Read at address  0x05020858 (0x3ff80be0858): 0x00000000
    Read at address  0x0502085C (0x3ffa6ab085c): 0x00000000
    Read at address  0x05020860 (0x3ffb1bf0860): 0x00000000
    Read at address  0x05020864 (0x3ff981f0864): 0x00000000
    Read at address  0x05020868 (0x3ff94f60868): 0x00000000
    Read at address  0x0502086C (0x3ff8ae3086c): 0x00000000
    Read at address  0x05020870 (0x3ffa2c20870): 0x00000000
    Read at address  0x05020874 (0x3ffa66e0874): 0x00000000
    Read at address  0x05020878 (0x3ff902d0878): 0x00000000
    Read at address  0x0502087C (0x3ff9586087c): 0x00000000
    Read at address  0x05020880 (0x3ff82bd0880): 0x00000000
    Read at address  0x05020884 (0x3ff9d6f0884): 0x00000000
    Read at address  0x05020888 (0x3ffa7e30888): 0x00000000
    Read at address  0x0502088C (0x3ff9f56088c): 0x00000000
    Read at address  0x05020890 (0x3ffa0ec0890): 0x00000000
    Read at address  0x05020894 (0x3ff95ce0894): 0x00000000
    Read at address  0x05020898 (0x3ffb5910898): 0x00000000
    Read at address  0x0502089C (0x3ffa2f5089c): 0x00000000
    Read at address  0x050208A0 (0x3ff88ba08a0): 0x00000000
    Read at address  0x050208A4 (0x3ff9ba308a4): 0x00000000
    Read at address  0x050208A8 (0x3ff838408a8): 0x00000000
    Read at address  0x050208AC (0x3ffa56b08ac): 0x00000000
    Read at address  0x050208B0 (0x3ffa29108b0): 0x00000000
    Read at address  0x050208B4 (0x3ff7f0808b4): 0x00000000
    Read at address  0x050208B8 (0x3ffbd8408b8): 0x00000000
    Read at address  0x050208BC (0x3ffa78808bc): 0x00000000
    Read at address  0x050208C0 (0x3ff8b6d08c0): 0x00000000
    Read at address  0x050208C4 (0x3ffa65208c4): 0x00000000
    Read at address  0x050208C8 (0x3ff862408c8): 0x00000000
    Read at address  0x050208CC (0x3ff875108cc): 0x00000000
    Read at address  0x050208D0 (0x3ff8e5f08d0): 0x00000000
    Read at address  0x050208D4 (0x3ff902208d4): 0x00000000
    Read at address  0x050208D8 (0x3ff83f008d8): 0x00000000
    Read at address  0x050208DC (0x3ff926808dc): 0x00000000
    Read at address  0x050208E0 (0x3ff905f08e0): 0x00000000
    Read at address  0x050208E4 (0x3ff930e08e4): 0x00000000
    Read at address  0x050208E8 (0x3ffac6b08e8): 0x00000000
    Read at address  0x050208EC (0x3ff89a208ec): 0x00000000
    Read at address  0x050208F0 (0x3ff9d0f08f0): 0x00000000
    Read at address  0x050208F4 (0x3ffb64f08f4): 0x00000000
    Read at address  0x050208F8 (0x3ff842c08f8): 0x00000000
    Read at address  0x050208FC (0x3ffa07008fc): 0x00000000
    Read at address  0x05020900 (0x3ff92e90900): 0x00000000
    Read at address  0x05020904 (0x3ff80280904): 0x00000000
    Read at address  0x05020908 (0x3ff805b0908): 0x00000000
    Read at address  0x0502090C (0x3ff9e1d090c): 0x00000000
    Read at address  0x05020910 (0x3ffa07a0910): 0x00000000
    Read at address  0x05020914 (0x3ff9b450914): 0x00000000
    Read at address  0x05020918 (0x3ff85010918): 0x00000000
    Read at address  0x0502091C (0x3ffb8cc091c): 0x00000000
    Read at address  0x05020920 (0x3ffaf280920): 0x00000000
    Read at address  0x05020924 (0x3ffa41a0924): 0x00000000
    Read at address  0x05020928 (0x3ffb8b90928): 0x00000000
    Read at address  0x0502092C (0x3ffa707092c): 0x00000000
    Read at address  0x05020930 (0x3ff91570930): 0x00000000
    Read at address  0x05020934 (0x3ffa9370934): 0x00000000
    Read at address  0x05020938 (0x3ff8ced0938): 0x00000000
    Read at address  0x0502093C (0x3ffa275093c): 0x00000000
    Read at address  0x05020940 (0x3ff9de60940): 0x00000000
    Read at address  0x05020944 (0x3ff9f010944): 0x00000000
    Read at address  0x05020948 (0x3ffabdb0948): 0x00000000
    Read at address  0x0502094C (0x3ff7f04094c): 0x00000000
    Read at address  0x05020950 (0x3ff9c9a0950): 0x00000000
    Read at address  0x05020954 (0x3ff96ae0954): 0x00000000
    Read at address  0x05020958 (0x3ffb66f0958): 0x00000000
    Read at address  0x0502095C (0x3ffba27095c): 0x00000000
    Read at address  0x05020960 (0x3ffb5db0960): 0x00000000
    Read at address  0x05020964 (0x3ffba7e0964): 0x00000000
    Read at address  0x05020968 (0x3ff91550968): 0x00000000
    Read at address  0x0502096C (0x3ff8b7c096c): 0x00000000
    Read at address  0x05020970 (0x3ffa4d70970): 0x00000000
    Read at address  0x05020974 (0x3ff9d5a0974): 0x00000000
    Read at address  0x05020978 (0x3ffb9330978): 0x00000000
    Read at address  0x0502097C (0x3ffba46097c): 0x00000000
    Read at address  0x05020980 (0x3ff937c0980): 0x00000000
    Read at address  0x05020984 (0x3ffb3a10984): 0x00000000
    Read at address  0x05020988 (0x3ff9daf0988): 0x00000000
    Read at address  0x0502098C (0x3ffb688098c): 0x00000000
    Read at address  0x05020990 (0x3ffb0750990): 0x00000000
    Read at address  0x05020994 (0x3ff99120994): 0x00000000
    Read at address  0x05020998 (0x3ff7fe90998): 0x00000000
    Read at address  0x0502099C (0x3ff8769099c): 0x00000000
    Read at address  0x050209A0 (0x3ffb5b409a0): 0x00000000
    Read at address  0x050209A4 (0x3ffb98509a4): 0x00000000
    Read at address  0x050209A8 (0x3ff9f7809a8): 0x00000000
    Read at address  0x050209AC (0x3ffa3bd09ac): 0x00000000
    Read at address  0x050209B0 (0x3ffbb5b09b0): 0x00000000
    Read at address  0x050209B4 (0x3ffaa2209b4): 0x00000000
    Read at address  0x050209B8 (0x3ffa83109b8): 0x00000000
    Read at address  0x050209BC (0x3ff967509bc): 0x00000000
    Read at address  0x050209C0 (0x3ffaa4009c0): 0x00000000
    Read at address  0x050209C4 (0x3ffbb1809c4): 0x00000000
    Read at address  0x050209C8 (0x3ff923109c8): 0x00000000
    Read at address  0x050209CC (0x3ffaf1109cc): 0x00000000
    Read at address  0x050209D0 (0x3ffa3ff09d0): 0x00000000
    Read at address  0x050209D4 (0x3ff925009d4): 0x00000000
    Read at address  0x050209D8 (0x3ff9f9109d8): 0x00000000
    Read at address  0x050209DC (0x3ffb8c209dc): 0x00000000
    Read at address  0x050209E0 (0x3ffb78509e0): 0x00000000
    Read at address  0x050209E4 (0x3ffb46309e4): 0x00000000
    Read at address  0x050209E8 (0x3ffa36b09e8): 0x00000000
    Read at address  0x050209EC (0x3ffb57109ec): 0x00000000
    Read at address  0x050209F0 (0x3ffb29409f0): 0x00000000
    Read at address  0x050209F4 (0x3ff95f209f4): 0x00000000
    Read at address  0x050209F8 (0x3ffbdc109f8): 0x00000000
    Read at address  0x050209FC (0x3ff99cc09fc): 0x00000000
    Read at address  0x05020A00 (0x3ffaf900a00): 0x00000000
    Read at address  0x05020A04 (0x3ff8dd10a04): 0x00000000
    Read at address  0x05020A08 (0x3ff8b510a08): 0x00000000
    Read at address  0x05020A0C (0x3ffb1960a0c): 0x00000000
    Read at address  0x05020A10 (0x3ff8f720a10): 0x00000000
    Read at address  0x05020A14 (0x3ffa5d30a14): 0x00000000
    Read at address  0x05020A18 (0x3ffab850a18): 0x00000000
    Read at address  0x05020A1C (0x3ffbda60a1c): 0x00000000
    Read at address  0x05020A20 (0x3ff89950a20): 0x00000000
    Read at address  0x05020A24 (0x3ff8ce20a24): 0x00000000
    Read at address  0x05020A28 (0x3ffbd000a28): 0x00000000
    Read at address  0x05020A2C (0x3ff90250a2c): 0x00000000
    Read at address  0x05020A30 (0x3ffb3a20a30): 0x00000000
    Read at address  0x05020A34 (0x3ff88520a34): 0x00000000
    Read at address  0x05020A38 (0x3ff8c6b0a38): 0x00000000
    Read at address  0x05020A3C (0x3ff9afd0a3c): 0x00000000
    Read at address  0x05020A40 (0x3ff87830a40): 0x00000000
    Read at address  0x05020A44 (0x3ffae240a44): 0x00000000
    Read at address  0x05020A48 (0x3ffad700a48): 0x00000000
    Read at address  0x05020A4C (0x3ffb6eb0a4c): 0x00000000
    Read at address  0x05020A50 (0x3ffb82a0a50): 0x00000000
    Read at address  0x05020A54 (0x3ff97930a54): 0x00000000
    Read at address  0x05020A58 (0x3ff9a9c0a58): 0x00000000
    Read at address  0x05020A5C (0x3ffb8c50a5c): 0x00000000
    Read at address  0x05020A60 (0x3ff9ac30a60): 0x00000000
    Read at address  0x05020A64 (0x3ff9b110a64): 0x00000000
    Read at address  0x05020A68 (0x3ff80610a68): 0x00000000
    Read at address  0x05020A6C (0x3ff7f010a6c): 0x00000000
    Read at address  0x05020A70 (0x3ff903b0a70): 0x00000000
    Read at address  0x05020A74 (0x3ff98be0a74): 0x00000000
    Read at address  0x05020A78 (0x3ffb3280a78): 0x00000000
    Read at address  0x05020A7C (0x3ffb16c0a7c): 0x00000000
    Read at address  0x05020A80 (0x3ffb62f0a80): 0x00000000
    Read at address  0x05020A84 (0x3ff861a0a84): 0x00000000
    Read at address  0x05020A88 (0x3ff9d5f0a88): 0x00000000
    Read at address  0x05020A8C (0x3ffbb0b0a8c): 0x00000000
    Read at address  0x05020A90 (0x3ffae970a90): 0x00000000
    Read at address  0x05020A94 (0x3ff95dd0a94): 0x00000000
    Read at address  0x05020A98 (0x3ffa8440a98): 0x00000000
    Read at address  0x05020A9C (0x3ffa6200a9c): 0x00000000
    Read at address  0x05020AA0 (0x3ffad6d0aa0): 0x00000000
    Read at address  0x05020AA4 (0x3ff8e500aa4): 0x00000000
    Read at address  0x05020AA8 (0x3ff9c540aa8): 0x00000000
    Read at address  0x05020AAC (0x3ff85cd0aac): 0x00000000
    Read at address  0x05020AB0 (0x3ffb5e80ab0): 0x00000000
    Read at address  0x05020AB4 (0x3ffb4840ab4): 0x00000000
    Read at address  0x05020AB8 (0x3ff9c740ab8): 0x00000000
    Read at address  0x05020ABC (0x3ffa5440abc): 0x00000000
    Read at address  0x05020AC0 (0x3ffb1fb0ac0): 0x00000000
    Read at address  0x05020AC4 (0x3ffa1650ac4): 0x00000000
    Read at address  0x05020AC8 (0x3ffb0640ac8): 0x00000000
    Read at address  0x05020ACC (0x3ff8d300acc): 0x00000000
    Read at address  0x05020AD0 (0x3ff92540ad0): 0x00000000
    Read at address  0x05020AD4 (0x3ffb6920ad4): 0x00000000
    Read at address  0x05020AD8 (0x3ffba0c0ad8): 0x00000000
    Read at address  0x05020ADC (0x3ffaa880adc): 0x00000000
    Read at address  0x05020AE0 (0x3ffb6fd0ae0): 0x00000000
    Read at address  0x05020AE4 (0x3ffaf500ae4): 0x00000000
    Read at address  0x05020AE8 (0x3ffbaf30ae8): 0x00000000
    Read at address  0x05020AEC (0x3ffb2680aec): 0x00000000
    Read at address  0x05020AF0 (0x3ffab590af0): 0x00000000
    Read at address  0x05020AF4 (0x3ff994e0af4): 0x00000000
    Read at address  0x05020AF8 (0x3ff9a8a0af8): 0x00000000
    Read at address  0x05020AFC (0x3ff874b0afc): 0x00000000
    Read at address  0x05020B00 (0x3ff954d0b00): 0x00000000
    Read at address  0x05020B04 (0x3ff94bc0b04): 0x00000000
    Read at address  0x05020B08 (0x3ffb3f70b08): 0x00000000
    Read at address  0x05020B0C (0x3ff98750b0c): 0x00000000
    Read at address  0x05020B10 (0x3ff83e20b10): 0x00000000
    Read at address  0x05020B14 (0x3ff9ee70b14): 0x00000000
    Read at address  0x05020B18 (0x3ff992a0b18): 0x00000000
    Read at address  0x05020B1C (0x3ff9e130b1c): 0x00000000
    Read at address  0x05020B20 (0x3ff927c0b20): 0x00000000
    Read at address  0x05020B24 (0x3ffbdf00b24): 0x00000000
    Read at address  0x05020B28 (0x3ffb13d0b28): 0x00000000
    Read at address  0x05020B2C (0x3ff88490b2c): 0x00000000
    Read at address  0x05020B30 (0x3ffbe130b30): 0x00000000
    Read at address  0x05020B34 (0x3ff9f130b34): 0x00000000
    Read at address  0x05020B38 (0x3ffa5170b38): 0x00000000
    Read at address  0x05020B3C (0x3ffb2a00b3c): 0x00000000
    Read at address  0x05020B40 (0x3ffb53e0b40): 0x00000000
    Read at address  0x05020B44 (0x3ff88ad0b44): 0x00000000
    Read at address  0x05020B48 (0x3ff81780b48): 0x00000000
    Read at address  0x05020B4C (0x3ffa3fa0b4c): 0x00000000
    Read at address  0x05020B50 (0x3ffb44a0b50): 0x00000000
    Read at address  0x05020B54 (0x3ffb72e0b54): 0x00000000
    Read at address  0x05020B58 (0x3ff83940b58): 0x00000000
    Read at address  0x05020B5C (0x3ffa2f80b5c): 0x00000000
    Read at address  0x05020B60 (0x3ffbe630b60): 0x00000000
    Read at address  0x05020B64 (0x3ffb05f0b64): 0x00000000
    Read at address  0x05020B68 (0x3ffb0f10b68): 0x00000000
    Read at address  0x05020B6C (0x3ff84d50b6c): 0x00000000
    Read at address  0x05020B70 (0x3ff8a620b70): 0x00000000
    Read at address  0x05020B74 (0x3ffa21a0b74): 0x00000000
    Read at address  0x05020B78 (0x3ffb1950b78): 0x00000000
    Read at address  0x05020B7C (0x3ff9e140b7c): 0x00000000
    Read at address  0x05020B80 (0x3ffae300b80): 0x00000000
    Read at address  0x05020B84 (0x3ffbd220b84): 0x00000000
    Read at address  0x05020B88 (0x3ffa8680b88): 0x00000000
    Read at address  0x05020B8C (0x3ff8b0e0b8c): 0x00000000
    Read at address  0x05020B90 (0x3ff89d20b90): 0x00000000
    Read at address  0x05020B94 (0x3ffa6ca0b94): 0x00000000
    Read at address  0x05020B98 (0x3ff95c50b98): 0x00000000
    Read at address  0x05020B9C (0x3ff9db20b9c): 0x00000000
    Read at address  0x05020BA0 (0x3ffb27e0ba0): 0x00000000
    Read at address  0x05020BA4 (0x3ffade30ba4): 0x00000000
    Read at address  0x05020BA8 (0x3ffa9db0ba8): 0x00000000
    Read at address  0x05020BAC (0x3ff89070bac): 0x00000000
    Read at address  0x05020BB0 (0x3ffa8440bb0): 0x00000000
    Read at address  0x05020BB4 (0x3ffa0600bb4): 0x00000000
    Read at address  0x05020BB8 (0x3ffb0490bb8): 0x00000000
    Read at address  0x05020BBC (0x3ff92470bbc): 0x00000000
    Read at address  0x05020BC0 (0x3ff90910bc0): 0x00000000
    Read at address  0x05020BC4 (0x3ffb7f00bc4): 0x00000000
    Read at address  0x05020BC8 (0x3ff970c0bc8): 0x00000000
    Read at address  0x05020BCC (0x3ffbddc0bcc): 0x00000000
    Read at address  0x05020BD0 (0x3ffa0540bd0): 0x00000000
    Read at address  0x05020BD4 (0x3ff96a20bd4): 0x00000000
    Read at address  0x05020BD8 (0x3ffadc30bd8): 0x00000000
    Read at address  0x05020BDC (0x3ff97b80bdc): 0x00000000
    Read at address  0x05020BE0 (0x3ff82de0be0): 0x00000000
    Read at address  0x05020BE4 (0x3ff94440be4): 0x00000000
    Read at address  0x05020BE8 (0x3ff843a0be8): 0x00000000
    Read at address  0x05020BEC (0x3ff83730bec): 0x00000000
    Read at address  0x05020BF0 (0x3ffabc90bf0): 0x00000000
    Read at address  0x05020BF4 (0x3ffa5f80bf4): 0x00000000
    Read at address  0x05020BF8 (0x3ff966f0bf8): 0x00000000
    Read at address  0x05020BFC (0x3ff8bec0bfc): 0x00000000
    Read at address  0x05020C00 (0x3ffad690c00): 0x00000000
    Read at address  0x05020C04 (0x3ffba500c04): 0x00000000
    Read at address  0x05020C08 (0x3ffaf0a0c08): 0x00000000
    Read at address  0x05020C0C (0x3ffb7000c0c): 0x00000000
    Read at address  0x05020C10 (0x3ffa61e0c10): 0x00000000
    Read at address  0x05020C14 (0x3ff9acb0c14): 0x00000000
    Read at address  0x05020C18 (0x3ff852c0c18): 0x00000000
    Read at address  0x05020C1C (0x3ffbca10c1c): 0x00000000
    Read at address  0x05020C20 (0x3ff97350c20): 0x00000000
    Read at address  0x05020C24 (0x3ffbc140c24): 0x00000000
    Read at address  0x05020C28 (0x3ff87eb0c28): 0x00000000
    Read at address  0x05020C2C (0x3ff88750c2c): 0x00000000
    Read at address  0x05020C30 (0x3ffb49c0c30): 0x00000000
    Read at address  0x05020C34 (0x3ffaea30c34): 0x00000000
    Read at address  0x05020C38 (0x3ffa2cf0c38): 0x00000000
    Read at address  0x05020C3C (0x3ffabd50c3c): 0x00000000
    Read at address  0x05020C40 (0x3ff80410c40): 0x00000000
    Read at address  0x05020C44 (0x3ff8bfd0c44): 0x00000000
    Read at address  0x05020C48 (0x3ffb2fb0c48): 0x00000000
    Read at address  0x05020C4C (0x3ff9cf50c4c): 0x00000000
    Read at address  0x05020C50 (0x3ff85ca0c50): 0x00000000
    Read at address  0x05020C54 (0x3ffaa860c54): 0x00000000
    Read at address  0x05020C58 (0x3ffa2370c58): 0x00000000
    Read at address  0x05020C5C (0x3ffad390c5c): 0x00000000
    Read at address  0x05020C60 (0x3ff8ec20c60): 0x00000000
    Read at address  0x05020C64 (0x3ffa68e0c64): 0x00000000
    Read at address  0x05020C68 (0x3ff9f7c0c68): 0x00000000
    Read at address  0x05020C6C (0x3ff7f4b0c6c): 0x00000000
    Read at address  0x05020C70 (0x3ff88f00c70): 0x00000000
    Read at address  0x05020C74 (0x3ff81b80c74): 0x00000000
    Read at address  0x05020C78 (0x3ff853f0c78): 0x00000000
    Read at address  0x05020C7C (0x3ff99120c7c): 0x00000000
    Read at address  0x05020C80 (0x3ffb1200c80): 0x00000000
    Read at address  0x05020C84 (0x3ffac9a0c84): 0x00000000
    Read at address  0x05020C88 (0x3ffbd860c88): 0x00000000
    Read at address  0x05020C8C (0x3ffa9fa0c8c): 0x00000000
    Read at address  0x05020C90 (0x3ffa1730c90): 0x00000000
    Read at address  0x05020C94 (0x3ff8f390c94): 0x00000000
    Read at address  0x05020C98 (0x3ff97990c98): 0x00000000
    Read at address  0x05020C9C (0x3ffa9300c9c): 0x00000000
    Read at address  0x05020CA0 (0x3ff9feb0ca0): 0x00000000
    Read at address  0x05020CA4 (0x3ffb74f0ca4): 0x00000000
    Read at address  0x05020CA8 (0x3ffadc50ca8): 0x00000000
    Read at address  0x05020CAC (0x3ffba7c0cac): 0x00000000
    Read at address  0x05020CB0 (0x3ff95410cb0): 0x00000000
    Read at address  0x05020CB4 (0x3ff92520cb4): 0x00000000
    Read at address  0x05020CB8 (0x3ff9d4b0cb8): 0x00000000
    Read at address  0x05020CBC (0x3ff8bb20cbc): 0x00000000
    Read at address  0x05020CC0 (0x3ffa6880cc0): 0x00000000
    Read at address  0x05020CC4 (0x3ffa9210cc4): 0x00000000
    Read at address  0x05020CC8 (0x3ffb29d0cc8): 0x00000000
    Read at address  0x05020CCC (0x3ff908c0ccc): 0x00000000
    Read at address  0x05020CD0 (0x3ffbae10cd0): 0x00000000
    Read at address  0x05020CD4 (0x3ffaa1a0cd4): 0x00000000
    Read at address  0x05020CD8 (0x3ffbda70cd8): 0x00000000
    Read at address  0x05020CDC (0x3ff9efb0cdc): 0x00000000
    Read at address  0x05020CE0 (0x3ffae130ce0): 0x00000000
    Read at address  0x05020CE4 (0x3ffb5e70ce4): 0x00000000
    Read at address  0x05020CE8 (0x3ff89480ce8): 0x00000000
    Read at address  0x05020CEC (0x3ffb29c0cec): 0x00000000
    Read at address  0x05020CF0 (0x3ffa47f0cf0): 0x00000000
    Read at address  0x05020CF4 (0x3ff857f0cf4): 0x00000000
    Read at address  0x05020CF8 (0x3ffb5710cf8): 0x00000000
    Read at address  0x05020CFC (0x3ff9ab50cfc): 0x00000000
    Read at address  0x05020D00 (0x3ff84ce0d00): 0x00000000
    Read at address  0x05020D04 (0x3ffafef0d04): 0x00000000
    Read at address  0x05020D08 (0x3ff97980d08): 0x00000000
    Read at address  0x05020D0C (0x3ff8f5d0d0c): 0x00000000
    Read at address  0x05020D10 (0x3ffbc5a0d10): 0x00000000
    Read at address  0x05020D14 (0x3ffb5f40d14): 0x00000000
    Read at address  0x05020D18 (0x3ff99dc0d18): 0x00000000
    Read at address  0x05020D1C (0x3ffb57a0d1c): 0x00000000
    Read at address  0x05020D20 (0x3ffa8000d20): 0x00000000
    Read at address  0x05020D24 (0x3ff95a60d24): 0x00000000
    Read at address  0x05020D28 (0x3ff970e0d28): 0x00000000
    Read at address  0x05020D2C (0x3ffa1bf0d2c): 0x00000000
    Read at address  0x05020D30 (0x3ffbb810d30): 0x00000000
    Read at address  0x05020D34 (0x3ffa0140d34): 0x00000000
    Read at address  0x05020D38 (0x3ff836a0d38): 0x00000000
    Read at address  0x05020D3C (0x3ffa4840d3c): 0x00000000
    Read at address  0x05020D40 (0x3ff8e8f0d40): 0x00000000
    Read at address  0x05020D44 (0x3ffa5800d44): 0x00000000
    Read at address  0x05020D48 (0x3ff85310d48): 0x00000000
    Read at address  0x05020D4C (0x3ffb4700d4c): 0x00000000
    Read at address  0x05020D50 (0x3ff8dc30d50): 0x00000000
    Read at address  0x05020D54 (0x3ffa2660d54): 0x00000000
    Read at address  0x05020D58 (0x3ff82560d58): 0x00000000
    Read at address  0x05020D5C (0x3ffa2d50d5c): 0x00000000
    Read at address  0x05020D60 (0x3ff9f4b0d60): 0x00000000
    Read at address  0x05020D64 (0x3ff8e450d64): 0x00000000
    Read at address  0x05020D68 (0x3ff96940d68): 0x00000000
    Read at address  0x05020D6C (0x3ff957e0d6c): 0x00000000
    Read at address  0x05020D70 (0x3ffb1850d70): 0x00000000
    Read at address  0x05020D74 (0x3ff9a670d74): 0x00000000
    Read at address  0x05020D78 (0x3ff99bc0d78): 0x00000000
    Read at address  0x05020D7C (0x3ffb4f80d7c): 0x00000000
    Read at address  0x05020D80 (0x3ffaf9b0d80): 0x00000000
    Read at address  0x05020D84 (0x3ff95fe0d84): 0x00000000
    Read at address  0x05020D88 (0x3ff9a1a0d88): 0x00000000
    Read at address  0x05020D8C (0x3ff9e910d8c): 0x00000000
    Read at address  0x05020D90 (0x3ff7ed70d90): 0x00000000
    Read at address  0x05020D94 (0x3ff88ea0d94): 0x00000000
    Read at address  0x05020D98 (0x3ff98740d98): 0x00000000
    Read at address  0x05020D9C (0x3ffb7720d9c): 0x00000000
    Read at address  0x05020DA0 (0x3ffbe300da0): 0x00000000
    Read at address  0x05020DA4 (0x3ffb8b30da4): 0x00000000
    Read at address  0x05020DA8 (0x3ffaf090da8): 0x00000000
    Read at address  0x05020DAC (0x3ff94400dac): 0x00000000
    Read at address  0x05020DB0 (0x3ff91620db0): 0x00000000
    Read at address  0x05020DB4 (0x3ff8a380db4): 0x00000000
    Read at address  0x05020DB8 (0x3ffb44e0db8): 0x00000000
    Read at address  0x05020DBC (0x3ffbbce0dbc): 0x00000000
    Read at address  0x05020DC0 (0x3ff8e850dc0): 0x00000000
    Read at address  0x05020DC4 (0x3ffbba70dc4): 0x00000000
    Read at address  0x05020DC8 (0x3ff93740dc8): 0x00000000
    Read at address  0x05020DCC (0x3ffad8a0dcc): 0x00000000
    Read at address  0x05020DD0 (0x3ffb18c0dd0): 0x00000000
    Read at address  0x05020DD4 (0x3ffb07a0dd4): 0x00000000
    Read at address  0x05020DD8 (0x3ff835c0dd8): 0x00000000
    Read at address  0x05020DDC (0x3ffb8560ddc): 0x00000000
    Read at address  0x05020DE0 (0x3ff956b0de0): 0x00000000
    Read at address  0x05020DE4 (0x3ffa5330de4): 0x00000000
    Read at address  0x05020DE8 (0x3ffa7d70de8): 0x00000000
    Read at address  0x05020DEC (0x3ffa87b0dec): 0x00000000
    Read at address  0x05020DF0 (0x3ff8d4d0df0): 0x00000000
    Read at address  0x05020DF4 (0x3ff957a0df4): 0x00000000
    Read at address  0x05020DF8 (0x3ffafc00df8): 0x00000000
    Read at address  0x05020DFC (0x3ff90770dfc): 0x00000000
    Read at address  0x05020E00 (0x3ffabc10e00): 0x00000000
    Read at address  0x05020E04 (0x3ffabb30e04): 0x00000000
    Read at address  0x05020E08 (0x3ffad370e08): 0x00000000
    Read at address  0x05020E0C (0x3ffab230e0c): 0x00000000
    Read at address  0x05020E10 (0x3ff82b10e10): 0x00000000
    Read at address  0x05020E14 (0x3ffb12c0e14): 0x00000000
    Read at address  0x05020E18 (0x3ffbc0f0e18): 0x00000000
    Read at address  0x05020E1C (0x3ff8f230e1c): 0x00000000
    Read at address  0x05020E20 (0x3ffa9560e20): 0x00000000
    Read at address  0x05020E24 (0x3ff8f080e24): 0x00000000
    Read at address  0x05020E28 (0x3ffa7cf0e28): 0x00000000
    Read at address  0x05020E2C (0x3ffa91f0e2c): 0x00000000
    Read at address  0x05020E30 (0x3ff95f90e30): 0x00000000
    Read at address  0x05020E34 (0x3ffb3310e34): 0x00000000
    Read at address  0x05020E38 (0x3ffa7a40e38): 0x00000000
    Read at address  0x05020E3C (0x3ff9b840e3c): 0x00000000
    Read at address  0x05020E40 (0x3ffa8540e40): 0x00000000
    Read at address  0x05020E44 (0x3ff92990e44): 0x00000000
    Read at address  0x05020E48 (0x3ffa3600e48): 0x00000000
    Read at address  0x05020E4C (0x3ff84290e4c): 0x00000000
    Read at address  0x05020E50 (0x3ff8be50e50): 0x00000000
    Read at address  0x05020E54 (0x3ffb3620e54): 0x00000000
    Read at address  0x05020E58 (0x3ff8e420e58): 0x00000000
    Read at address  0x05020E5C (0x3ff98eb0e5c): 0x00000000
    Read at address  0x05020E60 (0x3ffaa860e60): 0x00000000
    Read at address  0x05020E64 (0x3ffb9540e64): 0x00000000
    Read at address  0x05020E68 (0x3ff95060e68): 0x00000000
    Read at address  0x05020E6C (0x3ffb9eb0e6c): 0x00000000
    Read at address  0x05020E70 (0x3ffa6fe0e70): 0x00000000
    Read at address  0x05020E74 (0x3ffb8230e74): 0x00000000
    Read at address  0x05020E78 (0x3ffabe40e78): 0x00000000
    Read at address  0x05020E7C (0x3ff8c180e7c): 0x00000000
    Read at address  0x05020E80 (0x3ff81d80e80): 0x00000000
    Read at address  0x05020E84 (0x3ff862a0e84): 0x00000000
    Read at address  0x05020E88 (0x3ff9b8f0e88): 0x00000000
    Read at address  0x05020E8C (0x3ffb3510e8c): 0x00000000
    Read at address  0x05020E90 (0x3ff96e70e90): 0x00000000
    Read at address  0x05020E94 (0x3ffbd6e0e94): 0x00000000
    Read at address  0x05020E98 (0x3ff99e10e98): 0x00000000
    Read at address  0x05020E9C (0x3ffb04c0e9c): 0x00000000
    Read at address  0x05020EA0 (0x3ffad880ea0): 0x00000000
    Read at address  0x05020EA4 (0x3ffbc0e0ea4): 0x00000000
    Read at address  0x05020EA8 (0x3ffb0360ea8): 0x00000000
    Read at address  0x05020EAC (0x3ffaa070eac): 0x00000000
    Read at address  0x05020EB0 (0x3ffa1730eb0): 0x00000000
    Read at address  0x05020EB4 (0x3ffb0030eb4): 0x00000000
    Read at address  0x05020EB8 (0x3ff83660eb8): 0x00000000
    Read at address  0x05020EBC (0x3ff9e980ebc): 0x00000000
    Read at address  0x05020EC0 (0x3ff85060ec0): 0x00000000
    Read at address  0x05020EC4 (0x3ff843f0ec4): 0x00000000
    Read at address  0x05020EC8 (0x3ff81aa0ec8): 0x00000000
    Read at address  0x05020ECC (0x3ffa5560ecc): 0x00000000
    Read at address  0x05020ED0 (0x3ff98990ed0): 0x00000000
    Read at address  0x05020ED4 (0x3ffbd3f0ed4): 0x00000000
    Read at address  0x05020ED8 (0x3ffa4bd0ed8): 0x00000000
    Read at address  0x05020EDC (0x3ff92ef0edc): 0x00000000
    Read at address  0x05020EE0 (0x3ff80f70ee0): 0x00000000
    Read at address  0x05020EE4 (0x3ffac3f0ee4): 0x00000000
    Read at address  0x05020EE8 (0x3ffa28a0ee8): 0x00000000
    Read at address  0x05020EEC (0x3ffb9440eec): 0x00000000
    Read at address  0x05020EF0 (0x3ffa1f50ef0): 0x00000000
    Read at address  0x05020EF4 (0x3ff95df0ef4): 0x00000000
    Read at address  0x05020EF8 (0x3ffb0170ef8): 0x00000000
    Read at address  0x05020EFC (0x3ffb9730efc): 0x00000000
    Read at address  0x05020F00 (0x3ff8a560f00): 0x00000000
    Read at address  0x05020F04 (0x3ffafef0f04): 0x00000000
    Read at address  0x05020F08 (0x3ff8c940f08): 0x00000000
    Read at address  0x05020F0C (0x3ff8dd30f0c): 0x00000000
    Read at address  0x05020F10 (0x3ffa1a00f10): 0x00000000
    Read at address  0x05020F14 (0x3ff7e980f14): 0x00000000
    Read at address  0x05020F18 (0x3ff88d70f18): 0x00000000
    Read at address  0x05020F1C (0x3ff87070f1c): 0x00000000
    Read at address  0x05020F20 (0x3ff8c580f20): 0x00000000
    Read at address  0x05020F24 (0x3ff801c0f24): 0x00000000
    Read at address  0x05020F28 (0x3ffb83f0f28): 0x00000000
    Read at address  0x05020F2C (0x3ff86820f2c): 0x00000000
    Read at address  0x05020F30 (0x3ff9bdf0f30): 0x00000000
    Read at address  0x05020F34 (0x3ff99ee0f34): 0x00000000
    Read at address  0x05020F38 (0x3ffb4320f38): 0x00000000
    Read at address  0x05020F3C (0x3ffa6cd0f3c): 0x00000000
    Read at address  0x05020F40 (0x3ff92580f40): 0x00000000
    Read at address  0x05020F44 (0x3ffb4c00f44): 0x00000000
    Read at address  0x05020F48 (0x3ff8e430f48): 0x00000000
    Read at address  0x05020F4C (0x3ff81a60f4c): 0x00000000
    Read at address  0x05020F50 (0x3ff7f440f50): 0x00000000
    Read at address  0x05020F54 (0x3ffb4110f54): 0x00000000
    Read at address  0x05020F58 (0x3ff97210f58): 0x00000000
    Read at address  0x05020F5C (0x3ff85760f5c): 0x00000000
    Read at address  0x05020F60 (0x3ff9c8b0f60): 0x00000000
    Read at address  0x05020F64 (0x3ff897c0f64): 0x00000000
    Read at address  0x05020F68 (0x3ff8d850f68): 0x00000000
    Read at address  0x05020F6C (0x3ffa1a90f6c): 0x00000000
    Read at address  0x05020F70 (0x3ffba770f70): 0x00000000
    Read at address  0x05020F74 (0x3ff9a940f74): 0x00000000
    Read at address  0x05020F78 (0x3ffa2e30f78): 0x00000000
    Read at address  0x05020F7C (0x3ffab7a0f7c): 0x00000000
    Read at address  0x05020F80 (0x3ff9bd10f80): 0x00000000
    Read at address  0x05020F84 (0x3ffb0a90f84): 0x00000000
    Read at address  0x05020F88 (0x3ff959d0f88): 0x00000000
    Read at address  0x05020F8C (0x3ffb41f0f8c): 0x00000000
    Read at address  0x05020F90 (0x3ff85ba0f90): 0x00000000
    Read at address  0x05020F94 (0x3ffba400f94): 0x00000000
    Read at address  0x05020F98 (0x3ff88810f98): 0x00000000
    Read at address  0x05020F9C (0x3ffa09f0f9c): 0x00000000
    Read at address  0x05020FA0 (0x3ffaa0d0fa0): 0x00000000
    Read at address  0x05020FA4 (0x3ffb9150fa4): 0x00000000
    Read at address  0x05020FA8 (0x3ff97860fa8): 0x00000000
    Read at address  0x05020FAC (0x3ffa2020fac): 0x00000000
    Read at address  0x05020FB0 (0x3ff95900fb0): 0x00000000
    Read at address  0x05020FB4 (0x3ffafb20fb4): 0x00000000
    Read at address  0x05020FB8 (0x3ffb5110fb8): 0x00000000
    Read at address  0x05020FBC (0x3ff808b0fbc): 0x00000000
    Read at address  0x05020FC0 (0x3ff81d50fc0): 0x00000000
    Read at address  0x05020FC4 (0x3ffaeda0fc4): 0x00000000
    Read at address  0x05020FC8 (0x3ffb4030fc8): 0x00000000
    Read at address  0x05020FCC (0x3ffa9b30fcc): 0x00000000
    Read at address  0x05020FD0 (0x3ffa0b10fd0): 0x00000000
    Read at address  0x05020FD4 (0x3ffb5e40fd4): 0x00000000
    Read at address  0x05020FD8 (0x3ff99250fd8): 0x00000000
    Read at address  0x05020FDC (0x3ffb2080fdc): 0x00000000
    Read at address  0x05020FE0 (0x3ffa56e0fe0): 0x00000000
    Read at address  0x05020FE4 (0x3ff89760fe4): 0x00000000
    Read at address  0x05020FE8 (0x3ffa9ed0fe8): 0x00000000
    Read at address  0x05020FEC (0x3ff93630fec): 0x00000000
    Read at address  0x05020FF0 (0x3ff81240ff0): 0x00000000
    Read at address  0x05020FF4 (0x3ffaed60ff4): 0x00000000
    Read at address  0x05020FF8 (0x3ff96ca0ff8): 0x00000000
    Read at address  0x05020FFC (0x3ff94850ffc): 0x00000000

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    建议客户从 RTOS 使用串行器/解串器寄存器配置并迁移到 Linux、因为对于当前的8.6 SDK 而言、它们的设置是不同的。 希望此原生9G 驱动程序将受到 PSDK9.0版开包即用支持。 谢谢。  

    现在就结束了。  

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    尊敬的,

    在 SDK 8.5中,此问题已修复,衰减原因是 SerDes 寄存器错误

    谢谢