This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Bug in HS USB device driver for STM32F4xxx (Middleware)

There's a nasty bug hidden in USBD_HS_STM32F4xx.c driver code.
It ALWAYS enables on-chip HSUSB PHY even if device is configured to use external PHY,
making PB15 wrongly routed to PHY instead of another configured peripheral (SPI2 MOSI in my case).

Fix is very simple:

static int32_t USBD_DeviceConnect (void) {
  if (!(otg_hs_state & OTG_HS_USBD_DRIVER_POWERED) ) { return ARM_DRIVER_ERROR; }
  if (  otg_hs_state & OTG_HS_USBD_DRIVER_CONNECTED) { return ARM_DRIVER_OK; }

  OTG->DCTL    &= ~OTG_HS_DCTL_SDIS;    // Soft disconnect disabled
#ifndef RTE_USB_OTG_HS_PHY
  OTG->GCCFG   |=  OTG_HS_GCCFG_PWRDWN;
#endif

  otg_hs_state |=  OTG_HS_USBD_DRIVER_CONNECTED;
  return ARM_DRIVER_OK;
}

It caused me a lot of headache, so I would like to share it with anyone that might have the similar
problem.

Parents
  • Sorry, but you got it wrong. It is not pin configuration that is wrong.
    I configured pins correctly and it works as supposed as long as USB controller's
    PHY is disabled but as soon as you enable it, it tooks control over PB15 regardless of
    how GPIO pin function is programmed... I can send you sample project for MCBSTM32F400 and you
    can check it for yourself.

Reply
  • Sorry, but you got it wrong. It is not pin configuration that is wrong.
    I configured pins correctly and it works as supposed as long as USB controller's
    PHY is disabled but as soon as you enable it, it tooks control over PB15 regardless of
    how GPIO pin function is programmed... I can send you sample project for MCBSTM32F400 and you
    can check it for yourself.

Children