svn commit: r294429 - head/sys/arm/mv

Zbigniew Bodek zbb at FreeBSD.org
Wed Jan 20 14:02:38 UTC 2016


Author: zbb
Date: Wed Jan 20 14:02:36 2016
New Revision: 294429
URL: https://svnweb.freebsd.org/changeset/base/294429

Log:
  Enhance remap capabilities for Armada38x
  
  Add conditions corresponding to Armada38x-based SoCs,
  enhancing their remap capabilities.
  This is required for PCIe to work properly.
  
  Reviewed by:    andrew
  Obtained from:  Semihalf
  Sponsored by:   Stormshield
  Submitted by:   Bartosz Szczepanek <bsz at semihalf.com>
  Differential revision:  https://reviews.freebsd.org/D4376

Modified:
  head/sys/arm/mv/mv_common.c

Modified: head/sys/arm/mv/mv_common.c
==============================================================================
--- head/sys/arm/mv/mv_common.c	Wed Jan 20 14:00:32 2016	(r294428)
+++ head/sys/arm/mv/mv_common.c	Wed Jan 20 14:02:36 2016	(r294429)
@@ -733,6 +733,9 @@ win_cpu_can_remap(int i)
 	    (dev == MV_DEV_88F5281 && i < 4) ||
 	    (dev == MV_DEV_88F6281 && i < 4) ||
 	    (dev == MV_DEV_88F6282 && i < 4) ||
+	    (dev == MV_DEV_88F6828 && i < 20) ||
+	    (dev == MV_DEV_88F6820 && i < 20) ||
+	    (dev == MV_DEV_88F6810 && i < 20) ||
 	    (dev == MV_DEV_88RC8180 && i < 2) ||
 	    (dev == MV_DEV_88F6781 && i < 4) ||
 	    (dev == MV_DEV_MV78100_Z0 && i < 8) ||


More information about the svn-src-head mailing list