Make MULTIDELAY a requirement in the MPCore Timer driver when using

PLATFORM. This will help with removing the MULTIDELAY option, enabling
it when PLATFORM is enabled.
This commit is contained in:
Andrew Turner 2017-07-05 10:29:05 +00:00
parent 88fd0c95a3
commit 83ad38643c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320669
4 changed files with 7 additions and 0 deletions

View File

@ -71,6 +71,10 @@ __FBSDID("$FreeBSD$");
#include <arm/arm/mpcore_timervar.h>
#if defined(PLATFORM) && !defined(MULTIDELAY)
#error The MPCore Timer driver requires MULTIDELAY when building with PLATFORM
#endif
/* Private (per-CPU) timer register map */
#define PRV_TIMER_LOAD 0x0000
#define PRV_TIMER_COUNT 0x0004

View File

@ -34,6 +34,7 @@ makeoptions MODULES_EXTRA=dtb/omap4
options SCHED_ULE # ULE scheduler
options PLATFORM
options MULTIDELAY
options SMP # Enable multiple cores
# NFS root from boopt/dhcp

View File

@ -26,6 +26,7 @@ makeoptions WERROR="-Werror"
options SCHED_4BSD # 4BSD scheduler
options PLATFORM # Platform based SoC
options MULTIDELAY
#options NANDFS # NAND Filesystem
#options SMP # Enable multiple cores

View File

@ -28,6 +28,7 @@ makeoptions MODULES_EXTRA="dtb/zynq"
options SCHED_ULE # ULE scheduler
options PLATFORM # Platform based SoC
options MULTIDELAY
#options NFSSD # Network Filesystem Server
options SMP # Enable multiple cores