From 0dcb1729044fd5c537a07a71769fcba57ec1149c Mon Sep 17 00:00:00 2001 From: Greg Watson Date: Thu, 3 Jun 2004 14:38:12 +0000 Subject: Clock (not timer) routines are board specific. Moved from mpc74xx dir. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1591 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/motorola/sandpoint/Config.lb | 8 +++++++- src/mainboard/motorola/sandpoint/clock.c | 10 ++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 src/mainboard/motorola/sandpoint/clock.c diff --git a/src/mainboard/motorola/sandpoint/Config.lb b/src/mainboard/motorola/sandpoint/Config.lb index 2bec5c4a31..711ddb2da8 100644 --- a/src/mainboard/motorola/sandpoint/Config.lb +++ b/src/mainboard/motorola/sandpoint/Config.lb @@ -29,7 +29,13 @@ default _IO_BASE=ISA_IO_BASE ## ## Early board initialization, called from ppc_main() ## -initobject init.c +initobject init.o +initobject clock.o + +## +## Stage 2 timer support +## +object clock.o ## ## Set our ARCH diff --git a/src/mainboard/motorola/sandpoint/clock.c b/src/mainboard/motorola/sandpoint/clock.c new file mode 100644 index 0000000000..8effa8c511 --- /dev/null +++ b/src/mainboard/motorola/sandpoint/clock.c @@ -0,0 +1,10 @@ +/* Copyright 2000 AG Electronics Ltd. */ +/* This code is distributed without warranty under the GPL v2 (see COPYING) */ + +#include + +unsigned long get_clock_speed(void) +{ + return 100000000 / 4; +} + -- cgit v1.2.3