blob: 0ee34acb8d7b80742dc4588f093ce645db87cefa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-ixp2000/common.c
3 *
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 */
16
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>
27#include <linux/mm.h>
28
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>
34#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
Lennert Buytenhekc4982882005-06-24 20:54:35 +010043#include <asm/arch/gpio.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{
53
54 spin_lock_irqsave(&ixp2000_slowport_lock, ixp2000_slowport_irq_flags);
55
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;
61
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);
67}
68
69void ixp2000_release_slowport(struct slowport_cfg *old_cfg)
70{
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);
76
77 spin_unlock_irqrestore(&ixp2000_slowport_lock,
78 ixp2000_slowport_irq_flags);
79}
80
81/*************************************************************************
82 * Chip specific mappings shared by all IXP2000 systems
83 *************************************************************************/
84static struct map_desc ixp2000_io_desc[] __initdata = {
85 {
86 .virtual = IXP2000_CAP_VIRT_BASE,
87 .physical = IXP2000_CAP_PHYS_BASE,
88 .length = IXP2000_CAP_SIZE,
89 .type = MT_DEVICE
90 }, {
91 .virtual = IXP2000_INTCTL_VIRT_BASE,
92 .physical = IXP2000_INTCTL_PHYS_BASE,
93 .length = IXP2000_INTCTL_SIZE,
94 .type = MT_DEVICE
95 }, {
96 .virtual = IXP2000_PCI_CREG_VIRT_BASE,
97 .physical = IXP2000_PCI_CREG_PHYS_BASE,
98 .length = IXP2000_PCI_CREG_SIZE,
99 .type = MT_DEVICE
100 }, {
101 .virtual = IXP2000_PCI_CSR_VIRT_BASE,
102 .physical = IXP2000_PCI_CSR_PHYS_BASE,
103 .length = IXP2000_PCI_CSR_SIZE,
104 .type = MT_DEVICE
105 }, {
106 .virtual = IXP2000_PCI_IO_VIRT_BASE,
107 .physical = IXP2000_PCI_IO_PHYS_BASE,
108 .length = IXP2000_PCI_IO_SIZE,
109 .type = MT_DEVICE
110 }, {
111 .virtual = IXP2000_PCI_CFG0_VIRT_BASE,
112 .physical = IXP2000_PCI_CFG0_PHYS_BASE,
113 .length = IXP2000_PCI_CFG0_SIZE,
114 .type = MT_DEVICE
115 }, {
116 .virtual = IXP2000_PCI_CFG1_VIRT_BASE,
117 .physical = IXP2000_PCI_CFG1_PHYS_BASE,
118 .length = IXP2000_PCI_CFG1_SIZE,
119 .type = MT_DEVICE
120 }
121};
122
123static struct uart_port ixp2000_serial_port = {
124 .membase = (char *)(IXP2000_UART_VIRT_BASE + 3),
125 .mapbase = IXP2000_UART_PHYS_BASE + 3,
126 .irq = IRQ_IXP2000_UART,
127 .flags = UPF_SKIP_TEST,
128 .iotype = UPIO_MEM,
129 .regshift = 2,
130 .uartclk = 50000000,
131 .line = 0,
132 .type = PORT_XSCALE,
133 .fifosize = 16
134};
135
136void __init ixp2000_map_io(void)
137{
138 extern unsigned int processor_id;
139
140 /*
141 * On IXP2400 CPUs we need to use MT_IXP2000_DEVICE for
142 * tweaking the PMDs so XCB=101. On IXP2800s we use the normal
143 * PMD flags.
144 */
145 if ((processor_id & 0xfffffff0) == 0x69054190) {
146 int i;
147
148 printk(KERN_INFO "Enabling IXP2400 erratum #66 workaround\n");
149
150 for(i=0;i<ARRAY_SIZE(ixp2000_io_desc);i++)
151 ixp2000_io_desc[i].type = MT_IXP2000_DEVICE;
152 }
153
154 iotable_init(ixp2000_io_desc, ARRAY_SIZE(ixp2000_io_desc));
155 early_serial_setup(&ixp2000_serial_port);
156
157 /* Set slowport to 8-bit mode. */
158 ixp2000_reg_write(IXP2000_SLOWPORT_FRM, 1);
159}
160
161/*************************************************************************
162 * Timer-tick functions for IXP2000
163 *************************************************************************/
164static unsigned ticks_per_jiffy;
165static unsigned ticks_per_usec;
166static unsigned next_jiffy_time;
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100167static volatile unsigned long *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169unsigned long ixp2000_gettimeoffset (void)
170{
171 unsigned long offset;
172
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100173 offset = next_jiffy_time - *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 return offset / ticks_per_usec;
176}
177
178static int ixp2000_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
179{
180 write_seqlock(&xtime_lock);
181
182 /* clear timer 1 */
183 ixp2000_reg_write(IXP2000_T1_CLR, 1);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100184
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100185 while ((next_jiffy_time - *missing_jiffy_timer_csr) > ticks_per_jiffy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 timer_tick(regs);
187 next_jiffy_time -= ticks_per_jiffy;
188 }
189
190 write_sequnlock(&xtime_lock);
191
192 return IRQ_HANDLED;
193}
194
195static struct irqaction ixp2000_timer_irq = {
196 .name = "IXP2000 Timer Tick",
197 .flags = SA_INTERRUPT,
198 .handler = ixp2000_timer_interrupt
199};
200
201void __init ixp2000_init_time(unsigned long tick_rate)
202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
204 ticks_per_usec = tick_rate / 1000000;
205
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100206 /*
207 * We use timer 1 as our timer interrupt.
208 */
209 ixp2000_reg_write(IXP2000_T1_CLR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 ixp2000_reg_write(IXP2000_T1_CLD, ticks_per_jiffy - 1);
211 ixp2000_reg_write(IXP2000_T1_CTL, (1 << 7));
212
213 /*
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100214 * We use a second timer as a monotonic counter for tracking
215 * missed jiffies. The IXP2000 has four timers, but if we're
216 * on an A-step IXP2800, timer 2 and 3 don't work, so on those
217 * chips we use timer 4. Timer 4 is the only timer that can
218 * be used for the watchdog, so we use timer 2 if we're on a
219 * non-buggy chip.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100221 if ((*IXP2000_PRODUCT_ID & 0x001ffef0) == 0x00000000) {
222 printk(KERN_INFO "Enabling IXP2800 erratum #25 workaround\n");
223
224 ixp2000_reg_write(IXP2000_T4_CLR, 0);
225 ixp2000_reg_write(IXP2000_T4_CLD, -1);
226 ixp2000_reg_write(IXP2000_T4_CTL, (1 << 7));
227 missing_jiffy_timer_csr = IXP2000_T4_CSR;
228 } else {
229 ixp2000_reg_write(IXP2000_T2_CLR, 0);
230 ixp2000_reg_write(IXP2000_T2_CLD, -1);
231 ixp2000_reg_write(IXP2000_T2_CTL, (1 << 7));
232 missing_jiffy_timer_csr = IXP2000_T2_CSR;
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 next_jiffy_time = 0xffffffff;
235
236 /* register for interrupt */
237 setup_irq(IRQ_IXP2000_TIMER1, &ixp2000_timer_irq);
238}
239
240/*************************************************************************
241 * GPIO helpers
242 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static unsigned long GPIO_IRQ_falling_edge;
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100244static unsigned long GPIO_IRQ_rising_edge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static unsigned long GPIO_IRQ_level_low;
246static unsigned long GPIO_IRQ_level_high;
247
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100248static void update_gpio_int_csrs(void)
249{
250 ixp2000_reg_write(IXP2000_GPIO_FEDR, GPIO_IRQ_falling_edge);
251 ixp2000_reg_write(IXP2000_GPIO_REDR, GPIO_IRQ_rising_edge);
252 ixp2000_reg_write(IXP2000_GPIO_LSLR, GPIO_IRQ_level_low);
253 ixp2000_reg_write(IXP2000_GPIO_LSHR, GPIO_IRQ_level_high);
254}
255
256void gpio_line_config(int line, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 unsigned long flags;
259
260 local_irq_save(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100261 if (direction == GPIO_OUT) {
262 irq_desc[line + IRQ_IXP2000_GPIO0].valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* if it's an output, it ain't an interrupt anymore */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 GPIO_IRQ_falling_edge &= ~(1 << line);
266 GPIO_IRQ_rising_edge &= ~(1 << line);
267 GPIO_IRQ_level_low &= ~(1 << line);
268 GPIO_IRQ_level_high &= ~(1 << line);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100269 update_gpio_int_csrs();
270
271 ixp2000_reg_write(IXP2000_GPIO_PDSR, 1 << line);
272 } else if (direction == GPIO_IN) {
273 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 local_irq_restore(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100276}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278
279/*************************************************************************
280 * IRQ handling IXP2000
281 *************************************************************************/
282static void ixp2000_GPIO_irq_handler(unsigned int irq, struct irqdesc *desc, struct pt_regs *regs)
283{
284 int i;
285 unsigned long status = *IXP2000_GPIO_INST;
286
287 for (i = 0; i <= 7; i++) {
288 if (status & (1<<i)) {
289 desc = irq_desc + i + IRQ_IXP2000_GPIO0;
290 desc->handle(i + IRQ_IXP2000_GPIO0, desc, regs);
291 }
292 }
293}
294
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100295static int ixp2000_GPIO_irq_type(unsigned int irq, unsigned int type)
296{
297 int line = irq - IRQ_IXP2000_GPIO0;
298
299 /*
300 * First, configure this GPIO line as an input.
301 */
302 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
303
304 /*
305 * Then, set the proper trigger type.
306 */
307 if (type & IRQT_FALLING)
308 GPIO_IRQ_falling_edge |= 1 << line;
309 else
310 GPIO_IRQ_falling_edge &= ~(1 << line);
311 if (type & IRQT_RISING)
312 GPIO_IRQ_rising_edge |= 1 << line;
313 else
314 GPIO_IRQ_rising_edge &= ~(1 << line);
315 if (type & IRQT_LOW)
316 GPIO_IRQ_level_low |= 1 << line;
317 else
318 GPIO_IRQ_level_low &= ~(1 << line);
319 if (type & IRQT_HIGH)
320 GPIO_IRQ_level_high |= 1 << line;
321 else
322 GPIO_IRQ_level_high &= ~(1 << line);
323 update_gpio_int_csrs();
324
325 /*
326 * Finally, mark the corresponding IRQ as valid.
327 */
328 irq_desc[irq].valid = 1;
329
330 return 0;
331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static void ixp2000_GPIO_irq_mask_ack(unsigned int irq)
334{
335 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100336
337 ixp2000_reg_write(IXP2000_GPIO_EDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
338 ixp2000_reg_write(IXP2000_GPIO_LDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 ixp2000_reg_write(IXP2000_GPIO_INST, (1 << (irq - IRQ_IXP2000_GPIO0)));
340}
341
342static void ixp2000_GPIO_irq_mask(unsigned int irq)
343{
344 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
345}
346
347static void ixp2000_GPIO_irq_unmask(unsigned int irq)
348{
349 ixp2000_reg_write(IXP2000_GPIO_INSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
350}
351
352static struct irqchip ixp2000_GPIO_irq_chip = {
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100353 .type = ixp2000_GPIO_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 .ack = ixp2000_GPIO_irq_mask_ack,
355 .mask = ixp2000_GPIO_irq_mask,
356 .unmask = ixp2000_GPIO_irq_unmask
357};
358
359static void ixp2000_pci_irq_mask(unsigned int irq)
360{
361 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
362 if (irq == IRQ_IXP2000_PCIA)
363 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 26)));
364 else if (irq == IRQ_IXP2000_PCIB)
365 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 27)));
366}
367
368static void ixp2000_pci_irq_unmask(unsigned int irq)
369{
370 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
371 if (irq == IRQ_IXP2000_PCIA)
372 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 26)));
373 else if (irq == IRQ_IXP2000_PCIB)
374 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 27)));
375}
376
377static struct irqchip ixp2000_pci_irq_chip = {
378 .ack = ixp2000_pci_irq_mask,
379 .mask = ixp2000_pci_irq_mask,
380 .unmask = ixp2000_pci_irq_unmask
381};
382
383static void ixp2000_irq_mask(unsigned int irq)
384{
385 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, (1 << irq));
386}
387
388static void ixp2000_irq_unmask(unsigned int irq)
389{
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100390 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393static struct irqchip ixp2000_irq_chip = {
394 .ack = ixp2000_irq_mask,
395 .mask = ixp2000_irq_mask,
396 .unmask = ixp2000_irq_unmask
397};
398
399void __init ixp2000_init_irq(void)
400{
401 int irq;
402
403 /*
404 * Mask all sources
405 */
406 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, 0xffffffff);
407 ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR, 0xffffffff);
408
409 /* clear all GPIO edge/level detects */
410 ixp2000_reg_write(IXP2000_GPIO_REDR, 0);
411 ixp2000_reg_write(IXP2000_GPIO_FEDR, 0);
412 ixp2000_reg_write(IXP2000_GPIO_LSHR, 0);
413 ixp2000_reg_write(IXP2000_GPIO_LSLR, 0);
414 ixp2000_reg_write(IXP2000_GPIO_INCR, -1);
415
416 /* clear PCI interrupt sources */
417 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, 0);
418
419 /*
420 * Certain bits in the IRQ status register of the
421 * IXP2000 are reserved. Instead of trying to map
422 * things non 1:1 from bit position to IRQ number,
423 * we mark the reserved IRQs as invalid. This makes
424 * our mask/unmask code much simpler.
425 */
426 for (irq = IRQ_IXP2000_SOFT_INT; irq <= IRQ_IXP2000_THDB3; irq++) {
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100427 if ((1 << irq) & IXP2000_VALID_IRQ_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 set_irq_chip(irq, &ixp2000_irq_chip);
429 set_irq_handler(irq, do_level_IRQ);
430 set_irq_flags(irq, IRQF_VALID);
431 } else set_irq_flags(irq, 0);
432 }
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 /*
435 * GPIO IRQs are invalid until someone sets the interrupt mode
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100436 * by calling set_irq_type().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 */
438 for (irq = IRQ_IXP2000_GPIO0; irq <= IRQ_IXP2000_GPIO7; irq++) {
439 set_irq_chip(irq, &ixp2000_GPIO_irq_chip);
440 set_irq_handler(irq, do_level_IRQ);
441 set_irq_flags(irq, 0);
442 }
443 set_irq_chained_handler(IRQ_IXP2000_GPIO, ixp2000_GPIO_irq_handler);
444
445 /*
446 * Enable PCI irqs. The actual PCI[AB] decoding is done in
447 * entry-macro.S, so we don't need a chained handler for the
448 * PCI interrupt source.
449 */
450 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << IRQ_IXP2000_PCI));
451 for (irq = IRQ_IXP2000_PCIA; irq <= IRQ_IXP2000_PCIB; irq++) {
452 set_irq_chip(irq, &ixp2000_pci_irq_chip);
453 set_irq_handler(irq, do_level_IRQ);
454 set_irq_flags(irq, IRQF_VALID);
455 }
456}
457