Changes in / [075c1eb:310c4df] in mainline
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/irq.h
r075c1eb r310c4df 77 77 */ 78 78 CMD_PIO_WRITE_A_32, 79 80 /** Read 1 byte from the memory space. */ 81 CMD_MEM_READ_8, 82 /** Read 2 bytes from the memory space. */ 83 CMD_MEM_READ_16, 84 /** Read 4 bytes from the memory space. */ 85 CMD_MEM_READ_32, 86 87 /** Write 1 byte to the memory space. */ 88 CMD_MEM_WRITE_8, 89 /** Write 2 bytes to the memory space. */ 90 CMD_MEM_WRITE_16, 91 /** Write 4 bytes to the memory space. */ 92 CMD_MEM_WRITE_32, 93 94 /** Write 1 byte from the source argument to the memory space. */ 95 CMD_MEM_WRITE_A_8, 96 /** Write 2 bytes from the source argument to the memory space. */ 97 CMD_MEM_WRITE_A_16, 98 /** Write 4 bytes from the source argument to the memory space. */ 99 CMD_MEM_WRITE_A_32, 100 79 101 80 /** 102 81 * Perform a bit masking on the source argument … … 224 203 /** Notification configuration structure. */ 225 204 ipc_notif_cfg_t notif_cfg; 226 227 as_t *driver_as;228 205 } irq_t; 229 206 -
kernel/generic/src/ipc/irq.c
r075c1eb r310c4df 174 174 irq->notif_cfg.code = code; 175 175 irq->notif_cfg.counter = 0; 176 irq->driver_as = AS;177 176 178 177 /* … … 365 364 return IRQ_DECLINE; 366 365 367 #define CMD_MEM_READ(target) \368 do { \369 void *va = code->cmds[i].addr; \370 if (AS != irq->driver_as) \371 as_switch(AS, irq->driver_as); \372 printf("Copying data from address: %p.\n", va); \373 memcpy_from_uspace(&target, va, (sizeof(target))); \374 if (dstarg) \375 scratch[dstarg] = target; \376 } while(0)377 378 #define CMD_MEM_WRITE(val) \379 do { \380 void *va = code->cmds[i].addr; \381 if (AS != irq->driver_as) \382 as_switch(AS, irq->driver_as); \383 printf("Writing data to address: %p.\n", va); \384 memcpy_to_uspace(va, &val, sizeof(val)); \385 } while (0)386 387 as_t *current_as = AS;388 366 size_t i; 389 367 for (i = 0; i < code->cmdcount; i++) { … … 444 422 } 445 423 break; 446 case CMD_MEM_READ_8: {447 uint8_t val;448 CMD_MEM_READ(val);449 break;450 }451 case CMD_MEM_READ_16: {452 uint16_t val;453 CMD_MEM_READ(val);454 break;455 }456 case CMD_MEM_READ_32: {457 uint32_t val;458 CMD_MEM_READ(val);459 printf("mem READ value: %x.\n", val);460 break;461 }462 case CMD_MEM_WRITE_8: {463 uint8_t val = code->cmds[i].value;464 CMD_MEM_WRITE(val);465 break;466 }467 case CMD_MEM_WRITE_16: {468 uint16_t val = code->cmds[i].value;469 CMD_MEM_WRITE(val);470 break;471 }472 case CMD_MEM_WRITE_32: {473 uint32_t val = code->cmds[i].value;474 CMD_MEM_WRITE(val);475 break;476 }477 case CMD_MEM_WRITE_A_8:478 if (srcarg) {479 uint8_t val = scratch[srcarg];480 CMD_MEM_WRITE(val);481 }482 break;483 case CMD_MEM_WRITE_A_16:484 if (srcarg) {485 uint16_t val = scratch[srcarg];486 CMD_MEM_WRITE(val);487 }488 break;489 case CMD_MEM_WRITE_A_32:490 if (srcarg) {491 uint32_t val = scratch[srcarg];492 CMD_MEM_WRITE(val);493 }494 break;495 424 case CMD_BTEST: 496 425 if ((srcarg) && (dstarg)) { … … 506 435 break; 507 436 case CMD_ACCEPT: 508 if (AS != current_as)509 as_switch(AS, current_as);510 437 return IRQ_ACCEPT; 511 438 case CMD_DECLINE: 512 439 default: 513 if (AS != current_as)514 as_switch(AS, current_as);515 440 return IRQ_DECLINE; 516 441 } 517 442 } 518 if (AS != current_as)519 as_switch(AS, current_as);520 443 521 444 return IRQ_DECLINE; -
uspace/drv/ehci-hcd/pci.c
r075c1eb r310c4df 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", 189 (void *) address, value); 188 usb_log_info("Register space BAR at %p:%" PRIxn ".\n", (void *) address, value); 190 189 191 190 /* clear lower byte, it's not part of the BASE address */ -
uspace/drv/ohci/hc.c
r075c1eb r310c4df 45 45 #include "hcd_endpoint.h" 46 46 47 #define OHCI_USED_INTERRUPTS \48 (I_SO | I_WDH | I_UE | I_RHSC)49 47 static int interrupt_emulator(hc_t *instance); 50 48 static void hc_gain_control(hc_t *instance); … … 287 285 { 288 286 assert(instance); 287 if ((status & ~IS_SF) == 0) /* ignore sof status */ 288 return; 289 if (status & IS_RHSC) 290 rh_interrupt(&instance->rh); 291 289 292 usb_log_debug("OHCI interrupt: %x.\n", status); 290 if ((status & ~I_SF) == 0) /* ignore sof status */ 291 return; 292 if (status & I_RHSC) 293 rh_interrupt(&instance->rh); 294 295 296 if (status & I_WDH) { 293 294 if (status & IS_WDH) { 297 295 fibril_mutex_lock(&instance->guard); 298 296 usb_log_debug2("HCCA: %p-%#" PRIx32 " (%p).\n", instance->hcca, … … 423 421 instance->registers->control); 424 422 425 /* Enable interrupts */ 426 instance->registers->interrupt_enable = OHCI_USED_INTERRUPTS; 423 /* Disable interrupts */ 424 instance->registers->interrupt_disable = I_SF | I_OC; 425 usb_log_debug2("Disabling interrupts: %x.\n", 426 instance->registers->interrupt_disable); 427 instance->registers->interrupt_disable = I_MI; 427 428 usb_log_debug2("Enabled interrupts: %x.\n", 428 429 instance->registers->interrupt_enable); 429 instance->registers->interrupt_enable = I_MI;430 430 431 431 /* Set periodic start to 90% */ … … 492 492 instance->lists[USB_TRANSFER_INTERRUPT].list_head_pa); 493 493 494 /* Init interrupt code */495 instance->interrupt_code.cmds = instance->interrupt_commands;496 {497 /* Read status register */498 instance->interrupt_commands[0].cmd = CMD_MEM_READ_32;499 instance->interrupt_commands[0].dstarg = 1;500 instance->interrupt_commands[0].addr =501 (void*)&instance->registers->interrupt_status;502 503 /* Test whether we are the interrupt cause */504 instance->interrupt_commands[1].cmd = CMD_BTEST;505 instance->interrupt_commands[1].value =506 OHCI_USED_INTERRUPTS;507 instance->interrupt_commands[1].srcarg = 1;508 instance->interrupt_commands[1].dstarg = 2;509 510 /* Predicate cleaning and accepting */511 instance->interrupt_commands[2].cmd = CMD_PREDICATE;512 instance->interrupt_commands[2].value = 2;513 instance->interrupt_commands[2].srcarg = 2;514 515 /* Write clean status register */516 instance->interrupt_commands[3].cmd = CMD_MEM_WRITE_A_32;517 instance->interrupt_commands[3].srcarg = 1;518 instance->interrupt_commands[3].addr =519 (void*)&instance->registers->interrupt_status;520 521 /* Accept interrupt */522 instance->interrupt_commands[4].cmd = CMD_ACCEPT;523 524 instance->interrupt_code.cmdcount = OHCI_NEEDED_IRQ_COMMANDS;525 }526 527 494 return EOK; 528 495 } -
uspace/drv/ohci/hc.h
r075c1eb r310c4df 51 51 #include "hw_struct/hcca.h" 52 52 53 #define OHCI_NEEDED_IRQ_COMMANDS 554 55 53 typedef struct hc { 56 54 ohci_regs_t *registers; … … 67 65 fid_t interrupt_emulator; 68 66 fibril_mutex_t guard; 69 70 /** Code to be executed in kernel interrupt handler */71 irq_code_t interrupt_code;72 73 /** Commands that form interrupt code */74 irq_cmd_t interrupt_commands[OHCI_NEEDED_IRQ_COMMANDS];75 67 } hc_t; 76 68 -
uspace/drv/ohci/ohci.c
r075c1eb r310c4df 202 202 203 203 /* It does no harm if we register this on polling */ 204 ret = register_interrupt_handler(device, irq, irq_handler, 205 &instance->hc.interrupt_code); 204 ret = register_interrupt_handler(device, irq, irq_handler, NULL); 206 205 CHECK_RET_FINI_RETURN(ret, 207 206 "Failed(%d) to register interrupt handler.\n", ret); -
uspace/drv/ohci/ohci_regs.h
r075c1eb r310c4df 72 72 #define CS_SOC_SHIFT (16) 73 73 74 /** Interupt enable/disable/status,75 * reads give the same value,76 * writing causes enable/disable,77 * status is write-clean (writing 1 clears the bit*/78 74 volatile uint32_t interrupt_status; 75 #define IS_SO (1 << 0) /* Scheduling overrun */ 76 #define IS_WDH (1 << 1) /* Write-back done head */ 77 #define IS_SF (1 << 2) /* Start of frame */ 78 #define IS_RD (1 << 3) /* Resume detected */ 79 #define IS_UE (1 << 4) /* Unrecoverable error */ 80 #define IS_FNO (1 << 5) /* Frame number overflow */ 81 #define IS_RHSC (1 << 6) /* Root hub status change */ 82 #define IS_OC (1 << 30) /* Ownership change */ 83 84 /** Interupt enable/disable, reads give the same value, writing causes 85 * enable/disable */ 79 86 volatile uint32_t interrupt_enable; 80 87 volatile uint32_t interrupt_disable; -
uspace/drv/ohci/pci.c
r075c1eb r310c4df 146 146 int pci_enable_interrupts(ddf_dev_t *device) 147 147 { 148 return ENOTSUP; 148 149 int parent_phone = 149 150 devman_parent_device_connect(device->handle, IPC_FLAG_BLOCKING); -
uspace/lib/usb/src/host/batch.c
r075c1eb r310c4df 128 128 memcpy(instance->buffer, instance->data_buffer, instance->buffer_size); 129 129 130 usb_log_debug("Batch (%p)done (T%d.%d, %s %s in, %zuB): %s (%d).\n",130 usb_log_debug("Batch %p done (T%d.%d, %s %s in, %zuB): %s (%d).\n", 131 131 instance, instance->ep->address, instance->ep->endpoint, 132 132 usb_str_speed(instance->ep->speed), 133 133 usb_str_transfer_type_short(instance->ep->transfer_type), 134 instance->transfered_size, str_error(instance->error), 135 instance->error); 134 instance->transfered_size, str_error(instance->error), instance->error); 136 135 137 136 instance->callback_in(instance->fun, instance->error, … … 148 147 assert(instance->callback_out); 149 148 150 usb_log_debug("Batch (%p)done (T%d.%d, %s %s out): %s (%d).\n",149 usb_log_debug("Batch %p done (T%d.%d, %s %s out): %s (%d).\n", 151 150 instance, instance->ep->address, instance->ep->endpoint, 152 151 usb_str_speed(instance->ep->speed),
Note:
See TracChangeset
for help on using the changeset viewer.