| 
									
										
										
										
											2007-11-24 22:33:28 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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) 2007 by Ralf Baechle | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-11-28 15:07:42 +00:00
										 |  |  | #include <linux/clocksource.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/time.h>
 | 
					
						
							| 
									
										
										
										
											2007-11-24 22:33:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static cycle_t c0_hpt_read(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return read_c0_count(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct clocksource clocksource_mips = { | 
					
						
							|  |  |  | 	.name		= "MIPS", | 
					
						
							|  |  |  | 	.read		= c0_hpt_read, | 
					
						
							|  |  |  | 	.mask		= CLOCKSOURCE_MASK(32), | 
					
						
							|  |  |  | 	.flags		= CLOCK_SOURCE_IS_CONTINUOUS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-12 13:58:10 +00:00
										 |  |  | int __init init_mips_clocksource(void) | 
					
						
							| 
									
										
										
										
											2007-11-24 22:33:28 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-03-12 13:58:10 +00:00
										 |  |  | 	if (!cpu_has_counter || !mips_hpt_frequency) | 
					
						
							|  |  |  | 		return -ENXIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-24 22:33:28 +00:00
										 |  |  | 	/* Calclate a somewhat reasonable rating value */ | 
					
						
							|  |  |  | 	clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clocksource_set_clock(&clocksource_mips, mips_hpt_frequency); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clocksource_register(&clocksource_mips); | 
					
						
							| 
									
										
										
										
											2008-03-12 13:58:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2007-11-24 22:33:28 +00:00
										 |  |  | } |