diff options
author | 2025-03-08 22:04:20 +0800 | |
---|---|---|
committer | 2025-03-08 22:04:20 +0800 | |
commit | a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a (patch) | |
tree | 84f21bd0bf7071bc5fc7dd989e77d7ceb5476682 /arch/mips/cobalt/time.c | |
download | ohosKernel-a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a.tar.gz ohosKernel-a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a.zip |
Initial commit: OpenHarmony-v4.0-ReleaseOpenHarmony-v4.0-Release
Diffstat (limited to 'arch/mips/cobalt/time.c')
-rw-r--r-- | arch/mips/cobalt/time.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/arch/mips/cobalt/time.c b/arch/mips/cobalt/time.c new file mode 100644 index 000000000..1b6fa6649 --- /dev/null +++ b/arch/mips/cobalt/time.c | |||
@@ -0,0 +1,41 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
2 | /* | ||
3 | * Cobalt time initialization. | ||
4 | * | ||
5 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> | ||
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 /* 50MHz */ | ||
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 | * MIPS counter frequency is measured during a 100msec interval | ||
26 | * using GT64111 timer0. | ||
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 | } | ||