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.

现在在调试am3354的USB驱动,使用linux RT SDK,设备树里已经配置了USB,内核也勾选了,但是usb端口还是没有反应,这个一般什么问题呢?



两个端口都没有反应,USB1_DRVVBUS引脚为低电平,没有供电,这个咋回事呢

&usb 
{
	status = "okay";
};

&usb_ctrl_mod 
{
	status = "okay";
};

&usb0_phy 
{
	status = "okay";
};

&usb1_phy 
{
	status = "okay";
};

&usb0 
{
	status = "okay";
	dr_mode = "peripheral";
	interrupts-extended = <&intc 18 &tps 0>;
	interrupt-names = "mc", "vbus";
};

&usb1 
{
	status = "okay";
	dr_mode = "host";
};

&cppi41dma 
{
	status = "okay";
};

这是设备树关于usb的描述