2

If I plug in an USB 2.0 device (e.g. mouse, keyboard) into a USB 3.0 port, will the controller still use polling to acquire input data (e.g. keypresses/movements) from the device?

1

2 Answers 2

1

Quoting from Wikipedia:

In USB 3.0, dual-bus architecture is used to allow both USB 2.0 (Full Speed, Low Speed, or High Speed) and USB 3.0 (Super Speed) operations to take place simultaneously, thus providing backward compatibility. Connections are such that they also permit forward compatibility, that is, running USB 3.0 devices on USB 2.0 ports. The structural topology is the same, consisting of a tiered star topology with a root hub at level 0 and hubs at lower levels to provide bus connectivity to devices.

And from "SuperSpeed USB 3.0 FAQ" at Everything Usb

[...] Continuous device polling is eliminated [...] Furthermore, the signaling method, while still host-directed, is now asynchronous instead of polling [...]

2
  • Thanks. I read something like that, but I wasn't sure if the asynchronous (interrupt based) sampling only applies when a USB 3.0 device is connected, or if it applies with USB 2.0 as well.
    – Maxius
    Commented May 15, 2013 at 0:23
  • It only applies to USB 3.0 devices. USB 2.0 devices don't know how to "speak" the USB 3.0 protocol. Commented Feb 6, 2016 at 6:04
0

Unless the controller is somehow intentionally or unintentionally not backwards compatible the USB 3.0 should be able to "mimic" all the correct aspects of the USB 2.0 controller so that the hardware functions as if plugged into a USB 2.0 port. Continuous device polling was eliminated on USB 3.0 compliant devices because of architecture changes in how USB 3.0 transmits that type of data, not because the capability was simply removed.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .