ip27-timer.c 5.9 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Copytight (C) 1999, 2000, 05, 06 Ralf Baechle (ralf@linux-mips.org)
L
Linus Torvalds 已提交
3 4 5
 * Copytight (C) 1999, 2000 Silicon Graphics, Inc.
 */
#include <linux/bcd.h>
6
#include <linux/clockchips.h>
L
Linus Torvalds 已提交
7 8 9 10 11 12
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/kernel_stat.h>
#include <linux/param.h>
13
#include <linux/smp.h>
L
Linus Torvalds 已提交
14 15 16
#include <linux/time.h>
#include <linux/timex.h>
#include <linux/mm.h>
17
#include <linux/platform_device.h>
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

#include <asm/time.h>
#include <asm/pgtable.h>
#include <asm/sgialib.h>
#include <asm/sn/ioc3.h>
#include <asm/sn/klconfig.h>
#include <asm/sn/arch.h>
#include <asm/sn/addrs.h>
#include <asm/sn/sn_private.h>
#include <asm/sn/sn0/ip27.h>
#include <asm/sn/sn0/hub.h>

#define TICK_SIZE (tick_nsec / 1000)

/* Includes for ioc3_init().  */
#include <asm/sn/types.h>
#include <asm/sn/sn0/addrs.h>
#include <asm/sn/sn0/hubni.h>
#include <asm/sn/sn0/hubio.h>
#include <asm/pci/bridge.h>

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
static void enable_rt_irq(unsigned int irq)
{
}

static void disable_rt_irq(unsigned int irq)
{
}

static struct irq_chip rt_irq_type = {
	.name		= "SN HUB RT timer",
	.ack		= disable_rt_irq,
	.mask		= disable_rt_irq,
	.mask_ack	= disable_rt_irq,
	.unmask		= enable_rt_irq,
	.eoi		= enable_rt_irq,
};

static int rt_next_event(unsigned long delta, struct clock_event_device *evt)
57 58
{
	unsigned int cpu = smp_processor_id();
R
Ralf Baechle 已提交
59
	int slice = cputoslice(cpu);
60 61 62 63
	unsigned long cnt;

	cnt = LOCAL_HUB_L(PI_RT_COUNT);
	cnt += delta;
64
	LOCAL_HUB_S(PI_RT_COMPARE_A + PI_COUNT_OFFSET * slice, cnt);
65 66 67 68 69 70 71 72

	return LOCAL_HUB_L(PI_RT_COUNT) >= cnt ? -ETIME : 0;
}

static void rt_set_mode(enum clock_event_mode mode,
		struct clock_event_device *evt)
{
	switch (mode) {
73
	case CLOCK_EVT_MODE_ONESHOT:
74 75 76
		/* The only mode supported */
		break;

77
	case CLOCK_EVT_MODE_PERIODIC:
78 79 80 81 82 83 84 85
	case CLOCK_EVT_MODE_UNUSED:
	case CLOCK_EVT_MODE_SHUTDOWN:
	case CLOCK_EVT_MODE_RESUME:
		/* Nothing to do  */
		break;
	}
}

86
int rt_timer_irq;
87

88 89 90
static DEFINE_PER_CPU(struct clock_event_device, hub_rt_clockevent);
static DEFINE_PER_CPU(char [11], hub_rt_name);

91
static irqreturn_t hub_rt_counter_handler(int irq, void *dev_id)
92 93
{
	unsigned int cpu = smp_processor_id();
94
	struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
95
	int slice = cputoslice(cpu);
96

97 98 99
	/*
	 * Ack
	 */
R
Ralf Baechle 已提交
100
	LOCAL_HUB_S(PI_RT_PEND_A + PI_COUNT_OFFSET * slice, 0);
101 102 103 104 105
	cd->event_handler(cd);

	return IRQ_HANDLED;
}

106 107
struct irqaction hub_rt_irqaction = {
	.handler	= hub_rt_counter_handler,
108
	.flags		= IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER,
109
	.name		= "hub-rt",
110 111
};

112 113 114 115 116 117 118 119 120 121 122
/*
 * This is a hack; we really need to figure these values out dynamically
 *
 * Since 800 ns works very well with various HUB frequencies, such as
 * 360, 380, 390 and 400 MHZ, we use 800 ns rtc cycle time.
 *
 * Ralf: which clock rate is used to feed the counter?
 */
#define NSEC_PER_CYCLE		800
#define CYCLES_PER_SEC		(NSEC_PER_SEC / NSEC_PER_CYCLE)

123
void __cpuinit hub_rt_clock_event_init(void)
L
Linus Torvalds 已提交
124
{
125
	unsigned int cpu = smp_processor_id();
126 127 128 129 130
	struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
	unsigned char *name = per_cpu(hub_rt_name, cpu);
	int irq = rt_timer_irq;

	sprintf(name, "hub-rt %d", cpu);
131 132
	cd->name		= name;
	cd->features		= CLOCK_EVT_FEAT_ONESHOT;
133 134 135
	clockevent_set_clock(cd, CYCLES_PER_SEC);
	cd->max_delta_ns        = clockevent_delta2ns(0xfffffffffffff, cd);
	cd->min_delta_ns        = clockevent_delta2ns(0x300, cd);
136 137
	cd->rating		= 200;
	cd->irq			= irq;
138
	cd->cpumask		= cpumask_of(cpu);
139 140
	cd->set_next_event	= rt_next_event;
	cd->set_mode		= rt_set_mode;
141
	clockevents_register_device(cd);
142 143 144 145
}

static void __init hub_rt_clock_event_global_init(void)
{
146
	int irq;
147 148 149 150 151 152 153 154 155 156 157

	do {
		smp_wmb();
		irq = rt_timer_irq;
		if (irq)
			break;

		irq = allocate_irqno();
		if (irq < 0)
			panic("Allocation of irq number for timer failed");
	} while (xchg(&rt_timer_irq, irq));
158 159

	set_irq_chip_and_handler(irq, &rt_irq_type, handle_percpu_irq);
160
	setup_irq(irq, &hub_rt_irqaction);
L
Linus Torvalds 已提交
161 162
}

163
static cycle_t hub_rt_read(struct clocksource *cs)
164 165 166 167
{
	return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT);
}

168
struct clocksource hub_rt_clocksource = {
169
	.name	= "HUB-RT",
170 171 172 173 174 175
	.rating	= 200,
	.read	= hub_rt_read,
	.mask	= CLOCKSOURCE_MASK(52),
	.flags	= CLOCK_SOURCE_IS_CONTINUOUS,
};

176
static void __init hub_rt_clocksource_init(void)
L
Linus Torvalds 已提交
177
{
178 179 180 181
	struct clocksource *cs = &hub_rt_clocksource;

	clocksource_set_clock(cs, CYCLES_PER_SEC);
	clocksource_register(cs);
L
Linus Torvalds 已提交
182 183
}

184 185
void __init plat_time_init(void)
{
186 187
	hub_rt_clocksource_init();
	hub_rt_clock_event_global_init();
188
	hub_rt_clock_event_init();
189 190
}

191
void __cpuinit cpu_time_init(void)
L
Linus Torvalds 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
{
	lboard_t *board;
	klcpu_t *cpu;
	int cpuid;

	/* Don't use ARCS.  ARCS is fragile.  Klconfig is simple and sane.  */
	board = find_lboard(KL_CONFIG_INFO(get_nasid()), KLTYPE_IP27);
	if (!board)
		panic("Can't find board info for myself.");

	cpuid = LOCAL_HUB_L(PI_CPU_NUM) ? IP27_CPU0_INDEX : IP27_CPU1_INDEX;
	cpu = (klcpu_t *) KLCF_COMP(board, cpuid);
	if (!cpu)
		panic("No information about myself?");

	printk("CPU %d clock is %dMHz.\n", smp_processor_id(), cpu->cpu_speed);

	set_c0_status(SRB_TIMOCLK);
}

212
void __cpuinit hub_rtc_init(cnodeid_t cnode)
L
Linus Torvalds 已提交
213
{
214

L
Linus Torvalds 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
	/*
	 * We only need to initialize the current node.
	 * If this is not the current node then it is a cpuless
	 * node and timeouts will not happen there.
	 */
	if (get_compact_nodeid() == cnode) {
		LOCAL_HUB_S(PI_RT_EN_A, 1);
		LOCAL_HUB_S(PI_RT_EN_B, 1);
		LOCAL_HUB_S(PI_PROF_EN_A, 0);
		LOCAL_HUB_S(PI_PROF_EN_B, 0);
		LOCAL_HUB_S(PI_RT_COUNT, 0);
		LOCAL_HUB_S(PI_RT_PEND_A, 0);
		LOCAL_HUB_S(PI_RT_PEND_B, 0);
	}
}
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249

static int __init sgi_ip27_rtc_devinit(void)
{
	struct resource res;

	memset(&res, 0, sizeof(res));
	res.start = XPHYSADDR(KL_CONFIG_CH_CONS_INFO(master_nasid)->memory_base +
			      IOC3_BYTEBUS_DEV0);
	res.end = res.start + 32767;
	res.flags = IORESOURCE_MEM;

	return IS_ERR(platform_device_register_simple("rtc-m48t35", -1,
						      &res, 1));
}

/*
 * kludge make this a device_initcall after ioc3 resource conflicts
 * are resolved
 */
late_initcall(sgi_ip27_rtc_devinit);