| 
									
										
										
										
											2009-11-17 01:32:59 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2009 Lemote Inc. | 
					
						
							| 
									
										
										
										
											2010-01-04 17:16:51 +08:00
										 |  |  |  * Author: Wu Zhangjin, wuzhangjin@gmail.com | 
					
						
							| 
									
										
										
										
											2009-11-17 01:32:59 +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 | 
					
						
							| 
									
										
										
										
											2009-11-17 01:32:59 +08:00
										 |  |  |  * Free Software Foundation;  either version 2 of the  License, or (at your | 
					
						
							|  |  |  |  * option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/err.h>
 | 
					
						
							| 
									
										
										
										
											2011-07-28 19:39:02 -04:00
										 |  |  | #include <linux/smp.h>
 | 
					
						
							| 
									
										
										
										
											2009-11-17 01:32:59 +08:00
										 |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device loongson2_cpufreq_device = { | 
					
						
							|  |  |  | 	.name = "loongson2_cpufreq", | 
					
						
							|  |  |  | 	.id = -1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init loongson2_cpufreq_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cpuinfo_mips *c = ¤t_cpu_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Only 2F revision and it's successors support CPUFreq */ | 
					
						
							|  |  |  | 	if ((c->processor_id & PRID_REV_MASK) >= PRID_REV_LOONGSON2F) | 
					
						
							|  |  |  | 		return platform_device_register(&loongson2_cpufreq_device); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return -ENODEV; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | arch_initcall(loongson2_cpufreq_init); |