1 // SPDX-License-Identifier: GPL-2.0
3 * Copytight (C) 1999, 2000, 05, 06 Ralf Baechle (ralf@linux-mips.org)
4 * Copytight (C) 1999, 2000 Silicon Graphics, Inc.
7 #include <linux/clockchips.h>
8 #include <linux/init.h>
9 #include <linux/kernel.h>
10 #include <linux/sched.h>
11 #include <linux/sched_clock.h>
12 #include <linux/interrupt.h>
13 #include <linux/kernel_stat.h>
14 #include <linux/param.h>
15 #include <linux/smp.h>
16 #include <linux/time.h>
17 #include <linux/timex.h>
19 #include <linux/platform_device.h>
22 #include <asm/sgialib.h>
23 #include <asm/sn/klconfig.h>
24 #include <asm/sn/arch.h>
25 #include <asm/sn/addrs.h>
26 #include <asm/sn/agent.h>
28 #include "ip27-common.h"
30 static int rt_next_event(unsigned long delta
, struct clock_event_device
*evt
)
32 unsigned int cpu
= smp_processor_id();
33 int slice
= cputoslice(cpu
);
36 cnt
= LOCAL_HUB_L(PI_RT_COUNT
);
38 LOCAL_HUB_S(PI_RT_COMPARE_A
+ PI_COUNT_OFFSET
* slice
, cnt
);
40 return LOCAL_HUB_L(PI_RT_COUNT
) >= cnt
? -ETIME
: 0;
43 static DEFINE_PER_CPU(struct clock_event_device
, hub_rt_clockevent
);
44 static DEFINE_PER_CPU(char [11], hub_rt_name
);
46 static irqreturn_t
hub_rt_counter_handler(int irq
, void *dev_id
)
48 unsigned int cpu
= smp_processor_id();
49 struct clock_event_device
*cd
= &per_cpu(hub_rt_clockevent
, cpu
);
50 int slice
= cputoslice(cpu
);
55 LOCAL_HUB_S(PI_RT_PEND_A
+ PI_COUNT_OFFSET
* slice
, 0);
56 cd
->event_handler(cd
);
61 struct irqaction hub_rt_irqaction
= {
62 .handler
= hub_rt_counter_handler
,
63 .percpu_dev_id
= &hub_rt_clockevent
,
64 .flags
= IRQF_PERCPU
| IRQF_TIMER
,
69 * This is a hack; we really need to figure these values out dynamically
71 * Since 800 ns works very well with various HUB frequencies, such as
72 * 360, 380, 390 and 400 MHZ, we use 800 ns rtc cycle time.
74 * Ralf: which clock rate is used to feed the counter?
76 #define NSEC_PER_CYCLE 800
77 #define CYCLES_PER_SEC (NSEC_PER_SEC / NSEC_PER_CYCLE)
79 void hub_rt_clock_event_init(void)
81 unsigned int cpu
= smp_processor_id();
82 struct clock_event_device
*cd
= &per_cpu(hub_rt_clockevent
, cpu
);
83 unsigned char *name
= per_cpu(hub_rt_name
, cpu
);
85 sprintf(name
, "hub-rt %d", cpu
);
87 cd
->features
= CLOCK_EVT_FEAT_ONESHOT
;
88 clockevent_set_clock(cd
, CYCLES_PER_SEC
);
89 cd
->max_delta_ns
= clockevent_delta2ns(0xfffffffffffff, cd
);
90 cd
->max_delta_ticks
= 0xfffffffffffff;
91 cd
->min_delta_ns
= clockevent_delta2ns(0x300, cd
);
92 cd
->min_delta_ticks
= 0x300;
94 cd
->irq
= IP27_RT_TIMER_IRQ
;
95 cd
->cpumask
= cpumask_of(cpu
);
96 cd
->set_next_event
= rt_next_event
;
97 clockevents_register_device(cd
);
99 enable_percpu_irq(IP27_RT_TIMER_IRQ
, IRQ_TYPE_NONE
);
102 static void __init
hub_rt_clock_event_global_init(void)
104 irq_set_handler(IP27_RT_TIMER_IRQ
, handle_percpu_devid_irq
);
105 irq_set_percpu_devid(IP27_RT_TIMER_IRQ
);
106 setup_percpu_irq(IP27_RT_TIMER_IRQ
, &hub_rt_irqaction
);
109 static u64
hub_rt_read(struct clocksource
*cs
)
111 return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT
);
114 struct clocksource hub_rt_clocksource
= {
118 .mask
= CLOCKSOURCE_MASK(52),
119 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
122 static u64 notrace
hub_rt_read_sched_clock(void)
124 return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT
);
127 static void __init
hub_rt_clocksource_init(void)
129 struct clocksource
*cs
= &hub_rt_clocksource
;
131 clocksource_register_hz(cs
, CYCLES_PER_SEC
);
133 sched_clock_register(hub_rt_read_sched_clock
, 52, CYCLES_PER_SEC
);
136 void __init
plat_time_init(void)
138 hub_rt_clocksource_init();
139 hub_rt_clock_event_global_init();
140 hub_rt_clock_event_init();
143 void hub_rtc_init(nasid_t nasid
)
147 * We only need to initialize the current node.
148 * If this is not the current node then it is a cpuless
149 * node and timeouts will not happen there.
151 if (get_nasid() == nasid
) {
152 LOCAL_HUB_S(PI_RT_EN_A
, 1);
153 LOCAL_HUB_S(PI_RT_EN_B
, 1);
154 LOCAL_HUB_S(PI_PROF_EN_A
, 0);
155 LOCAL_HUB_S(PI_PROF_EN_B
, 0);
156 LOCAL_HUB_S(PI_RT_COUNT
, 0);
157 LOCAL_HUB_S(PI_RT_PEND_A
, 0);
158 LOCAL_HUB_S(PI_RT_PEND_B
, 0);