Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Oct 2019 07:37:42 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r353165 - head/sys/arm/include
Message-ID:  <201910070737.x977bgPi015962@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Mon Oct  7 07:37:42 2019
New Revision: 353165
URL: https://svnweb.freebsd.org/changeset/base/353165

Log:
  align use of cp15_pmccntr_get with its availability
  
  According to ian, the only armv6 cpu we support is the 1176, so this
  change is effectively a no-op.
  The change is just to make the code more self-consistent.
  The issue was noticed by a standalone module build for armv6.
  
  Reviewed by:	ian
  MFC after:	3 weeks

Modified:
  head/sys/arm/include/cpu.h

Modified: head/sys/arm/include/cpu.h
==============================================================================
--- head/sys/arm/include/cpu.h	Mon Oct  7 04:44:01 2019	(r353164)
+++ head/sys/arm/include/cpu.h	Mon Oct  7 07:37:42 2019	(r353165)
@@ -20,7 +20,7 @@ void	swi_vm(void *);
 static __inline uint64_t
 get_cyclecount(void)
 {
-#if __ARM_ARCH >= 6
+#if __ARM_ARCH > 6 || (__ARM_ARCH == 6 && defined(CPU_ARM1176))
 #if (__ARM_ARCH > 6) && defined(DEV_PMU)
 	if (pmu_attched) {
 		u_int cpu;



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