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

USB-CDC-driver hangs in USBD_Write

Hi,
I encountered problems using the USB-CDC-example out of the Atmel software package 1.5 with an AT91SAM9260.
Sometimes, when sending data using USBD_Write, the USB driver hangs in the function/define SET_CSR waiting for the AT91C_UDP_TXPKTRDY flag.
Other times, USBD_Write returns USBD_STATUS_LOCKED all times, while receiving data works fine.

char USBD_Write(unsigned char eptnum,
                const void *data,
                unsigned int size,
                TransferCallback callback,
                void *argument)
{
    Endpoint *endpoint = &(endpoints[eptnum]);
    Transfer *transfer = &(endpoint->transfer);

    // Check that the endpoint is in Idle state
    if (endpoint->state != UDP_ENDPOINT_IDLE) {
        return USBD_STATUS_LOCKED;
    }

    trace_LOG(trace_INFO, "Write%d(%u) ", eptnum, size);

    // Setup the transfer descriptor
    transfer->data = (char *) data;
    transfer->remaining = size;
    transfer->buffered = 0;
    transfer->transferred = 0;
    transfer->callback = callback;
    transfer->argument = argument;

    // Send the first packet
    endpoint->state = UDP_ENDPOINT_SENDING;
    while((AT91C_BASE_UDP->UDP_CSR[eptnum]&AT91C_UDP_TXPKTRDY)==AT91C_UDP_TXPKTRDY);
    UDP_WritePayload(eptnum);
    SET_CSR(eptnum, AT91C_UDP_TXPKTRDY);

    // If double buffering is enabled and there is data remaining,
    // prepare another packet
    if ((BOARD_USB_ENDPOINTS_BANKS(eptnum) > 1) && (transfer->remaining > 0)) {

        UDP_WritePayload(eptnum);
    }

    // Enable interrupt on endpoint
    AT91C_BASE_UDP->UDP_IER = 1 << eptnum;

    return USBD_STATUS_SUCCESS;
}

Does someone else have similar problems?

And another question concerning the USB-CDC-driver: Under WinXP usbser.sys is used as driver for the device and it can be used as a serial port. When connecting to the port (e.g. by HTerm) and then resetting the board, the connection can not be established again, until the device is plugged out and in again. Is this a problem of the USB-CDC-driver on the device or a generic problem of the windows driver?

Parents
  • Hi Stefan,

    Thank you for posting your solution.

    I ended up going about fixing the bug differently than your solution, because I am concerned about performance hits from using a larger function like that to replace the short macro, and I'm not sure how to handle the situation where the timeout does occur.

    Noting that the datasheet states that a fixed delay should be used when code execution can be preempted, I added an interrupt lock around the USB packet sending code which includes SET_CSR. This has solved the problem for me.

    Right now I'm locking interrupts around most of the packet sending code in USBD_Write. I think I made the critical section longer than it needs to be; I could probably just lock interrupts around the SET_CSR macro itself and then the performance effect would be negligible. Interestingly, I don't get lockups in other functions which use the SET_CSR macro, even though I'm not preventing preemption in those cases.

    -Steven

Reply
  • Hi Stefan,

    Thank you for posting your solution.

    I ended up going about fixing the bug differently than your solution, because I am concerned about performance hits from using a larger function like that to replace the short macro, and I'm not sure how to handle the situation where the timeout does occur.

    Noting that the datasheet states that a fixed delay should be used when code execution can be preempted, I added an interrupt lock around the USB packet sending code which includes SET_CSR. This has solved the problem for me.

    Right now I'm locking interrupts around most of the packet sending code in USBD_Write. I think I made the critical section longer than it needs to be; I could probably just lock interrupts around the SET_CSR macro itself and then the performance effect would be negligible. Interestingly, I don't get lockups in other functions which use the SET_CSR macro, even though I'm not preventing preemption in those cases.

    -Steven

Children