Other Parts Discussed in Thread: DP83869
Tool/software:
Hello E2E Team,
we face an issue with the am6442 SR2 USB controller. The controller sometimes causes a system hang if we configure the USB device via our setup script. Only a hard power cycle help to reset the system.
am6442 System:
- ti am6442 SoC SR2
- Linux 6.1.20+rt
- Sysfw: v09.00.07
- Bootdevice: eMMC
Testsetup:
Custom am6442 board connected to a Win10 PC via USB2.0. The PC try to establish a SSH connection via the RNDIS Ethernet device. After successful establish the connection, the Windows system send a reboot command to the device. After the power cycle the Windows system try to connect again via USB RNDIS. The USB cable connection is not removed while the test, the Windows 10 PC and the device are connected while the hole test. the system hang is not reproduceable, sometimes it takes 7 reboots, sometimes 500+.
The following script configures the USB controller at Linux init time as a device, with CDC-ECM and RNDIS. The controller is configured as "otg" in the device-tree of the Linux-kernel.
Script abstract:
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
# config 1 is for CDC
mkdir -p configs/c.1
echo "${NET_USB_ATTR}" > configs/c.1/bmAttributes
echo "${NET_USB_PWR}" > configs/c.1/MaxPower
mkdir -p "configs/c.1/strings/${CONFIG_USB_LANGID}"
echo "CDC" > "configs/c.1/strings/${CONFIG_USB_LANGID}/configuration"
mkdir -p functions/ecm.usb0
mkdir -p configs/c.2
echo "${NET_USB_ATTR}" > configs/c.2/bmAttributes
echo "${NET_USB_PWR}" > configs/c.2/MaxPower
mkdir -p "configs/c.2/strings/${CONFIG_USB_LANGID}"
echo "RNDIS" > "configs/c.2/strings/${CONFIG_USB_LANGID}/configuration"
mkdir -p functions/rndis.usb0
# On Windows 7 and later, the RNDIS 5.1 driver would be used by default,
# but it does not work very well. The RNDIS 6.0 driver works better. In
# order to get this driver to load automatically, we have to use a
# Microsoft-specific extension of USB.
echo "1" > os_desc/use
echo "${MS_VENDOR_CODE}" > os_desc/b_vendor_code
echo "${MS_QW_SIGN}" > os_desc/qw_sign
init_mac_leases 3
local host_mac; host_mac=$(get_mac "${NET_USB_INTERFACE}" "${NET_USB_CONFIGFILE}" "HOST_")
log_info "Initializing usb net for interface ${NET_USB_INTERFACE} with HOST_MAC ${host_mac} and serial number ${serial_number}"
echo "${host_mac}" > functions/rndis.usb0/host_addr
local mac; mac=$(get_mac "${NET_USB_INTERFACE}" "${NET_USB_CONFIGFILE}")
log_info "Setting up interface ${NET_USB_INTERFACE} with IP ${NET_USB_IP} and MAC ${mac}"
echo "${mac}" > functions/ecm.usb0/dev_addr
echo "${mac}" > functions/ecm.usb0/host_addr
echo "${mac}" > functions/rndis.usb0/dev_addr
echo "${mac}" > functions/rndis.usb0/host_addr
echo "${MS_COMPAT_ID}" > functions/rndis.usb0/os_desc/interface.rndis/compatible_id
echo "${MS_SUBCOMPAT_ID}" > functions/rndis.usb0/os_desc/interface.rndis/sub_compatible_id
ln -s functions/ecm.usb0 configs/c.1
ln -s functions/rndis.usb0 configs/c.2
ln -s configs/c.2 os_desc
# add appropriate usb device to the gadget (AM64x specific)
echo "f400000.usb" > UDC
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
After the "echo "f400000.usb" > UDC" the system hang.
In case of the system hang the Linux stops working, no communication via UART, Ethernet and USB was possible.
We check the silicon errata for the am6442, we add the bugfix for "i2409 — USB: USB2 PHY locks up due to short suspend" sadly that didn't resolve the problem.
Reading the Cadence silicon errata (https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/tree/drivers/usb/cdns3/cdns3-gadget.c?h=ti-rt-linux-6.1.y-cicd),
we remove the power management stuff from the cdns-plat.c driver code:
Sadly, this didn't help with the stuck at init time. Remove the pm stuff let the system boot, but no communication is going on the USB device, reconfigure the device via the script cause the system hang.
We found this E2E post which may relates to our problem:
Best regards,
Stefan