Changeset 70e5ad5 in mainline
- Timestamp:
- 2010-12-16T11:12:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11658b64, 5863a95
- Parents:
- cea3fca
- Location:
- uspace/drv/vhc/hub
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/vhc/hub/hub.c
rcea3fca r70e5ad5 31 31 */ 32 32 /** @file 33 * @brief Virtual USB hub.33 * @brief Representation of an USB hub (implementation). 34 34 */ 35 35 #include <usb/classes/classes.h> … … 338 338 } 339 339 340 /** Create hub status change bitmap. 341 * 342 * @warning This function assumes that the whole bitmap fits into 8 bits. 343 * 344 * @param hub Hub in question. 345 * @return Hub status change bitmap. 346 */ 340 347 uint8_t hub_get_status_change_bitmap(hub_t *hub) 341 348 { … … 361 368 */ 362 369 370 /** Find a port in a hub. 371 * 372 * @param hub Hub in question. 373 * @param port Port index (zero based). 374 * @return Port structure. 375 * @retval NULL Invalid port index. 376 */ 363 377 static hub_port_t *get_hub_port(hub_t *hub, size_t port) 364 378 { … … 370 384 } 371 385 386 /** Adds a port status change to a port. 387 * 388 * @param port The port with status change. 389 * @param change Change to be added to the status. 390 */ 372 391 static void set_port_status_change(hub_port_t *port, 373 392 hub_status_change_t change) … … 377 396 } 378 397 398 /** Clears a port status change on a port. 399 * 400 * @param port The port with status change. 401 * @param change Change to be removed from the status. 402 */ 379 403 static void clear_port_status_change(hub_port_t *port, 380 404 uint16_t change) … … 384 408 } 385 409 410 /** Structure for automatic (delayed) port state change. */ 386 411 struct delay_port_state_change { 412 /** Delay in microseconds. */ 387 413 suseconds_t delay; 414 /** Old state of the port. */ 388 415 hub_port_state_t old_state; 416 /** New state of the port. */ 389 417 hub_port_state_t new_state; 418 /** Port index (zero based). */ 390 419 size_t port; 420 /** Hub. */ 391 421 hub_t *hub; 392 422 }; 393 423 424 /** Fibril responsible for delayed port state change. 425 * 426 * @param arg Pointer to delay_port_state_change. 427 * @return Always EOK. 428 */ 394 429 static int set_port_state_delayed_fibril(void *arg) 395 430 { … … 416 451 } 417 452 453 /** Change port state with a delay. 454 * 455 * @warning If the port state changes during the waiting phase, the state 456 * is not changed. 457 * 458 * @param hub Hub in question. 459 * @param port_index Port index (zero based). 460 * @param delay_time_ms Delay time in miliseconds. 461 * @param old_state Old (current) state of the port. 462 * @param new_state New state of the port. 463 */ 418 464 static void set_port_state_delayed(hub_t *hub, size_t port_index, 419 465 suseconds_t delay_time_ms, -
uspace/drv/vhc/hub/hub.h
rcea3fca r70e5ad5 31 31 */ 32 32 /** @file 33 * @brief 33 * @brief Representation of an USB hub. 34 34 */ 35 35 #ifndef VHC_HUB_HUB_H_ … … 72 72 /** Hub port information. */ 73 73 typedef struct { 74 /** Custom pointer to connected device. */ 74 75 void *connected_device; 76 /** Port index (one based). */ 75 77 size_t index; 78 /** Port state. */ 76 79 hub_port_state_t state; 80 /** Status change bitmap. */ 77 81 uint16_t status_change; 78 82 } hub_port_t; … … 80 84 /** Hub device type. */ 81 85 typedef struct { 86 /** Hub ports. */ 82 87 hub_port_t ports[HUB_PORT_COUNT]; 88 /** Custom hub data. */ 83 89 void *custom_data; 90 /** Access guard to the whole hub. */ 84 91 fibril_mutex_t guard; 85 92 } hub_t; -
uspace/drv/vhc/hub/virthub.c
rcea3fca r70e5ad5 72 72 }; 73 73 74 /** Hub descriptor. */ 74 75 hub_descriptor_t hub_descriptor = { 75 76 .length = sizeof(hub_descriptor_t), … … 140 141 }; 141 142 143 /** Initializes virtual hub device. 144 * 145 * @param dev Virtual USB device backend. 146 * @return Error code. 147 */ 142 148 int virthub_init(usbvirt_device_t *dev) 143 149 { … … 163 169 } 164 170 171 /** Connect a device to a virtual hub. 172 * 173 * @param dev Virtual device representing the hub. 174 * @param conn Device to be connected. 175 * @return Port device was connected to. 176 */ 165 177 int virthub_connect_device(usbvirt_device_t *dev, virtdev_connection_t *conn) 166 178 { … … 177 189 } 178 190 191 /** Disconnect a device from a virtual hub. 192 * 193 * @param dev Virtual device representing the hub. 194 * @param conn Device to be disconnected. 195 * @return Error code. 196 */ 179 197 int virthub_disconnect_device(usbvirt_device_t *dev, virtdev_connection_t *conn) 180 198 { … … 185 203 186 204 hub_acquire(hub); 205 /* TODO: implement. */ 187 206 hub_release(hub); 188 207 … … 190 209 } 191 210 211 /** Whether trafic is propagated to given device. 212 * 213 * @param dev Virtual device representing the hub. 214 * @param conn Connected device. 215 * @return Whether port is signalling to the device. 216 */ 192 217 bool virthub_is_device_enabled(usbvirt_device_t *dev, virtdev_connection_t *conn) 193 218 { … … 209 234 } 210 235 236 /** Format status of a virtual hub. 237 * 238 * @param dev Virtual device representing the hub. 239 * @param[out] status Hub status information. 240 * @param[in] len Size of the @p status buffer. 241 */ 211 242 void virthub_get_status(usbvirt_device_t *dev, char *status, size_t len) 212 243 { -
uspace/drv/vhc/hub/virthub.h
rcea3fca r70e5ad5 31 31 */ 32 32 /** @file 33 * @brief 33 * @brief USB hub as a virtual USB device. 34 34 */ 35 35 #ifndef VHC_HUB_VIRTHUB_H_ -
uspace/drv/vhc/hub/virthubops.c
rcea3fca r70e5ad5 86 86 } 87 87 88 88 /** Handle ClearHubFeature request. 89 * 90 * @param dev Virtual device representing the hub. 91 * @param request The SETUP packet of the control request. 92 * @param data Extra data (when DATA stage present). 93 * @return Error code. 94 */ 89 95 static int req_clear_hub_feature(usbvirt_device_t *dev, 90 96 usb_device_request_setup_packet_t *request, … … 94 100 } 95 101 102 /** Handle ClearPortFeature request. 103 * 104 * @param dev Virtual device representing the hub. 105 * @param request The SETUP packet of the control request. 106 * @param data Extra data (when DATA stage present). 107 * @return Error code. 108 */ 96 109 static int req_clear_port_feature(usbvirt_device_t *dev, 97 110 usb_device_request_setup_packet_t *request, … … 167 180 } 168 181 182 /** Handle GetBusState request. 183 * 184 * @param dev Virtual device representing the hub. 185 * @param request The SETUP packet of the control request. 186 * @param data Extra data (when DATA stage present). 187 * @return Error code. 188 */ 169 189 static int req_get_bus_state(usbvirt_device_t *dev, 170 190 usb_device_request_setup_packet_t *request, … … 174 194 } 175 195 196 /** Handle GetDescriptor request. 197 * 198 * @param dev Virtual device representing the hub. 199 * @param request The SETUP packet of the control request. 200 * @param data Extra data (when DATA stage present). 201 * @return Error code. 202 */ 176 203 static int req_get_descriptor(usbvirt_device_t *dev, 177 204 usb_device_request_setup_packet_t *request, … … 188 215 } 189 216 217 /** Handle GetHubStatus request. 218 * 219 * @param dev Virtual device representing the hub. 220 * @param request The SETUP packet of the control request. 221 * @param data Extra data (when DATA stage present). 222 * @return Error code. 223 */ 190 224 static int req_get_hub_status(usbvirt_device_t *dev, 191 225 usb_device_request_setup_packet_t *request, … … 198 232 } 199 233 234 /** Handle GetPortStatus request. 235 * 236 * @param dev Virtual device representing the hub. 237 * @param request The SETUP packet of the control request. 238 * @param data Extra data (when DATA stage present). 239 * @return Error code. 240 */ 200 241 static int req_get_port_status(usbvirt_device_t *dev, 201 242 usb_device_request_setup_packet_t *request, … … 213 254 } 214 255 256 /** Handle SetHubFeature request. 257 * 258 * @param dev Virtual device representing the hub. 259 * @param request The SETUP packet of the control request. 260 * @param data Extra data (when DATA stage present). 261 * @return Error code. 262 */ 215 263 static int req_set_hub_feature(usbvirt_device_t *dev, 216 264 usb_device_request_setup_packet_t *request, … … 220 268 } 221 269 270 /** Handle SetPortFeature request. 271 * 272 * @param dev Virtual device representing the hub. 273 * @param request The SETUP packet of the control request. 274 * @param data Extra data (when DATA stage present). 275 * @return Error code. 276 */ 222 277 static int req_set_port_feature(usbvirt_device_t *dev, 223 278 usb_device_request_setup_packet_t *request, … … 265 320 266 321 267 322 /** IN class request. */ 268 323 #define CLASS_REQ_IN(recipient) \ 269 324 USBVIRT_MAKE_CONTROL_REQUEST_TYPE(USB_DIRECTION_IN, \ 270 325 USBVIRT_REQUEST_TYPE_CLASS, recipient) 326 /** OUT class request. */ 271 327 #define CLASS_REQ_OUT(recipient) \ 272 328 USBVIRT_MAKE_CONTROL_REQUEST_TYPE(USB_DIRECTION_OUT, \ 273 329 USBVIRT_REQUEST_TYPE_CLASS, recipient) 274 330 331 /** Recipient: other. */ 275 332 #define REC_OTHER USBVIRT_REQUEST_RECIPIENT_OTHER 333 /** Recipient: device. */ 276 334 #define REC_DEVICE USBVIRT_REQUEST_RECIPIENT_DEVICE 335 /** Direction: in. */ 277 336 #define DIR_IN USB_DIRECTION_IN 337 /** Direction: out. */ 278 338 #define DIR_OUT USB_DIRECTION_OUT 279 339 340 /** Create a class request. 341 * 342 * @param direction Request direction. 343 * @param recipient Request recipient. 344 * @param req Request code. 345 */ 280 346 #define CLASS_REQ(direction, recipient, req) \ 281 347 .request_type = USBVIRT_MAKE_CONTROL_REQUEST_TYPE(direction, \ … … 283 349 .request = req 284 350 351 /** Create a standard request. 352 * 353 * @param direction Request direction. 354 * @param recipient Request recipient. 355 * @param req Request code. 356 */ 285 357 #define STD_REQ(direction, recipient, req) \ 286 358 .request_type = USBVIRT_MAKE_CONTROL_REQUEST_TYPE(direction, \
Note:
See TracChangeset
for help on using the changeset viewer.