blob: 24f0fe35f4adfca63249cf5a099db5234298087b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Lennert Buytenhekfa87ced2005-11-01 19:44:27 +00002 * arch/arm/mach-ixp2000/core.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Common routines used by all IXP2400/2800 based platforms.
5 *
6 * Author: Deepak Saxena <dsaxena@plexity.net>
7 *
8 * Copyright 2004 (C) MontaVista Software, Inc.
9 *
10 * Based on work Copyright (C) 2002-2003 Intel Corporation
11 *
12 * This file is licensed under the terms of the GNU General Public
13 * License version 2. This program is licensed "as is" without any
14 * warranty of any kind, whether express or implied.
15 */
Russell King2f8163b2011-07-26 10:53:52 +010016#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/spinlock.h>
20#include <linux/sched.h>
21#include <linux/interrupt.h>
Thomas Gleixner64ffae82006-07-01 22:32:18 +010022#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/serial.h>
24#include <linux/tty.h>
25#include <linux/bitops.h>
Lennert Buytenhek28187f22005-07-10 19:44:53 +010026#include <linux/serial_8250.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/mm.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040028#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <asm/types.h>
31#include <asm/setup.h>
32#include <asm/memory.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/irq.h>
35#include <asm/system.h>
36#include <asm/tlbflush.h>
37#include <asm/pgtable.h>
38
39#include <asm/mach/map.h>
40#include <asm/mach/time.h>
41#include <asm/mach/irq.h>
42
Linus Walleij87f911a2011-08-22 08:44:18 +010043#include <mach/gpio-ixp2000.h>
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static DEFINE_SPINLOCK(ixp2000_slowport_lock);
46static unsigned long ixp2000_slowport_irq_flags;
47
48/*************************************************************************
49 * Slowport access routines
50 *************************************************************************/
51void ixp2000_acquire_slowport(struct slowport_cfg *new_cfg, struct slowport_cfg *old_cfg)
52{
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 spin_lock_irqsave(&ixp2000_slowport_lock, ixp2000_slowport_irq_flags);
54
55 old_cfg->CCR = *IXP2000_SLOWPORT_CCR;
56 old_cfg->WTC = *IXP2000_SLOWPORT_WTC2;
57 old_cfg->RTC = *IXP2000_SLOWPORT_RTC2;
58 old_cfg->PCR = *IXP2000_SLOWPORT_PCR;
59 old_cfg->ADC = *IXP2000_SLOWPORT_ADC;
60
61 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, new_cfg->CCR);
62 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, new_cfg->WTC);
63 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, new_cfg->RTC);
64 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, new_cfg->PCR);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +000065 ixp2000_reg_wrb(IXP2000_SLOWPORT_ADC, new_cfg->ADC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68void ixp2000_release_slowport(struct slowport_cfg *old_cfg)
69{
70 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, old_cfg->CCR);
71 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, old_cfg->WTC);
72 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, old_cfg->RTC);
73 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, old_cfg->PCR);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +000074 ixp2000_reg_wrb(IXP2000_SLOWPORT_ADC, old_cfg->ADC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 spin_unlock_irqrestore(&ixp2000_slowport_lock,
77 ixp2000_slowport_irq_flags);
78}
79
80/*************************************************************************
81 * Chip specific mappings shared by all IXP2000 systems
82 *************************************************************************/
83static struct map_desc ixp2000_io_desc[] __initdata = {
84 {
85 .virtual = IXP2000_CAP_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010086 .pfn = __phys_to_pfn(IXP2000_CAP_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .length = IXP2000_CAP_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +010088 .type = MT_DEVICE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }, {
90 .virtual = IXP2000_INTCTL_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010091 .pfn = __phys_to_pfn(IXP2000_INTCTL_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .length = IXP2000_INTCTL_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +010093 .type = MT_DEVICE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }, {
95 .virtual = IXP2000_PCI_CREG_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010096 .pfn = __phys_to_pfn(IXP2000_PCI_CREG_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 .length = IXP2000_PCI_CREG_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +010098 .type = MT_DEVICE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }, {
100 .virtual = IXP2000_PCI_CSR_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100101 .pfn = __phys_to_pfn(IXP2000_PCI_CSR_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .length = IXP2000_PCI_CSR_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +0100103 .type = MT_DEVICE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }, {
Lennert Buytenhekbaaf7ed12005-06-26 22:24:17 +0100105 .virtual = IXP2000_MSF_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100106 .pfn = __phys_to_pfn(IXP2000_MSF_PHYS_BASE),
Lennert Buytenhekbaaf7ed12005-06-26 22:24:17 +0100107 .length = IXP2000_MSF_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +0100108 .type = MT_DEVICE,
Lennert Buytenhekbaaf7ed12005-06-26 22:24:17 +0100109 }, {
Lennert Buytenhekdd29c722006-01-13 20:51:43 +0000110 .virtual = IXP2000_SCRATCH_RING_VIRT_BASE,
111 .pfn = __phys_to_pfn(IXP2000_SCRATCH_RING_PHYS_BASE),
112 .length = IXP2000_SCRATCH_RING_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +0100113 .type = MT_DEVICE,
Lennert Buytenhekdd29c722006-01-13 20:51:43 +0000114 }, {
115 .virtual = IXP2000_SRAM0_VIRT_BASE,
116 .pfn = __phys_to_pfn(IXP2000_SRAM0_PHYS_BASE),
117 .length = IXP2000_SRAM0_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +0100118 .type = MT_DEVICE,
Lennert Buytenhekdd29c722006-01-13 20:51:43 +0000119 }, {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .virtual = IXP2000_PCI_IO_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100121 .pfn = __phys_to_pfn(IXP2000_PCI_IO_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .length = IXP2000_PCI_IO_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +0100123 .type = MT_DEVICE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }, {
125 .virtual = IXP2000_PCI_CFG0_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100126 .pfn = __phys_to_pfn(IXP2000_PCI_CFG0_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .length = IXP2000_PCI_CFG0_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +0100128 .type = MT_DEVICE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }, {
130 .virtual = IXP2000_PCI_CFG1_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100131 .pfn = __phys_to_pfn(IXP2000_PCI_CFG1_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .length = IXP2000_PCI_CFG1_SIZE,
Russell Kingdb5b7162008-09-07 12:42:51 +0100133 .type = MT_DEVICE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135};
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137void __init ixp2000_map_io(void)
138{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 iotable_init(ixp2000_io_desc, ARRAY_SIZE(ixp2000_io_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* Set slowport to 8-bit mode. */
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000142 ixp2000_reg_wrb(IXP2000_SLOWPORT_FRM, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100145
146/*************************************************************************
147 * Serial port support for IXP2000
148 *************************************************************************/
149static struct plat_serial8250_port ixp2000_serial_port[] = {
150 {
151 .mapbase = IXP2000_UART_PHYS_BASE,
152 .membase = (char *)(IXP2000_UART_VIRT_BASE + 3),
153 .irq = IRQ_IXP2000_UART,
154 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
155 .iotype = UPIO_MEM,
156 .regshift = 2,
157 .uartclk = 50000000,
158 },
159 { },
160};
161
162static struct resource ixp2000_uart_resource = {
163 .start = IXP2000_UART_PHYS_BASE,
Deepak Saxena702c96d52005-09-30 16:20:22 -0700164 .end = IXP2000_UART_PHYS_BASE + 0x1f,
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100165 .flags = IORESOURCE_MEM,
166};
167
168static struct platform_device ixp2000_serial_device = {
169 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +0100170 .id = PLAT8250_DEV_PLATFORM,
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100171 .dev = {
172 .platform_data = ixp2000_serial_port,
173 },
174 .num_resources = 1,
175 .resource = &ixp2000_uart_resource,
176};
177
178void __init ixp2000_uart_init(void)
179{
180 platform_device_register(&ixp2000_serial_device);
181}
182
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*************************************************************************
185 * Timer-tick functions for IXP2000
186 *************************************************************************/
187static unsigned ticks_per_jiffy;
188static unsigned ticks_per_usec;
189static unsigned next_jiffy_time;
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100190static volatile unsigned long *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192unsigned long ixp2000_gettimeoffset (void)
193{
194 unsigned long offset;
195
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100196 offset = next_jiffy_time - *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 return offset / ticks_per_usec;
199}
200
Uwe Kleine-Königd463f362010-10-19 09:43:59 +0100201static irqreturn_t ixp2000_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* clear timer 1 */
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000204 ixp2000_reg_wrb(IXP2000_T1_CLR, 1);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100205
Lennert Buytenhekf869afa2006-06-22 10:30:53 +0100206 while ((signed long)(next_jiffy_time - *missing_jiffy_timer_csr)
207 >= ticks_per_jiffy) {
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700208 timer_tick();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 next_jiffy_time -= ticks_per_jiffy;
210 }
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return IRQ_HANDLED;
213}
214
215static struct irqaction ixp2000_timer_irq = {
216 .name = "IXP2000 Timer Tick",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700217 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Russell King09b8b5f2005-06-26 17:06:36 +0100218 .handler = ixp2000_timer_interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
221void __init ixp2000_init_time(unsigned long tick_rate)
222{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
224 ticks_per_usec = tick_rate / 1000000;
225
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100226 /*
227 * We use timer 1 as our timer interrupt.
228 */
229 ixp2000_reg_write(IXP2000_T1_CLR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 ixp2000_reg_write(IXP2000_T1_CLD, ticks_per_jiffy - 1);
231 ixp2000_reg_write(IXP2000_T1_CTL, (1 << 7));
232
233 /*
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100234 * We use a second timer as a monotonic counter for tracking
235 * missed jiffies. The IXP2000 has four timers, but if we're
236 * on an A-step IXP2800, timer 2 and 3 don't work, so on those
237 * chips we use timer 4. Timer 4 is the only timer that can
238 * be used for the watchdog, so we use timer 2 if we're on a
239 * non-buggy chip.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 */
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100241 if ((*IXP2000_PRODUCT_ID & 0x001ffef0) == 0x00000000) {
242 printk(KERN_INFO "Enabling IXP2800 erratum #25 workaround\n");
243
244 ixp2000_reg_write(IXP2000_T4_CLR, 0);
245 ixp2000_reg_write(IXP2000_T4_CLD, -1);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000246 ixp2000_reg_wrb(IXP2000_T4_CTL, (1 << 7));
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100247 missing_jiffy_timer_csr = IXP2000_T4_CSR;
248 } else {
249 ixp2000_reg_write(IXP2000_T2_CLR, 0);
250 ixp2000_reg_write(IXP2000_T2_CLD, -1);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000251 ixp2000_reg_wrb(IXP2000_T2_CTL, (1 << 7));
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100252 missing_jiffy_timer_csr = IXP2000_T2_CSR;
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 next_jiffy_time = 0xffffffff;
255
256 /* register for interrupt */
257 setup_irq(IRQ_IXP2000_TIMER1, &ixp2000_timer_irq);
258}
259
260/*************************************************************************
261 * GPIO helpers
262 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263static unsigned long GPIO_IRQ_falling_edge;
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100264static unsigned long GPIO_IRQ_rising_edge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265static unsigned long GPIO_IRQ_level_low;
266static unsigned long GPIO_IRQ_level_high;
267
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100268static void update_gpio_int_csrs(void)
269{
270 ixp2000_reg_write(IXP2000_GPIO_FEDR, GPIO_IRQ_falling_edge);
271 ixp2000_reg_write(IXP2000_GPIO_REDR, GPIO_IRQ_rising_edge);
272 ixp2000_reg_write(IXP2000_GPIO_LSLR, GPIO_IRQ_level_low);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000273 ixp2000_reg_wrb(IXP2000_GPIO_LSHR, GPIO_IRQ_level_high);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100274}
275
276void gpio_line_config(int line, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 unsigned long flags;
279
280 local_irq_save(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100281 if (direction == GPIO_OUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* if it's an output, it ain't an interrupt anymore */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 GPIO_IRQ_falling_edge &= ~(1 << line);
284 GPIO_IRQ_rising_edge &= ~(1 << line);
285 GPIO_IRQ_level_low &= ~(1 << line);
286 GPIO_IRQ_level_high &= ~(1 << line);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100287 update_gpio_int_csrs();
288
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000289 ixp2000_reg_wrb(IXP2000_GPIO_PDSR, 1 << line);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100290 } else if (direction == GPIO_IN) {
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000291 ixp2000_reg_wrb(IXP2000_GPIO_PDCR, 1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 local_irq_restore(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100294}
Lennert Buytenhekfc8ea7a2006-06-24 09:57:14 +0100295EXPORT_SYMBOL(gpio_line_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297
298/*************************************************************************
299 * IRQ handling IXP2000
300 *************************************************************************/
Russell King10dd5ce2006-11-23 11:41:32 +0000301static void ixp2000_GPIO_irq_handler(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 int i;
304 unsigned long status = *IXP2000_GPIO_INST;
305
306 for (i = 0; i <= 7; i++) {
307 if (status & (1<<i)) {
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100308 generic_handle_irq(i + IRQ_IXP2000_GPIO0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310 }
311}
312
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100313static int ixp2000_GPIO_irq_type(struct irq_data *d, unsigned int type)
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100314{
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100315 int line = d->irq - IRQ_IXP2000_GPIO0;
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100316
317 /*
318 * First, configure this GPIO line as an input.
319 */
320 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
321
322 /*
323 * Then, set the proper trigger type.
324 */
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100325 if (type & IRQ_TYPE_EDGE_FALLING)
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100326 GPIO_IRQ_falling_edge |= 1 << line;
327 else
328 GPIO_IRQ_falling_edge &= ~(1 << line);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100329 if (type & IRQ_TYPE_EDGE_RISING)
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100330 GPIO_IRQ_rising_edge |= 1 << line;
331 else
332 GPIO_IRQ_rising_edge &= ~(1 << line);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100333 if (type & IRQ_TYPE_LEVEL_LOW)
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100334 GPIO_IRQ_level_low |= 1 << line;
335 else
336 GPIO_IRQ_level_low &= ~(1 << line);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100337 if (type & IRQ_TYPE_LEVEL_HIGH)
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100338 GPIO_IRQ_level_high |= 1 << line;
339 else
340 GPIO_IRQ_level_high &= ~(1 << line);
341 update_gpio_int_csrs();
342
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100343 return 0;
344}
345
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100346static void ixp2000_GPIO_irq_mask_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100348 unsigned int irq = d->irq;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100351
352 ixp2000_reg_write(IXP2000_GPIO_EDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
353 ixp2000_reg_write(IXP2000_GPIO_LDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000354 ixp2000_reg_wrb(IXP2000_GPIO_INST, (1 << (irq - IRQ_IXP2000_GPIO0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100357static void ixp2000_GPIO_irq_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100359 unsigned int irq = d->irq;
360
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000361 ixp2000_reg_wrb(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100364static void ixp2000_GPIO_irq_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100366 unsigned int irq = d->irq;
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 ixp2000_reg_write(IXP2000_GPIO_INSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
369}
370
Russell King10dd5ce2006-11-23 11:41:32 +0000371static struct irq_chip ixp2000_GPIO_irq_chip = {
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100372 .irq_ack = ixp2000_GPIO_irq_mask_ack,
373 .irq_mask = ixp2000_GPIO_irq_mask,
374 .irq_unmask = ixp2000_GPIO_irq_unmask,
375 .irq_set_type = ixp2000_GPIO_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376};
377
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100378static void ixp2000_pci_irq_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100381 if (d->irq == IRQ_IXP2000_PCIA)
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000382 ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 26)));
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100383 else if (d->irq == IRQ_IXP2000_PCIB)
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000384 ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 27)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100387static void ixp2000_pci_irq_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100390 if (d->irq == IRQ_IXP2000_PCIA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 26)));
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100392 else if (d->irq == IRQ_IXP2000_PCIB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 27)));
394}
395
Dave Jiang7866f642005-11-04 17:15:44 +0000396/*
397 * Error interrupts. These are used extensively by the microengine drivers
398 */
Russell King10dd5ce2006-11-23 11:41:32 +0000399static void ixp2000_err_irq_handler(unsigned int irq, struct irq_desc *desc)
Dave Jiang7866f642005-11-04 17:15:44 +0000400{
401 int i;
402 unsigned long status = *IXP2000_IRQ_ERR_STATUS;
403
404 for(i = 31; i >= 0; i--) {
405 if(status & (1 << i)) {
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100406 generic_handle_irq(IRQ_IXP2000_DRAM0_MIN_ERR + i);
Dave Jiang7866f642005-11-04 17:15:44 +0000407 }
408 }
409}
410
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100411static void ixp2000_err_irq_mask(struct irq_data *d)
Dave Jiang7866f642005-11-04 17:15:44 +0000412{
413 ixp2000_reg_write(IXP2000_IRQ_ERR_ENABLE_CLR,
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100414 (1 << (d->irq - IRQ_IXP2000_DRAM0_MIN_ERR)));
Dave Jiang7866f642005-11-04 17:15:44 +0000415}
416
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100417static void ixp2000_err_irq_unmask(struct irq_data *d)
Dave Jiang7866f642005-11-04 17:15:44 +0000418{
419 ixp2000_reg_write(IXP2000_IRQ_ERR_ENABLE_SET,
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100420 (1 << (d->irq - IRQ_IXP2000_DRAM0_MIN_ERR)));
Dave Jiang7866f642005-11-04 17:15:44 +0000421}
422
Russell King10dd5ce2006-11-23 11:41:32 +0000423static struct irq_chip ixp2000_err_irq_chip = {
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100424 .irq_ack = ixp2000_err_irq_mask,
425 .irq_mask = ixp2000_err_irq_mask,
426 .irq_unmask = ixp2000_err_irq_unmask
Dave Jiang7866f642005-11-04 17:15:44 +0000427};
428
Russell King10dd5ce2006-11-23 11:41:32 +0000429static struct irq_chip ixp2000_pci_irq_chip = {
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100430 .irq_ack = ixp2000_pci_irq_mask,
431 .irq_mask = ixp2000_pci_irq_mask,
432 .irq_unmask = ixp2000_pci_irq_unmask
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433};
434
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100435static void ixp2000_irq_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100437 ixp2000_reg_wrb(IXP2000_IRQ_ENABLE_CLR, (1 << d->irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100440static void ixp2000_irq_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100442 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << d->irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Russell King10dd5ce2006-11-23 11:41:32 +0000445static struct irq_chip ixp2000_irq_chip = {
Lennert Buytenhek6e8f54f2010-11-29 10:32:55 +0100446 .irq_ack = ixp2000_irq_mask,
447 .irq_mask = ixp2000_irq_mask,
448 .irq_unmask = ixp2000_irq_unmask
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449};
450
451void __init ixp2000_init_irq(void)
452{
453 int irq;
454
455 /*
456 * Mask all sources
457 */
458 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, 0xffffffff);
459 ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR, 0xffffffff);
460
461 /* clear all GPIO edge/level detects */
462 ixp2000_reg_write(IXP2000_GPIO_REDR, 0);
463 ixp2000_reg_write(IXP2000_GPIO_FEDR, 0);
464 ixp2000_reg_write(IXP2000_GPIO_LSHR, 0);
465 ixp2000_reg_write(IXP2000_GPIO_LSLR, 0);
466 ixp2000_reg_write(IXP2000_GPIO_INCR, -1);
467
468 /* clear PCI interrupt sources */
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000469 ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /*
472 * Certain bits in the IRQ status register of the
473 * IXP2000 are reserved. Instead of trying to map
474 * things non 1:1 from bit position to IRQ number,
475 * we mark the reserved IRQs as invalid. This makes
476 * our mask/unmask code much simpler.
477 */
478 for (irq = IRQ_IXP2000_SOFT_INT; irq <= IRQ_IXP2000_THDB3; irq++) {
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100479 if ((1 << irq) & IXP2000_VALID_IRQ_MASK) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100480 irq_set_chip_and_handler(irq, &ixp2000_irq_chip,
481 handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 set_irq_flags(irq, IRQF_VALID);
483 } else set_irq_flags(irq, 0);
484 }
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100485
Dave Jiang7866f642005-11-04 17:15:44 +0000486 for (irq = IRQ_IXP2000_DRAM0_MIN_ERR; irq <= IRQ_IXP2000_SP_INT; irq++) {
487 if((1 << (irq - IRQ_IXP2000_DRAM0_MIN_ERR)) &
488 IXP2000_VALID_ERR_IRQ_MASK) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100489 irq_set_chip_and_handler(irq, &ixp2000_err_irq_chip,
490 handle_level_irq);
Dave Jiang7866f642005-11-04 17:15:44 +0000491 set_irq_flags(irq, IRQF_VALID);
492 }
493 else
494 set_irq_flags(irq, 0);
495 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100496 irq_set_chained_handler(IRQ_IXP2000_ERRSUM, ixp2000_err_irq_handler);
Dave Jiang7866f642005-11-04 17:15:44 +0000497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 for (irq = IRQ_IXP2000_GPIO0; irq <= IRQ_IXP2000_GPIO7; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100499 irq_set_chip_and_handler(irq, &ixp2000_GPIO_irq_chip,
500 handle_level_irq);
Lennert Buytenhekbd115ea2006-03-22 20:14:09 +0000501 set_irq_flags(irq, IRQF_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100503 irq_set_chained_handler(IRQ_IXP2000_GPIO, ixp2000_GPIO_irq_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /*
506 * Enable PCI irqs. The actual PCI[AB] decoding is done in
507 * entry-macro.S, so we don't need a chained handler for the
508 * PCI interrupt source.
509 */
510 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << IRQ_IXP2000_PCI));
511 for (irq = IRQ_IXP2000_PCIA; irq <= IRQ_IXP2000_PCIB; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100512 irq_set_chip_and_handler(irq, &ixp2000_pci_irq_chip,
513 handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 set_irq_flags(irq, IRQF_VALID);
515 }
516}
517