| 
									
										
										
										
											2006-05-06 17:04:20 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * time.c: MIPS CPU Count/Compare timer hookup | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Author: Mark.Zhan, <rongkai.zhan@windriver.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org) | 
					
						
							|  |  |  |  * Copyright (C) 2006, Wind River System Inc. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-10 00:28:26 +09:00
										 |  |  | #include <linux/irq.h>
 | 
					
						
							| 
									
										
										
										
											2006-05-06 17:04:20 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <asm/gt64120.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-10 00:28:26 +09:00
										 |  |  | #include <asm/time.h>
 | 
					
						
							| 
									
										
										
										
											2006-05-06 17:04:20 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define WRPPMC_CPU_CLK_FREQ 40000000 /* 40MHZ */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Estimate CPU frequency.  Sets mips_hpt_frequency as a side-effect | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NOTE: We disable all GT64120 timers, and use MIPS processor internal | 
					
						
							|  |  |  |  * timer as the source of kernel clock tick. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-10-11 23:46:08 +01:00
										 |  |  | void __init plat_time_init(void) | 
					
						
							| 
									
										
										
										
											2006-05-06 17:04:20 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* Disable GT64120 timers */ | 
					
						
							|  |  |  | 	GT_WRITE(GT_TC_CONTROL_OFS, 0x00); | 
					
						
							|  |  |  | 	GT_WRITE(GT_TC0_OFS, 0x00); | 
					
						
							|  |  |  | 	GT_WRITE(GT_TC1_OFS, 0x00); | 
					
						
							|  |  |  | 	GT_WRITE(GT_TC2_OFS, 0x00); | 
					
						
							|  |  |  | 	GT_WRITE(GT_TC3_OFS, 0x00); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Use MIPS compare/count internal timer */ | 
					
						
							|  |  |  | 	mips_hpt_frequency = WRPPMC_CPU_CLK_FREQ; | 
					
						
							|  |  |  | } |