cpu,nb/intel: Drop remains of LAPIC_MONOTONIC_TIMER

Leftover from using UDELAY_LAPIC on these platforms.

Change-Id: I718050925f3eb32448fd08e76d259f0fb082d2d3
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55413
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Kyösti Mälkki
2021-06-05 15:41:09 +03:00
parent 7aea15aa6b
commit 7261b5ade5
7 changed files with 0 additions and 33 deletions

View File

@@ -12,18 +12,6 @@
#include "chip.h"
static void init_timer(void)
{
/* Set the APIC timer to no interrupts and periodic mode */
lapic_write(LAPIC_LVTT, (1 << 17) | (1 << 16) | (0 << 12) | (0 << 0));
/* Set the divider to 1, no divider */
lapic_write(LAPIC_TDCR, LAPIC_TDR_DIV_1);
/* Set the initial counter to 0xffffffff */
lapic_write(LAPIC_TMICT, 0xffffffff);
}
#define MSR_BBL_CR_CTL3 0x11e
static void configure_c_states(const int quad)
@@ -271,9 +259,6 @@ static void model_1067x_init(struct device *cpu)
/* Enable the local CPU APICs */
setup_lapic();
/* Initialize the APIC timer */
init_timer();
/* Configure C States */
configure_c_states(quad);