mirror of https://github.com/xqemu/xqemu.git
xhci: add xhci_port_notify
Create a function to notify the guest about port status changes and put it into use. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
6a32f80f05
commit
f705a36280
|
@ -2348,6 +2348,21 @@ static bool xhci_port_have_device(XHCIPort *port)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void xhci_port_notify(XHCIPort *port, uint32_t bits)
|
||||||
|
{
|
||||||
|
XHCIEvent ev = { ER_PORT_STATUS_CHANGE, CC_SUCCESS,
|
||||||
|
port->portnr << 24 };
|
||||||
|
|
||||||
|
if ((port->portsc & bits) == bits) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
port->portsc |= bits;
|
||||||
|
if (!xhci_running(port->xhci)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
xhci_event(port->xhci, &ev, 0);
|
||||||
|
}
|
||||||
|
|
||||||
static void xhci_port_update(XHCIPort *port, int is_detach)
|
static void xhci_port_update(XHCIPort *port, int is_detach)
|
||||||
{
|
{
|
||||||
port->portsc = PORTSC_PP;
|
port->portsc = PORTSC_PP;
|
||||||
|
@ -2369,13 +2384,7 @@ static void xhci_port_update(XHCIPort *port, int is_detach)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xhci_running(port->xhci)) {
|
xhci_port_notify(port, PORTSC_CSC);
|
||||||
port->portsc |= PORTSC_CSC;
|
|
||||||
XHCIEvent ev = { ER_PORT_STATUS_CHANGE, CC_SUCCESS,
|
|
||||||
port->portnr << 24};
|
|
||||||
xhci_event(port->xhci, &ev, 0);
|
|
||||||
DPRINTF("xhci: port change event for port %d\n", port->portnr);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void xhci_reset(DeviceState *dev)
|
static void xhci_reset(DeviceState *dev)
|
||||||
|
@ -2865,18 +2874,12 @@ static void xhci_wakeup(USBPort *usbport)
|
||||||
{
|
{
|
||||||
XHCIState *xhci = usbport->opaque;
|
XHCIState *xhci = usbport->opaque;
|
||||||
XHCIPort *port = xhci_lookup_port(xhci, usbport);
|
XHCIPort *port = xhci_lookup_port(xhci, usbport);
|
||||||
XHCIEvent ev = { ER_PORT_STATUS_CHANGE, CC_SUCCESS,
|
|
||||||
port->portnr << 24};
|
|
||||||
|
|
||||||
if (get_field(port->portsc, PORTSC_PLS) != PLS_U3) {
|
if (get_field(port->portsc, PORTSC_PLS) != PLS_U3) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
set_field(&port->portsc, PLS_RESUME, PORTSC_PLS);
|
set_field(&port->portsc, PLS_RESUME, PORTSC_PLS);
|
||||||
if (port->portsc & PORTSC_PLC) {
|
xhci_port_notify(port, PORTSC_PLC);
|
||||||
return;
|
|
||||||
}
|
|
||||||
port->portsc |= PORTSC_PLC;
|
|
||||||
xhci_event(xhci, &ev, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void xhci_complete(USBPort *port, USBPacket *packet)
|
static void xhci_complete(USBPort *port, USBPacket *packet)
|
||||||
|
|
Loading…
Reference in New Issue