Hi, nvidia
I am porting the network driver on orin, using jp6.0 agx orin, custom carrier board.
After I ported the xfi driver and device tree on jp5.1.2 to jp6.0 and burned it, I encountered the following error.
ERROR: Exception reason=1 syndrome=0x82000010
ERROR: **************************************
ERROR: RAS Uncorrectable Error in IOB, base=0xe010000:
ERROR: Status = 0xe4000612
ERROR: SERR = Error response from slave: 0x12
ERROR: IERR = CBB Interface Error: 0x6
ERROR: MISC0 = 0xc4420040
ERROR: MISC1 = 0x5cc870000000000
ERROR: MISC2 = 0x0
ERROR: MISC3 = 0x0
ERROR: ADDR = 0x8000000000000200
ERROR: **************************************
ERROR: sdei_dispatch_event returned -1
ERROR: **************************************
ERROR: RAS Uncorrectable Error in ACI, base=0xe01a000:
ERROR: Status = 0xe8000904
ERROR: SERR = Assertion failure: 0x4
ERROR: IERR = FillWrite Error: 0x9
ERROR: Overflow (there may be more errors) - Uncorrectable
ERROR: ADDR = 0x8000000000000200
ERROR: **************************************
ERROR: sdei_dispatch_event returned -1
ERROR: Powering off core
I modified the device tree as follows
bus@0 {
/* MGBE - A */
eth1:ethernet@6800000 {
status = "okay";
nvidia,mac-addr-idx = <1>;
nvidia,max-platform-mtu = <16383>;
/* 0=enable, 1=disable */
nvidia,pause_frames = <0>;
/* 1:10G, 0:5G */
nvidia,uphy-gbe-mode = <0>;
/* 0:XFI 10G, 1:XFI 5G, 2:USXGMII 10G, 3:USXGMII 5G */
nvidia,phy-iface-mode = <1>;
phy-mode = "10gbase-r";
nvidia,max-platform-mtu = <16383>;
// nvidia,phy-reset-gpio = <&tegra_main_gpio TEGRA234_MAIN_GPIO(Y, 1) 0>;
fixed-link {
speed = <10000>;
full-duplex;
};
mdio {
compatible = "nvidia,eqos-mdio";
#address-cells = <1>;
#size-cells = <0>;
switch1: switch1@0 {
compatible = "marvell,mv88e6085";
#address-cells = <1>;
#size-cells = <0>;
reg = <0>;
// Orin pin G5: ENET_RST
reset-gpios = <&gpio TEGRA234_MAIN_GPIO(Y, 1) 1>; // zhaosq for switch reset
switch,phy-reset-gpio = <&gpio TEGRA234_MAIN_GPIO(Y, 1) 0>; // zhaosq for linux reboot
eeprom-length = <512>; // eeprom-magic = <0xc3ec4951> for marvell
dsa,member = <0 0>;
};
};
};
};
Modify ODMDATA as follows
ODMDATA=“gbe-uphy-config-22,hsstp-lane-map-3,nvhs-uphy-config-0,hsio-uphy-config-0”;
I am a novice in network drivers and I am not sure how to continue troubleshooting. Please assist. Thank you
If you need me to provide additional information, please indicate
thanks