blob: c01f558a2a09142fb06c0ed4a64673b1fff461a3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Ralf Baechle54d0a212006-07-09 21:38:56 +01002 * Copytight (C) 1999, 2000, 05, 06 Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copytight (C) 1999, 2000 Silicon Graphics, Inc.
4 */
5#include <linux/bcd.h>
Ralf Baechlee887b242007-10-18 13:34:12 +01006#include <linux/clockchips.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/init.h>
8#include <linux/kernel.h>
9#include <linux/sched.h>
10#include <linux/interrupt.h>
11#include <linux/kernel_stat.h>
12#include <linux/param.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010013#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/time.h>
15#include <linux/timex.h>
16#include <linux/mm.h>
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +020017#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <asm/time.h>
20#include <asm/pgtable.h>
21#include <asm/sgialib.h>
22#include <asm/sn/ioc3.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/sn/klconfig.h>
24#include <asm/sn/arch.h>
25#include <asm/sn/addrs.h>
26#include <asm/sn/sn_private.h>
27#include <asm/sn/sn0/ip27.h>
28#include <asm/sn/sn0/hub.h>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define TICK_SIZE (tick_nsec / 1000)
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* Includes for ioc3_init(). */
33#include <asm/sn/types.h>
34#include <asm/sn/sn0/addrs.h>
35#include <asm/sn/sn0/hubni.h>
36#include <asm/sn/sn0/hubio.h>
37#include <asm/pci/bridge.h>
38
Thomas Gleixner301218d2011-03-23 21:09:12 +000039static void enable_rt_irq(struct irq_data *d)
Ralf Baechle3c009442006-06-16 17:10:49 +020040{
41}
42
Thomas Gleixner301218d2011-03-23 21:09:12 +000043static void disable_rt_irq(struct irq_data *d)
Ralf Baechle3c009442006-06-16 17:10:49 +020044{
45}
46
Ralf Baechle94dee172006-07-02 14:41:42 +010047static struct irq_chip rt_irq_type = {
Atsushi Nemoto70d21cd2007-01-15 00:07:25 +090048 .name = "SN HUB RT timer",
Thomas Gleixner301218d2011-03-23 21:09:12 +000049 .irq_mask = disable_rt_irq,
50 .irq_unmask = enable_rt_irq,
Ralf Baechle3c009442006-06-16 17:10:49 +020051};
52
Ralf Baechle06d428d2007-10-22 10:34:13 +010053static int rt_next_event(unsigned long delta, struct clock_event_device *evt)
54{
55 unsigned int cpu = smp_processor_id();
Ralf Baechlec8925292007-11-01 12:20:51 +000056 int slice = cputoslice(cpu);
Ralf Baechle06d428d2007-10-22 10:34:13 +010057 unsigned long cnt;
58
59 cnt = LOCAL_HUB_L(PI_RT_COUNT);
60 cnt += delta;
Ralf Baechle725d7b362007-10-28 23:02:37 +000061 LOCAL_HUB_S(PI_RT_COMPARE_A + PI_COUNT_OFFSET * slice, cnt);
Ralf Baechle06d428d2007-10-22 10:34:13 +010062
63 return LOCAL_HUB_L(PI_RT_COUNT) >= cnt ? -ETIME : 0;
64}
65
66static void rt_set_mode(enum clock_event_mode mode,
67 struct clock_event_device *evt)
68{
69 switch (mode) {
70 case CLOCK_EVT_MODE_ONESHOT:
71 /* The only mode supported */
72 break;
73
74 case CLOCK_EVT_MODE_PERIODIC:
75 case CLOCK_EVT_MODE_UNUSED:
76 case CLOCK_EVT_MODE_SHUTDOWN:
77 case CLOCK_EVT_MODE_RESUME:
78 /* Nothing to do */
79 break;
80 }
81}
82
Roel Kluind0e7ba02008-04-16 17:09:58 +020083int rt_timer_irq;
Ralf Baechlee887b242007-10-18 13:34:12 +010084
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +020085static DEFINE_PER_CPU(struct clock_event_device, hub_rt_clockevent);
86static DEFINE_PER_CPU(char [11], hub_rt_name);
87
Ralf Baechle06d428d2007-10-22 10:34:13 +010088static irqreturn_t hub_rt_counter_handler(int irq, void *dev_id)
Ralf Baechlee887b242007-10-18 13:34:12 +010089{
Ralf Baechlee887b242007-10-18 13:34:12 +010090 unsigned int cpu = smp_processor_id();
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +020091 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
Ralf Baechle725d7b362007-10-28 23:02:37 +000092 int slice = cputoslice(cpu);
Ralf Baechlee887b242007-10-18 13:34:12 +010093
Ralf Baechle725d7b362007-10-28 23:02:37 +000094 /*
95 * Ack
96 */
Ralf Baechlec8925292007-11-01 12:20:51 +000097 LOCAL_HUB_S(PI_RT_PEND_A + PI_COUNT_OFFSET * slice, 0);
Ralf Baechlee887b242007-10-18 13:34:12 +010098 cd->event_handler(cd);
99
100 return IRQ_HANDLED;
101}
102
Ralf Baechle06d428d2007-10-22 10:34:13 +0100103struct irqaction hub_rt_irqaction = {
104 .handler = hub_rt_counter_handler,
Wu Zhangjinf45e5182009-10-08 21:17:54 +0800105 .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER,
Ralf Baechle06d428d2007-10-22 10:34:13 +0100106 .name = "hub-rt",
Ralf Baechle3c009442006-06-16 17:10:49 +0200107};
108
Ralf Baechlee887b242007-10-18 13:34:12 +0100109/*
110 * This is a hack; we really need to figure these values out dynamically
111 *
112 * Since 800 ns works very well with various HUB frequencies, such as
113 * 360, 380, 390 and 400 MHZ, we use 800 ns rtc cycle time.
114 *
115 * Ralf: which clock rate is used to feed the counter?
116 */
117#define NSEC_PER_CYCLE 800
118#define CYCLES_PER_SEC (NSEC_PER_SEC / NSEC_PER_CYCLE)
Ralf Baechle3c009442006-06-16 17:10:49 +0200119
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200120void __cpuinit hub_rt_clock_event_init(void)
Ralf Baechlee887b242007-10-18 13:34:12 +0100121{
Ralf Baechlee887b242007-10-18 13:34:12 +0100122 unsigned int cpu = smp_processor_id();
Ralf Baechle06d428d2007-10-22 10:34:13 +0100123 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
124 unsigned char *name = per_cpu(hub_rt_name, cpu);
125 int irq = rt_timer_irq;
Ralf Baechlee887b242007-10-18 13:34:12 +0100126
Ralf Baechle06d428d2007-10-22 10:34:13 +0100127 sprintf(name, "hub-rt %d", cpu);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200128 cd->name = name;
129 cd->features = CLOCK_EVT_FEAT_ONESHOT;
Ralf Baechle06d428d2007-10-22 10:34:13 +0100130 clockevent_set_clock(cd, CYCLES_PER_SEC);
131 cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd);
132 cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200133 cd->rating = 200;
134 cd->irq = irq;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030135 cd->cpumask = cpumask_of(cpu);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200136 cd->set_next_event = rt_next_event;
137 cd->set_mode = rt_set_mode;
Ralf Baechlee887b242007-10-18 13:34:12 +0100138 clockevents_register_device(cd);
Ralf Baechle06d428d2007-10-22 10:34:13 +0100139}
140
141static void __init hub_rt_clock_event_global_init(void)
142{
Roel Kluind0e7ba02008-04-16 17:09:58 +0200143 int irq;
Ralf Baechle06d428d2007-10-22 10:34:13 +0100144
145 do {
146 smp_wmb();
147 irq = rt_timer_irq;
148 if (irq)
149 break;
150
151 irq = allocate_irqno();
152 if (irq < 0)
153 panic("Allocation of irq number for timer failed");
154 } while (xchg(&rt_timer_irq, irq));
Ralf Baechlee887b242007-10-18 13:34:12 +0100155
156 set_irq_chip_and_handler(irq, &rt_irq_type, handle_percpu_irq);
Ralf Baechle06d428d2007-10-22 10:34:13 +0100157 setup_irq(irq, &hub_rt_irqaction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Magnus Damm8e196082009-04-21 12:24:00 -0700160static cycle_t hub_rt_read(struct clocksource *cs)
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900161{
162 return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT);
163}
164
Ralf Baechle06d428d2007-10-22 10:34:13 +0100165struct clocksource hub_rt_clocksource = {
Ralf Baechlee887b242007-10-18 13:34:12 +0100166 .name = "HUB-RT",
Ralf Baechle87b23352007-10-11 23:46:10 +0100167 .rating = 200,
168 .read = hub_rt_read,
169 .mask = CLOCKSOURCE_MASK(52),
Ralf Baechle87b23352007-10-11 23:46:10 +0100170 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
171};
172
Ralf Baechle06d428d2007-10-22 10:34:13 +0100173static void __init hub_rt_clocksource_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Ralf Baechle06d428d2007-10-22 10:34:13 +0100175 struct clocksource *cs = &hub_rt_clocksource;
176
177 clocksource_set_clock(cs, CYCLES_PER_SEC);
178 clocksource_register(cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Ralf Baechlee887b242007-10-18 13:34:12 +0100181void __init plat_time_init(void)
182{
Ralf Baechle06d428d2007-10-22 10:34:13 +0100183 hub_rt_clocksource_init();
184 hub_rt_clock_event_global_init();
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200185 hub_rt_clock_event_init();
Ralf Baechlee887b242007-10-18 13:34:12 +0100186}
187
Ralf Baechle06d428d2007-10-22 10:34:13 +0100188void __cpuinit cpu_time_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 lboard_t *board;
191 klcpu_t *cpu;
192 int cpuid;
193
194 /* Don't use ARCS. ARCS is fragile. Klconfig is simple and sane. */
195 board = find_lboard(KL_CONFIG_INFO(get_nasid()), KLTYPE_IP27);
196 if (!board)
197 panic("Can't find board info for myself.");
198
199 cpuid = LOCAL_HUB_L(PI_CPU_NUM) ? IP27_CPU0_INDEX : IP27_CPU1_INDEX;
200 cpu = (klcpu_t *) KLCF_COMP(board, cpuid);
201 if (!cpu)
202 panic("No information about myself?");
203
204 printk("CPU %d clock is %dMHz.\n", smp_processor_id(), cpu->cpu_speed);
205
206 set_c0_status(SRB_TIMOCLK);
207}
208
Ralf Baechle234fcd12008-03-08 09:56:28 +0000209void __cpuinit hub_rtc_init(cnodeid_t cnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +0200211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /*
213 * We only need to initialize the current node.
214 * If this is not the current node then it is a cpuless
215 * node and timeouts will not happen there.
216 */
217 if (get_compact_nodeid() == cnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 LOCAL_HUB_S(PI_RT_EN_A, 1);
219 LOCAL_HUB_S(PI_RT_EN_B, 1);
220 LOCAL_HUB_S(PI_PROF_EN_A, 0);
221 LOCAL_HUB_S(PI_PROF_EN_B, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 LOCAL_HUB_S(PI_RT_COUNT, 0);
223 LOCAL_HUB_S(PI_RT_PEND_A, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 LOCAL_HUB_S(PI_RT_PEND_B, 0);
225 }
226}
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +0200227
228static int __init sgi_ip27_rtc_devinit(void)
229{
230 struct resource res;
231
232 memset(&res, 0, sizeof(res));
233 res.start = XPHYSADDR(KL_CONFIG_CH_CONS_INFO(master_nasid)->memory_base +
234 IOC3_BYTEBUS_DEV0);
235 res.end = res.start + 32767;
236 res.flags = IORESOURCE_MEM;
237
238 return IS_ERR(platform_device_register_simple("rtc-m48t35", -1,
239 &res, 1));
240}
241
242/*
243 * kludge make this a device_initcall after ioc3 resource conflicts
244 * are resolved
245 */
246late_initcall(sgi_ip27_rtc_devinit);