x86: expose tsc's timer_monotonic_get() in SMM

The implementation of timer_monotonic_get() for the tsc
module was being guarded from SMM. Allow this to be
linked into SMM as the generic spi flash driver now needs
this support which can be included in SMM.

Change-Id: I3909edecac8de117922c4ea6c53e6e561f6f435b
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/10187
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
This commit is contained in:
Aaron Durbin 2015-05-12 16:48:31 -05:00
parent 797ca1b712
commit 1f04e94b79
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ void udelay(unsigned us)
} }
} }
#if CONFIG_TSC_MONOTONIC_TIMER && !defined(__PRE_RAM__) && !defined(__SMM__) #if CONFIG_TSC_MONOTONIC_TIMER && !defined(__PRE_RAM__)
#include <timer.h> #include <timer.h>
static struct monotonic_counter { static struct monotonic_counter {