irq.c 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * arch/arm/mach-ns9xxx/irq.c
 *
 * Copyright (C) 2006,2007 by Digi International Inc.
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 */
#include <linux/interrupt.h>
12
#include <linux/kernel_stat.h>
13
#include <asm/io.h>
14 15
#include <asm/mach/irq.h>
#include <asm/mach-types.h>
16 17 18
#include <asm/arch/regs-sys-common.h>
#include <asm/arch/irqs.h>
#include <asm/arch/board.h>
19 20 21

#include "generic.h"

22 23 24 25
/* simple interrupt prio table: prio(x) < prio(y) <=> x < y */
#define irq2prio(i) (i)
#define prio2irq(p) (p)

26 27 28
static void ns9xxx_mask_irq(unsigned int irq)
{
	/* XXX: better use cpp symbols */
29 30 31 32
	int prio = irq2prio(irq);
	u32 ic = __raw_readl(SYS_IC(prio / 4));
	ic &= ~(1 << (7 + 8 * (3 - (prio & 3))));
	__raw_writel(ic, SYS_IC(prio / 4));
33 34 35 36
}

static void ns9xxx_ack_irq(unsigned int irq)
{
37
	__raw_writel(0, SYS_ISRADDR);
38 39 40 41 42 43 44 45 46 47 48
}

static void ns9xxx_maskack_irq(unsigned int irq)
{
	ns9xxx_mask_irq(irq);
	ns9xxx_ack_irq(irq);
}

static void ns9xxx_unmask_irq(unsigned int irq)
{
	/* XXX: better use cpp symbols */
49 50 51 52
	int prio = irq2prio(irq);
	u32 ic = __raw_readl(SYS_IC(prio / 4));
	ic |= 1 << (7 + 8 * (3 - (prio & 3)));
	__raw_writel(ic, SYS_IC(prio / 4));
53 54 55 56 57 58 59 60 61
}

static struct irq_chip ns9xxx_chip = {
	.ack		= ns9xxx_ack_irq,
	.mask		= ns9xxx_mask_irq,
	.mask_ack	= ns9xxx_maskack_irq,
	.unmask		= ns9xxx_unmask_irq,
};

62 63 64
#if 0
#define handle_irq handle_level_irq
#else
U
Uwe Kleine-König 已提交
65
static void handle_prio_irq(unsigned int irq, struct irq_desc *desc)
66 67 68 69 70 71 72
{
	unsigned int cpu = smp_processor_id();
	struct irqaction *action;
	irqreturn_t action_ret;

	spin_lock(&desc->lock);

73
	BUG_ON(desc->status & IRQ_INPROGRESS);
74 75 76 77 78 79

	desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
	kstat_cpu(cpu).irqs[irq]++;

	action = desc->action;
	if (unlikely(!action || (desc->status & IRQ_DISABLED)))
80
		goto out_mask;
81 82 83 84 85 86

	desc->status |= IRQ_INPROGRESS;
	spin_unlock(&desc->lock);

	action_ret = handle_IRQ_event(irq, action);

87 88 89 90 91
	/* XXX: There is no direct way to access noirqdebug, so check
	 * unconditionally for spurious irqs...
	 * Maybe this function should go to kernel/irq/chip.c? */
	note_interrupt(irq, desc, action_ret);

92 93 94
	spin_lock(&desc->lock);
	desc->status &= ~IRQ_INPROGRESS;

95 96 97 98 99 100 101
	if (desc->status & IRQ_DISABLED)
out_mask:
		desc->chip->mask(irq);

	/* ack unconditionally to unmask lower prio irqs */
	desc->chip->ack(irq);

102 103 104 105 106
	spin_unlock(&desc->lock);
}
#define handle_irq handle_prio_irq
#endif

107 108 109 110 111 112
void __init ns9xxx_init_irq(void)
{
	int i;

	/* disable all IRQs */
	for (i = 0; i < 8; ++i)
113 114 115 116 117
		__raw_writel(prio2irq(4 * i) << 24 |
				prio2irq(4 * i + 1) << 16 |
				prio2irq(4 * i + 2) << 8 |
				prio2irq(4 * i + 3),
				SYS_IC(i));
118 119

	for (i = 0; i < 32; ++i)
120
		__raw_writel(prio2irq(i), SYS_IVA(i));
121

122
	for (i = 0; i <= 31; ++i) {
123
		set_irq_chip(i, &ns9xxx_chip);
124
		set_irq_handler(i, handle_irq);
125 126 127
		set_irq_flags(i, IRQF_VALID);
	}
}