| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/module.h> | 
|  | 2 | #include <linux/smp.h> | 
|  | 3 | #include <linux/time.h> | 
|  | 4 | #include <linux/errno.h> | 
| Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 5 | #include <linux/timex.h> | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 6 | #include <linux/clocksource.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <asm/io.h> | 
|  | 8 |  | 
|  | 9 | /* IBM Summit (EXA) Cyclone counter code*/ | 
|  | 10 | #define CYCLONE_CBAR_ADDR 0xFEB00CD0 | 
|  | 11 | #define CYCLONE_PMCC_OFFSET 0x51A0 | 
|  | 12 | #define CYCLONE_MPMC_OFFSET 0x51D0 | 
|  | 13 | #define CYCLONE_MPCS_OFFSET 0x51A8 | 
|  | 14 | #define CYCLONE_TIMER_FREQ 100000000 | 
|  | 15 |  | 
|  | 16 | int use_cyclone; | 
|  | 17 | void __init cyclone_setup(void) | 
|  | 18 | { | 
|  | 19 | use_cyclone = 1; | 
|  | 20 | } | 
|  | 21 |  | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 22 | static void __iomem *cyclone_mc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  | 
| Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 24 | static cycle_t read_cyclone(struct clocksource *cs) | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 25 | { | 
|  | 26 | return (cycle_t)readq((void __iomem *)cyclone_mc); | 
|  | 27 | } | 
|  | 28 |  | 
|  | 29 | static struct clocksource clocksource_cyclone = { | 
|  | 30 | .name           = "cyclone", | 
|  | 31 | .rating         = 300, | 
|  | 32 | .read           = read_cyclone, | 
|  | 33 | .mask           = (1LL << 40) - 1, | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 34 | .flags          = CLOCK_SOURCE_IS_CONTINUOUS, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | }; | 
|  | 36 |  | 
|  | 37 | int __init init_cyclone_clock(void) | 
|  | 38 | { | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 39 | u64 __iomem *reg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | u64 base;	/* saved cyclone base address */ | 
|  | 41 | u64 offset;	/* offset from pageaddr to cyclone_timer register */ | 
|  | 42 | int i; | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 43 | u32 __iomem *cyclone_timer;	/* Cyclone MPMC0 register */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 |  | 
|  | 45 | if (!use_cyclone) | 
| Bjorn Helgaas | 6c5e621 | 2006-03-03 15:33:47 -0700 | [diff] [blame] | 46 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
|  | 48 | printk(KERN_INFO "Summit chipset: Starting Cyclone Counter.\n"); | 
|  | 49 |  | 
|  | 50 | /* find base address */ | 
|  | 51 | offset = (CYCLONE_CBAR_ADDR); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 52 | reg = ioremap_nocache(offset, sizeof(u64)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | if(!reg){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 54 | printk(KERN_ERR "Summit chipset: Could not find valid CBAR" | 
|  | 55 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | use_cyclone = 0; | 
|  | 57 | return -ENODEV; | 
|  | 58 | } | 
|  | 59 | base = readq(reg); | 
| Julia Lawall | ddad53e | 2010-08-27 23:01:30 +0200 | [diff] [blame] | 60 | iounmap(reg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | if(!base){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 62 | printk(KERN_ERR "Summit chipset: Could not find valid CBAR" | 
|  | 63 | " value.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | use_cyclone = 0; | 
|  | 65 | return -ENODEV; | 
|  | 66 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 |  | 
|  | 68 | /* setup PMCC */ | 
|  | 69 | offset = (base + CYCLONE_PMCC_OFFSET); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 70 | reg = ioremap_nocache(offset, sizeof(u64)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | if(!reg){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 72 | printk(KERN_ERR "Summit chipset: Could not find valid PMCC" | 
|  | 73 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | use_cyclone = 0; | 
|  | 75 | return -ENODEV; | 
|  | 76 | } | 
|  | 77 | writel(0x00000001,reg); | 
|  | 78 | iounmap(reg); | 
|  | 79 |  | 
|  | 80 | /* setup MPCS */ | 
|  | 81 | offset = (base + CYCLONE_MPCS_OFFSET); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 82 | reg = ioremap_nocache(offset, sizeof(u64)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | if(!reg){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 84 | printk(KERN_ERR "Summit chipset: Could not find valid MPCS" | 
|  | 85 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | use_cyclone = 0; | 
|  | 87 | return -ENODEV; | 
|  | 88 | } | 
|  | 89 | writel(0x00000001,reg); | 
|  | 90 | iounmap(reg); | 
|  | 91 |  | 
|  | 92 | /* map in cyclone_timer */ | 
|  | 93 | offset = (base + CYCLONE_MPMC_OFFSET); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 94 | cyclone_timer = ioremap_nocache(offset, sizeof(u32)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | if(!cyclone_timer){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 96 | printk(KERN_ERR "Summit chipset: Could not find valid MPMC" | 
|  | 97 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | use_cyclone = 0; | 
|  | 99 | return -ENODEV; | 
|  | 100 | } | 
|  | 101 |  | 
|  | 102 | /*quick test to make sure its ticking*/ | 
|  | 103 | for(i=0; i<3; i++){ | 
|  | 104 | u32 old = readl(cyclone_timer); | 
|  | 105 | int stall = 100; | 
|  | 106 | while(stall--) barrier(); | 
|  | 107 | if(readl(cyclone_timer) == old){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 108 | printk(KERN_ERR "Summit chipset: Counter not counting!" | 
|  | 109 | " DISABLED\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | iounmap(cyclone_timer); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 111 | cyclone_timer = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | use_cyclone = 0; | 
|  | 113 | return -ENODEV; | 
|  | 114 | } | 
|  | 115 | } | 
|  | 116 | /* initialize last tick */ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 117 | cyclone_mc = cyclone_timer; | 
|  | 118 | clocksource_cyclone.fsys_mmio = cyclone_timer; | 
| John Stultz | d60c304 | 2010-04-26 20:20:47 -0700 | [diff] [blame] | 119 | clocksource_register_hz(&clocksource_cyclone, CYCLONE_TIMER_FREQ); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 |  | 
|  | 121 | return 0; | 
|  | 122 | } | 
|  | 123 |  | 
|  | 124 | __initcall(init_cyclone_clock); |