Date: Sat, 9 Sep 2017 10:54:13 +0000 (UTC) From: Marcin Wojtas <mw@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r323353 - in head/sys: conf dev/usb/controller Message-ID: <201709091054.v89AsDlZ070001@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mw Date: Sat Sep 9 10:54:13 2017 New Revision: 323353 URL: https://svnweb.freebsd.org/changeset/base/323353 Log: Add support for xhci in Armada 3700 and 7k/8k This driver will be used by Marvell Armada 3700 and 7k/8k SoC families. The same, generic xhci device also appears in Armada 380, so we are reusing driver. This patch also adds xhci_mv.c entry to the arm64 files list. Submitted by: Patryk Duda <pdk@semihalf.com> Obtained from: Semihalf Sponsored by: Semihalf Differential Revision: https://reviews.freebsd.org/D12252 Modified: head/sys/conf/files.arm64 head/sys/dev/usb/controller/xhci_mv.c Modified: head/sys/conf/files.arm64 ============================================================================== --- head/sys/conf/files.arm64 Sat Sep 9 07:48:58 2017 (r323352) +++ head/sys/conf/files.arm64 Sat Sep 9 10:54:13 2017 (r323353) @@ -179,6 +179,7 @@ dev/usb/controller/dwc_otg_hisi.c optional dwcotg fdt dev/usb/controller/generic_ehci.c optional ehci acpi dev/usb/controller/generic_ohci.c optional ohci fdt dev/usb/controller/generic_usb_if.m optional ohci fdt +dev/usb/controller/xhci_mv.c optional xhci_mv fdt dev/vnic/mrml_bridge.c optional vnic fdt dev/vnic/nic_main.c optional vnic pci dev/vnic/nicvf_main.c optional vnic pci pci_iov Modified: head/sys/dev/usb/controller/xhci_mv.c ============================================================================== --- head/sys/dev/usb/controller/xhci_mv.c Sat Sep 9 07:48:58 2017 (r323352) +++ head/sys/dev/usb/controller/xhci_mv.c Sat Sep 9 10:54:13 2017 (r323353) @@ -74,6 +74,8 @@ static device_detach_t xhci_detach; static struct ofw_compat_data compat_data[] = { {"marvell,armada-380-xhci", true}, + {"marvell,armada3700-xhci", true}, + {"marvell,armada-8k-xhci", true}, {NULL, false} };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709091054.v89AsDlZ070001>