blob: f7997312ef988e4016aa72411494eae994c34af6 [file] [log] [blame]
Paul Mundtbf3a00f2006-01-16 22:14:14 -08001/*
Paul Mundt0f138042006-10-06 17:55:25 +09002 * Interrupt handling for IPR-based IRQ.
Paul Mundtbf3a00f2006-01-16 22:14:14 -08003 *
4 * Copyright (C) 1999 Niibe Yutaka & Takeshi Yaegashi
5 * Copyright (C) 2000 Kazumoto Kojima
Paul Mundt0f138042006-10-06 17:55:25 +09006 * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
7 * Copyright (C) 2006 Paul Mundt
Paul Mundtbf3a00f2006-01-16 22:14:14 -08008 *
9 * Supported system:
10 * On-chip supporting modules (TMU, RTC, etc.).
11 * On-chip supporting modules for SH7709/SH7709A/SH7729/SH7300.
12 * Hitachi SolutionEngine external I/O:
13 * MS7709SE01, MS7709ASE01, and MS7750SE01
14 *
Paul Mundt0f138042006-10-06 17:55:25 +090015 * This file is subject to the terms and conditions of the GNU General Public
16 * License. See the file "COPYING" in the main directory of this archive
17 * for more details.
Paul Mundtbf3a00f2006-01-16 22:14:14 -080018 */
Paul Mundtbf3a00f2006-01-16 22:14:14 -080019#include <linux/init.h>
20#include <linux/irq.h>
21#include <linux/module.h>
Paul Mundtbf3a00f2006-01-16 22:14:14 -080022#include <asm/system.h>
23#include <asm/io.h>
24#include <asm/machvec.h>
25
26struct ipr_data {
27 unsigned int addr; /* Address of Interrupt Priority Register */
28 int shift; /* Shifts of the 16-bit data */
29 int priority; /* The priority */
30};
Paul Mundtbf3a00f2006-01-16 22:14:14 -080031
32static void disable_ipr_irq(unsigned int irq)
33{
Paul Mundt0f138042006-10-06 17:55:25 +090034 struct ipr_data *p = get_irq_chip_data(irq);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080035 /* Set the priority in IPR to 0 */
Paul Mundt0f138042006-10-06 17:55:25 +090036 ctrl_outw(ctrl_inw(p->addr) & (0xffff ^ (0xf << p->shift)), p->addr);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080037}
38
39static void enable_ipr_irq(unsigned int irq)
40{
Paul Mundt0f138042006-10-06 17:55:25 +090041 struct ipr_data *p = get_irq_chip_data(irq);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080042 /* Set priority in IPR back to original value */
Paul Mundt0f138042006-10-06 17:55:25 +090043 ctrl_outw(ctrl_inw(p->addr) | (p->priority << p->shift), p->addr);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080044}
45
Paul Mundt0f138042006-10-06 17:55:25 +090046static struct irq_chip ipr_irq_chip = {
Paul Mundt709bc442006-10-19 17:32:56 +090047 .name = "IPR",
Paul Mundt0f138042006-10-06 17:55:25 +090048 .mask = disable_ipr_irq,
49 .unmask = enable_ipr_irq,
50 .mask_ack = disable_ipr_irq,
51};
Paul Mundtbf3a00f2006-01-16 22:14:14 -080052
Paul Mundt8d27e082006-02-01 03:06:04 -080053void make_ipr_irq(unsigned int irq, unsigned int addr, int pos, int priority)
Paul Mundtbf3a00f2006-01-16 22:14:14 -080054{
Paul Mundt0f138042006-10-06 17:55:25 +090055 struct ipr_data ipr_data;
Paul Mundtbf3a00f2006-01-16 22:14:14 -080056
Paul Mundt0f138042006-10-06 17:55:25 +090057 disable_irq_nosync(irq);
58
59 ipr_data.addr = addr;
60 ipr_data.shift = pos*4; /* POSition (0-3) x 4 means shift */
61 ipr_data.priority = priority;
62
Paul Mundt709bc442006-10-19 17:32:56 +090063 set_irq_chip_and_handler_name(irq, &ipr_irq_chip,
64 handle_level_irq, "level");
Paul Mundt0f138042006-10-06 17:55:25 +090065 set_irq_chip_data(irq, &ipr_data);
66
67 enable_ipr_irq(irq);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080068}
69
Paul Mundt0f138042006-10-06 17:55:25 +090070/* XXX: This needs to die a horrible death.. */
Paul Mundtbf3a00f2006-01-16 22:14:14 -080071void __init init_IRQ(void)
72{
73#ifndef CONFIG_CPU_SUBTYPE_SH7780
Paul Mundt8d27e082006-02-01 03:06:04 -080074 make_ipr_irq(TIMER_IRQ, TIMER_IPR_ADDR, TIMER_IPR_POS, TIMER_PRIORITY);
75 make_ipr_irq(TIMER1_IRQ, TIMER1_IPR_ADDR, TIMER1_IPR_POS, TIMER1_PRIORITY);
Paul Mundt91550f72006-09-27 17:45:01 +090076#ifdef RTC_IRQ
Paul Mundt8d27e082006-02-01 03:06:04 -080077 make_ipr_irq(RTC_IRQ, RTC_IPR_ADDR, RTC_IPR_POS, RTC_PRIORITY);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080078#endif
79
80#ifdef SCI_ERI_IRQ
Paul Mundt8d27e082006-02-01 03:06:04 -080081 make_ipr_irq(SCI_ERI_IRQ, SCI_IPR_ADDR, SCI_IPR_POS, SCI_PRIORITY);
82 make_ipr_irq(SCI_RXI_IRQ, SCI_IPR_ADDR, SCI_IPR_POS, SCI_PRIORITY);
83 make_ipr_irq(SCI_TXI_IRQ, SCI_IPR_ADDR, SCI_IPR_POS, SCI_PRIORITY);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080084#endif
85
86#ifdef SCIF1_ERI_IRQ
Paul Mundt8d27e082006-02-01 03:06:04 -080087 make_ipr_irq(SCIF1_ERI_IRQ, SCIF1_IPR_ADDR, SCIF1_IPR_POS, SCIF1_PRIORITY);
88 make_ipr_irq(SCIF1_RXI_IRQ, SCIF1_IPR_ADDR, SCIF1_IPR_POS, SCIF1_PRIORITY);
89 make_ipr_irq(SCIF1_BRI_IRQ, SCIF1_IPR_ADDR, SCIF1_IPR_POS, SCIF1_PRIORITY);
90 make_ipr_irq(SCIF1_TXI_IRQ, SCIF1_IPR_ADDR, SCIF1_IPR_POS, SCIF1_PRIORITY);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080091#endif
92
93#if defined(CONFIG_CPU_SUBTYPE_SH7300)
Paul Mundt8d27e082006-02-01 03:06:04 -080094 make_ipr_irq(SCIF0_IRQ, SCIF0_IPR_ADDR, SCIF0_IPR_POS, SCIF0_PRIORITY);
95 make_ipr_irq(DMTE2_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY);
96 make_ipr_irq(DMTE3_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY);
97 make_ipr_irq(VIO_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY);
Paul Mundtbf3a00f2006-01-16 22:14:14 -080098#endif
99
100#ifdef SCIF_ERI_IRQ
Paul Mundt8d27e082006-02-01 03:06:04 -0800101 make_ipr_irq(SCIF_ERI_IRQ, SCIF_IPR_ADDR, SCIF_IPR_POS, SCIF_PRIORITY);
102 make_ipr_irq(SCIF_RXI_IRQ, SCIF_IPR_ADDR, SCIF_IPR_POS, SCIF_PRIORITY);
103 make_ipr_irq(SCIF_BRI_IRQ, SCIF_IPR_ADDR, SCIF_IPR_POS, SCIF_PRIORITY);
104 make_ipr_irq(SCIF_TXI_IRQ, SCIF_IPR_ADDR, SCIF_IPR_POS, SCIF_PRIORITY);
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800105#endif
106
107#ifdef IRDA_ERI_IRQ
Paul Mundt8d27e082006-02-01 03:06:04 -0800108 make_ipr_irq(IRDA_ERI_IRQ, IRDA_IPR_ADDR, IRDA_IPR_POS, IRDA_PRIORITY);
109 make_ipr_irq(IRDA_RXI_IRQ, IRDA_IPR_ADDR, IRDA_IPR_POS, IRDA_PRIORITY);
110 make_ipr_irq(IRDA_BRI_IRQ, IRDA_IPR_ADDR, IRDA_IPR_POS, IRDA_PRIORITY);
111 make_ipr_irq(IRDA_TXI_IRQ, IRDA_IPR_ADDR, IRDA_IPR_POS, IRDA_PRIORITY);
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800112#endif
113
114#if defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709) || \
Paul Mundte5723e02006-09-27 17:38:11 +0900115 defined(CONFIG_CPU_SUBTYPE_SH7706) || \
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800116 defined(CONFIG_CPU_SUBTYPE_SH7300) || defined(CONFIG_CPU_SUBTYPE_SH7705)
117 /*
118 * Initialize the Interrupt Controller (INTC)
119 * registers to their power on values
120 */
121
122 /*
123 * Enable external irq (INTC IRQ mode).
124 * You should set corresponding bits of PFC to "00"
125 * to enable these interrupts.
126 */
Paul Mundt8d27e082006-02-01 03:06:04 -0800127 make_ipr_irq(IRQ0_IRQ, IRQ0_IPR_ADDR, IRQ0_IPR_POS, IRQ0_PRIORITY);
128 make_ipr_irq(IRQ1_IRQ, IRQ1_IPR_ADDR, IRQ1_IPR_POS, IRQ1_PRIORITY);
129 make_ipr_irq(IRQ2_IRQ, IRQ2_IPR_ADDR, IRQ2_IPR_POS, IRQ2_PRIORITY);
130 make_ipr_irq(IRQ3_IRQ, IRQ3_IPR_ADDR, IRQ3_IPR_POS, IRQ3_PRIORITY);
131 make_ipr_irq(IRQ4_IRQ, IRQ4_IPR_ADDR, IRQ4_IPR_POS, IRQ4_PRIORITY);
132 make_ipr_irq(IRQ5_IRQ, IRQ5_IPR_ADDR, IRQ5_IPR_POS, IRQ5_PRIORITY);
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800133#endif
134#endif
135
136#ifdef CONFIG_CPU_HAS_PINT_IRQ
137 init_IRQ_pint();
138#endif
139
140#ifdef CONFIG_CPU_HAS_INTC2_IRQ
141 init_IRQ_intc2();
142#endif
143 /* Perform the machine specific initialisation */
144 if (sh_mv.mv_init_irq != NULL)
145 sh_mv.mv_init_irq();
Paul Mundta6a311392006-09-27 18:22:14 +0900146
147 irq_ctx_init(smp_processor_id());
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800148}
149
150#if !defined(CONFIG_CPU_HAS_PINT_IRQ)
151int ipr_irq_demux(int irq)
152{
153 return irq;
154}
155#endif
156
157EXPORT_SYMBOL(make_ipr_irq);