1 #include <linux/types.h>
2 #include <linux/init.h>
3 #include <linux/kernel_stat.h>
4 #include <linux/sched.h>
5 #include <linux/spinlock.h>
6 #include <linux/interrupt.h>
7 #include <linux/mc146818rtc.h>
9 #include <linux/timex.h>
11 #include <asm/hardirq.h>
12 #include <asm/div64.h>
16 #include <asm/mc146818-time.h>
17 #include <asm/msc01_ic.h>
19 #include <asm/mips-boards/generic.h>
20 #include <asm/mips-boards/prom.h>
21 #include <asm/mips-boards/simint.h>
24 unsigned long cpu_khz;
26 irqreturn_t sim_timer_interrupt(int irq, void *dev_id)
29 int cpu = smp_processor_id();
32 * CPU 0 handles the global timer interrupt job
33 * resets count/compare registers to trigger next timer int.
35 #ifndef CONFIG_MIPS_MT_SMTC
37 timer_interrupt(irq, dev_id);
39 /* Everyone else needs to reset the timer int here as
40 ll_local_timer_interrupt doesn't */
42 * FIXME: need to cope with counter underflow.
43 * More support needs to be added to kernel/time for
44 * counter/timer interrupts on multiple CPU's
46 write_c0_compare (read_c0_count() + ( mips_hpt_frequency/HZ));
50 * In SMTC system, one Count/Compare set exists per VPE.
51 * Which TC within a VPE gets the interrupt is essentially
52 * random - we only know that it shouldn't be one with
53 * IXMT set. Whichever TC gets the interrupt needs to
54 * send special interprocessor interrupts to the other
55 * TCs to make sure that they schedule, etc.
57 * That code is specific to the SMTC kernel, not to
58 * the simulation platform, so it's invoked from
59 * the general MIPS timer_interrupt routine.
61 * We have a problem in that the interrupt vector code
62 * had to turn off the timer IM bit to avoid redundant
63 * entries, but we may never get to mips_cpu_irq_end
64 * to turn it back on again if the scheduler gets
65 * involved. So we clear the pending timer here,
66 * and re-enable the mask...
70 write_c0_compare (read_c0_count() - 1);
71 clear_c0_cause(0x100 << cp0_compare_irq);
72 set_c0_status(0x100 << cp0_compare_irq);
76 if (cpu_data[cpu].vpe_id == 0)
77 timer_interrupt(irq, dev_id);
79 write_c0_compare (read_c0_count() + ( mips_hpt_frequency/HZ));
80 smtc_timer_broadcast(cpu_data[cpu].vpe_id);
82 #endif /* CONFIG_MIPS_MT_SMTC */
85 * every CPU should do profiling and process accounting
87 local_timer_interrupt (irq, dev_id);
91 return timer_interrupt (irq, dev_id);
98 * Estimate CPU frequency. Sets mips_hpt_frequency as a side-effect
100 static unsigned int __init estimate_cpu_frequency(void)
102 unsigned int prid = read_c0_prid() & 0xffff00;
107 * hardwire the board frequency to 12MHz.
110 if ((prid == (PRID_COMP_MIPS | PRID_IMP_20KC)) ||
111 (prid == (PRID_COMP_MIPS | PRID_IMP_25KF)))
118 local_irq_save(flags);
120 /* Start counter exactly on falling edge of update flag */
121 while (CMOS_READ(RTC_REG_A) & RTC_UIP);
122 while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
124 /* Start r4k counter. */
127 /* Read counter exactly on falling edge of update flag */
128 while (CMOS_READ(RTC_REG_A) & RTC_UIP);
129 while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
131 count = read_c0_count();
133 /* restore interrupts */
134 local_irq_restore(flags);
137 mips_hpt_frequency = count;
139 if ((prid != (PRID_COMP_MIPS | PRID_IMP_20KC)) &&
140 (prid != (PRID_COMP_MIPS | PRID_IMP_25KF)))
143 count += 5000; /* round */
144 count -= count%10000;
149 void __init sim_time_init(void)
151 unsigned int est_freq, flags;
153 local_irq_save(flags);
155 /* Set Data mode - binary. */
156 CMOS_WRITE(CMOS_READ(RTC_CONTROL) | RTC_DM_BINARY, RTC_CONTROL);
158 est_freq = estimate_cpu_frequency ();
160 printk(KERN_INFO "CPU frequency %d.%02d MHz\n", est_freq / 1000000,
161 (est_freq % 1000000) * 100 / 1000000);
163 cpu_khz = est_freq / 1000;
165 local_irq_restore(flags);
168 static int mips_cpu_timer_irq;
170 static void mips_timer_dispatch(void)
172 do_IRQ(mips_cpu_timer_irq);
176 void __init plat_timer_setup(struct irqaction *irq)
179 set_vi_handler(MSC01E_INT_CPUCTR, mips_timer_dispatch);
180 mips_cpu_timer_irq = MSC01E_INT_BASE + MSC01E_INT_CPUCTR;
183 set_vi_handler(cp0_compare_irq, mips_timer_dispatch);
184 mips_cpu_timer_irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
187 /* we are using the cpu counter for timer interrupts */
188 irq->handler = sim_timer_interrupt;
189 setup_irq(mips_cpu_timer_irq, irq);
192 /* irq_desc(riptor) is a global resource, when the interrupt overlaps
193 on seperate cpu's the first one tries to handle the second interrupt.
194 The effect is that the int remains disabled on the second cpu.
195 Mark the interrupt with IRQ_PER_CPU to avoid any confusion */
196 irq_desc[mips_cpu_timer_irq].flags |= IRQ_PER_CPU;
197 set_irq_handler(mips_cpu_timer_irq, handle_percpu_irq);