0b59703081fcd67d2e91b647d902d7e4b8b29808
[linux-2.6.git] / arch / arm / mach-ixp2000 / core.c
1 /*
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
43 static spinlock_t ixp2000_slowport_lock = SPIN_LOCK_UNLOCKED;
44 static unsigned long ixp2000_slowport_irq_flags;
45
46 /*************************************************************************
47  * Slowport access routines
48  *************************************************************************/
49 void ixp2000_acquire_slowport(struct slowport_cfg *new_cfg, struct slowport_cfg *old_cfg)
50 {
51
52         spin_lock_irqsave(&ixp2000_slowport_lock, ixp2000_slowport_irq_flags);
53
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;
59
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);
65 }
66
67 void ixp2000_release_slowport(struct slowport_cfg *old_cfg)
68 {
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);
74
75         spin_unlock_irqrestore(&ixp2000_slowport_lock, 
76                                         ixp2000_slowport_irq_flags);
77 }
78
79 /*************************************************************************
80  * Chip specific mappings shared by all IXP2000 systems
81  *************************************************************************/
82 static struct map_desc ixp2000_small_io_desc[] __initdata = {
83         {
84                 .virtual        = IXP2000_GLOBAL_REG_VIRT_BASE,
85                 .physical       = IXP2000_GLOBAL_REG_PHYS_BASE,
86                 .length         = IXP2000_GLOBAL_REG_SIZE,
87                 .type           = MT_DEVICE
88         }, {
89                 .virtual        = IXP2000_GPIO_VIRT_BASE,
90                 .physical       = IXP2000_GPIO_PHYS_BASE,
91                 .length         = IXP2000_GPIO_SIZE,
92                 .type           = MT_DEVICE
93         }, {
94                 .virtual        = IXP2000_TIMER_VIRT_BASE,
95                 .physical       = IXP2000_TIMER_PHYS_BASE,
96                 .length         = IXP2000_TIMER_SIZE,
97                 .type           = MT_DEVICE
98         }, {
99                 .virtual        = IXP2000_UART_VIRT_BASE,
100                 .physical       = IXP2000_UART_PHYS_BASE,
101                 .length         = IXP2000_UART_SIZE,
102                 .type           = MT_DEVICE
103         }, {
104                 .virtual        = IXP2000_SLOWPORT_CSR_VIRT_BASE,
105                 .physical       = IXP2000_SLOWPORT_CSR_PHYS_BASE,
106                 .length         = IXP2000_SLOWPORT_CSR_SIZE,
107                 .type           = MT_DEVICE
108         }, {
109                 .virtual        = IXP2000_INTCTL_VIRT_BASE,
110                 .physical       = IXP2000_INTCTL_PHYS_BASE,
111                 .length         = IXP2000_INTCTL_SIZE,
112                 .type           = MT_DEVICE
113         }, {
114                 .virtual        = IXP2000_PCI_CREG_VIRT_BASE,
115                 .physical       = IXP2000_PCI_CREG_PHYS_BASE,
116                 .length         = IXP2000_PCI_CREG_SIZE,
117                 .type           = MT_DEVICE
118         }
119 };
120
121 static struct map_desc ixp2000_large_io_desc[] __initdata = {
122         {
123                 .virtual        = IXP2000_PCI_CSR_VIRT_BASE,
124                 .physical       = IXP2000_PCI_CSR_PHYS_BASE,
125                 .length         = IXP2000_PCI_CSR_SIZE,
126                 .type           = MT_DEVICE
127         }, {
128                 .virtual        = IXP2000_PCI_IO_VIRT_BASE,
129                 .physical       = IXP2000_PCI_IO_PHYS_BASE,
130                 .length         = IXP2000_PCI_IO_SIZE,
131                 .type           = MT_DEVICE
132         }, {
133                 .virtual        = IXP2000_PCI_CFG0_VIRT_BASE,
134                 .physical       = IXP2000_PCI_CFG0_PHYS_BASE,
135                 .length         = IXP2000_PCI_CFG0_SIZE,
136                 .type           = MT_DEVICE
137         }, {
138                 .virtual        = IXP2000_PCI_CFG1_VIRT_BASE,
139                 .physical       = IXP2000_PCI_CFG1_PHYS_BASE,
140                 .length         = IXP2000_PCI_CFG1_SIZE,
141                 .type           = MT_DEVICE
142         }
143 };
144
145 static struct uart_port ixp2000_serial_port = {
146         .membase        = (char *)(IXP2000_UART_VIRT_BASE + 3),
147         .mapbase        = IXP2000_UART_PHYS_BASE + 3,
148         .irq            = IRQ_IXP2000_UART,
149         .flags          = UPF_SKIP_TEST,
150         .iotype         = UPIO_MEM,
151         .regshift       = 2,
152         .uartclk        = 50000000,
153         .line           = 0,
154         .type           = PORT_XSCALE,
155         .fifosize       = 16
156 };
157
158 void __init ixp2000_map_io(void)
159 {
160         iotable_init(ixp2000_small_io_desc, ARRAY_SIZE(ixp2000_small_io_desc));
161         iotable_init(ixp2000_large_io_desc, ARRAY_SIZE(ixp2000_large_io_desc));
162         early_serial_setup(&ixp2000_serial_port);
163 }
164
165 /*************************************************************************
166  * Timer-tick functions for IXP2000
167  *************************************************************************/
168 static unsigned ticks_per_jiffy;
169 static unsigned ticks_per_usec;
170
171 unsigned long ixp2000_gettimeoffset (void)
172 {
173         unsigned long elapsed;
174
175         /* Get ticks since last perfect jiffy */
176         elapsed = ticks_per_jiffy - *IXP2000_T1_CSR;
177
178         return elapsed / ticks_per_usec;
179 }
180
181 static int ixp2000_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
182 {
183         write_seqlock(&xtime_lock);
184
185         /* clear timer 1 */
186         ixp2000_reg_write(IXP2000_T1_CLR, 1);
187         
188         timer_tick(regs);
189
190         write_sequnlock(&xtime_lock);
191
192         return IRQ_HANDLED;
193 }
194
195 static struct irqaction ixp2000_timer_irq = {
196         .name           = "IXP2000 Timer Tick",
197         .flags          = SA_INTERRUPT,
198         .handler        = ixp2000_timer_interrupt
199 };
200
201 void __init ixp2000_init_time(unsigned long tick_rate)
202 {
203         ixp2000_reg_write(IXP2000_T1_CLR, 0);
204         ixp2000_reg_write(IXP2000_T2_CLR, 0);
205
206         ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
207         ticks_per_usec = tick_rate / 1000000;
208
209         ixp2000_reg_write(IXP2000_T1_CLD, ticks_per_jiffy);
210         ixp2000_reg_write(IXP2000_T1_CTL, (1 << 7));
211
212         /* register for interrupt */
213         setup_irq(IRQ_IXP2000_TIMER1, &ixp2000_timer_irq);
214 }
215
216 /*************************************************************************
217  * GPIO helpers
218  *************************************************************************/
219 static unsigned long GPIO_IRQ_rising_edge;
220 static unsigned long GPIO_IRQ_falling_edge;
221 static unsigned long GPIO_IRQ_level_low;
222 static unsigned long GPIO_IRQ_level_high;
223
224 void gpio_line_config(int line, int style)
225 {
226         unsigned long flags;
227
228         local_irq_save(flags);
229
230         if(style == GPIO_OUT) {
231                 /* if it's an output, it ain't an interrupt anymore */
232                 ixp2000_reg_write(IXP2000_GPIO_PDSR, (1 << line));
233                 GPIO_IRQ_falling_edge &= ~(1 << line);
234                 GPIO_IRQ_rising_edge &= ~(1 << line);
235                 GPIO_IRQ_level_low &= ~(1 << line);
236                 GPIO_IRQ_level_high &= ~(1 << line);
237                 ixp2000_reg_write(IXP2000_GPIO_FEDR, GPIO_IRQ_falling_edge);
238                 ixp2000_reg_write(IXP2000_GPIO_REDR, GPIO_IRQ_rising_edge);
239                 ixp2000_reg_write(IXP2000_GPIO_LSHR, GPIO_IRQ_level_high);
240                 ixp2000_reg_write(IXP2000_GPIO_LSLR, GPIO_IRQ_level_low);
241                 irq_desc[line+IRQ_IXP2000_GPIO0].valid = 0;
242         } else if(style == GPIO_IN) {
243                 ixp2000_reg_write(IXP2000_GPIO_PDCR, (1 << line));
244         }
245                 
246         local_irq_restore(flags);
247 }       
248
249
250 /*************************************************************************
251  * IRQ handling IXP2000
252  *************************************************************************/
253 static void ixp2000_GPIO_irq_handler(unsigned int irq, struct irqdesc *desc, struct pt_regs *regs)
254 {                               
255         int i;
256         unsigned long status = *IXP2000_GPIO_INST;
257                    
258         for (i = 0; i <= 7; i++) {
259                 if (status & (1<<i)) {
260                         desc = irq_desc + i + IRQ_IXP2000_GPIO0;
261                         desc->handle(i + IRQ_IXP2000_GPIO0, desc, regs);
262                 }
263         }
264 }
265
266 static void ixp2000_GPIO_irq_mask_ack(unsigned int irq)
267 {
268         ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
269         ixp2000_reg_write(IXP2000_GPIO_INST, (1 << (irq - IRQ_IXP2000_GPIO0)));
270 }
271
272 static void ixp2000_GPIO_irq_mask(unsigned int irq)
273 {
274         ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
275 }
276
277 static void ixp2000_GPIO_irq_unmask(unsigned int irq)
278 {
279         ixp2000_reg_write(IXP2000_GPIO_INSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
280 }
281
282 static struct irqchip ixp2000_GPIO_irq_chip = {
283         .ack    = ixp2000_GPIO_irq_mask_ack,
284         .mask   = ixp2000_GPIO_irq_mask,
285         .unmask = ixp2000_GPIO_irq_unmask
286 };
287
288 static void ixp2000_pci_irq_mask(unsigned int irq)
289 {
290         unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
291         if (irq == IRQ_IXP2000_PCIA)
292                 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 26)));
293         else if (irq == IRQ_IXP2000_PCIB)
294                 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 27)));
295 }
296
297 static void ixp2000_pci_irq_unmask(unsigned int irq)
298 {
299         unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
300         if (irq == IRQ_IXP2000_PCIA)
301                 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 26)));
302         else if (irq == IRQ_IXP2000_PCIB)
303                 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 27)));
304 }
305
306 static struct irqchip ixp2000_pci_irq_chip = {
307         .ack    = ixp2000_pci_irq_mask,
308         .mask   = ixp2000_pci_irq_mask,
309         .unmask = ixp2000_pci_irq_unmask
310 };
311
312 static void ixp2000_irq_mask(unsigned int irq)
313 {
314         ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, (1 << irq));
315 }
316
317 static void ixp2000_irq_unmask(unsigned int irq)
318 {
319         ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET,  (1 << irq));
320 }
321
322 static struct irqchip ixp2000_irq_chip = {
323         .ack    = ixp2000_irq_mask,
324         .mask   = ixp2000_irq_mask,
325         .unmask = ixp2000_irq_unmask
326 };
327
328 void __init ixp2000_init_irq(void)
329 {
330         int irq;
331
332         /*
333          * Mask all sources
334          */
335         ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, 0xffffffff);
336         ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR, 0xffffffff);
337
338         /* clear all GPIO edge/level detects */
339         ixp2000_reg_write(IXP2000_GPIO_REDR, 0);
340         ixp2000_reg_write(IXP2000_GPIO_FEDR, 0);
341         ixp2000_reg_write(IXP2000_GPIO_LSHR, 0);
342         ixp2000_reg_write(IXP2000_GPIO_LSLR, 0);
343         ixp2000_reg_write(IXP2000_GPIO_INCR, -1);
344
345         /* clear PCI interrupt sources */
346         ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, 0);
347
348         /*
349          * Certain bits in the IRQ status register of the 
350          * IXP2000 are reserved. Instead of trying to map
351          * things non 1:1 from bit position to IRQ number,
352          * we mark the reserved IRQs as invalid. This makes
353          * our mask/unmask code much simpler.
354          */
355         for (irq = IRQ_IXP2000_SOFT_INT; irq <= IRQ_IXP2000_THDB3; irq++) {
356                 if((1 << irq) & IXP2000_VALID_IRQ_MASK) {
357                         set_irq_chip(irq, &ixp2000_irq_chip);
358                         set_irq_handler(irq, do_level_IRQ);
359                         set_irq_flags(irq, IRQF_VALID);
360                 } else set_irq_flags(irq, 0);
361         }
362         
363         /*
364          * GPIO IRQs are invalid until someone sets the interrupt mode
365          * by calling gpio_line_set();
366          */
367         for (irq = IRQ_IXP2000_GPIO0; irq <= IRQ_IXP2000_GPIO7; irq++) {
368                 set_irq_chip(irq, &ixp2000_GPIO_irq_chip);
369                 set_irq_handler(irq, do_level_IRQ);
370                 set_irq_flags(irq, 0);
371         }
372         set_irq_chained_handler(IRQ_IXP2000_GPIO, ixp2000_GPIO_irq_handler);
373
374         /*
375          * Enable PCI irq
376          */
377         ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << IRQ_IXP2000_PCI));
378         for (irq = IRQ_IXP2000_PCIA; irq <= IRQ_IXP2000_PCIB; irq++) {
379                 set_irq_chip(irq, &ixp2000_pci_irq_chip);
380                 set_irq_handler(irq, do_level_IRQ);
381                 set_irq_flags(irq, IRQF_VALID);
382         }
383 }
384