From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 51D6EC43381 for ; Thu, 21 Feb 2019 09:56:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1922A2148D for ; Thu, 21 Feb 2019 09:56:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550743016; bh=it49frXpaKXdeH5Jm3Xx2v1X0pksFb5qDo24t+2oDuY=; h=Subject:To:From:Date:List-ID:From; b=iYgF92Iscqc/Ny17SGH8WNlwa4O9DWlHd0ET78JGDHkS1lorYkEX3ZFdnJxhDzSdG +rhGQX5kEKx4PdGgNw9YrYlp7XzHcRpawhw7uQ9ISnZyf0Lr0Ud4oRUCSJKBkzdbpG ExiCi0UHTrRkfviNMr5opDEstZVVpIjw1NbECbvI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727672AbfBUJ4z (ORCPT ); Thu, 21 Feb 2019 04:56:55 -0500 Received: from mail.kernel.org ([198.145.29.99]:53260 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727608AbfBUJ4z (ORCPT ); Thu, 21 Feb 2019 04:56:55 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6AF0F214AF; Thu, 21 Feb 2019 09:56:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550743014; bh=it49frXpaKXdeH5Jm3Xx2v1X0pksFb5qDo24t+2oDuY=; h=Subject:To:From:Date:From; b=tDRsPKda0sLut53gO8kkANK9ynHeSLwOoyPoow84uSSR0L3gponUF0WZBN6MD5t9b 78UcjK9UOC4T8m2Gxmx4t0pox3WwHr4SdMlMcvARO9gRHUMq152FZSudZoEp4OFUx2 s5Ogj8aNlvyUzmdNhMog6mDm2jXyQJbCEjVL5ctA= Subject: patch "usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on" added to usb-testing To: m.balaji@intel.com, gregkh@linuxfoundation.org, hdegoede@redhat.com, heikki.krogerus@linux.intel.com, mathias.nyman@linux.intel.com, stable@vger.kernel.org From: Date: Thu, 21 Feb 2019 10:56:41 +0100 Message-ID: <1550743001194147@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-testing branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will be merged to the usb-next branch sometime soon, after it passes testing, and the merge window is open. If you have any questions about this process, please let me know. >From 8fde481ef3674ae5ad0dbfef4df18ff507c5675a Mon Sep 17 00:00:00 2001 From: Balaji Manoharan Date: Wed, 20 Feb 2019 19:50:53 +0200 Subject: usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on INTEL_SUNRISEPOINT_LP_XHCI This fix enables USB role feature on intel commercial nuc platform which is based on Kabylake chipset. Signed-off-by: Balaji Manoharan Reviewed-by: Hans de Goede Reviewed-by: Heikki Krogerus Signed-off-by: Mathias Nyman Cc: stable Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index a9ec7051f286..c2fe218e051f 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c @@ -194,6 +194,7 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci) xhci->quirks |= XHCI_SSIC_PORT_UNUSED; if (pdev->vendor == PCI_VENDOR_ID_INTEL && (pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI || + pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI || pdev->device == PCI_DEVICE_ID_INTEL_APL_XHCI)) xhci->quirks |= XHCI_INTEL_USB_ROLE_SW; if (pdev->vendor == PCI_VENDOR_ID_INTEL && -- 2.20.1