Changes in uspace/drv/nic/ar9271/ath_usb.c [cde999a:b3c39690] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/ar9271/ath_usb.c
rcde999a rb3c39690 35 35 #include <usb/dev/pipes.h> 36 36 #include <usb/debug.h> 37 #include < stdlib.h>37 #include <malloc.h> 38 38 #include <errno.h> 39 39 #include "ath_usb.h" … … 56 56 * @param usb_device Connected USB device. 57 57 * 58 * @return EOK if succeed, error code otherwise.58 * @return EOK if succeed, negative error code otherwise. 59 59 * 60 60 */ 61 int ath_usb_init(ath_t *ath, usb_device_t *usb_device )61 int ath_usb_init(ath_t *ath, usb_device_t *usb_device, const usb_endpoint_description_t **endpoints) 62 62 { 63 63 ath_usb_t *ath_usb = malloc(sizeof(ath_usb_t)); … … 70 70 ath_usb->usb_device = usb_device; 71 71 72 /* TODO: Assign by iterating over pipes. */ 73 ath_usb->output_data_pipe_number = 0; 74 ath_usb->input_data_pipe_number = 1; 75 ath_usb->input_ctrl_pipe_number = 2; 76 ath_usb->output_ctrl_pipe_number = 3; 72 int rc; 73 74 #define _MAP_EP(target, ep_no) do {\ 75 usb_endpoint_mapping_t *epm = usb_device_get_mapped_ep_desc(usb_device, endpoints[ep_no]);\ 76 if (!epm || !epm->present) {\ 77 usb_log_error("Failed to map endpoint: " #ep_no ".");\ 78 rc = ENOENT;\ 79 goto err_ath_usb;\ 80 }\ 81 target = &epm->pipe;\ 82 } while (0); 83 84 _MAP_EP(ath_usb->output_data_pipe, 0); 85 _MAP_EP(ath_usb->input_data_pipe, 1); 86 _MAP_EP(ath_usb->input_ctrl_pipe, 2); 87 _MAP_EP(ath_usb->output_ctrl_pipe, 3); 88 89 #undef _MAP_EP 77 90 78 91 ath->ctrl_response_length = 64; … … 83 96 84 97 return EOK; 98 err_ath_usb: 99 free(ath_usb); 100 return rc; 85 101 } 86 102 … … 91 107 * @param buffer_size Buffer size. 92 108 * 93 * @return EOK if succeed, error code otherwise.109 * @return EOK if succeed, negative error code otherwise. 94 110 * 95 111 */ … … 98 114 { 99 115 ath_usb_t *ath_usb = (ath_usb_t *) ath->specific_data; 100 usb_pipe_t *pipe = &usb_device_get_mapped_ep( 101 ath_usb->usb_device, ath_usb->output_ctrl_pipe_number)->pipe; 102 103 return usb_pipe_write(pipe, buffer, buffer_size); 116 return usb_pipe_write(ath_usb->output_ctrl_pipe, buffer, buffer_size); 104 117 } 105 118 … … 111 124 * @param transferred_size Real size of read data. 112 125 * 113 * @return EOK if succeed, error code otherwise.126 * @return EOK if succeed, negative error code otherwise. 114 127 * 115 128 */ … … 118 131 { 119 132 ath_usb_t *ath_usb = (ath_usb_t *) ath->specific_data; 120 usb_pipe_t *pipe = &usb_device_get_mapped_ep( 121 ath_usb->usb_device, ath_usb->input_ctrl_pipe_number)->pipe; 122 123 return usb_pipe_read(pipe, buffer, buffer_size, transferred_size); 133 return usb_pipe_read(ath_usb->input_ctrl_pipe, buffer, buffer_size, transferred_size); 124 134 } 125 135 … … 130 140 * @param buffer_size Buffer size. 131 141 * 132 * @return EOK if succeed, error code otherwise.142 * @return EOK if succeed, negative error code otherwise. 133 143 * 134 144 */ … … 148 158 149 159 ath_usb_t *ath_usb = (ath_usb_t *) ath->specific_data; 150 usb_pipe_t *pipe = &usb_device_get_mapped_ep( 151 ath_usb->usb_device, ath_usb->output_data_pipe_number)->pipe; 152 153 int ret_val = usb_pipe_write(pipe, complete_buffer, 160 int ret_val = usb_pipe_write(ath_usb->output_data_pipe, complete_buffer, 154 161 complete_buffer_size); 155 162 … … 166 173 * @param transferred_size Real size of read data. 167 174 * 168 * @return EOK if succeed, error code otherwise.175 * @return EOK if succeed, negative error code otherwise. 169 176 * 170 177 */ … … 173 180 { 174 181 ath_usb_t *ath_usb = (ath_usb_t *) ath->specific_data; 175 usb_pipe_t *pipe = &usb_device_get_mapped_ep( 176 ath_usb->usb_device, ath_usb->input_data_pipe_number)->pipe; 177 178 return usb_pipe_read(pipe, buffer, buffer_size, transferred_size); 182 return usb_pipe_read(ath_usb->input_data_pipe, buffer, buffer_size, transferred_size); 179 183 }
Note:
See TracChangeset
for help on using the changeset viewer.