allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / mips / au1000 / common / time.c
blob5b4de5b4f393850bfbd5870696a95473e63bae9c
1 /*
3 * Copyright (C) 2001 MontaVista Software, ppopov@mvista.com
4 * Copied and modified Carsten Langgaard's time.c
6 * Carsten Langgaard, carstenl@mips.com
7 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
9 * ########################################################################
11 * This program is free software; you can distribute it and/or modify it
12 * under the terms of the GNU General Public License (Version 2) as
13 * published by the Free Software Foundation.
15 * This program is distributed in the hope it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
24 * ########################################################################
26 * Setting up the clock on the MIPS boards.
28 * Update. Always configure the kernel with CONFIG_NEW_TIME_C. This
29 * will use the user interface gettimeofday() functions from the
30 * arch/mips/kernel/time.c, and we provide the clock interrupt processing
31 * and the timer offset compute functions. If CONFIG_PM is selected,
32 * we also ensure the 32KHz timer is available. -- Dan
35 #include <linux/types.h>
36 #include <linux/init.h>
37 #include <linux/kernel_stat.h>
38 #include <linux/sched.h>
39 #include <linux/spinlock.h>
40 #include <linux/hardirq.h>
42 #include <asm/compiler.h>
43 #include <asm/mipsregs.h>
44 #include <asm/time.h>
45 #include <asm/div64.h>
46 #include <asm/mach-au1x00/au1000.h>
48 #include <linux/mc146818rtc.h>
49 #include <linux/timex.h>
51 static unsigned long r4k_offset; /* Amount to increment compare reg each time */
52 static unsigned long r4k_cur; /* What counter should be at next timer irq */
53 int no_au1xxx_32khz;
54 extern int allow_au1k_wait; /* default off for CP0 Counter */
56 #ifdef CONFIG_PM
57 #if HZ < 100 || HZ > 1000
58 #error "unsupported HZ value! Must be in [100,1000]"
59 #endif
60 #define MATCH20_INC (328*100/HZ) /* magic number 328 is for HZ=100... */
61 extern void startup_match20_interrupt(irq_handler_t handler);
62 static unsigned long last_pc0, last_match20;
63 #endif
65 static DEFINE_SPINLOCK(time_lock);
67 static inline void ack_r4ktimer(unsigned long newval)
69 write_c0_compare(newval);
73 * There are a lot of conceptually broken versions of the MIPS timer interrupt
74 * handler floating around. This one is rather different, but the algorithm
75 * is provably more robust.
77 unsigned long wtimer;
79 void mips_timer_interrupt(void)
81 int irq = 63;
83 irq_enter();
84 kstat_this_cpu.irqs[irq]++;
86 if (r4k_offset == 0)
87 goto null;
89 do {
90 kstat_this_cpu.irqs[irq]++;
91 do_timer(1);
92 #ifndef CONFIG_SMP
93 update_process_times(user_mode(get_irq_regs()));
94 #endif
95 r4k_cur += r4k_offset;
96 ack_r4ktimer(r4k_cur);
98 } while (((unsigned long)read_c0_count()
99 - r4k_cur) < 0x7fffffff);
101 irq_exit();
102 return;
104 null:
105 ack_r4ktimer(0);
106 irq_exit();
109 #ifdef CONFIG_PM
110 irqreturn_t counter0_irq(int irq, void *dev_id)
112 unsigned long pc0;
113 int time_elapsed;
114 static int jiffie_drift = 0;
116 if (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_M20) {
117 /* should never happen! */
118 printk(KERN_WARNING "counter 0 w status error\n");
119 return IRQ_NONE;
122 pc0 = au_readl(SYS_TOYREAD);
123 if (pc0 < last_match20) {
124 /* counter overflowed */
125 time_elapsed = (0xffffffff - last_match20) + pc0;
127 else {
128 time_elapsed = pc0 - last_match20;
131 while (time_elapsed > 0) {
132 do_timer(1);
133 #ifndef CONFIG_SMP
134 update_process_times(user_mode(get_irq_regs()));
135 #endif
136 time_elapsed -= MATCH20_INC;
137 last_match20 += MATCH20_INC;
138 jiffie_drift++;
141 last_pc0 = pc0;
142 au_writel(last_match20 + MATCH20_INC, SYS_TOYMATCH2);
143 au_sync();
145 /* our counter ticks at 10.009765625 ms/tick, we we're running
146 * almost 10uS too slow per tick.
149 if (jiffie_drift >= 999) {
150 jiffie_drift -= 999;
151 do_timer(1); /* increment jiffies by one */
152 #ifndef CONFIG_SMP
153 update_process_times(user_mode(get_irq_regs()));
154 #endif
157 return IRQ_HANDLED;
160 /* When we wakeup from sleep, we have to "catch up" on all of the
161 * timer ticks we have missed.
163 void
164 wakeup_counter0_adjust(void)
166 unsigned long pc0;
167 int time_elapsed;
169 pc0 = au_readl(SYS_TOYREAD);
170 if (pc0 < last_match20) {
171 /* counter overflowed */
172 time_elapsed = (0xffffffff - last_match20) + pc0;
174 else {
175 time_elapsed = pc0 - last_match20;
178 while (time_elapsed > 0) {
179 time_elapsed -= MATCH20_INC;
180 last_match20 += MATCH20_INC;
183 last_pc0 = pc0;
184 au_writel(last_match20 + MATCH20_INC, SYS_TOYMATCH2);
185 au_sync();
189 /* This is just for debugging to set the timer for a sleep delay.
191 void
192 wakeup_counter0_set(int ticks)
194 unsigned long pc0;
196 pc0 = au_readl(SYS_TOYREAD);
197 last_pc0 = pc0;
198 au_writel(last_match20 + (MATCH20_INC * ticks), SYS_TOYMATCH2);
199 au_sync();
201 #endif
203 /* I haven't found anyone that doesn't use a 12 MHz source clock,
204 * but just in case.....
206 #ifdef CONFIG_AU1000_SRC_CLK
207 #define AU1000_SRC_CLK CONFIG_AU1000_SRC_CLK
208 #else
209 #define AU1000_SRC_CLK 12000000
210 #endif
213 * We read the real processor speed from the PLL. This is important
214 * because it is more accurate than computing it from the 32KHz
215 * counter, if it exists. If we don't have an accurate processor
216 * speed, all of the peripherals that derive their clocks based on
217 * this advertised speed will introduce error and sometimes not work
218 * properly. This function is futher convoluted to still allow configurations
219 * to do that in case they have really, really old silicon with a
220 * write-only PLL register, that we need the 32KHz when power management
221 * "wait" is enabled, and we need to detect if the 32KHz isn't present
222 * but requested......got it? :-) -- Dan
224 unsigned long cal_r4koff(void)
226 unsigned long cpu_speed;
227 unsigned long flags;
228 unsigned long counter;
230 spin_lock_irqsave(&time_lock, flags);
232 /* Power management cares if we don't have a 32KHz counter.
234 no_au1xxx_32khz = 0;
235 counter = au_readl(SYS_COUNTER_CNTRL);
236 if (counter & SYS_CNTRL_E0) {
237 int trim_divide = 16;
239 au_writel(counter | SYS_CNTRL_EN1, SYS_COUNTER_CNTRL);
241 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_T1S);
242 /* RTC now ticks at 32.768/16 kHz */
243 au_writel(trim_divide-1, SYS_RTCTRIM);
244 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_T1S);
246 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_C1S);
247 au_writel (0, SYS_TOYWRITE);
248 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_C1S);
249 } else
250 no_au1xxx_32khz = 1;
252 #if defined(CONFIG_AU1000_USE32K)
254 unsigned long start, end, count;
256 start = au_readl(SYS_RTCREAD);
257 start += 2;
258 /* wait for the beginning of a new tick
260 while (au_readl(SYS_RTCREAD) < start);
262 /* Start r4k counter.
264 write_c0_count(0);
266 /* Wait 0.5 seconds.
268 end = start + (32768 / trim_divide)/2;
270 while (end > au_readl(SYS_RTCREAD));
272 count = read_c0_count();
273 cpu_speed = count * 2;
275 #endif
277 * On early Au1000, sys_cpupll was write-only. Since these
278 * silicon versions of Au1000 are not sold by AMD, we don't bend
279 * over backwards trying to determine the frequency.
281 if (cur_cpu_spec[0]->cpu_pll_wo)
282 #ifdef CONFIG_SOC_AU1000_FREQUENCY
283 cpu_speed = CONFIG_SOC_AU1000_FREQUENCY;
284 #else
285 cpu_speed = 396000000;
286 #endif
287 else
288 cpu_speed = (au_readl(SYS_CPUPLL) & 0x0000003f) * AU1000_SRC_CLK;
289 mips_hpt_frequency = cpu_speed;
290 // Equation: Baudrate = CPU / (SD * 2 * CLKDIV * 16)
291 set_au1x00_uart_baud_base(cpu_speed / (2 * ((int)(au_readl(SYS_POWERCTRL)&0x03) + 2) * 16));
292 spin_unlock_irqrestore(&time_lock, flags);
293 return (cpu_speed / HZ);
296 void __init plat_timer_setup(struct irqaction *irq)
298 unsigned int est_freq;
300 printk("calculating r4koff... ");
301 r4k_offset = cal_r4koff();
302 printk("%08lx(%d)\n", r4k_offset, (int) r4k_offset);
304 //est_freq = 2*r4k_offset*HZ;
305 est_freq = r4k_offset*HZ;
306 est_freq += 5000; /* round */
307 est_freq -= est_freq%10000;
308 printk("CPU frequency %d.%02d MHz\n", est_freq/1000000,
309 (est_freq%1000000)*100/1000000);
310 set_au1x00_speed(est_freq);
311 set_au1x00_lcd_clock(); // program the LCD clock
313 r4k_cur = (read_c0_count() + r4k_offset);
314 write_c0_compare(r4k_cur);
316 #ifdef CONFIG_PM
318 * setup counter 0, since it keeps ticking after a
319 * 'wait' instruction has been executed. The CP0 timer and
320 * counter 1 do NOT continue running after 'wait'
322 * It's too early to call request_irq() here, so we handle
323 * counter 0 interrupt as a special irq and it doesn't show
324 * up under /proc/interrupts.
326 * Check to ensure we really have a 32KHz oscillator before
327 * we do this.
329 if (no_au1xxx_32khz) {
330 unsigned int c0_status;
332 printk("WARNING: no 32KHz clock found.\n");
334 /* Ensure we get CPO_COUNTER interrupts.
336 c0_status = read_c0_status();
337 c0_status |= IE_IRQ5;
338 write_c0_status(c0_status);
340 else {
341 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_C0S);
342 au_writel(0, SYS_TOYWRITE);
343 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_C0S);
345 au_writel(au_readl(SYS_WAKEMSK) | (1<<8), SYS_WAKEMSK);
346 au_writel(~0, SYS_WAKESRC);
347 au_sync();
348 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_M20);
350 /* setup match20 to interrupt once every HZ */
351 last_pc0 = last_match20 = au_readl(SYS_TOYREAD);
352 au_writel(last_match20 + MATCH20_INC, SYS_TOYMATCH2);
353 au_sync();
354 while (au_readl(SYS_COUNTER_CNTRL) & SYS_CNTRL_M20);
355 startup_match20_interrupt(counter0_irq);
357 /* We can use the real 'wait' instruction.
359 allow_au1k_wait = 1;
362 #endif
365 void __init au1xxx_time_init(void)