| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * arch/sh/kernel/cpu/sh5/clock-sh5.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SH-5 support for the clock framework | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 2008  Paul Mundt | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <asm/clock.h>
 | 
					
						
							|  |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ifc_table[] = { 2, 4, 6, 8, 10, 12, 16, 24 }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Clock, Power and Reset Controller */ | 
					
						
							|  |  |  | #define	CPRC_BLOCK_OFF	0x01010000
 | 
					
						
							|  |  |  | #define CPRC_BASE	(PHYS_PERIPHERAL_BLOCK + CPRC_BLOCK_OFF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned long cprc_base; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void master_clk_init(struct clk *clk) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	int idx = (__raw_readl(cprc_base + 0x00) >> 6) & 0x0007; | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | 	clk->rate *= ifc_table[idx]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 22:18:03 +09:00
										 |  |  | static struct sh_clk_ops sh5_master_clk_ops = { | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | 	.init		= master_clk_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-12 03:45:08 +09:00
										 |  |  | static unsigned long module_clk_recalc(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	int idx = (__raw_readw(cprc_base) >> 12) & 0x0007; | 
					
						
							| 
									
										
										
										
											2009-05-12 03:45:08 +09:00
										 |  |  | 	return clk->parent->rate / ifc_table[idx]; | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 22:18:03 +09:00
										 |  |  | static struct sh_clk_ops sh5_module_clk_ops = { | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | 	.recalc		= module_clk_recalc, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-12 03:45:08 +09:00
										 |  |  | static unsigned long bus_clk_recalc(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	int idx = (__raw_readw(cprc_base) >> 3) & 0x0007; | 
					
						
							| 
									
										
										
										
											2009-05-12 03:45:08 +09:00
										 |  |  | 	return clk->parent->rate / ifc_table[idx]; | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 22:18:03 +09:00
										 |  |  | static struct sh_clk_ops sh5_bus_clk_ops = { | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | 	.recalc		= bus_clk_recalc, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-12 03:45:08 +09:00
										 |  |  | static unsigned long cpu_clk_recalc(struct clk *clk) | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	int idx = (__raw_readw(cprc_base) & 0x0007); | 
					
						
							| 
									
										
										
										
											2009-05-12 03:45:08 +09:00
										 |  |  | 	return clk->parent->rate / ifc_table[idx]; | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 22:18:03 +09:00
										 |  |  | static struct sh_clk_ops sh5_cpu_clk_ops = { | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | 	.recalc		= cpu_clk_recalc, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 22:18:03 +09:00
										 |  |  | static struct sh_clk_ops *sh5_clk_ops[] = { | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | 	&sh5_master_clk_ops, | 
					
						
							|  |  |  | 	&sh5_module_clk_ops, | 
					
						
							|  |  |  | 	&sh5_bus_clk_ops, | 
					
						
							|  |  |  | 	&sh5_cpu_clk_ops, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-29 22:18:03 +09:00
										 |  |  | void __init arch_init_clk_ops(struct sh_clk_ops **ops, int idx) | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | 	cprc_base = (unsigned long)ioremap_nocache(CPRC_BASE, 1024); | 
					
						
							| 
									
										
										
										
											2008-09-29 20:09:17 +09:00
										 |  |  | 	BUG_ON(!cprc_base); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (idx < ARRAY_SIZE(sh5_clk_ops)) | 
					
						
							|  |  |  | 		*ops = sh5_clk_ops[idx]; | 
					
						
							|  |  |  | } |