Changes in uspace/drv/uhci-hcd/main.c [a7e2f0d:8e1eb4d0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/main.c
ra7e2f0d r8e1eb4d0 34 34 #include <ddf/driver.h> 35 35 #include <ddf/interrupt.h> 36 #include <device/hw_res.h>37 #include <errno.h>38 #include <str_error.h>39 40 36 #include <usb_iface.h> 41 37 #include <usb/ddfiface.h> 38 #include <device/hw_res.h> 39 40 #include <errno.h> 41 42 42 #include <usb/debug.h> 43 43 … … 50 50 51 51 static int uhci_add_device(ddf_dev_t *device); 52 52 53 /*----------------------------------------------------------------------------*/ 53 54 static driver_ops_t uhci_driver_ops = { … … 60 61 }; 61 62 /*----------------------------------------------------------------------------*/ 62 /** IRQ handling callback, identifies devic63 *64 * @param[in] dev DDF instance of the device to use.65 * @param[in] iid (Unused).66 * @param[in] call Pointer to the call that represents interrupt.67 */68 63 static void irq_handler(ddf_dev_t *dev, ipc_callid_t iid, ipc_call_t *call) 69 64 { … … 75 70 } 76 71 /*----------------------------------------------------------------------------*/ 77 /** Initializes a new ddf driver instance of UHCI hcd. 78 * 79 * @param[in] device DDF instance of the device to initialize. 80 * @return Error code. 81 * 82 * Gets and initialies hardware resources, disables any legacy support, 83 * and reports root hub device. 84 */ 85 int uhci_add_device(ddf_dev_t *device) 72 #define CHECK_RET_RETURN(ret, message...) \ 73 if (ret != EOK) { \ 74 usb_log_error(message); \ 75 return ret; \ 76 } 77 78 static int uhci_add_device(ddf_dev_t *device) 86 79 { 87 80 assert(device); 88 uhci_t *hcd = NULL;89 #define CHECK_RET_FREE_HC_RETURN(ret, message...) \90 if (ret != EOK) { \91 usb_log_error(message); \92 if (hcd != NULL) \93 free(hcd); \94 return ret; \95 }96 81 97 82 usb_log_info("uhci_add_device() called\n"); … … 103 88 int ret = 104 89 pci_get_my_registers(device, &io_reg_base, &io_reg_size, &irq); 105 CHECK_RET_FREE_HC_RETURN(ret, 90 91 CHECK_RET_RETURN(ret, 106 92 "Failed(%d) to get I/O addresses:.\n", ret, device->handle); 107 93 usb_log_info("I/O regs at 0x%X (size %zu), IRQ %d.\n", 108 94 io_reg_base, io_reg_size, irq); 109 95 110 ret = pci_disable_legacy(device); 111 CHECK_RET_FREE_HC_RETURN(ret, 112 "Failed(%d) to disable legacy USB: %s.\n", ret, str_error(ret)); 96 // ret = pci_enable_interrupts(device); 97 // CHECK_RET_RETURN(ret, "Failed(%d) to get enable interrupts:\n", ret); 113 98 114 #if 0 115 ret = pci_enable_interrupts(device); 99 uhci_t *uhci_hc = malloc(sizeof(uhci_t)); 100 ret = (uhci_hc != NULL) ? EOK : ENOMEM; 101 CHECK_RET_RETURN(ret, "Failed to allocate memory for uhci hcd driver.\n"); 102 103 ret = uhci_init(uhci_hc, device, (void*)io_reg_base, io_reg_size); 116 104 if (ret != EOK) { 117 usb_log_ warning(118 "Failed(%d) to enable interrupts, fall back to polling.\n",119 ret);105 usb_log_error("Failed to init uhci-hcd.\n"); 106 free(uhci_hc); 107 return ret; 120 108 } 121 #endif122 123 hcd = malloc(sizeof(uhci_t));124 ret = (hcd != NULL) ? EOK : ENOMEM;125 CHECK_RET_FREE_HC_RETURN(ret,126 "Failed(%d) to allocate memory for uhci hcd.\n", ret);127 128 ret = uhci_init(hcd, device, (void*)io_reg_base, io_reg_size);129 CHECK_RET_FREE_HC_RETURN(ret, "Failed(%d) to init uhci-hcd.\n", ret);130 #undef CHECK_RET_FREE_HC_RETURN131 109 132 110 /* 133 * We might free hcd, but that does not matter since no one111 * We might free uhci_hc, but that does not matter since no one 134 112 * else would access driver_data anyway. 135 113 */ 136 device->driver_data = hcd; 114 device->driver_data = uhci_hc; 115 ret = register_interrupt_handler(device, irq, irq_handler, 116 &uhci_hc->interrupt_code); 117 if (ret != EOK) { 118 usb_log_error("Failed to register interrupt handler.\n"); 119 uhci_fini(uhci_hc); 120 free(uhci_hc); 121 return ret; 122 } 137 123 138 ddf_fun_t *rh = NULL; 139 #define CHECK_RET_FINI_FREE_RETURN(ret, message...) \ 140 if (ret != EOK) { \ 141 usb_log_error(message); \ 142 if (hcd != NULL) {\ 143 uhci_fini(hcd); \ 144 free(hcd); \ 145 } \ 146 if (rh != NULL) \ 147 free(rh); \ 148 return ret; \ 149 } 150 151 /* It does no harm if we register this on polling */ 152 ret = register_interrupt_handler(device, irq, irq_handler, 153 &hcd->interrupt_code); 154 CHECK_RET_FINI_FREE_RETURN(ret, 155 "Failed(%d) to register interrupt handler.\n", ret); 156 124 ddf_fun_t *rh; 157 125 ret = setup_root_hub(&rh, device); 158 CHECK_RET_FINI_FREE_RETURN(ret, 159 "Failed(%d) to setup UHCI root hub.\n", ret); 160 rh->driver_data = hcd->ddf_instance; 126 if (ret != EOK) { 127 usb_log_error("Failed to setup uhci root hub.\n"); 128 uhci_fini(uhci_hc); 129 free(uhci_hc); 130 return ret; 131 } 132 rh->driver_data = uhci_hc->ddf_instance; 161 133 162 134 ret = ddf_fun_bind(rh); 163 CHECK_RET_FINI_FREE_RETURN(ret, 164 "Failed(%d) to register UHCI root hub.\n", ret); 135 if (ret != EOK) { 136 usb_log_error("Failed to register root hub.\n"); 137 uhci_fini(uhci_hc); 138 free(uhci_hc); 139 free(rh); 140 return ret; 141 } 165 142 166 143 return EOK; 167 #undef CHECK_RET_FINI_FREE_RETURN168 144 } 169 145 /*----------------------------------------------------------------------------*/ 170 /** Initializes global driver structures (NONE).171 *172 * @param[in] argc Nmber of arguments in argv vector (ignored).173 * @param[in] argv Cmdline argument vector (ignored).174 * @return Error code.175 *176 * Driver debug level is set here.177 */178 146 int main(int argc, char *argv[]) 179 147 {
Note:
See TracChangeset
for help on using the changeset viewer.