Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Sep 2015 16:08:25 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287825 - head/sys/dev/usb/controller
Message-ID:  <201509151608.t8FG8P2G066519@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Tue Sep 15 16:08:25 2015
New Revision: 287825
URL: https://svnweb.freebsd.org/changeset/base/287825

Log:
  Add Cavium ThunderX xHCI controller PCI ID
  
  There is an issue with interrupts at the moment, but it works with
  polling mode set (hw.usb.xhci.use_polling=1).
  
  Reviewed by:	hselasky
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D3665

Modified:
  head/sys/dev/usb/controller/xhci_pci.c

Modified: head/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- head/sys/dev/usb/controller/xhci_pci.c	Tue Sep 15 14:24:19 2015	(r287824)
+++ head/sys/dev/usb/controller/xhci_pci.c	Tue Sep 15 16:08:25 2015	(r287825)
@@ -113,6 +113,9 @@ xhci_pci_match(device_t self)
 	case 0x8cb18086:
 		return ("Intel Wildcat Point USB 3.0 controller");
 
+	case 0xa01b177d:
+		return ("Cavium ThunderX USB 3.0 controller");
+
 	default:
 		break;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509151608.t8FG8P2G066519>