2 * (C) Copyright 2000-2002
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 #include <asm/processor.h>
28 #ifdef CONFIG_AMIGAONEG3SE
29 #include "../board/MAI/AmigaOneG3SE/via686.h"
32 static const int hid1_multipliers_x_10[] = {
36 10, /* 0011 - bypass */
51 static const int hid1_fx_multipliers_x_10[] = {
54 10, /* 0010 - bypass */
55 10, /* 0011 - bypass */
69 85, /* 10001 - 8.5x */
71 95, /* 10011 - 9.5x */
72 100, /* 10100 - 10x */
73 110, /* 10101 - 11x */
74 120, /* 10110 - 12x */
78 /* ------------------------------------------------------------------------- */
81 * Measure CPU clock speed (core clock GCLK1, GCLK2)
83 * (Approx. GCLK frequency in Hz)
88 DECLARE_GLOBAL_DATA_PTR;
90 ulong clock = CFG_BUS_CLK * \
91 hid1_fx_multipliers_x_10[get_hid1 () >> 27] / 10;
93 ulong clock = CFG_BUS_CLK * \
94 hid1_multipliers_x_10[get_hid1 () >> 28] / 10;
97 gd->bus_clk = CFG_BUS_CLK;
102 /* ------------------------------------------------------------------------- */
104 #if 0 /* disabled XXX - use global data instead */
105 ulong get_bus_freq (ulong gclk_freq)
111 /* ------------------------------------------------------------------------- */