This source file includes following definitions.
- plat_time_init
1
2
3
4
5
6
7 #include <linux/i8253.h>
8 #include <linux/init.h>
9
10 #include <asm/gt64120.h>
11 #include <asm/time.h>
12
13 #define GT641XX_BASE_CLOCK 50000000
14
15 void __init plat_time_init(void)
16 {
17 u32 start, end;
18 int i = HZ / 10;
19
20 setup_pit_timer();
21
22 gt641xx_set_base_clock(GT641XX_BASE_CLOCK);
23
24
25
26
27
28 while (!gt641xx_timer0_state())
29 ;
30
31 start = read_c0_count();
32
33 while (i--)
34 while (!gt641xx_timer0_state())
35 ;
36
37 end = read_c0_count();
38
39 mips_hpt_frequency = (end - start) * 10;
40 printk(KERN_INFO "MIPS counter frequency %dHz\n", mips_hpt_frequency);
41 }