Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
/* Handle general USB interrupts and dispatch according to type. * This function implements TRM Figure 14-13. */ void s3c2410_udc_irq(void) { = udc_device->bus->endpoint_array; u_int32_t save_idx = inl(S3C2410_UDC_INDEX_REG); /* read interrupt sources */ u_int32_t usb_status = inl(S3C2410_UDC_USB_INT_REG); u_int32_t usbd_status = inl(S3C2410_UDC_EP_INT_REG); //debug("< IRQ usbs=0x%02x, usbds=0x%02x start >", usb_status, usbd_status); /* clear interrupts */ outl(usb_status, S3C2410_UDC_USB_INT_REG); if { //serial_putc('R'); debug("RESET pwr=0x%x\n", inl(S3C2410_UDC_PWR_REG)); udc_setup_ep(udc_device, 0, ep0); outl(S3C2410_UDC_EP0_CSR_SSE|S3C2410_UDC_EP0_CSR_SOPKTRDY, S3C2410_UDC_EP0_CSR_REG); ep0->state = EP0_IDLE; usbd_device_event_irq (udc_device, DEVICE_RESET, 0); } |