Tool/software:
Hi Ti,
We are using AM654 with Linux RT SDK 7 and we have 2 usb ports. usb0 as peripheral and usb1 as host mode. Both mode works well.
usb20_host_pins_default: usb20_host_pins_default {
pinctrl-single,pins = <
AM65X_IOPAD(0x02c0, PIN_OUTPUT, 0) /* (AC8) GPIO1_72 */ /*USB1_DRVVBUS*/
>;
};
&usb0 {
pinctrl-names = "default";
dr_mode = "peripheral";
};
&usb1 {
pinctrl-names = "default";
pinctrl-0 = <&usb20_host_pins_default>;
dr_mode = "host";
};
However, we want to measure USB eye diagram of usb1, we change the dr_mode from host to peripheral. But nothing happened after connect with PC.
Is there anything lost or any limitation?
&usb1 {
pinctrl-names = "default";
pinctrl-0 = <&usb20_host_pins_default>;
dr_mode = "peripheral";
};
Thanks.
Eric