Kernel: Support initializing USB 3 devices
This commit is contained in:
parent
8bf14d542e
commit
857b3e92f8
|
@ -268,6 +268,7 @@ namespace Kernel
|
||||||
// read and clear needed change flags
|
// read and clear needed change flags
|
||||||
const bool reset_change = op_port.portsc & XHCI::PORTSC::PRC;
|
const bool reset_change = op_port.portsc & XHCI::PORTSC::PRC;
|
||||||
const bool connection_change = op_port.portsc & XHCI::PORTSC::CSC;
|
const bool connection_change = op_port.portsc & XHCI::PORTSC::CSC;
|
||||||
|
const bool port_enabled = op_port.portsc & XHCI::PORTSC::PED;
|
||||||
op_port.portsc = XHCI::PORTSC::CSC | XHCI::PORTSC::PRC | XHCI::PORTSC::PP;
|
op_port.portsc = XHCI::PORTSC::CSC | XHCI::PORTSC::PRC | XHCI::PORTSC::PP;
|
||||||
|
|
||||||
if (!(op_port.portsc & XHCI::PORTSC::CCS))
|
if (!(op_port.portsc & XHCI::PORTSC::CCS))
|
||||||
|
@ -284,18 +285,18 @@ namespace Kernel
|
||||||
switch (my_port.revision_major)
|
switch (my_port.revision_major)
|
||||||
{
|
{
|
||||||
case 2:
|
case 2:
|
||||||
if (!reset_change)
|
// USB2 ports advance to Enabled state after a reset
|
||||||
{
|
if (port_enabled && reset_change)
|
||||||
if (connection_change)
|
break;
|
||||||
op_port.portsc = XHCI::PORTSC::PR | XHCI::PORTSC::PP;
|
// reset port
|
||||||
continue;
|
if (connection_change)
|
||||||
}
|
op_port.portsc = XHCI::PORTSC::PR | XHCI::PORTSC::PP;
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
if (!connection_change)
|
|
||||||
continue;
|
|
||||||
dprintln_if(DEBUG_XHCI, "USB 3 devices not supported");
|
|
||||||
continue;
|
continue;
|
||||||
|
case 3:
|
||||||
|
if (!connection_change || !port_enabled)
|
||||||
|
continue;
|
||||||
|
// USB3 ports advance to Enabled state automatically
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue