Changeset d60115a in mainline
- Timestamp:
- 2018-01-17T17:55:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8ad2b0a
- Parents:
- ed8575f
- git-author:
- Ondřej Hlavatý <aearsis@…> (2018-01-17 17:54:31)
- git-committer:
- Ondřej Hlavatý <aearsis@…> (2018-01-17 17:55:35)
- Location:
- uspace/drv/bus/usb/ohci
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/endpoint_list.c
red8575f rd60115a 108 108 /* There are active EDs, get the last one */ 109 109 ohci_endpoint_t *last = list_get_instance( 110 list_last(&instance->endpoint_list), ohci_endpoint_t, link);110 list_last(&instance->endpoint_list), ohci_endpoint_t, eplist_link); 111 111 last_ed = last->ed; 112 112 } … … 122 122 123 123 /* Add to the sw list */ 124 list_append(&ep-> link, &instance->endpoint_list);124 list_append(&ep->eplist_link, &instance->endpoint_list); 125 125 126 126 ohci_endpoint_t *first = list_get_instance( 127 list_first(&instance->endpoint_list), ohci_endpoint_t, link);127 list_first(&instance->endpoint_list), ohci_endpoint_t, eplist_link); 128 128 usb_log_debug("HCD EP(%p) added to list %s, first is %p(%p).", 129 129 ep, instance->name, first, first->ed); … … 156 156 ed_t *prev_ed; 157 157 /* Remove from the hardware queue */ 158 if (list_first(&instance->endpoint_list) == &ep-> link) {158 if (list_first(&instance->endpoint_list) == &ep->eplist_link) { 159 159 /* I'm the first one here */ 160 160 prev_ed = instance->list_head; … … 162 162 } else { 163 163 ohci_endpoint_t *prev = 164 list_get_instance(ep-> link.prev, ohci_endpoint_t,link);164 list_get_instance(ep->eplist_link.prev, ohci_endpoint_t, eplist_link); 165 165 prev_ed = prev->ed; 166 166 qpos = "NOT FIRST"; … … 175 175 176 176 /* Remove from the endpoint list */ 177 list_remove(&ep-> link);177 list_remove(&ep->eplist_link); 178 178 fibril_mutex_unlock(&instance->guard); 179 179 } -
uspace/drv/bus/usb/ohci/hc.c
red8575f rd60115a 168 168 hw_res->mem_ranges.ranges[0].size); 169 169 170 list_initialize(&instance->pending_ batches);170 list_initialize(&instance->pending_endpoints); 171 171 fibril_mutex_initialize(&instance->guard); 172 172 … … 304 304 return err; 305 305 306 fibril_mutex_lock(&hc->guard); 307 list_append(&ohci_batch->link, &hc->pending_batches); 306 endpoint_t *ep = batch->ep; 307 ohci_endpoint_t * const ohci_ep = ohci_endpoint_get(ep); 308 309 /* creating local reference */ 310 endpoint_add_ref(ep); 311 312 fibril_mutex_lock(&ep->guard); 313 endpoint_activate_locked(ep, batch); 308 314 ohci_transfer_batch_commit(ohci_batch); 315 fibril_mutex_unlock(&ep->guard); 309 316 310 317 /* Control and bulk schedules need a kick to start working */ … … 320 327 break; 321 328 } 329 330 fibril_mutex_lock(&hc->guard); 331 list_append(&ohci_ep->pending_link, &hc->pending_endpoints); 322 332 fibril_mutex_unlock(&hc->guard); 333 323 334 return EOK; 324 335 } … … 353 364 OHCI_RD(hc->registers->periodic_current)); 354 365 355 link_t *current = list_first(&hc->pending_batches); 356 while (current && current != &hc->pending_batches.head) { 357 link_t *next = current->next; 358 ohci_transfer_batch_t *batch = 359 ohci_transfer_batch_from_link(current); 366 list_foreach_safe(hc->pending_endpoints, current, next) { 367 ohci_endpoint_t *ep 368 = list_get_instance(current, ohci_endpoint_t, pending_link); 369 370 fibril_mutex_lock(&ep->base.guard); 371 ohci_transfer_batch_t *batch 372 = ohci_transfer_batch_get(ep->base.active_batch); 373 assert(batch); 360 374 361 375 if (ohci_transfer_batch_check_completed(batch)) { 376 endpoint_deactivate_locked(&ep->base); 362 377 list_remove(current); 378 endpoint_del_ref(&ep->base); 363 379 usb_transfer_batch_finish(&batch->base); 364 380 } 365 366 current = next; 381 fibril_mutex_unlock(&ep->base.guard); 367 382 } 368 383 fibril_mutex_unlock(&hc->guard); -
uspace/drv/bus/usb/ohci/hc.h
red8575f rd60115a 70 70 endpoint_list_t lists[4]; 71 71 72 /** List of active transfers */73 list_t pending_ batches;72 /** List of active endpoints */ 73 list_t pending_endpoints; 74 74 75 75 /** Guards schedule and endpoint manipulation */ -
uspace/drv/bus/usb/ohci/main.c
red8575f rd60115a 39 39 #include <errno.h> 40 40 #include <io/log.h> 41 #include <io/logctl.h> 41 42 #include <str_error.h> 42 43 … … 72 73 { 73 74 log_init(NAME); 75 logctl_set_log_level(NAME, LVL_DEBUG2); 74 76 return hc_driver_main(&ohci_driver); 75 77 } -
uspace/drv/bus/usb/ohci/ohci_batch.c
red8575f rd60115a 88 88 89 89 usb_transfer_batch_init(&ohci_batch->base, ep); 90 link_initialize(&ohci_batch->link);91 90 92 91 return ohci_batch; -
uspace/drv/bus/usb/ohci/ohci_batch.h
red8575f rd60115a 47 47 usb_transfer_batch_t base; 48 48 49 /** Link */50 link_t link;51 49 /** Endpoint descriptor of the target endpoint. */ 52 50 ed_t *ed; … … 65 63 void ohci_transfer_batch_destroy(ohci_transfer_batch_t *ohci_batch); 66 64 67 static inline ohci_transfer_batch_t *ohci_transfer_batch_from_link(link_t *l)68 {69 assert(l);70 return list_get_instance(l, ohci_transfer_batch_t, link);71 }72 73 65 static inline ohci_transfer_batch_t * ohci_transfer_batch_get(usb_transfer_batch_t *usb_batch) 74 66 { -
uspace/drv/bus/usb/ohci/ohci_bus.c
red8575f rd60115a 82 82 } 83 83 84 link_initialize(&ohci_ep->link); 84 link_initialize(&ohci_ep->eplist_link); 85 link_initialize(&ohci_ep->pending_link); 85 86 return &ohci_ep->base; 86 87 } … … 120 121 static void ohci_unregister_ep(endpoint_t *ep) 121 122 { 122 ohci_bus_t *bus = (ohci_bus_t *) endpoint_get_bus(ep); 123 ohci_bus_t * const bus = (ohci_bus_t *) endpoint_get_bus(ep); 124 hc_t * const hc = bus->hc; 123 125 assert(ep); 124 126 125 127 usb2_bus_ops.endpoint_unregister(ep); 126 128 hc_dequeue_endpoint(bus->hc, ep); 129 130 ohci_endpoint_t * const ohci_ep = ohci_endpoint_get(ep); 131 132 /* 133 * Now we can be sure the active transfer will not be completed. But first, 134 * make sure that the handling fibril won't use its link in pending list. 135 */ 136 fibril_mutex_lock(&hc->guard); 137 if (link_in_use(&ohci_ep->pending_link)) 138 /* pending list reference */ 139 endpoint_del_ref(ep); 140 list_remove(&ohci_ep->pending_link); 141 fibril_mutex_unlock(&hc->guard); 142 143 /* 144 * Finally, the endpoint shall not be used anywhere else. Finish the 145 * pending batch. 146 */ 147 fibril_mutex_lock(&ep->guard); 148 usb_transfer_batch_t * const batch = ep->active_batch; 149 endpoint_deactivate_locked(ep); 150 fibril_mutex_unlock(&ep->guard); 151 152 if (batch) { 153 batch->error = EINTR; 154 batch->transfered_size = 0; 155 usb_transfer_batch_finish(batch); 156 } 127 157 } 128 158 -
uspace/drv/bus/usb/ohci/ohci_bus.h
red8575f rd60115a 51 51 /** Currently enqueued transfer descriptor */ 52 52 td_t *td; 53 /** Linked list used by driver software */ 54 link_t link; 53 /** Link in endpoint_list*/ 54 link_t eplist_link; 55 /** Link in pending_endpoints */ 56 link_t pending_link; 55 57 } ohci_endpoint_t; 56 58
Note:
See TracChangeset
for help on using the changeset viewer.