mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-18 15:48:59 +00:00
xhci: use correct flags for spin_lock_irqrestore() when setting port power
commit a6ff6cbf1fab ("usb: xhci: Add helper function xhci_set_power_on().") created a helper to control port power that needs to be called with xhci->lock held and interrupts disabled. It released the lock with spin_unlock_irqrestore using a new zero flag variable instead of the original flag from spin_lock_irqsave. This regression triggered a static checker warning about bogus flags, and a null pointer dereference on armada-385. Fix it by passing a pointer to the correct flags and using it instead Fixes: a6ff6cbf1fab ("usb: xhci: Add helper function xhci_set_power_on().") Cc: Guoqing Zhang <guoqing.zhang@intel.com> Reported-by: Ralph Sennhauser <ralph.sennhauser@gmail.com> Tested-by: Ralph Sennhauser <ralph.sennhauser@gmail.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ba7756d082
commit
ec1dafe8ec
@ -552,11 +552,10 @@ static __le32 __iomem *xhci_get_port_io_addr(struct usb_hcd *hcd, int index)
|
|||||||
* method.
|
* method.
|
||||||
*/
|
*/
|
||||||
static void xhci_set_port_power(struct xhci_hcd *xhci, struct usb_hcd *hcd,
|
static void xhci_set_port_power(struct xhci_hcd *xhci, struct usb_hcd *hcd,
|
||||||
u16 index, bool on)
|
u16 index, bool on, unsigned long *flags)
|
||||||
{
|
{
|
||||||
__le32 __iomem *addr;
|
__le32 __iomem *addr;
|
||||||
u32 temp;
|
u32 temp;
|
||||||
unsigned long flags = 0;
|
|
||||||
|
|
||||||
addr = xhci_get_port_io_addr(hcd, index);
|
addr = xhci_get_port_io_addr(hcd, index);
|
||||||
temp = readl(addr);
|
temp = readl(addr);
|
||||||
@ -572,13 +571,13 @@ static void xhci_set_port_power(struct xhci_hcd *xhci, struct usb_hcd *hcd,
|
|||||||
writel(temp & ~PORT_POWER, addr);
|
writel(temp & ~PORT_POWER, addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&xhci->lock, flags);
|
spin_unlock_irqrestore(&xhci->lock, *flags);
|
||||||
temp = usb_acpi_power_manageable(hcd->self.root_hub,
|
temp = usb_acpi_power_manageable(hcd->self.root_hub,
|
||||||
index);
|
index);
|
||||||
if (temp)
|
if (temp)
|
||||||
usb_acpi_set_power_state(hcd->self.root_hub,
|
usb_acpi_set_power_state(hcd->self.root_hub,
|
||||||
index, on);
|
index, on);
|
||||||
spin_lock_irqsave(&xhci->lock, flags);
|
spin_lock_irqsave(&xhci->lock, *flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void xhci_port_set_test_mode(struct xhci_hcd *xhci,
|
static void xhci_port_set_test_mode(struct xhci_hcd *xhci,
|
||||||
@ -598,7 +597,7 @@ static void xhci_port_set_test_mode(struct xhci_hcd *xhci,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int xhci_enter_test_mode(struct xhci_hcd *xhci,
|
static int xhci_enter_test_mode(struct xhci_hcd *xhci,
|
||||||
u16 test_mode, u16 wIndex)
|
u16 test_mode, u16 wIndex, unsigned long *flags)
|
||||||
{
|
{
|
||||||
int i, retval;
|
int i, retval;
|
||||||
|
|
||||||
@ -614,10 +613,10 @@ static int xhci_enter_test_mode(struct xhci_hcd *xhci,
|
|||||||
xhci_dbg(xhci, "Disable all port (PP = 0)\n");
|
xhci_dbg(xhci, "Disable all port (PP = 0)\n");
|
||||||
/* Power off USB3 ports*/
|
/* Power off USB3 ports*/
|
||||||
for (i = 0; i < xhci->num_usb3_ports; i++)
|
for (i = 0; i < xhci->num_usb3_ports; i++)
|
||||||
xhci_set_port_power(xhci, xhci->shared_hcd, i, false);
|
xhci_set_port_power(xhci, xhci->shared_hcd, i, false, flags);
|
||||||
/* Power off USB2 ports*/
|
/* Power off USB2 ports*/
|
||||||
for (i = 0; i < xhci->num_usb2_ports; i++)
|
for (i = 0; i < xhci->num_usb2_ports; i++)
|
||||||
xhci_set_port_power(xhci, xhci->main_hcd, i, false);
|
xhci_set_port_power(xhci, xhci->main_hcd, i, false, flags);
|
||||||
/* Stop the controller */
|
/* Stop the controller */
|
||||||
xhci_dbg(xhci, "Stop controller\n");
|
xhci_dbg(xhci, "Stop controller\n");
|
||||||
retval = xhci_halt(xhci);
|
retval = xhci_halt(xhci);
|
||||||
@ -1209,7 +1208,7 @@ int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
|
|||||||
* However, hub_wq will ignore the roothub events until
|
* However, hub_wq will ignore the roothub events until
|
||||||
* the roothub is registered.
|
* the roothub is registered.
|
||||||
*/
|
*/
|
||||||
xhci_set_port_power(xhci, hcd, wIndex, true);
|
xhci_set_port_power(xhci, hcd, wIndex, true, &flags);
|
||||||
break;
|
break;
|
||||||
case USB_PORT_FEAT_RESET:
|
case USB_PORT_FEAT_RESET:
|
||||||
temp = (temp | PORT_RESET);
|
temp = (temp | PORT_RESET);
|
||||||
@ -1254,7 +1253,8 @@ int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
|
|||||||
goto error;
|
goto error;
|
||||||
if (test_mode > TEST_FORCE_EN || test_mode < TEST_J)
|
if (test_mode > TEST_FORCE_EN || test_mode < TEST_J)
|
||||||
goto error;
|
goto error;
|
||||||
retval = xhci_enter_test_mode(xhci, test_mode, wIndex);
|
retval = xhci_enter_test_mode(xhci, test_mode, wIndex,
|
||||||
|
&flags);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
goto error;
|
goto error;
|
||||||
@ -1322,7 +1322,7 @@ int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
|
|||||||
port_array[wIndex], temp);
|
port_array[wIndex], temp);
|
||||||
break;
|
break;
|
||||||
case USB_PORT_FEAT_POWER:
|
case USB_PORT_FEAT_POWER:
|
||||||
xhci_set_port_power(xhci, hcd, wIndex, false);
|
xhci_set_port_power(xhci, hcd, wIndex, false, &flags);
|
||||||
break;
|
break;
|
||||||
case USB_PORT_FEAT_TEST:
|
case USB_PORT_FEAT_TEST:
|
||||||
retval = xhci_exit_test_mode(xhci);
|
retval = xhci_exit_test_mode(xhci);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user