Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Jul 2017 11:51:56 +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: r321651 - head/sys/arm/mv
Message-ID:  <201707281151.v6SBpukb042637@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mw
Date: Fri Jul 28 11:51:55 2017
New Revision: 321651
URL: https://svnweb.freebsd.org/changeset/base/321651

Log:
  Fix remapping VM attributes on Armada 38x
  
  pmap_remap_vm_attr() function requires indexes to
  pte2_attr_tab as the arguments (VM_MEMATTR_).
  Mistakenly, instead of them, actual values from the
  table were used (PTE2_ATTR_), when applying
  work-around for Marvell Armada 38x SoCs.
  
  Submitted by: Marcin Wojtas (mw@semihalf.com)
  Reported by: Rafal Kozik (rk@semihalf.com)
  Reviewed by: cognet (mentor)
  Approved by: cognet (mentor)
  Obtained from: Semihalf
  Differential Revision: https://reviews.freebsd.org/D11704

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

Modified: head/sys/arm/mv/mv_machdep.c
==============================================================================
--- head/sys/arm/mv/mv_machdep.c	Fri Jul 28 10:30:59 2017	(r321650)
+++ head/sys/arm/mv/mv_machdep.c	Fri Jul 28 11:51:55 2017	(r321651)
@@ -301,7 +301,7 @@ platform_late_init(void)
 	 * To avoid that, map all registers including PCIe IO
 	 * as strongly ordered instead of device memory.
 	 */
-	pmap_remap_vm_attr(PTE2_ATTR_DEVICE, PTE2_ATTR_SO);
+	pmap_remap_vm_attr(VM_MEMATTR_DEVICE, VM_MEMATTR_SO);
 
 	/* Set IO Sync Barrier bit for all Mbus devices */
 	if (armada38x_win_set_iosync_barrier() != 0)



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