2 * arch/arm/mach-ixp2000/common.c
4 * Common routines used by all IXP2400/2800 based platforms.
6 * Author: Deepak Saxena <dsaxena@plexity.net>
8 * Copyright 2004 (C) MontaVista Software, Inc.
10 * Based on work Copyright (C) 2002-2003 Intel Corporation
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.
17 #include <linux/config.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/spinlock.h>
21 #include <linux/sched.h>
22 #include <linux/interrupt.h>
23 #include <linux/serial.h>
24 #include <linux/tty.h>
25 #include <linux/bitops.h>
26 #include <linux/serial_core.h>
29 #include <asm/types.h>
30 #include <asm/setup.h>
31 #include <asm/memory.h>
32 #include <asm/hardware.h>
33 #include <asm/mach-types.h>
35 #include <asm/system.h>
36 #include <asm/tlbflush.h>
37 #include <asm/pgtable.h>
39 #include <asm/mach/map.h>
40 #include <asm/mach/time.h>
41 #include <asm/mach/irq.h>
43 #include <asm/arch/gpio.h>
45 static DEFINE_SPINLOCK(ixp2000_slowport_lock);
46 static unsigned long ixp2000_slowport_irq_flags;
48 /*************************************************************************
49 * Slowport access routines
50 *************************************************************************/
51 void ixp2000_acquire_slowport(struct slowport_cfg *new_cfg, struct slowport_cfg *old_cfg)
54 spin_lock_irqsave(&ixp2000_slowport_lock, ixp2000_slowport_irq_flags);
56 old_cfg->CCR = *IXP2000_SLOWPORT_CCR;
57 old_cfg->WTC = *IXP2000_SLOWPORT_WTC2;
58 old_cfg->RTC = *IXP2000_SLOWPORT_RTC2;
59 old_cfg->PCR = *IXP2000_SLOWPORT_PCR;
60 old_cfg->ADC = *IXP2000_SLOWPORT_ADC;
62 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, new_cfg->CCR);
63 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, new_cfg->WTC);
64 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, new_cfg->RTC);
65 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, new_cfg->PCR);
66 ixp2000_reg_write(IXP2000_SLOWPORT_ADC, new_cfg->ADC);
69 void ixp2000_release_slowport(struct slowport_cfg *old_cfg)
71 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, old_cfg->CCR);
72 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, old_cfg->WTC);
73 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, old_cfg->RTC);
74 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, old_cfg->PCR);
75 ixp2000_reg_write(IXP2000_SLOWPORT_ADC, old_cfg->ADC);
77 spin_unlock_irqrestore(&ixp2000_slowport_lock,
78 ixp2000_slowport_irq_flags);
81 /*************************************************************************
82 * Chip specific mappings shared by all IXP2000 systems
83 *************************************************************************/
84 static struct map_desc ixp2000_io_desc[] __initdata = {
86 .virtual = IXP2000_CAP_VIRT_BASE,
87 .physical = IXP2000_CAP_PHYS_BASE,
88 .length = IXP2000_CAP_SIZE,
91 .virtual = IXP2000_INTCTL_VIRT_BASE,
92 .physical = IXP2000_INTCTL_PHYS_BASE,
93 .length = IXP2000_INTCTL_SIZE,
96 .virtual = IXP2000_PCI_CREG_VIRT_BASE,
97 .physical = IXP2000_PCI_CREG_PHYS_BASE,
98 .length = IXP2000_PCI_CREG_SIZE,
101 .virtual = IXP2000_PCI_CSR_VIRT_BASE,
102 .physical = IXP2000_PCI_CSR_PHYS_BASE,
103 .length = IXP2000_PCI_CSR_SIZE,
106 .virtual = IXP2000_MSF_VIRT_BASE,
107 .physical = IXP2000_MSF_PHYS_BASE,
108 .length = IXP2000_MSF_SIZE,
111 .virtual = IXP2000_PCI_IO_VIRT_BASE,
112 .physical = IXP2000_PCI_IO_PHYS_BASE,
113 .length = IXP2000_PCI_IO_SIZE,
116 .virtual = IXP2000_PCI_CFG0_VIRT_BASE,
117 .physical = IXP2000_PCI_CFG0_PHYS_BASE,
118 .length = IXP2000_PCI_CFG0_SIZE,
121 .virtual = IXP2000_PCI_CFG1_VIRT_BASE,
122 .physical = IXP2000_PCI_CFG1_PHYS_BASE,
123 .length = IXP2000_PCI_CFG1_SIZE,
128 static struct uart_port ixp2000_serial_port = {
129 .membase = (char *)(IXP2000_UART_VIRT_BASE + 3),
130 .mapbase = IXP2000_UART_PHYS_BASE + 3,
131 .irq = IRQ_IXP2000_UART,
132 .flags = UPF_SKIP_TEST,
141 void __init ixp2000_map_io(void)
143 extern unsigned int processor_id;
146 * On IXP2400 CPUs we need to use MT_IXP2000_DEVICE for
147 * tweaking the PMDs so XCB=101. On IXP2800s we use the normal
150 if ((processor_id & 0xfffffff0) == 0x69054190) {
153 printk(KERN_INFO "Enabling IXP2400 erratum #66 workaround\n");
155 for(i=0;i<ARRAY_SIZE(ixp2000_io_desc);i++)
156 ixp2000_io_desc[i].type = MT_IXP2000_DEVICE;
159 iotable_init(ixp2000_io_desc, ARRAY_SIZE(ixp2000_io_desc));
160 early_serial_setup(&ixp2000_serial_port);
162 /* Set slowport to 8-bit mode. */
163 ixp2000_reg_write(IXP2000_SLOWPORT_FRM, 1);
166 /*************************************************************************
167 * Timer-tick functions for IXP2000
168 *************************************************************************/
169 static unsigned ticks_per_jiffy;
170 static unsigned ticks_per_usec;
171 static unsigned next_jiffy_time;
172 static volatile unsigned long *missing_jiffy_timer_csr;
174 unsigned long ixp2000_gettimeoffset (void)
176 unsigned long offset;
178 offset = next_jiffy_time - *missing_jiffy_timer_csr;
180 return offset / ticks_per_usec;
183 static int ixp2000_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
185 write_seqlock(&xtime_lock);
188 ixp2000_reg_write(IXP2000_T1_CLR, 1);
190 while ((next_jiffy_time - *missing_jiffy_timer_csr) > ticks_per_jiffy) {
192 next_jiffy_time -= ticks_per_jiffy;
195 write_sequnlock(&xtime_lock);
200 static struct irqaction ixp2000_timer_irq = {
201 .name = "IXP2000 Timer Tick",
202 .flags = SA_INTERRUPT | SA_TIMER,
203 .handler = ixp2000_timer_interrupt,
206 void __init ixp2000_init_time(unsigned long tick_rate)
208 ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
209 ticks_per_usec = tick_rate / 1000000;
212 * We use timer 1 as our timer interrupt.
214 ixp2000_reg_write(IXP2000_T1_CLR, 0);
215 ixp2000_reg_write(IXP2000_T1_CLD, ticks_per_jiffy - 1);
216 ixp2000_reg_write(IXP2000_T1_CTL, (1 << 7));
219 * We use a second timer as a monotonic counter for tracking
220 * missed jiffies. The IXP2000 has four timers, but if we're
221 * on an A-step IXP2800, timer 2 and 3 don't work, so on those
222 * chips we use timer 4. Timer 4 is the only timer that can
223 * be used for the watchdog, so we use timer 2 if we're on a
226 if ((*IXP2000_PRODUCT_ID & 0x001ffef0) == 0x00000000) {
227 printk(KERN_INFO "Enabling IXP2800 erratum #25 workaround\n");
229 ixp2000_reg_write(IXP2000_T4_CLR, 0);
230 ixp2000_reg_write(IXP2000_T4_CLD, -1);
231 ixp2000_reg_write(IXP2000_T4_CTL, (1 << 7));
232 missing_jiffy_timer_csr = IXP2000_T4_CSR;
234 ixp2000_reg_write(IXP2000_T2_CLR, 0);
235 ixp2000_reg_write(IXP2000_T2_CLD, -1);
236 ixp2000_reg_write(IXP2000_T2_CTL, (1 << 7));
237 missing_jiffy_timer_csr = IXP2000_T2_CSR;
239 next_jiffy_time = 0xffffffff;
241 /* register for interrupt */
242 setup_irq(IRQ_IXP2000_TIMER1, &ixp2000_timer_irq);
245 /*************************************************************************
247 *************************************************************************/
248 static unsigned long GPIO_IRQ_falling_edge;
249 static unsigned long GPIO_IRQ_rising_edge;
250 static unsigned long GPIO_IRQ_level_low;
251 static unsigned long GPIO_IRQ_level_high;
253 static void update_gpio_int_csrs(void)
255 ixp2000_reg_write(IXP2000_GPIO_FEDR, GPIO_IRQ_falling_edge);
256 ixp2000_reg_write(IXP2000_GPIO_REDR, GPIO_IRQ_rising_edge);
257 ixp2000_reg_write(IXP2000_GPIO_LSLR, GPIO_IRQ_level_low);
258 ixp2000_reg_write(IXP2000_GPIO_LSHR, GPIO_IRQ_level_high);
261 void gpio_line_config(int line, int direction)
265 local_irq_save(flags);
266 if (direction == GPIO_OUT) {
267 irq_desc[line + IRQ_IXP2000_GPIO0].valid = 0;
269 /* if it's an output, it ain't an interrupt anymore */
270 GPIO_IRQ_falling_edge &= ~(1 << line);
271 GPIO_IRQ_rising_edge &= ~(1 << line);
272 GPIO_IRQ_level_low &= ~(1 << line);
273 GPIO_IRQ_level_high &= ~(1 << line);
274 update_gpio_int_csrs();
276 ixp2000_reg_write(IXP2000_GPIO_PDSR, 1 << line);
277 } else if (direction == GPIO_IN) {
278 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
280 local_irq_restore(flags);
284 /*************************************************************************
285 * IRQ handling IXP2000
286 *************************************************************************/
287 static void ixp2000_GPIO_irq_handler(unsigned int irq, struct irqdesc *desc, struct pt_regs *regs)
290 unsigned long status = *IXP2000_GPIO_INST;
292 for (i = 0; i <= 7; i++) {
293 if (status & (1<<i)) {
294 desc = irq_desc + i + IRQ_IXP2000_GPIO0;
295 desc->handle(i + IRQ_IXP2000_GPIO0, desc, regs);
300 static int ixp2000_GPIO_irq_type(unsigned int irq, unsigned int type)
302 int line = irq - IRQ_IXP2000_GPIO0;
305 * First, configure this GPIO line as an input.
307 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
310 * Then, set the proper trigger type.
312 if (type & IRQT_FALLING)
313 GPIO_IRQ_falling_edge |= 1 << line;
315 GPIO_IRQ_falling_edge &= ~(1 << line);
316 if (type & IRQT_RISING)
317 GPIO_IRQ_rising_edge |= 1 << line;
319 GPIO_IRQ_rising_edge &= ~(1 << line);
321 GPIO_IRQ_level_low |= 1 << line;
323 GPIO_IRQ_level_low &= ~(1 << line);
324 if (type & IRQT_HIGH)
325 GPIO_IRQ_level_high |= 1 << line;
327 GPIO_IRQ_level_high &= ~(1 << line);
328 update_gpio_int_csrs();
331 * Finally, mark the corresponding IRQ as valid.
333 irq_desc[irq].valid = 1;
338 static void ixp2000_GPIO_irq_mask_ack(unsigned int irq)
340 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
342 ixp2000_reg_write(IXP2000_GPIO_EDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
343 ixp2000_reg_write(IXP2000_GPIO_LDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
344 ixp2000_reg_write(IXP2000_GPIO_INST, (1 << (irq - IRQ_IXP2000_GPIO0)));
347 static void ixp2000_GPIO_irq_mask(unsigned int irq)
349 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
352 static void ixp2000_GPIO_irq_unmask(unsigned int irq)
354 ixp2000_reg_write(IXP2000_GPIO_INSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
357 static struct irqchip ixp2000_GPIO_irq_chip = {
358 .type = ixp2000_GPIO_irq_type,
359 .ack = ixp2000_GPIO_irq_mask_ack,
360 .mask = ixp2000_GPIO_irq_mask,
361 .unmask = ixp2000_GPIO_irq_unmask
364 static void ixp2000_pci_irq_mask(unsigned int irq)
366 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
367 if (irq == IRQ_IXP2000_PCIA)
368 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 26)));
369 else if (irq == IRQ_IXP2000_PCIB)
370 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 27)));
373 static void ixp2000_pci_irq_unmask(unsigned int irq)
375 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
376 if (irq == IRQ_IXP2000_PCIA)
377 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 26)));
378 else if (irq == IRQ_IXP2000_PCIB)
379 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 27)));
382 static struct irqchip ixp2000_pci_irq_chip = {
383 .ack = ixp2000_pci_irq_mask,
384 .mask = ixp2000_pci_irq_mask,
385 .unmask = ixp2000_pci_irq_unmask
388 static void ixp2000_irq_mask(unsigned int irq)
390 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, (1 << irq));
393 static void ixp2000_irq_unmask(unsigned int irq)
395 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << irq));
398 static struct irqchip ixp2000_irq_chip = {
399 .ack = ixp2000_irq_mask,
400 .mask = ixp2000_irq_mask,
401 .unmask = ixp2000_irq_unmask
404 void __init ixp2000_init_irq(void)
411 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, 0xffffffff);
412 ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR, 0xffffffff);
414 /* clear all GPIO edge/level detects */
415 ixp2000_reg_write(IXP2000_GPIO_REDR, 0);
416 ixp2000_reg_write(IXP2000_GPIO_FEDR, 0);
417 ixp2000_reg_write(IXP2000_GPIO_LSHR, 0);
418 ixp2000_reg_write(IXP2000_GPIO_LSLR, 0);
419 ixp2000_reg_write(IXP2000_GPIO_INCR, -1);
421 /* clear PCI interrupt sources */
422 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, 0);
425 * Certain bits in the IRQ status register of the
426 * IXP2000 are reserved. Instead of trying to map
427 * things non 1:1 from bit position to IRQ number,
428 * we mark the reserved IRQs as invalid. This makes
429 * our mask/unmask code much simpler.
431 for (irq = IRQ_IXP2000_SOFT_INT; irq <= IRQ_IXP2000_THDB3; irq++) {
432 if ((1 << irq) & IXP2000_VALID_IRQ_MASK) {
433 set_irq_chip(irq, &ixp2000_irq_chip);
434 set_irq_handler(irq, do_level_IRQ);
435 set_irq_flags(irq, IRQF_VALID);
436 } else set_irq_flags(irq, 0);
440 * GPIO IRQs are invalid until someone sets the interrupt mode
441 * by calling set_irq_type().
443 for (irq = IRQ_IXP2000_GPIO0; irq <= IRQ_IXP2000_GPIO7; irq++) {
444 set_irq_chip(irq, &ixp2000_GPIO_irq_chip);
445 set_irq_handler(irq, do_level_IRQ);
446 set_irq_flags(irq, 0);
448 set_irq_chained_handler(IRQ_IXP2000_GPIO, ixp2000_GPIO_irq_handler);
451 * Enable PCI irqs. The actual PCI[AB] decoding is done in
452 * entry-macro.S, so we don't need a chained handler for the
453 * PCI interrupt source.
455 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << IRQ_IXP2000_PCI));
456 for (irq = IRQ_IXP2000_PCIA; irq <= IRQ_IXP2000_PCIB; irq++) {
457 set_irq_chip(irq, &ixp2000_pci_irq_chip);
458 set_irq_handler(irq, do_level_IRQ);
459 set_irq_flags(irq, IRQF_VALID);