Changeset 4abc304 in mainline
- Timestamp:
- 2011-02-28T11:55:36Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dced52a
- Parents:
- 299d53e
- Location:
- uspace/drv/uhci-hcd
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/drv/uhci-hcd/batch.c ¶
r299d53e r4abc304 134 134 135 135 queue_head_element_td(instance->qh, addr_to_phys(instance->tds)); 136 usb_log_debug("Batch(%p) %d:%d memory structures ready.\n", 137 instance, target.address, target.endpoint); 136 138 return instance; 137 139 } … … 196 198 197 199 instance->tds[i].status |= TD_STATUS_COMPLETE_INTERRUPT_FLAG; 198 usb_log_debug ("Control write last TD status: %x.\n",200 usb_log_debug2("Control write last TD status: %x.\n", 199 201 instance->tds[i].status); 200 202 201 203 instance->next_step = batch_call_out_and_dispose; 204 usb_log_debug("Batch(%p) CONTROL WRITE initialized.\n", instance); 202 205 batch_schedule(instance); 203 206 } … … 232 235 233 236 instance->tds[i].status |= TD_STATUS_COMPLETE_INTERRUPT_FLAG; 234 usb_log_debug ("Control read last TD status: %x.\n",237 usb_log_debug2("Control read last TD status: %x.\n", 235 238 instance->tds[i].status); 236 239 237 240 instance->next_step = batch_call_in_and_dispose; 241 usb_log_debug("Batch(%p) CONTROL READ initialized.\n", instance); 238 242 batch_schedule(instance); 239 243 } … … 261 265 262 266 instance->next_step = batch_call_in_and_dispose; 267 usb_log_debug("Batch(%p) INTERRUPT IN initialized.\n", instance); 263 268 batch_schedule(instance); 264 269 } … … 288 293 289 294 instance->next_step = batch_call_out_and_dispose; 295 usb_log_debug("Batch(%p) INTERRUPT OUT initialized.\n", instance); 290 296 batch_schedule(instance); 291 297 } … … 299 305 300 306 int err = instance->error; 301 usb_log_ info("Batch(%p) callback IN(type:%d): %s(%d), %zu.\n",307 usb_log_debug("Batch(%p) callback IN(type:%d): %s(%d), %zu.\n", 302 308 instance, instance->transfer_type, str_error(err), err, 303 309 instance->transfered_size); … … 314 320 315 321 int err = instance->error; 316 usb_log_ info("Batch(%p) callback OUT(type:%d): %s(%d).\n",322 usb_log_debug("Batch(%p) callback OUT(type:%d): %s(%d).\n", 317 323 instance, instance->transfer_type, str_error(err), err); 318 324 instance->callback_out(instance->fun, -
TabularUnified uspace/drv/uhci-hcd/pci.c ¶
r299d53e r4abc304 85 85 irq = res->res.interrupt.irq; 86 86 irq_found = true; 87 usb_log_debug ("Found interrupt: %d.\n", irq);87 usb_log_debug2("Found interrupt: %d.\n", irq); 88 88 break; 89 89 case IO_RANGE: 90 90 io_address = res->res.io_range.address; 91 91 io_size = res->res.io_range.size; 92 usb_log_debug ("Found io: %llx %zu%zu.\n",93 res->res.io_range.address, res->res.io_range.size , io_size);92 usb_log_debug2("Found io: %llx %zu.\n", 93 res->res.io_range.address, res->res.io_range.size); 94 94 io_found = true; 95 95 break; -
TabularUnified uspace/drv/uhci-hcd/root_hub.c ¶
r299d53e r4abc304 34 34 #include <assert.h> 35 35 #include <errno.h> 36 #include <str_error.h> 36 37 #include <stdio.h> 37 38 #include <ops/hw_res.h> … … 118 119 { 119 120 assert(fun); 121 assert(hc); 120 122 int ret; 121 123 … … 136 138 ret = ddf_fun_add_match_id(hub, match_str, 100); 137 139 if (ret != EOK) { 138 usb_log_error("Failed to add root hub match id.\n"); 140 usb_log_error("Failed(%d) to add root hub match id: %s\n", 141 ret, str_error(ret)); 139 142 ddf_fun_destroy(hub); 140 return ENOMEM;143 return ret; 141 144 } 142 145 -
TabularUnified uspace/drv/uhci-hcd/transfer_list.c ¶
r299d53e r4abc304 70 70 assert(instance); 71 71 assert(batch); 72 usb_log_debug ("Adding batch(%p) to queue %s.\n", batch, instance->name);72 usb_log_debug2("Adding batch(%p) to queue %s.\n", batch, instance->name); 73 73 74 74 uint32_t pa = (uintptr_t)addr_to_phys(batch->qh); … … 84 84 list_append(&batch->link, &instance->batch_list); 85 85 instance->queue_head->element = pa; 86 usb_log_debug 2("Added batch(%p)to queue %s first.\n",86 usb_log_debug("Batch(%p) added to queue %s first.\n", 87 87 batch, instance->name); 88 88 fibril_mutex_unlock(&instance->guard); … … 97 97 queue_head_append_qh(last->qh, pa); 98 98 list_append(&batch->link, &instance->batch_list); 99 usb_log_debug 2("Added batch(%p)to queue %s last, first is %p.\n",99 usb_log_debug("Batch(%p) added to queue %s last, first is %p.\n", 100 100 batch, instance->name, first ); 101 101 fibril_mutex_unlock(&instance->guard); … … 109 109 assert(instance->queue_head); 110 110 assert(batch->qh); 111 usb_log_debug2("Removing batch(%p) from queue %s.\n", batch, instance->name); 111 112 112 113 /* I'm the first one here */ 113 114 if (batch->link.prev == &instance->batch_list) { 114 usb_log_debug(" Removing batch %p was first, next element %x.\n",115 batch, batch->qh->next_queue);115 usb_log_debug("Batch(%p) removed (FIRST) from queue %s, next element %x.\n", 116 batch, instance->name, batch->qh->next_queue); 116 117 instance->queue_head->element = batch->qh->next_queue; 117 118 } else { 118 usb_log_debug(" Removing batch %p was NOT first, next element %x.\n",119 batch, batch->qh->next_queue);119 usb_log_debug("Batch(%p) removed (NOT FIRST) from queue, next element %x.\n", 120 batch, instance->name, batch->qh->next_queue); 120 121 batch_t *prev = list_get_instance(batch->link.prev, batch_t, link); 121 122 prev->qh->next_queue = batch->qh->next_queue; -
TabularUnified uspace/drv/uhci-hcd/uhci.c ¶
r299d53e r4abc304 101 101 bool low_speed, usb_transfer_type_t, size_t size); 102 102 103 #define CHECK_RET_RETURN(ret, message...) \ 103 104 int uhci_init(uhci_t *instance, ddf_dev_t *dev, void *regs, size_t reg_size) 105 { 106 assert(reg_size >= sizeof(regs_t)); 107 int ret; 108 109 #define CHECK_RET_DEST_FUN_RETURN(ret, message...) \ 104 110 if (ret != EOK) { \ 105 111 usb_log_error(message); \ 112 if (instance->ddf_instance) \ 113 ddf_fun_destroy(instance->ddf_instance); \ 106 114 return ret; \ 107 115 } else (void) 0 108 109 int uhci_init(uhci_t *instance, ddf_dev_t *dev, void *regs, size_t reg_size)110 {111 assert(reg_size >= sizeof(regs_t));112 int ret;113 116 114 117 /* … … 116 119 */ 117 120 instance->ddf_instance = ddf_fun_create(dev, fun_exposed, "uhci"); 118 if (instance->ddf_instance == NULL) { 119 usb_log_error("Failed to create UHCI device function.\n"); 120 return ENOMEM; 121 } 121 ret = (instance->ddf_instance == NULL) ? ENOMEM : EOK; 122 CHECK_RET_DEST_FUN_RETURN(ret, "Failed to create UHCI device function.\n"); 123 122 124 instance->ddf_instance->ops = &uhci_ops; 123 125 instance->ddf_instance->driver_data = instance; 124 126 125 127 ret = ddf_fun_bind(instance->ddf_instance); 126 CHECK_RET_ RETURN(ret, "Failedto bind UHCI device function: %s.\n",127 str_error(ret));128 CHECK_RET_DEST_FUN_RETURN(ret, "Failed(%d) to bind UHCI device function: %s.\n", 129 ret, str_error(ret)); 128 130 129 131 /* allow access to hc control registers */ 130 132 regs_t *io; 131 133 ret = pio_enable(regs, reg_size, (void**)&io); 132 CHECK_RET_RETURN(ret, "Failed to gain access to registers at %p.\n", io); 134 CHECK_RET_DEST_FUN_RETURN(ret, "Failed(%d) to gain access to registers at %p: %s.\n", 135 ret, str_error(ret), io); 133 136 instance->registers = io; 134 usb_log_debug("Device registers a ccessible.\n");137 usb_log_debug("Device registers at %p(%u) accessible.\n", io, reg_size); 135 138 136 139 ret = uhci_init_mem_structures(instance); 137 CHECK_RET_ RETURN(ret, "Failed to initializememory structures.\n");140 CHECK_RET_DEST_FUN_RETURN(ret, "Failed to initialize UHCI memory structures.\n"); 138 141 139 142 uhci_init_hw(instance); … … 145 148 fibril_add_ready(instance->debug_checker); 146 149 147 return EOK; 150 usb_log_info("Started UHCI driver.\n"); 151 return EOK; 152 #undef CHECK_RET_DEST_FUN_RETURN 148 153 } 149 154 /*----------------------------------------------------------------------------*/ … … 171 176 pio_write_16(&instance->registers->usbcmd, 172 177 UHCI_CMD_RUN_STOP | UHCI_CMD_MAX_PACKET | UHCI_CMD_CONFIGURE); 173 usb_log_debug("Started UHCI HC.\n");174 178 } 175 179 /*----------------------------------------------------------------------------*/ … … 177 181 { 178 182 assert(instance); 183 #define CHECK_RET_DEST_CMDS_RETURN(ret, message...) \ 184 if (ret != EOK) { \ 185 usb_log_error(message); \ 186 if (instance->interrupt_code.cmds != NULL) \ 187 free(instance->interrupt_code.cmds); \ 188 return ret; \ 189 } else (void) 0 179 190 180 191 /* init interrupt code */ 181 irq_cmd_t *interrupt_commands = malloc(sizeof(uhci_cmds)); 182 if (interrupt_commands == NULL) { 183 return ENOMEM; 184 } 185 memcpy(interrupt_commands, uhci_cmds, sizeof(uhci_cmds)); 186 interrupt_commands[0].addr = (void*)&instance->registers->usbsts; 187 interrupt_commands[1].addr = (void*)&instance->registers->usbsts; 188 instance->interrupt_code.cmds = interrupt_commands; 189 instance->interrupt_code.cmdcount = 190 sizeof(uhci_cmds) / sizeof(irq_cmd_t); 192 instance->interrupt_code.cmds = malloc(sizeof(uhci_cmds)); 193 int ret = (instance->interrupt_code.cmds == NULL) ? ENOMEM : EOK; 194 CHECK_RET_DEST_CMDS_RETURN(ret, "Failed to allocate interrupt cmds space.\n"); 195 196 { 197 irq_cmd_t *interrupt_commands = instance->interrupt_code.cmds; 198 memcpy(interrupt_commands, uhci_cmds, sizeof(uhci_cmds)); 199 interrupt_commands[0].addr = (void*)&instance->registers->usbsts; 200 interrupt_commands[1].addr = (void*)&instance->registers->usbsts; 201 instance->interrupt_code.cmdcount = 202 sizeof(uhci_cmds) / sizeof(irq_cmd_t); 203 } 191 204 192 205 /* init transfer lists */ 193 intret = uhci_init_transfer_lists(instance);194 CHECK_RET_ RETURN(ret, "Failed to initialize transfer lists.\n");206 ret = uhci_init_transfer_lists(instance); 207 CHECK_RET_DEST_CMDS_RETURN(ret, "Failed to initialize transfer lists.\n"); 195 208 usb_log_debug("Initialized transfer lists.\n"); 196 209 … … 198 211 instance->frame_list = get_page(); 199 212 ret = instance ? EOK : ENOMEM; 200 CHECK_RET_ RETURN(ret, "Failed to get frame list page.\n");213 CHECK_RET_DEST_CMDS_RETURN(ret, "Failed to get frame list page.\n"); 201 214 usb_log_debug("Initialized frame list.\n"); 202 215 … … 205 218 instance->transfers_interrupt.queue_head_pa 206 219 | LINK_POINTER_QUEUE_HEAD_FLAG; 220 207 221 unsigned i = 0; 208 222 for(; i < UHCI_FRAME_LIST_COUNT; ++i) { … … 215 229 216 230 return EOK; 231 #undef CHECK_RET_DEST_CMDS_RETURN 217 232 } 218 233 /*----------------------------------------------------------------------------*/ … … 220 235 { 221 236 assert(instance); 237 #define CHECK_RET_CLEAR_RETURN(ret, message...) \ 238 if (ret != EOK) { \ 239 usb_log_error(message); \ 240 transfer_list_fini(&instance->transfers_bulk_full); \ 241 transfer_list_fini(&instance->transfers_control_full); \ 242 transfer_list_fini(&instance->transfers_control_slow); \ 243 transfer_list_fini(&instance->transfers_interrupt); \ 244 return ret; \ 245 } else (void) 0 222 246 223 247 /* initialize TODO: check errors */ 224 248 int ret; 225 249 ret = transfer_list_init(&instance->transfers_bulk_full, "BULK_FULL"); 226 assert(ret == EOK);250 CHECK_RET_CLEAR_RETURN(ret, "Failed to init BULK list."); 227 251 ret = transfer_list_init(&instance->transfers_control_full, "CONTROL_FULL"); 228 assert(ret == EOK);252 CHECK_RET_CLEAR_RETURN(ret, "Failed to init CONTROL FULL list."); 229 253 ret = transfer_list_init(&instance->transfers_control_slow, "CONTROL_SLOW"); 230 assert(ret == EOK);254 CHECK_RET_CLEAR_RETURN(ret, "Failed to init CONTROL SLOW list."); 231 255 ret = transfer_list_init(&instance->transfers_interrupt, "INTERRUPT"); 232 assert(ret == EOK);256 CHECK_RET_CLEAR_RETURN(ret, "Failed to init INTERRUPT list."); 233 257 234 258 transfer_list_set_next(&instance->transfers_control_full, … … 257 281 258 282 return EOK; 283 #undef CHECK_RET_CLEAR_RETURN 259 284 } 260 285 /*----------------------------------------------------------------------------*/ -
TabularUnified uspace/drv/uhci-hcd/uhci_struct/transfer_descriptor.c ¶
r299d53e r4abc304 67 67 } 68 68 69 usb_log_ info("Created TD: %X:%X:%X:%X(%p).\n",69 usb_log_debug2("Created TD: %X:%X:%X:%X(%p).\n", 70 70 instance->next, instance->status, instance->device, 71 71 instance->buffer_ptr, buffer);
Note:
See TracChangeset
for help on using the changeset viewer.