2 * Carsten Langgaard, carstenl@mips.com
3 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
5 * This program is free software; you can distribute it and/or modify it
6 * under the terms of the GNU General Public License (Version 2) as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
18 * Setting up the clock on the MIPS boards.
20 #include <linux/types.h>
21 #include <linux/i8253.h>
22 #include <linux/init.h>
23 #include <linux/kernel_stat.h>
24 #include <linux/math64.h>
25 #include <linux/sched.h>
26 #include <linux/spinlock.h>
27 #include <linux/interrupt.h>
28 #include <linux/irqchip/mips-gic.h>
29 #include <linux/timex.h>
30 #include <linux/mc146818rtc.h>
33 #include <asm/mipsregs.h>
34 #include <asm/mipsmtregs.h>
35 #include <asm/hardirq.h>
37 #include <asm/div64.h>
38 #include <asm/setup.h>
40 #include <asm/mc146818-time.h>
41 #include <asm/msc01_ic.h>
43 #include <asm/mips-boards/generic.h>
44 #include <asm/mips-boards/maltaint.h>
46 static int mips_cpu_timer_irq
;
47 static int mips_cpu_perf_irq
;
48 extern int cp0_perfcount_irq
;
50 static unsigned int gic_frequency
;
52 static void mips_timer_dispatch(void)
54 do_IRQ(mips_cpu_timer_irq
);
57 static void mips_perf_dispatch(void)
59 do_IRQ(mips_cpu_perf_irq
);
62 static unsigned int freqround(unsigned int freq
, unsigned int amount
)
65 freq
-= freq
% (amount
*2);
70 * Estimate CPU and GIC frequencies.
72 static void __init
estimate_frequencies(void)
75 unsigned int count
, start
;
76 unsigned char secs1
, secs2
, ctrl
;
78 cycle_t giccount
= 0, gicstart
= 0;
80 #if defined(CONFIG_KVM_GUEST) && CONFIG_KVM_GUEST_TIMER_FREQ
81 mips_hpt_frequency
= CONFIG_KVM_GUEST_TIMER_FREQ
* 1000000;
85 local_irq_save(flags
);
91 * Read counters exactly on rising edge of update flag.
92 * This helps get an accurate reading under virtualisation.
94 while (CMOS_READ(RTC_REG_A
) & RTC_UIP
);
95 while (!(CMOS_READ(RTC_REG_A
) & RTC_UIP
));
96 start
= read_c0_count();
98 gicstart
= gic_read_count();
100 /* Wait for falling edge before reading RTC. */
101 while (CMOS_READ(RTC_REG_A
) & RTC_UIP
);
102 secs1
= CMOS_READ(RTC_SECONDS
);
104 /* Read counters again exactly on rising edge of update flag. */
105 while (!(CMOS_READ(RTC_REG_A
) & RTC_UIP
));
106 count
= read_c0_count();
108 giccount
= gic_read_count();
110 /* Wait for falling edge before reading RTC again. */
111 while (CMOS_READ(RTC_REG_A
) & RTC_UIP
);
112 secs2
= CMOS_READ(RTC_SECONDS
);
114 ctrl
= CMOS_READ(RTC_CONTROL
);
116 local_irq_restore(flags
);
118 if (!(ctrl
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
119 secs1
= bcd2bin(secs1
);
120 secs2
= bcd2bin(secs2
);
122 secs
= secs2
- secs1
;
128 mips_hpt_frequency
= count
;
131 giccount
= div_u64(giccount
- gicstart
, secs
);
132 gic_frequency
= giccount
;
136 void read_persistent_clock(struct timespec
*ts
)
138 ts
->tv_sec
= mc146818_get_cmos_time();
142 int get_c0_fdc_int(void)
145 * Some cores claim the FDC is routable through the GIC, but it doesn't
146 * actually seem to be connected for those Malta bitstreams.
148 switch (current_cpu_type()) {
156 else if (gic_present
)
157 return gic_get_c0_fdc_int();
158 else if (cp0_fdc_irq
>= 0)
159 return MIPS_CPU_IRQ_BASE
+ cp0_fdc_irq
;
164 int get_c0_perfcount_int(void)
167 set_vi_handler(MSC01E_INT_PERFCTR
, mips_perf_dispatch
);
168 mips_cpu_perf_irq
= MSC01E_INT_BASE
+ MSC01E_INT_PERFCTR
;
169 } else if (gic_present
) {
170 mips_cpu_perf_irq
= gic_get_c0_perfcount_int();
171 } else if (cp0_perfcount_irq
>= 0) {
172 mips_cpu_perf_irq
= MIPS_CPU_IRQ_BASE
+ cp0_perfcount_irq
;
174 mips_cpu_perf_irq
= -1;
177 return mips_cpu_perf_irq
;
179 EXPORT_SYMBOL_GPL(get_c0_perfcount_int
);
181 unsigned int get_c0_compare_int(void)
184 set_vi_handler(MSC01E_INT_CPUCTR
, mips_timer_dispatch
);
185 mips_cpu_timer_irq
= MSC01E_INT_BASE
+ MSC01E_INT_CPUCTR
;
186 } else if (gic_present
) {
187 mips_cpu_timer_irq
= gic_get_c0_compare_int();
189 mips_cpu_timer_irq
= MIPS_CPU_IRQ_BASE
+ cp0_compare_irq
;
192 return mips_cpu_timer_irq
;
195 static void __init
init_rtc(void)
197 unsigned char freq
, ctrl
;
199 /* Set 32KHz time base if not already set */
200 freq
= CMOS_READ(RTC_FREQ_SELECT
);
201 if ((freq
& RTC_DIV_CTL
) != RTC_REF_CLCK_32KHZ
)
202 CMOS_WRITE(RTC_REF_CLCK_32KHZ
, RTC_FREQ_SELECT
);
204 /* Ensure SET bit is clear so RTC can run */
205 ctrl
= CMOS_READ(RTC_CONTROL
);
207 CMOS_WRITE(ctrl
& ~RTC_SET
, RTC_CONTROL
);
210 void __init
plat_time_init(void)
212 unsigned int prid
= read_c0_prid() & (PRID_COMP_MASK
| PRID_IMP_MASK
);
216 estimate_frequencies();
218 freq
= mips_hpt_frequency
;
219 if ((prid
!= (PRID_COMP_MIPS
| PRID_IMP_20KC
)) &&
220 (prid
!= (PRID_COMP_MIPS
| PRID_IMP_25KF
)))
222 freq
= freqround(freq
, 5000);
223 printk("CPU frequency %d.%02d MHz\n", freq
/1000000,
224 (freq
%1000000)*100/1000000);
226 mips_scroll_message();
229 /* Only Malta has a PIT. */
233 #ifdef CONFIG_MIPS_GIC
235 freq
= freqround(gic_frequency
, 5000);
236 printk("GIC frequency %d.%02d MHz\n", freq
/1000000,
237 (freq
%1000000)*100/1000000);
238 #ifdef CONFIG_CLKSRC_MIPS_GIC
239 gic_clocksource_init(gic_frequency
);