I'm trying to get USB working in device mode with VBUS connected but not ID. I'm using a USB B connector so there is no ID pin. PB0 (USB0ID) is configured as a GPIO input and tied to ground via a 1k resistor per errata GPIO#09. PB1 (USB0VBUS) is connected to the USB connector via a 100 ohm resistor as recommended in the system design guidelines.
When I have the usblib stack configured in eUSBModeDevice mode, my PC is unable to see my device. If I use eUSBModeForceDevice instead, everything works except connect/disconnect notifications. As far as I can tell, the only difference between these two modes is the value written to USBGPCS.DEVMOD. In regular device mode the stack writes 0, which makes the controller use external VBUS and ID signals, and in forced device mode it writes 3, which makes the controller internally force signals both high. Based on that, the behavior I observed is expected.
Although usblib does not expose it, the datasheet has a value for USBGPCS.DEVMOD that is supposed to make the controller use the external VBUS signal, but force ID high internally. I've tried activating this by calling the driverlib function USBModeConfig with USB_MODE_DEV_VBUS (5) after the library initializes the controller, but it doesn't help. I've tried a number of things and almost completely ruled out the possibility that the timing of my DEVMOD change has anything to do with the problem. Am I misreading what DEVMOD=5 does? The driverlib documentation seems to be consistent with my understanding: "USB_MODE_DEVICE_VBUS enables operating only as a device with monitoring of VBUS pin. This configuration enables disconnect detection while still forcing device mode."
Here's a simplified version of my code:
EnablePeripheral(SYSCTL_PERIPH_USB0); EnablePeripheral(SYSCTL_PERIPH_GPIOB); EnablePeripheral(SYSCTL_PERIPH_GPIOL); GPIOPinTypeGPIOInput(GPIO_PORTB_BASE, GPIO_PIN_0); // ID GPIOPinTypeUSBAnalog(GPIO_PORTB_BASE, GPIO_PIN_1); // VBUS GPIOPinTypeUSBAnalog(GPIO_PORTL_BASE, GPIO_PIN_6 | GPIO_PIN_7); // DP, DM USBStackModeSet(0, eUSBModeDevice, NULL); USBDCDFeatureSet(0, USBLIB_FEATURE_USBPLL, &pllFrequency); // *pllFrequency == 240000000 USBDCDCInit(0, &USB_Cdc_Device); // I do check the return value and it's not NULL USBModeConfig(USB0_BASE, USB_MODE_DEV_VBUS);
It appears that DEVMOD=5 is not correctly forcing ID and the external signal is still being used. If I reconfigure PB0 as USB analog instead of GPIO input, it works when the resistor to ground is removed.
Any ideas?
PS: The datasheet has the wrong reset value for the DEVMOD field. It's actually 3 as shown in the reset value for the entire register.