blob: f10a7cd64f7eb787f05039f22f382f7783478af4 [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>
13#include <linux/time.h>
14#include <linux/timex.h>
15#include <linux/mm.h>
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +020016#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/time.h>
19#include <asm/pgtable.h>
20#include <asm/sgialib.h>
21#include <asm/sn/ioc3.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/sn/klconfig.h>
23#include <asm/sn/arch.h>
24#include <asm/sn/addrs.h>
25#include <asm/sn/sn_private.h>
26#include <asm/sn/sn0/ip27.h>
27#include <asm/sn/sn0/hub.h>
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define TICK_SIZE (tick_nsec / 1000)
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/* Includes for ioc3_init(). */
32#include <asm/sn/types.h>
33#include <asm/sn/sn0/addrs.h>
34#include <asm/sn/sn0/hubni.h>
35#include <asm/sn/sn0/hubio.h>
36#include <asm/pci/bridge.h>
37
Ralf Baechle3c009442006-06-16 17:10:49 +020038static void enable_rt_irq(unsigned int irq)
39{
40}
41
42static void disable_rt_irq(unsigned int irq)
43{
44}
45
Ralf Baechle94dee172006-07-02 14:41:42 +010046static struct irq_chip rt_irq_type = {
Atsushi Nemoto70d21cd2007-01-15 00:07:25 +090047 .name = "SN HUB RT timer",
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +090048 .ack = disable_rt_irq,
49 .mask = disable_rt_irq,
50 .mask_ack = disable_rt_irq,
51 .unmask = enable_rt_irq,
Atsushi Nemoto14178362006-11-14 01:13:18 +090052 .eoi = enable_rt_irq,
Ralf Baechle3c009442006-06-16 17:10:49 +020053};
54
Ralf Baechle06d428d2007-10-22 10:34:13 +010055static int rt_next_event(unsigned long delta, struct clock_event_device *evt)
56{
57 unsigned int cpu = smp_processor_id();
Ralf Baechlec8925292007-11-01 12:20:51 +000058 int slice = cputoslice(cpu);
Ralf Baechle06d428d2007-10-22 10:34:13 +010059 unsigned long cnt;
60
61 cnt = LOCAL_HUB_L(PI_RT_COUNT);
62 cnt += delta;
Ralf Baechle725d7b362007-10-28 23:02:37 +000063 LOCAL_HUB_S(PI_RT_COMPARE_A + PI_COUNT_OFFSET * slice, cnt);
Ralf Baechle06d428d2007-10-22 10:34:13 +010064
65 return LOCAL_HUB_L(PI_RT_COUNT) >= cnt ? -ETIME : 0;
66}
67
68static void rt_set_mode(enum clock_event_mode mode,
69 struct clock_event_device *evt)
70{
71 switch (mode) {
72 case CLOCK_EVT_MODE_ONESHOT:
73 /* The only mode supported */
74 break;
75
76 case CLOCK_EVT_MODE_PERIODIC:
77 case CLOCK_EVT_MODE_UNUSED:
78 case CLOCK_EVT_MODE_SHUTDOWN:
79 case CLOCK_EVT_MODE_RESUME:
80 /* Nothing to do */
81 break;
82 }
83}
84
Roel Kluind0e7ba02008-04-16 17:09:58 +020085int rt_timer_irq;
Ralf Baechlee887b242007-10-18 13:34:12 +010086
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +020087static DEFINE_PER_CPU(struct clock_event_device, hub_rt_clockevent);
88static DEFINE_PER_CPU(char [11], hub_rt_name);
89
Ralf Baechle06d428d2007-10-22 10:34:13 +010090static irqreturn_t hub_rt_counter_handler(int irq, void *dev_id)
Ralf Baechlee887b242007-10-18 13:34:12 +010091{
Ralf Baechlee887b242007-10-18 13:34:12 +010092 unsigned int cpu = smp_processor_id();
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +020093 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
Ralf Baechle725d7b362007-10-28 23:02:37 +000094 int slice = cputoslice(cpu);
Ralf Baechlee887b242007-10-18 13:34:12 +010095
Ralf Baechle725d7b362007-10-28 23:02:37 +000096 /*
97 * Ack
98 */
Ralf Baechlec8925292007-11-01 12:20:51 +000099 LOCAL_HUB_S(PI_RT_PEND_A + PI_COUNT_OFFSET * slice, 0);
Ralf Baechlee887b242007-10-18 13:34:12 +0100100 cd->event_handler(cd);
101
102 return IRQ_HANDLED;
103}
104
Ralf Baechle06d428d2007-10-22 10:34:13 +0100105struct irqaction hub_rt_irqaction = {
106 .handler = hub_rt_counter_handler,
107 .flags = IRQF_DISABLED | IRQF_PERCPU,
108 .name = "hub-rt",
Ralf Baechle3c009442006-06-16 17:10:49 +0200109};
110
Ralf Baechlee887b242007-10-18 13:34:12 +0100111/*
112 * This is a hack; we really need to figure these values out dynamically
113 *
114 * Since 800 ns works very well with various HUB frequencies, such as
115 * 360, 380, 390 and 400 MHZ, we use 800 ns rtc cycle time.
116 *
117 * Ralf: which clock rate is used to feed the counter?
118 */
119#define NSEC_PER_CYCLE 800
120#define CYCLES_PER_SEC (NSEC_PER_SEC / NSEC_PER_CYCLE)
Ralf Baechle3c009442006-06-16 17:10:49 +0200121
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200122void __cpuinit hub_rt_clock_event_init(void)
Ralf Baechlee887b242007-10-18 13:34:12 +0100123{
Ralf Baechlee887b242007-10-18 13:34:12 +0100124 unsigned int cpu = smp_processor_id();
Ralf Baechle06d428d2007-10-22 10:34:13 +0100125 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
126 unsigned char *name = per_cpu(hub_rt_name, cpu);
127 int irq = rt_timer_irq;
Ralf Baechlee887b242007-10-18 13:34:12 +0100128
Ralf Baechle06d428d2007-10-22 10:34:13 +0100129 sprintf(name, "hub-rt %d", cpu);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200130 cd->name = name;
131 cd->features = CLOCK_EVT_FEAT_ONESHOT;
Ralf Baechle06d428d2007-10-22 10:34:13 +0100132 clockevent_set_clock(cd, CYCLES_PER_SEC);
133 cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd);
134 cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200135 cd->rating = 200;
136 cd->irq = irq;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030137 cd->cpumask = cpumask_of(cpu);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200138 cd->set_next_event = rt_next_event;
139 cd->set_mode = rt_set_mode;
Ralf Baechlee887b242007-10-18 13:34:12 +0100140 clockevents_register_device(cd);
Ralf Baechle06d428d2007-10-22 10:34:13 +0100141}
142
143static void __init hub_rt_clock_event_global_init(void)
144{
Roel Kluind0e7ba02008-04-16 17:09:58 +0200145 int irq;
Ralf Baechle06d428d2007-10-22 10:34:13 +0100146
147 do {
148 smp_wmb();
149 irq = rt_timer_irq;
150 if (irq)
151 break;
152
153 irq = allocate_irqno();
154 if (irq < 0)
155 panic("Allocation of irq number for timer failed");
156 } while (xchg(&rt_timer_irq, irq));
Ralf Baechlee887b242007-10-18 13:34:12 +0100157
158 set_irq_chip_and_handler(irq, &rt_irq_type, handle_percpu_irq);
Ralf Baechle06d428d2007-10-22 10:34:13 +0100159 setup_irq(irq, &hub_rt_irqaction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Magnus Damm8e196082009-04-21 12:24:00 -0700162static cycle_t hub_rt_read(struct clocksource *cs)
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900163{
164 return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT);
165}
166
Ralf Baechle06d428d2007-10-22 10:34:13 +0100167struct clocksource hub_rt_clocksource = {
Ralf Baechlee887b242007-10-18 13:34:12 +0100168 .name = "HUB-RT",
Ralf Baechle87b23352007-10-11 23:46:10 +0100169 .rating = 200,
170 .read = hub_rt_read,
171 .mask = CLOCKSOURCE_MASK(52),
Ralf Baechle87b23352007-10-11 23:46:10 +0100172 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
173};
174
Ralf Baechle06d428d2007-10-22 10:34:13 +0100175static void __init hub_rt_clocksource_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Ralf Baechle06d428d2007-10-22 10:34:13 +0100177 struct clocksource *cs = &hub_rt_clocksource;
178
179 clocksource_set_clock(cs, CYCLES_PER_SEC);
180 clocksource_register(cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Ralf Baechlee887b242007-10-18 13:34:12 +0100183void __init plat_time_init(void)
184{
Ralf Baechle06d428d2007-10-22 10:34:13 +0100185 hub_rt_clocksource_init();
186 hub_rt_clock_event_global_init();
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200187 hub_rt_clock_event_init();
Ralf Baechlee887b242007-10-18 13:34:12 +0100188}
189
Ralf Baechle06d428d2007-10-22 10:34:13 +0100190void __cpuinit cpu_time_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 lboard_t *board;
193 klcpu_t *cpu;
194 int cpuid;
195
196 /* Don't use ARCS. ARCS is fragile. Klconfig is simple and sane. */
197 board = find_lboard(KL_CONFIG_INFO(get_nasid()), KLTYPE_IP27);
198 if (!board)
199 panic("Can't find board info for myself.");
200
201 cpuid = LOCAL_HUB_L(PI_CPU_NUM) ? IP27_CPU0_INDEX : IP27_CPU1_INDEX;
202 cpu = (klcpu_t *) KLCF_COMP(board, cpuid);
203 if (!cpu)
204 panic("No information about myself?");
205
206 printk("CPU %d clock is %dMHz.\n", smp_processor_id(), cpu->cpu_speed);
207
208 set_c0_status(SRB_TIMOCLK);
209}
210
Ralf Baechle234fcd12008-03-08 09:56:28 +0000211void __cpuinit hub_rtc_init(cnodeid_t cnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +0200213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /*
215 * We only need to initialize the current node.
216 * If this is not the current node then it is a cpuless
217 * node and timeouts will not happen there.
218 */
219 if (get_compact_nodeid() == cnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 LOCAL_HUB_S(PI_RT_EN_A, 1);
221 LOCAL_HUB_S(PI_RT_EN_B, 1);
222 LOCAL_HUB_S(PI_PROF_EN_A, 0);
223 LOCAL_HUB_S(PI_PROF_EN_B, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 LOCAL_HUB_S(PI_RT_COUNT, 0);
225 LOCAL_HUB_S(PI_RT_PEND_A, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 LOCAL_HUB_S(PI_RT_PEND_B, 0);
227 }
228}
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +0200229
230static int __init sgi_ip27_rtc_devinit(void)
231{
232 struct resource res;
233
234 memset(&res, 0, sizeof(res));
235 res.start = XPHYSADDR(KL_CONFIG_CH_CONS_INFO(master_nasid)->memory_base +
236 IOC3_BYTEBUS_DEV0);
237 res.end = res.start + 32767;
238 res.flags = IORESOURCE_MEM;
239
240 return IS_ERR(platform_device_register_simple("rtc-m48t35", -1,
241 &res, 1));
242}
243
244/*
245 * kludge make this a device_initcall after ioc3 resource conflicts
246 * are resolved
247 */
248late_initcall(sgi_ip27_rtc_devinit);