1 // SPDX-License-Identifier: GPL-2.0-only
3 * Carsten Langgaard, carstenl@mips.com
4 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
6 * Setting up the clock on the MIPS boards.
8 #include <linux/types.h>
9 #include <linux/i8253.h>
10 #include <linux/init.h>
11 #include <linux/kernel_stat.h>
12 #include <linux/libfdt.h>
13 #include <linux/math64.h>
14 #include <linux/sched.h>
15 #include <linux/spinlock.h>
16 #include <linux/interrupt.h>
17 #include <linux/timex.h>
18 #include <linux/mc146818rtc.h>
21 #include <asm/mipsregs.h>
22 #include <asm/mipsmtregs.h>
23 #include <asm/hardirq.h>
25 #include <asm/div64.h>
26 #include <asm/setup.h>
28 #include <asm/mc146818-time.h>
29 #include <asm/msc01_ic.h>
30 #include <asm/mips-cps.h>
32 #include <asm/mips-boards/generic.h>
33 #include <asm/mips-boards/maltaint.h>
35 static int mips_cpu_timer_irq
;
36 static int mips_cpu_perf_irq
;
37 extern int cp0_perfcount_irq
;
39 static unsigned int gic_frequency
;
41 static void mips_timer_dispatch(void)
43 do_IRQ(mips_cpu_timer_irq
);
46 static void mips_perf_dispatch(void)
48 do_IRQ(mips_cpu_perf_irq
);
51 static unsigned int freqround(unsigned int freq
, unsigned int amount
)
54 freq
-= freq
% (amount
*2);
59 * Estimate CPU and GIC frequencies.
61 static void __init
estimate_frequencies(void)
64 unsigned int count
, start
;
65 unsigned char secs1
, secs2
, ctrl
;
67 u64 giccount
= 0, gicstart
= 0;
69 #if defined(CONFIG_KVM_GUEST) && CONFIG_KVM_GUEST_TIMER_FREQ
70 mips_hpt_frequency
= CONFIG_KVM_GUEST_TIMER_FREQ
* 1000000;
74 local_irq_save(flags
);
76 if (mips_gic_present())
77 clear_gic_config(GIC_CONFIG_COUNTSTOP
);
80 * Read counters exactly on rising edge of update flag.
81 * This helps get an accurate reading under virtualisation.
83 while (CMOS_READ(RTC_REG_A
) & RTC_UIP
);
84 while (!(CMOS_READ(RTC_REG_A
) & RTC_UIP
));
85 start
= read_c0_count();
86 if (mips_gic_present())
87 gicstart
= read_gic_counter();
89 /* Wait for falling edge before reading RTC. */
90 while (CMOS_READ(RTC_REG_A
) & RTC_UIP
);
91 secs1
= CMOS_READ(RTC_SECONDS
);
93 /* Read counters again exactly on rising edge of update flag. */
94 while (!(CMOS_READ(RTC_REG_A
) & RTC_UIP
));
95 count
= read_c0_count();
96 if (mips_gic_present())
97 giccount
= read_gic_counter();
99 /* Wait for falling edge before reading RTC again. */
100 while (CMOS_READ(RTC_REG_A
) & RTC_UIP
);
101 secs2
= CMOS_READ(RTC_SECONDS
);
103 ctrl
= CMOS_READ(RTC_CONTROL
);
105 local_irq_restore(flags
);
107 if (!(ctrl
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
108 secs1
= bcd2bin(secs1
);
109 secs2
= bcd2bin(secs2
);
111 secs
= secs2
- secs1
;
117 mips_hpt_frequency
= count
;
119 if (mips_gic_present()) {
120 giccount
= div_u64(giccount
- gicstart
, secs
);
121 gic_frequency
= giccount
;
125 void read_persistent_clock64(struct timespec64
*ts
)
127 ts
->tv_sec
= mc146818_get_cmos_time();
131 int get_c0_fdc_int(void)
134 * Some cores claim the FDC is routable through the GIC, but it doesn't
135 * actually seem to be connected for those Malta bitstreams.
137 switch (current_cpu_type()) {
145 else if (mips_gic_present())
146 return gic_get_c0_fdc_int();
147 else if (cp0_fdc_irq
>= 0)
148 return MIPS_CPU_IRQ_BASE
+ cp0_fdc_irq
;
153 int get_c0_perfcount_int(void)
156 set_vi_handler(MSC01E_INT_PERFCTR
, mips_perf_dispatch
);
157 mips_cpu_perf_irq
= MSC01E_INT_BASE
+ MSC01E_INT_PERFCTR
;
158 } else if (mips_gic_present()) {
159 mips_cpu_perf_irq
= gic_get_c0_perfcount_int();
160 } else if (cp0_perfcount_irq
>= 0) {
161 mips_cpu_perf_irq
= MIPS_CPU_IRQ_BASE
+ cp0_perfcount_irq
;
163 mips_cpu_perf_irq
= -1;
166 return mips_cpu_perf_irq
;
168 EXPORT_SYMBOL_GPL(get_c0_perfcount_int
);
170 unsigned int get_c0_compare_int(void)
173 set_vi_handler(MSC01E_INT_CPUCTR
, mips_timer_dispatch
);
174 mips_cpu_timer_irq
= MSC01E_INT_BASE
+ MSC01E_INT_CPUCTR
;
175 } else if (mips_gic_present()) {
176 mips_cpu_timer_irq
= gic_get_c0_compare_int();
178 mips_cpu_timer_irq
= MIPS_CPU_IRQ_BASE
+ cp0_compare_irq
;
181 return mips_cpu_timer_irq
;
184 static void __init
init_rtc(void)
186 unsigned char freq
, ctrl
;
188 /* Set 32KHz time base if not already set */
189 freq
= CMOS_READ(RTC_FREQ_SELECT
);
190 if ((freq
& RTC_DIV_CTL
) != RTC_REF_CLCK_32KHZ
)
191 CMOS_WRITE(RTC_REF_CLCK_32KHZ
, RTC_FREQ_SELECT
);
193 /* Ensure SET bit is clear so RTC can run */
194 ctrl
= CMOS_READ(RTC_CONTROL
);
196 CMOS_WRITE(ctrl
& ~RTC_SET
, RTC_CONTROL
);
199 #ifdef CONFIG_CLKSRC_MIPS_GIC
200 static u32 gic_frequency_dt
;
202 static struct property gic_frequency_prop
= {
203 .name
= "clock-frequency",
204 .length
= sizeof(u32
),
205 .value
= &gic_frequency_dt
,
208 static void update_gic_frequency_dt(void)
210 struct device_node
*node
;
212 gic_frequency_dt
= cpu_to_be32(gic_frequency
);
214 node
= of_find_compatible_node(NULL
, NULL
, "mti,gic-timer");
216 pr_err("mti,gic-timer device node not found\n");
220 if (of_update_property(node
, &gic_frequency_prop
) < 0)
221 pr_err("error updating gic frequency property\n");
226 void __init
plat_time_init(void)
228 unsigned int prid
= read_c0_prid() & (PRID_COMP_MASK
| PRID_IMP_MASK
);
232 estimate_frequencies();
234 freq
= mips_hpt_frequency
;
235 if ((prid
!= (PRID_COMP_MIPS
| PRID_IMP_20KC
)) &&
236 (prid
!= (PRID_COMP_MIPS
| PRID_IMP_25KF
)))
238 freq
= freqround(freq
, 5000);
239 printk("CPU frequency %d.%02d MHz\n", freq
/1000000,
240 (freq
%1000000)*100/1000000);
243 /* Only Malta has a PIT. */
247 if (mips_gic_present()) {
248 freq
= freqround(gic_frequency
, 5000);
249 printk("GIC frequency %d.%02d MHz\n", freq
/1000000,
250 (freq
%1000000)*100/1000000);
251 #ifdef CONFIG_CLKSRC_MIPS_GIC
252 update_gic_frequency_dt();