Switch off explicit broadcasting of the TLB flush operations for PJ4B CPU

Since CPU_MV_PJ4B describes ARMv7 compliant CPU there is no need for
sending an IPI each time when TLB is flushed in any way.

Tested by:	kevlo
This commit is contained in:
Zbigniew Bodek 2013-10-28 21:41:44 +00:00
parent e0b4b3a74f
commit 2923b75ea3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257282

View file

@ -188,7 +188,7 @@ extern u_int cputype;
#else
void tlb_broadcast(int);
#ifdef CPU_CORTEXA
#if defined(CPU_CORTEXA) || defined(CPU_MV_PJ4B)
#define TLB_BROADCAST /* No need to explicitely send an IPI */
#else
#define TLB_BROADCAST tlb_broadcast(7)