]>
Commit | Line | Data |
---|---|---|
4a9cbbe8 WD |
1 | /* |
2 | * (C) Copyright 2000-2002 | |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
4 | * | |
5 | * See file CREDITS for list of people who contributed to this | |
6 | * project. | |
7 | * | |
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. | |
12 | * | |
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. | |
17 | * | |
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, | |
21 | * MA 02111-1307 USA | |
22 | */ | |
23 | ||
24 | #include <common.h> | |
25 | #include <74xx_7xx.h> | |
26 | #include <asm/processor.h> | |
27 | ||
c7de829c WD |
28 | #ifdef CONFIG_AMIGAONEG3SE |
29 | #include "../board/MAI/AmigaOneG3SE/via686.h" | |
30 | #endif | |
31 | ||
4a9cbbe8 WD |
32 | static const int hid1_multipliers_x_10[] = { |
33 | 25, /* 0000 - 2.5x */ | |
34 | 75, /* 0001 - 7.5x */ | |
35 | 70, /* 0010 - 7x */ | |
36 | 10, /* 0011 - bypass */ | |
37 | 20, /* 0100 - 2x */ | |
38 | 65, /* 0101 - 6.5x */ | |
39 | 100, /* 0110 - 10x */ | |
40 | 45, /* 0111 - 4.5x */ | |
41 | 30, /* 1000 - 3x */ | |
42 | 55, /* 1001 - 5.5x */ | |
43 | 40, /* 1010 - 4x */ | |
44 | 50, /* 1011 - 5x */ | |
45 | 80, /* 1100 - 8x */ | |
46 | 60, /* 1101 - 6x */ | |
47 | 35, /* 1110 - 3.5x */ | |
48 | 0 /* 1111 - off */ | |
49 | }; | |
50 | ||
51 | /* ------------------------------------------------------------------------- */ | |
52 | ||
53 | /* | |
54 | * Measure CPU clock speed (core clock GCLK1, GCLK2) | |
55 | * | |
56 | * (Approx. GCLK frequency in Hz) | |
57 | */ | |
58 | ||
59 | int get_clocks (void) | |
60 | { | |
61 | DECLARE_GLOBAL_DATA_PTR; | |
62 | ||
63 | ulong clock = CFG_BUS_CLK * \ | |
64 | hid1_multipliers_x_10[get_hid1 () >> 28] / 10; | |
65 | gd->cpu_clk = clock; | |
66 | gd->bus_clk = CFG_BUS_CLK; | |
67 | ||
68 | return (0); | |
69 | } | |
70 | ||
71 | /* ------------------------------------------------------------------------- */ | |
72 | ||
73 | #if 0 /* disabled XXX - use global data instead */ | |
74 | ulong get_bus_freq (ulong gclk_freq) | |
75 | { | |
76 | return CFG_BUS_CLK; | |
77 | } | |
78 | #endif /* 0 */ | |
79 | ||
80 | /* ------------------------------------------------------------------------- */ |