diff options
author | Yinghai Lu <yinghailu@gmail.com> | 2004-10-22 21:33:08 +0000 |
---|---|---|
committer | Yinghai Lu <yinghailu@gmail.com> | 2004-10-22 21:33:08 +0000 |
commit | 2560dbdd504dfaaff97174a3dd017edf7378b87a (patch) | |
tree | 7a9bb64c725ed8a8fbf28a10f718493e8d19b54a | |
parent | e99433157b43e0e1813f0edd732f804a9d6f7207 (diff) |
for S2735 support
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1708 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/cpu/intel/model_f2x/Config.lb | 9 | ||||
-rw-r--r-- | src/cpu/intel/model_f2x/apic_timer.c | 26 | ||||
-rw-r--r-- | src/mainboard/tyan/s2735/auto.c | 2 |
3 files changed, 35 insertions, 2 deletions
diff --git a/src/cpu/intel/model_f2x/Config.lb b/src/cpu/intel/model_f2x/Config.lb index 508e1da172..b985ffc12d 100644 --- a/src/cpu/intel/model_f2x/Config.lb +++ b/src/cpu/intel/model_f2x/Config.lb @@ -1,4 +1,5 @@ -dir /cpu/x86/tsc +uses CONFIG_UDELAY_TSC + dir /cpu/x86/mtrr dir /cpu/x86/fpu dir /cpu/x86/mmx @@ -8,3 +9,9 @@ dir /cpu/x86/cache dir /cpu/intel/microcode dir /cpu/intel/hyperthreading driver model_f2x_init.o + +if CONFIG_UDELAY_TSC + dir /cpu/x86/tsc +else + object apic_timer.o +end diff --git a/src/cpu/intel/model_f2x/apic_timer.c b/src/cpu/intel/model_f2x/apic_timer.c new file mode 100644 index 0000000000..5a81f912c5 --- /dev/null +++ b/src/cpu/intel/model_f2x/apic_timer.c @@ -0,0 +1,26 @@ +#include <stdint.h> +#include <delay.h> +#include <cpu/x86/msr.h> +#include <cpu/x86/lapic.h> + +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); +} + +void udelay(unsigned usecs) +{ + uint32_t start, value, ticks; + /* Calculate the number of ticks to run, our FSB runs a 200Mhz */ + ticks = usecs * 200; + start = lapic_read(LAPIC_TMCCT); + do { + value = lapic_read(LAPIC_TMCCT); + } while((start - value) < ticks); + +} diff --git a/src/mainboard/tyan/s2735/auto.c b/src/mainboard/tyan/s2735/auto.c index c2e59285fb..0b037142f7 100644 --- a/src/mainboard/tyan/s2735/auto.c +++ b/src/mainboard/tyan/s2735/auto.c @@ -14,7 +14,7 @@ #include "ram/ramtest.c" #include "southbridge/intel/i82801er/i82801er_early_smbus.c" #include "northbridge/intel/e7501/raminit.h" -#include "cpu/amd/model_fxx/apic_timer.c" +#include "cpu/intel/model_f2x/apic_timer.c" #include "lib/delay.c" #include "cpu/x86/lapic/boot_cpu.c" #include "northbridge/intel/e7501/debug.c" |