Changeset 7034be15 in mainline
- Timestamp:
- 2010-11-19T23:00:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e27595b
- Parents:
- 91db50ac
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/root/root.c
r91db50ac r7034be15 72 72 static int add_platform_child(device_t *parent) 73 73 { 74 return EOK; 74 75 printf(NAME ": adding new child for platform device.\n"); 75 76 -
uspace/drv/vhc/hcd.c
r91db50ac r7034be15 66 66 67 67 dev->transfer_ops = &vhc_transfer_ops; 68 /* Fail because of bug in libusb that caused devman to hang. */ 69 return ENOTSUP; 68 69 /* 70 * Announce that we have some root hub present. 71 */ 72 usb_hcd_add_root_hub(dev); 73 74 return EOK; 70 75 } 71 76 … … 77 82 int main(int argc, char * argv[]) 78 83 { 79 /*80 * For debugging purpose to enable viewing the output81 * within devman tty.82 */83 sleep(5);84 85 84 printf("%s: virtual USB host controller driver.\n", NAME); 86 85 -
uspace/lib/usb/hcdhubd.c
r91db50ac r7034be15 34 34 */ 35 35 #include "hcdhubd.h" 36 #include <usb_iface.h> 36 37 #include <driver.h> 37 38 #include <bool.h> … … 44 45 static usb_hc_driver_t *hc_driver = NULL; 45 46 47 static usb_iface_t usb_interface = { 48 .interrupt_out = NULL, 49 .interrupt_in = NULL 50 }; 51 52 static device_ops_t usb_device_ops = { 53 .interfaces[USB_DEV_IFACE] = &usb_interface 54 }; 55 46 56 /** Callback when new device is detected and must be handled by this driver. 47 57 * … … 63 73 usb_hc_device_t *hc_dev = malloc(sizeof(usb_hc_device_t)); 64 74 list_initialize(&hc_dev->link); 75 hc_dev->transfer_ops = NULL; 65 76 66 77 hc_dev->generic = dev; … … 71 82 } 72 83 73 add_device_to_class(dev, "usbhc"); 84 /* 85 * Finish initialization of dev and hc_dev structures. 86 */ 87 hc_dev->generic->driver_data = hc_dev; 88 dev->ops = &usb_device_ops; 89 90 /* 91 * FIXME: The following line causes devman to hang. 92 * Will investigate later why. 93 */ 94 // add_device_to_class(dev, "usbhc"); 74 95 75 96 list_append(&hc_dev->link, &hc_list); … … 128 149 * FIXME: check returned value for possible errors 129 150 */ 130 usb_hc d_local_transfer_interrupt_in(hc, target,151 usb_hc_async_interrupt_in(hc, target, 131 152 change_bitmap, byte_length, &actual_size, 132 153 &handle); 133 154 134 usb_hc d_local_wait_for(handle);155 usb_hc_async_wait_for(handle); 135 156 136 157 /* … … 187 208 int usb_hcd_add_root_hub(usb_hc_device_t *dev) 188 209 { 210 int rc; 211 212 /* 213 * For testing/debugging purposes only. 214 * Try to send some data to default USB address. 215 */ 216 usb_target_t target = {0, 0}; 217 usb_handle_t handle = 0; 218 char *data = (char *) "Hello, World!"; 219 220 221 (void)usb_hc_async_interrupt_out(dev, target, data, str_length(data), &handle); 222 (void)usb_hc_async_wait_for(handle); 223 189 224 /* 190 225 * Announce presence of child device. … … 192 227 device_t *hub = NULL; 193 228 match_id_t *match_id = NULL; 194 int rc;195 229 196 230 hub = create_device(); … … 215 249 216 250 match_id->id = id; 217 match_id->score = 10;251 match_id->score = 30; 218 252 219 253 add_match_id(&hub->match_ids, match_id); … … 224 258 } 225 259 260 printf("%s: registered root hub\n", dev->generic->name); 226 261 return EOK; 227 262 … … 236 271 } 237 272 273 /** Issue interrupt OUT transfer to HC driven by current task. 274 * 275 * @param hc Host controller to handle the transfer. 276 * @param target Target device address. 277 * @param buffer Data buffer. 278 * @param size Buffer size. 279 * @param handle Transfer handle. 280 * @return Error code. 281 */ 282 int usb_hc_async_interrupt_out(usb_hc_device_t *hc, usb_target_t target, 283 void *buffer, size_t size, 284 usb_handle_t *handle) 285 { 286 if ((hc->transfer_ops == NULL) 287 || (hc->transfer_ops->transfer_out == NULL)) { 288 return ENOTSUP; 289 } 290 291 /* 292 * For debugging purposes only. 293 * We need to find appropriate device in list of managed device 294 * and pass it to the transfer callback function. 295 */ 296 usb_hcd_attached_device_info_t dev = { 297 .address = target.address, 298 .endpoint_count = 0, 299 .endpoints = NULL, 300 }; 301 usb_hc_endpoint_info_t endpoint = { 302 .endpoint = target.endpoint, 303 .transfer_type = USB_TRANSFER_INTERRUPT, 304 .direction = USB_DIRECTION_OUT, 305 .data_toggle = 0 306 }; 307 308 hc->transfer_ops->transfer_out(hc, &dev, &endpoint, buffer, size, NULL, NULL); 309 310 *handle = NULL; 311 312 return EOK; 313 } 314 238 315 239 316 /** Issue interrupt IN transfer to HC driven by current task. 240 317 * 241 318 * @warning The @p buffer and @p actual_size parameters shall not be 242 * touched until this transfer is waited for by usb_hc d_local_wait_for().319 * touched until this transfer is waited for by usb_hc_async_wait_for(). 243 320 * 244 321 * @param hc Host controller to handle the transfer. … … 250 327 * @return Error code. 251 328 */ 252 int usb_hc d_local_transfer_interrupt_in(usb_hc_device_t *hc,253 usb_target_t target,void *buffer, size_t size, size_t *actual_size,329 int usb_hc_async_interrupt_in(usb_hc_device_t *hc, usb_target_t target, 330 void *buffer, size_t size, size_t *actual_size, 254 331 usb_handle_t *handle) 255 332 { … … 266 343 * @return Error code. 267 344 */ 268 int usb_hc d_local_wait_for(usb_handle_t handle)345 int usb_hc_async_wait_for(usb_handle_t handle) 269 346 { 270 347 return ENOTSUP; -
uspace/lib/usb/hcdhubd.h
r91db50ac r7034be15 80 80 /** Callback for OUT transfers. */ 81 81 typedef void (*usb_hcd_transfer_callback_out_t) 82 (usb_hc_device_t *, usb_hcd_attached_device_info_t *, 83 usb_hc_endpoint_info_t *, 84 usb_transaction_outcome_t, void *); 82 (usb_hc_device_t *, usb_transaction_outcome_t, void *); 85 83 86 84 /** Callback for IN transfers. */ 87 85 typedef void (*usb_hcd_transfer_callback_in_t) 88 (usb_hc_device_t *, usb_hcd_attached_device_info_t *, 89 usb_hc_endpoint_info_t *, 90 size_t, usb_transaction_outcome_t, void *); 86 (usb_hc_device_t *, size_t, usb_transaction_outcome_t, void *); 91 87 92 88 … … 158 154 */ 159 155 160 int usb_hcd_local_set_endpoint_properties(usb_hc_device_t *, usb_target_t,161 usb_transfer_type_t, usb_direction_t);162 156 163 /* First variant - repeat transfer type. */ 164 int usb_hcd_local_transfer_interrupt_in(usb_hc_device_t *, usb_target_t, 157 int usb_hc_async_interrupt_out(usb_hc_device_t *, usb_target_t, 158 void *, size_t, usb_handle_t *); 159 int usb_hc_async_interrupt_in(usb_hc_device_t *, usb_target_t, 165 160 void *, size_t, size_t *, usb_handle_t *); 166 161 167 /* Second variant - determine transfer type from endpoint properties. */ 168 int usb_hcd_local_transfer_in(usb_hc_device_t *, usb_target_t, 169 void *, size_t, size_t *, usb_handle_t *); 170 171 172 int usb_hcd_local_wait_for(usb_handle_t); 162 int usb_hc_async_wait_for(usb_handle_t); 173 163 174 164
Note:
See TracChangeset
for help on using the changeset viewer.