Drivers Vtion Port Devices



Before you begin

Device driver the Video-to-USB converter, manufactured by The Imaging Source. August 19, 2011. Intel Core i3 or similar, 2 GB RAM; USB 3.0 or USB 2.0 controller (depends upon camera model) Graphics card with 24 or 32 bit. If your computer came with a serial port built into it (pretty rare these days), go to the support site of your computer's manufacturer, enter the identifying information about your specific model (probably the serial number), and look for the driver for the serial port. Select Update Driver. If Windows doesn't find a new driver, you can try looking for one on the device manufacturer's website and follow their instructions. Reinstall the device driver. In the search box on the taskbar, enter device manager, then select Device Manager. Right-click (or press and hold) the name of the device, and select Uninstall.

Driver updates for Windows 10, along with many devices, such as network adapters, monitors, printers, and video cards, are automatically downloaded and installed through Windows Update. You probably already have the most recent drivers, but if you'd like to manually update or reinstall a driver, here's how:

Update the device driver

  1. In the search box on the taskbar, enter device manager, then select Device Manager.

  2. Select a category to see names of devices, then right-click (or press and hold) the one you’d like to update.

  3. Select Search automatically for updated driver software.

  4. Select Update Driver.

  5. If Windows doesn't find a new driver, you can try looking for one on the device manufacturer's website and follow their instructions.

Reinstall the device driver

  1. In the search box on the taskbar, enter device manager, then select Device Manager.

  2. Right-click (or press and hold) the name of the device, and select Uninstall.

  3. Restart your PC.

  4. Windows will attempt to reinstall the driver.

More help

If you can't see the desktop and instead see a blue, black, or blank screen, see Troubleshoot blue screen errors or Troubleshoot black or blank screen errors.

-->

This topic describes the WDM device states to use for USB device power states as specified in section 9.1 of the Universal Serial Bus 2.0 specification.

USB device power states (as specified in section 9.1 of the Universal Serial Bus 2.0 specification) can be grouped into three general categories:

  • Attached: The device is attached, but not fully powered.
  • Powered: The device is in one of the fully powered states: Default, Address, or Configured.
  • Suspended: The device is the Idle state and operating on low power.

There is no direct correlation between the device power states defined in the WDM power model and the device power states defined in the USB standard. For example, the terms suspended and idle have very specific meanings in the USB specification; however these terms are often used differently in the WDM power model. Windows client drivers can put a USB device in the Suspended state. For more information, see USB Selective Suspend. When a client driver is ready to suspend its device, it instructs the bus driver to idle it. For a discussion of idle requests, see USB Selective Suspend.

Drivers Vtion Port Devices

Device power states in the WDM model can be summarized as follows:

  • D0 - The working state. The device is fully powered.
  • D1/D2 - The intermediate sleep states. These states allow the device to be armed for remote wakeup.
  • D3 - The deepest sleep state. Devices in state D3 cannot be armed for remote wakeup.

For a complete discussion of device power states in the WDM power model, see Device Power States.

The WDM power model uses the term arming of devices for remote wakeup. Arming is a software operation that normally, but not always, leads to the hardware operation of enabling the remote wakeup feature on a USB device. The WDM software operation that arms a device for remote wakeup is the wait wake IRP (IRP_MN_WAIT_WAKE). For more information about this IRP, see Supporting Devices that Have Wake-Up Capabilities.

For an explanation of the relationship between this software operation and the enabling of the USB remote wakeup feature, see Remote Wakeup of USB Devices.

This section contains the following sub-sections:

Changing the Power State of a non-Composite Device

The power policy manager for a USB device is responsible for setting the power state of the device. The power policy manager sets the power state by issuing a WDM power (IRP_MN_SET_POWER) IRP. For more information about the power policy manager, see Power Policy Ownership.

The actions taken by bus driver depend on the device power level that the power policy manager requests. The following lists the actions that the bus driver takes for each level of set power request:

  • D0

    The bus driver performs the following tasks:

    1. Ensures that all upsteam USB hubs are powered and ready to receive requests.
    2. Resumes the port by clearing the PORT_SUSPEND feature, if the device's USB port is suspended.
    3. Completes the device's idle IRP with STATUS_SUCCESS, if one is pending.
    4. Disarm the device for remote wake if it was armed.
  • D1/D2

    The bus driver performs the following tasks:

    1. Arms the device for remote wakeup, if a wait wake IRP (IRP_MN_WAIT_WAKE) is pending.
    2. Suspends the device's USB port by setting the PORT_SUSPEND feature.
  • D3

    The bus driver performs the following tasks:

    1. Suspends the device's USB port by setting the PORT_SUSPEND feature.
    2. Completes the device's wait wake IRP with STATUS_POWER_STATE_INVALID, if one is pending.
    3. Completes the device's idle IRP (IOCTL_INTERNAL_USB_SUBMIT_IDLE_NOTIFICATION) with STATUS_POWER_STATE_INVALID, if one is pending.

Changing the Power State of a Composite Device

A client driver for an interface on a composite device must share the power state of the composite device with the client drivers for the other interfaces on the device. Therefore a client driver for an interface cannot put the composite device into a lower power state without affecting other interfaces on the device. The USB Generic Parent Driver (Usbccgp.sys) takes the following actions when an interface's client driver sends an IRP_MN_SET_POWER request.

  • D0

    The bus driver performs the following tasks:

    1. Ensures that all upsteam USB hubs are powered and ready to receive requests.
    2. Resumes the port by clearing the PORT_SUSPEND feature, if the device's USB port is suspended.
    3. Completes the client driver's idle IRP with STATUS_SUCCESS, if one is pending.
  • D1/D2

    The bus driver takes no action.

  • D3

    The bus driver performs the following tasks:

    1. Completes the client driver's wait wake IRP (IRP_MN_WAIT_WAKE) with STATUS_POWER_STATE_INVALID, if one is pending.
    2. Completes the client driver's idle IRP (IOCTL_INTERNAL_USB_SUBMIT_IDLE_NOTIFICATION) with STATUS_POWER_STATE_INVALID, if one is pending.

The generic parent driver suspends the USB port for the device when one of the following conditions is true:

  • The system is transitioning to a lower power state.
  • The client drivers for all functions on the composite device have initiated selective suspend.

Drivers Vtion Port Devices Lucie

Related topics