Changeset 0f79283b in mainline
- Timestamp:
- 2018-01-18T12:39:27Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2bff2cc2
- Parents:
- babcc423
- Location:
- uspace
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/drv/bus/usb/usbhub/port.c ¶
rbabcc423 r0f79283b 134 134 port_log(debug, port, "Port reset, enumerating device."); 135 135 136 if ((err = usbhc_device_enumerate(exch, port->port_number, port-> base.speed))) {136 if ((err = usbhc_device_enumerate(exch, port->port_number, port->speed))) { 137 137 port_log(error, port, "Failed to enumerate device: %s", str_error(err)); 138 138 /* Disable the port */ … … 200 200 const bool enabled = !!(status & USB_HUB_PORT_STATUS_ENABLED); 201 201 202 if (enabled) 203 usb_port_enabled(&port->base, usb_port_speed(status)); 204 else 202 if (enabled) { 203 // The connecting fibril do not touch speed until the port is enabled, 204 // so we do not have to lock 205 port->speed = usb_port_speed(status); 206 usb_port_enabled(&port->base); 207 } else 205 208 usb_port_disabled(&port->base, &remove_device); 206 209 } -
TabularUnified uspace/drv/bus/usb/usbhub/port.h ¶
rbabcc423 r0f79283b 52 52 /** Port number as reported in descriptors. */ 53 53 unsigned int port_number; 54 /** Speed at the time of enabling the port */ 55 usb_speed_t speed; 54 56 } usb_hub_port_t; 55 57 -
TabularUnified uspace/drv/bus/usb/xhci/rh.c ¶
rbabcc423 r0f79283b 136 136 } 137 137 138 device_t *dev = hcd_ddf_fun_create(&port->rh->hc->base, port->base.speed); 138 /* 139 * We cannot know in advance, whether the speed in the status register 140 * is valid - it depends on the protocol. So we read it later, but then 141 * we have to check if the port is still enabled. 142 */ 143 uint32_t status = XHCI_REG_RD_FIELD(&port->regs->portsc, 32); 144 145 bool enabled = !!(status & XHCI_REG_MASK(XHCI_PORT_PED)); 146 if (!enabled) 147 return ENOENT; 148 149 unsigned psiv = (status & XHCI_REG_MASK(XHCI_PORT_PS)) >> XHCI_REG_SHIFT(XHCI_PORT_PS); 150 const usb_speed_t speed = port->rh->hc->speeds[psiv].usb_speed; 151 152 device_t *dev = hcd_ddf_fun_create(&port->rh->hc->base, speed); 139 153 if (!dev) { 140 154 usb_log_error("Failed to create USB device function."); … … 223 237 224 238 if (enabled) { 225 unsigned psiv = (status & XHCI_REG_MASK(XHCI_PORT_PS)) >> XHCI_REG_SHIFT(XHCI_PORT_PS); 226 const usb_speed_t speed = rh->hc->speeds[psiv].usb_speed; 227 usb_port_enabled(&port->base, speed); 239 usb_port_enabled(&port->base); 228 240 } else { 229 241 usb_port_disabled(&port->base, &rh_remove_device); -
TabularUnified uspace/lib/usb/include/usb/port.h ¶
rbabcc423 r0f79283b 41 41 * 42 42 * This subsystem abstracts the rather complicated state machine, and offers 43 * a simple call interface to announce events, and a callback structure for44 * implementations to supply the hardware-dependent part.43 * a simple interface to announce events and leave the fibril management on the 44 * library. 45 45 */ 46 46 … … 65 65 /** Current state of the port */ 66 66 usb_port_state_t state; 67 /** A speed of the device connected (if any). Valid unless state == PORT_DISABLED. */68 usb_speed_t speed;69 67 /** CV signalled on fibril exit. */ 70 68 fibril_condvar_t finished_cv; … … 87 85 void usb_port_init(usb_port_t *); 88 86 int usb_port_connected(usb_port_t *, usb_port_enumerate_t); 89 void usb_port_enabled(usb_port_t * , usb_speed_t);87 void usb_port_enabled(usb_port_t *); 90 88 void usb_port_disabled(usb_port_t *, usb_port_remove_t); 91 89 void usb_port_fini(usb_port_t *); -
TabularUnified uspace/lib/usb/src/port.c ¶
rbabcc423 r0f79283b 41 41 * 42 42 * This subsystem abstracts the rather complicated state machine, and offers 43 * a simple call interface to announce events, and a callback structure for44 * implementations to supply the hardware-dependent part.43 * a simple interface to announce events and leave the fibril management on the 44 * library. 45 45 */ 46 46 … … 127 127 } 128 128 129 void usb_port_enabled(usb_port_t *port, usb_speed_t speed) 130 { 131 assert(port); 132 133 fibril_mutex_lock(&port->guard); 134 port->speed = speed; 129 void usb_port_enabled(usb_port_t *port) 130 { 131 assert(port); 132 133 fibril_mutex_lock(&port->guard); 135 134 fibril_condvar_broadcast(&port->enabled_cv); 136 135 fibril_mutex_unlock(&port->guard);
Note:
See TracChangeset
for help on using the changeset viewer.