Changeset dc4c19e in mainline for uspace/lib/usb/src/host/endpoint.c
- Timestamp:
- 2011-04-10T12:18:09Z (14 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/host/endpoint.c
ra49e171 rdc4c19e 34 34 */ 35 35 36 #include <assert.h> 36 37 #include <errno.h> 37 38 #include <usb/host/endpoint.h> … … 49 50 instance->max_packet_size = max_packet_size; 50 51 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); 52 55 return EOK; 53 56 } … … 56 59 { 57 60 assert(instance); 58 list_remove(&instance->same_device_eps);61 assert(!instance->active); 59 62 free(instance); 63 } 64 /*----------------------------------------------------------------------------*/ 65 void 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 /*----------------------------------------------------------------------------*/ 75 void 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); 60 82 } 61 83 /*----------------------------------------------------------------------------*/ … … 73 95 } 74 96 /*----------------------------------------------------------------------------*/ 75 void endpoint_toggle_reset (link_t *ep)97 void endpoint_toggle_reset_filtered(endpoint_t *instance, usb_target_t target) 76 98 { 77 endpoint_t *instance =78 list_get_instance(ep, endpoint_t, same_device_eps);79 99 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)) 89 102 instance->toggle = 0; 90 103 }
Note:
See TracChangeset
for help on using the changeset viewer.