GNU Linux-libre 4.19.295-gnu1
[releases.git] / arch / riscv / kernel / time.c
1 /*
2  * Copyright (C) 2012 Regents of the University of California
3  * Copyright (C) 2017 SiFive
4  *
5  *   This program is free software; you can redistribute it and/or
6  *   modify it under the terms of the GNU General Public License
7  *   as published by the Free Software Foundation, version 2.
8  *
9  *   This program is distributed in the hope that it will be useful,
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *   GNU General Public License for more details.
13  */
14
15 #include <linux/of_clk.h>
16 #include <linux/clockchips.h>
17 #include <linux/clocksource.h>
18 #include <linux/delay.h>
19 #include <asm/sbi.h>
20
21 unsigned long riscv_timebase;
22
23 void __init time_init(void)
24 {
25         struct device_node *cpu;
26         u32 prop;
27
28         cpu = of_find_node_by_path("/cpus");
29         if (!cpu || of_property_read_u32(cpu, "timebase-frequency", &prop))
30                 panic(KERN_WARNING "RISC-V system with no 'timebase-frequency' in DTS\n");
31         riscv_timebase = prop;
32
33         lpj_fine = riscv_timebase / HZ;
34
35         of_clk_init(NULL);
36         timer_probe();
37
38         tick_setup_hrtimer_broadcast();
39 }