Changes in / [da1dd48:c7dd69d] in mainline
- Location:
- uspace
- Files:
-
- 5 deleted
- 50 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/usbinfo/dev.c
rda1dd48 rc7dd69d 77 77 } 78 78 79 usb_pipe_start_long_transfer(&dev->ctrl_pipe); 79 rc = usb_pipe_start_long_transfer(&dev->ctrl_pipe); 80 if (rc != EOK) { 81 fprintf(stderr, 82 NAME ": failed to start transfer on control pipe: %s.\n", 83 str_error(rc)); 84 goto leave; 85 } 80 86 transfer_started = true; 81 87 -
uspace/drv/ehci-hcd/main.c
rda1dd48 rc7dd69d 82 82 pci_get_my_registers(device, &mem_reg_base, &mem_reg_size, &irq); 83 83 CHECK_RET_RETURN(ret, 84 "Failed to get memory addresses for %" PRIun ": %s.\n", 85 device->handle, str_error(ret)); 86 usb_log_info("Memory mapped regs at 0x%" PRIxn " (size %zu), IRQ %d.\n", 84 "Failed(%d) to get memory addresses:.\n", ret, device->handle); 85 usb_log_info("Memory mapped regs at 0x%X (size %zu), IRQ %d.\n", 87 86 mem_reg_base, mem_reg_size, irq); 88 87 … … 103 102 str_error(ret)); 104 103 105 usb_log_info("Controlling new EHCI device `%s' (handle % " PRIun ").\n",104 usb_log_info("Controlling new EHCI device `%s' (handle %llu).\n", 106 105 device->name, device->handle); 107 106 -
uspace/drv/ehci-hcd/pci.c
rda1dd48 rc7dd69d 117 117 mem_address = res->res.mem_range.address; 118 118 mem_size = res->res.mem_range.size; 119 usb_log_debug2("Found mem: % " PRIxn"%zu.\n",119 usb_log_debug2("Found mem: %llx %zu.\n", 120 120 mem_address, mem_size); 121 121 mem_found = true; … … 186 186 CHECK_RET_HANGUP_RETURN(ret, "Failed(%d) to read PCI config space.\n", 187 187 ret); 188 usb_log_info("Register space BAR at %p:% " PRIxn ".\n", (void *)address, value);188 usb_log_info("Register space BAR at %p:%x.\n", address, value); 189 189 190 190 /* clear lower byte, it's not part of the BASE address */ 191 191 uintptr_t registers = (value & 0xffffff00); 192 usb_log_info("Memory registers BASE address:%p.\n", (void *)registers);192 usb_log_info("Memory registers BASE address:%p.\n", registers); 193 193 194 194 /* if nothing setup the hc, we don't need to turn it off */ … … 201 201 AS_AREA_READ | AS_AREA_WRITE); 202 202 CHECK_RET_HANGUP_RETURN(ret, "Failed(%d) to map registers %p:%p.\n", 203 ret, regs, (void *)registers);203 ret, regs, registers); 204 204 205 205 /* calculate value of BASE */ … … 221 221 IPC_M_CONFIG_SPACE_READ_32, eecp + USBLEGCTLSTS_OFFSET, &value); 222 222 CHECK_RET_HANGUP_RETURN(ret, "Failed(%d) to read USBLEGCTLSTS.\n", ret); 223 usb_log_debug("USBLEGCTLSTS: % " PRIxn ".\n", value);223 usb_log_debug("USBLEGCTLSTS: %x.\n", value); 224 224 225 225 /* Read the first EEC. i.e. Legacy Support register */ … … 228 228 IPC_M_CONFIG_SPACE_READ_32, eecp + USBLEGSUP_OFFSET, &value); 229 229 CHECK_RET_HANGUP_RETURN(ret, "Failed(%d) to read USBLEGSUP.\n", ret); 230 usb_log_debug2("USBLEGSUP: % " PRIxn ".\n", value);230 usb_log_debug2("USBLEGSUP: %x.\n", value); 231 231 232 232 /* Request control from firmware/BIOS, by writing 1 to highest byte. … … 248 248 249 249 if ((value & USBLEGSUP_BIOS_CONTROL) == 0) { 250 usb_log_info("BIOS released control after % zuusec.\n", wait);250 usb_log_info("BIOS released control after %d usec.\n", wait); 251 251 } else { 252 252 /* BIOS failed to hand over control, this should not happen. */ 253 253 usb_log_warning( "BIOS failed to release control after " 254 "% zuusecs, force it.\n", wait);254 "%d usecs, force it.\n", wait); 255 255 ret = async_req_3_0(parent_phone, DEV_IFACE_ID(PCI_DEV_IFACE), 256 256 IPC_M_CONFIG_SPACE_WRITE_32, eecp + USBLEGSUP_OFFSET, … … 271 271 IPC_M_CONFIG_SPACE_READ_32, eecp + USBLEGCTLSTS_OFFSET, &value); 272 272 CHECK_RET_HANGUP_RETURN(ret, "Failed(%d) to read USBLEGCTLSTS.\n", ret); 273 usb_log_debug2("USBLEGCTLSTS: % " PRIxn ".\n", value);273 usb_log_debug2("USBLEGCTLSTS: %x.\n", value); 274 274 275 275 /* Read again Legacy Support register */ … … 277 277 IPC_M_CONFIG_SPACE_READ_32, eecp + USBLEGSUP_OFFSET, &value); 278 278 CHECK_RET_HANGUP_RETURN(ret, "Failed(%d) to read USBLEGSUP.\n", ret); 279 usb_log_debug2("USBLEGSUP: % " PRIxn ".\n", value);279 usb_log_debug2("USBLEGSUP: %x.\n", value); 280 280 281 281 /* -
uspace/drv/ohci/batch.c
rda1dd48 rc7dd69d 141 141 assert(data); 142 142 size_t tds = data->td_count; 143 usb_log_debug("Batch(%p) checking % zutd(s) for completion.\n",143 usb_log_debug("Batch(%p) checking %d td(s) for completion.\n", 144 144 instance, tds); 145 145 usb_log_debug("ED: %x:%x:%x:%x.\n", … … 147 147 data->ed->next); 148 148 size_t i = 0; 149 instance->transfered_size = instance->buffer_size;150 149 for (; i < tds; ++i) { 151 150 assert(data->tds[i] != NULL); 152 usb_log_debug("TD % zu: %x:%x:%x:%x.\n", i,151 usb_log_debug("TD %d: %x:%x:%x:%x.\n", i, 153 152 data->tds[i]->status, data->tds[i]->cbp, data->tds[i]->next, 154 153 data->tds[i]->be); … … 157 156 } 158 157 instance->error = td_error(data->tds[i]); 158 /* FIXME: calculate real transfered size */ 159 instance->transfered_size = instance->buffer_size; 159 160 if (instance->error != EOK) { 160 usb_log_debug("Batch(%p) found error TD(% zu):%x.\n",161 usb_log_debug("Batch(%p) found error TD(%d):%x.\n", 161 162 instance, i, data->tds[i]->status); 162 163 /* Make sure TD queue is empty (one TD), … … 173 174 assert(hcd_ep); 174 175 hcd_ep->td = data->tds[i]; 175 if (i > 0)176 instance->transfered_size -= td_remain_size(data->tds[i - 1]);177 178 176 /* Clear possible ED HALT */ 179 177 data->ed->td_head &= ~ED_TDHEAD_HALTED_FLAG; … … 240 238 { 241 239 assert(instance); 242 /* We are data out, we are supposed to provide data */ 243 memcpy(instance->data_buffer, instance->buffer, instance->buffer_size); 244 instance->next_step = usb_transfer_batch_call_out_and_dispose; 240 instance->next_step = usb_transfer_batch_call_in_and_dispose; 245 241 batch_data(instance); 246 usb_log_debug("Batch(%p) BULK OUTinitialized.\n", instance);242 usb_log_debug("Batch(%p) BULK IN initialized.\n", instance); 247 243 } 248 244 /*----------------------------------------------------------------------------*/ -
uspace/drv/ohci/endpoint_list.c
rda1dd48 rc7dd69d 55 55 } 56 56 instance->list_head_pa = addr_to_phys(instance->list_head); 57 usb_log_debug2("Transfer list %s setup with ED: %p( 0x%0" PRIx32 ")).\n",57 usb_log_debug2("Transfer list %s setup with ED: %p(%p).\n", 58 58 name, instance->list_head, instance->list_head_pa); 59 59 … … 121 121 hcd_ep, instance->name, first, first->ed); 122 122 if (last_ed == instance->list_head) { 123 usb_log_debug2("%s head ED(%p- 0x%0" PRIx32 "): %x:%x:%x:%x.\n",123 usb_log_debug2("%s head ED(%p-%p): %x:%x:%x:%x.\n", 124 124 instance->name, last_ed, instance->list_head_pa, 125 125 last_ed->status, last_ed->td_tail, last_ed->td_head, -
uspace/drv/ohci/hc.c
rda1dd48 rc7dd69d 113 113 BANDWIDTH_AVAILABLE_USB11); 114 114 CHECK_RET_RETURN(ret, "Failed to initialize endpoint manager: %s.\n", 115 str_error(ret));115 ret, str_error(ret)); 116 116 117 117 hc_gain_control(instance); 118 118 ret = hc_init_memory(instance); 119 CHECK_RET_RETURN(ret, "Failed to create OHCI memory structures: 120 str_error(ret));119 CHECK_RET_RETURN(ret, "Failed to create OHCI memory structures:%s.\n", 120 ret, str_error(ret)); 121 121 hc_init_hw(instance); 122 122 fibril_mutex_initialize(&instance->guard); … … 294 294 if (status & IS_WDH) { 295 295 fibril_mutex_lock(&instance->guard); 296 usb_log_debug2("HCCA: %p-%#" PRIx32 " (%p).\n", instance->hcca, 297 instance->registers->hcca, 298 (void *) addr_to_phys(instance->hcca)); 299 usb_log_debug2("Periodic current: %#" PRIx32 ".\n", 296 usb_log_debug2("HCCA: %p-%p(%p).\n", instance->hcca, 297 instance->registers->hcca, addr_to_phys(instance->hcca)); 298 usb_log_debug2("Periodic current: %p.\n", 300 299 instance->registers->periodic_current); 301 300 … … 406 405 instance->registers->bulk_head = 407 406 instance->lists[USB_TRANSFER_BULK].list_head_pa; 408 usb_log_debug2("Bulk HEAD set to: %p (%#" PRIx32 ").\n",407 usb_log_debug2("Bulk HEAD set to: %p(%p).\n", 409 408 instance->lists[USB_TRANSFER_BULK].list_head, 410 409 instance->lists[USB_TRANSFER_BULK].list_head_pa); … … 412 411 instance->registers->control_head = 413 412 instance->lists[USB_TRANSFER_CONTROL].list_head_pa; 414 usb_log_debug2("Control HEAD set to: %p (%#" PRIx32 ").\n",413 usb_log_debug2("Control HEAD set to: %p(%p).\n", 415 414 instance->lists[USB_TRANSFER_CONTROL].list_head, 416 415 instance->lists[USB_TRANSFER_CONTROL].list_head_pa); … … 488 487 instance->lists[USB_TRANSFER_INTERRUPT].list_head_pa; 489 488 } 490 usb_log_debug2("Interrupt HEADs set to: %p (%#" PRIx32 ").\n",489 usb_log_debug2("Interrupt HEADs set to: %p(%p).\n", 491 490 instance->lists[USB_TRANSFER_INTERRUPT].list_head, 492 491 instance->lists[USB_TRANSFER_INTERRUPT].list_head_pa); -
uspace/drv/ohci/hw_struct/transfer_descriptor.c
rda1dd48 rc7dd69d 52 52 instance->status |= togg[toggle] << TD_STATUS_T_SHIFT; 53 53 } 54 if (dir == USB_DIRECTION_IN) {55 instance->status |= TD_STATUS_ROUND_FLAG;56 }57 54 if (buffer != NULL) { 58 55 assert(size != 0); -
uspace/drv/ohci/hw_struct/transfer_descriptor.h
rda1dd48 rc7dd69d 59 59 #define TD_STATUS_T_0 (0x2) 60 60 #define TD_STATUS_T_1 (0x3) 61 #define TD_STATUS_T_ED (0)62 61 #define TD_STATUS_EC_MASK (0x3) /* error count */ 63 62 #define TD_STATUS_EC_SHIFT (26) … … 103 102 return cc_to_rc(cc); 104 103 } 105 106 static inline size_t td_remain_size(td_t *instance)107 {108 assert(instance);109 if (instance->cbp == 0)110 return 0;111 return instance->be - instance->cbp + 1;112 }113 104 #endif 114 105 /** -
uspace/drv/ohci/iface.c
rda1dd48 rc7dd69d 118 118 hc_t *hc = fun_to_hc(fun); 119 119 assert(hc); 120 usb_log_debug("Address bind %d-% " PRIun ".\n", address, handle);120 usb_log_debug("Address bind %d-%d.\n", address, handle); 121 121 usb_device_keeper_bind(&hc->manager, address, handle); 122 122 return EOK; -
uspace/drv/ohci/ohci.c
rda1dd48 rc7dd69d 148 148 pci_get_my_registers(device, &mem_reg_base, &mem_reg_size, &irq); 149 149 CHECK_RET_DEST_FUN_RETURN(ret, 150 "Failed to get memory addresses for %" PRIun ": %s.\n", 151 device->handle, str_error(ret)); 152 usb_log_debug("Memory mapped regs at %p (size %zu), IRQ %d.\n", 153 (void *) mem_reg_base, mem_reg_size, irq); 150 "Failed(%d) to get memory addresses:.\n", ret, device->handle); 151 usb_log_debug("Memory mapped regs at 0x%X (size %zu), IRQ %d.\n", 152 mem_reg_base, mem_reg_size, irq); 154 153 155 154 ret = pci_disable_legacy(device); -
uspace/drv/ohci/pci.c
rda1dd48 rc7dd69d 117 117 mem_address = res->res.mem_range.address; 118 118 mem_size = res->res.mem_range.size; 119 usb_log_debug2("Found mem: % p%zu.\n",120 (void *)mem_address, mem_size);119 usb_log_debug2("Found mem: %llx %zu.\n", 120 mem_address, mem_size); 121 121 mem_found = true; 122 122 } -
uspace/drv/ohci/root_hub.c
rda1dd48 rc7dd69d 198 198 static int process_ctrl_request(rh_t *instance, usb_transfer_batch_t *request); 199 199 200 static int process_interrupt(rh_t *instance, usb_transfer_batch_t * request, 201 void * change_buffer, size_t buffe_size); 202 203 static bool is_zeros(void * buffer, size_t size); 200 204 201 205 202 … … 216 213 // set port power mode to no-power-switching 217 214 instance->registers->rh_desc_a |= RHDA_NPS_FLAG; 218 instance->unfinished_interrupt_transfer = NULL; 215 219 216 usb_log_info("OHCI root hub with %d ports.\n", instance->port_count); 220 217 return EOK; … … 236 233 usb_log_info("Root hub got CONTROL packet\n"); 237 234 opResult = process_ctrl_request(instance, request); 238 usb_transfer_batch_finish_error(request, opResult);239 235 } else if (request->ep->transfer_type == USB_TRANSFER_INTERRUPT) { 240 236 usb_log_info("Root hub got INTERRUPT packet\n"); 241 237 void * buffer; 242 size_t buffer_size;243 238 create_interrupt_mask(instance, &buffer, 244 &buffer_size); 245 if(is_zeros(buffer,buffer_size)){ 246 usb_log_debug("no changes.."); 247 instance->unfinished_interrupt_transfer= 248 request; 249 //will be finished later 250 }else{ 251 usb_log_debug("processing changes.."); 252 process_interrupt(instance, request, 253 buffer, buffer_size); 254 } 255 free(buffer); 239 &(request->transfered_size)); 240 memcpy(request->data_buffer, buffer, 241 request->transfered_size); 256 242 opResult = EOK; 257 243 } else { 258 244 opResult = EINVAL; 259 usb_transfer_batch_finish_error(request, opResult);260 }245 } 246 usb_transfer_batch_finish_error(request, opResult); 261 247 return EOK; 262 248 } … … 266 252 267 253 void rh_interrupt(rh_t *instance) { 268 //usb_log_info("Whoa whoa wait, I`m not supposed to receive any " 269 // "interrupts, am I?\n"); 270 if(!instance->unfinished_interrupt_transfer){ 271 return; 272 } 273 size_t size; 274 void * buffer; 275 create_interrupt_mask(instance, &buffer, 276 &size); 277 process_interrupt(instance,instance->unfinished_interrupt_transfer, 278 buffer,size); 279 free(buffer); 254 usb_log_info("Whoa whoa wait, I`m not supposed to receive any " 255 "interrupts, am I?\n"); 256 /* TODO: implement? */ 280 257 } 281 258 /*----------------------------------------------------------------------------*/ … … 882 859 return opResult; 883 860 } 884 /*----------------------------------------------------------------------------*/885 886 /**887 * process hanging interrupt request888 *889 * If an interrupt transfer has been received and there was no change,890 * the driver stores the transfer information and waits for change to occcur.891 * This routine is called when that happens and it finalizes the interrupt892 * transfer.893 *894 * @param instance hub instance895 * @param request batch request to be processed896 * @param change_buffer chages on hub897 * @param buffer_size size of change buffer898 *899 * @return900 */901 static int process_interrupt(rh_t *instance, usb_transfer_batch_t * request,902 void * change_buffer, size_t buffe_size){903 create_interrupt_mask(instance, &change_buffer,904 &(request->transfered_size));905 memcpy(request->data_buffer, change_buffer,request->transfered_size);906 instance->unfinished_interrupt_transfer = NULL;907 usb_transfer_batch_finish_error(request, EOK);908 return EOK;909 }910 911 /*----------------------------------------------------------------------------*/912 913 /**914 * return whether the buffer is full of zeros915 *916 * Convenience function.917 * @param buffer918 * @param size919 * @return920 */921 static bool is_zeros(void * buffer, size_t size){922 if(!buffer) return true;923 if(!size) return true;924 size_t i;925 for(i=0;i<size;++i){926 if(((char*)buffer)[i])927 return false;928 }929 return true;930 }931 861 932 862 /** -
uspace/drv/ohci/root_hub.h
rda1dd48 rc7dd69d 54 54 /** hubs descriptors */ 55 55 usb_device_descriptors_t descriptors; 56 /** interrupt transfer waiting for an actual interrupt to occur */57 usb_transfer_batch_t * unfinished_interrupt_transfer;58 56 } rh_t; 59 57 -
uspace/drv/uhci-hcd/batch.c
rda1dd48 rc7dd69d 162 162 assert(data); 163 163 164 usb_log_debug2("Batch(%p) checking % zutransfer(s) for completion.\n",164 usb_log_debug2("Batch(%p) checking %d transfer(s) for completion.\n", 165 165 instance, data->td_count); 166 166 instance->transfered_size = 0; … … 173 173 instance->error = td_status(&data->tds[i]); 174 174 if (instance->error != EOK) { 175 usb_log_debug("Batch(%p) found error TD(% zu):%" PRIx32 ".\n",175 usb_log_debug("Batch(%p) found error TD(%d):%x.\n", 176 176 instance, i, data->tds[i].status); 177 177 td_print_status(&data->tds[i]); -
uspace/drv/uhci-hcd/hc.c
rda1dd48 rc7dd69d 101 101 ret, io, str_error(ret)); 102 102 instance->registers = io; 103 usb_log_debug("Device registers at %p (%zuB) accessible.\n",103 usb_log_debug("Device registers at %p(%u) accessible.\n", 104 104 io, reg_size); 105 105 … … 423 423 if (frame_list != addr_to_phys(instance->frame_list)) { 424 424 usb_log_debug("Framelist address: %p vs. %p.\n", 425 (void *) frame_list, 426 (void *) addr_to_phys(instance->frame_list)); 425 frame_list, addr_to_phys(instance->frame_list)); 427 426 } 428 427 … … 433 432 uintptr_t real_pa = addr_to_phys(QH(interrupt)); 434 433 if (expected_pa != real_pa) { 435 usb_log_debug("Interrupt QH: %p (frame%d) vs. %p.\n",436 (void *) expected_pa, frnum, (void *)real_pa);434 usb_log_debug("Interrupt QH: %p(frame: %d) vs. %p.\n", 435 expected_pa, frnum, real_pa); 437 436 } 438 437 … … 441 440 if (expected_pa != real_pa) { 442 441 usb_log_debug("Control Slow QH: %p vs. %p.\n", 443 (void *) expected_pa, (void *)real_pa);442 expected_pa, real_pa); 444 443 } 445 444 … … 448 447 if (expected_pa != real_pa) { 449 448 usb_log_debug("Control Full QH: %p vs. %p.\n", 450 (void *) expected_pa, (void *)real_pa);449 expected_pa, real_pa); 451 450 } 452 451 … … 455 454 if (expected_pa != real_pa ) { 456 455 usb_log_debug("Bulk QH: %p vs. %p.\n", 457 (void *) expected_pa, (void *)real_pa);456 expected_pa, real_pa); 458 457 } 459 458 async_usleep(UHCI_DEBUGER_TIMEOUT); -
uspace/drv/uhci-hcd/hw_struct/transfer_descriptor.c
rda1dd48 rc7dd69d 154 154 assert(instance); 155 155 const uint32_t s = instance->status; 156 usb_log_debug2("TD(%p) status(%# " PRIx32 "):%s %d,%s%s%s%s%s%s%s%s%s%s%s %zu.\n",156 usb_log_debug2("TD(%p) status(%#x):%s %d,%s%s%s%s%s%s%s%s%s%s%s %d.\n", 157 157 instance, instance->status, 158 158 (s & TD_STATUS_SPD_FLAG) ? " SPD," : "", -
uspace/drv/uhci-hcd/iface.c
rda1dd48 rc7dd69d 118 118 hc_t *hc = fun_to_hc(fun); 119 119 assert(hc); 120 usb_log_debug("Address bind %d-% " PRIun ".\n", address, handle);120 usb_log_debug("Address bind %d-%d.\n", address, handle); 121 121 usb_device_keeper_bind(&hc->manager, address, handle); 122 122 return EOK; -
uspace/drv/uhci-hcd/main.c
rda1dd48 rc7dd69d 72 72 int ret = uhci_init(uhci, device); 73 73 if (ret != EOK) { 74 usb_log_error("Failed to initialize UHCI driver: %s.\n",75 str_error(ret));74 usb_log_error("Failed(%d) to initialize UHCI driver: %s.\n", 75 ret, str_error(ret)); 76 76 return ret; 77 77 } -
uspace/drv/uhci-hcd/pci.c
rda1dd48 rc7dd69d 90 90 io_address = res->res.io_range.address; 91 91 io_size = res->res.io_range.size; 92 usb_log_debug2("Found io: % " PRIx64"%zu.\n",92 usb_log_debug2("Found io: %llx %zu.\n", 93 93 res->res.io_range.address, res->res.io_range.size); 94 94 io_found = true; -
uspace/drv/uhci-hcd/transfer_list.c
rda1dd48 rc7dd69d 58 58 } 59 59 uint32_t queue_head_pa = addr_to_phys(instance->queue_head); 60 usb_log_debug2("Transfer list %s setup with QH: %p (%#" PRIx32").\n",60 usb_log_debug2("Transfer list %s setup with QH: %p(%p).\n", 61 61 name, instance->queue_head, queue_head_pa); 62 62 -
uspace/drv/uhci-hcd/uhci.c
rda1dd48 rc7dd69d 168 168 pci_get_my_registers(device, &io_reg_base, &io_reg_size, &irq); 169 169 CHECK_RET_DEST_FUN_RETURN(ret, 170 "Failed to get I/O addresses for %" PRIun ": %s.\n", 171 device->handle, str_error(ret)); 172 usb_log_debug("I/O regs at 0x%p (size %zu), IRQ %d.\n", 173 (void *) io_reg_base, io_reg_size, irq); 170 "Failed(%d) to get I/O addresses:.\n", ret, device->handle); 171 usb_log_debug("I/O regs at 0x%X (size %zu), IRQ %d.\n", 172 io_reg_base, io_reg_size, irq); 174 173 175 174 ret = pci_disable_legacy(device); -
uspace/drv/uhci-rhd/main.c
rda1dd48 rc7dd69d 1 1 /* 2 * Copyright (c) 2011 Jan Vesely2 * Copyright (c) 2011 Vojtech Horky, Jan Vesely 3 3 * All rights reserved. 4 4 * … … 84 84 return EINVAL; 85 85 86 usb_log_debug2("uhci_rh_add_device(handle=%" PRIun ")\n", 87 device->handle); 86 usb_log_debug2("%s called device %d\n", __FUNCTION__, device->handle); 88 87 89 88 uintptr_t io_regs = 0; … … 102 101 ret = hc_get_my_registers(device, &io_regs, &io_size); 103 102 CHECK_RET_FREE_RH_RETURN(ret, 104 "Failed to get registers from HC: %s.\n", str_error(ret)); 105 usb_log_debug("I/O regs at %p (size %zuB).\n", 106 (void *) io_regs, io_size); 103 "Failed(%d) to get registers from HC: %s.\n", ret, str_error(ret)); 104 usb_log_debug("I/O regs at %#x (size %zu).\n", io_regs, io_size); 107 105 108 106 rh = malloc(sizeof(uhci_root_hub_t)); … … 117 115 118 116 device->driver_data = rh; 119 usb_log_info("Controlling root hub '%s' (% " PRIun ").\n",117 usb_log_info("Controlling root hub '%s' (%llu).\n", 120 118 device->name, device->handle); 121 119 return EOK; -
uspace/drv/uhci-rhd/port.c
rda1dd48 rc7dd69d 89 89 { 90 90 assert(port); 91 asprintf(&port->id_string, "Port (%p - % u)", port, number);91 asprintf(&port->id_string, "Port (%p - %d)", port, number); 92 92 if (port->id_string == NULL) { 93 93 return ENOMEM; … … 115 115 116 116 fibril_add_ready(port->checker); 117 usb_log_debug("%s: Started polling fibril (%" PRIun ").\n",117 usb_log_debug("%s: Started polling fibril(%x).\n", 118 118 port->id_string, port->checker); 119 119 return EOK; … … 267 267 } 268 268 269 usb_log_info("New device at port %u, address %d (handle % " PRIun ").\n",269 usb_log_info("New device at port %u, address %d (handle %llu).\n", 270 270 port->number, dev_addr, port->attached_device); 271 271 return EOK; … … 283 283 int uhci_port_remove_device(uhci_port_t *port) 284 284 { 285 usb_log_error("%s: Don't know how to remove device % " PRIun ".\n",285 usb_log_error("%s: Don't know how to remove device %llu.\n", 286 286 port->id_string, port->attached_device); 287 287 return ENOTSUP; -
uspace/drv/usbflbk/main.c
rda1dd48 rc7dd69d 65 65 66 66 usb_log_info("Pretending to control %s `%s'" \ 67 " (node `%s', handle % " PRIun ").\n",67 " (node `%s', handle %llu).\n", 68 68 dev->interface_no < 0 ? "device" : "interface", 69 69 dev->ddf_dev->name, fun_name, dev->ddf_dev->handle); -
uspace/drv/usbhid/kbd/kbddev.c
rda1dd48 rc7dd69d 607 607 608 608 if (count != kbd_dev->key_count) { 609 usb_log_warning("Number of received keycodes (% zu) differs from"610 " expected (%zu).\n", count, kbd_dev->key_count);609 usb_log_warning("Number of received keycodes (%d) differs from" 610 " expected number (%d).\n", count, kbd_dev->key_count); 611 611 return; 612 612 } -
uspace/drv/usbhid/usbhid.c
rda1dd48 rc7dd69d 197 197 size_t size = usb_hid_report_input_length(hid_dev->parser, usage_path, 198 198 mapping->compare); 199 usb_log_debug("Size of the input report: % zuB\n", size);199 usb_log_debug("Size of the input report: %d\n", size); 200 200 201 201 usb_hid_report_path_free(usage_path); -
uspace/drv/usbhub/ports.c
rda1dd48 rc7dd69d 83 83 void usb_hub_process_interrupt(usb_hub_info_t * hub, 84 84 uint16_t port) { 85 usb_log_debug("interrupt at port % zu\n", (size_t)port);85 usb_log_debug("interrupt at port %d\n", port); 86 86 //determine type of change 87 87 //usb_pipe_t *pipe = hub->control_pipe; … … 93 93 if (opResult != EOK) { 94 94 usb_log_error("Failed to get port %zu status: %s.\n", 95 (size_t)port, str_error(opResult));95 port, str_error(opResult)); 96 96 return; 97 97 } … … 100 100 bool device_connected = usb_port_is_status(status, 101 101 USB_HUB_FEATURE_PORT_CONNECTION); 102 usb_log_debug("Connection change on port %zu: %s.\n", 103 (size_t) port, 102 usb_log_debug("Connection change on port %zu: %s.\n", port, 104 103 device_connected ? "device attached" : "device removed"); 105 104 … … 110 109 usb_log_error( 111 110 "Cannot handle change on port %zu: %s.\n", 112 (size_t) port,str_error(opResult));111 str_error(opResult)); 113 112 } 114 113 } else { … … 211 210 static void usb_hub_port_reset_completed(usb_hub_info_t * hub, 212 211 uint16_t port, uint32_t status){ 213 usb_log_debug("Port %zu reset complete.\n", (size_t)port);212 usb_log_debug("Port %zu reset complete.\n", port); 214 213 if (usb_port_is_status(status, USB_HUB_FEATURE_PORT_ENABLE)) { 215 214 /* Finalize device adding. */ … … 223 222 usb_log_warning( 224 223 "Port %zu reset complete but port not enabled.\n", 225 (size_t)port);224 port); 226 225 } 227 226 } -
uspace/drv/usbhub/usbhub.c
rda1dd48 rc7dd69d 105 105 } 106 106 107 //usb_pipe_start_session(hub_info->control_pipe);107 usb_pipe_start_session(hub_info->control_pipe); 108 108 //set hub configuration 109 109 opResult = usb_hub_set_configuration(hub_info); … … 122 122 return opResult; 123 123 } 124 //usb_pipe_end_session(hub_info->control_pipe);125 126 127 usb_log_debug("Creating 'hub' function in DDF.\n");124 usb_pipe_end_session(hub_info->control_pipe); 125 126 /// \TODO what is this? 127 usb_log_debug("Creating `hub' function.\n"); 128 128 ddf_fun_t *hub_fun = ddf_fun_create(hub_info->usb_device->ddf_dev, 129 129 fun_exposed, "hub"); … … 153 153 bool hub_port_changes_callback(usb_device_t *dev, 154 154 uint8_t *change_bitmap, size_t change_bitmap_size, void *arg) { 155 usb_log_debug("hub_port_changes_callback\n");156 155 usb_hub_info_t *hub = (usb_hub_info_t *) arg; 157 156 … … 218 217 // get hub descriptor 219 218 usb_log_debug("creating serialized descriptor\n"); 220 //void * serialized_descriptor = malloc(USB_HUB_MAX_DESCRIPTOR_SIZE); 221 uint8_t serialized_descriptor[USB_HUB_MAX_DESCRIPTOR_SIZE]; 219 void * serialized_descriptor = malloc(USB_HUB_MAX_DESCRIPTOR_SIZE); 222 220 usb_hub_descriptor_t * descriptor; 223 221 int opResult; … … 237 235 } 238 236 usb_log_debug2("deserializing descriptor\n"); 239 descriptor = usb_create_deserialized_hub_desriptor( 240 serialized_descriptor); 237 descriptor = usb_deserialize_hub_desriptor(serialized_descriptor); 241 238 if (descriptor == NULL) { 242 239 usb_log_warning("could not deserialize descriptor \n"); 243 return ENOMEM;240 return opResult; 244 241 } 245 242 usb_log_debug("setting port count to %d\n", descriptor->ports_count); 246 243 hub_info->port_count = descriptor->ports_count; 247 244 /// \TODO this is not semantically correct 248 bool is_power_switched =249 ((descriptor->hub_characteristics & 1) ==0);250 bool has_individual_port_powering =251 ((descriptor->hub_characteristics & 1) !=0);252 245 hub_info->ports = malloc( 253 246 sizeof (usb_hub_port_t) * (hub_info->port_count + 1)); … … 256 249 usb_hub_port_init(&hub_info->ports[port]); 257 250 } 258 if(is_power_switched){ 259 usb_log_debug("is_power_switched\n"); 260 if(has_individual_port_powering){ 261 usb_log_debug("has_individual_port_powering\n"); 262 for (port = 0; port < hub_info->port_count; port++) { 263 opResult = usb_hub_set_port_feature(hub_info->control_pipe, 264 port+1, USB_HUB_FEATURE_PORT_POWER); 265 if (opResult != EOK) { 266 usb_log_error("cannot power on port %zu: %s.\n", 267 port+1, str_error(opResult)); 268 } 269 } 270 }else{ 271 usb_log_debug("!has_individual_port_powering\n"); 272 opResult = usb_hub_set_feature(hub_info->control_pipe, 273 USB_HUB_FEATURE_C_HUB_LOCAL_POWER); 274 if (opResult != EOK) { 275 usb_log_error("cannot power hub: %s\n", 276 str_error(opResult)); 277 } 278 } 279 }else{ 280 usb_log_debug("!is_power_switched\n"); 251 for (port = 0; port < hub_info->port_count; port++) { 252 opResult = usb_hub_set_port_feature(hub_info->control_pipe, 253 port+1, USB_HUB_FEATURE_PORT_POWER); 254 if (opResult != EOK) { 255 usb_log_error("cannot power on port %d; %d\n", 256 port+1, opResult); 257 } 281 258 } 282 259 usb_log_debug2("freeing data\n"); 283 //free(serialized_descriptor);284 //free(descriptor->devices_removable);260 free(serialized_descriptor); 261 free(descriptor->devices_removable); 285 262 free(descriptor); 286 263 return EOK; … … 344 321 * auto destruction, this could work better. 345 322 */ 346 int rc = usb_ hc_connection_open(&hub_info->connection);323 int rc = usb_pipe_start_session(hub_info->control_pipe); 347 324 if (rc != EOK) { 348 //usb_pipe_end_session(hub_info->control_pipe); 325 usb_log_error("Failed to start session on control pipe: %s.\n", 326 str_error(rc)); 327 return rc; 328 } 329 rc = usb_hc_connection_open(&hub_info->connection); 330 if (rc != EOK) { 331 usb_pipe_end_session(hub_info->control_pipe); 349 332 usb_log_error("Failed to open connection to HC: %s.\n", 350 333 str_error(rc)); … … 362 345 } 363 346 364 usb_log_info("Controlling hub `%s' (% zuports).\n",347 usb_log_info("Controlling hub `%s' (%d ports).\n", 365 348 hub_info->usb_device->ddf_dev->name, hub_info->port_count); 366 349 return EOK; … … 430 413 port, USB_HUB_FEATURE_PORT_POWER); 431 414 if (opResult != EOK) { 432 usb_log_error(" Cannot power on port %zu: %s.\n",433 port, str_error(opResult));415 usb_log_error("cannot power on port %d; %d\n", 416 port, opResult); 434 417 } 435 418 } -
uspace/drv/usbhub/usbhub_private.h
rda1dd48 rc7dd69d 113 113 114 114 usb_device_request_setup_packet_t clear_request = { 115 .request_type = USB_HUB_REQ_TYPE_ SET_PORT_FEATURE,115 .request_type = USB_HUB_REQ_TYPE_CLEAR_PORT_FEATURE, 116 116 .request = USB_DEVREQ_SET_FEATURE, 117 117 .length = 0, … … 166 166 } 167 167 168 /** 169 * create uint8_t array with serialized descriptor 170 * 171 * @param descriptor 172 * @return newly created serializd descriptor pointer 173 */ 174 void * usb_serialize_hub_descriptor(usb_hub_descriptor_t * descriptor); 168 175 169 void * usb_create_serialized_hub_descriptor(usb_hub_descriptor_t * descriptor); 170 171 void usb_serialize_hub_descriptor(usb_hub_descriptor_t * descriptor, 172 void * serialized_descriptor);173 174 usb_hub_descriptor_t * usb_create_deserialized_hub_desriptor( 175 void * serialized_descriptor);176 177 void usb_deserialize_hub_desriptor(void * serialized_descriptor, 178 usb_hub_descriptor_t *descriptor);176 /** 177 * create deserialized desriptor structure out of serialized descriptor 178 * 179 * The serialized descriptor must be proper usb hub descriptor, 180 * otherwise an eerror might occur. 181 * 182 * @param sdescriptor serialized descriptor 183 * @return newly created deserialized descriptor pointer 184 */ 185 usb_hub_descriptor_t * usb_deserialize_hub_desriptor(void * sdescriptor); 179 186 180 187 -
uspace/drv/usbhub/utils.c
rda1dd48 rc7dd69d 56 56 //hub descriptor utils 57 57 58 /** 59 * create uint8_t array with serialized descriptor 60 * 61 * @param descriptor 62 * @return newly created serializd descriptor pointer 63 */ 64 void * usb_create_serialized_hub_descriptor(usb_hub_descriptor_t * descriptor) { 58 void * usb_serialize_hub_descriptor(usb_hub_descriptor_t * descriptor) { 65 59 //base size 66 60 size_t size = 7; … … 70 64 uint8_t * result = malloc(size); 71 65 //size 72 if(result) 73 usb_serialize_hub_descriptor(descriptor,result); 66 result[0] = size; 67 //descriptor type 68 result[1] = USB_DESCTYPE_HUB; 69 result[2] = descriptor->ports_count; 70 /// @fixme handling of endianness?? 71 result[3] = descriptor->hub_characteristics / 256; 72 result[4] = descriptor->hub_characteristics % 256; 73 result[5] = descriptor->pwr_on_2_good_time; 74 result[6] = descriptor->current_requirement; 75 76 size_t i; 77 for (i = 0; i < var_size; ++i) { 78 result[7 + i] = descriptor->devices_removable[i]; 79 } 80 for (i = 0; i < var_size; ++i) { 81 result[7 + var_size + i] = 255; 82 } 74 83 return result; 75 84 } 76 85 77 /** 78 * serialize descriptor into given buffer 79 * 80 * The buffer size is not checked. 81 * @param descriptor 82 * @param serialized_descriptor 83 */ 84 void usb_serialize_hub_descriptor(usb_hub_descriptor_t * descriptor, 85 void * serialized_descriptor) { 86 //base size 87 uint8_t * sdescriptor = serialized_descriptor; 88 size_t size = 7; 89 //variable size according to port count 90 size_t var_size = (descriptor->ports_count+7)/8; 91 size += 2 * var_size; 92 //size 93 sdescriptor[0] = size; 94 //descriptor type 95 sdescriptor[1] = USB_DESCTYPE_HUB; 96 sdescriptor[2] = descriptor->ports_count; 97 /// @fixme handling of endianness?? 98 sdescriptor[3] = descriptor->hub_characteristics / 256; 99 sdescriptor[4] = descriptor->hub_characteristics % 256; 100 sdescriptor[5] = descriptor->pwr_on_2_good_time; 101 sdescriptor[6] = descriptor->current_requirement; 102 103 size_t i; 104 for (i = 0; i < var_size; ++i) { 105 sdescriptor[7 + i] = descriptor->devices_removable[i]; 106 } 107 for (i = 0; i < var_size; ++i) { 108 sdescriptor[7 + var_size + i] = 255; 109 } 110 } 111 112 113 /** 114 * create deserialized desriptor structure out of serialized descriptor 115 * 116 * The serialized descriptor must be proper usb hub descriptor, 117 * otherwise an eerror might occur. 118 * 119 * @param sdescriptor serialized descriptor 120 * @return newly created deserialized descriptor pointer 121 */ 122 usb_hub_descriptor_t * usb_create_deserialized_hub_desriptor( 86 usb_hub_descriptor_t * usb_deserialize_hub_desriptor( 123 87 void * serialized_descriptor) { 124 88 uint8_t * sdescriptor = serialized_descriptor; … … 131 95 132 96 usb_hub_descriptor_t * result = malloc(sizeof(usb_hub_descriptor_t)); 133 if(result) 134 usb_deserialize_hub_desriptor(serialized_descriptor,result); 97 98 99 result->ports_count = sdescriptor[2]; 100 /// @fixme handling of endianness?? 101 result->hub_characteristics = sdescriptor[4] + 256 * sdescriptor[3]; 102 result->pwr_on_2_good_time = sdescriptor[5]; 103 result->current_requirement = sdescriptor[6]; 104 size_t var_size = (result->ports_count+7) / 8; 105 result->devices_removable = (uint8_t*) malloc(var_size); 106 107 size_t i; 108 for (i = 0; i < var_size; ++i) { 109 result->devices_removable[i] = sdescriptor[7 + i]; 110 } 135 111 return result; 136 112 } 137 113 138 /**139 * deserialize descriptor into given pointer140 *141 * @param serialized_descriptor142 * @param descriptor143 * @return144 */145 void usb_deserialize_hub_desriptor(146 void * serialized_descriptor, usb_hub_descriptor_t * descriptor) {147 uint8_t * sdescriptor = serialized_descriptor;148 descriptor->ports_count = sdescriptor[2];149 /// @fixme handling of endianness??150 descriptor->hub_characteristics = sdescriptor[4] + 256 * sdescriptor[3];151 descriptor->pwr_on_2_good_time = sdescriptor[5];152 descriptor->current_requirement = sdescriptor[6];153 size_t var_size = (descriptor->ports_count+7) / 8;154 //descriptor->devices_removable = (uint8_t*) malloc(var_size);155 114 156 size_t i;157 for (i = 0; i < var_size; ++i) {158 descriptor->devices_removable[i] = sdescriptor[7 + i];159 }160 }161 115 162 116 /** -
uspace/drv/usbkbd/kbddev.c
rda1dd48 rc7dd69d 567 567 568 568 if (count != kbd_dev->key_count) { 569 usb_log_warning("Number of received keycodes (% zu) differs from"570 " expected (%zu).\n", count, kbd_dev->key_count);569 usb_log_warning("Number of received keycodes (%d) differs from" 570 " expected number (%d).\n", count, kbd_dev->key_count); 571 571 return; 572 572 } -
uspace/drv/usbmid/main.c
rda1dd48 rc7dd69d 53 53 usb_log_info("Taking care of new MID `%s'.\n", dev->ddf_dev->name); 54 54 55 usb_pipe_start_long_transfer(&dev->ctrl_pipe); 55 int rc; 56 57 rc = usb_pipe_start_long_transfer(&dev->ctrl_pipe); 58 if (rc != EOK) { 59 usb_log_error("Failed to start transfer on control pipe: %s.\n", 60 str_error(rc)); 61 return rc; 62 } 56 63 57 64 bool accept = usbmid_explore_device(dev); -
uspace/drv/usbmouse/init.c
rda1dd48 rc7dd69d 125 125 } 126 126 127 /* Open the control pipe. */ 128 rc = usb_pipe_start_session(&dev->ctrl_pipe); 129 if (rc != EOK) { 130 goto leave; 131 } 132 127 133 /* Set the boot protocol. */ 128 134 rc = usb_control_request_set(&dev->ctrl_pipe, … … 134 140 } 135 141 136 /* Everything all right. */ 142 /* Close the control pipe (ignore errors). */ 143 usb_pipe_end_session(&dev->ctrl_pipe); 144 145 146 /* Everything allright. */ 137 147 dev->driver_data = mouse; 138 148 mouse->mouse_fun->driver_data = mouse; -
uspace/drv/usbmouse/main.c
rda1dd48 rc7dd69d 54 54 } 55 55 56 usb_log_debug("Polling pipe at endpoint %d.\n", 57 dev->pipes[0].pipe->endpoint_no); 56 usb_log_debug("Polling pipe at endpoint %d.\n", dev->pipes[0].pipe->endpoint_no); 58 57 59 58 rc = usb_device_auto_poll(dev, 0, … … 67 66 } 68 67 69 usb_log_info("controlling new mouse (handle % " PRIun ").\n",68 usb_log_info("controlling new mouse (handle %llu).\n", 70 69 dev->ddf_dev->handle); 71 70 -
uspace/drv/vhc/conndev.c
rda1dd48 rc7dd69d 99 99 int rc = get_device_name(callback, devname, DEVICE_NAME_MAXLENGTH); 100 100 101 usb_log_info("New virtual device `%s' (id = % " PRIxn ").\n",101 usb_log_info("New virtual device `%s' (id = %x).\n", 102 102 rc == EOK ? devname : "<unknown>", dev->id); 103 103 … … 122 122 } 123 123 124 usb_log_info("Virtual device disconnected (id = %" PRIxn ").\n", 125 dev->id); 124 usb_log_info("Virtual device disconnected (id = %x).\n", dev->id); 126 125 virtdev_destroy_device(dev); 127 126 } -
uspace/lib/c/include/ipc/dev_iface.h
rda1dd48 rc7dd69d 45 45 /** Interface provided by USB host controller. */ 46 46 USBHC_DEV_IFACE, 47 /** Interface provided by USB HID devices. */48 USBHID_DEV_IFACE,49 47 50 48 DEV_IFACE_MAX -
uspace/lib/drv/generic/dev_iface.c
rda1dd48 rc7dd69d 43 43 #include "remote_usb.h" 44 44 #include "remote_usbhc.h" 45 #include "remote_usbhid.h"46 45 #include "remote_pci.h" 47 46 … … 52 51 &remote_pci_iface, 53 52 &remote_usb_iface, 54 &remote_usbhc_iface, 55 &remote_usbhid_iface 53 &remote_usbhc_iface 56 54 } 57 55 }; -
uspace/lib/usb/Makefile
rda1dd48 rc7dd69d 42 42 src/dp.c \ 43 43 src/dump.c \ 44 src/hidiface.c \45 44 src/hidparser.c \ 46 45 src/hub.c \ -
uspace/lib/usb/include/usb/classes/hub.h
rda1dd48 rc7dd69d 152 152 maximum of 255 ports). 153 153 */ 154 uint8_t devices_removable[32];154 uint8_t * devices_removable; 155 155 156 156 /** -
uspace/lib/usb/include/usb/debug.h
rda1dd48 rc7dd69d 36 36 #define LIBUSB_DEBUG_H_ 37 37 #include <stdio.h> 38 #include <inttypes.h>39 38 #include <usb/usb.h> 40 39 #include <assert.h> … … 86 85 void usb_log_enable(usb_log_level_t, const char *); 87 86 88 void usb_log_printf(usb_log_level_t, const char *, ...) 89 PRINTF_ATTRIBUTE(2, 3); 87 void usb_log_printf(usb_log_level_t, const char *, ...); 90 88 91 89 /** Log fatal error. */ -
uspace/lib/usb/include/usb/pipes.h
rda1dd48 rc7dd69d 99 99 /** Number of active transfers over the pipe. */ 100 100 int refcount; 101 /** Number of failed attempts to open the HC phone.102 * When user requests usb_pipe_start_long_transfer() and the operation103 * fails, there is no way to report this to the user.104 * That the soft reference counter is increased to record the attempt.105 * When the user then request e.g. usb_pipe_read(), it will try to106 * add reference as well.107 * If that fails, it is reported to the user. If it is okay, the108 * real reference counter is incremented.109 * The problem might arise when ending the long transfer (since110 * the number of references would be only 1, but logically it shall be111 * two).112 * Decrementing the soft counter first shall solve this.113 */114 int refcount_soft;115 101 116 102 /** Whether to automatically reset halt on the endpoint. … … 177 163 int usb_pipe_unregister(usb_pipe_t *, usb_hc_connection_t *); 178 164 179 void usb_pipe_start_long_transfer(usb_pipe_t *); 165 int usb_pipe_start_session(usb_pipe_t *); 166 int usb_pipe_end_session(usb_pipe_t *); 167 bool usb_pipe_is_session_started(usb_pipe_t *); 168 169 int usb_pipe_start_long_transfer(usb_pipe_t *); 180 170 void usb_pipe_end_long_transfer(usb_pipe_t *); 181 171 -
uspace/lib/usb/src/devdrv.c
rda1dd48 rc7dd69d 236 236 237 237 /* It is worth to start a long transfer. */ 238 usb_pipe_start_long_transfer(ctrl_pipe); 238 rc = usb_pipe_start_long_transfer(ctrl_pipe); 239 if (rc != EOK) { 240 return rc; 241 } 239 242 240 243 /* Get the device descriptor. */ -
uspace/lib/usb/src/devpoll.c
rda1dd48 rc7dd69d 78 78 usb_endpoint_mapping_t *mapping 79 79 = &polling_data->dev->pipes[polling_data->pipe_index]; 80 usb_log_debug("Poll %p: started polling of `%s' - " \80 usb_log_debug("Poll0x%x: started polling of `%s' - " \ 81 81 "interface %d (%s,%d,%d), %zuB/%zu.\n", 82 82 polling_data, … … 100 100 if (rc == EOK) { 101 101 usb_log_debug( 102 "Poll %p: received: '%s' (%zuB).\n",102 "Poll0x%x: received: '%s' (%zuB).\n", 103 103 polling_data, 104 104 usb_debug_str_buffer(polling_data->buffer, … … 107 107 } else { 108 108 usb_log_debug( 109 "Poll %p: polling failed: %s.\n",109 "Poll0x%x: polling failed: %s.\n", 110 110 polling_data, str_error(rc)); 111 111 } -
uspace/lib/usb/src/hidparser.c
rda1dd48 rc7dd69d 167 167 168 168 usb_log_debug2( 169 "i(% zu) data(%X) value(%X): TAG %d, class %u, size %u - ", i,169 "i(%u) data(%X) value(%X): TAG %u, class %u, size %u - ", i, 170 170 data[i], usb_hid_report_tag_data_int32(data+i+1,item_size), 171 171 tag, class, item_size); … … 576 576 report_item = list_get_instance(item, usb_hid_report_item_t, link); 577 577 578 usb_log_debug("\tOFFSET: % zX\n", report_item->offset);578 usb_log_debug("\tOFFSET: %X\n", report_item->offset); 579 579 usb_log_debug("\tCOUNT: %X\n", report_item->count); 580 580 usb_log_debug("\tSIZE: %X\n", report_item->size); -
uspace/lib/usb/src/hidreport.c
rda1dd48 rc7dd69d 109 109 110 110 if (*d != sizeof(usb_standard_hid_descriptor_t)) { 111 usb_log_error("HID descriptor has wrong size (%u, expected %zu"111 usb_log_error("HID descriptor hass wrong size (%u, expected %u" 112 112 ")\n", *d, sizeof(usb_standard_hid_descriptor_t)); 113 113 return EINVAL; … … 149 149 free(*report_desc); 150 150 *report_desc = NULL; 151 usb_log_error("Report descriptor has wrong size (% zu, expected "151 usb_log_error("Report descriptor has wrong size (%u, expected " 152 152 "%u)\n", actual_size, length); 153 153 return EINVAL; -
uspace/lib/usb/src/pipepriv.c
rda1dd48 rc7dd69d 77 77 * 78 78 * @param pipe The USB pipe. 79 * @param hide_failure Whether to hide failure when adding reference80 * (use soft refcount).81 79 * @return Error code. 82 80 * @retval EOK Currently always. 83 81 */ 84 int pipe_add_ref(usb_pipe_t *pipe , bool hide_failure)82 int pipe_add_ref(usb_pipe_t *pipe) 85 83 { 84 another_try: 86 85 pipe_acquire(pipe); 87 86 … … 90 89 int phone = devman_device_connect(pipe->wire->hc_handle, 0); 91 90 if (phone < 0) { 92 if (hide_failure) { 93 pipe->refcount_soft++; 94 phone = EOK; 95 } 91 // TODO: treat some error as non-recoverable 92 // and return error from here 96 93 pipe_release(pipe); 97 return phone;94 goto another_try; 98 95 } 99 96 /* … … 117 114 { 118 115 pipe_acquire(pipe); 119 if (pipe->refcount_soft > 0) {120 pipe->refcount_soft--;121 pipe_release(pipe);122 return;123 }124 116 assert(pipe->refcount > 0); 125 117 pipe->refcount--; -
uspace/lib/usb/src/pipepriv.h
rda1dd48 rc7dd69d 37 37 38 38 #include <usb/pipes.h> 39 #include <bool.h>40 39 41 40 void pipe_acquire(usb_pipe_t *); … … 45 44 void pipe_end_transaction(usb_pipe_t *); 46 45 47 int pipe_add_ref(usb_pipe_t * , bool);46 int pipe_add_ref(usb_pipe_t *); 48 47 void pipe_drop_ref(usb_pipe_t *); 49 48 -
uspace/lib/usb/src/pipes.c
rda1dd48 rc7dd69d 229 229 } 230 230 231 232 /** Start a session on the endpoint pipe. 233 * 234 * A session is something inside what any communication occurs. 235 * It is expected that sessions would be started right before the transfer 236 * and ended - see usb_pipe_end_session() - after the last 237 * transfer. 238 * The reason for this is that session actually opens some communication 239 * channel to the host controller (or to the physical hardware if you 240 * wish) and thus it involves acquiring kernel resources. 241 * Since they are limited, sessions shall not be longer than strictly 242 * necessary. 243 * 244 * @deprecated 245 * Obsoleted with introduction of usb_pipe_start_long_transfer 246 * 247 * @param pipe Endpoint pipe to start the session on. 248 * @return Error code. 249 */ 250 int usb_pipe_start_session(usb_pipe_t *pipe) 251 { 252 usb_log_warning("usb_pipe_start_session() was deprecated.\n"); 253 return EOK; 254 } 255 256 257 /** Ends a session on the endpoint pipe. 258 * 259 * @deprecated 260 * Obsoleted with introduction of usb_pipe_end_long_transfer 261 * 262 * @see usb_pipe_start_session 263 * 264 * @param pipe Endpoint pipe to end the session on. 265 * @return Error code. 266 */ 267 int usb_pipe_end_session(usb_pipe_t *pipe) 268 { 269 usb_log_warning("usb_pipe_end_session() was deprecated.\n"); 270 return EOK; 271 } 272 273 /** Tell whether a session is started (open) on the endpoint pipe. 274 * 275 * The expected usage of this function is in assertions for some 276 * nested functions. 277 * 278 * @param pipe Endpoint pipe in question. 279 * @return Whether @p pipe has opened a session. 280 */ 281 bool usb_pipe_is_session_started(usb_pipe_t *pipe) 282 { 283 pipe_acquire(pipe); 284 bool started = pipe->refcount > 0; 285 pipe_release(pipe); 286 return started; 287 } 288 231 289 /** Prepare pipe for a long transfer. 232 290 * … … 239 297 * @return Error code. 240 298 */ 241 voidusb_pipe_start_long_transfer(usb_pipe_t *pipe)242 { 243 (void) pipe_add_ref(pipe, true);299 int usb_pipe_start_long_transfer(usb_pipe_t *pipe) 300 { 301 return pipe_add_ref(pipe); 244 302 } 245 303 -
uspace/lib/usb/src/pipesinit.c
rda1dd48 rc7dd69d 365 365 pipe->direction = direction; 366 366 pipe->refcount = 0; 367 pipe->refcount_soft = 0;368 367 pipe->auto_reset_halt = false; 369 368 … … 420 419 int rc; 421 420 422 usb_pipe_start_long_transfer(pipe); 421 rc = usb_pipe_start_long_transfer(pipe); 422 if (rc != EOK) { 423 return rc; 424 } 425 423 426 424 427 uint8_t dev_descr_start[CTRL_PIPE_MIN_PACKET_SIZE]; -
uspace/lib/usb/src/pipesio.c
rda1dd48 rc7dd69d 173 173 174 174 int rc; 175 rc = pipe_add_ref(pipe , false);175 rc = pipe_add_ref(pipe); 176 176 if (rc != EOK) { 177 177 return rc; … … 296 296 int rc; 297 297 298 rc = pipe_add_ref(pipe , false);298 rc = pipe_add_ref(pipe); 299 299 if (rc != EOK) { 300 300 return rc; … … 447 447 int rc; 448 448 449 rc = pipe_add_ref(pipe , false);449 rc = pipe_add_ref(pipe); 450 450 if (rc != EOK) { 451 451 return rc; … … 579 579 int rc; 580 580 581 rc = pipe_add_ref(pipe , false);581 rc = pipe_add_ref(pipe); 582 582 if (rc != EOK) { 583 583 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.