xhci: Turn OpsReg waits into common function

Change-Id: I52ada3447b638db07622fa51746e75ce6cce7a46
Reviewed-on: https://review.haiku-os.org/518
Reviewed-by: Alexander von Gluck IV <[email protected]>
This commit is contained in:
Alexander von Gluck IV
2018-09-08 14:38:16 +00:00
parent 94b53d8118
commit bd234de11c
2 changed files with 45 additions and 28 deletions
+44 -28
View File
@@ -386,6 +386,14 @@ XHCI::Start()
TRACE("usbcmd: 0x%08" B_PRIx32 "; usbsts: 0x%08" B_PRIx32 "\n", TRACE("usbcmd: 0x%08" B_PRIx32 "; usbsts: 0x%08" B_PRIx32 "\n",
ReadOpReg(XHCI_CMD), ReadOpReg(XHCI_STS)); ReadOpReg(XHCI_CMD), ReadOpReg(XHCI_STS));
if (WaitOpBits(XHCI_STS, STS_CNR, 0) != B_OK) {
TRACE("Start() failed STS_CNR\n");
}
if ((ReadOpReg(XHCI_CMD) & CMD_RUN) != 0) {
TRACE_ERROR("Start() warning, starting running XHCI controller!\n");
}
if ((ReadOpReg(XHCI_PAGESIZE) & (1 << 0)) == 0) { if ((ReadOpReg(XHCI_PAGESIZE) & (1 << 0)) == 0) {
TRACE_ERROR("Controller does not support 4K page size.\n"); TRACE_ERROR("Controller does not support 4K page size.\n");
return B_ERROR; return B_ERROR;
@@ -555,13 +563,8 @@ XHCI::Start()
WriteOpReg(XHCI_CMD, CMD_RUN | CMD_INTE | CMD_HSEE); WriteOpReg(XHCI_CMD, CMD_RUN | CMD_INTE | CMD_HSEE);
// wait for start up state // wait for start up state
int32 tries = 100; if (WaitOpBits(XHCI_STS, STS_HCH, 0) != B_OK) {
while ((ReadOpReg(XHCI_STS) & STS_HCH) != 0) { TRACE_ERROR("HCH start up timeout\n");
snooze(1000);
if (tries-- < 0) {
TRACE_ERROR("start up timeout\n");
break;
}
} }
fRootHubAddress = AllocateAddress(); fRootHubAddress = AllocateAddress();
@@ -1883,15 +1886,14 @@ XHCI::ClearPortFeature(uint8 index, uint16 feature)
status_t status_t
XHCI::ControllerHalt() XHCI::ControllerHalt()
{ {
WriteOpReg(XHCI_CMD, 0); // Mask off run state
WriteOpReg(XHCI_CMD, ReadOpReg(XHCI_CMD) & ~CMD_RUN);
int32 tries = 100; // wait for shutdown state
while ((ReadOpReg(XHCI_STS) & STS_HCH) == 0) { if (WaitOpBits(XHCI_STS, STS_HCH, STS_HCH) != B_OK) {
snooze(1000); TRACE_ERROR("HCH shutdown timeout\n");
if (tries-- < 0) return B_ERROR;
return B_ERROR;
} }
return B_OK; return B_OK;
} }
@@ -1903,22 +1905,14 @@ XHCI::ControllerReset()
ReadOpReg(XHCI_CMD), ReadOpReg(XHCI_STS)); ReadOpReg(XHCI_CMD), ReadOpReg(XHCI_STS));
WriteOpReg(XHCI_CMD, ReadOpReg(XHCI_CMD) | CMD_HCRST); WriteOpReg(XHCI_CMD, ReadOpReg(XHCI_CMD) | CMD_HCRST);
int32 tries = 250; if (WaitOpBits(XHCI_CMD, CMD_HCRST, 0) != B_OK) {
while (ReadOpReg(XHCI_CMD) & CMD_HCRST) { TRACE_ERROR("ControllerReset() failed CMD_HCRST\n");
snooze(1000); return B_ERROR;
if (tries-- < 0) {
TRACE("ControllerReset() failed CMD_HCRST\n");
return B_ERROR;
}
} }
tries = 250; if (WaitOpBits(XHCI_STS, STS_CNR, 0) != B_OK) {
while (ReadOpReg(XHCI_STS) & STS_CNR) { TRACE_ERROR("ControllerReset() failed STS_CNR\n");
snooze(1000); return B_ERROR;
if (tries-- < 0) {
TRACE("ControllerReset() failed STS_CNR\n");
return B_ERROR;
}
} }
return B_OK; return B_OK;
@@ -2477,6 +2471,28 @@ XHCI::ReadOpReg(uint32 reg)
} }
inline status_t
XHCI::WaitOpBits(uint32 reg, uint32 mask, uint32 expected)
{
int loops = 0;
uint32 value = ReadOpReg(reg);
while ((value & mask) != expected) {
snooze(1000);
value = ReadOpReg(reg);
if (loops == 25) {
TRACE("delay waiting on reg 0x%x match 0x%x (0x%x)\n",
reg, expected, mask);
} else if (loops > 100) {
TRACE_ERROR("timeout waiting on reg 0x%x match 0x%x (0x%x)\n",
reg, expected, mask);
return B_ERROR;
}
loops++;
}
return B_OK;
}
inline uint32 inline uint32
XHCI::ReadCapReg32(uint32 reg) XHCI::ReadCapReg32(uint32 reg)
{ {
+1
View File
@@ -184,6 +184,7 @@ private:
// Operational register functions // Operational register functions
inline void WriteOpReg(uint32 reg, uint32 value); inline void WriteOpReg(uint32 reg, uint32 value);
inline uint32 ReadOpReg(uint32 reg); inline uint32 ReadOpReg(uint32 reg);
inline status_t WaitOpBits(uint32 reg, uint32 mask, uint32 expected);
// Capability register functions // Capability register functions
inline uint32 ReadCapReg32(uint32 reg); inline uint32 ReadCapReg32(uint32 reg);