Thanks for the information. It was a simple addition into the dts file for my board.
I removed the IOMUXC reference for the OTG_ID pin and then added
dr_mode = "host";
to the otg device definition.
Since I needed to use the USB in u-boot, I had to modify u-boot source as well.
I removed the MX6_PAD_ENET_RX_ER__USB_OTG_ID | MUX_PAD_CTRL(OTG_ID_PAD_CTRL), definition in the usb_otg_pads pin definition.
I also added an override of the board_usb_phy_mode function.
int board_usb_phy_mode(int port)
{
return USB_INIT_HOST;
}
Both were added to my board source code file.