| 
									
										
										
										
											2009-07-02 23:22:36 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2007 Lemote, Inc. & Institute of Computing Technology | 
					
						
							|  |  |  |  * Author: Fuxin Zhang, zhangfx@lemote.com | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-01-04 17:16:51 +08:00
										 |  |  |  * Copyright (C) 2009 Lemote Inc. | 
					
						
							|  |  |  |  * Author: Wu Zhangjin, wuzhangjin@gmail.com | 
					
						
							| 
									
										
										
										
											2009-07-02 23:22:36 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  |  *  This program is free software; you can redistribute	 it and/or modify it | 
					
						
							|  |  |  |  *  under  the terms of	 the GNU General  Public License as published by the | 
					
						
							|  |  |  |  *  Free Software Foundation;  either version 2 of the	License, or (at your | 
					
						
							| 
									
										
										
										
											2009-07-02 23:22:36 +08:00
										 |  |  |  *  option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <asm/mc146818-time.h>
 | 
					
						
							|  |  |  | #include <asm/time.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-02 23:23:03 +08:00
										 |  |  | #include <loongson.h>
 | 
					
						
							| 
									
										
										
										
											2009-11-17 01:32:57 +08:00
										 |  |  | #include <cs5536/cs5536_mfgpt.h>
 | 
					
						
							| 
									
										
										
										
											2009-07-02 23:22:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void __init plat_time_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* setup mips r4k timer */ | 
					
						
							|  |  |  | 	mips_hpt_frequency = cpu_clock_freq / 2; | 
					
						
							| 
									
										
										
										
											2009-11-17 01:32:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	setup_mfgpt0_timer(); | 
					
						
							| 
									
										
										
										
											2009-07-02 23:22:36 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-18 09:15:24 -07:00
										 |  |  | void read_persistent_clock(struct timespec *ts) | 
					
						
							| 
									
										
										
										
											2009-07-02 23:22:36 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-20 15:57:28 -07:00
										 |  |  | 	ts->tv_sec = mc146818_get_cmos_time(); | 
					
						
							| 
									
										
										
										
											2009-09-18 09:15:24 -07:00
										 |  |  | 	ts->tv_nsec = 0; | 
					
						
							| 
									
										
										
										
											2009-07-02 23:22:36 +08:00
										 |  |  | } |