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 static DEFINE_SPINLOCK(ixp2000_slowport_lock
);
44 static unsigned long ixp2000_slowport_irq_flags
;
46 /*************************************************************************
47 * Slowport access routines
48 *************************************************************************/
49 void ixp2000_acquire_slowport(struct slowport_cfg
*new_cfg
, struct slowport_cfg
*old_cfg
)
52 spin_lock_irqsave(&ixp2000_slowport_lock
, ixp2000_slowport_irq_flags
);
54 old_cfg
->CCR
= *IXP2000_SLOWPORT_CCR
;
55 old_cfg
->WTC
= *IXP2000_SLOWPORT_WTC2
;
56 old_cfg
->RTC
= *IXP2000_SLOWPORT_RTC2
;
57 old_cfg
->PCR
= *IXP2000_SLOWPORT_PCR
;
58 old_cfg
->ADC
= *IXP2000_SLOWPORT_ADC
;
60 ixp2000_reg_write(IXP2000_SLOWPORT_CCR
, new_cfg
->CCR
);
61 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2
, new_cfg
->WTC
);
62 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2
, new_cfg
->RTC
);
63 ixp2000_reg_write(IXP2000_SLOWPORT_PCR
, new_cfg
->PCR
);
64 ixp2000_reg_write(IXP2000_SLOWPORT_ADC
, new_cfg
->ADC
);
67 void ixp2000_release_slowport(struct slowport_cfg
*old_cfg
)
69 ixp2000_reg_write(IXP2000_SLOWPORT_CCR
, old_cfg
->CCR
);
70 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2
, old_cfg
->WTC
);
71 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2
, old_cfg
->RTC
);
72 ixp2000_reg_write(IXP2000_SLOWPORT_PCR
, old_cfg
->PCR
);
73 ixp2000_reg_write(IXP2000_SLOWPORT_ADC
, old_cfg
->ADC
);
75 spin_unlock_irqrestore(&ixp2000_slowport_lock
,
76 ixp2000_slowport_irq_flags
);
79 /*************************************************************************
80 * Chip specific mappings shared by all IXP2000 systems
81 *************************************************************************/
82 static struct map_desc ixp2000_io_desc
[] __initdata
= {
84 .virtual = IXP2000_CAP_VIRT_BASE
,
85 .physical
= IXP2000_CAP_PHYS_BASE
,
86 .length
= IXP2000_CAP_SIZE
,
89 .virtual = IXP2000_INTCTL_VIRT_BASE
,
90 .physical
= IXP2000_INTCTL_PHYS_BASE
,
91 .length
= IXP2000_INTCTL_SIZE
,
94 .virtual = IXP2000_PCI_CREG_VIRT_BASE
,
95 .physical
= IXP2000_PCI_CREG_PHYS_BASE
,
96 .length
= IXP2000_PCI_CREG_SIZE
,
99 .virtual = IXP2000_PCI_CSR_VIRT_BASE
,
100 .physical
= IXP2000_PCI_CSR_PHYS_BASE
,
101 .length
= IXP2000_PCI_CSR_SIZE
,
104 .virtual = IXP2000_PCI_IO_VIRT_BASE
,
105 .physical
= IXP2000_PCI_IO_PHYS_BASE
,
106 .length
= IXP2000_PCI_IO_SIZE
,
109 .virtual = IXP2000_PCI_CFG0_VIRT_BASE
,
110 .physical
= IXP2000_PCI_CFG0_PHYS_BASE
,
111 .length
= IXP2000_PCI_CFG0_SIZE
,
114 .virtual = IXP2000_PCI_CFG1_VIRT_BASE
,
115 .physical
= IXP2000_PCI_CFG1_PHYS_BASE
,
116 .length
= IXP2000_PCI_CFG1_SIZE
,
121 static struct uart_port ixp2000_serial_port
= {
122 .membase
= (char *)(IXP2000_UART_VIRT_BASE
+ 3),
123 .mapbase
= IXP2000_UART_PHYS_BASE
+ 3,
124 .irq
= IRQ_IXP2000_UART
,
125 .flags
= UPF_SKIP_TEST
,
134 void __init
ixp2000_map_io(void)
136 extern unsigned int processor_id
;
139 * On IXP2400 CPUs we need to use MT_IXP2000_DEVICE for
140 * tweaking the PMDs so XCB=101. On IXP2800s we use the normal
143 if ((processor_id
& 0xfffffff0) == 0x69054190) {
146 printk(KERN_INFO
"Enabling IXP2400 erratum #66 workaround\n");
148 for(i
=0;i
<ARRAY_SIZE(ixp2000_io_desc
);i
++)
149 ixp2000_io_desc
[i
].type
= MT_IXP2000_DEVICE
;
152 iotable_init(ixp2000_io_desc
, ARRAY_SIZE(ixp2000_io_desc
));
153 early_serial_setup(&ixp2000_serial_port
);
155 /* Set slowport to 8-bit mode. */
156 ixp2000_reg_write(IXP2000_SLOWPORT_FRM
, 1);
159 /*************************************************************************
160 * Timer-tick functions for IXP2000
161 *************************************************************************/
162 static unsigned ticks_per_jiffy
;
163 static unsigned ticks_per_usec
;
164 static unsigned next_jiffy_time
;
166 unsigned long ixp2000_gettimeoffset (void)
168 unsigned long offset
;
170 offset
= next_jiffy_time
- *IXP2000_T4_CSR
;
172 return offset
/ ticks_per_usec
;
175 static int ixp2000_timer_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
177 write_seqlock(&xtime_lock
);
180 ixp2000_reg_write(IXP2000_T1_CLR
, 1);
182 while ((next_jiffy_time
- *IXP2000_T4_CSR
) > ticks_per_jiffy
) {
184 next_jiffy_time
-= ticks_per_jiffy
;
187 write_sequnlock(&xtime_lock
);
192 static struct irqaction ixp2000_timer_irq
= {
193 .name
= "IXP2000 Timer Tick",
194 .flags
= SA_INTERRUPT
,
195 .handler
= ixp2000_timer_interrupt
198 void __init
ixp2000_init_time(unsigned long tick_rate
)
200 ixp2000_reg_write(IXP2000_T1_CLR
, 0);
201 ixp2000_reg_write(IXP2000_T4_CLR
, 0);
203 ticks_per_jiffy
= (tick_rate
+ HZ
/2) / HZ
;
204 ticks_per_usec
= tick_rate
/ 1000000;
206 ixp2000_reg_write(IXP2000_T1_CLD
, ticks_per_jiffy
- 1);
207 ixp2000_reg_write(IXP2000_T1_CTL
, (1 << 7));
210 * We use T4 as a monotonic counter to track missed jiffies
212 ixp2000_reg_write(IXP2000_T4_CLD
, -1);
213 ixp2000_reg_write(IXP2000_T4_CTL
, (1 << 7));
214 next_jiffy_time
= 0xffffffff;
216 /* register for interrupt */
217 setup_irq(IRQ_IXP2000_TIMER1
, &ixp2000_timer_irq
);
220 /*************************************************************************
222 *************************************************************************/
223 static unsigned long GPIO_IRQ_rising_edge
;
224 static unsigned long GPIO_IRQ_falling_edge
;
225 static unsigned long GPIO_IRQ_level_low
;
226 static unsigned long GPIO_IRQ_level_high
;
228 void gpio_line_config(int line
, int style
)
232 local_irq_save(flags
);
234 if(style
== GPIO_OUT
) {
235 /* if it's an output, it ain't an interrupt anymore */
236 ixp2000_reg_write(IXP2000_GPIO_PDSR
, (1 << line
));
237 GPIO_IRQ_falling_edge
&= ~(1 << line
);
238 GPIO_IRQ_rising_edge
&= ~(1 << line
);
239 GPIO_IRQ_level_low
&= ~(1 << line
);
240 GPIO_IRQ_level_high
&= ~(1 << line
);
241 ixp2000_reg_write(IXP2000_GPIO_FEDR
, GPIO_IRQ_falling_edge
);
242 ixp2000_reg_write(IXP2000_GPIO_REDR
, GPIO_IRQ_rising_edge
);
243 ixp2000_reg_write(IXP2000_GPIO_LSHR
, GPIO_IRQ_level_high
);
244 ixp2000_reg_write(IXP2000_GPIO_LSLR
, GPIO_IRQ_level_low
);
245 irq_desc
[line
+IRQ_IXP2000_GPIO0
].valid
= 0;
246 } else if(style
== GPIO_IN
) {
247 ixp2000_reg_write(IXP2000_GPIO_PDCR
, (1 << line
));
250 local_irq_restore(flags
);
254 /*************************************************************************
255 * IRQ handling IXP2000
256 *************************************************************************/
257 static void ixp2000_GPIO_irq_handler(unsigned int irq
, struct irqdesc
*desc
, struct pt_regs
*regs
)
260 unsigned long status
= *IXP2000_GPIO_INST
;
262 for (i
= 0; i
<= 7; i
++) {
263 if (status
& (1<<i
)) {
264 desc
= irq_desc
+ i
+ IRQ_IXP2000_GPIO0
;
265 desc
->handle(i
+ IRQ_IXP2000_GPIO0
, desc
, regs
);
270 static void ixp2000_GPIO_irq_mask_ack(unsigned int irq
)
272 ixp2000_reg_write(IXP2000_GPIO_INCR
, (1 << (irq
- IRQ_IXP2000_GPIO0
)));
273 ixp2000_reg_write(IXP2000_GPIO_INST
, (1 << (irq
- IRQ_IXP2000_GPIO0
)));
276 static void ixp2000_GPIO_irq_mask(unsigned int irq
)
278 ixp2000_reg_write(IXP2000_GPIO_INCR
, (1 << (irq
- IRQ_IXP2000_GPIO0
)));
281 static void ixp2000_GPIO_irq_unmask(unsigned int irq
)
283 ixp2000_reg_write(IXP2000_GPIO_INSR
, (1 << (irq
- IRQ_IXP2000_GPIO0
)));
286 static struct irqchip ixp2000_GPIO_irq_chip
= {
287 .ack
= ixp2000_GPIO_irq_mask_ack
,
288 .mask
= ixp2000_GPIO_irq_mask
,
289 .unmask
= ixp2000_GPIO_irq_unmask
292 static void ixp2000_pci_irq_mask(unsigned int irq
)
294 unsigned long temp
= *IXP2000_PCI_XSCALE_INT_ENABLE
;
295 if (irq
== IRQ_IXP2000_PCIA
)
296 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE
, (temp
& ~(1 << 26)));
297 else if (irq
== IRQ_IXP2000_PCIB
)
298 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE
, (temp
& ~(1 << 27)));
301 static void ixp2000_pci_irq_unmask(unsigned int irq
)
303 unsigned long temp
= *IXP2000_PCI_XSCALE_INT_ENABLE
;
304 if (irq
== IRQ_IXP2000_PCIA
)
305 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE
, (temp
| (1 << 26)));
306 else if (irq
== IRQ_IXP2000_PCIB
)
307 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE
, (temp
| (1 << 27)));
310 static struct irqchip ixp2000_pci_irq_chip
= {
311 .ack
= ixp2000_pci_irq_mask
,
312 .mask
= ixp2000_pci_irq_mask
,
313 .unmask
= ixp2000_pci_irq_unmask
316 static void ixp2000_irq_mask(unsigned int irq
)
318 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR
, (1 << irq
));
321 static void ixp2000_irq_unmask(unsigned int irq
)
323 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET
, (1 << irq
));
326 static struct irqchip ixp2000_irq_chip
= {
327 .ack
= ixp2000_irq_mask
,
328 .mask
= ixp2000_irq_mask
,
329 .unmask
= ixp2000_irq_unmask
332 void __init
ixp2000_init_irq(void)
339 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR
, 0xffffffff);
340 ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR
, 0xffffffff);
342 /* clear all GPIO edge/level detects */
343 ixp2000_reg_write(IXP2000_GPIO_REDR
, 0);
344 ixp2000_reg_write(IXP2000_GPIO_FEDR
, 0);
345 ixp2000_reg_write(IXP2000_GPIO_LSHR
, 0);
346 ixp2000_reg_write(IXP2000_GPIO_LSLR
, 0);
347 ixp2000_reg_write(IXP2000_GPIO_INCR
, -1);
349 /* clear PCI interrupt sources */
350 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE
, 0);
353 * Certain bits in the IRQ status register of the
354 * IXP2000 are reserved. Instead of trying to map
355 * things non 1:1 from bit position to IRQ number,
356 * we mark the reserved IRQs as invalid. This makes
357 * our mask/unmask code much simpler.
359 for (irq
= IRQ_IXP2000_SOFT_INT
; irq
<= IRQ_IXP2000_THDB3
; irq
++) {
360 if((1 << irq
) & IXP2000_VALID_IRQ_MASK
) {
361 set_irq_chip(irq
, &ixp2000_irq_chip
);
362 set_irq_handler(irq
, do_level_IRQ
);
363 set_irq_flags(irq
, IRQF_VALID
);
364 } else set_irq_flags(irq
, 0);
368 * GPIO IRQs are invalid until someone sets the interrupt mode
369 * by calling gpio_line_set();
371 for (irq
= IRQ_IXP2000_GPIO0
; irq
<= IRQ_IXP2000_GPIO7
; irq
++) {
372 set_irq_chip(irq
, &ixp2000_GPIO_irq_chip
);
373 set_irq_handler(irq
, do_level_IRQ
);
374 set_irq_flags(irq
, 0);
376 set_irq_chained_handler(IRQ_IXP2000_GPIO
, ixp2000_GPIO_irq_handler
);
379 * Enable PCI irqs. The actual PCI[AB] decoding is done in
380 * entry-macro.S, so we don't need a chained handler for the
381 * PCI interrupt source.
383 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET
, (1 << IRQ_IXP2000_PCI
));
384 for (irq
= IRQ_IXP2000_PCIA
; irq
<= IRQ_IXP2000_PCIB
; irq
++) {
385 set_irq_chip(irq
, &ixp2000_pci_irq_chip
);
386 set_irq_handler(irq
, do_level_IRQ
);
387 set_irq_flags(irq
, IRQF_VALID
);