Changeset dc4c19e in mainline for uspace/lib/usb/src/host/endpoint.c


Ignore:
Timestamp:
2011-04-10T12:18:09Z (14 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60c0573
Parents:
a49e171 (diff), 82e8861 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Development changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/host/endpoint.c

    ra49e171 rdc4c19e  
    3434 */
    3535
     36#include <assert.h>
    3637#include <errno.h>
    3738#include <usb/host/endpoint.h>
     
    4950        instance->max_packet_size = max_packet_size;
    5051        instance->toggle = 0;
    51         link_initialize(&instance->same_device_eps);
     52        instance->active = false;
     53        fibril_mutex_initialize(&instance->guard);
     54        fibril_condvar_initialize(&instance->avail);
    5255        return EOK;
    5356}
     
    5659{
    5760        assert(instance);
    58         list_remove(&instance->same_device_eps);
     61        assert(!instance->active);
    5962        free(instance);
     63}
     64/*----------------------------------------------------------------------------*/
     65void endpoint_use(endpoint_t *instance)
     66{
     67        assert(instance);
     68        fibril_mutex_lock(&instance->guard);
     69        while (instance->active)
     70                fibril_condvar_wait(&instance->avail, &instance->guard);
     71        instance->active = true;
     72        fibril_mutex_unlock(&instance->guard);
     73}
     74/*----------------------------------------------------------------------------*/
     75void endpoint_release(endpoint_t *instance)
     76{
     77        assert(instance);
     78        fibril_mutex_lock(&instance->guard);
     79        instance->active = false;
     80        fibril_mutex_unlock(&instance->guard);
     81        fibril_condvar_signal(&instance->avail);
    6082}
    6183/*----------------------------------------------------------------------------*/
     
    7395}
    7496/*----------------------------------------------------------------------------*/
    75 void endpoint_toggle_reset(link_t *ep)
     97void endpoint_toggle_reset_filtered(endpoint_t *instance, usb_target_t target)
    7698{
    77         endpoint_t *instance =
    78             list_get_instance(ep, endpoint_t, same_device_eps);
    7999        assert(instance);
    80         instance->toggle = 0;
    81 }
    82 /*----------------------------------------------------------------------------*/
    83 void endpoint_toggle_reset_filtered(link_t *ep, usb_endpoint_t epn)
    84 {
    85         endpoint_t *instance =
    86             list_get_instance(ep, endpoint_t, same_device_eps);
    87         assert(instance);
    88         if (instance->endpoint == epn)
     100        if (instance->address == target.address &&
     101            (instance->endpoint == target.endpoint || target.endpoint == 0))
    89102                instance->toggle = 0;
    90103}
Note: See TracChangeset for help on using the changeset viewer.