dmitrystu / libusb_stm32

Lightweight USB device Stack for STM32 microcontrollers
Apache License 2.0
713 stars 163 forks source link

CDC and Serial devices do not work (STM32F429) #45

Closed MohammedNoureldin closed 5 years ago

MohammedNoureldin commented 5 years ago

Hello,

I flashed the code STM32F429 MCU, the HID (mouse) works fine (tested on Linux and Windows). However, CDC and Serial port devices don't work (tested on WIndows) and they are shown with a yellow exclamation mark.

Here are the information I got from windows device manager.

CDC Device:

Status:

The drivers for this device are not installed. (Code 28) There are no compatible drivers for this device.

Events:

Device USB\VID_0483&PID_5740&MI_01\7&118ad3aa&0&0001 was configured. Driver Name: null Class Guid: {00000000-0000-0000-0000-000000000000} Driver Date: Driver Version: Driver Provider: Driver Section: Driver Rank: 0x0 Matching Device Id: Outranked Drivers: Device Updated: false Parent Device: USB\VID_0483&PID_5740\5682CFA2

Serial port:

Status:

This device cannot start. (Code 10) A device which does not exist was specified.

Events:

Driver Management concluded the process to install driver usbser.inf_amd64_6821f829c6b22a54 for Device Instance ID USB\VID_0483&PID_5740&MI_00\7&118AD3AA&0&0000 with the following status: 0x0.

Driver Management has concluded the process to add Service usbser for Device Instance ID USB\VID_0483&PID_5740&MI_00\7&118AD3AA&0&0000 with the following status: 0.

Device USB\VID_0483&PID_5740&MI_00\7&118ad3aa&0&0000 requires further installation.

Do you have any idea what the problem is?

dmitrystu commented 5 years ago

Using usblyzer found that device doesn't answer to the URB_GET_STATUS_FROM_DEVICE request.

MohammedNoureldin commented 5 years ago

Would you fix it, or do you suggest any concrete fix?

dmitrystu commented 5 years ago

Have you tried with last commit? It resolves YB for CDC under WIN10. See ref https://github.com/dmitrystu/libusb_stm32/pull/30

MohammedNoureldin commented 5 years ago

Thank you for the commit. I haven't tried it yet. At the moment I am trying to minimize the code as far as possible to be able to understand it (it is actually relatively complex for me as a beginner in USB driver world).

I will try it tomorrow and give you feedback.

MohammedNoureldin commented 5 years ago

@dmitrystu Sorry for being late. Are you sure that it is working? For me it doesn't. No devices are being detected now, as if I didn't plug any device to USB.

Pausing the execution in debug mode showed that the program is in poll loop, but as said, no device is detected.

dmitrystu commented 5 years ago

Here is an usbview report

[Port2]  :  Составное USB устройство

Is Port User Connectable:         yes
Is Port Debug Capable:            no
Companion Port Number:            14
Companion Hub Symbolic Link Name: USB#ROOT_HUB30#4&369d7e28&0&0#{f18a0e88-c30c-11d0-8815-00a0c906bed8}
Protocols Supported:
 USB 1.1:                         yes
 USB 2.0:                         yes
 USB 3.0:                         no

Device Power State:               PowerDeviceD0

       ---===>Device Information<===---
English product name: "CDC Loopback demo"

ConnectionStatus:                  
Current Config Value:              0x01  -> Device Bus Speed: Full (is not SuperSpeed or higher capable)
Device Address:                    0x05
Open Pipes:                           4

          ===>Device Descriptor<===
bLength:                           0x12
bDescriptorType:                   0x01
bcdUSB:                          0x0200
bDeviceClass:                      0x00
*!*ERROR: device class should be Multi-interface Function 0xEF
          When IAD descriptor is used
bDeviceSubClass:                   0x00
*!*ERROR: device SubClass should be USB Common Sub Class 2
          When IAD descriptor is used
bDeviceProtocol:                   0x00
*!*ERROR: device Protocol should be USB IAD Protocol 1
          When IAD descriptor is used
bMaxPacketSize0:                   0x08 = (8) Bytes
idVendor:                        0x0483 = STMicroelectronics
idProduct:                       0x5740
bcdDevice:                       0x0100
iManufacturer:                     0x01
     English (United States)  "Open source USB stack for STM32"
iProduct:                          0x02
     English (United States)  "CDC Loopback demo"
iSerialNumber:                     0xFE
     English (United States)  "E15E4D9F"
bNumConfigurations:                0x01

          ---===>Open Pipes<===---

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x82  -> Direction: IN - EndpointID: 2
bmAttributes:                      0x03  -> Interrupt Transfer Type
wMaxPacketSize:                  0x0008 = 0x08 bytes
bInterval:                         0xFF

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x83  -> Direction: IN - EndpointID: 3
bmAttributes:                      0x03  -> Interrupt Transfer Type
wMaxPacketSize:                  0x0010 = 0x10 bytes
bInterval:                         0x32

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x01  -> Direction: OUT - EndpointID: 1
bmAttributes:                      0x02  -> Bulk Transfer Type
wMaxPacketSize:                  0x0040 = 0x40 bytes
bInterval:                         0x01

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x81  -> Direction: IN - EndpointID: 1
bmAttributes:                      0x02  -> Bulk Transfer Type
wMaxPacketSize:                  0x0040 = 0x40 bytes
bInterval:                         0x01

       ---===>Full Configuration Descriptor<===---

          ===>Configuration Descriptor<===
bLength:                           0x09
bDescriptorType:                   0x02
wTotalLength:                    0x0064  -> Validated
bNumInterfaces:                    0x03
bConfigurationValue:               0x01
iConfiguration:                    0x00
bmAttributes:                      0xC0  -> Self Powered
MaxPower:                          0x32 = 100 mA

          ===>IAD Descriptor<===
bLength:                           0x08
bDescriptorType:                   0x0B
bFirstInterface:                   0x00
bInterfaceCount:                   0x02
bFunctionClass:                    0x02  -> This is Communications (CDC Control) USB Device Interface Class
bFunctionSubClass:                 0x02
bFunctionProtocol:                 0x00
iFunction:                         0x00

          ===>Interface Descriptor<===
bLength:                           0x09
bDescriptorType:                   0x04
bInterfaceNumber:                  0x00
bAlternateSetting:                 0x00
bNumEndpoints:                     0x01
bInterfaceClass:                   0x02  -> This is Communications (CDC Control) USB Device Interface Class
bInterfaceSubClass:                0x02
bInterfaceProtocol:                0x00
iInterface:                        0x00
  -> This is a Communications (CDC Control) USB Device Interface Class

          ===>Descriptor Hex Dump<===
bLength:                           0x05
bDescriptorType:                   0x24
05 24 00 10 01 
  -> This is a Communications (CDC Control) USB Device Interface Class

          ===>Descriptor Hex Dump<===
bLength:                           0x05
bDescriptorType:                   0x24
05 24 01 00 01 
  -> This is a Communications (CDC Control) USB Device Interface Class

          ===>Descriptor Hex Dump<===
bLength:                           0x04
bDescriptorType:                   0x24
04 24 02 00 
  -> This is a Communications (CDC Control) USB Device Interface Class

          ===>Descriptor Hex Dump<===
bLength:                           0x05
bDescriptorType:                   0x24
05 24 06 00 01 

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x82  -> Direction: IN - EndpointID: 2
bmAttributes:                      0x03  -> Interrupt Transfer Type
wMaxPacketSize:                  0x0008 = 0x08 bytes
bInterval:                         0xFF

          ===>Interface Descriptor<===
bLength:                           0x09
bDescriptorType:                   0x04
bInterfaceNumber:                  0x01
bAlternateSetting:                 0x00
bNumEndpoints:                     0x02
bInterfaceClass:                   0x0A  -> This is a CDC Data USB Device Interface Class
bInterfaceSubClass:                0x00
bInterfaceProtocol:                0x00
iInterface:                        0x00

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x01  -> Direction: OUT - EndpointID: 1
bmAttributes:                      0x02  -> Bulk Transfer Type
wMaxPacketSize:                  0x0040 = 0x40 bytes
bInterval:                         0x01

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x81  -> Direction: IN - EndpointID: 1
bmAttributes:                      0x02  -> Bulk Transfer Type
wMaxPacketSize:                  0x0040 = 0x40 bytes
bInterval:                         0x01

          ===>Interface Descriptor<===
bLength:                           0x09
bDescriptorType:                   0x04
bInterfaceNumber:                  0x02
bAlternateSetting:                 0x00
bNumEndpoints:                     0x01
bInterfaceClass:                   0x03  -> HID Interface Class
bInterfaceSubClass:                0x00
bInterfaceProtocol:                0x00
iInterface:                        0x00

          ===>HID Descriptor<===
bLength:                           0x09
bDescriptorType:                   0x21
bcdHID:                          0x0100
bCountryCode:                      0x00
bNumDescriptors:                   0x01
bDescriptorType:                   0x22 (Report Descriptor)
wDescriptorLength:               0x0030

          ===>Endpoint Descriptor<===
bLength:                           0x07
bDescriptorType:                   0x05
bEndpointAddress:                  0x83  -> Direction: IN - EndpointID: 3
bmAttributes:                      0x03  -> Interrupt Transfer Type
wMaxPacketSize:                  0x0010 = 0x10 bytes
bInterval:                         0x32

OOPS. Some errors detected but no YB for the device in the device manager

MohammedNoureldin commented 5 years ago

How did you detect those errors? I am very interested to know how you debug your USB firmware (as I cannot afford a $1000 hardware analyzer).

dmitrystu commented 5 years ago

usbview is a part of the windows-10-sdk (debug) usblyzer also is very useful software for Windows. (30 days free trial) But i prefer the usbmon+wireshark under Linux.

MohammedNoureldin commented 5 years ago

Thank you! I use the same software also.

Do you have any idea how to solve that?

Actually this part of bugs is very advance (at least for me), as I said before, I am very new to USB and trying to read your library and try to understand every details in it. I am going forward very very slowly (10 lines per day), but at least I am moving.

dmitrystu commented 5 years ago

Try to set BKP at the cdc_getdesc entry point and inspect request data.

MohammedNoureldin commented 5 years ago

The descriptor fix did not help, I will try tomorrow when I come back home to set a break point and inspect the request data.

Actually setting break point during debugging USB is a pain, because the protocol is very time strict, so every time I need to reset the program and start over and over. Do you have any tip to debug it more efficiently?

dmitrystu commented 5 years ago

Typical USB enumeration process is

Reset -> Probe Device Descriptor -> Set Address -> Read Device Descriptor -> Read Device Qualifier -> Read Configuration Descriptor -> Read Strings -> Set Configuration
MohammedNoureldin commented 5 years ago

Excuse me, till now I were not able to solve the issue. Actually I am still analyzing the whole code trying to understand it. Could you take another look on it? maybe you find something which can solve the issue.

I hava a relevant question, I always see at the beginning of enumeration a non completed Get_Dev_Desc response. Actually the host seems to receive the first 16 bytes (instead of 18) and immediately resets the device before receiving the reset of the data (analyzing on Linux using Wireshark). Is this normal?

dmitrystu commented 5 years ago

Checked from latest master on my NUCLEO-F429ZI. Found no problems with both FS and HS(in FS mode) under Linux and Win10.

No.     Time           Source                Destination           Protocol Length Info
     47 6.250988       host                  2.2.0                 USBHUB   64     GET_STATUS Request     [Port 5]
     48 6.251078       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     49 6.251089       host                  2.2.0                 USBHUB   64     CLEAR_FEATURE Request  [Port 5: C_PORT_CONNECTION]
     50 6.251198       2.2.0                 host                  USBHUB   64     CLEAR_FEATURE Response [Port 5: C_PORT_CONNECTION]
     51 6.251208       host                  2.2.0                 USBHUB   64     GET_STATUS Request     [Port 5]
     52 6.251324       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     53 6.286131       host                  2.2.0                 USBHUB   64     GET_STATUS Request     [Port 5]
     54 6.286205       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     55 6.322125       host                  2.2.0                 USBHUB   64     GET_STATUS Request     [Port 5]
     56 6.322204       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     57 6.358121       host                  2.2.0                 USBHUB   64     GET_STATUS Request     [Port 5]
     58 6.358191       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     59 6.394129       host                  2.2.0                 USBHUB   64     GET_STATUS Request     [Port 5]
     60 6.394222       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     61 6.394248       host                  2.2.0                 USBHUB   64     SET_FEATURE Request    [Port 5: PORT_RESET]
     62 6.394349       2.2.0                 host                  USBHUB   64     SET_FEATURE Response   [Port 5: PORT_RESET]
     64 6.414193       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     65 6.414206       host                  2.2.0                 USBHUB   64     CLEAR_FEATURE Request  [Port 5: C_PORT_RESET]
     66 6.414314       2.2.0                 host                  USBHUB   64     CLEAR_FEATURE Response [Port 5: C_PORT_RESET]
     67 6.474146       host                  2.0.0                 USB      64     GET DESCRIPTOR Request DEVICE
     68 6.474346       2.0.0                 host                  USB      72     GET DESCRIPTOR Response DEVICE[Malformed Packet]
     69 6.474365       host                  2.2.0                 USBHUB   64     SET_FEATURE Request    [Port 5: PORT_RESET]
     70 6.474473       2.2.0                 host                  USBHUB   64     SET_FEATURE Response   [Port 5: PORT_RESET]
     71 6.494137       host                  2.2.0                 USBHUB   64     GET_STATUS Request     [Port 5]
     72 6.494228       2.2.0                 host                  USBHUB   68     GET_STATUS Response    [Port 5]
     73 6.494254       host                  2.2.0                 USBHUB   64     CLEAR_FEATURE Request  [Port 5: C_PORT_RESET]
     74 6.494348       2.2.0                 host                  USBHUB   64     CLEAR_FEATURE Response [Port 5: C_PORT_RESET]
     75 6.554127       host                  2.0.0                 USB      64     SET ADDRESS Request
     76 6.554227       2.0.0                 host                  USB      64     SET ADDRESS Response
     77 6.582131       host                  2.26.0                USB      64     GET DESCRIPTOR Request DEVICE
     78 6.582353       2.26.0                host                  USB      82     GET DESCRIPTOR Response DEVICE
     79 6.582373       host                  2.26.0                USB      64     GET DESCRIPTOR Request DEVICE QUALIFIER
     80 6.582478       2.26.0                host                  USB      64     GET DESCRIPTOR Response
     81 6.582494       host                  2.26.0                USB      64     GET DESCRIPTOR Request DEVICE QUALIFIER
     82 6.582852       2.26.0                host                  USB      64     GET DESCRIPTOR Response
     83 6.582869       host                  2.26.0                USB      64     GET DESCRIPTOR Request DEVICE QUALIFIER
     84 6.583195       2.26.0                host                  USB      64     GET DESCRIPTOR Response
     85 6.583214       host                  2.26.0                USB      64     GET DESCRIPTOR Request CONFIGURATION
     86 6.583567       2.26.0                host                  USB      73     GET DESCRIPTOR Response CONFIGURATION
     87 6.583575       host                  2.26.0                USB      64     GET DESCRIPTOR Request CONFIGURATION
     88 6.583942       2.26.0                host                  USB      164    GET DESCRIPTOR Response CONFIGURATION
     89 6.583954       host                  2.26.0                USB      64     GET DESCRIPTOR Request STRING
     90 6.584099       2.26.0                host                  USB      68     GET DESCRIPTOR Response STRING
     91 6.584116       host                  2.26.0                USB      64     GET DESCRIPTOR Request STRING
     92 6.584350       2.26.0                host                  USB      100    GET DESCRIPTOR Response STRING
     93 6.584368       host                  2.26.0                USB      64     GET DESCRIPTOR Request STRING
     94 6.584581       2.26.0                host                  USB      128    GET DESCRIPTOR Response STRING
     95 6.584592       host                  2.26.0                USB      64     GET DESCRIPTOR Request STRING
     96 6.584693       2.26.0                host                  USB      82     GET DESCRIPTOR Response STRING
     97 6.584872       host                  2.26.0                USB      64     SET CONFIGURATION Request
     98 6.585068       2.26.0                host                  USB      64     SET CONFIGURATION Response
     99 6.585155       host                  2.26.0                USBCOM   71     SET LINE CODING Request
    100 6.585319       2.26.0                host                  USB      64     URB_CONTROL out
    101 6.586831       host                  2.26.0                USB      64     GET DESCRIPTOR Request STRING
    102 6.587083       2.26.0                host                  USB      82     GET DESCRIPTOR Response STRING
    103 6.587100       host                  2.26.0                USBHID   64     SET_IDLE Request
    104 6.587193       2.26.0                host                  USBHID   64     SET_IDLE Response
    105 6.587200       host                  2.26.0                USBHID   64     GET DESCRIPTOR Request HID Report
    106 6.587442       2.26.0                host                  USBHID   112    GET DESCRIPTOR Response HID Report
    107 6.587870       host                  2.26.3                USB      64     URB_INTERRUPT in
    108 6.609196       2.26.3                host                  USB      64     URB_INTERRUPT in
    109 6.609202       host                  2.26.3                USB      64     URB_INTERRUPT in
    110 6.641196       2.26.3                host                  USB      67     URB_INTERRUPT in

Pkts 67 and 68 is a device probing.

MohammedNoureldin commented 5 years ago

So everything works properly with you? I will re check it now, maybe you have committed something in the latest days which fixed the problem.

What do you mean by device probing? is this the same as enumeration?

dmitrystu commented 5 years ago

AFAIK this is the part of the enumeration process. Probing device before address setup.

MohammedNoureldin commented 5 years ago

Oh! The devices are there now, it was my fault apparently, I just deleted everything and recreated the project and everything now is recognizable.

I still have one question please then I will close the thread.

Why do you always read and write the data from and into the FIFO ONLY to the very beginning address? Could you provide any readable resources about this please? So what happens exactly when I read or write from/to the very beginning address in contrast to other addresses in FIFO range?

dmitrystu commented 5 years ago

This is not a real FIFO. Just only loopback buffer.

RX Host data A -> Dev: A|XXXXXXX
RX Host data B -> Dev: AB|XXXXXX
TX Dev data -> Host:   B|XXXXXXX  Data A transfer
RX Host data C -> Dev: BC|XXXXXX
RX Host data D -> Dev: BCD|XXXXX
TX Dev data -> Host:   CD|XXXXXX  Data B transfer
TX Dev data -> Host:   D|XXXXXXX  Data C transfer

This shifts buffer after passing data to the TX endpoint. And from host point of view, you have First-In-First-Out data flow.

MohammedNoureldin commented 5 years ago

I will close the issue as the problem has been resolved in your last commit.

Just about my last question, I meant reading and writing to the FIFO generally in ep_write and ep_read functions respectively:

This part:

while (_len--) {
    *_fifo = *(__attribute__((packed)) uint32_t*)buf;
    buf += 4;
}

and this part:

for (unsigned i = 0; i < len; i +=4) {
    uint32_t _t = *fifo;
    if (blen >= 4) {
        *(__attribute__((packed))uint32_t*)buf = _t;
        blen -= 4;
        buf += 4;
    }

As seen from above, the pointer to the FIFO is not being moved at all. How does this work?

As I expect, in read case, by reading the data from the very first address of the FIFO, the data are being popped and shifted one address back to the very first address in the FIFO automatically. In write case, as long the endpoint is enabled, the data written to the first address of the FIFO will be immediately sent and will not be stacked or kept in the FIFO (i.e. when I write then to the very first address, they will be sent and removed from the FIFO).

Are those mechanisms correct? If yes or no, could you tell me please where I can find this mechanism in the reference manual or in any other resource? And what will happen if I read or write the data to any address in the FIFO other than the first address?

dmitrystu commented 5 years ago

You can read about USB-OTG hardware FIFO's in the corresponded datasheet. For instance RM0090, Article 34.10 USB data FIFOs.

MohammedNoureldin commented 5 years ago

I did it already, though the point I mentioned is not well explained in the reference manual. Anyway, it is a different topic and I do not want to go further away from the topic of this thread. Thank you!