| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/smp.h>
 | 
					
						
							|  |  |  | #include <linux/time.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-30 15:03:48 -08:00
										 |  |  | #include <linux/timex.h>
 | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | #include <linux/clocksource.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* IBM Summit (EXA) Cyclone counter code*/ | 
					
						
							|  |  |  | #define CYCLONE_CBAR_ADDR 0xFEB00CD0
 | 
					
						
							|  |  |  | #define CYCLONE_PMCC_OFFSET 0x51A0
 | 
					
						
							|  |  |  | #define CYCLONE_MPMC_OFFSET 0x51D0
 | 
					
						
							|  |  |  | #define CYCLONE_MPCS_OFFSET 0x51A8
 | 
					
						
							|  |  |  | #define CYCLONE_TIMER_FREQ 100000000
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int use_cyclone; | 
					
						
							|  |  |  | void __init cyclone_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	use_cyclone = 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | static void __iomem *cyclone_mc; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-21 12:24:00 -07:00
										 |  |  | static cycle_t read_cyclone(struct clocksource *cs) | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return (cycle_t)readq((void __iomem *)cyclone_mc); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct clocksource clocksource_cyclone = { | 
					
						
							|  |  |  |         .name           = "cyclone", | 
					
						
							|  |  |  |         .rating         = 300, | 
					
						
							|  |  |  |         .read           = read_cyclone, | 
					
						
							|  |  |  |         .mask           = (1LL << 40) - 1, | 
					
						
							|  |  |  |         .flags          = CLOCK_SOURCE_IS_CONTINUOUS, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int __init init_cyclone_clock(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-26 17:34:59 +01:00
										 |  |  | 	u64 __iomem *reg; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u64 base;	/* saved cyclone base address */ | 
					
						
							|  |  |  | 	u64 offset;	/* offset from pageaddr to cyclone_timer register */ | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2007-07-26 17:34:59 +01:00
										 |  |  | 	u32 __iomem *cyclone_timer;	/* Cyclone MPMC0 register */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!use_cyclone) | 
					
						
							| 
									
										
										
										
											2006-03-03 15:33:47 -07:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	printk(KERN_INFO "Summit chipset: Starting Cyclone Counter.\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* find base address */ | 
					
						
							|  |  |  | 	offset = (CYCLONE_CBAR_ADDR); | 
					
						
							| 
									
										
										
										
											2007-07-26 17:34:59 +01:00
										 |  |  | 	reg = ioremap_nocache(offset, sizeof(u64)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if(!reg){ | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | 		printk(KERN_ERR "Summit chipset: Could not find valid CBAR" | 
					
						
							|  |  |  | 				" register.\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		use_cyclone = 0; | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	base = readq(reg); | 
					
						
							| 
									
										
										
										
											2010-08-27 23:01:30 +02:00
										 |  |  | 	iounmap(reg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if(!base){ | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | 		printk(KERN_ERR "Summit chipset: Could not find valid CBAR" | 
					
						
							|  |  |  | 				" value.\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		use_cyclone = 0; | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* setup PMCC */ | 
					
						
							|  |  |  | 	offset = (base + CYCLONE_PMCC_OFFSET); | 
					
						
							| 
									
										
										
										
											2007-07-26 17:34:59 +01:00
										 |  |  | 	reg = ioremap_nocache(offset, sizeof(u64)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if(!reg){ | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | 		printk(KERN_ERR "Summit chipset: Could not find valid PMCC" | 
					
						
							|  |  |  | 				" register.\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		use_cyclone = 0; | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	writel(0x00000001,reg); | 
					
						
							|  |  |  | 	iounmap(reg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* setup MPCS */ | 
					
						
							|  |  |  | 	offset = (base + CYCLONE_MPCS_OFFSET); | 
					
						
							| 
									
										
										
										
											2007-07-26 17:34:59 +01:00
										 |  |  | 	reg = ioremap_nocache(offset, sizeof(u64)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if(!reg){ | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | 		printk(KERN_ERR "Summit chipset: Could not find valid MPCS" | 
					
						
							|  |  |  | 				" register.\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		use_cyclone = 0; | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	writel(0x00000001,reg); | 
					
						
							|  |  |  | 	iounmap(reg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* map in cyclone_timer */ | 
					
						
							|  |  |  | 	offset = (base + CYCLONE_MPMC_OFFSET); | 
					
						
							| 
									
										
										
										
											2007-07-26 17:34:59 +01:00
										 |  |  | 	cyclone_timer = ioremap_nocache(offset, sizeof(u32)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if(!cyclone_timer){ | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | 		printk(KERN_ERR "Summit chipset: Could not find valid MPMC" | 
					
						
							|  |  |  | 				" register.\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		use_cyclone = 0; | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*quick test to make sure its ticking*/ | 
					
						
							|  |  |  | 	for(i=0; i<3; i++){ | 
					
						
							|  |  |  | 		u32 old = readl(cyclone_timer); | 
					
						
							|  |  |  | 		int stall = 100; | 
					
						
							|  |  |  | 		while(stall--) barrier(); | 
					
						
							|  |  |  | 		if(readl(cyclone_timer) == old){ | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | 			printk(KERN_ERR "Summit chipset: Counter not counting!" | 
					
						
							|  |  |  | 					" DISABLED\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			iounmap(cyclone_timer); | 
					
						
							| 
									
										
										
										
											2007-07-26 17:34:59 +01:00
										 |  |  | 			cyclone_timer = NULL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			use_cyclone = 0; | 
					
						
							|  |  |  | 			return -ENODEV; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* initialize last tick */ | 
					
						
							| 
									
										
										
										
											2007-07-20 11:22:30 -07:00
										 |  |  | 	cyclone_mc = cyclone_timer; | 
					
						
							| 
									
										
										
										
											2011-07-13 09:24:15 -04:00
										 |  |  | 	clocksource_cyclone.archdata.fsys_mmio = cyclone_timer; | 
					
						
							| 
									
										
										
										
											2010-04-26 20:20:47 -07:00
										 |  |  | 	clocksource_register_hz(&clocksource_cyclone, CYCLONE_TIMER_FREQ); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __initcall(init_cyclone_clock); |