svn commit: r272097 - stable/10/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Thu Sep 25 07:37:42 UTC 2014


Author: hselasky
Date: Thu Sep 25 07:37:41 2014
New Revision: 272097
URL: http://svnweb.freebsd.org/changeset/base/272097

Log:
  MFC r271953:
  Some XHCI hardware requires dropping the endpoint context before
  adding it again.
  
  Approved by:	re, glebius

Modified:
  stable/10/sys/dev/usb/controller/xhci.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/usb/controller/xhci.c
==============================================================================
--- stable/10/sys/dev/usb/controller/xhci.c	Thu Sep 25 07:22:24 2014	(r272096)
+++ stable/10/sys/dev/usb/controller/xhci.c	Thu Sep 25 07:37:41 2014	(r272097)
@@ -2252,7 +2252,14 @@ xhci_configure_mask(struct usb_device *u
 		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx0, mask);
 		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx1, 0);
 	} else {
-		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx0, 0);
+		/*
+		 * Some hardware requires that we drop the endpoint
+		 * context before adding it again:
+		 */
+		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx0,
+		    mask & XHCI_INCTX_NON_CTRL_MASK);
+
+		/* Add new endpoint context */
 		xhci_ctx_set_le32(sc, &pinp->ctx_input.dwInCtx1, mask);
 
 		/* find most significant set bit */


More information about the svn-src-all mailing list