| 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 |  | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 24 | static cycle_t read_cyclone(void) | 
|  | 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, | 
|  | 34 | .mult           = 0, /*to be caluclated*/ | 
|  | 35 | .shift          = 16, | 
|  | 36 | .flags          = CLOCK_SOURCE_IS_CONTINUOUS, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; | 
|  | 38 |  | 
|  | 39 | int __init init_cyclone_clock(void) | 
|  | 40 | { | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 41 | u64 __iomem *reg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | u64 base;	/* saved cyclone base address */ | 
|  | 43 | u64 offset;	/* offset from pageaddr to cyclone_timer register */ | 
|  | 44 | int i; | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 45 | u32 __iomem *cyclone_timer;	/* Cyclone MPMC0 register */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
|  | 47 | if (!use_cyclone) | 
| Bjorn Helgaas | 6c5e621 | 2006-03-03 15:33:47 -0700 | [diff] [blame] | 48 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
|  | 50 | printk(KERN_INFO "Summit chipset: Starting Cyclone Counter.\n"); | 
|  | 51 |  | 
|  | 52 | /* find base address */ | 
|  | 53 | offset = (CYCLONE_CBAR_ADDR); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 54 | reg = ioremap_nocache(offset, sizeof(u64)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | if(!reg){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 56 | printk(KERN_ERR "Summit chipset: Could not find valid CBAR" | 
|  | 57 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | use_cyclone = 0; | 
|  | 59 | return -ENODEV; | 
|  | 60 | } | 
|  | 61 | base = readq(reg); | 
|  | 62 | if(!base){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 63 | printk(KERN_ERR "Summit chipset: Could not find valid CBAR" | 
|  | 64 | " value.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | use_cyclone = 0; | 
|  | 66 | return -ENODEV; | 
|  | 67 | } | 
|  | 68 | iounmap(reg); | 
|  | 69 |  | 
|  | 70 | /* setup PMCC */ | 
|  | 71 | offset = (base + CYCLONE_PMCC_OFFSET); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 72 | reg = ioremap_nocache(offset, sizeof(u64)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | if(!reg){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 74 | printk(KERN_ERR "Summit chipset: Could not find valid PMCC" | 
|  | 75 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | use_cyclone = 0; | 
|  | 77 | return -ENODEV; | 
|  | 78 | } | 
|  | 79 | writel(0x00000001,reg); | 
|  | 80 | iounmap(reg); | 
|  | 81 |  | 
|  | 82 | /* setup MPCS */ | 
|  | 83 | offset = (base + CYCLONE_MPCS_OFFSET); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 84 | reg = ioremap_nocache(offset, sizeof(u64)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | if(!reg){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 86 | printk(KERN_ERR "Summit chipset: Could not find valid MPCS" | 
|  | 87 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | use_cyclone = 0; | 
|  | 89 | return -ENODEV; | 
|  | 90 | } | 
|  | 91 | writel(0x00000001,reg); | 
|  | 92 | iounmap(reg); | 
|  | 93 |  | 
|  | 94 | /* map in cyclone_timer */ | 
|  | 95 | offset = (base + CYCLONE_MPMC_OFFSET); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 96 | cyclone_timer = ioremap_nocache(offset, sizeof(u32)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | if(!cyclone_timer){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 98 | printk(KERN_ERR "Summit chipset: Could not find valid MPMC" | 
|  | 99 | " register.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | use_cyclone = 0; | 
|  | 101 | return -ENODEV; | 
|  | 102 | } | 
|  | 103 |  | 
|  | 104 | /*quick test to make sure its ticking*/ | 
|  | 105 | for(i=0; i<3; i++){ | 
|  | 106 | u32 old = readl(cyclone_timer); | 
|  | 107 | int stall = 100; | 
|  | 108 | while(stall--) barrier(); | 
|  | 109 | if(readl(cyclone_timer) == old){ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 110 | printk(KERN_ERR "Summit chipset: Counter not counting!" | 
|  | 111 | " DISABLED\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | iounmap(cyclone_timer); | 
| Al Viro | 6aa8b04 | 2007-07-26 17:34:59 +0100 | [diff] [blame] | 113 | cyclone_timer = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | use_cyclone = 0; | 
|  | 115 | return -ENODEV; | 
|  | 116 | } | 
|  | 117 | } | 
|  | 118 | /* initialize last tick */ | 
| Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 119 | cyclone_mc = cyclone_timer; | 
|  | 120 | clocksource_cyclone.fsys_mmio = cyclone_timer; | 
|  | 121 | clocksource_cyclone.mult = clocksource_hz2mult(CYCLONE_TIMER_FREQ, | 
|  | 122 | clocksource_cyclone.shift); | 
|  | 123 | clocksource_register(&clocksource_cyclone); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 |  | 
|  | 125 | return 0; | 
|  | 126 | } | 
|  | 127 |  | 
|  | 128 | __initcall(init_cyclone_clock); |