blob: 42d6cb9f956e35500d5a1b3268685447ebd5f7f2 [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>
Deng-Cheng Zhuc41cef32015-03-07 10:30:29 -080010#include <linux/sched_clock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/interrupt.h>
12#include <linux/kernel_stat.h>
13#include <linux/param.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010014#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/time.h>
16#include <linux/timex.h>
17#include <linux/mm.h>
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +020018#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/time.h>
21#include <asm/pgtable.h>
22#include <asm/sgialib.h>
23#include <asm/sn/ioc3.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/sn/klconfig.h>
25#include <asm/sn/arch.h>
26#include <asm/sn/addrs.h>
27#include <asm/sn/sn_private.h>
28#include <asm/sn/sn0/ip27.h>
29#include <asm/sn/sn0/hub.h>
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define TICK_SIZE (tick_nsec / 1000)
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* Includes for ioc3_init(). */
34#include <asm/sn/types.h>
35#include <asm/sn/sn0/addrs.h>
36#include <asm/sn/sn0/hubni.h>
37#include <asm/sn/sn0/hubio.h>
38#include <asm/pci/bridge.h>
39
Thomas Gleixner301218d2011-03-23 21:09:12 +000040static void enable_rt_irq(struct irq_data *d)
Ralf Baechle3c009442006-06-16 17:10:49 +020041{
42}
43
Thomas Gleixner301218d2011-03-23 21:09:12 +000044static void disable_rt_irq(struct irq_data *d)
Ralf Baechle3c009442006-06-16 17:10:49 +020045{
46}
47
Ralf Baechle94dee172006-07-02 14:41:42 +010048static struct irq_chip rt_irq_type = {
Atsushi Nemoto70d21cd2007-01-15 00:07:25 +090049 .name = "SN HUB RT timer",
Thomas Gleixner301218d2011-03-23 21:09:12 +000050 .irq_mask = disable_rt_irq,
51 .irq_unmask = enable_rt_irq,
Ralf Baechle3c009442006-06-16 17:10:49 +020052};
53
Ralf Baechle06d428d2007-10-22 10:34:13 +010054static int rt_next_event(unsigned long delta, struct clock_event_device *evt)
55{
56 unsigned int cpu = smp_processor_id();
Ralf Baechlec8925292007-11-01 12:20:51 +000057 int slice = cputoslice(cpu);
Ralf Baechle06d428d2007-10-22 10:34:13 +010058 unsigned long cnt;
59
60 cnt = LOCAL_HUB_L(PI_RT_COUNT);
61 cnt += delta;
Ralf Baechle725d7b362007-10-28 23:02:37 +000062 LOCAL_HUB_S(PI_RT_COMPARE_A + PI_COUNT_OFFSET * slice, cnt);
Ralf Baechle06d428d2007-10-22 10:34:13 +010063
64 return LOCAL_HUB_L(PI_RT_COUNT) >= cnt ? -ETIME : 0;
65}
66
Ralf Baechle9fcb7052013-04-10 22:18:55 +020067unsigned int rt_timer_irq;
Ralf Baechlee887b242007-10-18 13:34:12 +010068
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +020069static DEFINE_PER_CPU(struct clock_event_device, hub_rt_clockevent);
70static DEFINE_PER_CPU(char [11], hub_rt_name);
71
Ralf Baechle06d428d2007-10-22 10:34:13 +010072static irqreturn_t hub_rt_counter_handler(int irq, void *dev_id)
Ralf Baechlee887b242007-10-18 13:34:12 +010073{
Ralf Baechlee887b242007-10-18 13:34:12 +010074 unsigned int cpu = smp_processor_id();
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +020075 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
Ralf Baechle725d7b362007-10-28 23:02:37 +000076 int slice = cputoslice(cpu);
Ralf Baechlee887b242007-10-18 13:34:12 +010077
Ralf Baechle725d7b362007-10-28 23:02:37 +000078 /*
79 * Ack
80 */
Ralf Baechlec8925292007-11-01 12:20:51 +000081 LOCAL_HUB_S(PI_RT_PEND_A + PI_COUNT_OFFSET * slice, 0);
Ralf Baechlee887b242007-10-18 13:34:12 +010082 cd->event_handler(cd);
83
84 return IRQ_HANDLED;
85}
86
Ralf Baechle06d428d2007-10-22 10:34:13 +010087struct irqaction hub_rt_irqaction = {
88 .handler = hub_rt_counter_handler,
Yong Zhang8b5690f2011-11-22 14:38:03 +000089 .flags = IRQF_PERCPU | IRQF_TIMER,
Ralf Baechle06d428d2007-10-22 10:34:13 +010090 .name = "hub-rt",
Ralf Baechle3c009442006-06-16 17:10:49 +020091};
92
Ralf Baechlee887b242007-10-18 13:34:12 +010093/*
94 * This is a hack; we really need to figure these values out dynamically
95 *
96 * Since 800 ns works very well with various HUB frequencies, such as
97 * 360, 380, 390 and 400 MHZ, we use 800 ns rtc cycle time.
98 *
99 * Ralf: which clock rate is used to feed the counter?
100 */
101#define NSEC_PER_CYCLE 800
102#define CYCLES_PER_SEC (NSEC_PER_SEC / NSEC_PER_CYCLE)
Ralf Baechle3c009442006-06-16 17:10:49 +0200103
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000104void hub_rt_clock_event_init(void)
Ralf Baechlee887b242007-10-18 13:34:12 +0100105{
Ralf Baechlee887b242007-10-18 13:34:12 +0100106 unsigned int cpu = smp_processor_id();
Ralf Baechle06d428d2007-10-22 10:34:13 +0100107 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
108 unsigned char *name = per_cpu(hub_rt_name, cpu);
109 int irq = rt_timer_irq;
Ralf Baechlee887b242007-10-18 13:34:12 +0100110
Ralf Baechle06d428d2007-10-22 10:34:13 +0100111 sprintf(name, "hub-rt %d", cpu);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200112 cd->name = name;
113 cd->features = CLOCK_EVT_FEAT_ONESHOT;
Ralf Baechle06d428d2007-10-22 10:34:13 +0100114 clockevent_set_clock(cd, CYCLES_PER_SEC);
Ralf Baechle70342282013-01-22 12:59:30 +0100115 cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd);
116 cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200117 cd->rating = 200;
118 cd->irq = irq;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030119 cd->cpumask = cpumask_of(cpu);
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200120 cd->set_next_event = rt_next_event;
Ralf Baechlee887b242007-10-18 13:34:12 +0100121 clockevents_register_device(cd);
Ralf Baechle06d428d2007-10-22 10:34:13 +0100122}
123
124static void __init hub_rt_clock_event_global_init(void)
125{
Roel Kluind0e7ba02008-04-16 17:09:58 +0200126 int irq;
Ralf Baechle06d428d2007-10-22 10:34:13 +0100127
128 do {
129 smp_wmb();
130 irq = rt_timer_irq;
131 if (irq)
132 break;
133
134 irq = allocate_irqno();
135 if (irq < 0)
136 panic("Allocation of irq number for timer failed");
137 } while (xchg(&rt_timer_irq, irq));
Ralf Baechlee887b242007-10-18 13:34:12 +0100138
Thomas Gleixnere4ec7982011-03-27 15:19:28 +0200139 irq_set_chip_and_handler(irq, &rt_irq_type, handle_percpu_irq);
Ralf Baechle06d428d2007-10-22 10:34:13 +0100140 setup_irq(irq, &hub_rt_irqaction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Magnus Damm8e196082009-04-21 12:24:00 -0700143static cycle_t hub_rt_read(struct clocksource *cs)
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900144{
145 return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT);
146}
147
Ralf Baechle06d428d2007-10-22 10:34:13 +0100148struct clocksource hub_rt_clocksource = {
Ralf Baechlee887b242007-10-18 13:34:12 +0100149 .name = "HUB-RT",
Ralf Baechle70342282013-01-22 12:59:30 +0100150 .rating = 200,
Ralf Baechle87b23352007-10-11 23:46:10 +0100151 .read = hub_rt_read,
152 .mask = CLOCKSOURCE_MASK(52),
Ralf Baechle87b23352007-10-11 23:46:10 +0100153 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
154};
155
Deng-Cheng Zhuc41cef32015-03-07 10:30:29 -0800156static u64 notrace hub_rt_read_sched_clock(void)
157{
158 return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT);
159}
160
Ralf Baechle06d428d2007-10-22 10:34:13 +0100161static void __init hub_rt_clocksource_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Ralf Baechle06d428d2007-10-22 10:34:13 +0100163 struct clocksource *cs = &hub_rt_clocksource;
164
John Stultz75c4fd82010-04-26 20:23:11 -0700165 clocksource_register_hz(cs, CYCLES_PER_SEC);
Deng-Cheng Zhuc41cef32015-03-07 10:30:29 -0800166
167 sched_clock_register(hub_rt_read_sched_clock, 52, CYCLES_PER_SEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Ralf Baechlee887b242007-10-18 13:34:12 +0100170void __init plat_time_init(void)
171{
Ralf Baechle06d428d2007-10-22 10:34:13 +0100172 hub_rt_clocksource_init();
173 hub_rt_clock_event_global_init();
Thomas Bogendoerferb32bb802008-04-08 23:43:57 +0200174 hub_rt_clock_event_init();
Ralf Baechlee887b242007-10-18 13:34:12 +0100175}
176
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000177void cpu_time_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 lboard_t *board;
180 klcpu_t *cpu;
181 int cpuid;
182
183 /* Don't use ARCS. ARCS is fragile. Klconfig is simple and sane. */
184 board = find_lboard(KL_CONFIG_INFO(get_nasid()), KLTYPE_IP27);
185 if (!board)
186 panic("Can't find board info for myself.");
187
188 cpuid = LOCAL_HUB_L(PI_CPU_NUM) ? IP27_CPU0_INDEX : IP27_CPU1_INDEX;
189 cpu = (klcpu_t *) KLCF_COMP(board, cpuid);
190 if (!cpu)
191 panic("No information about myself?");
192
193 printk("CPU %d clock is %dMHz.\n", smp_processor_id(), cpu->cpu_speed);
194
195 set_c0_status(SRB_TIMOCLK);
196}
197
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000198void hub_rtc_init(cnodeid_t cnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +0200200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /*
202 * We only need to initialize the current node.
203 * If this is not the current node then it is a cpuless
204 * node and timeouts will not happen there.
205 */
206 if (get_compact_nodeid() == cnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 LOCAL_HUB_S(PI_RT_EN_A, 1);
208 LOCAL_HUB_S(PI_RT_EN_B, 1);
209 LOCAL_HUB_S(PI_PROF_EN_A, 0);
210 LOCAL_HUB_S(PI_PROF_EN_B, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 LOCAL_HUB_S(PI_RT_COUNT, 0);
212 LOCAL_HUB_S(PI_RT_PEND_A, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 LOCAL_HUB_S(PI_RT_PEND_B, 0);
214 }
215}
Thomas Bogendoerfer3ec066c2008-10-14 17:17:28 +0200216
217static int __init sgi_ip27_rtc_devinit(void)
218{
219 struct resource res;
220
221 memset(&res, 0, sizeof(res));
222 res.start = XPHYSADDR(KL_CONFIG_CH_CONS_INFO(master_nasid)->memory_base +
223 IOC3_BYTEBUS_DEV0);
224 res.end = res.start + 32767;
225 res.flags = IORESOURCE_MEM;
226
227 return IS_ERR(platform_device_register_simple("rtc-m48t35", -1,
228 &res, 1));
229}
230
231/*
232 * kludge make this a device_initcall after ioc3 resource conflicts
233 * are resolved
234 */
235late_initcall(sgi_ip27_rtc_devinit);